diff --git a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml index 0d93977627..dddd0f8827 100644 --- a/.github/ISSUE_TEMPLATE/SlicingCrash.yaml +++ b/.github/ISSUE_TEMPLATE/SlicingCrash.yaml @@ -5,38 +5,25 @@ body: - type: markdown attributes: value: | - ### ✨Try our improved Cura 5.7✨ - Before filling out the report below, we want you to try the latest Cura 5.7 Beta. - This version of Cura has become significantly more reliable and has an updated slicing engine that will automatically send a report to the Cura Team for analysis. - #### [You can find the downloads here](https://github.com/Ultimaker/Cura/releases/tag/5.7.0-beta.1) #### - If you still encounter a crash you are still welcome to report the issue so we can use your model as a test case, you can find instructions on how to do that below. + ### ✨Are you stuck? Have you tried these two things? ✨ + 1- Are you on a Cura version lower than Cura 5.7? We really recommend updating because it resolves a lot of slicing crashes! + 2- Have you tried fixing the model with software that repairs 3d files and makes them watertight? + Are you seeing spots and dots on your model? That is Cura indicating that your model is not watertight. + You can try doing a quick [Mesh Fix with the Meshtools Plugin](https://marketplace.ultimaker.com/app/cura/plugins/fieldofview/MeshTools) or other mesh editing software. - ### Project File - **⚠️ Before you continue, we need your project file to troubleshoot a slicing crash.** - It contains the printer and settings we need for troubleshooting. + If you still encounter a crash you are welcome to report the issue so we can use your model as a test case. + You can find instructions on how to share your model in a Package for Technical Support below. - ![Alt Text](https://user-images.githubusercontent.com/40423138/240616958-5a9751f2-bd34-4808-9752-6fde2e27516e.gif) - - To save a project file go to File -> Save project. - Please make sure to .zip your project file. - For big files, you may need to use [WeTransfer](https://wetransfer.com/) or similar file-sharing sites. - - 🤔 Before you share, please think to yourself. Is this a model that can be shared? - Unfortunately we cannot help if this file is missing. - Do you have the project file? Than let's continue ⬇️ - - ### Questions + 🤔 Before you share, please think to yourself. Is this a model that can be shared on the internet? + **Unfortunately, we cannot help if this file is missing.** + +### Questions - type: input attributes: label: Cura Version - placeholder: 5.6.0 + description: We work hard on improving our slicing crashes. If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/latest) validations: required: true -- type: markdown - attributes: - value: | - We work hard on improving our slicing crashes. Our most recent release is 5.6.0. - If you are not on the latest version of Cura, [you can download it here](https://github.com/Ultimaker/Cura/releases/latest) - type: input attributes: label: Operating System @@ -50,27 +37,13 @@ body: description: Which printer was selected in Cura? validations: required: true -- type: input - attributes: - label: Name abnormal settings - description: Are there any settings that you might have changed that caused the crash? Does your model slice when you select the default profiles? - placeholder: - validations: -- type: input - attributes: - label: Describe model location - description: Does your model slice if you rotate the model 90 degrees or if you move it away from the center of the buildplate? - placeholder: - validations: -- type: input - attributes: - label: Describe your model - description: Have you sliced your model succesfully before? Is it watertight? Have you tried doing a quick [Mesh Fix with the Meshtools Plugin](https://marketplace.ultimaker.com/app/cura/plugins/fieldofview/MeshTools)? - validations: - required: true + - type: textarea attributes: - label: Add your .zip here ⬇️ - description: You can add the zip file and additional information that is relevant to the issue in the comments below. + label: Describe your problem and add the package for technical support as a .zip here ⬇️ + description: | + If you still have Cura open with your crash > Click on Help on top bar > Click on Export Package For Technical Support > Compress the file into a zip > Add the file here to your GitHub issue 🔗 + + If you closed Cura, please open Cura to recreate the crash> Select your printer > Load your model > Select your print settings > Click on Help on top bar > Click on Export Package For Technical Support > Compress the file into a zip > Add the file here to your GitHub issue 🔗 validations: required: true diff --git a/.github/workflows/conan-package-resources.yml b/.github/workflows/conan-package-resources.yml index 92a7e005fa..cb1ebefd64 100644 --- a/.github/workflows/conan-package-resources.yml +++ b/.github/workflows/conan-package-resources.yml @@ -12,6 +12,7 @@ on: - 'resources/quality/**' - 'resources/variants/**' - 'resources/conanfile.py' + - 'resources/conandata.yml' branches: - 'main' - 'CURA-*' @@ -20,21 +21,22 @@ on: - '[0-9].[0-9]*' - '[0-9].[0-9][0-9]*' -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - jobs: - conan-recipe-version: - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main + conan-package: + uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main with: - project_name: cura_resources - - conan-package-export: - needs: [ conan-recipe-version ] - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@main - with: - recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} conan_recipe_root: "./resources/" - secrets: inherit \ No newline at end of file + platform_windows: false + platform_mac: false + install_system_dependencies: false + secrets: inherit + + signal-curator: + needs: conan-package + runs-on: ubuntu-latest + steps: + - name: Trigger Curator Workflow + run: | + gh workflow run --repo ultimaker/curator -r main package.yml + env: + GITHUB_TOKEN: ${{ secrets.CURATOR_TRIGGER_PAT_C3PO }} diff --git a/.github/workflows/conan-package.yml b/.github/workflows/conan-package.yml index 42d03b5038..55123dc374 100644 --- a/.github/workflows/conan-package.yml +++ b/.github/workflows/conan-package.yml @@ -32,28 +32,7 @@ on: - '[0-9].[0-9]*' - '[0-9].[0-9][0-9]*' -env: - CONAN_LOGIN_USERNAME_CURA: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD_CURA: ${{ secrets.CONAN_PASS }} - jobs: - conan-recipe-version: - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main - with: - project_name: cura - - conan-package-export: - needs: [ conan-recipe-version ] - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-export.yml@main - with: - recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - recipe_id_latest: ${{ needs.conan-recipe-version.outputs.recipe_id_latest }} + conan-package: + uses: ultimaker/cura-workflows/.github/workflows/conan-package.yml@main secrets: inherit - - conan-package-create: - needs: [ conan-recipe-version, conan-package-export ] - uses: ultimaker/cura-workflows/.github/workflows/conan-package-create-linux.yml@main - with: - recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: "-o cura:enable_i18n=True" - secrets: inherit \ No newline at end of file diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 805f1917aa..6dc2df99eb 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -6,290 +6,34 @@ on: inputs: cura_conan_version: description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true + default: '' + type: string + package_overrides: + description: 'List of specific packages to be used (space-separated)' + default: '' type: string conan_args: - description: 'Conan args: eq.: --require-override' + description: 'Conan args' default: '' - required: false type: string enterprise: description: 'Build Cura as an Enterprise edition' default: false - required: true type: boolean staging: description: 'Use staging API' default: false - required: true - type: boolean - nightly: - description: 'Upload to nightly release' - default: false - required: true type: boolean - workflow_call: - inputs: - cura_conan_version: - default: 'cura/latest@ultimaker/testing' - required: true - type: string - conan_args: - default: '' - required: false - type: string - enterprise: - default: false - required: true - type: boolean - staging: - default: false - required: true - type: boolean - nightly: - default: false - required: true - type: boolean - - schedule: - # Daily at 4:15 CET (main-branch) and 5:15 CET (release-branch) - - cron: '15 3 * * *' - - cron: '15 4 * * *' - -env: - CONAN_ARGS: ${{ inputs.conan_args || '' }} - ENTERPRISE: ${{ inputs.enterprise || false }} - STAGING: ${{ inputs.staging || false }} jobs: - default_values: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-default-value.yml@main + installers: + name: Create installers + uses: ultimaker/cura-workflows/.github/workflows/cura-installers.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} - latest_release: '5.6' - latest_release_schedule_hour: 4 - latest_release_tag: 'nightly' - - windows-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main - needs: [ default_values ] - with: - cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} - architecture: X64 - operating_system: self-hosted-Windows-X64 + package_overrides: ${{ inputs.package_overrides }} + conan_args: ${{ inputs.conan_args }} + enterprise: ${{ inputs.enterprise }} + staging: ${{ inputs.staging }} secrets: inherit - - linux-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main - needs: [ default_values ] - with: - cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} - architecture: X64 - operating_system: self-hosted-Ubuntu22-X64 - secrets: inherit - - macos-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main - needs: [ default_values ] - with: - cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} - architecture: X64 - operating_system: self-hosted-X64 - secrets: inherit - - macos-arm-installer: - uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main - needs: [ default_values ] - with: - cura_conan_version: ${{ needs.default_values.outputs.cura_conan_version }} - conan_args: ${{ github.event.inputs.conan_args }} - enterprise: ${{ github.event.inputs.enterprise == 'true' }} - staging: ${{ github.event.inputs.staging == 'true' }} - architecture: ARM64 - operating_system: self-hosted-ARM64 - secrets: inherit - - # Run and update nightly release when the nightly input is set to true or if the schedule is triggered - update-nightly-release: - if: ${{ inputs.nightly || github.event_name == 'schedule' }} - runs-on: ubuntu-latest - needs: [ default_values, windows-installer, linux-installer, macos-installer, macos-arm-installer ] - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 1 - - - name: Download the run info - uses: actions/download-artifact@v4 - with: - name: linux-run-info - - - name: Set the run info as environment variables - run: | - . run_info.sh - - - name: Output the name file name and extension - id: filename - shell: python - run: | - import os - import datetime - enterprise = "-Enterprise" if "${{ github.event.inputs.enterprise }}" == "true" else "" - linux = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-linux-X64" - mac_x64_dmg = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-macos-X64" - mac_x64_pkg = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-macos-X64" - mac_arm_dmg = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-macos-ARM64" - mac_arm_pkg = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-macos-ARM64" - win_msi = installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-win64-X64" - win_exe = installer_filename = f"UltiMaker-Cura-{os.getenv('CURA_VERSION_FULL')}{enterprise}-win64-X64" - nightly_name = "UltiMaker-Cura-" + os.getenv('CURA_VERSION_FULL').split("+")[0] - nightly_creation_time = str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")) - output_env = os.environ["GITHUB_OUTPUT"] - content = "" - if os.path.exists(output_env): - with open(output_env, "r") as f: - content = f.read() - with open(output_env, "w") as f: - f.write(content) - f.writelines(f"LINUX={linux}\n") - f.writelines(f"MAC_X64_DMG={mac_x64_dmg}\n") - f.writelines(f"MAC_X64_PKG={mac_x64_pkg}\n") - f.writelines(f"MAC_ARM_DMG={mac_arm_dmg}\n") - f.writelines(f"MAC_ARM_PKG={mac_arm_pkg}\n") - f.writelines(f"WIN_MSI={win_msi}\n") - f.writelines(f"WIN_EXE={win_exe}\n") - f.writelines(f"NIGHTLY_NAME={nightly_name}\n") - f.writelines(f"NIGHTLY_TIME={nightly_creation_time}\n") - - - name: Download linux installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.LINUX }}-AppImage - path: installers - - - name: Download linux installer jobs asc artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.LINUX }}-asc - path: installers - - - name: Rename Linux installer to nightlies - run: | - mv installers/${{ steps.filename.outputs.LINUX }}.AppImage installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage - mv installers/${{ steps.filename.outputs.LINUX }}.AppImage.asc installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc - - - name: Update nightly release for Linux - run: | - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage --clobber - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-linux-X64.AppImage.asc --clobber - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Download win msi installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.WIN_MSI }}-msi - path: installers - - - name: Download win exe installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.WIN_EXE }}-exe - path: installers - - - name: Rename Windows installers to nightlies - run: | - mv installers/${{ steps.filename.outputs.WIN_MSI }}.msi installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi - mv installers/${{ steps.filename.outputs.WIN_EXE }}.exe installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe - - - name: Update nightly release for Windows - run: | - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.msi --clobber - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-win64-X64.exe --clobber - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Download MacOS (X64) dmg installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.MAC_X64_DMG }}-dmg - path: installers - - - name: Download MacOS (X64) pkg installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.MAC_X64_PKG }}-pkg - path: installers - - - name: Rename MacOS (X64) installers to nightlies - run: | - mv installers/${{ steps.filename.outputs.MAC_X64_DMG }}.dmg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg - mv installers/${{ steps.filename.outputs.MAC_X64_PKG }}.pkg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg - - - name: Update nightly release for MacOS (X64) - run: | - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.dmg --clobber - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-X64.pkg --clobber - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: Download MacOS (ARM-64) dmg installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.MAC_ARM_DMG }}-dmg - path: installers - - - name: Download MacOS (ARM-64) pkg installer jobs artifacts - uses: actions/download-artifact@v4 - with: - name: ${{ steps.filename.outputs.MAC_ARM_PKG }}-pkg - path: installers - - - name: Rename MacOS (ARM-64) installers to nightlies - run: | - mv installers/${{ steps.filename.outputs.MAC_ARM_DMG }}.dmg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg - mv installers/${{ steps.filename.outputs.MAC_ARM_PKG }}.pkg installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg - - - name: Update nightly release for MacOS (ARM-64) - run: | - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.dmg --clobber - gh release upload ${{ needs.default_values.outputs.release_tag }} installers/${{ steps.filename.outputs.NIGHTLY_NAME }}-macos-ARM64.pkg --clobber - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - - name: create the release notes - shell: python - run: | - import os - import datetime - from jinja2 import Template - - with open(".github/workflows/release_notes.md.jinja", "r") as f: - release_notes = Template(f.read()) - - current_nightly_beta = "${{ needs.default_values.outputs.release_tag }}".split("nightly-")[-1] - with open("release-notes.md", "w") as f: - f.write(release_notes.render( - timestamp="${{ steps.filename.outputs.NIGHTLY_TIME }}", - branch="" if "${{ needs.default-values.outputs.release_tag == 'nightly' }}" == 'true' else current_nightly_beta, - branch_specific="" if os.getenv("GITHUB_REF") == "refs/heads/main" else f"?branch={current_nightly_beta}", - )) - - - name: Update nightly release description (with date) - if: always() - run: | - gh release edit ${{ needs.default_values.outputs.release_tag }} --title "${{ steps.filename.outputs.NIGHTLY_NAME }}" --notes-file release-notes.md - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index f9d800c77d..e4cb523240 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -6,11 +6,14 @@ on: inputs: cura_conan_version: description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true + default: '' + type: string + package_overrides: + description: 'List of specific packages to be used (space-separated)' + default: '' type: string conan_args: - description: 'Conan args: eq.: --require-override' + description: 'Conan args' default: '' required: false type: string @@ -24,13 +27,6 @@ on: default: false required: true type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: choice - options: - - X64 operating_system: description: 'OS' required: true @@ -45,9 +41,9 @@ jobs: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-linux.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} + package_overrides: ${{ inputs.package_overrides }} conan_args: ${{ inputs.conan_args }} enterprise: ${{ inputs.enterprise }} staging: ${{ inputs.staging }} - architecture: ${{ inputs.architecture }} operating_system: ${{ inputs.operating_system }} secrets: inherit diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index ffc9b27b8b..02be9703ec 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -6,11 +6,14 @@ on: inputs: cura_conan_version: description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true + default: '' + type: string + package_overrides: + description: 'List of specific packages to be used (space-separated)' + default: '' type: string conan_args: - description: 'Conan args: eq.: --require-override' + description: 'Conan args' default: '' required: false type: string @@ -47,6 +50,7 @@ jobs: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-macos.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} + package_overrides: ${{ inputs.package_overrides }} conan_args: ${{ inputs.conan_args }} enterprise: ${{ inputs.enterprise }} staging: ${{ inputs.staging }} diff --git a/.github/workflows/nightly-stable.yml b/.github/workflows/nightly-stable.yml new file mode 100644 index 0000000000..2790947ae8 --- /dev/null +++ b/.github/workflows/nightly-stable.yml @@ -0,0 +1,16 @@ +name: Nightly build - stable release +run-name: Nightly build - stable release + +# on: +# schedule: +# # Daily at 5:15 CET +# - cron: '15 4 * * *' + +jobs: + build-nightly: + uses: ./.github/workflows/nightly.yml + with: + cura_conan_version: "cura/[*]" + release_tag: "nightly-stable" + caller_workflow: "nightly-stable.yml" + secrets: inherit diff --git a/.github/workflows/nightly-testing.yml b/.github/workflows/nightly-testing.yml new file mode 100644 index 0000000000..13f3670514 --- /dev/null +++ b/.github/workflows/nightly-testing.yml @@ -0,0 +1,16 @@ +name: Nightly build - dev release +run-name: Nightly build - dev release + +# on: +# schedule: +# # Daily at 4:15 CET +# - cron: '15 3 * * *' + +jobs: + build-nightly: + uses: ./.github/workflows/nightly.yml + with: + cura_conan_version: "cura/[*]@ultimaker/testing" + release_tag: "nightly-testing" # Fixed version, we reuse the same tag forever + caller_workflow: "nightly-testing.yml" + secrets: inherit diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 0000000000..d77cac7990 --- /dev/null +++ b/.github/workflows/nightly.yml @@ -0,0 +1,75 @@ +name: Nightly build +run-name: Nightly build + +on: + workflow_call: + inputs: + cura_conan_version: + required: true + type: string + release_tag: + required: true + type: string + caller_workflow: + required: true + type: string + + +jobs: + create-installers: + name: Create installers + uses: ultimaker/cura-workflows/.github/workflows/cura-installers.yml@main + with: + cura_conan_version: ${{ inputs.cura_conan_version }} + secrets: inherit + + update-nightly-release: + name: Upload installers + runs-on: ubuntu-latest + needs: [ create-installers ] + steps: + - name: Setup the build environment + uses: ultimaker/cura-workflows/.github/actions/setup-build-environment@main + + - name: Download installers jobs artifacts + uses: actions/download-artifact@v4 + with: + pattern: UltiMaker-Cura-* + path: installers + merge-multiple: true + + - name: Rename the installers + id: rename-installers + working-directory: installers + run: python ../Cura-workflows/runner_scripts/rename_installers.py --tag "nightly" >> $GITHUB_OUTPUT + + - name: create the release notes + shell: python + run: | + import os + import datetime + from jinja2 import Template + + with open(".github/workflows/nightly_release_notes.md.jinja", "r") as f: + release_notes = Template(f.read()) + + short_version = "${{ steps.rename-installers.outputs.short_version }}" + caller_workflow = "${{ inputs.caller_workflow }}" + is_main = os.getenv("GITHUB_REF") == "refs/heads/main" + + with open("release-notes.md", "w") as f: + f.write(release_notes.render( + timestamp=str(datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S")), + caller_workflow=caller_workflow, + branch_specific="" if is_main else f"?branch={short_version}", + )) + + - name: Update nightly release description and binaries + run: | + gh release edit ${{ inputs.release_tag }} --title "${{ steps.rename-installers.outputs.cura_version }}" --notes-file release-notes.md + + for file in "installers/*"; do + gh release upload ${{ inputs.release_tag }} $file --clobber + done + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/release_notes.md.jinja b/.github/workflows/nightly_release_notes.md.jinja similarity index 50% rename from .github/workflows/release_notes.md.jinja rename to .github/workflows/nightly_release_notes.md.jinja index e66eeca677..a14c8d76a0 100644 --- a/.github/workflows/release_notes.md.jinja +++ b/.github/workflows/nightly_release_notes.md.jinja @@ -4,18 +4,17 @@ | | | |--------------:|--------------------------------------------------------------------------------------------| -| **Nightlies** | [![nightly {{ branch }}](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml/badge.svg{{ branch_specific }} -?event=schedule)](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml) | +| **Nightlies** | [![nightly](https://github.com/Ultimaker/Cura/actions/workflows/{{ caller_workflow }}/badge.svg{{ branch_specific }}?event=schedule)](https://github.com/Ultimaker/Cura/actions/workflows/installers.yml) | # Unit Test results | | | |-------------------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **Cura {{ branch }}** | [![unit-test](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml) | -| **CuraEngine {{ branch }}** | [![unit-test](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml) | -| **Uranium {{ branch }}** | [![unit-test](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml) | -| **CuraEngine GradualFlow 0.1** | [![unit-test](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml) | -| **synsepalum-dulcificum 0.1** | [![unit-test](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml) | +| **Cura** | [![unit-test](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/unit-test.yml) | +| **CuraEngine** | [![unit-test](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/unit-test.yml) | +| **Uranium** | [![unit-test](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/unit-test.yml) | +| **CuraEngine GradualFlow** | [![unit-test](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/unit-test.yml) | +| **synsepalum-dulcificum** | [![unit-test](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/unit-test.yml) | | **libSavitar** | [![unit-test](https://github.com/Ultimaker/libSavitar/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/libSavitar/actions/workflows/unit-test.yml) | | **libnest2d** | [![unit-test](https://github.com/Ultimaker/libnest2d/actions/workflows/unit-test.yml/badge.svg)](https://github.com/Ultimaker/libnest2d/actions/workflows/unit-test.yml) | @@ -23,17 +22,17 @@ | | | |------------------------------------:|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| **Cura {{ branch }}** | [![conan-package](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml) | -| **CuraEngine {{ branch }}** | [![conan-package](https://github.com/Ultimaker/CuraEngine/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/conan-package.yml) | -| **Uranium {{ branch }}** | [![conan-package](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml) | -| **fdm_materials {{ branch }}** | [![conan-package](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml) | -| **cura-binary-data {{ branch }}** | [![conan-package](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml) | -| **CuraEngine GradualFlow 0.1** | [![conan-package](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml) | -| **synsepalum-dulcificum 0.1** | [![conan-package](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml) | -| **CuraEngine gRPC definitions 0.1** | [![conan-package](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml/badge.svg?branch=0.1)](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml) | +| **Cura** | [![conan-package](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Cura/actions/workflows/conan-package.yml) | +| **CuraEngine** | [![conan-package](https://github.com/Ultimaker/CuraEngine/actions/workflows/package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/CuraEngine/actions/workflows/package.yml) | +| **Uranium** | [![conan-package](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/Uranium/actions/workflows/conan-package.yml) | +| **fdm_materials** | [![conan-package](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/fdm_materials/actions/workflows/conan-package.yml) | +| **cura-binary-data** | [![conan-package](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml/badge.svg{{ branch_specific }})](https://github.com/Ultimaker/cura-binary-data/actions/workflows/conan-package.yml) | +| **CuraEngine GradualFlow** | [![conan-package](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/CuraEngine_plugin_gradual_flow/actions/workflows/conan-package.yml) | +| **synsepalum-dulcificum** | [![conan-package](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/synsepalum-dulcificum/actions/workflows/conan-package.yml) | +| **CuraEngine gRPC definitions** | [![conan-package](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/CuraEngine_grpc_definitions/actions/workflows/conan-package.yml) | | **libArcus** | [![conan-package](https://github.com/Ultimaker/libArcus/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libArcus/actions/workflows/conan-package.yml) | | **pyArcus** | [![conan-package](https://github.com/Ultimaker/pyArcus/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pyArcus/actions/workflows/conan-package.yml) | | **libSavitar** | [![conan-package](https://github.com/Ultimaker/libSavitar/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libSavitar/actions/workflows/conan-package.yml) | | **pySavitar** | [![conan-package](https://github.com/Ultimaker/pySavitar/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pySavitar/actions/workflows/conan-package.yml) | | **libnest2d** | [![conan-package](https://github.com/Ultimaker/libnest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/libnest2d/actions/workflows/conan-package.yml) | -| **pynest2d** | [![conan-package](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml) | \ No newline at end of file +| **pynest2d** | [![conan-package](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml/badge.svg)](https://github.com/Ultimaker/pynest2d/actions/workflows/conan-package.yml) | diff --git a/.github/workflows/notify_on_print_profile_change.yml b/.github/workflows/notify_on_print_profile_change.yml deleted file mode 100644 index c8747a9828..0000000000 --- a/.github/workflows/notify_on_print_profile_change.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: notify_on_print_profile_change - -on: - push: - branches: [ "main" ] - paths: - - 'resources/definitions/fdmprinter.def.json' - - 'resources/definitions/ultimaker**' - - 'resources/extruders/ultimaker**' - - 'resources/intent/ultimaker**' - - 'resources/quality/ultimaker**' - - 'resources/variants/ultimaker**' - pull_request: - branches: [ "main" ] - paths: - - 'resources/definitions/fdmprinter.def.json' - - 'resources/definitions/ultimaker**' - - 'resources/extruders/ultimaker**' - - 'resources/intent/ultimaker**' - - 'resources/quality/ultimaker**' - - 'resources/variants/ultimaker**' -permissions: {} -jobs: - slackNotification: - name: Slack Notification - runs-on: ubuntu-latest - steps: - - name: Ultimaker Print Profile Changed - uses: rtCamp/action-slack-notify@v2 - env: - SLACK_CHANNEL: profile-changes - SLACK_USERNAME: ${{ github.repository }} - SLACK_COLOR: '#00FF00' - SLACK_TITLE: Print profiles changed - MSG_MINIMAL: commit - SLACK_WEBHOOK: ${{ secrets.SLACK_CURA_PPM_HOOK }} \ No newline at end of file diff --git a/.github/workflows/printer-linter-format.yml b/.github/workflows/printer-linter-format.yml index 8e65a481c4..246170c1e4 100644 --- a/.github/workflows/printer-linter-format.yml +++ b/.github/workflows/printer-linter-format.yml @@ -1,46 +1,21 @@ name: printer-linter-format on: - push: - paths: - - 'resources/definitions/**' - - 'resources/extruders/**' - - 'resources/intent/**' - - 'resources/quality/**' - - 'resources/variants/**' + push: + paths: + - 'resources/definitions/**' + - 'resources/extruders/**' + - 'resources/intent/**' + - 'resources/quality/**' + - 'resources/variants/**' jobs: - printer-linter-format: - name: Printer linter auto format - - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - uses: technote-space/get-diff-action@v6 - with: - PATTERNS: | - resources/+(definitions|extruders)/*.def.json - resources/+(intent|quality|variants)/**/*.inst.cfg - - - name: Setup Python and pip - if: env.GIT_DIFF && !env.MATCHED_FILES # If nothing happens with python and/or pip after, the clean-up crashes. - uses: actions/setup-python@v4 - with: - python-version: 3.11.x - cache: 'pip' - cache-dependency-path: .github/workflows/requirements-printer-linter.txt - - - name: Install Python requirements for runner - if: env.GIT_DIFF && !env.MATCHED_FILES - run: pip install -r .github/workflows/requirements-printer-linter.txt - - - name: Format file - if: env.GIT_DIFF && !env.MATCHED_FILES - run: python printer-linter/src/terminal.py --format ${{ env.GIT_DIFF_FILTERED }} - - - uses: stefanzweifel/git-auto-commit-action@v4 - if: env.GIT_DIFF && !env.MATCHED_FILES - with: - commit_message: "Applied printer-linter format" + printer-linter-format: + name: Printer linter auto format + uses: ultimaker/cura-workflows/.github/workflows/lint-formatter.yml@main + with: + file_patterns: | + resources/+(definitions|extruders)/*.def.json + resources/+(intent|quality|variants)/**/*.inst.cfg + command: python printer-linter/src/terminal.py --format + commit_message: "Apply printer-linter format" diff --git a/.github/workflows/printer-linter-pr-diagnose.yml b/.github/workflows/printer-linter-pr-diagnose.yml index ed51f8b2f8..8feecdb3ee 100644 --- a/.github/workflows/printer-linter-pr-diagnose.yml +++ b/.github/workflows/printer-linter-pr-diagnose.yml @@ -14,30 +14,16 @@ jobs: runs-on: ubuntu-latest steps: - - name: Checkout - uses: actions/checkout@v3 - with: - fetch-depth: 2 + - name: Setup the build environment + uses: ultimaker/cura-workflows/.github/actions/setup-build-environment@main - - uses: technote-space/get-diff-action@v6 + - uses: greguintow/get-diff-action@v7 with: DIFF_FILTER: AMRCD PATTERNS: | resources/+(extruders|definitions)/*.def.json resources/+(intent|quality|variants)/**/*.inst.cfg - - name: Setup Python and pip - if: env.GIT_DIFF && !env.MATCHED_FILES # If nothing happens with python and/or pip after, the clean-up crashes. - uses: actions/setup-python@v4 - with: - python-version: 3.11.x - cache: "pip" - cache-dependency-path: .github/workflows/requirements-printer-linter.txt - - - name: Install Python requirements for runner - if: env.GIT_DIFF && !env.MATCHED_FILES - run: pip install -r .github/workflows/requirements-printer-linter.txt - - name: Create results directory run: mkdir printer-linter-result @@ -55,7 +41,7 @@ jobs: echo ${{ github.event.pull_request.head.repo.full_name }} > printer-linter-result/pr-head-repo.txt echo ${{ github.event.pull_request.head.sha }} > printer-linter-result/pr-head-sha.txt - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: printer-linter-result path: printer-linter-result/ diff --git a/.github/workflows/release-process_feature-freeze.yml b/.github/workflows/release-process_feature-freeze.yml index 3a07799665..de15d5c310 100644 --- a/.github/workflows/release-process_feature-freeze.yml +++ b/.github/workflows/release-process_feature-freeze.yml @@ -15,6 +15,7 @@ jobs: runs-on: ubuntu-latest outputs: package_version: ${{ steps.version_parser.outputs.major }}.${{ steps.version_parser.outputs.minor }}.0-alpha.1 + branch: ${{ steps.version_parser.outputs.major }}.${{ steps.version_parser.outputs.minor }} steps: - name: Parse version string id: version_parser @@ -28,5 +29,6 @@ jobs: needs: [parse-version] with: cura_version: ${{ needs.parse-version.outputs.package_version }} + branch: ${{ needs.parse-version.outputs.branch }} create_feature_branch: true secrets: inherit diff --git a/.github/workflows/release-process_release-candidate.yml b/.github/workflows/release-process_release-candidate.yml index 3d59817996..63211f99cd 100644 --- a/.github/workflows/release-process_release-candidate.yml +++ b/.github/workflows/release-process_release-candidate.yml @@ -9,6 +9,11 @@ on: required: true type: string + publish_release_description: + description: 'Create the GitHub release (if existing, the description will be overridden based on the changelog)' + required: true + type: boolean + jobs: parse-version: name: Parse input version string @@ -31,6 +36,7 @@ jobs: needs: [parse-version] with: cura_version: ${{ inputs.cura_version }} + branch: ${{ needs.parse-version.outputs.branch_name }} create_feature_branch: false secrets: inherit @@ -65,6 +71,8 @@ jobs: name: Create tags runs-on: ubuntu-latest needs: [parse-version, find-rc-tag] + outputs: + main_commit: ${{ steps.export-main-commit.outputs.main_commit }} strategy: matrix: repository: [Cura, Uranium, CuraEngine, cura-binary-data, fdm_materials] @@ -76,13 +84,24 @@ jobs: ref: ${{ needs.parse-version.outputs.branch_name }} token: ${{ secrets.CURA_AUTORELEASE_PAT }} - - name: Create tag + - name: Create RC tag run: | git tag ${{ needs.find-rc-tag.outputs.tag_name }} git push origin tag ${{ needs.find-rc-tag.outputs.tag_name }} - create-dependencies-packages: - name: Create conan packages for dependencies + - name: Create or update release tag + run: | + git tag -f ${{ inputs.cura_version }} + git push -f origin tag ${{ inputs.cura_version }} + + - name: Export Cura tagged commit + id: export-main-commit + if: ${{ matrix.repository == 'Cura' }} + run: | + echo "main_commit=`git rev-parse HEAD`" >> "$GITHUB_OUTPUT" + + create-packages: + name: Create conan packages uses: ultimaker/cura-workflows/.github/workflows/conan-package-release.yml@main needs: [parse-version, freeze-packages-versions] strategy: @@ -94,44 +113,23 @@ jobs: conan_recipe_root: "resources" with: repository: ${{ matrix.repository }} - ref_name: ${{ needs.parse-version.outputs.branch_name }} - version: ${{ inputs.cura_version }} - conan_release: true - conan_user_channel: ultimaker/stable - conan_internal: false - conan_latest: true + branch: ${{ needs.parse-version.outputs.branch_name }} conan_recipe_root: ${{ matrix.conan_recipe_root }} secrets: inherit - create-cura-package: - name: Create conan package for Cura - uses: ultimaker/cura-workflows/.github/workflows/conan-package-release.yml@main - needs: [parse-version, create-dependencies-packages] - with: - repository: Cura - ref_name: ${{ needs.parse-version.outputs.branch_name }} - version: ${{ inputs.cura_version }} - conan_release: true - conan_user_channel: ultimaker/stable - conan_internal: false - conan_latest: true - secrets: inherit - create-installers: name: Create installers - uses: ./.github/workflows/installers.yml - needs: [parse-version, create-cura-package] + uses: ultimaker/cura-workflows/.github/workflows/cura-installers.yml@main + needs: [parse-version, create-packages] with: - cura_conan_version: cura/${{ inputs.cura_version }}@/ - enterprise: false - staging: false - nightly: false + cura_conan_version: cura/${{ inputs.cura_version }} + conan_args: "-c user.sentry:environment=production" secrets: inherit create-release-draft: name: Create the release draft runs-on: ubuntu-latest - needs: [create-installers, parse-version] + needs: [create-installers, parse-version, create-tags] steps: - name: Checkout Cura repo uses: actions/checkout@v4 @@ -139,18 +137,14 @@ jobs: ref: ${{ needs.parse-version.outputs.branch_name }} - name: Extract changelog + if: ${{ inputs.publish_release_description }} run: python ./scripts/extract_changelog.py --version ${{ needs.parse-version.outputs.version_major }}.${{ needs.parse-version.outputs.version_minor }}.${{ needs.parse-version.outputs.version_patch }} --changelog ./resources/texts/change_log.txt > formatted_changelog.txt - - name: Get commit id for release - id: get-commit-id - uses: iawia002/get-tag-or-commit-id@v1.0.1 - with: - length: 40 - - name: Create release uses: notpeelz/action-gh-create-release@v5.0.1 + if: ${{ inputs.publish_release_description }} with: - target: ${{ steps.get-commit-id.outputs.id }} + target: ${{ needs.create-tags.outputs.main_commit }} tag: ${{ inputs.cura_version }} strategy: replace title: UltiMaker Cura ${{ inputs.cura_version }} @@ -159,7 +153,7 @@ jobs: body: formatted_changelog.txt - name: Download artifacts - uses: actions/download-artifact@v4.1.7 + uses: actions/download-artifact@v4 with: path: artifacts merge-multiple: true diff --git a/.github/workflows/requirements-conan-package.txt b/.github/workflows/requirements-conan-package.txt deleted file mode 100644 index 215557e367..0000000000 --- a/.github/workflows/requirements-conan-package.txt +++ /dev/null @@ -1,2 +0,0 @@ -conan>=1.60.2,<2.0.0 -sip<=6.7.12 diff --git a/.github/workflows/requirements-printer-linter.txt b/.github/workflows/requirements-printer-linter.txt deleted file mode 100644 index 4818cc5419..0000000000 --- a/.github/workflows/requirements-printer-linter.txt +++ /dev/null @@ -1 +0,0 @@ -pyyaml \ No newline at end of file diff --git a/.github/workflows/requirements-runner.txt b/.github/workflows/requirements-runner.txt deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index a8e9f26b8b..7930765d7c 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -9,6 +9,5 @@ jobs: publish-test-results: uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@main with: - event: ${{ github.event.workflow_run.event }} - conclusion: ${{ github.event.workflow_run.conclusion }} + workflow_run_json: ${{ toJSON(github.event.workflow_run) }} secrets: inherit diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 2165540889..4761a32907 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -37,26 +37,9 @@ on: - main - '[0-9]+.[0-9]+' -permissions: - contents: read - -env: - CONAN_LOGIN_USERNAME: ${{ secrets.CONAN_USER }} - CONAN_PASSWORD: ${{ secrets.CONAN_PASS }} - jobs: - conan-recipe-version: - uses: ultimaker/cura-workflows/.github/workflows/conan-recipe-version.yml@main - with: - project_name: cura - testing: + name: Run unit tests uses: ultimaker/cura-workflows/.github/workflows/unit-test.yml@main - needs: [ conan-recipe-version ] with: - recipe_id_full: ${{ needs.conan-recipe-version.outputs.recipe_id_full }} - conan_extra_args: '-g VirtualPythonEnv -o cura:devtools=True -c tools.build:skip_test=False --options "*:enable_sentry=False"' - unit_test_cmd: 'pytest --junitxml=junit_cura.xml' - unit_test_dir: 'tests' - conan_generator_dir: './venv/bin' - secrets: inherit \ No newline at end of file + test_use_pytest: true diff --git a/.github/workflows/update-translation.yml b/.github/workflows/update-translation.yml index 55ce144666..189390410b 100644 --- a/.github/workflows/update-translation.yml +++ b/.github/workflows/update-translation.yml @@ -1,87 +1,15 @@ -name: update-translations +name: Update translations on: - push: - paths: - - 'plugins/**' - - 'resources/**' - - 'cura/**' - - 'icons/**' - - 'tests/**' - - 'packaging/**' - - '.github/workflows/conan-*.yml' - - '.github/workflows/notify.yml' - - '.github/workflows/requirements-conan-package.txt' - - 'requirements*.txt' - - 'conanfile.py' - - 'conandata.yml' - - 'GitVersion.yml' - - '*.jinja' - branches: - - '[1-9].[0-9]' - - '[1-9].[0-9][0-9]' - tags: - - '[1-9].[0-9].[0-9]*' - - '[1-9].[0-9].[0-9]' - - '[1-9].[0-9][0-9].[0-9]*' + workflow_dispatch: + inputs: + branch: + description: 'Specific branch to update translations on' + required: false + type: string jobs: update-translations: - name: Update translations - - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Cache Conan data - id: cache-conan - uses: actions/cache@v3 - with: - path: ~/.conan - key: ${{ runner.os }}-conan - - - name: Setup Python and pip - uses: actions/setup-python@v4 - with: - python-version: 3.11.x - cache: pip - cache-dependency-path: .github/workflows/requirements-conan-package.txt - - - name: Install Python requirements for runner - run: pip install -r .github/workflows/requirements-conan-package.txt - - # NOTE: Due to what are probably github issues, we have to remove the cache and reconfigure before the rest. - # This is maybe because grub caches the disk it uses last time, which is recreated each time. - - name: Install Linux system requirements - if: ${{ runner.os == 'Linux' }} - run: | - sudo rm /var/cache/debconf/config.dat - sudo dpkg --configure -a - sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y - sudo apt update - sudo apt upgrade - sudo apt install efibootmgr build-essential checkinstall libegl-dev zlib1g-dev libssl-dev ninja-build autoconf libx11-dev libx11-xcb-dev libfontenc-dev libice-dev libsm-dev libxau-dev libxaw7-dev libxcomposite-dev libxcursor-dev libxdamage-dev libxdmcp-dev libxext-dev libxfixes-dev libxi-dev libxinerama-dev libxkbfile-dev libxmu-dev libxmuu-dev libxpm-dev libxrandr-dev libxrender-dev libxres-dev libxss-dev libxt-dev libxtst-dev libxv-dev libxvmc-dev libxxf86vm-dev xtrans-dev libxcb-render0-dev libxcb-render-util0-dev libxcb-xkb-dev libxcb-icccm4-dev libxcb-image0-dev libxcb-keysyms1-dev libxcb-randr0-dev libxcb-shape0-dev libxcb-sync-dev libxcb-xfixes0-dev libxcb-xinerama0-dev xkb-data libxcb-dri3-dev uuid-dev libxcb-util-dev libxkbcommon-x11-dev pkg-config flex bison g++-12 gcc-12 -y - - - name: Install GCC-13 - run: | - sudo apt install g++-13 gcc-13 -y - sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 13 - sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-13 13 - - - name: Create the default Conan profile - run: conan profile new default --detect --force - - - name: Get Conan configuration - run: | - conan config install https://github.com/Ultimaker/conan-config.git - conan config install https://github.com/Ultimaker/conan-config.git -a "-b runner/${{ runner.os }}/${{ runner.arch }}" - - - name: generate the files using Conan install - run: conan install . --build=missing --update -o cura:devtools=True - - - uses: stefanzweifel/git-auto-commit-action@v4 - with: - file_pattern: resources/i18n/*.po resources/i18n/*.pot - status_options: --untracked-files=no - commit_message: update translations + uses: ultimaker/cura-workflows/.github/workflows/update-translations.yml@main + with: + branch: ${{ inputs.branch }} diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 704aa4ddde..fe96125dc9 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -6,11 +6,14 @@ on: inputs: cura_conan_version: description: 'Cura Conan Version' - default: 'cura/latest@ultimaker/testing' - required: true + default: '' + type: string + package_overrides: + description: 'List of specific packages to be used (space-separated)' + default: '' type: string conan_args: - description: 'Conan args: eq.: --require-override' + description: 'Conan args' default: '' required: false type: string @@ -24,13 +27,6 @@ on: default: false required: true type: boolean - architecture: - description: 'Architecture' - required: true - default: 'X64' - type: choice - options: - - X64 operating_system: description: 'OS' required: true @@ -45,9 +41,9 @@ jobs: uses: ultimaker/cura-workflows/.github/workflows/cura-installer-windows.yml@main with: cura_conan_version: ${{ inputs.cura_conan_version }} + package_overrides: ${{ inputs.package_overrides }} conan_args: ${{ inputs.conan_args }} enterprise: ${{ inputs.enterprise }} staging: ${{ inputs.staging }} - architecture: ${{ inputs.architecture }} operating_system: ${{ inputs.operating_system }} secrets: inherit diff --git a/CuraVersion.py.jinja b/CuraVersion.py.jinja index 515293b8af..77d48775b9 100644 --- a/CuraVersion.py.jinja +++ b/CuraVersion.py.jinja @@ -4,6 +4,7 @@ CuraAppName = "{{ cura_app_name }}" CuraAppDisplayName = "{{ cura_app_display_name }}" CuraVersion = "{{ cura_version }}" +CuraVersionFull = "{{ cura_version_full }}" CuraBuildType = "{{ cura_build_type }}" CuraDebugMode = {{ cura_debug_mode }} CuraCloudAPIRoot = "{{ cura_cloud_api_root }}" @@ -14,4 +15,7 @@ CuraDigitalFactoryURL = "{{ cura_digital_factory_url }}" CuraLatestURL = "{{ cura_latest_url }}" ConanInstalls = {{ conan_installs }} + PythonInstalls = {{ python_installs }} + +DependenciesDescriptions = {{ dependencies_description }} diff --git a/README.md b/README.md index 37978a30f9..35cf48ea5e 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,8 @@ [![Button Settings]][Settings]    [![Button Localize]][Localize] +[![Button Libraries]][Libraries] +

@@ -75,6 +77,7 @@ [Report]: docs/Report.md [Logo]: resources/images/cura-icon.png [#]: # +[Libraries]: https://github.com/Ultimaker/Cura/blob/main/licenses_thirdparty @@ -90,6 +93,7 @@ [Badge Downloads]: https://img.shields.io/github/downloads-pre/Ultimaker/Cura/latest/total?style=for-the-badge + [Button Localize]: https://img.shields.io/badge/Help_Localize-e2467d?style=for-the-badge&logoColor=white&logo=GoogleTranslate @@ -98,5 +102,6 @@ [Button Building]: https://img.shields.io/badge/Building_Cura-blue?style=for-the-badge&logoColor=white&logo=GitBook [Button Plugins]: https://img.shields.io/badge/Plugin_Usage-569A31?style=for-the-badge&logoColor=white&logo=ROS [Button Report]: https://img.shields.io/badge/Report_Issues-C9284D?style=for-the-badge&logoColor=white&logo=Cliqz +[Button Libraries]: https://img.shields.io/badge/third--party_libraries-b928c9?style=for-the-badge diff --git a/UltiMaker-Cura.spec.jinja b/UltiMaker-Cura.spec.jinja index 2dce96282e..6d06ab7ff9 100644 --- a/UltiMaker-Cura.spec.jinja +++ b/UltiMaker-Cura.spec.jinja @@ -28,7 +28,7 @@ a = Analysis( binaries=binaries, datas=datas, hiddenimports=hiddenimports, - hookspath=[], + hookspath=["Cura-workflows/runner_scripts/pyinstaller_hooks"], hooksconfig={}, runtime_hooks=[], excludes=[], @@ -75,7 +75,7 @@ app = BUNDLE( coll, name='{{ display_name }}.app', icon={{ icon }}, - bundle_identifier={{ osx_bundle_identifier }} + "_" + '{{ display_name }}'.replace(" ", "_") + "_" {{ short_version }}, + bundle_identifier={{ osx_bundle_identifier }} + "_" + '{{ display_name }}'.replace(" ", "_"), version={{ version }}, info_plist={ 'CFBundleDisplayName': '{{ display_name }}', diff --git a/conandata.yml b/conandata.yml index cf94aee8ac..3181d601e5 100644 --- a/conandata.yml +++ b/conandata.yml @@ -1,18 +1,18 @@ -version: "5.8.0-alpha.0" +version: "5.11.0-alpha.0" requirements: - - "cura_resources/(latest)@ultimaker/testing" - - "uranium/(latest)@ultimaker/testing" - - "curaengine/(latest)@ultimaker/testing" - - "cura_binary_data/(latest)@ultimaker/testing" - - "fdm_materials/(latest)@ultimaker/testing" - - "curaengine_plugin_gradual_flow/0.1.1-beta.3" - - "dulcificum/latest@ultimaker/testing" - - "pysavitar/5.3.0" - - "pynest2d/5.3.0" - - "native_cad_plugin/2.0.0" + - "cura_resources/5.11.0-alpha.0@ultimaker/testing" + - "uranium/5.11.0-alpha.0@ultimaker/testing" + - "curaengine/5.11.0-alpha.0@ultimaker/testing" + - "cura_binary_data/5.11.0-alpha.0@ultimaker/testing" + - "fdm_materials/5.11.0-alpha.0@ultimaker/testing" + - "dulcificum/5.10.0" + - "pysavitar/5.11.0-alpha.0" + - "pynest2d/5.10.0" requirements_internal: - - "fdm_materials/(latest)@internal/testing" - - "cura_private_data/(latest)@internal/testing" + - "fdm_materials/5.11.0-alpha.0@ultimaker/testing" + - "cura_private_data/5.11.0-alpha.0@internal/testing" +requirements_enterprise: + - "native_cad_plugin/2.0.0" urls: default: cloud_api_root: "https://api.ultimaker.com" @@ -26,6 +26,7 @@ urls: marketplace_root: "https://marketplace-staging.ultimaker.com" digital_factory_url: "https://digitalfactory-staging.ultimaker.com" cura_latest_url: "https://software.ultimaker.com/latest.json" + pyinstaller: runinfo: entrypoint: "cura_app.py" @@ -34,22 +35,16 @@ pyinstaller: package: "cura" src: "plugins" dst: "share/cura/plugins" - curaengine_gradual_flow_plugin: - package: "curaengine_plugin_gradual_flow" - src: "res/plugins/CuraEngineGradualFlow" - dst: "share/cura/plugins/CuraEngineGradualFlow" - curaengine_gradual_flow_plugin_bundled: - package: "curaengine_plugin_gradual_flow" + native_cad_plugin: + package: "native_cad_plugin" + src: "res/plugins/NativeCADplugin" + dst: "share/cura/plugins/NativeCADplugin" + enterprise_only: true + native_cad_plugin_bundled: + package: "native_cad_plugin" src: "res/bundled_packages" dst: "share/cura/resources/bundled_packages" - native_cad_plugin: - package: "native_cad_plugin" - src: "res/plugins/NativeCADplugin" - dst: "share/cura/plugins/NativeCADplugin" - native_cad_plugin_bundled: - package: "native_cad_plugin" - src: "res/bundled_packages" - dst: "share/cura/resources/bundled_packages" + enterprise_only: true cura_resources: package: "cura" src: "resources" @@ -87,29 +82,18 @@ pyinstaller: package: "cura_binary_data" src: "windows" dst: "share/windows" + oses: + - "Windows" fdm_materials: package: "fdm_materials" src: "res/resources/materials" dst: "share/cura/resources/materials" - tcl: - package: "tcl" - src: "lib/tcl8.6" - dst: "tcl" - tk: - package: "tk" - src: "lib/tk8.6" - dst: "tk" binaries: curaengine: package: "curaengine" src: "bin" dst: "." binary: "CuraEngine" - curaengine_gradual_flow_plugin_service: - package: "curaengine_plugin_gradual_flow" - src: "bin" - dst: "." - binary: "curaengine_plugin_gradual_flow" hiddenimports: - "pySavitar" - "pyArcus" @@ -123,6 +107,12 @@ pyinstaller: - "fcntl" - "stl" - "serial" + - "win32cred" + - "win32timezone" + - "pkgutil" + hiddenimports_WINDOWS_ONLY: + - "PyQt6.Qt" + - "PyQt6.Qt6" collect_all: - "cura" - "UM" @@ -134,10 +124,29 @@ pyinstaller: - "PyQt6.QtNetwork" - "PyQt6.sip" - "stl" + - "keyrings.alt" + - "pynavlib" + collect_all_WINDOWS_ONLY: + - "PyQt6.Qt" + - "PyQt6.Qt6" icon: Windows: "./icons/Cura.ico" Macos: "./icons/cura.icns" Linux: "./icons/cura-128.png" + blacklist: + - [ "assimp" ] + - [ "qt", "charts" ] + - [ "qt", "coap" ] + - [ "qt", "data", "vis" ] + - [ "qt", "lab", "animat" ] + - [ "qt", "mqtt" ] + - [ "qt", "net", "auth" ] + - [ "quick3d" ] + - [ "qt", "timeline" ] + - [ "qt", "virt", "key" ] + - [ "qt", "wayland", "compos" ] + - [ "qt", "5", "compat" ] + pycharm_targets: - jinja_path: .run_templates/pycharm_cura_run.run.xml.jinja module_name: Cura @@ -256,3 +265,374 @@ pycharm_targets: module_name: Cura name: pytest in TestSettingVisibilityPresets.py script_name: tests/Settings/TestSettingVisibilityPresets.py + - jinja_path: .run_templates/pycharm_cura_test.run.xml.jinja + module_name: Cura + name: pytest in TestStartEndGCode.py + script_name: tests/Machines/TestStartEndGCode.py + +pip_requirements_core: + any_os: + charon: + url: "git+https://github.com/ultimaker/libcharon@master/s-line#egg=charon" + certifi: + version: "2023.5.7" + hashes: + - sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716 + - sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7 + zeroconf: + version: "0.31.0" + hashes: + - sha256:5a468da018bc3f04bbce77ae247924d802df7aeb4c291bbbb5a9616d128800b0 + - sha256:53a180248471c6f81bd1fffcbce03ed93d7d8eaf10905c9121ac1ea996d19844 + importlib-metadata: + version: "4.10.0" + hashes: + - sha256:b7cf7d3fef75f1e4c80a96ca660efbd51473d7e8f39b5ab9210febc7809012a4 + - sha256:92a8b58ce734b2a4494878e0ecf7d79ccd7a128b5fc6014c401e0b61f006f0f6 + trimesh: + version: "3.9.36" + hashes: + - sha256:8ac8bea693b3ee119f11b022fc9b9481c9f1af06cb38bc859bf5d16bbbe49b23 + - sha256:f01e8edab14d1999700c980c21a1546f37417216ad915a53be649d263130181e + setuptools: + version: "75.6.0" + hashes: + - sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d + - sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6 + sentry-sdk: + version: "0.13.5" + hashes: + - sha256:05285942901d38c7ce2498aba50d8e87b361fc603281a5902dda98f3f8c5e145 + - sha256:c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82 + pyserial: + version: "3.4" + hashes: + - sha256:e0770fadba80c31013896c7e6ef703f72e7834965954a78e71a3049488d4d7d8 + - sha256:6e2d401fdee0eab996cf734e67773a0143b932772ca8b42451440cfed942c627 + chardet: + version: "3.0.4" + hashes: + - sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 + - sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae + idna: + version: "2.8" + hashes: + - sha256:ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c + - sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407 + attrs: + version: "21.3.0" + hashes: + - sha256:8f7335278dedd26b58c38e006338242cc0977f06d51579b2b8b87b9b33bff66c + - sha256:50f3c9b216dc9021042f71b392859a773b904ce1a029077f58f6598272432045 + requests: + version: "2.32.3" + hashes: + - sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6 + - sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760 + twisted: + version: "21.2.0" + hashes: + - sha256:aab38085ea6cda5b378b519a0ec99986874921ee8881318626b0a3414bb2631e + - sha256:77544a8945cf69b98d2946689bbe0c75de7d145cdf11f391dd487eae8fc95a12 + constantly: + version: "15.1.0" + hashes: + - sha256:dd2fa9d6b1a51a83f0d7dd76293d734046aa176e384bf6e33b7e44880eb37c5d + - sha256:586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35 + hyperlink: + version: "21.0.0" + hashes: + - sha256:e6b14c37ecb73e89c77d78cdb4c2cc8f3fb59a885c5b3f819ff4ed80f25af1b4 + - sha256:427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b + incremental: + version: "22.10.0" + hashes: + - sha256:b864a1f30885ee72c5ac2835a761b8fe8aa9c28b9395cacf27286602688d3e51 + - sha256:912feeb5e0f7e0188e6f42241d2f450002e11bbc0937c65865045854c24c0bd0 + zope.interface: + version: "5.4.0" + hashes: + - sha256:7df1e1c05304f26faa49fa752a8c690126cf98b40b91d54e6e9cc3b7d6ffe8b7 + - sha256:2c98384b254b37ce50eddd55db8d381a5c53b4c10ee66e1e7fe749824f894021 + - sha256:08f9636e99a9d5410181ba0729e0408d3d8748026ea938f3b970a0249daa8192 + - sha256:0ea1d73b7c9dcbc5080bb8aaffb776f1c68e807767069b9ccdd06f27a161914a + - sha256:273f158fabc5ea33cbc936da0ab3d4ba80ede5351babc4f577d768e057651531 + - sha256:f7ee479e96f7ee350db1cf24afa5685a5899e2b34992fb99e1f7c1b0b758d263 + - sha256:b0297b1e05fd128d26cc2460c810d42e205d16d76799526dfa8c8ccd50e74959 + - sha256:af310ec8335016b5e52cae60cda4a4f2a60a788cbb949a4fbea13d441aa5a09e + - sha256:9a9845c4c6bb56e508651f005c4aeb0404e518c6f000d5a1123ab077ab769f5c + - sha256:a1e6e96217a0f72e2b8629e271e1b280c6fa3fe6e59fa8f6701bec14e3354325 + - sha256:877473e675fdcc113c138813a5dd440da0769a2d81f4d86614e5d62b69497155 + - sha256:0b465ae0962d49c68aa9733ba92a001b2a0933c317780435f00be7ecb959c702 + - sha256:5dd9ca406499444f4c8299f803d4a14edf7890ecc595c8b1c7115c2342cadc5f + - sha256:469e2407e0fe9880ac690a3666f03eb4c3c444411a5a5fddfdabc5d184a79f05 + - sha256:52de7fc6c21b419078008f697fd4103dbc763288b1406b4562554bd47514c004 + - sha256:3dd4952748521205697bc2802e4afac5ed4b02909bb799ba1fe239f77fd4e117 + - sha256:dd93ea5c0c7f3e25335ab7d22a507b1dc43976e1345508f845efc573d3d779d8 + - sha256:3748fac0d0f6a304e674955ab1365d515993b3a0a865e16a11ec9d86fb307f63 + - sha256:66c0061c91b3b9cf542131148ef7ecbecb2690d48d1612ec386de9d36766058f + - sha256:d0c1bc2fa9a7285719e5678584f6b92572a5b639d0e471bb8d4b650a1a910920 + - sha256:2876246527c91e101184f63ccd1d716ec9c46519cc5f3d5375a3351c46467c46 + - sha256:334701327f37c47fa628fc8b8d28c7d7730ce7daaf4bda1efb741679c2b087fc + - sha256:71aace0c42d53abe6fc7f726c5d3b60d90f3c5c055a447950ad6ea9cec2e37d9 + - sha256:5bb3489b4558e49ad2c5118137cfeaf59434f9737fa9c5deefc72d22c23822e2 + - sha256:1c0e316c9add0db48a5b703833881351444398b04111188069a26a61cfb4df78 + - sha256:6f0c02cbb9691b7c91d5009108f975f8ffeab5dff8f26d62e21c493060eff2a1 + - sha256:7d97a4306898b05404a0dcdc32d9709b7d8832c0c542b861d9a826301719794e + - sha256:867a5ad16892bf20e6c4ea2aab1971f45645ff3102ad29bd84c86027fa99997b + - sha256:5f931a1c21dfa7a9c573ec1f50a31135ccce84e32507c54e1ea404894c5eb96f + - sha256:194d0bcb1374ac3e1e023961610dc8f2c78a0f5f634d0c737691e215569e640d + - sha256:8270252effc60b9642b423189a2fe90eb6b59e87cbee54549db3f5562ff8d1b8 + - sha256:15e7d1f7a6ee16572e21e3576d2012b2778cbacf75eb4b7400be37455f5ca8bf + - sha256:8892f89999ffd992208754851e5a052f6b5db70a1e3f7d54b17c5211e37a98c7 + - sha256:2e5a26f16503be6c826abca904e45f1a44ff275fdb7e9d1b75c10671c26f8b94 + - sha256:0f91b5b948686659a8e28b728ff5e74b1be6bf40cb04704453617e5f1e945ef3 + - sha256:4de4bc9b6d35c5af65b454d3e9bc98c50eb3960d5a3762c9438df57427134b8e + - sha256:bf68f4b2b6683e52bec69273562df15af352e5ed25d1b6641e7efddc5951d1a7 + - sha256:63b82bb63de7c821428d513607e84c6d97d58afd1fe2eb645030bdc185440120 + - sha256:db1fa631737dab9fa0b37f3979d8d2631e348c3b4e8325d6873c2541d0ae5a48 + - sha256:f44e517131a98f7a76696a7b21b164bcb85291cee106a23beccce454e1f433a4 + - sha256:a9506a7e80bcf6eacfff7f804c0ad5350c8c95b9010e4356a4b36f5322f09abb + - sha256:3c02411a3b62668200910090a0dff17c0b25aaa36145082a5a6adf08fa281e54 + - sha256:0cee5187b60ed26d56eb2960136288ce91bcf61e2a9405660d271d1f122a69a4 + - sha256:a8156e6a7f5e2a0ff0c5b21d6bcb45145efece1909efcbbbf48c56f8da68221d + - sha256:205e40ccde0f37496904572035deea747390a8b7dc65146d30b96e2dd1359a83 + - sha256:3f24df7124c323fceb53ff6168da70dbfbae1442b4f3da439cd441681f54fe25 + - sha256:5208ebd5152e040640518a77827bdfcc73773a15a33d6644015b763b9c9febc1 + - sha256:17776ecd3a1fdd2b2cd5373e5ef8b307162f581c693575ec62e7c5399d80794c + - sha256:d4d9d6c1a455d4babd320203b918ccc7fcbefe308615c521062bc2ba1aa4d26e + - sha256:0cba8477e300d64a11a9789ed40ee8932b59f9ee05f85276dbb4b59acee5dd09 + - sha256:5dba5f530fec3f0988d83b78cc591b58c0b6eb8431a85edd1569a0539a8a5a0e + automat: + version: "20.2.0" + hashes: + - sha256:b6feb6455337df834f6c9962d6ccf771515b7d939bca142b29c20c2376bc6111 + - sha256:7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33 + shapely: + version: "2.0.6" + hashes: + - sha256:29a34e068da2d321e926b5073539fd2a1d4429a2c656bd63f0bd4c8f5b236d0b + - sha256:e1c84c3f53144febf6af909d6b581bc05e8785d57e27f35ebaa5c1ab9baba13b + - sha256:2ad2fae12dca8d2b727fa12b007e46fbc522148a584f5d6546c539f3464dccde + - sha256:b3304883bd82d44be1b27a9d17f1167fda8c7f5a02a897958d86c59ec69b705e + - sha256:3ec3a0eab496b5e04633a39fa3d5eb5454628228201fb24903d38174ee34565e + - sha256:28f87cdf5308a514763a5c38de295544cb27429cfa655d50ed8431a4796090c4 + - sha256:5aeb0f51a9db176da9a30cb2f4329b6fbd1e26d359012bb0ac3d3c7781667a9e + - sha256:9a7a78b0d51257a367ee115f4d41ca4d46edbd0dd280f697a8092dd3989867b2 + - sha256:f32c23d2f43d54029f986479f7c1f6e09c6b3a19353a3833c2ffb226fb63a855 + - sha256:b3dc9fb0eb56498912025f5eb352b5126f04801ed0e8bdbd867d21bdbfd7cbd0 + - sha256:d93b7e0e71c9f095e09454bf18dad5ea716fb6ced5df3cb044564a00723f339d + - sha256:c02eb6bf4cfb9fe6568502e85bb2647921ee49171bcd2d4116c7b3109724ef9b + - sha256:cec9193519940e9d1b86a3b4f5af9eb6910197d24af02f247afbfb47bcb3fab0 + - sha256:83b94a44ab04a90e88be69e7ddcc6f332da7c0a0ebb1156e1c4f568bbec983c3 + - sha256:537c4b2716d22c92036d00b34aac9d3775e3691f80c7aa517c2c290351f42cd8 + - sha256:98fea108334be345c283ce74bf064fa00cfdd718048a8af7343c59eb40f59726 + - sha256:42fd4cd4834747e4990227e4cbafb02242c0cffe9ce7ef9971f53ac52d80d55f + - sha256:665990c84aece05efb68a21b3523a6b2057e84a1afbef426ad287f0796ef8a48 + - sha256:42805ef90783ce689a4dde2b6b2f261e2c52609226a0438d882e3ced40bb3013 + - sha256:6d2cb146191a47bd0cee8ff5f90b47547b82b6345c0d02dd8b25b88b68af62d7 + - sha256:e3fdef0a1794a8fe70dc1f514440aa34426cc0ae98d9a1027fb299d45741c381 + - sha256:2c665a0301c645615a107ff7f52adafa2153beab51daf34587170d85e8ba6805 + - sha256:0334bd51828f68cd54b87d80b3e7cee93f249d82ae55a0faf3ea21c9be7b323a + - sha256:d37d070da9e0e0f0a530a621e17c0b8c3c9d04105655132a87cfff8bd77cc4c2 + - sha256:fa7468e4f5b92049c0f36d63c3e309f85f2775752e076378e36c6387245c5462 + - sha256:ed5867e598a9e8ac3291da6cc9baa62ca25706eea186117034e8ec0ea4355653 + - sha256:81d9dfe155f371f78c8d895a7b7f323bb241fb148d848a2bf2244f79213123fe + - sha256:fbb7bf02a7542dba55129062570211cfb0defa05386409b3e306c39612e7fbcc + - sha256:837d395fac58aa01aa544495b97940995211e3e25f9aaf87bc3ba5b3a8cd1ac7 + - sha256:c6d88ade96bf02f6bfd667ddd3626913098e243e419a0325ebef2bbd481d1eb6 + - sha256:8b3b818c4407eaa0b4cb376fd2305e20ff6df757bf1356651589eadc14aab41b + - sha256:1bbc783529a21f2bd50c79cef90761f72d41c45622b3e57acf78d984c50a5d13 + - sha256:2423f6c0903ebe5df6d32e0066b3d94029aab18425ad4b07bf98c3972a6e25a1 + - sha256:2de00c3bfa80d6750832bde1d9487e302a6dd21d90cb2f210515cefdb616e5f5 + - sha256:3a82d58a1134d5e975f19268710e53bddd9c473743356c90d97ce04b73e101ee + - sha256:392f66f458a0a2c706254f473290418236e52aa4c9b476a072539d63a2460595 + - sha256:eba5bae271d523c938274c61658ebc34de6c4b33fdf43ef7e938b5776388c1be + - sha256:7060566bc4888b0c8ed14b5d57df8a0ead5c28f9b69fb6bed4476df31c51b0af + - sha256:b02154b3e9d076a29a8513dffcb80f047a5ea63c897c0cd3d3679f29363cf7e5 + - sha256:44246d30124a4f1a638a7d5419149959532b99dfa25b54393512e6acc9c211ac + - sha256:2b542d7f1dbb89192d3512c52b679c822ba916f93479fa5d4fc2fe4fa0b3c9e8 + - sha256:997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6 + cython: + version: "0.29.26" + hashes: + - sha256:c4b003b6b7aa9e74552ef8d4e6009b3e3c3e8fa585710b3a6d062e088e460c1b + - sha256:ce804a021c92fea66c8c100781a111706f21bade7a546895c5a9c57fe2df8b24 + - sha256:93840f2071c1f15e613509eadee1fbcd335e8666772437fe5038e24059edd48c + - sha256:10402f0f1564ffc6ecb9c45e07f995771d05bb0b0e1d151e40574638292ee3a5 + - sha256:8e07121b34221458a2151d37e137b8f5b011a9c51dd38db2499a6198590aa319 + - sha256:233a87db76941626f1db08f4b25a4a5b425b13b64ed0e673c3641f7b650a48d8 + - sha256:6773cce9d4b3b6168d8feb2b6f06b658ef1e11cbfec075041745666d8e2a5e45 + - sha256:c813799d533194b7d85203d881d8b4f567a8c644a67f50d47f1ffbf316df412f + - sha256:362fbb9cb4627c7786231429768b54aaba5459a2a0e46c25e59f202ca6155437 + - sha256:2b834ff6e4d10ba6d7a0d676dd71c1b427a181ddbbbbf79e91d1861557aab59f + - sha256:0c3093bc99facfc97e5019f6c5bc39987663792265c1334d9fc9e37c3a3dcd6f + - sha256:bbf0149680c1fca07200a3ed372b22e6bad7851d191b717a61f9a68af370e180 + - sha256:a1cc55db32cd39474081d478263b96e036552cdbbab8831c90ea43fb385a9b66 + - sha256:ebe32e002a9e6553de399033e259ece72aa17c77f740b265e66f122572a8a278 + - sha256:6b385f68789c3e8a75b4827e8a4970ff04605ad3cb1c0b41005cc69368dad65d + - sha256:1519eb639de308f5763eb0666b4cc7bd3958268f3f6228cc610b7b4d6c94b68b + - sha256:e118525defec3f67471d8ee5ce04340d43195410a87e5d7ec8a1a9e953c0066a + - sha256:706ea55f58c2722206e51cd9a8754ed0995c4c4231d24b095875d2641d745222 + - sha256:77913fe27c5e22c995bac090d01e200ff91e5f58aa944e2d2e94cbf67ea2ae34 + - sha256:51923120f57a42c59f5ee6bba9e89a31a394ae8cd419c753f64d8a3aea1ee8b7 + - sha256:82881565d04027728d7762edd8c085927a840873af7ee049d703e0ca226bc08d + - sha256:531303085503959338e6cdac630626280ef111aecbb22d48321673a8c3897c0a + - sha256:0205b685802eb4c039b14f67b7ac3f00c55ff04b9e3871df2249576d3e59ba42 + - sha256:7df94e56872df8f396ca669466fee60256f69f678654239f706b1e643c2ac4a5 + - sha256:4b7d04b393d9a4b5fec0cbc4b0f29fe083a9d862d95231a6e7608978bd661d7e + - sha256:af91dd63ac5f1f7fc70dc91ea063f727db42b5eb934d1f3832611be18e25171e + - sha256:d83dad8dc6c63706cb3178dc79010b3865b1345090727189d2cd61758a825ee8 + - sha256:ca10e9fde0eaba1407ab353ff07a26daaa3e4dbe356108a149e482d441f070dd + - sha256:fec66cd0a48697fab903854566235aecf1084f62e3163d6589ae7335a1b4d448 + - sha256:b3041e45aefaa4449fd671902132c0ac1f72eedaedac745c0e1a70a13bf990bb + - sha256:ed76fb98979f02b5e89079906071983a36f3634d3028b86f935cf0196f24fcaa + - sha256:4d868e1a41f5123f51a20c1b8e82f7cb6fa3370c104e98e707f7c910e8cadad1 + - sha256:868f309095e557f06dc58723ae865e8c65cfedb2646a562bd8080c92d69e4e4b + - sha256:be550b566345bf53b95616334793ce42a128cf1d9dcde1e28cbf7ce52ea61d6d + - sha256:be13be1e2b9b7395588f2a23bfa692f2f3e6f7936ccf7825c83431b8c8c3452b + - sha256:41ee918480371ae5e5851ba9b1ead5a183e24aedb27bf807c7405d124e943f40 + - sha256:c91b1ba0d43f7f7ccde8121c672207c7891735ddcc83496af1e0ab617ddc4aba + - sha256:5ecf5cf5b57086cc6c1cfc76d6353bbd7023e95da32e0883f1302ca50e481c33 + - sha256:0ffce25bf50fa926ec6bf8d6f29650e7cb33fae445938c9880e1ce9b776353ef + - sha256:5041adfef502d67ecd5e291a7cf645a37fed7a9dac557f40d491053f35204d00 + - sha256:5fd5db458c9d3d2c2abd047f3190624d9cce8a80a8e0ca0baa69cfd133a523bc + - sha256:75eaa22911d2ec37a3841f77b710b178c805cd378b5e1c4fb82dbc35620d2062 + - sha256:3aed8c642e8fb27024bca46830b7f62335a44a92354acf708d6b8d050f945a3a + - sha256:b5ca05c2bfba0c2480b5fd390ecffe46b8da574d887d600388d6e3caf3f99a88 + - sha256:f5e15ff892c8afad64931ee3dd723c4755c2c516606f9aae7613bebfac62b0f6 + - sha256:af377d543a762867da11fcf6e558f7a4a535ff8693f30cce123fab10c00fa312 + pybind11: + version: "2.6.2" + hashes: + - sha256:2d8aebe1709bc367e34e3b23d8eccbf3f387ee9d5640548c6260d33b59f02405 + - sha256:d0e0aed9279656f21501243b707eb6e3b951e89e10c3271dedf3ae41c365e5ed + wheel: + version: "0.37.1" + hashes: + - sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a + - sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4 + ifaddr: + version: "0.1.7" + hashes: + - sha256:d1f603952f0a71c9ab4e705754511e4e03b02565bc4cec7188ad6415ff534cd3 + - sha256:1f9e8a6ca6f16db5a37d3356f07b6e52344f6f9f7e806d618537731669eb1a94 + pycparser: + version: "2.20" + hashes: + - sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705 + - sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0 + zipp: + version: "3.5.0" + hashes: + - sha256:957cfda87797e389580cb8b9e3870841ca991e2125350677b2ca83a0e99390a3 + - sha256:f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4 + urllib3: + version: "2.2.3" + hashes: + - sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac + - sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9 + jeepney: + version: "0.8.0" + hashes: + - sha256:c0a454ad016ca575060802ee4d590dd912e35c122fa04e70306de3d076cce755 + - sha256:5efe48d255973902f6badc3ce55e2aa6c5c3b3bc642059ef3a91247bcfcc5806 + SecretStorage: + version: "3.3.3" + hashes: + - sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99 + - sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77 + keyring: + version: "25.5.0" + hashes: + - sha256:e67f8ac32b04be4714b42fe84ce7dad9c40985b9ca827c592cc303e7c26d9741 + - sha256:4c753b3ec91717fe713c4edd522d625889d8973a349b0e582622f49766de58e6 + jaraco.classes: + version: "3.4.0" + hashes: + - sha256:f662826b6bed8cace05e7ff873ce0f9283b5c924470fe664fff1c2f00f581790 + - sha256:47a024b51d0239c0dd8c8540c6c7f484be3b8fcf0b2d85c13825780d3b3f3acd + jaraco.functools: + version: "4.1.0" + hashes: + - sha256:ad159f13428bc4acbf5541ad6dec511f91573b90fba04df61dafa2a1231cf649 + - sha256:70f7e0e2ae076498e212562325e805204fc092d7b4c17e0e86c959e249701a9d + jaraco.context: + version: "6.0.1" + hashes: + - sha256:f797fc481b490edb305122c9181830a3a5b76d84ef6d1aef2fb9b47ab956f9e4 + - sha256:9bae4ea555cf0b14938dc0aee7c9f32ed303aa20a3b73e7dc80111628792d1b3 + more_itertools: + version: "10.5.0" + hashes: + - sha256:037b0d3203ce90cca8ab1defbbdac29d5f993fc20131f3664dc8d6acfa872aef + - sha256:5482bfef7849c25dc3c6dd53a6173ae4795da2a41a80faea6700d9f5846c5da6 + charset-normalizer: + version: "2.1.0" + hashes: + - sha256:5189b6f22b01957427f35b6a08d9a0bc45b46d3788ef5a92e978433c7a35f8a5 + - sha256:575e708016ff3a5e3681541cb9d79312c416835686d054a23accb873b254f413 + + Windows: + twisted-iocpsupport: + version: "1.0.2" + hashes: + - sha256:985c06a33f5c0dae92c71a036d1ea63872ee86a21dd9b01e1f287486f15524b4 + - sha256:81b3abe3527b367da0220482820cb12a16c661672b7bcfcde328902890d63323 + - sha256:9dbb8823b49f06d4de52721b47de4d3b3026064ef4788ce62b1a21c57c3fff6f + - sha256:b9fed67cf0f951573f06d560ac2f10f2a4bbdc6697770113a2fc396ea2cb2565 + - sha256:b76b4eed9b27fd63ddb0877efdd2d15835fdcb6baa745cb85b66e5d016ac2878 + - sha256:851b3735ca7e8102e661872390e3bce88f8901bece95c25a0c8bb9ecb8a23d32 + - sha256:bf4133139d77fc706d8f572e6b7d82871d82ec7ef25d685c2351bdacfb701415 + - sha256:306becd6e22ab6e8e4f36b6bdafd9c92e867c98a5ce517b27fdd27760ee7ae41 + - sha256:3c61742cb0bc6c1ac117a7e5f422c129832f0c295af49e01d8a6066df8cfc04d + - sha256:b435857b9efcbfc12f8c326ef0383f26416272260455bbca2cd8d8eca470c546 + - sha256:7d972cfa8439bdcb35a7be78b7ef86d73b34b808c74be56dfa785c8a93b851bf + - sha256:72068b206ee809c9c596b57b5287259ea41ddb4774d86725b19f35bf56aa32a9 + pywin32-ctypes: + version: "0.2.3" + hashes: + - sha256:8a1513379d709975552d202d942d9837758905c8d01eb82b8bcc30918929e7b8 + - sha256:d162dc04946d704503b2edc4d55f3dba5c1d539ead017afa00142c38b9885755 + pynavlib: + version: "0.9.4" + hashes: + - sha256:fdd5ab5b6e0a2c9bbcebb154ac7303daf845865a1649be04e1bd8e8e5889401f + - sha256:493c4b3cacc939b021a694d99723106dbd7ee5515ad4dfc1c7fc8219ef20cf3a + - sha256:332831553a70be05fe58c43a08109b42970cfedc6086ffb4306859142a0e9210 + - sha256:9173f61ad83172c306b92bbe38f949889c158cd6dfdc924db01f257a437bf2a6 + + Macos: + pynavlib: + version: "0.9.4" + hashes: + - sha256:567efd0af97f9014326898b209eea94d9f5cc58e9f589ccf8354584568fcb87d + - sha256:f0d7ce426e816788aa96b419fd7da263eafb99aca46ce3b6e5dbaf2bbf6b614a + - sha256:33962a322033a78db05a8c2cc3d59e057fbea5b04879c3c54e2fe3041d691a12 + - sha256:d06d94b1dee4ba024b4a121869e572f571673a3b8c15b4055f52236d43c19a02 + +pip_requirements_dev: + any_os: + pytest: {} + pyyaml: {} + sip: { version: "6.5.1" } + jinja2: {} + +pip_requirements_installer: + any_os: + pyinstaller: { version: "6.11.1" } + pyinstaller-hooks-contrib: {} + +python_translation_source_folders: + - cura + - plugins +qml_translation_source_folders: + - resources/qml + - plugins + +extra_dependencies: + conan: + version: "2.7.1" + sources_url: https://github.com/conan-io/conan + license: MIT + summary: Conan C/C++ package manager diff --git a/conanfile.py b/conanfile.py index 787c26785f..28f45e7c24 100644 --- a/conanfile.py +++ b/conanfile.py @@ -1,6 +1,14 @@ +import json import os +import requests +import yaml +import tempfile +import tarfile +from datetime import datetime from io import StringIO from pathlib import Path +from git import Repo +from git.exc import GitCommandError from jinja2 import Template @@ -11,7 +19,7 @@ from conan.tools.env import VirtualRunEnv, Environment, VirtualBuildEnv from conan.tools.scm import Version from conan.errors import ConanInvalidConfiguration, ConanException -required_conan_version = ">=1.58.0 <2.0.0" +required_conan_version = ">=2.7.0" # When changing the version, also change the one in conandata.yml/extra_dependencies class CuraConan(ConanFile): @@ -24,99 +32,55 @@ class CuraConan(ConanFile): build_policy = "missing" exports = "LICENSE*", "*.jinja" settings = "os", "compiler", "build_type", "arch" + generators = "VirtualPythonEnv" + tool_requires = "gettext/0.22.5" - # FIXME: Remove specific branch once merged to main - python_requires = "translationextractor/[>=2.2.0]@ultimaker/stable" + python_requires = "translationextractor/[>=2.2.0]" options = { - "enterprise": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string - "staging": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string - "devtools": [True, False], # FIXME: Split this up in testing and (development / build (pyinstaller) / system installer) tools - "cloud_api_version": "ANY", - "display_name": "ANY", # TODO: should this be an option?? + "enterprise": [True, False], + "staging": [True, False], + "cloud_api_version": ["ANY"], + "display_name": ["ANY"], # TODO: should this be an option?? "cura_debug_mode": [True, False], # FIXME: Use profiles - "internal": ["True", "False", "true", "false"], # Workaround for GH Action passing boolean as lowercase string - "enable_i18n": [True, False], + "internal": [True, False], + "i18n_extract": [True, False], + "skip_licenses_download": [True, False], } default_options = { - "enterprise": "False", - "staging": "False", - "devtools": False, + "enterprise": False, + "staging": False, "cloud_api_version": "1", "display_name": "UltiMaker Cura", "cura_debug_mode": False, # Not yet implemented - "internal": "False", - "enable_i18n": False, + "internal": False, + "i18n_extract": False, + "skip_licenses_download": False, } def set_version(self): if not self.version: self.version = self.conan_data["version"] - @property - def _i18n_options(self): - return self.conf.get("user.i18n:options", default = {"extract": True, "build": True}, check_type = dict) - - @property - def _pycharm_targets(self): - return self.conan_data["pycharm_targets"] - - # FIXME: These env vars should be defined in the runenv. - _cura_env = None - - @property - def _cura_run_env(self): - if self._cura_env: - return self._cura_env - - self._cura_env = Environment() - self._cura_env.define("QML2_IMPORT_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "qml"))) - self._cura_env.define("QT_PLUGIN_PATH", str(self._site_packages.joinpath("PyQt6", "Qt6", "plugins"))) - if not self.in_local_cache: - self._cura_env.define("CURA_DATA_ROOT", str(self._share_dir.joinpath("cura"))) - - if self.settings.os == "Linux": - self._cura_env.define("QT_QPA_FONTDIR", "/usr/share/fonts") - self._cura_env.define("QT_QPA_PLATFORMTHEME", "xdgdesktopportal") - self._cura_env.define("QT_XKB_CONFIG_ROOT", "/usr/share/X11/xkb") - return self._cura_env - - @property - def _enterprise(self): - return self.options.enterprise in ["True", 'true'] - - @property - def _internal(self): - return self.options.internal in ["True", 'true'] - @property def _app_name(self): - if self._enterprise: + if self.options.enterprise: return str(self.options.display_name) + " Enterprise" return str(self.options.display_name) @property def _urls(self): - if self.options.staging in ["True", 'true']: + if self.options.staging: return "staging" return "default" @property - def requirements_txts(self): - if self.options.devtools: - return ["requirements.txt", "requirements-ultimaker.txt", "requirements-dev.txt"] - return ["requirements.txt", "requirements-ultimaker.txt"] + def _root_dir(self): + return Path(self.deploy_folder if hasattr(self, "deploy_folder") else self.source_folder) @property def _base_dir(self): - if self.install_folder is None: - if self.build_folder is not None: - return Path(self.build_folder) - return Path(os.getcwd(), "venv") - if self.in_local_cache: - return Path(self.install_folder) - else: - return Path(self.source_folder, "venv") + return self._root_dir.joinpath("venv") @property def _share_dir(self): @@ -132,7 +96,7 @@ class CuraConan(ConanFile): def _site_packages(self): if self.settings.os == "Windows": return self._base_dir.joinpath("Lib", "site-packages") - py_version = Version(self.deps_cpp_info["cpython"].version) + py_version = Version(self.dependencies["cpython"].ref.version) return self._base_dir.joinpath("lib", f"python{py_version.major}.{py_version.minor}", "site-packages") @property @@ -157,7 +121,7 @@ class CuraConan(ConanFile): # list of conan installs for dependency in self.dependencies.host.values(): conan_installs[dependency.ref.name] = { - "version": dependency.ref.version, + "version": str(dependency.ref.version), "revision": dependency.ref.revision } return conan_installs @@ -166,28 +130,198 @@ class CuraConan(ConanFile): self.output.info("Collecting python installs") python_installs = {} - # list of python installs - run_env = VirtualRunEnv(self) - env = run_env.environment() - env.prepend_path("PYTHONPATH", str(self._site_packages.as_posix())) - venv_vars = env.vars(self, scope = "run") + collect_python_installs = "collect_python_installs.py" + code = f"import importlib.metadata; print(';'.join([(package.metadata['Name']+','+ package.metadata['Version']) for package in importlib.metadata.distributions()]))" + save(self, collect_python_installs, code) - outer = '"' if self.settings.os == "Windows" else "'" - inner = "'" if self.settings.os == "Windows" else '"' buffer = StringIO() - with venv_vars.apply(): - self.run(f"""python -c {outer}import pkg_resources; print({inner};{inner}.join([(s.key+{inner},{inner}+ s.version) for s in pkg_resources.working_set])){outer}""", - env = "conanrun", - output = buffer) + self.run(f"""python {collect_python_installs}""", env = "virtual_python_env", stdout = buffer) + rm(self, collect_python_installs, ".") - packages = str(buffer.getvalue()).split("-----------------\n") - packages = packages[1].strip('\r\n').split(";") + packages = str(buffer.getvalue()).strip('\r\n').split(";") for package in packages: name, version = package.split(",") python_installs[name] = {"version": version} return python_installs + @staticmethod + def _is_repository_url(url): + # That will not work for ALL open-source projects, but should already get a large majority of them + return (url.startswith("https://github.com/") or url.startswith("https://gitlab.com/")) and "conan-center-index" not in url + + def _retrieve_pip_license(self, package, sources_url, dependency_description): + # Download the sources to get the license file inside + self.output.info(f"Retrieving license for {package}") + response = requests.get(sources_url) + response.raise_for_status() + + with tempfile.TemporaryDirectory() as temp_dir: + sources_path = os.path.join(temp_dir, "sources.tar.gz") + with open(sources_path, 'wb') as sources_file: + sources_file.write(response.content) + + with tarfile.open(sources_path, 'r:gz') as sources_archive: + license_file = "LICENSE" + + for source_file in sources_archive.getnames(): + if Path(source_file).name == license_file: + sources_archive.extract(source_file, temp_dir) + + license_file_path = os.path.join(temp_dir, source_file) + with open(license_file_path, 'r', encoding='utf8') as file: + dependency_description["license_full"] = file.read() + + def _make_pip_dependency_description(self, package, version, dependencies): + url = ["https://pypi.org/pypi", package] + if version is not None: + url.append(version) + url.append("json") + + data = requests.get("/".join(url)).json() + + dependency_description = { + "summary": data["info"]["summary"], + "version": data["info"]["version"], + "license": data["info"]["license"] + } + + for url_data in data["urls"]: + if url_data["packagetype"] == "sdist": + sources_url = url_data["url"] + dependency_description["sources_url"] = sources_url + + if not self.options.skip_licenses_download: + self._retrieve_pip_license(package, sources_url, dependency_description) + + for source_url, check_source in [("source", False), + ("Source", False), + ("Source Code", False), + ("Repository", False), + ("Code", False), + ("homepage", True), + ("Homepage", True)]: + try: + url = data["info"]["project_urls"][source_url] + if check_source and not self._is_repository_url(url): + # That will not work for ALL open-source projects, but should already get a large majority of them + self.output.warning(f"Source URL for {package} ({url}) doesn't seem to be a supported repository") + continue + dependency_description["sources_url"] = url + break + except KeyError: + pass + + if dependency_description["license"] is not None and len(dependency_description["license"]) > 32: + # Some packages have their full license in this field + dependency_description["license_full"] = dependency_description["license"] + dependency_description["license"] = data["info"]["name"] + + dependencies[data["info"]["name"]] = dependency_description + + @staticmethod + def _get_license_from_repository(sources_url, version, license_file_name = None): + if sources_url.startswith("https://github.com/Ultimaker/") and "private" in sources_url: + return None + + git_url = sources_url + if git_url.endswith('/'): + git_url = git_url[:-1] + if not git_url.endswith(".git"): + git_url = f"{git_url}.git" + git_url = git_url.replace("/cgit/", "/") + + tags = [f"v{version}", version] + files = ["LICENSE", "LICENSE.txt", "LICENSE.md", "COPYRIGHT", "COPYING", "COPYING.LIB"] if license_file_name is None else [license_file_name] + + with tempfile.TemporaryDirectory() as clone_dir: + repo = Repo.clone_from(git_url, clone_dir, depth=1, no_checkout=True) + + for tag in tags: + try: + repo.git.fetch('--depth', '1', 'origin', 'tag', tag) + except GitCommandError: + continue + + repo.git.sparse_checkout('init', '--cone') + for file_name in files: + repo.git.sparse_checkout('add', file_name) + + try: + repo.git.checkout(tag) + except GitCommandError: + pass + + for file_name in files: + license_file = os.path.join(clone_dir, file_name) + if os.path.exists(license_file): + with open(license_file, 'r', encoding='utf8') as file: + return file.read() + + break + + def _make_conan_dependency_description(self, dependency, dependencies): + dependency_description = { + "summary": dependency.description, + "version": str(dependency.ref.version), + "license": ', '.join(dependency.license) if (isinstance(dependency.license, list) or isinstance(dependency.license, tuple)) else dependency.license, + } + + for source_url, check_source in [(dependency.homepage, True), + (dependency.url, True), + (dependency.homepage, False), + (dependency.url, False)]: + if source_url is None: + continue + + is_repository_source = self._is_repository_url(source_url) + if not check_source or is_repository_source: + dependency_description["sources_url"] = source_url + + if is_repository_source and not self.options.skip_licenses_download: + self.output.info(f"Retrieving license for {dependency.ref.name}") + dependency_description["license_full"] = self._get_license_from_repository(source_url, str(dependency.ref.version)) + + break + + dependencies[dependency.ref.name] = dependency_description + + def _make_extra_dependency_description(self, dependency_name, dependency_data, dependencies): + sources_url = dependency_data["sources_url"] + version = dependency_data["version"] + home_url = dependency_data["home_url"] if "home_url" in dependency_data else sources_url + + dependency_description = { + "summary": dependency_data["summary"], + "version": version, + "license": dependency_data["license"], + "sources_url": home_url, + } + + if not self.options.skip_licenses_download: + self.output.info(f"Retrieving license for {dependency_name}") + license_file = dependency_data["license_file"] if "license_file" in dependency_data else None + dependency_description["license_full"] = self._get_license_from_repository(sources_url, version, license_file) + + dependencies[dependency_name] = dependency_description + + def _dependencies_description(self): + dependencies = {} + + for dependency in [self] + list(self.dependencies.values()): + self._make_conan_dependency_description(dependency, dependencies) + + if "extra_dependencies" in dependency.conan_data: + for dependency_name, dependency_data in dependency.conan_data["extra_dependencies"].items(): + self._make_extra_dependency_description(dependency_name, dependency_data, dependencies) + + pip_requirements_summary = os.path.abspath(Path(self.generators_folder, "pip_requirements_summary.yml") ) + with open(pip_requirements_summary, 'r') as file: + for package_name, package_version in yaml.safe_load(file).items(): + self._make_pip_dependency_description(package_name, package_version, dependencies) + + return dependencies + def _generate_cura_version(self, location): with open(os.path.join(self.recipe_folder, "CuraVersion.py.jinja"), "r") as f: cura_version_py = Template(f.read()) @@ -197,15 +331,18 @@ class CuraConan(ConanFile): cura_version = Version(self.conf.get("user.cura:version", default = self.version, check_type = str)) pre_tag = f"-{cura_version.pre}" if cura_version.pre else "" build_tag = f"+{cura_version.build}" if cura_version.build else "" - internal_tag = f"+internal" if self._internal else "" + internal_tag = f"+internal" if self.options.internal else "" cura_version = f"{cura_version.major}.{cura_version.minor}.{cura_version.patch}{pre_tag}{build_tag}{internal_tag}" - with open(os.path.join(location, "CuraVersion.py"), "w") as f: + self.output.info(f"Write CuraVersion.py to {self.recipe_folder}") + + with open(os.path.join(location, "CuraVersion.py"), "wb") as f: f.write(cura_version_py.render( cura_app_name = self.name, cura_app_display_name = self._app_name, cura_version = cura_version, - cura_build_type = "Enterprise" if self._enterprise else "", + cura_version_full = self.version, + cura_build_type = "Enterprise" if self.options.enterprise else "", cura_debug_mode = self.options.cura_debug_mode, cura_cloud_api_root = self.conan_data["urls"][self._urls]["cloud_api_root"], cura_cloud_api_version = self.options.cloud_api_version, @@ -215,45 +352,112 @@ class CuraConan(ConanFile): cura_latest_url=self.conan_data["urls"][self._urls]["cura_latest_url"], conan_installs=self._conan_installs(), python_installs=self._python_installs(), - )) + dependencies_description=self._dependencies_description(), + ).encode("utf-8")) - def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file): + def _delete_unwanted_binaries(self, root): + dynamic_binary_file_exts = [".so", ".dylib", ".dll", ".pyd", ".pyi"] + prohibited = [ + "qt5compat", + "qtcharts", + "qtcoap", + "qtdatavis3d", + "qtlottie", + "qtmqtt", + "qtnetworkauth", + "qtquick3d", + "quick3d", + "qtquick3dphysics", + "qtquicktimeline", + "qtvirtualkeyboard", + "qtwayland" + ] + forbiddens = [x.encode() for x in prohibited] + to_remove_files = [] + to_remove_dirs = [] + for root, dir_, files in os.walk(root): + for filename in files: + if not any([(x in filename) for x in dynamic_binary_file_exts]): + continue + pathname = os.path.join(root, filename) + still_exist = True + for forbidden in prohibited: + if forbidden.lower() in str(pathname).lower(): + to_remove_files.append(pathname) + still_exist = False + break + if not still_exist: + continue + with open(pathname, "rb") as file: + bytez = file.read().lower() + for forbidden in forbiddens: + if bytez.find(forbidden) >= 0: + to_remove_files.append(pathname) + for dirname in dir_: + for forbidden in prohibited: + if forbidden.lower() in str(dirname).lower(): + pathname = os.path.join(root, dirname) + to_remove_dirs.append(pathname) + break + for file in to_remove_files: + try: + os.remove(file) + print(f"deleted file: {file}") + except Exception as ex: + print(f"WARNING: Attempt to delete file {file} results in: {str(ex)}") + for dir_ in to_remove_dirs: + try: + rmdir(self, dir_) + print(f"deleted dir_: {dir_}") + except Exception as ex: + print(f"WARNING: Attempt to delete folder {dir_} results in: {str(ex)}") + + def _generate_pyinstaller_spec(self, location, entrypoint_location, icon_path, entitlements_file, cura_source_folder): pyinstaller_metadata = self.conan_data["pyinstaller"] datas = [] for data in pyinstaller_metadata["datas"].values(): - if not self._internal and data.get("internal", False): + if (not self.options.internal and data.get("internal", False)) or ( + not self.options.enterprise and data.get("enterprise_only", False)): + continue + + if "oses" in data and self.settings.os not in data["oses"]: continue if "package" in data: # get the paths from conan package if data["package"] == self.name: - if self.in_local_cache: - src_path = os.path.join(self.package_folder, data["src"]) - else: - src_path = os.path.join(self.source_folder, data["src"]) + src_path = str(Path(cura_source_folder, data["src"])) else: - if data["package"] not in self.deps_cpp_info.deps: - continue - src_path = os.path.join(self.deps_cpp_info[data["package"]].rootpath, data["src"]) + if data["package"] not in self.dependencies: + raise ConanException(f"Required package {data['package']} does not exist as a dependency") + + package_folder = self.dependencies[data['package']].package_folder + if package_folder is None: + raise ConanException(f"Unable to find package_folder for {data['package']}, check that it has not been skipped") + + src_path = os.path.join(self.dependencies[data["package"]].package_folder, data["src"]) elif "root" in data: # get the paths relative from the install folder src_path = os.path.join(self.install_folder, data["root"], data["src"]) else: - continue - if Path(src_path).exists(): - datas.append((str(src_path), data["dst"])) + raise ConanException("Misformatted conan data for pyinstaller datas, expected either package or root option") + + if not Path(src_path).exists(): + raise ConanException(f"Missing folder {src_path} for pyinstaller data {data}") + + datas.append((str(src_path), data["dst"])) binaries = [] for binary in pyinstaller_metadata["binaries"].values(): if "package" in binary: # get the paths from conan package - src_path = os.path.join(self.deps_cpp_info[binary["package"]].rootpath, binary["src"]) + src_path = os.path.join(self.dependencies[binary["package"]].package_folder, binary["src"]) elif "root" in binary: # get the paths relative from the sourcefolder - src_path = str(self.source_path.joinpath(binary["root"], binary["src"])) + src_path = str(Path(self.source_folder, binary["root"], binary["src"])) if self.settings.os == "Windows": src_path = src_path.replace("\\", "\\\\") else: - continue + raise ConanException("Misformatted conan data for pyinstaller binaries, expected either package or root option") + if not Path(src_path).exists(): - self.output.warning(f"Source path for binary {binary['binary']} does not exist") - continue + raise ConanException(f"Missing folder {src_path} for pyinstaller binary {binary}") for bin in Path(src_path).glob(binary["binary"] + "*[.exe|.dll|.so|.dylib|.so.]*"): binaries.append((str(bin), binary["dst"])) @@ -281,16 +485,36 @@ class CuraConan(ConanFile): version = self.conf.get("user.cura:version", default = self.version, check_type = str) cura_version = Version(version) + # filter all binary files in binaries on the blacklist + blacklist = pyinstaller_metadata["blacklist"] + filtered_binaries = [b for b in binaries if not any([all([(part in b[0].lower()) for part in parts]) for parts in blacklist])] + + # In case the installer isn't actually pyinstaller (Windows at the moment), outright remove the offending files: + specifically_delete = set(binaries) - set(filtered_binaries) + for (unwanted_path, _) in specifically_delete: + try: + os.remove(unwanted_path) + print(f"delete: {unwanted_path}") + except Exception as ex: + print(f"WARNING: Attempt to delete binary {unwanted_path} results in: {str(ex)}") + + hiddenimports = pyinstaller_metadata["hiddenimports"] + collect_all = pyinstaller_metadata["collect_all"] + if self.settings.os == "Windows": + hiddenimports += pyinstaller_metadata["hiddenimports_WINDOWS_ONLY"] + collect_all += pyinstaller_metadata["collect_all_WINDOWS_ONLY"] + + # Write the actual file: with open(os.path.join(location, "UltiMaker-Cura.spec"), "w") as f: f.write(pyinstaller.render( name = str(self.options.display_name).replace(" ", "-"), display_name = self._app_name, entrypoint = entrypoint_location, datas = datas, - binaries = binaries, + binaries = filtered_binaries, venv_script_path = str(self._script_dir), - hiddenimports = pyinstaller_metadata["hiddenimports"], - collect_all = pyinstaller_metadata["collect_all"], + hiddenimports = hiddenimports, + collect_all = collect_all, icon = icon_path, entitlements_file = entitlements_file, osx_bundle_identifier = "'nl.ultimaker.cura'" if self.settings.os == "Macos" else "None", @@ -309,98 +533,82 @@ class CuraConan(ConanFile): copy(self, "*", os.path.join(self.recipe_folder, "plugins"), os.path.join(self.export_sources_folder, "plugins")) copy(self, "*", os.path.join(self.recipe_folder, "resources"), os.path.join(self.export_sources_folder, "resources"), excludes = "*.mo") copy(self, "*", os.path.join(self.recipe_folder, "tests"), os.path.join(self.export_sources_folder, "tests")) - copy(self, "*", os.path.join(self.recipe_folder, "cura"), os.path.join(self.export_sources_folder, "cura"), excludes="CuraVersion.py") + copy(self, "*", os.path.join(self.recipe_folder, "cura"), os.path.join(self.export_sources_folder, "cura")) copy(self, "*", os.path.join(self.recipe_folder, "packaging"), os.path.join(self.export_sources_folder, "packaging")) copy(self, "*", os.path.join(self.recipe_folder, ".run_templates"), os.path.join(self.export_sources_folder, ".run_templates")) - copy(self, "requirements.txt", self.recipe_folder, self.export_sources_folder) - copy(self, "requirements-dev.txt", self.recipe_folder, self.export_sources_folder) - copy(self, "requirements-ultimaker.txt", self.recipe_folder, self.export_sources_folder) copy(self, "cura_app.py", self.recipe_folder, self.export_sources_folder) - def config_options(self): - if self.settings.os == "Windows" and not self.conf.get("tools.microsoft.bash:path", check_type=str): - del self.options.enable_i18n - - def configure(self): - self.options["pyarcus"].shared = True - self.options["pysavitar"].shared = True - self.options["pynest2d"].shared = True - self.options["dulcificum"].shared = self.settings.os != "Windows" - self.options["cpython"].shared = True - self.options["boost"].header_only = True - if self.settings.os == "Linux": - self.options["openssl"].shared = True - if self.conf.get("user.curaengine:sentry_url", "", check_type=str) != "": - self.options["curaengine"].enable_sentry = True - self.options["arcus"].enable_sentry = True - self.options["clipper"].enable_sentry = True - def validate(self): - version = self.conf.get("user.cura:version", default = self.version, check_type = str) - if version and Version(version) <= Version("4"): - raise ConanInvalidConfiguration("Only versions 5+ are support") + if self.options.i18n_extract and self.settings.os == "Windows" and not self.conf.get("tools.microsoft.bash:path", check_type=str): + raise ConanInvalidConfiguration("Unable to extract translations on Windows without Bash installed") def requirements(self): for req in self.conan_data["requirements"]: - if self._internal and "fdm_materials" in req: - continue - if not self._enterprise and "native_cad_plugin" in req: + if self.options.internal and "fdm_materials" in req: continue self.requires(req) - if self._internal: + if self.options.internal: for req in self.conan_data["requirements_internal"]: self.requires(req) - self.requires("cpython/3.10.4@ultimaker/stable") - self.requires("clipper/6.4.2@ultimaker/stable") - self.requires("openssl/3.2.0") - self.requires("protobuf/3.21.12") - self.requires("boost/1.82.0") - self.requires("spdlog/1.12.0") - self.requires("fmt/10.1.1") - self.requires("zlib/1.2.13") - - def build_requirements(self): - if self.options.get_safe("enable_i18n", False): - self.tool_requires("gettext/0.21", force_host_context = True) + if self.options.enterprise: + for req in self.conan_data["requirements_enterprise"]: + self.requires(req) + self.requires("cpython/3.12.2") def layout(self): self.folders.source = "." - self.folders.build = "venv" - self.folders.generators = os.path.join(self.folders.build, "conan") + self.folders.build = "build" + self.folders.generators = os.path.join(self.folders.build, "generators") self.cpp.package.libdirs = [os.path.join("site-packages", "cura")] self.cpp.package.bindirs = ["bin"] - self.cpp.package.resdirs = ["resources", "plugins", "packaging", "pip_requirements"] # pip_requirements should be the last item in the list + self.cpp.package.resdirs = ["resources", "plugins", "packaging"] + + def _make_internal_distinct(self): + test_colors_path = Path(self.source_folder, "resources", "themes", "daily_test_colors.json") + if not test_colors_path.exists(): + print(f"Could not find '{str(test_colors_path)}'. Won't generate rotating colors for alpha builds.") + return + if "alpha" in self.version: + with test_colors_path.open("r") as test_colors_file: + test_colors = json.load(test_colors_file) + biweekly_day = (datetime.now() - datetime(2025, 3, 14)).days % len(test_colors) + for theme_dir in Path(self.source_folder, "resources", "themes").iterdir(): + if not theme_dir.is_dir(): + continue + theme_path = Path(theme_dir, "theme.json") + if not theme_path.exists(): + print(f"('Colorize-by-day' alpha builds): Skipping {str(theme_path)}, could not find file.") + continue + with theme_path.open("r") as theme_file: + theme = json.load(theme_file) + if theme["colors"]: + theme["colors"]["main_window_header_background"] = test_colors[biweekly_day] + with theme_path.open("w") as theme_file: + json.dump(theme, theme_file) + test_colors_path.unlink() def generate(self): copy(self, "cura_app.py", self.source_folder, str(self._script_dir)) - cura_run_envvars = self._cura_run_env.vars(self, scope = "run") - ext = ".ps1" if self.settings.os == "Windows" else ".sh" - cura_run_envvars.save_script(os.path.join(self.folders.generators, f"cura_run_environment{ext}")) - vr = VirtualRunEnv(self) - vr.generate() + self._generate_cura_version(str(Path(self.source_folder, "cura"))) - self._generate_cura_version(os.path.join(self.source_folder, "cura")) + # Copy CuraEngine.exe to bindirs of Virtual Python Environment + curaengine = self.dependencies["curaengine"].cpp_info + copy(self, "CuraEngine.exe", curaengine.bindirs[0], self.source_folder, keep_path = False) + copy(self, "CuraEngine", curaengine.bindirs[0], self.source_folder, keep_path = False) - if not self.in_local_cache: - # Copy CuraEngine.exe to bindirs of Virtual Python Environment - curaengine = self.dependencies["curaengine"].cpp_info - copy(self, "CuraEngine.exe", curaengine.bindirs[0], self.source_folder, keep_path = False) - copy(self, "CuraEngine", curaengine.bindirs[0], self.source_folder, keep_path = False) + # Copy the external plugins that we want to bundle with Cura + if self.options.enterprise: + rmdir(self, str(Path(self.source_folder, "plugins", "NativeCADplugin"))) + native_cad_plugin = self.dependencies["native_cad_plugin"].cpp_info + copy(self, "*", native_cad_plugin.resdirs[0], str(Path(self.source_folder, "plugins", "NativeCADplugin")), + keep_path = True) + copy(self, "bundled_*.json", native_cad_plugin.resdirs[1], + str(Path(self.source_folder, "resources", "bundled_packages")), keep_path = False) - # Copy the external plugins that we want to bundle with Cura - rmdir(self,str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow"))) - curaengine_plugin_gradual_flow = self.dependencies["curaengine_plugin_gradual_flow"].cpp_info - copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "CuraEngineGradualFlow")), keep_path = True) - copy(self, "*", curaengine_plugin_gradual_flow.bindirs[0], self.source_folder, keep_path = False) - copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) - - if self._enterprise: - rmdir(self, str(self.source_path.joinpath("plugins", "NativeCADplugin"))) - curaengine_plugin_gradual_flow = self.dependencies["native_cad_plugin"].cpp_info - copy(self, "*", curaengine_plugin_gradual_flow.resdirs[0], str(self.source_path.joinpath("plugins", "NativeCADplugin")), keep_path = True) - copy(self, "bundled_*.json", curaengine_plugin_gradual_flow.resdirs[1], str(self.source_path.joinpath("resources", "bundled_packages")), keep_path = False) + # Make internal versions built on different days distinct, so people don't get confused while testing. + self._make_internal_distinct() # Copy resources of cura_binary_data cura_binary_data = self.dependencies["cura_binary_data"].cpp_info @@ -411,55 +619,44 @@ class CuraConan(ConanFile): for dependency in self.dependencies.host.values(): for bindir in dependency.cpp_info.bindirs: + self._delete_unwanted_binaries(bindir) copy(self, "*.dll", bindir, str(self._site_packages), keep_path = False) for libdir in dependency.cpp_info.libdirs: + self._delete_unwanted_binaries(libdir) copy(self, "*.pyd", libdir, str(self._site_packages), keep_path = False) copy(self, "*.pyi", libdir, str(self._site_packages), keep_path = False) copy(self, "*.dylib", libdir, str(self._base_dir.joinpath("lib")), keep_path = False) # Copy materials (flat) - rmdir(self, os.path.join(self.source_folder, "resources", "materials")) + rmdir(self, str(Path(self.source_folder, "resources", "materials"))) fdm_materials = self.dependencies["fdm_materials"].cpp_info copy(self, "*", fdm_materials.resdirs[0], self.source_folder) # Copy internal resources - if self._internal: + if self.options.internal: cura_private_data = self.dependencies["cura_private_data"].cpp_info copy(self, "*", cura_private_data.resdirs[0], str(self._share_dir.joinpath("cura"))) - if self.options.devtools: - entitlements_file = "'{}'".format(os.path.join(self.source_folder, "packaging", "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec( - location=self.generators_folder, - entrypoint_location="'{}'".format( - os.path.join(self.source_folder, self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace( - "\\", "\\\\"), - icon_path="'{}'".format(os.path.join(self.source_folder, "packaging", - self.conan_data["pyinstaller"]["icon"][ - str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file=entitlements_file if self.settings.os == "Macos" else "None" - ) - - if self.options.get_safe("enable_i18n", False) and self._i18n_options["extract"]: + if self.options.i18n_extract: vb = VirtualBuildEnv(self) vb.generate() - # # FIXME: once m4, autoconf, automake are Conan V2 ready use self.win_bash and add gettext as base tool_requirement - cpp_info = self.dependencies["gettext"].cpp_info - pot = self.python_requires["translationextractor"].module.ExtractTranslations(self, cpp_info.bindirs[0]) + pot = self.python_requires["translationextractor"].module.ExtractTranslations(self) pot.generate() def build(self): - if self.options.get_safe("enable_i18n", False) and self._i18n_options["build"]: - for po_file in self.source_path.joinpath("resources", "i18n").glob("**/*.po"): - mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_path)) - mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) - mkdir(self, str(unix_path(self, Path(mo_file).parent))) - cpp_info = self.dependencies["gettext"].cpp_info - self.run(f"{cpp_info.bindirs[0]}/msgfmt {po_file} -o {mo_file} -f", env="conanbuild", ignore_errors=True) + for po_file in Path(self.source_folder, "resources", "i18n").glob("**/*.po"): + mo_file = Path(self.build_folder, po_file.with_suffix('.mo').relative_to(self.source_folder)) + mo_file = mo_file.parent.joinpath("LC_MESSAGES", mo_file.name) + mkdir(self, str(unix_path(self, Path(mo_file).parent))) + self.run(f"msgfmt {po_file} -o {mo_file} -f", env="conanbuild") def deploy(self): - copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), os.path.join(self.install_folder, "packaging"), keep_path = True) + ''' Note: this deploy step is actually used to prepare for building a Cura distribution with pyinstaller, which is not + the original purpose in the Conan philosophy ''' + + copy(self, "*", os.path.join(self.package_folder, self.cpp.package.resdirs[2]), + os.path.join(self.deploy_folder, "packaging"), keep_path=True) # Copy resources of Cura (keep folder structure) needed by pyinstaller to determine the module structure copy(self, "*", os.path.join(self.package_folder, self.cpp_info.bindirs[0]), str(self._base_dir), keep_path = False) @@ -479,34 +676,17 @@ class CuraConan(ConanFile): copy(self, "*", uranium.resdirs[1], str(self._share_dir.joinpath("uranium", "plugins")), keep_path = True) copy(self, "*", uranium.libdirs[0], str(self._site_packages.joinpath("UM")), keep_path = True) - # Generate the GitHub Action version info Environment - version = self.conf.get("user.cura:version", default = self.version, check_type = str) - cura_version = Version(version) - env_prefix = "Env:" if self.settings.os == "Windows" else "" - activate_github_actions_version_env = Template(r"""echo "CURA_VERSION_MAJOR={{ cura_version_major }}" >> ${{ env_prefix }}GITHUB_ENV -echo "CURA_VERSION_MINOR={{ cura_version_minor }}" >> ${{ env_prefix }}GITHUB_ENV -echo "CURA_VERSION_PATCH={{ cura_version_patch }}" >> ${{ env_prefix }}GITHUB_ENV -echo "CURA_VERSION_BUILD={{ cura_version_build }}" >> ${{ env_prefix }}GITHUB_ENV -echo "CURA_VERSION_FULL={{ cura_version_full }}" >> ${{ env_prefix }}GITHUB_ENV -echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV - """).render(cura_version_major = cura_version.major, - cura_version_minor = cura_version.minor, - cura_version_patch = cura_version.patch, - cura_version_build = cura_version.build if cura_version.build != "" else "0", - cura_version_full = self.version, - cura_app_name = self._app_name, - env_prefix = env_prefix) + self._delete_unwanted_binaries(self._site_packages) + self._delete_unwanted_binaries(self.package_folder) + self._delete_unwanted_binaries(self._base_dir) + self._delete_unwanted_binaries(self._share_dir) - ext = ".sh" if self.settings.os != "Windows" else ".ps1" - save(self, os.path.join(self._script_dir, f"activate_github_actions_version_env{ext}"), activate_github_actions_version_env) - - self._generate_cura_version(os.path.join(self._site_packages, "cura")) - - entitlements_file = "'{}'".format(Path(self.cpp_info.res_paths[2], "MacOS", "cura.entitlements")) - self._generate_pyinstaller_spec(location = self._base_dir, + entitlements_file = "'{}'".format(Path(self.deploy_folder, "packaging", "MacOS", "cura.entitlements")) + self._generate_pyinstaller_spec(location = self.deploy_folder, entrypoint_location = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.bindirs[0], self.conan_data["pyinstaller"]["runinfo"]["entrypoint"])).replace("\\", "\\\\"), icon_path = "'{}'".format(os.path.join(self.package_folder, self.cpp_info.resdirs[2], self.conan_data["pyinstaller"]["icon"][str(self.settings.os)])).replace("\\", "\\\\"), - entitlements_file = entitlements_file if self.settings.os == "Macos" else "None") + entitlements_file = entitlements_file if self.settings.os == "Macos" else "None", + cura_source_folder = self.package_folder) def package(self): copy(self, "cura_app.py", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.bindirs[0])) @@ -514,12 +694,9 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV copy(self, "*", src = os.path.join(self.source_folder, "resources"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[0])) copy(self, "*.mo", os.path.join(self.build_folder, "resources"), os.path.join(self.package_folder, "resources")) copy(self, "*", src = os.path.join(self.source_folder, "plugins"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[1])) - copy(self, "requirement*.txt", src = self.source_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) copy(self, "*", src = os.path.join(self.source_folder, "packaging"), dst = os.path.join(self.package_folder, self.cpp.package.resdirs[2])) - - # Remove the CuraEngineGradualFlow plugin from the package - rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[1], "CuraEngineGradualFlow")) - rm(self, "bundled_*.json", os.path.join(self.package_folder, self.cpp.package.resdirs[0], "bundled_packages"), recursive = False) + copy(self, "pip_requirements_*.txt", src = self.generators_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) + copy(self, "pip_requirements_summary.yml", src = self.generators_folder, dst = os.path.join(self.package_folder, self.cpp.package.resdirs[-1])) # Remove the fdm_materials from the package rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], "materials")) @@ -531,35 +708,8 @@ echo "CURA_APP_NAME={{ cura_app_name }}" >> ${{ env_prefix }}GITHUB_ENV rmdir(self, os.path.join(self.package_folder, self.cpp.package.resdirs[0], Path(res_dir).name)) def package_info(self): - self.user_info.pip_requirements = "requirements.txt" - self.user_info.pip_requirements_git = "requirements-ultimaker.txt" - self.user_info.pip_requirements_build = "requirements-dev.txt" - - if self.in_local_cache: - self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "site-packages")) - self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "site-packages")) - self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "plugins")) - self.env_info.PYTHONPATH.append(os.path.join(self.package_folder, "plugins")) - else: - self.runenv_info.append_path("PYTHONPATH", self.source_folder) - self.env_info.PYTHONPATH.append(self.source_folder) - self.runenv_info.append_path("PYTHONPATH", os.path.join(self.source_folder, "plugins")) - self.env_info.PYTHONPATH.append(os.path.join(self.source_folder, "plugins")) + self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "site-packages")) + self.runenv_info.append_path("PYTHONPATH", os.path.join(self.package_folder, "plugins")) def package_id(self): - self.info.clear() - - # The following options shouldn't be used to determine the hash, since these are only used to set the CuraVersion.py - # which will als be generated by the deploy method during the `conan install cura/5.1.0@_/_` - del self.info.options.enterprise - del self.info.options.staging - del self.info.options.devtools - del self.info.options.cloud_api_version - del self.info.options.display_name - del self.info.options.cura_debug_mode - if self.options.get_safe("enable_i18n", False): - del self.info.options.enable_i18n - - # TODO: Use the hash of requirements.txt and requirements-ultimaker.txt, Because changing these will actually result in a different - # Cura. This is needed because the requirements.txt aren't managed by Conan and therefor not resolved in the package_id. This isn't - # ideal but an acceptable solution for now. + self.info.options.rm_safe("i18n_extract") diff --git a/cura/API/Account.py b/cura/API/Account.py index d126a52d60..2fc5b8de6c 100644 --- a/cura/API/Account.py +++ b/cura/API/Account.py @@ -232,6 +232,7 @@ class Account(QObject): def _onProfileChanged(self, profile: Optional[UserProfile]) -> None: self._user_profile = profile + self._updatePermissions() self.userProfileChanged.emit() def _sync(self) -> None: diff --git a/cura/API/Backups.py b/cura/API/Backups.py index 1940d38a36..a52dcbfb6b 100644 --- a/cura/API/Backups.py +++ b/cura/API/Backups.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from typing import Tuple, Optional, TYPE_CHECKING, Dict, Any @@ -9,14 +9,10 @@ if TYPE_CHECKING: class Backups: - """The back-ups API provides a version-proof bridge between Cura's - - BackupManager and plug-ins that hook into it. + """The back-ups API provides a version-proof bridge between Cura's BackupManager and plug-ins that hook into it. Usage: - .. code-block:: python - from cura.API import CuraAPI api = CuraAPI() api.backups.createBackup() @@ -26,19 +22,22 @@ class Backups: def __init__(self, application: "CuraApplication") -> None: self.manager = BackupsManager(application) - def createBackup(self) -> Tuple[Optional[bytes], Optional[Dict[str, Any]]]: + def createBackup(self, available_remote_plugins: frozenset[str] = frozenset()) -> Tuple[Optional[bytes], Optional[Dict[str, Any]]]: """Create a new back-up using the BackupsManager. :return: Tuple containing a ZIP file with the back-up data and a dict with metadata about the back-up. """ - return self.manager.createBackup() + return self.manager.createBackup(available_remote_plugins) - def restoreBackup(self, zip_file: bytes, meta_data: Dict[str, Any]) -> None: + def restoreBackup(self, zip_file: bytes, meta_data: Dict[str, Any], auto_close: bool = True) -> None: """Restore a back-up using the BackupsManager. :param zip_file: A ZIP file containing the actual back-up data. :param meta_data: Some metadata needed for restoring a back-up, like the Cura version number. """ - return self.manager.restoreBackup(zip_file, meta_data) + return self.manager.restoreBackup(zip_file, meta_data, auto_close=auto_close) + + def shouldReinstallDownloadablePlugins(self) -> bool: + return self.manager.shouldReinstallDownloadablePlugins() diff --git a/cura/API/Interface/Settings.py b/cura/API/Interface/Settings.py index 706a6d8c74..6437de268a 100644 --- a/cura/API/Interface/Settings.py +++ b/cura/API/Interface/Settings.py @@ -1,7 +1,13 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -from typing import TYPE_CHECKING +from dataclasses import asdict + +from typing import cast, Dict, TYPE_CHECKING, Any + +from UM.Settings.InstanceContainer import InstanceContainer +from UM.Settings.SettingFunction import SettingFunction +from cura.Settings.GlobalStack import GlobalStack if TYPE_CHECKING: from cura.CuraApplication import CuraApplication @@ -47,3 +53,67 @@ class Settings: """ return self.application.getSidebarCustomMenuItems() + + def getAllGlobalSettings(self) -> Dict[str, Any]: + global_stack = cast(GlobalStack, self.application.getGlobalContainerStack()) + + all_settings = {} + for setting in global_stack.getAllKeys(): + all_settings[setting] = self._retrieveValue(global_stack, setting) + + return all_settings + + def getSliceMetadata(self) -> Dict[str, Dict[str, Dict[str, str]]]: + """Get all changed settings and all settings. For each extruder and the global stack""" + print_information = self.application.getPrintInformation() + machine_manager = self.application.getMachineManager() + settings = { + "material": { + "length": print_information.materialLengths, + "weight": print_information.materialWeights, + "cost": print_information.materialCosts, + }, + "global": { + "changes": {}, + "all_settings": {}, + }, + "quality": asdict(machine_manager.activeQualityDisplayNameMap()), + } + + global_stack = cast(GlobalStack, self.application.getGlobalContainerStack()) + + # Add global user or quality changes + global_flattened_changes = InstanceContainer.createMergedInstanceContainer(global_stack.userChanges, global_stack.qualityChanges) + for setting in global_flattened_changes.getAllKeys(): + settings["global"]["changes"][setting] = self._retrieveValue(global_flattened_changes, setting) + + # Get global all settings values without user or quality changes + for setting in global_stack.getAllKeys(): + settings["global"]["all_settings"][setting] = self._retrieveValue(global_stack, setting) + + for i, extruder in enumerate(global_stack.extruderList): + # Add extruder fields to settings dictionary + settings[f"extruder_{i}"] = { + "changes": {}, + "all_settings": {}, + } + + # Add extruder user or quality changes + extruder_flattened_changes = InstanceContainer.createMergedInstanceContainer(extruder.userChanges, extruder.qualityChanges) + for setting in extruder_flattened_changes.getAllKeys(): + settings[f"extruder_{i}"]["changes"][setting] = self._retrieveValue(extruder_flattened_changes, setting) + + # Get extruder all settings values without user or quality changes + for setting in extruder.getAllKeys(): + settings[f"extruder_{i}"]["all_settings"][setting] = self._retrieveValue(extruder, setting) + + return settings + + @staticmethod + def _retrieveValue(container: InstanceContainer, setting_: str): + value_ = container.getProperty(setting_, "value") + for _ in range(0, 1024): # Prevent possibly endless loop by not using a limit. + if not isinstance(value_, SettingFunction): + return value_ # Success! + value_ = value_(container) + return 0 # Fallback value after breaking possibly endless loop. \ No newline at end of file diff --git a/cura/ApplicationMetadata.py b/cura/ApplicationMetadata.py index b0230fefa1..8342f67bed 100644 --- a/cura/ApplicationMetadata.py +++ b/cura/ApplicationMetadata.py @@ -14,7 +14,7 @@ DEFAULT_CURA_LATEST_URL = "https://software.ultimaker.com/latest.json" # Each release has a fixed SDK version coupled with it. It doesn't make sense to make it configurable because, for # example Cura 3.2 with SDK version 6.1 will not work. So the SDK version is hard-coded here and left out of the # CuraVersion.py.in template. -CuraSDKVersion = "8.7.0" +CuraSDKVersion = "8.10.0" try: from cura.CuraVersion import CuraLatestURL diff --git a/cura/Arranging/ArrangeObjectsJob.py b/cura/Arranging/ArrangeObjectsJob.py index 48d2436482..d494a79327 100644 --- a/cura/Arranging/ArrangeObjectsJob.py +++ b/cura/Arranging/ArrangeObjectsJob.py @@ -40,7 +40,7 @@ class ArrangeObjectsJob(Job): found_solution_for_all = False try: - found_solution_for_all = arranger.arrange() + found_solution_for_all = arranger.arrange(only_if_full_success = True) except: # If the thread crashes, the message should still close Logger.logException("e", "Unable to arrange the objects on the buildplate. The arrange algorithm has crashed.") diff --git a/cura/Arranging/Arranger.py b/cura/Arranging/Arranger.py index fd93ab1846..d0a78431f6 100644 --- a/cura/Arranging/Arranger.py +++ b/cura/Arranging/Arranger.py @@ -16,12 +16,16 @@ class Arranger: """ raise NotImplementedError - def arrange(self, add_new_nodes_in_scene: bool = False) -> bool: + def arrange(self, add_new_nodes_in_scene: bool = False, only_if_full_success: bool = False) -> bool: """ Find placement for a set of scene nodes, and move them by using a single grouped operation. :param add_new_nodes_in_scene: Whether to create new scene nodes before applying the transformations and rotations :return: found_solution_for_all: Whether the algorithm found a place on the buildplate for all the objects """ grouped_operation, not_fit_count = self.createGroupOperationForArrange(add_new_nodes_in_scene) - grouped_operation.push() - return not_fit_count == 0 + full_success = not_fit_count == 0 + + if full_success or not only_if_full_success: + grouped_operation.push() + + return full_success diff --git a/cura/Arranging/Nest2DArrange.py b/cura/Arranging/Nest2DArrange.py index 968522d5a3..5f34cb21a0 100644 --- a/cura/Arranging/Nest2DArrange.py +++ b/cura/Arranging/Nest2DArrange.py @@ -54,22 +54,6 @@ class Nest2DArrange(Arranger): machine_depth = self._build_volume.getDepth() - (edge_disallowed_size * 2) build_plate_bounding_box = Box(int(machine_width * self._factor), int(machine_depth * self._factor)) - if self._fixed_nodes is None: - self._fixed_nodes = [] - - # Add all the items we want to arrange - node_items = [] - for node in self._nodes_to_arrange: - hull_polygon = node.callDecoration("getConvexHull") - if not hull_polygon or hull_polygon.getPoints is None: - Logger.log("w", "Object {} cannot be arranged because it has no convex hull.".format(node.getName())) - continue - converted_points = [] - for point in hull_polygon.getPoints(): - converted_points.append(Point(int(point[0] * self._factor), int(point[1] * self._factor))) - item = Item(converted_points) - node_items.append(item) - # Use a tiny margin for the build_plate_polygon (the nesting doesn't like overlapping disallowed areas) half_machine_width = 0.5 * machine_width - 1 half_machine_depth = 0.5 * machine_depth - 1 @@ -80,40 +64,66 @@ class Nest2DArrange(Arranger): [half_machine_width, half_machine_depth] ], numpy.float32)) - disallowed_areas = self._build_volume.getDisallowedAreas() - for area in disallowed_areas: - converted_points = [] + def _convert_points(points): + if points is not None and len(points) > 2: # numpy array has to be explicitly checked against None + converted_points = [] + for point in points: + converted_points.append(Point(int(point[0] * self._factor), int(point[1] * self._factor))) + return [converted_points] + else: + return [] + polygons_nodes_to_arrange = [] + for node in self._nodes_to_arrange: + hull_polygon = node.callDecoration("getConvexHull") + if not hull_polygon or hull_polygon.getPoints is None: + Logger.log("w", "Object {} cannot be arranged because it has no convex hull.".format(node.getName())) + continue + + polygons_nodes_to_arrange += _convert_points(hull_polygon.getPoints()) + + polygons_disallowed_areas = [] + for area in self._build_volume.getDisallowedAreas(): # Clip the disallowed areas so that they don't overlap the bounding box (The arranger chokes otherwise) clipped_area = area.intersectionConvexHulls(build_plate_polygon) - if clipped_area.getPoints() is not None and len( - clipped_area.getPoints()) > 2: # numpy array has to be explicitly checked against None - for point in clipped_area.getPoints(): - converted_points.append(Point(int(point[0] * self._factor), int(point[1] * self._factor))) + polygons_disallowed_areas += _convert_points(clipped_area.getPoints()) - disallowed_area = Item(converted_points) + polygons_fixed_nodes = [] + if self._fixed_nodes is None: + self._fixed_nodes = [] + for node in self._fixed_nodes: + hull_polygon = node.callDecoration("getConvexHull") + + if hull_polygon is not None: + polygons_fixed_nodes += _convert_points(hull_polygon.getPoints()) + + strategies = [NfpConfig.Alignment.CENTER, + NfpConfig.Alignment.BOTTOM_LEFT, + NfpConfig.Alignment.BOTTOM_RIGHT, + NfpConfig.Alignment.TOP_LEFT, + NfpConfig.Alignment.TOP_RIGHT] + found_solution_for_all = False + while not found_solution_for_all and len(strategies) > 0: + + # Add all the items we want to arrange + node_items = [] + for polygon in polygons_nodes_to_arrange: + node_items.append(Item(polygon)) + + for polygon in polygons_disallowed_areas: + disallowed_area = Item(polygon) disallowed_area.markAsDisallowedAreaInBin(0) node_items.append(disallowed_area) - for node in self._fixed_nodes: - converted_points = [] - hull_polygon = node.callDecoration("getConvexHull") - - if hull_polygon is not None and hull_polygon.getPoints() is not None and len( - hull_polygon.getPoints()) > 2: # numpy array has to be explicitly checked against None - for point in hull_polygon.getPoints(): - converted_points.append(Point(int(point[0] * self._factor), int(point[1] * self._factor))) - item = Item(converted_points) + for polygon in polygons_fixed_nodes: + item = Item(polygon) item.markAsFixedInBin(0) node_items.append(item) - strategies = [NfpConfig.Alignment.CENTER] * 3 + [NfpConfig.Alignment.BOTTOM_LEFT] * 3 - found_solution_for_all = False - while not found_solution_for_all and len(strategies) > 0: config = NfpConfig() config.accuracy = 1.0 - config.alignment = NfpConfig.Alignment.CENTER + config.alignment = NfpConfig.Alignment.DONT_ALIGN config.starting_point = strategies[0] strategies = strategies[1:] diff --git a/cura/Backups/Backup.py b/cura/Backups/Backup.py index 19655df531..1438ce293a 100644 --- a/cura/Backups/Backup.py +++ b/cura/Backups/Backup.py @@ -1,5 +1,8 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. +import tempfile + +import json import io import os @@ -7,12 +10,13 @@ import re import shutil from copy import deepcopy from zipfile import ZipFile, ZIP_DEFLATED, BadZipfile -from typing import Dict, Optional, TYPE_CHECKING, List +from typing import Callable, Dict, Optional, TYPE_CHECKING, List from UM import i18nCatalog from UM.Logger import Logger from UM.Message import Message from UM.Platform import Platform +from UM.PluginRegistry import PluginRegistry from UM.Resources import Resources from UM.Version import Version @@ -30,6 +34,7 @@ class Backup: """These files should be ignored when making a backup.""" IGNORED_FOLDERS = [] # type: List[str] + """These folders should be ignored when making a backup.""" SECRETS_SETTINGS = ["general/ultimaker_auth_data"] """Secret preferences that need to obfuscated when making a backup of Cura""" @@ -42,7 +47,7 @@ class Backup: self.zip_file = zip_file # type: Optional[bytes] self.meta_data = meta_data # type: Optional[Dict[str, str]] - def makeFromCurrent(self) -> None: + def makeFromCurrent(self, available_remote_plugins: frozenset[str] = frozenset()) -> None: """Create a back-up from the current user config folder.""" cura_release = self._application.getVersion() @@ -68,7 +73,7 @@ class Backup: # Create an empty buffer and write the archive to it. buffer = io.BytesIO() - archive = self._makeArchive(buffer, version_data_dir) + archive = self._makeArchive(buffer, version_data_dir, available_remote_plugins) if archive is None: return files = archive.namelist() @@ -77,9 +82,7 @@ class Backup: machine_count = max(len([s for s in files if "machine_instances/" in s]) - 1, 0) # If people delete their profiles but not their preferences, it can still make a backup, and report -1 profiles. Server crashes on this. material_count = max(len([s for s in files if "materials/" in s]) - 1, 0) profile_count = max(len([s for s in files if "quality_changes/" in s]) - 1, 0) - # We don't store plugins anymore, since if you can make backups, you have an account (and the plugins are - # on the marketplace anyway) - plugin_count = 0 + plugin_count = len([s for s in files if "plugin.json" in s]) # Store the archive and metadata so the BackupManager can fetch them when needed. self.zip_file = buffer.getvalue() self.meta_data = { @@ -92,22 +95,72 @@ class Backup: # Restore the obfuscated settings self._illuminate(**secrets) - def _makeArchive(self, buffer: "io.BytesIO", root_path: str) -> Optional[ZipFile]: + def _fillToInstallsJson(self, file_path: str, reinstall_on_restore: frozenset[str], add_to_archive: Callable[[str, str], None]) -> Optional[str]: + """ Moves all plugin-data (in a config-file) for plugins that could be (re)installed from the Marketplace from + 'installed' to 'to_installs' before adding that file to the archive. + + Note that the 'filename'-entry in the package-data (of the plugins) might not be valid anymore on restore. + We'll replace it on restore instead, as that's the time when the new package is downloaded. + + :param file_path: Absolute path to the packages-file. + :param reinstall_on_restore: A set of plugins that _can_ be reinstalled from the Marketplace. + :param add_to_archive: A function/lambda that takes a filename and adds it to the archive (as the 2nd name). + """ + with open(file_path, "r") as file: + data = json.load(file) + reinstall, keep_in = {}, {} + for install_id, install_info in data["installed"].items(): + (reinstall if install_id in reinstall_on_restore else keep_in)[install_id] = install_info + data["installed"] = keep_in + data["to_install"].update(reinstall) + if data is not None: + tmpfile = tempfile.NamedTemporaryFile(delete_on_close=False) + with open(tmpfile.name, "w") as outfile: + json.dump(data, outfile) + add_to_archive(tmpfile.name, file_path) + return tmpfile.name + return None + + def _findRedownloadablePlugins(self, available_remote_plugins: frozenset) -> (frozenset[str], frozenset[str]): + """ Find all plugins that should be able to be reinstalled from the Marketplace. + + :param plugins_path: Path to all plugins in the user-space. + :return: Tuple of a set of plugin-ids and a set of plugin-paths. + """ + plugin_reg = PluginRegistry.getInstance() + id = "id" + plugins = [v for v in plugin_reg.getAllMetaData() + if v[id] in available_remote_plugins and not plugin_reg.isBundledPlugin(v[id])] + return frozenset([v[id] for v in plugins]), frozenset([v["location"] for v in plugins]) + + def _makeArchive(self, buffer: "io.BytesIO", root_path: str, available_remote_plugins: frozenset) -> Optional[ZipFile]: """Make a full archive from the given root path with the given name. :param root_path: The root directory to archive recursively. :return: The archive as bytes. """ ignore_string = re.compile("|".join(self.IGNORED_FILES + self.IGNORED_FOLDERS)) + reinstall_instead_ids, reinstall_instead_paths = self._findRedownloadablePlugins(available_remote_plugins) + tmpfiles = [] try: archive = ZipFile(buffer, "w", ZIP_DEFLATED) - for root, folders, files in os.walk(root_path): + add_path_to_archive = lambda path, alt_path: archive.write(path, alt_path[len(root_path) + len(os.sep):]) + for root, folders, files in os.walk(root_path, topdown=True): for item_name in folders + files: absolute_path = os.path.join(root, item_name) - if ignore_string.search(absolute_path): + if ignore_string.search(absolute_path) or any([absolute_path.startswith(x) for x in reinstall_instead_paths]): continue - archive.write(absolute_path, absolute_path[len(root_path) + len(os.sep):]) + if item_name == "packages.json": + tmpfiles.append( + self._fillToInstallsJson(absolute_path, reinstall_instead_ids, add_path_to_archive)) + else: + add_path_to_archive(absolute_path, absolute_path) archive.close() + for tmpfile_path in tmpfiles: + try: + os.remove(tmpfile_path) + except IOError as ex: + Logger.warning(f"Couldn't remove temporary file '{tmpfile_path}' because '{ex}'.") return archive except (IOError, OSError, BadZipfile) as error: Logger.log("e", "Could not create archive from user data directory: %s", error) diff --git a/cura/Backups/BackupsManager.py b/cura/Backups/BackupsManager.py index 6c4670edb6..67d6c84601 100644 --- a/cura/Backups/BackupsManager.py +++ b/cura/Backups/BackupsManager.py @@ -1,4 +1,4 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from typing import Dict, Optional, Tuple, TYPE_CHECKING @@ -22,7 +22,10 @@ class BackupsManager: def __init__(self, application: "CuraApplication") -> None: self._application = application - def createBackup(self) -> Tuple[Optional[bytes], Optional[Dict[str, str]]]: + def shouldReinstallDownloadablePlugins(self) -> bool: + return True + + def createBackup(self, available_remote_plugins: frozenset[str] = frozenset()) -> Tuple[Optional[bytes], Optional[Dict[str, str]]]: """ Get a back-up of the current configuration. @@ -31,17 +34,18 @@ class BackupsManager: self._disableAutoSave() backup = Backup(self._application) - backup.makeFromCurrent() + backup.makeFromCurrent(available_remote_plugins if self.shouldReinstallDownloadablePlugins() else frozenset()) self._enableAutoSave() # We don't return a Backup here because we want plugins only to interact with our API and not full objects. return backup.zip_file, backup.meta_data - def restoreBackup(self, zip_file: bytes, meta_data: Dict[str, str]) -> None: + def restoreBackup(self, zip_file: bytes, meta_data: Dict[str, str], auto_close: bool = True) -> None: """ Restore a back-up from a given ZipFile. :param zip_file: A bytes object containing the actual back-up. :param meta_data: A dict containing some metadata that is needed to restore the back-up correctly. + :param auto_close: Normally, Cura will need to close immediately after restoring the back-up. """ if not meta_data.get("cura_release", None): @@ -54,7 +58,7 @@ class BackupsManager: backup = Backup(self._application, zip_file = zip_file, meta_data = meta_data) restored = backup.restore() - if restored: + if restored and auto_close: # At this point, Cura will need to restart for the changes to take effect. # We don't want to store the data at this point as that would override the just-restored backup. self._application.windowClosed(save_data = False) diff --git a/cura/BuildVolume.py b/cura/BuildVolume.py index 742d1872cb..18b762bb2c 100755 --- a/cura/BuildVolume.py +++ b/cura/BuildVolume.py @@ -252,19 +252,23 @@ class BuildVolume(SceneNode): if not self.getMeshData() or not self.isVisible(): return True + theme = self._application.getTheme() if not self._shader: self._shader = OpenGL.getInstance().createShaderProgram(Resources.getPath(Resources.Shaders, "default.shader")) self._grid_shader = OpenGL.getInstance().createShaderProgram(Resources.getPath(Resources.Shaders, "grid.shader")) - theme = self._application.getTheme() - self._grid_shader.setUniformValue("u_plateColor", Color(*theme.getColor("buildplate").getRgb())) self._grid_shader.setUniformValue("u_gridColor0", Color(*theme.getColor("buildplate_grid").getRgb())) self._grid_shader.setUniformValue("u_gridColor1", Color(*theme.getColor("buildplate_grid_minor").getRgb())) + plate_color = Color(*theme.getColor("buildplate").getRgb()) + if self._global_container_stack.getMetaDataEntry("has_textured_buildplate", False): + plate_color.setA(0.5) + self._grid_shader.setUniformValue("u_plateColor", plate_color) + renderer.queueNode(self, mode = RenderBatch.RenderMode.Lines) renderer.queueNode(self, mesh = self._origin_mesh, backface_cull = True) - renderer.queueNode(self, mesh = self._grid_mesh, shader = self._grid_shader, backface_cull = True) + renderer.queueNode(self, mesh = self._grid_mesh, shader = self._grid_shader, backface_cull = True, transparent = True, sort = -10) if self._disallowed_area_mesh: - renderer.queueNode(self, mesh = self._disallowed_area_mesh, shader = self._shader, transparent = True, backface_cull = True, sort = -9) + renderer.queueNode(self, mesh = self._disallowed_area_mesh, shader = self._shader, transparent = True, backface_cull = True, sort = -5) if self._error_mesh: renderer.queueNode(self, mesh=self._error_mesh, shader=self._shader, transparent=True, diff --git a/cura/CuraApplication.py b/cura/CuraApplication.py index 3bdf7aa126..8af98c2d0e 100755 --- a/cura/CuraApplication.py +++ b/cura/CuraApplication.py @@ -110,6 +110,7 @@ from cura.UI.MachineActionManager import MachineActionManager from cura.UI.AddPrinterPagesModel import AddPrinterPagesModel from cura.UI.MachineSettingsManager import MachineSettingsManager from cura.UI.ObjectsModel import ObjectsModel +from cura.UI.OpenSourceDependenciesModel import OpenSourceDependenciesModel from cura.UI.RecommendedMode import RecommendedMode from cura.UI.TextManager import TextManager from cura.UI.WelcomePagesModel import WelcomePagesModel @@ -139,7 +140,7 @@ class CuraApplication(QtApplication): # SettingVersion represents the set of settings available in the machine/extruder definitions. # You need to make sure that this version number needs to be increased if there is any non-backwards-compatible # changes of the settings. - SettingVersion = 23 + SettingVersion = 25 Created = False @@ -187,6 +188,7 @@ class CuraApplication(QtApplication): self._single_instance = None self._open_project_mode: Optional[str] = None + self._read_operation_is_project_file: Optional[bool] = None self._cura_formula_functions = None # type: Optional[CuraFormulaFunctions] @@ -1308,6 +1310,7 @@ class CuraApplication(QtApplication): qmlRegisterType(AddPrinterPagesModel, "Cura", 1, 0, "AddPrinterPagesModel") qmlRegisterType(TextManager, "Cura", 1, 0, "TextManager") qmlRegisterType(RecommendedMode, "Cura", 1, 0, "RecommendedMode") + qmlRegisterType(OpenSourceDependenciesModel, "Cura", 1, 0, "OpenSourceDependenciesModel") self.processEvents() qmlRegisterType(NetworkMJPGImage, "Cura", 1, 0, "NetworkMJPGImage") @@ -1892,39 +1895,39 @@ class CuraApplication(QtApplication): query = QUrlQuery(url.query()) model_url = QUrl(query.queryItemValue("file", options=QUrl.ComponentFormattingOption.FullyDecoded)) - def on_finish(response): - content_disposition_header_key = QByteArray("content-disposition".encode()) - - if not response.hasRawHeader(content_disposition_header_key): - Logger.log("w", "Could not find Content-Disposition header in response from {0}".format( - model_url.url())) - # Use the last part of the url as the filename, and assume it is an STL file - filename = model_url.path().split("/")[-1] + ".stl" - else: - # content_disposition is in the format - # ``` - # content_disposition attachment; "filename=[FILENAME]" - # ``` - # Use a regex to extract the filename - content_disposition = str(response.rawHeader(content_disposition_header_key).data(), - encoding='utf-8') - content_disposition_match = re.match(r'attachment; filename="(?P.*)"', - content_disposition) - assert content_disposition_match is not None - filename = content_disposition_match.group("filename") - - tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False) - with open(tmp.name, "wb") as f: - f.write(response.readAll()) - - self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) - def on_error(*args, **kwargs): - Logger.log("w", "Could not download file from {0}".format(model_url.url())) - Message("Could not download file: " + str(model_url.url()), + Logger.warning(f"Could not download file from {model_url.url()}") + Message(f"Could not download file: {str(model_url.url())}", title= "Loading Model failed", message_type=Message.MessageType.ERROR).show() - return + + def on_finish(response): + try: + content_disposition_header_key = QByteArray("content-disposition".encode()) + + filename = model_url.path().split("/")[-1] + ".stl" + + if response.hasRawHeader(content_disposition_header_key): + # content_disposition is in the format + # ``` + # content_disposition attachment; filename="[FILENAME]" + # ``` + # Use a regex to extract the filename + content_disposition = str(response.rawHeader(content_disposition_header_key).data(), + encoding='utf-8') + content_disposition_match = re.match(r'attachment; filename=(?P.*)', + content_disposition) + if content_disposition_match is not None: + filename = content_disposition_match.group("filename").strip("\"") + + tmp = tempfile.NamedTemporaryFile(suffix=filename, delete=False) + with open(tmp.name, "wb") as f: + f.write(response.readAll()) + + self.readLocalFile(QUrl.fromLocalFile(tmp.name), add_to_recent_files=False) + except Exception as ex: + Logger.warning(f"Exception {str(ex)}") + on_error() self.getHttpRequestManager().get( model_url.url(), @@ -2016,18 +2019,18 @@ class CuraApplication(QtApplication): self.deleteAll() break - is_project_file = self.checkIsValidProjectFile(file) + self._read_operation_is_project_file = self.checkIsValidProjectFile(file) if self._open_project_mode is None: self._open_project_mode = self.getPreferences().getValue("cura/choice_on_open_project") - if is_project_file and self._open_project_mode == "open_as_project": + if self._read_operation_is_project_file and self._open_project_mode == "open_as_project": # open as project immediately without presenting a dialog workspace_handler = self.getWorkspaceFileHandler() workspace_handler.readLocalFile(file, add_to_recent_files_hint = add_to_recent_files) return - if is_project_file and self._open_project_mode == "always_ask": + if self._read_operation_is_project_file and self._open_project_mode == "always_ask": # present a dialog asking to open as project or import models self.callLater(self.openProjectFile.emit, file, add_to_recent_files) return @@ -2165,7 +2168,7 @@ class CuraApplication(QtApplication): nodes_to_arrange.append(node) # If the file is a project,and models are to be loaded from a that project, # models inside file should be arranged in buildplate. - elif self._open_project_mode == "open_as_model": + elif self._read_operation_is_project_file and self._open_project_mode == "open_as_model": nodes_to_arrange.append(node) # This node is deep copied from some other node which already has a BuildPlateDecorator, but the deepcopy diff --git a/cura/Machines/MachineNode.py b/cura/Machines/MachineNode.py index aa4db8bb8f..3723cf4a7a 100644 --- a/cura/Machines/MachineNode.py +++ b/cura/Machines/MachineNode.py @@ -1,8 +1,9 @@ -# Copyright (c) 2019 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from typing import Dict, List +from UM.Decorators import deprecated from UM.Logger import Logger from UM.Signal import Signal from UM.Util import parseBool @@ -47,6 +48,7 @@ class MachineNode(ContainerNode): self.preferred_variant_name = my_metadata.get("preferred_variant_name", "") self.preferred_material = my_metadata.get("preferred_material", "") self.preferred_quality_type = my_metadata.get("preferred_quality_type", "") + self.supports_abstract_color = parseBool(my_metadata.get("supports_abstract_color", "false")) self._loadAll() @@ -168,13 +170,18 @@ class MachineNode(ContainerNode): return self.global_qualities.get(self.preferred_quality_type, next(iter(self.global_qualities.values()))) - def isExcludedMaterial(self, material: MaterialNode) -> bool: + def isExcludedMaterialBaseFile(self, material_base_file: str) -> bool: """Returns whether the material should be excluded from the list of materials.""" for exclude_material in self.exclude_materials: - if exclude_material in material["id"]: + if exclude_material in material_base_file: return True return False + @deprecated("Use isExcludedMaterialBaseFile instead.", since = "5.9.0") + def isExcludedMaterial(self, material: MaterialNode) -> bool: + """Returns whether the material should be excluded from the list of materials.""" + return self.isExcludedMaterialBaseFile(material.base_file) + @UM.FlameProfiler.profile def _loadAll(self) -> None: """(Re)loads all variants under this printer.""" diff --git a/cura/Machines/Models/ActiveIntentQualitiesModel.py b/cura/Machines/Models/ActiveIntentQualitiesModel.py index f9acb9a970..ce0e958368 100644 --- a/cura/Machines/Models/ActiveIntentQualitiesModel.py +++ b/cura/Machines/Models/ActiveIntentQualitiesModel.py @@ -72,6 +72,13 @@ class ActiveIntentQualitiesModel(ListModel): new_items.append(intent) added_quality_type_set.add(intent["quality_type"]) + # If there aren't any possibilities when the Intent is kept the same, attempt to set it 'back' to default. + current_quality_type = global_stack.quality.getMetaDataEntry("quality_type") + if len(new_items) == 0 and self._intent_category != "default" and current_quality_type != "not_supported": + IntentManager.getInstance().selectIntent("default", current_quality_type) + self._update() + return + new_items = sorted(new_items, key=lambda x: x["layer_height"]) self.setItems(new_items) diff --git a/cura/Machines/Models/QualityManagementModel.py b/cura/Machines/Models/QualityManagementModel.py index 86e35f6b28..92551dbddf 100644 --- a/cura/Machines/Models/QualityManagementModel.py +++ b/cura/Machines/Models/QualityManagementModel.py @@ -127,13 +127,12 @@ class QualityManagementModel(ListModel): # have no container for the global stack, because "my_profile" just got renamed to "my_new_profile". This results # in crashes because the rest of the system assumes that all data in a QualityChangesGroup will be correct. # - # Renaming the container for the global stack in the end seems to be ok, because the assumption is mostly based - # on the quality changes container for the global stack. + # This is why we use the "supress_signals" flag for the set name. This basically makes the change silent. for metadata in quality_changes_group.metadata_per_extruder.values(): extruder_container = cast(InstanceContainer, container_registry.findContainers(id = metadata["id"])[0]) - extruder_container.setName(new_name) + extruder_container.setName(new_name, supress_signals=True) global_container = cast(InstanceContainer, container_registry.findContainers(id = quality_changes_group.metadata_for_global["id"])[0]) - global_container.setName(new_name) + global_container.setName(new_name, supress_signals=True) quality_changes_group.name = new_name diff --git a/cura/Machines/VariantNode.py b/cura/Machines/VariantNode.py index b976841aa7..44f73ae2d7 100644 --- a/cura/Machines/VariantNode.py +++ b/cura/Machines/VariantNode.py @@ -60,9 +60,11 @@ class VariantNode(ContainerNode): materials = list(materials_per_base_file.values()) # Filter materials based on the exclude_materials property. - filtered_materials = [material for material in materials if not self.machine.isExcludedMaterial(material)] + filtered_materials = [material for material in materials if not self.machine.isExcludedMaterialBaseFile(material["id"])] for material in filtered_materials: + if material.get("abstract_color", False) and not self.machine.supports_abstract_color: + continue # do not show abstract color profiles if the machine does not support them base_file = material["base_file"] if base_file not in self.materials: self.materials[base_file] = MaterialNode(material["id"], variant = self) @@ -126,8 +128,10 @@ class VariantNode(ContainerNode): return # We won't add any materials. material_definition = container.getMetaDataEntry("definition") + if (not self.machine.supports_abstract_color) and container.getMetaDataEntry("abstract_color", False): + return base_file = container.getMetaDataEntry("base_file") - if base_file in self.machine.exclude_materials: + if self.machine.isExcludedMaterialBaseFile(base_file): return # Material is forbidden for this printer. if base_file not in self.materials: # Completely new base file. Always better than not having a file as long as it matches our set-up. if material_definition != "fdmprinter" and material_definition != self.machine.container_id: diff --git a/cura/MultiplyObjectsJob.py b/cura/MultiplyObjectsJob.py index 889b6f5d1a..024baa50f5 100644 --- a/cura/MultiplyObjectsJob.py +++ b/cura/MultiplyObjectsJob.py @@ -84,6 +84,7 @@ class MultiplyObjectsJob(Job): arranger = Nest2DArrange(nodes, Application.getInstance().getBuildVolume(), fixed_nodes, factor=1000) group_operation, not_fit_count = arranger.createGroupOperationForArrange(add_new_nodes_in_scene=True) + found_solution_for_all = not_fit_count == 0 if nodes_to_add_without_arrange: for nested_node in nodes_to_add_without_arrange: diff --git a/cura/OAuth2/AuthorizationHelpers.py b/cura/OAuth2/AuthorizationHelpers.py index 3e7dabaf08..f3219d43e3 100644 --- a/cura/OAuth2/AuthorizationHelpers.py +++ b/cura/OAuth2/AuthorizationHelpers.py @@ -96,7 +96,7 @@ class AuthorizationHelpers: return if token_response.error() != QNetworkReply.NetworkError.NoError: - callback(AuthenticationResponse(success = False, err_message = token_data["error_description"])) + callback(AuthenticationResponse(success = False, err_message = token_data.get("error_description", "an unknown server error occurred"))) return callback(AuthenticationResponse(success = True, diff --git a/cura/OAuth2/AuthorizationRequestHandler.py b/cura/OAuth2/AuthorizationRequestHandler.py index 9affee9911..5263cb8c2d 100644 --- a/cura/OAuth2/AuthorizationRequestHandler.py +++ b/cura/OAuth2/AuthorizationRequestHandler.py @@ -127,6 +127,7 @@ class AuthorizationRequestHandler(BaseHTTPRequestHandler): def _sendHeaders(self, status: "ResponseStatus", content_type: str, redirect_uri: str = None) -> None: self.send_response(status.code, status.message) self.send_header("Content-type", content_type) + self.send_header("Strict-Transport-Security", "max-age=900") if redirect_uri: self.send_header("Location", redirect_uri) self.end_headers() diff --git a/cura/OAuth2/KeyringAttribute.py b/cura/OAuth2/KeyringAttribute.py index 58b45a67ef..adaa01621c 100644 --- a/cura/OAuth2/KeyringAttribute.py +++ b/cura/OAuth2/KeyringAttribute.py @@ -16,8 +16,6 @@ if TYPE_CHECKING: import sys from UM.Platform import Platform if Platform.isWindows(): - if hasattr(sys, "frozen"): - import win32timezone from keyring.backends.Windows import WinVaultKeyring keyring.set_keyring(WinVaultKeyring()) if Platform.isOSX(): diff --git a/cura/PrinterOutput/FormatMaps.py b/cura/PrinterOutput/FormatMaps.py new file mode 100644 index 0000000000..1974f4c08c --- /dev/null +++ b/cura/PrinterOutput/FormatMaps.py @@ -0,0 +1,107 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Resources import Resources + +import json +from typing import Dict, List, Optional + +class FormatMaps: + + # A map from the printer-type in their native file-formats to the internal name we use. + PRINTER_TYPE_NAME = { + "fire_e": "ultimaker_method", + "lava_f": "ultimaker_methodx", + "magma_10": "ultimaker_methodxl", + "sketch": "ultimaker_sketch", + "sketch_large": "ultimaker_sketch_large", + "sketch_sprint": "ultimaker_sketch_sprint" + } + + # A map from the extruder-name in their native file-formats to the internal name we use. + EXTRUDER_NAME_MAP = { + "mk14_hot": "1XA", + "mk14_hot_s": "2XA", + "mk14_c": "1C", + "mk14": "1A", + "mk14_s": "2A", + "mk14_e": "LABS", + "sketch_extruder": "0.4mm", + "sketch_l_extruder": "0.4mm", + "sketch_sprint_extruder": "0.4mm", + } + + # A map from the material-name in their native file-formats to some info, including the internal name we use. + MATERIAL_MAP = { + "abs": {"name": "ABS", "guid": "e0f1d581-cc6b-4e36-8f3c-3f5601ecba5f"}, + "abs-cf10": {"name": "ABS-CF", "guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, + "abs-wss1": {"name": "ABS-R", "guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, + "asa": {"name": "ASA", "guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, + "nylon12-cf": {"name": "Nylon 12 CF", "guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, + "nylon-cf": {"name": "Nylon CF", "guid": "17abb865-ca73-4ccd-aeda-38e294c9c60b"}, + "pet": {"name": "PETG", "guid": "2d004bbd-d1bb-47f8-beac-b066702d5273"}, + "pla": {"name": "PLA", "guid": "abb9c58e-1f56-48d1-bd8f-055fde3a5b56"}, + "pva": {"name": "PVA", "guid": "add51ef2-86eb-4c39-afd5-5586564f0715"}, + "wss1": {"name": "RapidRinse", "guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, + "sr30": {"name": "SR-30", "guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, + "im-pla": {"name": "Tough", "guid": "de031137-a8ca-4a72-bd1b-17bb964033ad"} + # /!\ When changing this list, make sure the changes are reported accordingly on Digital Factory + } + + __inverse_printer_name: Optional[Dict[str, str]] = None + __inverse_extruder_type: Optional[Dict[str, str]] = None + __inverse_material_map: Optional[Dict[str, str]] = None + __product_to_id_map: Optional[Dict[str, List[str]]] = None + + @classmethod + def getInversePrinterNameMap(cls) -> Dict[str, str]: + """Returns the inverse of the printer name map, that is, from the internal name to the name used in output.""" + if cls.__inverse_printer_name is not None: + return cls.__inverse_printer_name + cls.__inverse_printer_name = {} + for key, value in cls.PRINTER_TYPE_NAME.items(): + cls.__inverse_printer_name[value] = key + return cls.__inverse_printer_name + + @classmethod + def getInverseExtruderTypeMap(cls) -> Dict[str, str]: + """Returns the inverse of the extruder type map, that is, from the internal name to the name used in output.""" + if cls.__inverse_extruder_type is not None: + return cls.__inverse_extruder_type + cls.__inverse_extruder_type = {} + for key, value in cls.EXTRUDER_NAME_MAP.items(): + cls.__inverse_extruder_type[value] = key + return cls.__inverse_extruder_type + + @classmethod + def getInverseMaterialMap(cls) -> Dict[str, str]: + """Returns the inverse of the material map, that is, from the internal name to the name used in output. + + Note that this drops the extra info saved in the non-inverse material map, use that if you need it. + """ + if cls.__inverse_material_map is not None: + return cls.__inverse_material_map + cls.__inverse_material_map = {} + for key, value in cls.MATERIAL_MAP.items(): + cls.__inverse_material_map[value["name"]] = key + return cls.__inverse_material_map + + @classmethod + def getProductIdMap(cls) -> Dict[str, List[str]]: + """Gets a mapping from product names (for example, in the XML files) to their definition IDs. + + This loads the mapping from a file. + """ + if cls.__product_to_id_map is not None: + return cls.__product_to_id_map + + product_to_id_file = Resources.getPath(Resources.Texts, "product_to_id.json") + with open(product_to_id_file, encoding = "utf-8") as f: + contents = "" + for line in f: + contents += line if "#" not in line else "".join([line.replace("#", str(n)) for n in range(1, 12)]) + cls.__product_to_id_map = json.loads(contents) + cls.__product_to_id_map = {key: [value] for key, value in cls.__product_to_id_map.items()} + #This also loads "Ultimaker S5" -> "ultimaker_s5" even though that is not strictly necessary with the default to change spaces into underscores. + #However it is not always loaded with that default; this mapping is also used in serialize() without that default. + return cls.__product_to_id_map diff --git a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py index 1c68ecce92..c5c480e224 100644 --- a/cura/PrinterOutput/Models/ExtruderConfigurationModel.py +++ b/cura/PrinterOutput/Models/ExtruderConfigurationModel.py @@ -1,9 +1,10 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional from PyQt6.QtCore import pyqtProperty, QObject, pyqtSignal +from cura.PrinterOutput.FormatMaps import FormatMaps from .MaterialOutputModel import MaterialOutputModel @@ -45,15 +46,8 @@ class ExtruderConfigurationModel(QObject): @staticmethod def applyNameMappingHotend(hotendId) -> str: - _EXTRUDER_NAME_MAP = { - "mk14_hot":"1XA", - "mk14_hot_s":"2XA", - "mk14_c":"1C", - "mk14":"1A", - "mk14_s":"2A" - } - if hotendId in _EXTRUDER_NAME_MAP: - return _EXTRUDER_NAME_MAP[hotendId] + if hotendId in FormatMaps.EXTRUDER_NAME_MAP: + return FormatMaps.EXTRUDER_NAME_MAP[hotendId] return hotendId @pyqtProperty(str, fset = setHotendID, notify = extruderConfigurationChanged) diff --git a/cura/PrinterOutput/Models/MaterialOutputModel.py b/cura/PrinterOutput/Models/MaterialOutputModel.py index 06d01604d2..8790d1626e 100644 --- a/cura/PrinterOutput/Models/MaterialOutputModel.py +++ b/cura/PrinterOutput/Models/MaterialOutputModel.py @@ -1,9 +1,10 @@ -# Copyright (c) 2017 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from typing import Optional from PyQt6.QtCore import pyqtProperty, QObject +from cura.PrinterOutput.FormatMaps import FormatMaps class MaterialOutputModel(QObject): @@ -23,30 +24,9 @@ class MaterialOutputModel(QObject): @staticmethod def getMaterialFromDefinition(guid, type, brand, name): - - _MATERIAL_MAP = { "abs" :{"name" :"ABS" ,"guid": "2780b345-577b-4a24-a2c5-12e6aad3e690"}, - "abs-cf10" :{"name": "ABS-CF" ,"guid": "495a0ce5-9daf-4a16-b7b2-06856d82394d"}, - "abs-wss1" :{"name" :"ABS-R" ,"guid": "88c8919c-6a09-471a-b7b6-e801263d862d"}, - "asa" :{"name" :"ASA" ,"guid": "f79bc612-21eb-482e-ad6c-87d75bdde066"}, - "nylon12-cf":{"name": "Nylon 12 CF" ,"guid": "3c6f2877-71cc-4760-84e6-4b89ab243e3b"}, - "nylon" :{"name" :"Nylon" ,"guid": "283d439a-3490-4481-920c-c51d8cdecf9c"}, - "pc" :{"name" :"PC" ,"guid": "62414577-94d1-490d-b1e4-7ef3ec40db02"}, - "petg" :{"name" :"PETG" ,"guid": "69386c85-5b6c-421a-bec5-aeb1fb33f060"}, - "pla" :{"name" :"PLA" ,"guid": "0ff92885-617b-4144-a03c-9989872454bc"}, - "pva" :{"name" :"PVA" ,"guid": "a4255da2-cb2a-4042-be49-4a83957a2f9a"}, - "wss1" :{"name" :"RapidRinse" ,"guid": "a140ef8f-4f26-4e73-abe0-cfc29d6d1024"}, - "sr30" :{"name" :"SR-30" ,"guid": "77873465-83a9-4283-bc44-4e542b8eb3eb"}, - "bvoh" :{"name" :"BVOH" ,"guid": "923e604c-8432-4b09-96aa-9bbbd42207f4"}, - "cpe" :{"name" :"CPE" ,"guid": "da1872c1-b991-4795-80ad-bdac0f131726"}, - "hips" :{"name" :"HIPS" ,"guid": "a468d86a-220c-47eb-99a5-bbb47e514eb0"}, - "tpu" :{"name" :"TPU 95A" ,"guid": "19baa6a9-94ff-478b-b4a1-8157b74358d2"}, - "im-pla" :{"name": "Tough" ,"guid": "de031137-a8ca-4a72-bd1b-17bb964033ad"} - } - - - if guid is None and brand != "empty" and type in _MATERIAL_MAP: - name = _MATERIAL_MAP[type]["name"] - guid = _MATERIAL_MAP[type]["guid"] + if guid is None and brand != "empty" and type in FormatMaps.MATERIAL_MAP: + name = FormatMaps.MATERIAL_MAP[type]["name"] + guid = FormatMaps.MATERIAL_MAP[type]["guid"] return name, guid diff --git a/cura/PrinterOutput/Models/PrinterConfigurationModel.py b/cura/PrinterOutput/Models/PrinterConfigurationModel.py index 85c69abcd3..d42be47b41 100644 --- a/cura/PrinterOutput/Models/PrinterConfigurationModel.py +++ b/cura/PrinterOutput/Models/PrinterConfigurationModel.py @@ -1,9 +1,12 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from PyQt6.QtCore import pyqtProperty, QObject, pyqtSignal from typing import List +from UM.Settings.ContainerRegistry import ContainerRegistry +from UM.Settings.DefinitionContainer import DefinitionContainer + MYPY = False if MYPY: from cura.PrinterOutput.Models.ExtruderConfigurationModel import ExtruderConfigurationModel @@ -68,6 +71,15 @@ class PrinterConfigurationModel(QObject): return True return False + @pyqtProperty("QStringList", constant=True) + def validCoresForPrinterType(self) -> List[str]: + printers = ContainerRegistry.getInstance().findContainersMetadata( + ignore_case=True, type="machine", name=self._printer_type, container_type=DefinitionContainer) + id = printers[0]["id"] if len(printers) > 0 and "id" in printers[0] else "" + definitions = ContainerRegistry.getInstance().findContainersMetadata( + ignore_case=True, type="variant", definition=id+"*") + return [x["name"] for x in definitions] + def __str__(self): message_chunks = [] message_chunks.append("Printer type: " + self._printer_type) diff --git a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py index 2a683966db..3dc245d468 100644 --- a/cura/PrinterOutput/NetworkedPrinterOutputDevice.py +++ b/cura/PrinterOutput/NetworkedPrinterOutputDevice.py @@ -1,4 +1,4 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from UM.FileHandler.FileHandler import FileHandler #For typing. @@ -6,6 +6,7 @@ from UM.Logger import Logger from UM.Scene.SceneNode import SceneNode #For typing. from cura.API import Account from cura.CuraApplication import CuraApplication +from cura.PrinterOutput.FormatMaps import FormatMaps from cura.PrinterOutput.PrinterOutputDevice import PrinterOutputDevice, ConnectionState, ConnectionType @@ -419,14 +420,8 @@ class NetworkedPrinterOutputDevice(PrinterOutputDevice): @staticmethod def applyPrinterTypeMapping(printer_type): - _PRINTER_TYPE_NAME = { - "fire_e": "ultimaker_method", - "lava_f": "ultimaker_methodx", - "magma_10": "ultimaker_methodxl", - "sketch": "ultimaker_sketch" - } - if printer_type in _PRINTER_TYPE_NAME: - return _PRINTER_TYPE_NAME[printer_type] + if printer_type in FormatMaps.PRINTER_TYPE_NAME: + return FormatMaps.PRINTER_TYPE_NAME[printer_type] return printer_type @pyqtProperty(str, constant = True) diff --git a/cura/Settings/CuraContainerStack.py b/cura/Settings/CuraContainerStack.py index b5b8a1b721..fd7f7c7575 100755 --- a/cura/Settings/CuraContainerStack.py +++ b/cura/Settings/CuraContainerStack.py @@ -5,7 +5,7 @@ from typing import Any, cast, List, Optional, Dict from PyQt6.QtCore import pyqtProperty, pyqtSignal, QObject from UM.Application import Application -from UM.Decorators import override +from UM.Decorators import CachedMemberFunctions, override from UM.FlameProfiler import pyqtSlot from UM.Logger import Logger from UM.Settings.ContainerStack import ContainerStack, InvalidContainerStackError @@ -237,6 +237,7 @@ class CuraContainerStack(ContainerStack): :param new_value: The new value to set the property to. """ + CachedMemberFunctions.clearInstanceCache(self) container_index = _ContainerIndexes.UserChanges self._containers[container_index].setProperty(key, property_name, property_value, container, set_from_cache) @@ -401,6 +402,9 @@ class CuraContainerStack(ContainerStack): return super().getProperty(key, property_name, context) + def getValue(self, key: str, context = None) -> Any: + return self.getProperty(key, "value", context) + class _ContainerIndexes: """Private helper class to keep track of container positions and their types.""" diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py index 3ce83d27e3..cd39947bf8 100755 --- a/cura/Settings/ExtruderManager.py +++ b/cura/Settings/ExtruderManager.py @@ -15,6 +15,7 @@ from UM.Scene.Selection import Selection from UM.Scene.Iterator.BreadthFirstIterator import BreadthFirstIterator from UM.Settings.ContainerRegistry import ContainerRegistry # Finding containers by ID. from cura.Machines.ContainerTree import ContainerTree +from cura.Settings.ExtruderStack import ExtruderStack from typing import Any, cast, Dict, List, Optional, TYPE_CHECKING, Union @@ -257,6 +258,7 @@ class ExtruderManager(QObject): limit_to_extruder_feature_list = ["wall_0_extruder_nr", "wall_x_extruder_nr", "roofing_extruder_nr", + "flooring_extruder_nr", "top_bottom_extruder_nr", "infill_extruder_nr", ] @@ -303,6 +305,11 @@ class ExtruderManager(QObject): Logger.log("e", "Unable to find one or more of the extruders in %s", used_extruder_stack_ids) return [] + def getFirstUsedExtruderStack(self)-> ExtruderStack: + used_extruders = self.getUsedExtruderStacks() + sorted_extruders = sorted(used_extruders, key=lambda extruder: extruder.getValue("extruder_nr")) + return sorted_extruders[0] + def getInitialExtruderNr(self) -> int: """Get the extruder that the print will start with. @@ -319,8 +326,7 @@ class ExtruderManager(QObject): skirt_brim_extruder_nr = global_stack.getProperty("skirt_brim_extruder_nr", "value") # if the skirt_brim_extruder_nr is -1, then we use the first used extruder if skirt_brim_extruder_nr == -1: - used_extruders = self.getUsedExtruderStacks() - return used_extruders[0].position + return self.getFirstUsedExtruderStack().getValue("extruder_nr") else: return skirt_brim_extruder_nr if adhesion_type == "raft": @@ -331,7 +337,7 @@ class ExtruderManager(QObject): return global_stack.getProperty("support_infill_extruder_nr", "value") # REALLY no adhesion? Use the first used extruder. - return self.getUsedExtruderStacks()[0].getProperty("extruder_nr", "value") + return self.getFirstUsedExtruderStack().getValue("extruder_nr") def removeMachineExtruders(self, machine_id: str) -> None: """Removes the container stack and user profile for the extruders for a specific machine. diff --git a/cura/Settings/ExtruderStack.py b/cura/Settings/ExtruderStack.py index eba41569b7..98ab2b817c 100644 --- a/cura/Settings/ExtruderStack.py +++ b/cura/Settings/ExtruderStack.py @@ -1,22 +1,19 @@ -# Copyright (c) 2018 Ultimaker B.V. +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from typing import Any, Dict, TYPE_CHECKING, Optional from PyQt6.QtCore import pyqtProperty, pyqtSignal -from UM.Decorators import override +from UM.Decorators import CachedMemberFunctions, override from UM.MimeTypeDatabase import MimeType, MimeTypeDatabase from UM.Settings.ContainerStack import ContainerStack from UM.Settings.ContainerRegistry import ContainerRegistry from UM.Settings.Interfaces import ContainerInterface, PropertyEvaluationContext from UM.Util import parseBool -import cura.CuraApplication - from . import Exceptions from .CuraContainerStack import CuraContainerStack, _ContainerIndexes -from .ExtruderManager import ExtruderManager if TYPE_CHECKING: from cura.Settings.GlobalStack import GlobalStack @@ -86,6 +83,7 @@ class ExtruderStack(CuraContainerStack): def setCompatibleMaterialDiameter(self, value: float) -> None: old_approximate_diameter = self.getApproximateMaterialDiameter() if self.getCompatibleMaterialDiameter() != value: + CachedMemberFunctions.clearInstanceCache(self) self.definitionChanges.setProperty("material_diameter", "value", value) self.compatibleMaterialDiameterChanged.emit() @@ -140,7 +138,11 @@ class ExtruderStack(CuraContainerStack): context.popContainer() return result - limit_to_extruder = super().getProperty(key, "limit_to_extruder", context) + if not context: + context = PropertyEvaluationContext(self) + if "extruder_position" not in context.context: + context.context["extruder_position"] = super().getProperty(key, "limit_to_extruder", context) + limit_to_extruder = context.context["extruder_position"] if limit_to_extruder is not None: limit_to_extruder = str(limit_to_extruder) diff --git a/cura/Settings/GlobalStack.py b/cura/Settings/GlobalStack.py index 25fc74b28f..1bef64f7aa 100755 --- a/cura/Settings/GlobalStack.py +++ b/cura/Settings/GlobalStack.py @@ -83,6 +83,15 @@ class GlobalStack(CuraContainerStack): """ return self.getMetaDataEntry("supports_material_export", False) + @pyqtProperty("QVariantList", constant = True) + def getOutputFileFormats(self) -> List[str]: + """ + Which output formats the printer supports. + :return: A list of strings with MIME-types. + """ + all_formats_str = self.getMetaDataEntry("file_formats", "") + return all_formats_str.split(";") + @classmethod def getLoadingPriority(cls) -> int: return 2 diff --git a/cura/Settings/MachineManager.py b/cura/Settings/MachineManager.py index 851e852800..986608cd49 100755 --- a/cura/Settings/MachineManager.py +++ b/cura/Settings/MachineManager.py @@ -398,7 +398,8 @@ class MachineManager(QObject): self.setVariantByName(extruder.getMetaDataEntry("position"), machine_node.preferred_variant_name) variant_node = machine_node.variants.get(machine_node.preferred_variant_name) - material_node = variant_node.materials.get(extruder.material.getMetaDataEntry("base_file")) + material_node = variant_node.materials.get( + extruder.material.getMetaDataEntry("base_file")) if variant_node else None if material_node is None: Logger.log("w", "An extruder has an unknown material, switching it to the preferred material") if not self.setMaterialById(extruder.getMetaDataEntry("position"), machine_node.preferred_material): @@ -1678,7 +1679,7 @@ class MachineManager(QObject): intent_category = self.activeIntentCategory, intent_name = IntentCategoryModel.translation(self.activeIntentCategory, "name", self.activeIntentCategory.title()), custom_profile = self.activeQualityOrQualityChangesName if global_stack.qualityChanges is not empty_quality_changes_container else None, - layer_height = self.activeQualityLayerHeight if self.isActiveQualitySupported else None, + layer_height = float("{:.2f}".format(self.activeQualityLayerHeight)) if self.isActiveQualitySupported else None, is_experimental = self.isActiveQualityExperimental and self.isActiveQualitySupported ) diff --git a/cura/UI/CuraSplashScreen.py b/cura/UI/CuraSplashScreen.py index 331fb2e880..a61c13a19b 100644 --- a/cura/UI/CuraSplashScreen.py +++ b/cura/UI/CuraSplashScreen.py @@ -1,5 +1,6 @@ # Copyright (c) 2020 Ultimaker B.V. # Uranium is released under the terms of the LGPLv3 or higher. +import math from PyQt6.QtCore import Qt, QCoreApplication, QTimer from PyQt6.QtGui import QPixmap, QColor, QFont, QPen, QPainter @@ -51,6 +52,7 @@ class CuraSplashScreen(QSplashScreen): self._last_update_time = time.time() # Since we don't know how much time actually passed, check how many intervals of 50 we had. self._loading_image_rotation_angle -= 10 * (time_since_last_update * 1000 / 50) + self._loading_image_rotation_angle = math.fmod(self._loading_image_rotation_angle, 360) self.repaint() # Override the mousePressEvent so the splashscreen doesn't disappear when clicked diff --git a/cura/UI/OpenSourceDependenciesModel.py b/cura/UI/OpenSourceDependenciesModel.py new file mode 100644 index 0000000000..0ef4880d55 --- /dev/null +++ b/cura/UI/OpenSourceDependenciesModel.py @@ -0,0 +1,23 @@ +# Copyright (c) 2025 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import List + +from PyQt6.QtCore import QObject, pyqtProperty + +from cura import CuraVersion +from .OpenSourceDependency import OpenSourceDependency + + +class OpenSourceDependenciesModel(QObject): + + def __init__(self, parent=None): + super().__init__(parent) + self._dependencies = [] + + for name, data in CuraVersion.DependenciesDescriptions.items(): + self._dependencies.append(OpenSourceDependency(name, data)) + + @pyqtProperty(list, constant=True) + def dependencies(self) -> List[OpenSourceDependency]: + return self._dependencies \ No newline at end of file diff --git a/cura/UI/OpenSourceDependency.py b/cura/UI/OpenSourceDependency.py new file mode 100644 index 0000000000..c9bd5704a1 --- /dev/null +++ b/cura/UI/OpenSourceDependency.py @@ -0,0 +1,40 @@ +# Copyright (c) 2025 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from PyQt6.QtCore import QObject, pyqtProperty, pyqtEnum + + +class OpenSourceDependency(QObject): + + def __init__(self, name, data): + super().__init__() + self._name = name + self._version = data['version'] if data['version'] is not None else '' + self._summary = data['summary'] if data['summary'] is not None else '' + self._license = data['license'] if data['license'] is not None and len(data['license']) > 0 else name + self._license_full = data['license_full'] if 'license_full' in data else '' + self._sources_url = data['sources_url'] if 'sources_url' in data else '' + + @pyqtProperty(str, constant=True) + def name(self): + return self._name + + @pyqtProperty(str, constant=True) + def version(self): + return self._version + + @pyqtProperty(str, constant=True) + def summary(self): + return self._summary + + @pyqtProperty(str, constant=True) + def license(self): + return self._license + + @pyqtProperty(str, constant=True) + def license_full(self): + return self._license_full + + @pyqtProperty(str, constant=True) + def sources_url(self): + return self._sources_url \ No newline at end of file diff --git a/cura/UI/PrintInformation.py b/cura/UI/PrintInformation.py index 936e646946..6826c34e43 100644 --- a/cura/UI/PrintInformation.py +++ b/cura/UI/PrintInformation.py @@ -449,6 +449,6 @@ class PrintInformation(QObject): """If this is a sort of output 'device' (like local or online file storage, rather than a printer), the user could have altered the file-name, and thus the project name should be altered as well.""" if isinstance(output_device, ProjectOutputDevice): - new_name = output_device.getLastOutputName() + new_name = output_device.popLastOutputName() if new_name is not None: self.setJobName(os.path.splitext(os.path.basename(new_name))[0]) diff --git a/cura/UI/WelcomePagesModel.py b/cura/UI/WelcomePagesModel.py index 5faf39311e..6ef1959b4a 100644 --- a/cura/UI/WelcomePagesModel.py +++ b/cura/UI/WelcomePagesModel.py @@ -217,8 +217,8 @@ class WelcomePagesModel(ListModel): def _getBuiltinWelcomePagePath(page_filename: str) -> QUrl: """Convenience function to get QUrl path to pages that's located in "resources/qml/WelcomePages".""" from cura.CuraApplication import CuraApplication - return QUrl.fromLocalFile(Resources.getPath(CuraApplication.ResourceTypes.QmlFiles, - os.path.join("WelcomePages", page_filename))) + return QUrl.fromLocalFile( + Resources.getPath(CuraApplication.ResourceTypes.QmlFiles, "WelcomePages", page_filename)) # FIXME: HACKs for optimization that we don't update the model every time the active machine gets changed. def _onActiveMachineChanged(self) -> None: diff --git a/licenses_thirdparty/qt.md b/licenses_thirdparty/qt.md new file mode 100644 index 0000000000..bf84121a2e --- /dev/null +++ b/licenses_thirdparty/qt.md @@ -0,0 +1,24 @@ +Sources for the Qt modules that Cura uses (links within UltiMaker repositories): + +- qtbase: https://github.com/Ultimaker/qtbase +- qtdeclarative: https://github.com/Ultimaker/qtdeclarative +- qtsvg: https://github.com/Ultimaker/qtsvg +- qtshadertools: https://github.com/Ultimaker/qtshadertools +- qtimageformats: https://github.com/Ultimaker/qtimageformats + +Sources for Qt modules that Cura doesn't use (and thus aren't necessary for building or running any part of Cura), but that may be shipped along the product anyway due to our build-process (links to off-site): + +- qtsensors: https://github.com/qt/qtsensors +- qtmultimedia: https://github.com/qt/qtmultimedia +- qtpositioning: https://github.com/qt/qtpositioning +- qtremoteobjects: https://github.com/qt/qtremoteobjects +- qttexttospeech: https://github.com/qt/qtspeech +- qtwebchannel: https://github.com/qt/qtwebchannel +- qtwebsockets: https://github.com/qt/qtwebsockets +- qtserialport: https://github.com/qt/qtserialport +- qt (5) (linux): https://github.com/qt/qt5 + +Versions of Qt used in Cura (from 5.9.1 onwards): + +- 5.9.x: Qt 6.6.0 +- 5.10.x: Qt 6.6.0 diff --git a/packaging/AppImage-builder/AppImageBuilder.yml.jinja b/packaging/AppImage-builder/AppImageBuilder.yml.jinja index 9090a5f209..c6e7a7123a 100644 --- a/packaging/AppImage-builder/AppImageBuilder.yml.jinja +++ b/packaging/AppImage-builder/AppImageBuilder.yml.jinja @@ -47,6 +47,7 @@ AppDir: QT_PLUGIN_PATH: "$APPDIR/qt/plugins" QML2_IMPORT_PATH: "$APPDIR/qt/qml" QT_QPA_PLATFORMTHEME: xdgdesktopportal + QT_QPA_PLATFORM: xcb GDK_PIXBUF_MODULEDIR: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders GDK_PIXBUF_MODULE_FILE: $APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders.cache path_mappings: diff --git a/packaging/AppImage/cura.desktop.jinja b/packaging/AppImage/cura.desktop.jinja index 1230d4ff5c..dc6cddcc03 100644 --- a/packaging/AppImage/cura.desktop.jinja +++ b/packaging/AppImage/cura.desktop.jinja @@ -5,11 +5,11 @@ GenericName=3D Printing Software GenericName[de]=3D-Druck-Software GenericName[nl]=3D-Print Software Comment=Cura converts 3D models into paths for a 3D printer. It prepares your print for maximum accuracy, minimum printing time and good reliability with many extra features that make your print come out great. -Exec=UltiMaker-Cura %F +Exec=UltiMaker-Cura %U Icon=cura-icon Terminal=false Type=Application -MimeType=model/stl;application/vnd.ms-3mfdocument;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;text/x-gcode;application/x-amf;application/x-ply;application/x-ctm;model/vnd.collada+xml;model/gltf-binary;model/gltf+json;model/vnd.collada+xml+zip; +MimeType=model/stl;application/vnd.ms-3mfdocument;model/3mf;application/prs.wavefront-obj;image/bmp;image/gif;image/jpeg;image/png;text/x-gcode;application/x-amf;application/x-ply;application/x-ctm;model/vnd.collada+xml;model/gltf-binary;model/gltf+json;model/vnd.collada+xml+zip;x-scheme-handler/cura; Categories=Graphics; Keywords=3D;Printing; X-AppImage-Version={{ cura_version }} diff --git a/packaging/MacOS/build_macos.py b/packaging/MacOS/build_macos.py index fc78abf76f..d426aa349a 100644 --- a/packaging/MacOS/build_macos.py +++ b/packaging/MacOS/build_macos.py @@ -25,7 +25,8 @@ def build_dmg(source_path: str, dist_path: str, filename: str, app_name: str) -> f"{dist_path}/{filename}", f"{dist_path}/{app_name}"] - subprocess.run(arguments) + print(f"Run create dmg command [{" ".join([str(arg) for arg in arguments])}]") + subprocess.run(arguments, check=True) def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_version: str, installer_filename: str) -> None: @@ -56,7 +57,8 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v else: print("CODESIGN_IDENTITY missing. The installer is not being signed") - subprocess.run(pkg_build_arguments) + print(f"Run package build command [{" ".join([str(arg) for arg in pkg_build_arguments])}]") + subprocess.run(pkg_build_arguments, check=True) # This automatically generates a distribution.xml file that is used to build the installer. # If you want to make any changes to how the installer functions, this file should be changed to do that. @@ -67,7 +69,8 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v "--package", Path(dist_path, component_filename), # Package that will be inside installer Path(dist_path, "distribution.xml"), # Output location for sythesized distributions file ] - subprocess.run(distribution_creation_arguments) + print(f"Run distribution creation command [{" ".join([str(arg) for arg in distribution_creation_arguments])}]") + subprocess.run(distribution_creation_arguments, check=True) # This creates the distributable package (Installer) installer_creation_arguments = [ @@ -80,7 +83,8 @@ def build_pkg(dist_path: str, app_filename: str, component_filename: str, cura_v if codesign_identity: installer_creation_arguments.extend(["--sign", codesign_identity]) - subprocess.run(installer_creation_arguments) + print(f"Run installer creation command [{" ".join([str(arg) for arg in installer_creation_arguments])}]") + subprocess.run(installer_creation_arguments, check=True) def notarize_file(dist_path: str, filename: str) -> None: @@ -99,7 +103,8 @@ def notarize_file(dist_path: str, filename: str) -> None: Path(dist_path, filename) ] - subprocess.run(notarize_arguments) + print(f"Run notarize command [{" ".join([str(arg) for arg in notarize_arguments])}]") + subprocess.run(notarize_arguments, check=True) def create_pkg_installer(filename: str, dist_path: str, cura_version: str, app_name: str) -> None: @@ -149,7 +154,7 @@ if __name__ == "__main__": parser.add_argument("--app_name", required = True, type = str, help = "Filename of the .app that will be contained within the dmg/pkg") args = parser.parse_args() - cura_version = args.cura_conan_version.split("/")[-1] + cura_version = args.cura_conan_version.replace("+", "-") # + is not allowed for bundle identifier app_name = f"{args.app_name}.app" diff --git a/packaging/NSIS/Ultimaker-Cura.nsi.jinja b/packaging/NSIS/Ultimaker-Cura.nsi.jinja index 0a2ce0f517..9f61e6950c 100644 --- a/packaging/NSIS/Ultimaker-Cura.nsi.jinja +++ b/packaging/NSIS/Ultimaker-Cura.nsi.jinja @@ -1,9 +1,8 @@ -# Copyright (c) 2022 UltiMaker B.V. +# Copyright (c) 2025 UltiMaker # Cura's build system is released under the terms of the AGPLv3 or higher. !define APP_NAME "{{ app_name }}" !define COMP_NAME "{{ company }}" -!define WEB_SITE "{{ web_site }}" !define VERSION "{{ version }}" !define VIVERSION "{{ version_major }}.{{ version_minor }}.{{ version_patch }}.0" !define COPYRIGHT "Copyright (c) {{ year }} {{ company }}" @@ -16,13 +15,11 @@ !define REG_APP_PATH "Software\Microsoft\Windows\CurrentVersion\App Paths\${APP_NAME}-${VERSION}" !define UNINSTALL_PATH "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}-${VERSION}" -!define REG_START_MENU "Start Menu Folder" +!define REG_START_MENU "Start Menu Shortcut" ;Require administrator access RequestExecutionLevel admin -var SM_Folder - ###################################################################### VIProductVersion "${VIVERSION}" @@ -64,11 +61,9 @@ InstallDir "$PROGRAMFILES64\${APP_NAME}" !ifdef REG_START_MENU !define MUI_STARTMENUPAGE_NODISABLE -!define MUI_STARTMENUPAGE_DEFAULTFOLDER "UltiMaker Cura" !define MUI_STARTMENUPAGE_REGISTRY_ROOT "${REG_ROOT}" !define MUI_STARTMENUPAGE_REGISTRY_KEY "${UNINSTALL_PATH}" !define MUI_STARTMENUPAGE_REGISTRY_VALUENAME "${REG_START_MENU}" -!insertmacro MUI_PAGE_STARTMENU Application $SM_Folder !endif !insertmacro MUI_PAGE_INSTFILES @@ -107,39 +102,21 @@ SetOutPath "$INSTDIR" WriteUninstaller "$INSTDIR\uninstall.exe" !ifdef REG_START_MENU -!insertmacro MUI_STARTMENU_WRITE_BEGIN Application -CreateDirectory "$SMPROGRAMS\$SM_Folder" -CreateShortCut "$SMPROGRAMS\$SM_Folder\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" -CreateShortCut "$SMPROGRAMS\$SM_Folder\Uninstall ${APP_NAME}.lnk" "$INSTDIR\uninstall.exe" - -!ifdef WEB_SITE -WriteIniStr "$INSTDIR\UltiMaker Cura website.url" "InternetShortcut" "URL" "${WEB_SITE}" -CreateShortCut "$SMPROGRAMS\$SM_Folder\UltiMaker Cura website.lnk" "$INSTDIR\UltiMaker Cura website.url" -!endif -!insertmacro MUI_STARTMENU_WRITE_END +CreateShortCut "$SMPROGRAMS\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" !endif !ifndef REG_START_MENU -CreateDirectory "$SMPROGRAMS\{{ app_name }}" -CreateShortCut "$SMPROGRAMS\{{ app_name }}\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" -CreateShortCut "$SMPROGRAMS\{{ app_name }}\Uninstall ${APP_NAME}.lnk" "$INSTDIR\uninstall.exe" - -!ifdef WEB_SITE -WriteIniStr "$INSTDIR\UltiMaker Cura website.url" "InternetShortcut" "URL" "${WEB_SITE}" -CreateShortCut "$SMPROGRAMS\{{ app_name }}\UltiMaker Cura website.lnk" "$INSTDIR\UltiMaker Cura website.url" -!endif +CreateShortCut "$SMPROGRAMS\${APP_NAME}.lnk" "$INSTDIR\${MAIN_APP_EXE}" !endif WriteRegStr ${REG_ROOT} "${REG_APP_PATH}" "" "$INSTDIR\${MAIN_APP_EXE}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayName" "${APP_NAME}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "UninstallString" "$INSTDIR\uninstall.exe" +WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "QuietUninstallString" '"$INSTDIR\uninstall.exe" /S' WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayIcon" "$INSTDIR\${MAIN_APP_EXE}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "DisplayVersion" "${VERSION}" WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "Publisher" "${COMP_NAME}" -!ifdef WEB_SITE -WriteRegStr ${REG_ROOT} "${UNINSTALL_PATH}" "URLInfoAbout" "${WEB_SITE}" -!endif SectionEnd ###################################################################### @@ -176,29 +153,17 @@ RmDir "$INSTDIR\share\uranium" RmDir "$INSTDIR\share" Delete "$INSTDIR\uninstall.exe" -!ifdef WEB_SITE -Delete "$INSTDIR\${APP_NAME} website.url" -!endif RmDir /r /REBOOTOK "$INSTDIR" !ifdef REG_START_MENU -!insertmacro MUI_STARTMENU_GETFOLDER "Application" $SM_Folder -Delete "$SMPROGRAMS\$SM_Folder\${APP_NAME}.lnk" -Delete "$SMPROGRAMS\$SM_Folder\Uninstall ${APP_NAME}.lnk" -!ifdef WEB_SITE -Delete "$SMPROGRAMS\$SM_Folder\UltiMaker Cura website.lnk" -!endif -RmDir "$SMPROGRAMS\$SM_Folder" +Delete "$SMPROGRAMS\${APP_NAME}.lnk" +Delete "$SMPROGRAMS\Uninstall ${APP_NAME}.lnk" !endif !ifndef REG_START_MENU -Delete "$SMPROGRAMS\{{ app_name }}\${APP_NAME}.lnk" -Delete "$SMPROGRAMS\{{ app_name }}\Uninstall ${APP_NAME}.lnk" -!ifdef WEB_SITE -Delete "$SMPROGRAMS\{{ app_name }}\UltiMaker Cura website.lnk" -!endif -RmDir "$SMPROGRAMS\{{ app_name }}" +Delete "$SMPROGRAMS\${APP_NAME}.lnk" +Delete "$SMPROGRAMS\Uninstall ${APP_NAME}.lnk" !endif !insertmacro APP_UNASSOCIATE "stl" "Cura.model" diff --git a/packaging/NSIS/create_windows_installer.py b/packaging/NSIS/create_windows_installer.py index 5ec31c8e35..e01c757dbb 100644 --- a/packaging/NSIS/create_windows_installer.py +++ b/packaging/NSIS/create_windows_installer.py @@ -1,10 +1,11 @@ -# Copyright (c) 2022 UltiMaker +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import os import argparse # Command line arguments parsing and help. import subprocess +import semver import shutil from datetime import datetime @@ -14,11 +15,12 @@ from pathlib import Path from jinja2 import Template -def generate_nsi(source_path: str, dist_path: str, filename: str): +def generate_nsi(source_path: str, dist_path: str, filename: str, version: str): dist_loc = Path(os.getcwd(), dist_path) source_loc = Path(os.getcwd(), source_path) instdir = Path("$INSTDIR") dist_paths = [p.relative_to(dist_loc.joinpath("UltiMaker-Cura")) for p in sorted(dist_loc.joinpath("UltiMaker-Cura").rglob("*")) if p.is_file()] + parsed_version = semver.Version.parse(version) mapped_out_paths = {} for dist_path in dist_paths: if "__pycache__" not in dist_path.parts: @@ -42,14 +44,13 @@ def generate_nsi(source_path: str, dist_path: str, filename: str): nsis_content = template.render( - app_name = f"UltiMaker Cura {os.getenv('CURA_VERSION_FULL')}", + app_name = f"UltiMaker Cura {version}", main_app = "UltiMaker-Cura.exe", - version = os.getenv('CURA_VERSION_FULL'), - version_major = os.environ.get("CURA_VERSION_MAJOR"), - version_minor = os.environ.get("CURA_VERSION_MINOR"), - version_patch = os.environ.get("CURA_VERSION_PATCH"), + version = version, + version_major = str(parsed_version.major), + version_minor = str(parsed_version.minor), + version_patch = str(parsed_version.patch), company = "UltiMaker", - web_site = "https://ultimaker.com", year = datetime.now().year, cura_license_file = str(source_loc.joinpath("packaging", "cura_license.txt")), compression_method = "LZMA", # ZLIB, BZIP2 or LZMA @@ -74,9 +75,10 @@ def build(dist_path: str): if __name__ == "__main__": parser = argparse.ArgumentParser(description = "Create Windows exe installer of Cura.") - parser.add_argument("source_path", type=str, help="Path to Conan install Cura folder.") - parser.add_argument("dist_path", type=str, help="Path to Pyinstaller dist folder") - parser.add_argument("filename", type = str, help = "Filename of the exe (e.g. 'UltiMaker-Cura-5.1.0-beta-Windows-X64.exe')") + parser.add_argument("--source_path", type=str, help="Path to Conan install Cura folder.") + parser.add_argument("--dist_path", type=str, help="Path to Pyinstaller dist folder") + parser.add_argument("--filename", type=str, help="Filename of the exe (e.g. 'UltiMaker-Cura-5.1.0-beta-Windows-X64.exe')") + parser.add_argument("--version", type=str, help="The full cura version, e.g. 5.9.0-beta.1+24132") args = parser.parse_args() - generate_nsi(args.source_path, args.dist_path, args.filename) + generate_nsi(args.source_path, args.dist_path, args.filename, args.version) build(args.dist_path) diff --git a/packaging/msi/create_windows_msi.py b/packaging/msi/create_windows_msi.py index 268fc670a2..12c64ed24f 100644 --- a/packaging/msi/create_windows_msi.py +++ b/packaging/msi/create_windows_msi.py @@ -1,4 +1,4 @@ -# Copyright (c) 2022 UltiMaker +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. @@ -7,6 +7,7 @@ import os import shutil import subprocess import uuid +import semver from datetime import datetime from pathlib import Path @@ -20,11 +21,12 @@ def work_path(filename: Path) -> Path: return filename.parent -def generate_wxs(source_path: Path, dist_path: Path, filename: Path, app_name: str): +def generate_wxs(source_path: Path, dist_path: Path, filename: Path, app_name: str, version: str): source_loc = Path(os.getcwd(), source_path) dist_loc = Path(os.getcwd(), dist_path) work_loc = work_path(filename) work_loc.mkdir(parents=True, exist_ok=True) + parsed_version = semver.Version.parse(version) jinja_template_path = Path(source_loc.joinpath("packaging", "msi", "UltiMaker-Cura.wxs.jinja")) with open(jinja_template_path, "r") as f: @@ -33,12 +35,11 @@ def generate_wxs(source_path: Path, dist_path: Path, filename: Path, app_name: s wxs_content = template.render( app_name=f"{app_name}", main_app="UltiMaker-Cura.exe", - version=os.getenv('CURA_VERSION_FULL'), - version_major=os.environ.get("CURA_VERSION_MAJOR"), - version_minor=os.environ.get("CURA_VERSION_MINOR"), - version_patch=os.environ.get("CURA_VERSION_PATCH"), + version=version, + version_major=str(parsed_version.major), + version_minor=str(parsed_version.minor), + version_patch=str(parsed_version.patch), company="UltiMaker", - web_site="https://ultimaker.com", year=datetime.now().year, upgrade_code=str(uuid.uuid5(uuid.NAMESPACE_DNS, app_name)), cura_license_file=str(source_loc.joinpath("packaging", "msi", "cura_license.rtf")), @@ -111,12 +112,13 @@ def build(dist_path: Path, filename: Path): if __name__ == "__main__": parser = argparse.ArgumentParser(description="Create Windows msi installer of Cura.") - parser.add_argument("source_path", type=Path, help="Path to Conan install Cura folder.") - parser.add_argument("dist_path", type=Path, help="Path to Pyinstaller dist folder") - parser.add_argument("filename", type=Path, + parser.add_argument("--source_path", type=Path, help="Path to Conan install Cura folder.") + parser.add_argument("--dist_path", type=Path, help="Path to Pyinstaller dist folder") + parser.add_argument("--filename", type=Path, help="Filename of the exe (e.g. 'UltiMaker-Cura-5.1.0-beta-Windows-X64.msi')") - parser.add_argument("name", type=str, help="App name (e.g. 'UltiMaker Cura')") + parser.add_argument("--name", type=str, help="App name (e.g. 'UltiMaker Cura')") + parser.add_argument("--version", type=str, help="The full cura version, e.g. 5.9.0-beta.1+24132") args = parser.parse_args() - generate_wxs(args.source_path.resolve(), args.dist_path.resolve(), args.filename.resolve(), args.name) + generate_wxs(args.source_path.resolve(), args.dist_path.resolve(), args.filename.resolve(), args.name, args.version) cleanup_artifacts(args.dist_path.resolve()) build(args.dist_path.resolve(), args.filename) diff --git a/plugins/3DConnexion/NavlibClient.py b/plugins/3DConnexion/NavlibClient.py new file mode 100644 index 0000000000..f9feb7f875 --- /dev/null +++ b/plugins/3DConnexion/NavlibClient.py @@ -0,0 +1,273 @@ +# Copyright (c) 2025 3Dconnexion, UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Optional +from UM.Math.Matrix import Matrix +from UM.Math.Vector import Vector +from UM.Math.AxisAlignedBox import AxisAlignedBox +from cura.PickingPass import PickingPass +from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator +from UM.Scene.SceneNode import SceneNode +from UM.Scene.Scene import Scene +from UM.Resources import Resources +from UM.Tool import Tool +from UM.View.Renderer import Renderer +from .OverlayNode import OverlayNode +import pynavlib.pynavlib_interface as pynav + + +class NavlibClient(pynav.NavlibNavigationModel, Tool): + + def __init__(self, scene: Scene, renderer: Renderer) -> None: + pynav.NavlibNavigationModel.__init__(self, False, pynav.NavlibOptions.RowMajorOrder) + Tool.__init__(self) + self._scene = scene + self._renderer = renderer + self._pointer_pick = None + self._was_pick = False + self._hit_selection_only = False + self._picking_pass = None + self._pivot_node = OverlayNode(node=SceneNode(), image_path=Resources.getPath(Resources.Images, "cor.png"), size=2.5) + self.put_profile_hint("UltiMaker Cura") + self.enable_navigation(True) + + def pick(self, x: float, y: float, check_selection: bool = False, radius: float = 0.) -> Optional[Vector]: + + if self._picking_pass is None or radius < 0.: + return None + + step = 0. + if radius == 0.: + grid_resolution = 0 + else: + grid_resolution = 5 + step = (2. * radius) / float(grid_resolution) + + min_depth = 99999. + result_position = None + + for i in range(grid_resolution + 1): + for j in range(grid_resolution + 1): + + coord_x = (x - radius) + i * step + coord_y = (y - radius) + j * step + + picked_depth = self._picking_pass.getPickedDepth(coord_x, coord_y) + max_depth = 16777.215 + + if 0. < picked_depth < max_depth: + + valid_hit = True + if check_selection: + selection_pass = self._renderer.getRenderPass("selection") + picked_object_id = selection_pass.getIdAtPosition(coord_x, coord_y) + picked_object = self._scene.findObject(picked_object_id) + + from UM.Scene.Selection import Selection + valid_hit = Selection.isSelected(picked_object) + + if not valid_hit and grid_resolution > 0.: + continue + elif not valid_hit and grid_resolution == 0.: + return None + + if picked_depth < min_depth: + min_depth = picked_depth + result_position = self._picking_pass.getPickedPosition(coord_x, coord_y) + + return result_position + + def get_pointer_position(self) -> "pynav.NavlibVector": + + from UM.Qt.QtApplication import QtApplication + main_window = QtApplication.getInstance().getMainWindow() + + x_n = 2. * main_window._mouse_x / main_window.width() - 1. + y_n = 2. * main_window._mouse_y / main_window.height() - 1. + + if self.get_is_view_perspective(): + self._was_pick = True + from cura.Utils.Threading import call_on_qt_thread + wrapped_pick = call_on_qt_thread(self.pick) + + self._pointer_pick = wrapped_pick(x_n, y_n) + + return pynav.NavlibVector(0., 0., 0.) + else: + ray = self._scene.getActiveCamera().getRay(x_n, y_n) + pointer_position = ray.origin + ray.direction + + return pynav.NavlibVector(pointer_position.x, pointer_position.y, pointer_position.z) + + def get_view_extents(self) -> "pynav.NavlibBox": + + view_width = self._scene.getActiveCamera().getViewportWidth() + view_height = self._scene.getActiveCamera().getViewportHeight() + horizontal_zoom = view_width * self._scene.getActiveCamera().getZoomFactor() + vertical_zoom = view_height * self._scene.getActiveCamera().getZoomFactor() + + pt_min = pynav.NavlibVector(-view_width / 2 - horizontal_zoom, -view_height / 2 - vertical_zoom, -9001) + pt_max = pynav.NavlibVector(view_width / 2 + horizontal_zoom, view_height / 2 + vertical_zoom, 9001) + + return pynav.NavlibBox(pt_min, pt_max) + + def get_view_frustum(self) -> "pynav.NavlibFrustum": + + projection_matrix = self._scene.getActiveCamera().getProjectionMatrix() + half_height = 2. / projection_matrix.getData()[1,1] + half_width = half_height * (projection_matrix.getData()[1,1] / projection_matrix.getData()[0,0]) + + return pynav.NavlibFrustum(-half_width, half_width, -half_height, half_height, 1., 5000.) + + def get_is_view_perspective(self) -> bool: + return self._scene.getActiveCamera().isPerspective() + + def get_selection_extents(self) -> "pynav.NavlibBox": + + from UM.Scene.Selection import Selection + bounding_box = Selection.getBoundingBox() + + if(bounding_box is not None) : + pt_min = pynav.NavlibVector(bounding_box.minimum.x, bounding_box.minimum.y, bounding_box.minimum.z) + pt_max = pynav.NavlibVector(bounding_box.maximum.x, bounding_box.maximum.y, bounding_box.maximum.z) + return pynav.NavlibBox(pt_min, pt_max) + + def get_selection_transform(self) -> "pynav.NavlibMatrix": + return pynav.NavlibMatrix() + + def get_is_selection_empty(self) -> bool: + from UM.Scene.Selection import Selection + return not Selection.hasSelection() + + def get_pivot_visible(self) -> bool: + return False + + def get_camera_matrix(self) -> "pynav.NavlibMatrix": + + transformation = self._scene.getActiveCamera().getLocalTransformation() + + return pynav.NavlibMatrix([[transformation.at(0, 0), transformation.at(0, 1), transformation.at(0, 2), transformation.at(0, 3)], + [transformation.at(1, 0), transformation.at(1, 1), transformation.at(1, 2), transformation.at(1, 3)], + [transformation.at(2, 0), transformation.at(2, 1), transformation.at(2, 2), transformation.at(2, 3)], + [transformation.at(3, 0), transformation.at(3, 1), transformation.at(3, 2), transformation.at(3, 3)]]) + + def get_coordinate_system(self) -> "pynav.NavlibMatrix": + return pynav.NavlibMatrix() + + def get_front_view(self) -> "pynav.NavlibMatrix": + return pynav.NavlibMatrix() + + def get_model_extents(self) -> "pynav.NavlibBox": + + result_bbox = AxisAlignedBox() + build_volume_bbox = None + + for node in DepthFirstIterator(self._scene.getRoot()): + node.setCalculateBoundingBox(True) + if node.__class__.__qualname__ == "CuraSceneNode" : + result_bbox = result_bbox + node.getBoundingBox() + elif node.__class__.__qualname__ == "BuildVolume": + build_volume_bbox = node.getBoundingBox() + + if not result_bbox.isValid(): + result_bbox = build_volume_bbox + + if result_bbox is not None: + pt_min = pynav.NavlibVector(result_bbox.minimum.x, result_bbox.minimum.y, result_bbox.minimum.z) + pt_max = pynav.NavlibVector(result_bbox.maximum.x, result_bbox.maximum.y, result_bbox.maximum.z) + self._scene_center = result_bbox.center + self._scene_radius = (result_bbox.maximum - self._scene_center).length() + return pynav.NavlibBox(pt_min, pt_max) + + def get_pivot_position(self) -> "pynav.NavlibVector": + return pynav.NavlibVector() + + def get_hit_look_at(self) -> "pynav.NavlibVector": + + if self._was_pick and self._pointer_pick is not None: + return pynav.NavlibVector(self._pointer_pick.x, self._pointer_pick.y, self._pointer_pick.z) + elif self._was_pick and self._pointer_pick is None: + return None + + from cura.Utils.Threading import call_on_qt_thread + wrapped_pick = call_on_qt_thread(self.pick) + picked_position = wrapped_pick(0, 0, self._hit_selection_only, 0.5) + + if picked_position is not None: + return pynav.NavlibVector(picked_position.x, picked_position.y, picked_position.z) + + def get_units_to_meters(self) -> float: + return 0.05 + + def is_user_pivot(self) -> bool: + return False + + def set_camera_matrix(self, matrix : "pynav.NavlibMatrix") -> None: + + # !!!!!! + # Hit testing in Orthographic view is not reliable + # Picking starts in camera position, not on near plane + # which results in wrong depth values (visible geometry + # cannot be picked properly) - Workaround needed (camera position offset) + # !!!!!! + if not self.get_is_view_perspective(): + affine = matrix._matrix + direction = Vector(-affine[0][2], -affine[1][2], -affine[2][2]) + distance = self._scene_center - Vector(affine[0][3], affine[1][3], affine[2][3]) + + cos_value = direction.dot(distance.normalized()) + + offset = 0. + + if (distance.length() < self._scene_radius) and (cos_value > 0.): + offset = self._scene_radius + elif (distance.length() < self._scene_radius) and (cos_value < 0.): + offset = 2. * self._scene_radius + elif (distance.length() > self._scene_radius) and (cos_value < 0.): + offset = 2. * distance.length() + + matrix._matrix[0][3] = matrix._matrix[0][3] - offset * direction.x + matrix._matrix[1][3] = matrix._matrix[1][3] - offset * direction.y + matrix._matrix[2][3] = matrix._matrix[2][3] - offset * direction.z + + transformation = Matrix(data = matrix._matrix) + self._scene.getActiveCamera().setTransformation(transformation) + + active_camera = self._scene.getActiveCamera() + if active_camera.isPerspective(): + camera_position = active_camera.getWorldPosition() + dist = (camera_position - self._pivot_node.getWorldPosition()).length() + scale = dist / 400. + else: + view_width = active_camera.getViewportWidth() + current_size = view_width + (2. * active_camera.getZoomFactor() * view_width) + scale = current_size / view_width * 5. + + self._pivot_node.scale(scale) + + def set_view_extents(self, extents: "pynav.NavlibBox") -> None: + view_width = self._scene.getActiveCamera().getViewportWidth() + new_zoom = (extents._min._x + view_width / 2.) / - view_width + self._scene.getActiveCamera().setZoomFactor(new_zoom) + + def set_hit_selection_only(self, onlySelection : bool) -> None: + self._hit_selection_only = onlySelection + + def set_motion_flag(self, motion : bool) -> None: + if motion: + width = self._scene.getActiveCamera().getViewportWidth() + height = self._scene.getActiveCamera().getViewportHeight() + self._picking_pass = PickingPass(width, height) + self._renderer.addRenderPass(self._picking_pass) + else: + self._was_pick = False + self._renderer.removeRenderPass(self._picking_pass) + + def set_pivot_position(self, position) -> None: + self._pivot_node._target_node.setPosition(position=Vector(position._x, position._y, position._z), transform_space = SceneNode.TransformSpace.World) + + def set_pivot_visible(self, visible) -> None: + if visible: + self._scene.getRoot().addChild(self._pivot_node) + else: + self._scene.getRoot().removeChild(self._pivot_node) diff --git a/plugins/3DConnexion/OverlayNode.py b/plugins/3DConnexion/OverlayNode.py new file mode 100644 index 0000000000..f96d9e14c7 --- /dev/null +++ b/plugins/3DConnexion/OverlayNode.py @@ -0,0 +1,68 @@ +# Copyright (c) 2025 3Dconnexion, UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Scene.SceneNode import SceneNode +from UM.View.GL.OpenGL import OpenGL +from UM.Mesh.MeshBuilder import MeshBuilder # To create the overlay quad +from UM.Resources import Resources # To find shader locations +from UM.Math.Matrix import Matrix +from UM.Application import Application + +try: + from PyQt6.QtGui import QImage +except: + from PyQt5.QtGui import QImage + +class OverlayNode(SceneNode): + def __init__(self, node, image_path, size, parent=None): + super().__init__(parent) + self._target_node = node + self.setCalculateBoundingBox(False) + + self._overlay_mesh = self._createOverlayQuad(size) + self._drawed_mesh = self._overlay_mesh + self._shader = None + self._scene = Application.getInstance().getController().getScene() + self._scale = 1. + self._image_path = image_path + + def scale(self, factor): + scale_matrix = Matrix() + scale_matrix.setByScaleFactor(factor) + self._drawed_mesh = self._overlay_mesh.getTransformed(scale_matrix) + + def _createOverlayQuad(self, size): + mb = MeshBuilder() + mb.addFaceByPoints(-size / 2, -size / 2, 0, -size / 2, size / 2, 0, size / 2, -size / 2, 0) + mb.addFaceByPoints(size / 2, size / 2, 0, -size / 2, size / 2, 0, size / 2, -size / 2, 0) + + # Set UV coordinates so a texture can be created + mb.setVertexUVCoordinates(0, 0, 1) + mb.setVertexUVCoordinates(1, 0, 0) + mb.setVertexUVCoordinates(4, 0, 0) + mb.setVertexUVCoordinates(2, 1, 1) + mb.setVertexUVCoordinates(5, 1, 1) + mb.setVertexUVCoordinates(3, 1, 0) + + return mb.build() + + def render(self, renderer): + + if not self._shader: + # We now misuse the platform shader, as it actually supports textures + self._shader = OpenGL.getInstance().createShaderProgram(Resources.getPath(Resources.Shaders, "platform.shader")) + # Set the opacity to 0, so that the template is in full control. + self._shader.setUniformValue("u_opacity", 0) + self._texture = OpenGL.getInstance().createTexture() + texture_image = QImage(self._image_path) + self._texture.setImage(texture_image) + self._shader.setTexture(0, self._texture) + + node_position = self._target_node.getWorldPosition() + position_matrix = Matrix() + position_matrix.setByTranslation(node_position) + camera_orientation = self._scene.getActiveCamera().getOrientation().toMatrix() + + renderer.queueNode(self._scene.getRoot(), shader=self._shader, mesh=self._drawed_mesh.getTransformed(position_matrix.multiply(camera_orientation)), overlay=True) + + return True # This node does it's own rendering. diff --git a/plugins/3DConnexion/__init__.py b/plugins/3DConnexion/__init__.py new file mode 100644 index 0000000000..0a226b0969 --- /dev/null +++ b/plugins/3DConnexion/__init__.py @@ -0,0 +1,26 @@ +# Copyright (c) 2025 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from UM.Logger import Logger + +from typing import TYPE_CHECKING, Dict, Any + +if TYPE_CHECKING: + from UM.Application import Application + + +def getMetaData() -> Dict[str, Any]: + return { + "tool": { + "visible": False + } + } + + +def register(app: "Application") -> Dict[str, Any]: + try: + from .NavlibClient import NavlibClient + return { "tool": NavlibClient(app.getController().getScene(), app.getRenderer()) } + except BaseException as exception: + Logger.warning(f"Unable to load 3Dconnexion library: {exception}") + return { } diff --git a/plugins/3DConnexion/plugin.json b/plugins/3DConnexion/plugin.json new file mode 100644 index 0000000000..eadb70fc44 --- /dev/null +++ b/plugins/3DConnexion/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "3DConnexion mouses", + "author": "3DConnexion", + "version": "1.0.0", + "description": "Allows working with 3D mouses inside Cura.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 99852d84ce..45ab2e7d2f 100755 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -17,6 +17,7 @@ from UM.MimeTypeDatabase import MimeTypeDatabase, MimeType from UM.Scene.GroupDecorator import GroupDecorator from UM.Scene.SceneNode import SceneNode # For typing. from UM.Scene.SceneNodeSettings import SceneNodeSettings +from UM.Util import parseBool from cura.CuraApplication import CuraApplication from cura.Machines.ContainerTree import ContainerTree from cura.Scene.BuildPlateDecorator import BuildPlateDecorator @@ -93,7 +94,7 @@ class ThreeMFReader(MeshReader): return temp_mat @staticmethod - def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str = "") -> Optional[SceneNode]: + def _convertSavitarNodeToUMNode(savitar_node: Savitar.SceneNode, file_name: str = "", archive: zipfile.ZipFile = None) -> Optional[SceneNode]: """Convenience function that converts a SceneNode object (as obtained from libSavitar) to a scene node. :returns: Scene node. @@ -114,6 +115,10 @@ class ThreeMFReader(MeshReader): active_build_plate = CuraApplication.getInstance().getMultiBuildPlateModel().activeBuildPlate + component_path = savitar_node.getComponentPath() + if component_path != "" and archive is not None: + savitar_node.parseComponentData(archive.open(component_path.lstrip("/")).read()) + um_node = CuraSceneNode() # This adds a SettingOverrideDecorator um_node.addDecorator(BuildPlateDecorator(active_build_plate)) try: @@ -131,6 +136,7 @@ class ThreeMFReader(MeshReader): vertices = numpy.resize(data, (int(data.size / 3), 3)) mesh_builder.setVertices(vertices) mesh_builder.calculateNormals(fast=True) + mesh_builder.setMeshId(node_id) if file_name: # The filename is used to give the user the option to reload the file if it is changed on disk # It is only set for the root node of the 3mf file @@ -141,7 +147,7 @@ class ThreeMFReader(MeshReader): um_node.setMeshData(mesh_data) for child in savitar_node.getChildren(): - child_node = ThreeMFReader._convertSavitarNodeToUMNode(child) + child_node = ThreeMFReader._convertSavitarNodeToUMNode(child, archive=archive) if child_node: um_node.addChild(child_node) @@ -182,7 +188,7 @@ class ThreeMFReader(MeshReader): um_node.printOrder = int(setting_value) continue if key =="drop_to_buildplate": - um_node.setSetting(SceneNodeSettings.AutoDropDown, eval(setting_value)) + um_node.setSetting(SceneNodeSettings.AutoDropDown, parseBool(setting_value)) continue if key in known_setting_keys: setting_container.setProperty(key, "value", setting_value) @@ -230,7 +236,7 @@ class ThreeMFReader(MeshReader): CuraApplication.getInstance().getController().getScene().setMetaDataEntry(key, value) for node in scene_3mf.getSceneNodes(): - um_node = ThreeMFReader._convertSavitarNodeToUMNode(node, file_name) + um_node = ThreeMFReader._convertSavitarNodeToUMNode(node, file_name, archive) if um_node is None: continue diff --git a/plugins/3MFReader/ThreeMFWorkspaceReader.py b/plugins/3MFReader/ThreeMFWorkspaceReader.py index 3769db4d14..ece76f1c4a 100755 --- a/plugins/3MFReader/ThreeMFWorkspaceReader.py +++ b/plugins/3MFReader/ThreeMFWorkspaceReader.py @@ -1354,7 +1354,6 @@ class ThreeMFWorkspaceReader(WorkspaceReader): return machine_manager.setQualityChangesGroup(quality_changes_group, no_dialog = True) else: - self._quality_type_to_apply = self._quality_type_to_apply.lower() if self._quality_type_to_apply else None quality_group_dict = container_tree.getCurrentQualityGroups() if self._quality_type_to_apply in quality_group_dict: quality_group = quality_group_dict[self._quality_type_to_apply] diff --git a/plugins/3MFReader/__init__.py b/plugins/3MFReader/__init__.py index 5e2b68fce0..d468783a90 100644 --- a/plugins/3MFReader/__init__.py +++ b/plugins/3MFReader/__init__.py @@ -23,7 +23,7 @@ def getMetaData() -> Dict: if "3MFReader.ThreeMFReader" in sys.modules: metaData["mesh_reader"] = [ { - "extension": "3mf", + "extension": workspace_extension, "description": catalog.i18nc("@item:inlistbox", "3MF File") } ] diff --git a/plugins/3MFWriter/BambuLabVariant.py b/plugins/3MFWriter/BambuLabVariant.py new file mode 100644 index 0000000000..69814505ad --- /dev/null +++ b/plugins/3MFWriter/BambuLabVariant.py @@ -0,0 +1,176 @@ +# Copyright (c) 2025 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import hashlib +import json +from io import StringIO +import xml.etree.ElementTree as ET +import zipfile + +from PyQt6.QtCore import Qt, QBuffer +from PyQt6.QtGui import QImage + +from UM.Application import Application +from UM.Logger import Logger +from UM.Mesh.MeshWriter import MeshWriter +from UM.PluginRegistry import PluginRegistry +from typing import cast + +from cura.CuraApplication import CuraApplication + +from .ThreeMFVariant import ThreeMFVariant +from UM.i18n import i18nCatalog +catalog = i18nCatalog("cura") + +# Path constants +METADATA_PATH = "Metadata" +THUMBNAIL_PATH_MULTIPLATE = f"{METADATA_PATH}/plate_1.png" +THUMBNAIL_PATH_MULTIPLATE_SMALL = f"{METADATA_PATH}/plate_1_small.png" +GCODE_PATH = f"{METADATA_PATH}/plate_1.gcode" +GCODE_MD5_PATH = f"{GCODE_PATH}.md5" +MODEL_SETTINGS_PATH = f"{METADATA_PATH}/model_settings.config" +PLATE_DESC_PATH = f"{METADATA_PATH}/plate_1.json" +SLICE_INFO_PATH = f"{METADATA_PATH}/slice_info.config" +PROJECT_SETTINGS_PATH = f"{METADATA_PATH}/project_settings.config" + +class BambuLabVariant(ThreeMFVariant): + """BambuLab specific implementation of the 3MF format.""" + + @property + def mime_type(self) -> str: + return "application/vnd.bambulab-package.3dmanufacturing-3dmodel+xml" + + def process_thumbnail(self, snapshot: QImage, thumbnail_buffer: QBuffer, + archive: zipfile.ZipFile, relations_element: ET.Element) -> None: + """Process the thumbnail for BambuLab variant.""" + # Write thumbnail + archive.writestr(zipfile.ZipInfo(THUMBNAIL_PATH_MULTIPLATE), thumbnail_buffer.data()) + + # Add relations elements for thumbnails + ET.SubElement(relations_element, "Relationship", + Target="/" + THUMBNAIL_PATH_MULTIPLATE, Id="rel-2", + pe="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") + + ET.SubElement(relations_element, "Relationship", + Target="/" + THUMBNAIL_PATH_MULTIPLATE, Id="rel-4", + Type="http://schemas.bambulab.com/package/2021/cover-thumbnail-middle") + + # Create and save small thumbnail + small_snapshot = snapshot.scaled(128, 128, transformMode=Qt.TransformationMode.SmoothTransformation) + small_thumbnail_buffer = QBuffer() + small_thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) + small_snapshot.save(small_thumbnail_buffer, "PNG") + + # Write small thumbnail + archive.writestr(zipfile.ZipInfo(THUMBNAIL_PATH_MULTIPLATE_SMALL), small_thumbnail_buffer.data()) + + # Add relation for small thumbnail + ET.SubElement(relations_element, "Relationship", + Target="/" + THUMBNAIL_PATH_MULTIPLATE_SMALL, Id="rel-5", + Type="http://schemas.bambulab.com/package/2021/cover-thumbnail-small") + + def add_extra_files(self, archive: zipfile.ZipFile, metadata_relations_element: ET.Element) -> None: + """Add BambuLab specific files to the archive.""" + self._storeGCode(archive, metadata_relations_element) + self._storeModelSettings(archive) + self._storePlateDesc(archive) + self._storeSliceInfo(archive) + self._storeProjectSettings(archive) + + def _storeGCode(self, archive: zipfile.ZipFile, metadata_relations_element: ET.Element): + """Store GCode data in the archive.""" + gcode_textio = StringIO() + gcode_writer = cast(MeshWriter, PluginRegistry.getInstance().getPluginObject("GCodeWriter")) + success = gcode_writer.write(gcode_textio, None) + + if not success: + error_msg = catalog.i18nc("@info:error", "Can't write GCode to 3MF file") + self._writer.setInformation(error_msg) + Logger.error(error_msg) + raise Exception(error_msg) + + gcode_data = gcode_textio.getvalue().encode("UTF-8") + archive.writestr(zipfile.ZipInfo(GCODE_PATH), gcode_data) + + gcode_relation_element = ET.SubElement(metadata_relations_element, "Relationship", + Target=f"/{GCODE_PATH}", Id="rel-1", + Type="http://schemas.bambulab.com/package/2021/gcode") + + # Calculate and store the MD5 sum of the gcode data + md5_hash = hashlib.md5(gcode_data).hexdigest() + archive.writestr(zipfile.ZipInfo(GCODE_MD5_PATH), md5_hash.encode("UTF-8")) + + def _storeModelSettings(self, archive: zipfile.ZipFile): + """Store model settings in the archive.""" + config = ET.Element("config") + plate = ET.SubElement(config, "plate") + ET.SubElement(plate, "metadata", key="plater_id", value="1") + ET.SubElement(plate, "metadata", key="plater_name", value="") + ET.SubElement(plate, "metadata", key="locked", value="false") + ET.SubElement(plate, "metadata", key="filament_map_mode", value="Auto For Flush") + extruders_count = len(CuraApplication.getInstance().getExtruderManager().extruderIds) + ET.SubElement(plate, "metadata", key="filament_maps", value=" ".join("1" for _ in range(extruders_count))) + ET.SubElement(plate, "metadata", key="gcode_file", value=GCODE_PATH) + ET.SubElement(plate, "metadata", key="thumbnail_file", value=THUMBNAIL_PATH_MULTIPLATE) + ET.SubElement(plate, "metadata", key="pattern_bbox_file", value=PLATE_DESC_PATH) + + self._writer._storeElementTree(archive, MODEL_SETTINGS_PATH, config) + + def _storePlateDesc(self, archive: zipfile.ZipFile): + """Store plate description in the archive.""" + plate_desc = {} + + filament_ids = [] + filament_colors = [] + + for extruder in CuraApplication.getInstance().getExtruderManager().getUsedExtruderStacks(): + filament_ids.append(extruder.getValue("extruder_nr")) + filament_colors.append(self._writer._getMaterialColor(extruder)) + + plate_desc["filament_ids"] = filament_ids + plate_desc["filament_colors"] = filament_colors + plate_desc["first_extruder"] = CuraApplication.getInstance().getExtruderManager().getInitialExtruderNr() + plate_desc["is_seq_print"] = Application.getInstance().getGlobalContainerStack().getValue("print_sequence") == "one_at_a_time" + plate_desc["nozzle_diameter"] = CuraApplication.getInstance().getExtruderManager().getActiveExtruderStack().getValue("machine_nozzle_size") + plate_desc["version"] = 2 + + file = zipfile.ZipInfo(PLATE_DESC_PATH) + file.compress_type = zipfile.ZIP_DEFLATED + archive.writestr(file, json.dumps(plate_desc).encode("UTF-8")) + + def _storeSliceInfo(self, archive: zipfile.ZipFile): + """Store slice information in the archive.""" + config = ET.Element("config") + + header = ET.SubElement(config, "header") + ET.SubElement(header, "header_item", key="X-BBL-Client-Type", value="slicer") + ET.SubElement(header, "header_item", key="X-BBL-Client-Version", value="02.00.01.50") + + plate = ET.SubElement(config, "plate") + ET.SubElement(plate, "metadata", key="index", value="1") + ET.SubElement(plate, + "metadata", + key="nozzle_diameters", + value=str(CuraApplication.getInstance().getExtruderManager().getActiveExtruderStack().getValue("machine_nozzle_size"))) + + print_information = CuraApplication.getInstance().getPrintInformation() + for index, extruder in enumerate(Application.getInstance().getGlobalContainerStack().extruderList): + used_m = print_information.materialLengths[index] + used_g = print_information.materialWeights[index] + if used_m > 0.0 and used_g > 0.0: + ET.SubElement(plate, + "filament", + id=str(extruder.getValue("extruder_nr") + 1), + tray_info_idx="GFA00", + type=extruder.material.getMetaDataEntry("material", ""), + color=self._writer._getMaterialColor(extruder), + used_m=str(used_m), + used_g=str(used_g)) + + self._writer._storeElementTree(archive, SLICE_INFO_PATH, config) + + def _storeProjectSettings(self, archive: zipfile.ZipFile): + api = CuraApplication.getInstance().getCuraAPI() + file = zipfile.ZipInfo(PROJECT_SETTINGS_PATH) + json_string = json.dumps(api.interface.settings.getAllGlobalSettings(), separators=(", ", ": "), indent=4) + archive.writestr(file, json_string.encode("UTF-8")) \ No newline at end of file diff --git a/plugins/3MFWriter/Cura3mfVariant.py b/plugins/3MFWriter/Cura3mfVariant.py new file mode 100644 index 0000000000..3ae766e651 --- /dev/null +++ b/plugins/3MFWriter/Cura3mfVariant.py @@ -0,0 +1,33 @@ +# Copyright (c) 2025 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import xml.etree.ElementTree as ET +import zipfile + +from PyQt6.QtCore import QBuffer +from PyQt6.QtGui import QImage + +from .ThreeMFVariant import ThreeMFVariant + +# Standard 3MF paths +METADATA_PATH = "Metadata" +THUMBNAIL_PATH = f"{METADATA_PATH}/thumbnail.png" + +class Cura3mfVariant(ThreeMFVariant): + """Default implementation of the 3MF format.""" + + @property + def mime_type(self) -> str: + return "application/vnd.ms-package.3dmanufacturing-3dmodel+xml" + + def process_thumbnail(self, snapshot: QImage, thumbnail_buffer: QBuffer, + archive: zipfile.ZipFile, relations_element: ET.Element) -> None: + """Process the thumbnail for default 3MF variant.""" + thumbnail_file = zipfile.ZipInfo(THUMBNAIL_PATH) + # Don't try to compress snapshot file, because the PNG is pretty much as compact as it will get + archive.writestr(thumbnail_file, thumbnail_buffer.data()) + + # Add thumbnail relation to _rels/.rels file + ET.SubElement(relations_element, "Relationship", + Target="/" + THUMBNAIL_PATH, Id="rel1", + Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") diff --git a/plugins/3MFWriter/ThreeMFVariant.py b/plugins/3MFWriter/ThreeMFVariant.py new file mode 100644 index 0000000000..d8f4e31770 --- /dev/null +++ b/plugins/3MFWriter/ThreeMFVariant.py @@ -0,0 +1,74 @@ +# Copyright (c) 2025 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from abc import ABC, abstractmethod +from typing import TYPE_CHECKING +import xml.etree.ElementTree as ET +import zipfile + +from PyQt6.QtGui import QImage +from PyQt6.QtCore import QBuffer + +if TYPE_CHECKING: + from .ThreeMFWriter import ThreeMFWriter + +class ThreeMFVariant(ABC): + """Base class for 3MF format variants. + + Different vendors may have their own extensions to the 3MF format, + such as BambuLab's 3MF variant. This class provides an interface + for implementing these variants. + """ + + def __init__(self, writer: 'ThreeMFWriter'): + """ + :param writer: The ThreeMFWriter instance that will use this variant + """ + self._writer = writer + + @property + @abstractmethod + def mime_type(self) -> str: + """The MIME type for this 3MF variant.""" + pass + + def handles_mime_type(self, mime_type: str) -> bool: + """Check if this variant handles the given MIME type. + + :param mime_type: The MIME type to check + :return: True if this variant handles the MIME type, False otherwise + """ + return mime_type == self.mime_type + + def prepare_content_types(self, content_types: ET.Element) -> None: + """Prepare the content types XML element for this variant. + + :param content_types: The content types XML element + """ + pass + + def prepare_relations(self, relations_element: ET.Element) -> None: + """Prepare the relations XML element for this variant. + + :param relations_element: The relations XML element + """ + pass + + def process_thumbnail(self, snapshot: QImage, thumbnail_buffer: QBuffer, + archive: zipfile.ZipFile, relations_element: ET.Element) -> None: + """Process the thumbnail for this variant. + + :param snapshot: The snapshot image + :param thumbnail_buffer: Buffer containing the thumbnail data + :param archive: The zip archive to write to + :param relations_element: The relations XML element + """ + pass + + def add_extra_files(self, archive: zipfile.ZipFile, metadata_relations_element: ET.Element) -> None: + """Add any extra files required by this variant to the archive. + + :param archive: The zip archive to write to + :param metadata_relations_element: The metadata relations XML element + """ + pass diff --git a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py index 2536f5dacb..1b24e59309 100644 --- a/plugins/3MFWriter/ThreeMFWorkspaceWriter.py +++ b/plugins/3MFWriter/ThreeMFWorkspaceWriter.py @@ -8,9 +8,12 @@ from io import StringIO from threading import Lock import zipfile from typing import Dict, Any +from pathlib import Path +from zipfile import ZipFile from UM.Application import Application from UM.Logger import Logger +from UM.PluginRegistry import PluginRegistry from UM.Preferences import Preferences from UM.Settings.ContainerRegistry import ContainerRegistry from UM.Workspace.WorkspaceWriter import WorkspaceWriter @@ -33,7 +36,7 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): if self._ucp_model != model: self._ucp_model = model - def _write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): + def _write(self, stream, nodes, mode, include_log): application = Application.getInstance() machine_manager = application.getMachineManager() @@ -79,6 +82,11 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): if self._ucp_model is not None: user_settings_data = self._getUserSettings(self._ucp_model) ThreeMFWriter._storeMetadataJson(user_settings_data, archive, USER_SETTINGS_PATH) + + # Write log file + if include_log: + ThreeMFWorkspaceWriter._writeLogFile(archive) + except PermissionError: self.setInformation(catalog.i18nc("@error:zip", "No permission to write the workspace here.")) Logger.error("No permission to write workspace to this stream.") @@ -125,8 +133,8 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): return True - def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode): - success = self._write(stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode) + def write(self, stream, nodes, mode=WorkspaceWriter.OutputMode.BinaryMode, **kwargs): + success = self._write(stream, nodes, WorkspaceWriter.OutputMode.BinaryMode, kwargs.get("include_log", False)) self._ucp_model = None return success @@ -191,6 +199,17 @@ class ThreeMFWorkspaceWriter(WorkspaceWriter): Logger.error("File became inaccessible while writing to it: {archive_filename}".format(archive_filename = archive.fp.name)) return + @staticmethod + def _writeLogFile(archive: ZipFile) -> None: + """Helper function that writes the Cura log file to the archive. + + :param archive: The archive to write to. + """ + file_logger = PluginRegistry.getInstance().getPluginObject("FileLogger") + file_logger.flush() + for file_path in file_logger.getFilesPaths(): + archive.write(file_path, arcname=f"log/{Path(file_path).name}") + @staticmethod def _getUserSettings(model: SettingsExportModel) -> Dict[str, Dict[str, Any]]: user_settings = {} diff --git a/plugins/3MFWriter/ThreeMFWriter.py b/plugins/3MFWriter/ThreeMFWriter.py index 5a9fa487fc..558b36576f 100644 --- a/plugins/3MFWriter/ThreeMFWriter.py +++ b/plugins/3MFWriter/ThreeMFWriter.py @@ -1,11 +1,13 @@ -# Copyright (c) 2015-2022 Ultimaker B.V. +# Copyright (c) 2015-2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. + import json import re import threading -from typing import Optional, cast, List, Dict, Pattern, Set +from typing import Optional, cast, List, Dict, Set +from UM.PluginRegistry import PluginRegistry from UM.Mesh.MeshWriter import MeshWriter from UM.Math.Vector import Vector from UM.Logger import Logger @@ -19,7 +21,9 @@ from UM.Settings.ContainerRegistry import ContainerRegistry from cura.CuraApplication import CuraApplication from cura.CuraPackageManager import CuraPackageManager +from cura.Machines.Models.ExtrudersModel import ExtrudersModel from cura.Settings import CuraContainerStack +from cura.Settings.ExtruderStack import ExtruderStack from cura.Utils.Threading import call_on_qt_thread from cura.Scene.CuraSceneNode import CuraSceneNode from cura.Snapshot import Snapshot @@ -45,11 +49,13 @@ import UM.Application from .SettingsExportModel import SettingsExportModel from .SettingsExportGroup import SettingsExportGroup +from .ThreeMFVariant import ThreeMFVariant +from .Cura3mfVariant import Cura3mfVariant +from .BambuLabVariant import BambuLabVariant from UM.i18n import i18nCatalog catalog = i18nCatalog("cura") -THUMBNAIL_PATH = "Metadata/thumbnail.png" MODEL_PATH = "3D/3dmodel.model" PACKAGE_METADATA_PATH = "Cura/packages.json" @@ -68,6 +74,12 @@ class ThreeMFWriter(MeshWriter): self._store_archive = False self._lock = threading.Lock() + # Register available variants + self._variants = { + Cura3mfVariant(self).mime_type: Cura3mfVariant, + BambuLabVariant(self).mime_type: BambuLabVariant + } + @staticmethod def _convertMatrixToString(matrix): result = "" @@ -114,22 +126,24 @@ class ThreeMFWriter(MeshWriter): mesh_data = um_node.getMeshData() + node_matrix = um_node.getLocalTransformation() + node_matrix.preMultiply(transformation) + if center_mesh: - node_matrix = Matrix() + center_matrix = Matrix() # compensate for original center position, if object(s) is/are not around its zero position if mesh_data is not None: extents = mesh_data.getExtents() if extents is not None: # We use a different coordinate space while writing, so flip Z and Y - center_vector = Vector(extents.center.x, extents.center.y, extents.center.z) - node_matrix.setByTranslation(center_vector) - node_matrix.multiply(um_node.getLocalTransformation()) - else: - node_matrix = um_node.getLocalTransformation() + center_vector = Vector(-extents.center.x, -extents.center.y, -extents.center.z) + center_matrix.setByTranslation(center_vector) + node_matrix.preMultiply(center_matrix) - matrix_string = ThreeMFWriter._convertMatrixToString(node_matrix.preMultiply(transformation)) + matrix_string = ThreeMFWriter._convertMatrixToString(node_matrix) savitar_node.setTransformation(matrix_string) + if mesh_data is not None: savitar_node.getMeshData().setVerticesFromBytes(mesh_data.getVerticesAsByteArray()) indices_array = mesh_data.getIndicesAsByteArray() @@ -199,26 +213,48 @@ class ThreeMFWriter(MeshWriter): painter.end() - def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_settings_model = None) -> bool: + def _getVariant(self, mime_type: str) -> ThreeMFVariant: + """Get the appropriate variant for the given MIME type. + + :param mime_type: The MIME type to get the variant for + :return: An instance of the variant for the given MIME type + """ + variant_class = self._variants.get(mime_type, Cura3mfVariant) + return variant_class(self) + + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, export_settings_model = None, **kwargs) -> bool: self._archive = None # Reset archive archive = zipfile.ZipFile(stream, "w", compression = zipfile.ZIP_DEFLATED) + + # Determine which variant to use based on mime type in kwargs + mime_type = kwargs.get("mime_type", Cura3mfVariant(self).mime_type) + variant = self._getVariant(mime_type) + try: model_file = zipfile.ZipInfo(MODEL_PATH) # Because zipfile is stupid and ignores archive-level compression settings when writing with ZipInfo. model_file.compress_type = zipfile.ZIP_DEFLATED # Create content types file - content_types_file = zipfile.ZipInfo("[Content_Types].xml") - content_types_file.compress_type = zipfile.ZIP_DEFLATED content_types = ET.Element("Types", xmlns = self._namespaces["content-types"]) rels_type = ET.SubElement(content_types, "Default", Extension = "rels", ContentType = "application/vnd.openxmlformats-package.relationships+xml") model_type = ET.SubElement(content_types, "Default", Extension = "model", ContentType = "application/vnd.ms-package.3dmanufacturing-3dmodel+xml") # Create _rels/.rels file - relations_file = zipfile.ZipInfo("_rels/.rels") - relations_file.compress_type = zipfile.ZIP_DEFLATED - relations_element = ET.Element("Relationships", xmlns = self._namespaces["relationships"]) - model_relation_element = ET.SubElement(relations_element, "Relationship", Target = "/" + MODEL_PATH, Id = "rel0", Type = "http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") + relations_element = self._makeRelationsTree() + model_relation_element = ET.SubElement(relations_element, "Relationship", Target="/" + MODEL_PATH, + Id="rel0", + Type="http://schemas.microsoft.com/3dmanufacturing/2013/01/3dmodel") + + # Create Metadata/_rels/model_settings.config.rels + metadata_relations_element = self._makeRelationsTree() + + # Let the variant add its specific files + variant.add_extra_files(archive, metadata_relations_element) + + # Let the variant prepare content types and relations + variant.prepare_content_types(content_types) + variant.prepare_relations(relations_element) # Attempt to add a thumbnail snapshot = self._createSnapshot() @@ -231,16 +267,11 @@ class ThreeMFWriter(MeshWriter): thumbnail_buffer.open(QBuffer.OpenModeFlag.ReadWrite) snapshot.save(thumbnail_buffer, "PNG") - thumbnail_file = zipfile.ZipInfo(THUMBNAIL_PATH) - # Don't try to compress snapshot file, because the PNG is pretty much as compact as it will get - archive.writestr(thumbnail_file, thumbnail_buffer.data()) - # Add PNG to content types file thumbnail_type = ET.SubElement(content_types, "Default", Extension="png", ContentType="image/png") - # Add thumbnail relation to _rels/.rels file - thumbnail_relation_element = ET.SubElement(relations_element, "Relationship", - Target="/" + THUMBNAIL_PATH, Id="rel1", - Type="http://schemas.openxmlformats.org/package/2006/relationships/metadata/thumbnail") + + # Let the variant process the thumbnail + variant.process_thumbnail(snapshot, thumbnail_buffer, archive, relations_element) # Write material metadata packages_metadata = self._getMaterialPackageMetadata() + self._getPluginPackageMetadata() @@ -303,8 +334,10 @@ class ThreeMFWriter(MeshWriter): scene_string = parser.sceneToString(savitar_scene) archive.writestr(model_file, scene_string) - archive.writestr(content_types_file, b' \n' + ET.tostring(content_types)) - archive.writestr(relations_file, b' \n' + ET.tostring(relations_element)) + self._storeElementTree(archive, "[Content_Types].xml", content_types) + self._storeElementTree(archive, "_rels/.rels", relations_element) + if len(metadata_relations_element) > 0: + self._storeElementTree(archive, "Metadata/_rels/model_settings.config.rels", metadata_relations_element) except Exception as error: Logger.logException("e", "Error writing zip file") self.setInformation(str(error)) @@ -317,6 +350,25 @@ class ThreeMFWriter(MeshWriter): return True + @staticmethod + def _storeElementTree(archive: zipfile.ZipFile, file_path: str, root_element: ET.Element): + file = zipfile.ZipInfo(file_path) + file.compress_type = zipfile.ZIP_DEFLATED + archive.writestr(file, b' \n' + ET.tostring(root_element)) + + def _makeRelationsTree(self): + return ET.Element("Relationships", xmlns=self._namespaces["relationships"]) + + @staticmethod + def _getMaterialColor(extruder: "ExtruderStack") -> str: + position = int(extruder.getMetaDataEntry("position", default="0")) + try: + default_color = ExtrudersModel.defaultColors[position] + except IndexError: + default_color = "#e0e000" + color_code = extruder.material.getMetaDataEntry("color_code", default=default_color) + return color_code.upper() + @staticmethod def _storeMetadataJson(metadata: Dict[str, List[Dict[str, str]]], archive: zipfile.ZipFile, path: str) -> None: """Stores metadata inside archive path as json file""" diff --git a/plugins/3MFWriter/__init__.py b/plugins/3MFWriter/__init__.py index 980aefdf85..5d8a2e4d20 100644 --- a/plugins/3MFWriter/__init__.py +++ b/plugins/3MFWriter/__init__.py @@ -28,11 +28,17 @@ def getMetaData(): metaData["mesh_writer"] = { "output": [ { - "extension": "3mf", + "extension": workspace_extension, "description": i18n_catalog.i18nc("@item:inlistbox", "3MF file"), "mime_type": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", "mode": ThreeMFWriter.ThreeMFWriter.OutputMode.BinaryMode }, + { + "extension": f"gcode.{workspace_extension}", + "description": i18n_catalog.i18nc("@item:inlistbox", "BambuLab 3MF file"), + "mime_type": "application/vnd.bambulab-package.3dmanufacturing-3dmodel+xml", + "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode + } ] } metaData["workspace_writer"] = { @@ -44,7 +50,7 @@ def getMetaData(): "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode }, { - "extension": "3mf", + "extension": workspace_extension, "description": i18n_catalog.i18nc("@item:inlistbox", "Universal Cura Project"), "mime_type": "application/x-ucp", "mode": ThreeMFWorkspaceWriter.ThreeMFWorkspaceWriter.OutputMode.BinaryMode diff --git a/plugins/CuraDrive/src/CreateBackupJob.py b/plugins/CuraDrive/src/CreateBackupJob.py index 7d772769ed..4820f886ab 100644 --- a/plugins/CuraDrive/src/CreateBackupJob.py +++ b/plugins/CuraDrive/src/CreateBackupJob.py @@ -1,4 +1,4 @@ -# Copyright (c) 2020 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. import json import threading @@ -13,11 +13,14 @@ from UM.Message import Message from UM.TaskManagement.HttpRequestManager import HttpRequestManager from UM.TaskManagement.HttpRequestScope import JsonDecoratorScope from UM.i18n import i18nCatalog +from cura.ApplicationMetadata import CuraSDKVersion from cura.CuraApplication import CuraApplication from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope +import cura.UltimakerCloud.UltimakerCloudConstants as UltimakerCloudConstants catalog = i18nCatalog("cura") +PACKAGES_URL = f"{UltimakerCloudConstants.CuraCloudAPIRoot}/cura-packages/v{UltimakerCloudConstants.CuraCloudAPIVersion}/cura/v{CuraSDKVersion}/packages" class CreateBackupJob(Job): """Creates backup zip, requests upload url and uploads the backup file to cloud storage.""" @@ -40,23 +43,54 @@ class CreateBackupJob(Job): self._job_done = threading.Event() """Set when the job completes. Does not indicate success.""" self.backup_upload_error_message = "" - """After the job completes, an empty string indicates success. Othrerwise, the value is a translated message.""" + """After the job completes, an empty string indicates success. Otherwise, the value is a translated message.""" + + def _setPluginFetchErrorMessage(self, error_msg: str) -> None: + Logger.error(f"Fetching plugins for backup resulted in error: {error_msg}") + self.backup_upload_error_message = "Couldn't update currently available plugins, backup stopped." + self._upload_message.hide() + self._job_done.set() def run(self) -> None: - upload_message = Message(catalog.i18nc("@info:backup_status", "Creating your backup..."), + self._upload_message = Message(catalog.i18nc("@info:backup_status", "Fetch re-downloadable package-ids..."), title = self.MESSAGE_TITLE, progress = -1) - upload_message.show() + self._upload_message.show() + CuraApplication.getInstance().processEvents() + + if CuraApplication.getInstance().getCuraAPI().backups.shouldReinstallDownloadablePlugins(): + request_url = f"{PACKAGES_URL}?package_type=plugin" + scope = JsonDecoratorScope(UltimakerCloudScope(CuraApplication.getInstance())) + HttpRequestManager.getInstance().get( + request_url, + scope=scope, + callback=self._continueRun, + error_callback=lambda reply, error: self._setPluginFetchErrorMessage(str(error)), + ) + else: + self._continueRun() + + def _continueRun(self, reply: "QNetworkReply" = None) -> None: + if reply is not None: + response_data = HttpRequestManager.readJSON(reply) + if "data" not in response_data: + self._setPluginFetchErrorMessage(f"Missing 'data' from response. Keys in response: {response_data.keys()}") + return + available_remote_plugins = frozenset({v["package_id"] for v in response_data["data"]}) + else: + available_remote_plugins = frozenset() + + self._upload_message.setText(catalog.i18nc("@info:backup_status", "Creating your backup...")) CuraApplication.getInstance().processEvents() cura_api = CuraApplication.getInstance().getCuraAPI() - self._backup_zip, backup_meta_data = cura_api.backups.createBackup() + self._backup_zip, backup_meta_data = cura_api.backups.createBackup(available_remote_plugins) if not self._backup_zip or not backup_meta_data: self.backup_upload_error_message = catalog.i18nc("@info:backup_status", "There was an error while creating your backup.") - upload_message.hide() + self._upload_message.hide() return - upload_message.setText(catalog.i18nc("@info:backup_status", "Uploading your backup...")) + self._upload_message.setText(catalog.i18nc("@info:backup_status", "Uploading your backup...")) CuraApplication.getInstance().processEvents() # Create an upload entry for the backup. @@ -64,13 +98,18 @@ class CreateBackupJob(Job): backup_meta_data["description"] = "{}.backup.{}.cura.zip".format(timestamp, backup_meta_data["cura_release"]) self._requestUploadSlot(backup_meta_data, len(self._backup_zip)) - self._job_done.wait() + # Note: One 'process events' call wasn't enough with the changed situation somehow. + for _ in range(5000): + CuraApplication.getInstance().processEvents() + if self._job_done.wait(0.02): + break + if self.backup_upload_error_message == "": - upload_message.setText(catalog.i18nc("@info:backup_status", "Your backup has finished uploading.")) - upload_message.setProgress(None) # Hide progress bar + self._upload_message.setText(catalog.i18nc("@info:backup_status", "Your backup has finished uploading.")) + self._upload_message.setProgress(None) # Hide progress bar else: # some error occurred. This error is presented to the user by DrivePluginExtension - upload_message.hide() + self._upload_message.hide() def _requestUploadSlot(self, backup_metadata: Dict[str, Any], backup_size: int) -> None: """Request a backup upload slot from the API. @@ -83,7 +122,6 @@ class CreateBackupJob(Job): "metadata": backup_metadata } }).encode() - HttpRequestManager.getInstance().put( self._api_backup_url, data = payload, diff --git a/plugins/CuraDrive/src/RestoreBackupJob.py b/plugins/CuraDrive/src/RestoreBackupJob.py index 54c94b389e..503b39547a 100644 --- a/plugins/CuraDrive/src/RestoreBackupJob.py +++ b/plugins/CuraDrive/src/RestoreBackupJob.py @@ -1,8 +1,9 @@ -# Copyright (c) 2021 Ultimaker B.V. +# Copyright (c) 2025 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. - import base64 import hashlib +import json +import os import threading from tempfile import NamedTemporaryFile from typing import Optional, Any, Dict @@ -12,9 +13,16 @@ from PyQt6.QtNetwork import QNetworkReply, QNetworkRequest from UM.Job import Job from UM.Logger import Logger from UM.PackageManager import catalog +from UM.Resources import Resources from UM.TaskManagement.HttpRequestManager import HttpRequestManager -from cura.CuraApplication import CuraApplication +from UM.Version import Version +from cura.ApplicationMetadata import CuraSDKVersion +from cura.CuraApplication import CuraApplication +from cura.UltimakerCloud.UltimakerCloudScope import UltimakerCloudScope +import cura.UltimakerCloud.UltimakerCloudConstants as UltimakerCloudConstants + +PACKAGES_URL_TEMPLATE = f"{UltimakerCloudConstants.CuraCloudAPIRoot}/cura-packages/v{UltimakerCloudConstants.CuraCloudAPIVersion}/cura/v{{0}}/packages/{{1}}/download" class RestoreBackupJob(Job): """Downloads a backup and overwrites local configuration with the backup. @@ -38,7 +46,6 @@ class RestoreBackupJob(Job): self.restore_backup_error_message = "" def run(self) -> None: - url = self._backup.get("download_url") assert url is not None @@ -48,7 +55,11 @@ class RestoreBackupJob(Job): error_callback = self._onRestoreRequestCompleted ) - self._job_done.wait() # A job is considered finished when the run function completes + # Note: Just to be sure, use the same structure here as in CreateBackupJob. + for _ in range(5000): + CuraApplication.getInstance().processEvents() + if self._job_done.wait(0.02): + break def _onRestoreRequestCompleted(self, reply: QNetworkReply, error: Optional["QNetworkReply.NetworkError"] = None) -> None: if not HttpRequestManager.replyIndicatesSuccess(reply, error): @@ -60,8 +71,8 @@ class RestoreBackupJob(Job): # We store the file in a temporary path fist to ensure integrity. try: - temporary_backup_file = NamedTemporaryFile(delete = False) - with open(temporary_backup_file.name, "wb") as write_backup: + self._temporary_backup_file = NamedTemporaryFile(delete_on_close = False) + with open(self._temporary_backup_file.name, "wb") as write_backup: app = CuraApplication.getInstance() bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) while bytes_read: @@ -69,23 +80,98 @@ class RestoreBackupJob(Job): bytes_read = reply.read(self.DISK_WRITE_BUFFER_SIZE) app.processEvents() except EnvironmentError as e: - Logger.log("e", f"Unable to save backed up files due to computer limitations: {str(e)}") + Logger.error(f"Unable to save backed up files due to computer limitations: {str(e)}") self.restore_backup_error_message = self.DEFAULT_ERROR_MESSAGE self._job_done.set() return - if not self._verifyMd5Hash(temporary_backup_file.name, self._backup.get("md5_hash", "")): + if not self._verifyMd5Hash(self._temporary_backup_file.name, self._backup.get("md5_hash", "")): # Don't restore the backup if the MD5 hashes do not match. # This can happen if the download was interrupted. - Logger.log("w", "Remote and local MD5 hashes do not match, not restoring backup.") + Logger.error("Remote and local MD5 hashes do not match, not restoring backup.") self.restore_backup_error_message = self.DEFAULT_ERROR_MESSAGE + self._job_done.set() + return # Tell Cura to place the backup back in the user data folder. - with open(temporary_backup_file.name, "rb") as read_backup: + metadata = self._backup.get("metadata", {}) + with open(self._temporary_backup_file.name, "rb") as read_backup: cura_api = CuraApplication.getInstance().getCuraAPI() - cura_api.backups.restoreBackup(read_backup.read(), self._backup.get("metadata", {})) + cura_api.backups.restoreBackup(read_backup.read(), metadata, auto_close=False) - self._job_done.set() + # Read packages data-file, to get the 'to_install' plugin-ids. + version_to_restore = Version(metadata.get("cura_release", "dev")) + version_str = f"{version_to_restore.getMajor()}.{version_to_restore.getMinor()}" + packages_path = os.path.abspath(os.path.join(os.path.abspath( + Resources.getConfigStoragePath()), "..", version_str, "packages.json")) + if not os.path.exists(packages_path): + Logger.error(f"Can't find path '{packages_path}' to tell what packages should be redownloaded.") + self.restore_backup_error_message = self.DEFAULT_ERROR_MESSAGE + self._job_done.set() + return + + to_install = {} + try: + with open(packages_path, "r") as packages_file: + packages_json = json.load(packages_file) + if "to_install" in packages_json: + for package_data in packages_json["to_install"].values(): + if "package_info" not in package_data: + continue + package_info = package_data["package_info"] + if "package_id" in package_info and "sdk_version_semver" in package_info: + to_install[package_info["package_id"]] = package_info["sdk_version_semver"] + except IOError as ex: + Logger.error(f"Couldn't open '{packages_path}' because '{str(ex)}' to get packages to re-install.") + self.restore_backup_error_message = self.DEFAULT_ERROR_MESSAGE + self._job_done.set() + return + + if len(to_install) < 1: + Logger.info("No packages to reinstall, early out.") + self._job_done.set() + return + + # Download all re-installable plugins packages, so they can be put back on start-up. + redownload_errors = [] + def packageDownloadCallback(package_id: str, msg: "QNetworkReply", err: "QNetworkReply.NetworkError" = None) -> None: + if err is not None or HttpRequestManager.safeHttpStatus(msg) != 200: + redownload_errors.append(err) + del to_install[package_id] + + try: + with NamedTemporaryFile(mode="wb", suffix=".curapackage", delete=False) as temp_file: + bytes_read = msg.read(self.DISK_WRITE_BUFFER_SIZE) + while bytes_read: + temp_file.write(bytes_read) + bytes_read = msg.read(self.DISK_WRITE_BUFFER_SIZE) + CuraApplication.getInstance().processEvents() + temp_file.close() + if not CuraApplication.getInstance().getPackageManager().installPackage(temp_file.name): + redownload_errors.append(f"Couldn't install package '{package_id}'.") + except IOError as ex: + redownload_errors.append(f"Couldn't process package '{package_id}' because '{ex}'.") + + if len(to_install) < 1: + if len(redownload_errors) == 0: + Logger.info("All packages redownloaded!") + self._job_done.set() + else: + msgs = "\n - ".join(redownload_errors) + Logger.error(f"Couldn't re-install at least one package(s) because: {msgs}") + self.restore_backup_error_message = self.DEFAULT_ERROR_MESSAGE + self._job_done.set() + + self._package_download_scope = UltimakerCloudScope(CuraApplication.getInstance()) + for package_id, package_api_version in to_install.items(): + def handlePackageId(package_id: str = package_id): + HttpRequestManager.getInstance().get( + PACKAGES_URL_TEMPLATE.format(package_api_version, package_id), + scope=self._package_download_scope, + callback=lambda msg: packageDownloadCallback(package_id, msg), + error_callback=lambda msg, err: packageDownloadCallback(package_id, msg, err) + ) + handlePackageId(package_id) @staticmethod def _verifyMd5Hash(file_path: str, known_hash: str) -> bool: diff --git a/plugins/CuraEngineBackend/CuraEngineBackend.py b/plugins/CuraEngineBackend/CuraEngineBackend.py index dd7987bc42..e3e15f5381 100755 --- a/plugins/CuraEngineBackend/CuraEngineBackend.py +++ b/plugins/CuraEngineBackend/CuraEngineBackend.py @@ -68,6 +68,9 @@ class CuraEngineBackend(QObject, Backend): """ super().__init__() + self._init_done = False + self._immediate_slice_after_init = False + # Find out where the engine is located, and how it is called. # This depends on how Cura is packaged and which OS we are running on. executable_name = "CuraEngine" @@ -197,7 +200,8 @@ class CuraEngineBackend(QObject, Backend): self._slicing_error_message.actionTriggered.connect(self._reportBackendError) self._resetLastSliceTimeStats() - self._snapshot: Optional[QImage] = None + self._snapshot: Optional[QImage] = None + self._last_socket_error: Optional[Arcus.Error] = None application.initializationFinished.connect(self.initialize) @@ -267,6 +271,10 @@ class CuraEngineBackend(QObject, Backend): self._machine_error_checker = application.getMachineErrorChecker() self._machine_error_checker.errorCheckFinished.connect(self._onStackErrorCheckFinished) + self._init_done = True + if self._immediate_slice_after_init: + self.slice() + def close(self) -> None: """Terminate the engine process. @@ -341,6 +349,11 @@ class CuraEngineBackend(QObject, Backend): def slice(self) -> None: """Perform a slice of the scene.""" + if not self._init_done: + self._immediate_slice_after_init = True + return + self._immediate_slice_after_init = False + self._createSnapshot() self.startPlugins() @@ -569,7 +582,20 @@ class CuraEngineBackend(QObject, Backend): return # Preparation completed, send it to the backend. - self._socket.sendMessage(job.getSliceMessage()) + immediate_success = self._socket.sendMessage(job.getSliceMessage()) + if (not CuraApplication.getInstance().getUseExternalBackend()) and (not immediate_success): + if self._last_socket_error is not None and self._last_socket_error.getErrorCode() == Arcus.ErrorCode.MessageTooBigError: + error_txt = catalog.i18nc("@info:status", "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances.") + else: + error_txt = catalog.i18nc("@info:status", "Unable to send the model data to the engine. Please try again, or contact support.") + + self._error_message = Message(error_txt, + title=catalog.i18nc("@info:title", "Unable to slice"), + message_type=Message.MessageType.WARNING) + self._error_message.show() + self.setState(BackendState.Error) + self.backendError.emit(job) + return # Notify the user that it's now up to the backend to do its job self.setState(BackendState.Processing) @@ -691,6 +717,7 @@ class CuraEngineBackend(QObject, Backend): if error.getErrorCode() == Arcus.ErrorCode.Debug: return + self._last_socket_error = error self._terminate() self._createSocket() diff --git a/plugins/CuraEngineBackend/StartSliceJob.py b/plugins/CuraEngineBackend/StartSliceJob.py index 9caadbdff6..b276469d09 100644 --- a/plugins/CuraEngineBackend/StartSliceJob.py +++ b/plugins/CuraEngineBackend/StartSliceJob.py @@ -49,7 +49,20 @@ class StartJobResult(IntEnum): ObjectsWithDisabledExtruder = 8 -class GcodeStartEndFormatter(Formatter): +class GcodeConditionState(IntEnum): + OutsideCondition = 1 + ConditionFalse = 2 + ConditionTrue = 3 + ConditionDone = 4 + + +class GcodeInstruction(IntEnum): + Skip = 1 + Evaluate = 2 + EvaluateAndWrite = 3 + + +class GcodeStartEndFormatter: # Formatter class that handles token expansion in start/end gcode # Example of a start/end gcode string: # ``` @@ -63,22 +76,50 @@ class GcodeStartEndFormatter(Formatter): # will be used. Alternatively, if the expression is formatted as "{[expression], [extruder_nr]}", # then the expression will be evaluated with the extruder stack of the specified extruder_nr. - _extruder_regex = re.compile(r"^\s*(?P.*)\s*,\s*(?P.*)\s*$") + _instruction_regex = re.compile(r"{(?Pif|else|elif|endif)?\s*(?P[^{}]*?)\s*(?:,\s*(?P[^{}]*))?\s*}(?P\n?)") - def __init__(self, all_extruder_settings: Dict[str, Any], default_extruder_nr: int = -1) -> None: + def __init__(self, all_extruder_settings: Dict[str, Dict[str, Any]], default_extruder_nr: int = -1) -> None: super().__init__() - self._all_extruder_settings: Dict[str, Any] = all_extruder_settings + self._all_extruder_settings: Dict[str, Dict[str, Any]] = all_extruder_settings self._default_extruder_nr: int = default_extruder_nr + self._cura_application = CuraApplication.getInstance() + self._extruder_manager = ExtruderManager.getInstance() - def get_field(self, field_name, args: [str], kwargs: dict) -> Tuple[str, str]: - # get_field method parses all fields in the format-string and parses them individually to the get_value method. - # e.g. for a string "Hello {foo.bar}" would the complete field "foo.bar" would be passed to get_field, and then - # the individual parts "foo" and "bar" would be passed to get_value. This poses a problem for us, because want - # to parse the entire field as a single expression. To solve this, we override the get_field method and return - # the entire field as the expression. - return self.get_value(field_name, args, kwargs), field_name + def format(self, text: str) -> str: + remaining_text: str = text + result: str = "" - def get_value(self, expression: str, args: [str], kwargs: dict) -> str: + self._condition_state: GcodeConditionState = GcodeConditionState.OutsideCondition + + while len(remaining_text) > 0: + next_code_match = self._instruction_regex.search(remaining_text) + if next_code_match is not None: + expression_start, expression_end = next_code_match.span() + + if expression_start > 0: + result += self._process_statement(remaining_text[:expression_start]) + + result += self._process_code(next_code_match) + + remaining_text = remaining_text[expression_end:] + + else: + result += self._process_statement(remaining_text) + remaining_text = "" + + return result + + def _process_statement(self, statement: str) -> str: + if self._condition_state in [GcodeConditionState.OutsideCondition, GcodeConditionState.ConditionTrue]: + return statement + else: + return "" + + def _process_code(self, code: re.Match) -> str: + condition: Optional[str] = code.group("condition") + expression: Optional[str] = code.group("expression") + extruder_nr_expr: Optional[str] = code.group("extruder_nr_expr") + end_of_line: Optional[str] = code.group("end_of_line") # The following variables are not settings, but only become available after slicing. # when these variables are encountered, we return them as-is. They are replaced later @@ -87,53 +128,100 @@ class GcodeStartEndFormatter(Formatter): if expression in post_slice_data_variables: return f"{{{expression}}}" - extruder_nr = str(self._default_extruder_nr) + extruder_nr: str = str(self._default_extruder_nr) + instruction: GcodeInstruction = GcodeInstruction.Skip # The settings may specify a specific extruder to use. This is done by # formatting the expression as "{expression}, {extruder_nr_expr}". If the # expression is formatted like this, we extract the extruder_nr and use # it to get the value from the correct extruder stack. - match = self._extruder_regex.match(expression) - if match: - expression = match.group("expression") - extruder_nr_expr = match.group("extruder_nr_expr") - - if extruder_nr_expr.isdigit(): - extruder_nr = extruder_nr_expr + if condition is None: + # This is a classic statement + if self._condition_state in [GcodeConditionState.OutsideCondition, GcodeConditionState.ConditionTrue]: + # Skip and move to next + instruction = GcodeInstruction.EvaluateAndWrite + else: + # This is a condition statement, first check validity + if condition == "if": + if self._condition_state != GcodeConditionState.OutsideCondition: + raise SyntaxError("Nested conditions are not supported") else: - # We get the value of the extruder_nr_expr from `_all_extruder_settings` dictionary - # rather than the global container stack. The `_all_extruder_settings["-1"]` is a - # dict-representation of the global container stack, with additional properties such - # as `initial_extruder_nr`. As users may enter such expressions we can't use the - # global container stack. - extruder_nr = str(self._all_extruder_settings["-1"].get(extruder_nr_expr, "-1")) + if self._condition_state == GcodeConditionState.OutsideCondition: + raise SyntaxError("Condition should start with an 'if' statement") - if extruder_nr in self._all_extruder_settings: - additional_variables = self._all_extruder_settings[extruder_nr].copy() - else: - Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") - additional_variables = self._all_extruder_settings["-1"].copy() + if condition == "if": + # First instruction, just evaluate it + instruction = GcodeInstruction.Evaluate - # Add the arguments and keyword arguments to the additional settings. These - # are currently _not_ used, but they are added for consistency with the - # base Formatter class. - for key, value in enumerate(args): - additional_variables[key] = value - for key, value in kwargs.items(): - additional_variables[key] = value + else: + if self._condition_state == GcodeConditionState.ConditionTrue: + # We have reached the next condition after a valid one has been found, skip the rest + self._condition_state = GcodeConditionState.ConditionDone - if extruder_nr == "-1": - container_stack = CuraApplication.getInstance().getGlobalContainerStack() - else: - container_stack = ExtruderManager.getInstance().getExtruderStack(extruder_nr) - if not container_stack: + if condition == "elif": + if self._condition_state == GcodeConditionState.ConditionFalse: + # New instruction, and valid condition has not been reached so far => evaluate it + instruction = GcodeInstruction.Evaluate + else: + # New instruction, but valid condition has already been reached => skip it + instruction = GcodeInstruction.Skip + + elif condition == "else": + instruction = GcodeInstruction.Skip # Never evaluate, expression should be empty + if self._condition_state == GcodeConditionState.ConditionFalse: + # Fallback instruction, and valid condition has not been reached so far => active next + self._condition_state = GcodeConditionState.ConditionTrue + + elif condition == "endif": + instruction = GcodeInstruction.Skip # Never evaluate, expression should be empty + self._condition_state = GcodeConditionState.OutsideCondition + + if instruction >= GcodeInstruction.Evaluate and extruder_nr_expr is not None: + extruder_nr_function = SettingFunction(extruder_nr_expr) + container_stack = self._cura_application.getGlobalContainerStack() + + # We add the variables contained in `_all_extruder_settings["-1"]`, which is a dict-representation of the + # global container stack, with additional properties such as `initial_extruder_nr`. As users may enter such + # expressions we can't use the global container stack. The variables contained in the global container stack + # will then be inserted twice, which is not optimal but works well. + extruder_nr = str(extruder_nr_function(container_stack, additional_variables=self._all_extruder_settings["-1"])) + + if instruction >= GcodeInstruction.Evaluate: + if extruder_nr in self._all_extruder_settings: + additional_variables = self._all_extruder_settings[extruder_nr].copy() + else: Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") - container_stack = CuraApplication.getInstance().getGlobalContainerStack() + additional_variables = self._all_extruder_settings["-1"].copy() - setting_function = SettingFunction(expression) - value = setting_function(container_stack, additional_variables=additional_variables) + if extruder_nr == "-1": + container_stack = self._cura_application.getGlobalContainerStack() + else: + container_stack = self._extruder_manager.getExtruderStack(extruder_nr) + if not container_stack: + Logger.warning(f"Extruder {extruder_nr} does not exist, using global settings") + container_stack = self._cura_application.getGlobalContainerStack() - return value + setting_function = SettingFunction(expression) + value = setting_function(container_stack, additional_variables=additional_variables) + + if instruction == GcodeInstruction.Evaluate: + if value: + self._condition_state = GcodeConditionState.ConditionTrue + else: + self._condition_state = GcodeConditionState.ConditionFalse + + return "" + else: + value_str = str(value) + + if end_of_line is not None: + # If we are evaluating an expression that is not a condition, restore the end of line + value_str += end_of_line + + return value_str + + else: + return "" class StartSliceJob(Job): @@ -366,7 +454,12 @@ class StartSliceJob(Job): for extruder_stack in global_stack.extruderList: self._buildExtruderMessage(extruder_stack) - for plugin in CuraApplication.getInstance().getBackendPlugins(): + backend_plugins = CuraApplication.getInstance().getBackendPlugins() + + # Sort backend plugins by name. Not a very good strategy, but at least it is repeatable. This will be improved later. + backend_plugins = sorted(backend_plugins, key=lambda backend_plugin: backend_plugin.getId()) + + for plugin in backend_plugins: if not plugin.usePlugin(): continue for slot in plugin.getSupportedSlots(): @@ -465,6 +558,9 @@ class StartSliceJob(Job): result["day"] = ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"][int(time.strftime("%w"))] result["initial_extruder_nr"] = CuraApplication.getInstance().getExtruderManager().getInitialExtruderNr() + # If adding or changing a setting here, please update the associated wiki page + # https://github.com/Ultimaker/Cura/wiki/Start-End-G%E2%80%90Code + return result def _cacheAllExtruderSettings(self): @@ -518,6 +614,7 @@ class StartSliceJob(Job): # Replace the setting tokens in start and end g-code. extruder_nr = stack.getProperty("extruder_nr", "value") + settings["machine_extruder_prestart_code"] = self._expandGcodeTokens(settings["machine_extruder_prestart_code"], extruder_nr) settings["machine_extruder_start_code"] = self._expandGcodeTokens(settings["machine_extruder_start_code"], extruder_nr) settings["machine_extruder_end_code"] = self._expandGcodeTokens(settings["machine_extruder_end_code"], extruder_nr) @@ -554,12 +651,16 @@ class StartSliceJob(Job): start_gcode = settings["machine_start_gcode"] # Remove all the comments from the start g-code start_gcode = re.sub(r";.+?(\n|$)", "\n", start_gcode) - bed_temperature_settings = ["material_bed_temperature", "material_bed_temperature_layer_0"] - pattern = r"\{(%s)(,\s?\w+)?\}" % "|".join(bed_temperature_settings) # match {setting} as well as {setting, extruder_nr} - settings["material_bed_temp_prepend"] = re.search(pattern, start_gcode) == None - print_temperature_settings = ["material_print_temperature", "material_print_temperature_layer_0", "default_material_print_temperature", "material_initial_print_temperature", "material_final_print_temperature", "material_standby_temperature", "print_temperature"] - pattern = r"\{(%s)(,\s?\w+)?\}" % "|".join(print_temperature_settings) # match {setting} as well as {setting, extruder_nr} - settings["material_print_temp_prepend"] = re.search(pattern, start_gcode) is None + + if settings["material_bed_temp_prepend"]: + bed_temperature_settings = ["material_bed_temperature", "material_bed_temperature_layer_0"] + pattern = r"\{(%s)(,\s?\w+)?\}" % "|".join(bed_temperature_settings) # match {setting} as well as {setting, extruder_nr} + settings["material_bed_temp_prepend"] = re.search(pattern, start_gcode) == None + + if settings["material_print_temp_prepend"]: + print_temperature_settings = ["material_print_temperature", "material_print_temperature_layer_0", "default_material_print_temperature", "material_initial_print_temperature", "material_final_print_temperature", "material_standby_temperature", "print_temperature"] + pattern = r"\{(%s)(,\s?\w+)?\}" % "|".join(print_temperature_settings) # match {setting} as well as {setting, extruder_nr} + settings["material_print_temp_prepend"] = re.search(pattern, start_gcode) is None # Replace the setting tokens in start and end g-code. # Use values from the first used extruder by default so we get the expected temperatures diff --git a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml index 0b79b77a08..99ba51a512 100644 --- a/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml +++ b/plugins/DigitalLibrary/resources/qml/SaveProjectFilesPage.qml @@ -208,7 +208,14 @@ Item anchors.rightMargin: UM.Theme.getSize("thin_margin").height enabled: UM.Backend.state == UM.Backend.Done - currentIndex: UM.Backend.state == UM.Backend.Done ? dfFilenameTextfield.text.startsWith("MM")? 1 : 0 : 2 + + // Pre-select the correct index, depending on the situation (see the model-property below): + // - Don't select any post-slice-file-format when the engine isn't done. + // - Choose either the S-series or the Makerbot-series of printers' format otherwise, depending on the active printer. + // This way, the user can just click 'save' without having to worry about wether or not the format is right. + property int isMakerbotFormat: Cura.MachineManager.activeMachine.getOutputFileFormats.includes("application/x-makerbot") || Cura.MachineManager.activeMachine.getOutputFileFormats.includes("application/x-makerbot-sketch") + property int isBackendDone: UM.Backend.state == UM.Backend.Done + currentIndex: isBackendDone ? (isMakerbotFormat ? 1 : 0) : 2 textRole: "text" valueRole: "value" diff --git a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py index c0ce594ecf..30b807753a 100644 --- a/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py +++ b/plugins/DigitalLibrary/src/DigitalFactoryApiClient.py @@ -196,7 +196,7 @@ class DigitalFactoryApiClient: url = "{}/projects/{}/files".format(self.CURA_API_ROOT, library_project_id) self._http.get(url, scope = self._scope, - callback = self._parseCallback(on_finished, DigitalFactoryFileResponse, failed), + callback = self._parseCallback(on_finished, DigitalFactoryFileResponse, failed, default_values = {'username': ''}), error_callback = failed, timeout = self.DEFAULT_REQUEST_TIMEOUT) @@ -205,7 +205,8 @@ class DigitalFactoryApiClient: Callable[[List[CloudApiClientModel]], Any]], model: Type[CloudApiClientModel], on_error: Optional[Callable] = None, - pagination_manager: Optional[PaginationManager] = None) -> Callable[[QNetworkReply], None]: + pagination_manager: Optional[PaginationManager] = None, + default_values: Dict[str, str] = None) -> Callable[[QNetworkReply], None]: """ Creates a callback function so that it includes the parsing of the response into the correct model. @@ -234,7 +235,7 @@ class DigitalFactoryApiClient: if status_code >= 300 and on_error is not None: on_error() else: - self._parseModels(response, on_finished, model, pagination_manager = pagination_manager) + self._parseModels(response, on_finished, model, pagination_manager = pagination_manager, default_values = default_values) self._anti_gc_callbacks.append(parse) return parse @@ -262,7 +263,8 @@ class DigitalFactoryApiClient: on_finished: Union[Callable[[CloudApiClientModel], Any], Callable[[List[CloudApiClientModel]], Any]], model_class: Type[CloudApiClientModel], - pagination_manager: Optional[PaginationManager] = None) -> None: + pagination_manager: Optional[PaginationManager] = None, + default_values: Dict[str, str] = None) -> None: """Parses the given models and calls the correct callback depending on the result. :param response: The response from the server, after being converted to a dict. @@ -279,7 +281,10 @@ class DigitalFactoryApiClient: if "links" in response and pagination_manager: pagination_manager.setLinks(response["links"]) if isinstance(data, list): - results = [model_class(**c) for c in data] # type: List[CloudApiClientModel] + results = [] # type: List[CloudApiClientModel] + for model_data in data: + complete_model_data = (default_values | model_data) if default_values is not None else model_data + results.append(model_class(**complete_model_data)) on_finished_list = cast(Callable[[List[CloudApiClientModel]], Any], on_finished) on_finished_list(results) else: diff --git a/plugins/GCodeGzWriter/GCodeGzWriter.py b/plugins/GCodeGzWriter/GCodeGzWriter.py index 2bbaaeb0a3..cb5b66fbdc 100644 --- a/plugins/GCodeGzWriter/GCodeGzWriter.py +++ b/plugins/GCodeGzWriter/GCodeGzWriter.py @@ -24,7 +24,7 @@ class GCodeGzWriter(MeshWriter): def __init__(self) -> None: super().__init__(add_to_recent_files = False) - def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode = MeshWriter.OutputMode.BinaryMode) -> bool: + def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode = MeshWriter.OutputMode.BinaryMode, **kwargs) -> bool: """Writes the gzipped g-code to a stream. Note that even though the function accepts a collection of nodes, the diff --git a/plugins/GCodeReader/FlavorParser.py b/plugins/GCodeReader/FlavorParser.py index 372ee83135..74dbeadec0 100644 --- a/plugins/GCodeReader/FlavorParser.py +++ b/plugins/GCodeReader/FlavorParser.py @@ -298,8 +298,14 @@ class FlavorParser: position.e.extend([0] * (self._extruder_number - len(position.e) + 1)) return position - def processMCode(self, M: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> Position: - pass + def processMCode(self, M: int, line: str, position: Position, path: List[List[Union[float, int]]]) -> None: + # Set extrusion mode + if M == 82: + # Set absolute extrusion mode + self._is_absolute_extrusion = True + elif M == 83: + # Set relative extrusion mode + self._is_absolute_extrusion = False _type_keyword = ";TYPE:" _layer_keyword = ";LAYER:" diff --git a/plugins/GCodeReader/RepRapFlavorParser.py b/plugins/GCodeReader/RepRapFlavorParser.py index 10b7b78587..1a80412238 100644 --- a/plugins/GCodeReader/RepRapFlavorParser.py +++ b/plugins/GCodeReader/RepRapFlavorParser.py @@ -11,14 +11,6 @@ class RepRapFlavorParser(FlavorParser.FlavorParser): def __init__(self): super().__init__() - def processMCode(self, M, line, position, path): - if M == 82: - # Set absolute extrusion mode - self._is_absolute_extrusion = True - elif M == 83: - # Set relative extrusion mode - self._is_absolute_extrusion = False - def _gCode90(self, position, params, path): """Set the absolute positioning diff --git a/plugins/GCodeWriter/GCodeWriter.py b/plugins/GCodeWriter/GCodeWriter.py index 9fa4f88614..0eac653b56 100644 --- a/plugins/GCodeWriter/GCodeWriter.py +++ b/plugins/GCodeWriter/GCodeWriter.py @@ -56,7 +56,7 @@ class GCodeWriter(MeshWriter): self._application = Application.getInstance() - def write(self, stream, nodes, mode = MeshWriter.OutputMode.TextMode): + def write(self, stream, nodes, mode = MeshWriter.OutputMode.TextMode, **kwargs): """Writes the g-code for the entire scene to a stream. Note that even though the function accepts a collection of nodes, the diff --git a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml index 5e1ddc2f3f..6f5bc54def 100644 --- a/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsExtruderTab.qml @@ -54,7 +54,7 @@ Item { anchors.top: parent.top anchors.left: parent.left - width: parent.width * 2 / 3 + width: parent.width / 2 spacing: base.columnSpacing @@ -139,6 +139,39 @@ Item decimals: 0 forceUpdateOnChangeFunction: forceUpdateFunction } + } + + + // ======================================= + // Right-side column "Nozzle Settings" + // ======================================= + Column + { + anchors.top: parent.top + anchors.right: parent.right + width: parent.width / 2 + + spacing: base.columnSpacing + + UM.Label // Title Label + { + text: catalog.i18nc("@title:label", " ") + font: UM.Theme.getFont("medium_bold") + } + + Cura.NumericTextFieldWithUnit + { + id: extruderChangeDurationFieldId + containerStackId: base.extruderStackId + settingKey: "machine_extruder_change_duration" + settingStoreIndex: propertyStoreIndex + labelText: catalog.i18nc("@label", "Extruder Change duration") + labelFont: base.labelFont + labelWidth: base.labelWidth + controlWidth: base.controlWidth + unitText: catalog.i18nc("@label", "s") + forceUpdateOnChangeFunction: forceUpdateFunction + } Cura.NumericTextFieldWithUnit { @@ -179,24 +212,48 @@ Item anchors.right: parent.right anchors.margins: UM.Theme.getSize("default_margin").width - Cura.GcodeTextArea // "Extruder Start G-code" + Column { anchors.top: parent.top - anchors.bottom: parent.bottom - anchors.bottomMargin: UM.Theme.getSize("default_margin").height anchors.left: parent.left - width: base.columnWidth - UM.Theme.getSize("default_margin").width + anchors.bottom: buttonLearnMore.top + anchors.bottomMargin: UM.Theme.getSize("default_margin").height + + width: parent.width / 2 - labelText: catalog.i18nc("@title:label", "Extruder Start G-code") - containerStackId: base.extruderStackId - settingKey: "machine_extruder_start_code" - settingStoreIndex: propertyStoreIndex + spacing: base.columnSpacing + + Cura.GcodeTextArea // "Extruder Prestart G-code" + { + anchors.top: parent.top + anchors.left: parent.left + height: (parent.height / 2) - UM.Theme.getSize("default_margin").height + width: base.columnWidth - UM.Theme.getSize("default_margin").width + + labelText: catalog.i18nc("@title:label", "Extruder Prestart G-code") + containerStackId: base.extruderStackId + settingKey: "machine_extruder_prestart_code" + settingStoreIndex: propertyStoreIndex + } + + Cura.GcodeTextArea // "Extruder Start G-code" + { + anchors.bottom: parent.bottom + anchors.left: parent.left + height: (parent.height / 2) - UM.Theme.getSize("default_margin").height + width: base.columnWidth - UM.Theme.getSize("default_margin").width + + labelText: catalog.i18nc("@title:label", "Extruder Start G-code") + containerStackId: base.extruderStackId + settingKey: "machine_extruder_start_code" + settingStoreIndex: propertyStoreIndex + } } Cura.GcodeTextArea // "Extruder End G-code" { anchors.top: parent.top - anchors.bottom: parent.bottom + anchors.bottom: buttonLearnMore.top anchors.bottomMargin: UM.Theme.getSize("default_margin").height anchors.right: parent.right width: base.columnWidth - UM.Theme.getSize("default_margin").width @@ -206,5 +263,17 @@ Item settingKey: "machine_extruder_end_code" settingStoreIndex: propertyStoreIndex } + + Cura.TertiaryButton + { + id: buttonLearnMore + + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://github.com/Ultimaker/Cura/wiki/Start-End-G%E2%80%90Code") + anchors.bottom: parent.bottom + anchors.right: parent.right + } } } diff --git a/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml b/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml index 740e248828..d40efbee8a 100644 --- a/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml +++ b/plugins/MachineSettingsAction/MachineSettingsPrinterTab.qml @@ -214,7 +214,7 @@ Item settingStoreIndex: propertyStoreIndex - labelText: catalog.i18nc("@label", "Y min") + labelText: catalog.i18nc("@label", "Y min ( '-' towards back)") labelFont: base.labelFont labelWidth: base.labelWidth controlWidth: base.controlWidth @@ -254,7 +254,7 @@ Item settingKey: "machine_head_with_fans_polygon" settingStoreIndex: propertyStoreIndex - labelText: catalog.i18nc("@label", "Y max") + labelText: catalog.i18nc("@label", "Y max ( '+' towards front)") labelFont: base.labelFont labelWidth: base.labelWidth controlWidth: base.controlWidth @@ -344,6 +344,21 @@ Item labelWidth: base.labelWidth forceUpdateOnChangeFunction: forceUpdateFunction } + + /* + - Allows user to toggle if Start Gcode is the absolute first gcode. + */ + Cura.SimpleCheckBox // "Make sure Start Code is before all gcodes" + { + id: applyStartGcodeFirstCheckbox + containerStackId: machineStackId + settingKey: "machine_start_gcode_first" + settingStoreIndex: propertyStoreIndex + labelText: catalog.i18nc("@label", "Start GCode must be first") + labelFont: base.labelFont + labelWidth: base.labelWidth + forceUpdateOnChangeFunction: forceUpdateFunction + } /* The "Shared Heater" feature is temporarily disabled because its @@ -376,7 +391,7 @@ Item anchors { top: upperBlock.bottom - bottom: parent.bottom + bottom: buttonLearnMore.top left: parent.left right: parent.right margins: UM.Theme.getSize("default_margin").width @@ -403,5 +418,19 @@ Item settingKey: "machine_end_gcode" settingStoreIndex: propertyStoreIndex } + + } + + Cura.TertiaryButton + { + id: buttonLearnMore + + text: catalog.i18nc("@button", "Learn more") + iconSource: UM.Theme.getIcon("LinkExternal") + isIconOnRightSide: true + onClicked: Qt.openUrlExternally("https://github.com/Ultimaker/Cura/wiki/Start-End-G%E2%80%90Code") + anchors.bottom: parent.bottom + anchors.right: parent.right + anchors.margins: UM.Theme.getSize("default_margin").width } } diff --git a/plugins/MakerbotWriter/MakerbotWriter.py b/plugins/MakerbotWriter/MakerbotWriter.py index 233575029c..30f37fe3fa 100644 --- a/plugins/MakerbotWriter/MakerbotWriter.py +++ b/plugins/MakerbotWriter/MakerbotWriter.py @@ -1,4 +1,4 @@ -# Copyright (c) 2023 UltiMaker +# Copyright (c) 2024 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. from io import StringIO, BufferedIOBase import json @@ -18,6 +18,7 @@ from UM.Scene.Iterator.DepthFirstIterator import DepthFirstIterator from UM.i18n import i18nCatalog from cura.CuraApplication import CuraApplication +from cura.PrinterOutput.FormatMaps import FormatMaps from cura.Snapshot import Snapshot from cura.Utils.Threading import call_on_qt_thread from cura.CuraVersion import ConanInstalls @@ -45,6 +46,13 @@ class MakerbotWriter(MeshWriter): suffixes=["makerbot"] ) ) + MimeTypeDatabase.addMimeType( + MimeType( + name="application/x-makerbot-replicator_plus", + comment="Makerbot Toolpath Package", + suffixes=["makerbot"] + ) + ) _PNG_FORMAT = [ {"prefix": "isometric_thumbnail", "width": 120, "height": 120}, @@ -83,7 +91,7 @@ class MakerbotWriter(MeshWriter): return None - def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter.OutputMode.BinaryMode) -> bool: + def write(self, stream: BufferedIOBase, nodes: List[SceneNode], mode=MeshWriter.OutputMode.BinaryMode, **kwargs) -> bool: metadata, file_format = self._getMeta(nodes) if mode != MeshWriter.OutputMode.BinaryMode: Logger.log("e", "MakerbotWriter does not support text mode.") @@ -111,15 +119,15 @@ class MakerbotWriter(MeshWriter): match file_format: case "application/x-makerbot-sketch": filename, filedata = "print.gcode", gcode_text_io.getvalue() - self._PNG_FORMATS = self._PNG_FORMAT case "application/x-makerbot": filename, filedata = "print.jsontoolpath", du.gcode_2_miracle_jtp(gcode_text_io.getvalue()) - self._PNG_FORMATS = self._PNG_FORMAT + self._PNG_FORMAT_METHOD + case "application/x-makerbot-replicator_plus": + filename, filedata = "print.jsontoolpath", du.gcode_2_miracle_jtp(gcode_text_io.getvalue(), nb_extruders=1) case _: raise Exception("Unsupported Mime type") png_files = [] - for png_format in self._PNG_FORMATS: + for png_format in (self._PNG_FORMAT + self._PNG_FORMAT_METHOD): width, height, prefix = png_format["width"], png_format["height"], png_format["prefix"] thumbnail_buffer = self._createThumbnail(width, height) if thumbnail_buffer is None: @@ -137,6 +145,30 @@ class MakerbotWriter(MeshWriter): for png_file in png_files: file, data = png_file["file"], png_file["data"] zip_stream.writestr(file, data) + api = CuraApplication.getInstance().getCuraAPI() + metadata_json = api.interface.settings.getSliceMetadata() + + # All the mapping stuff we have to do: + product_to_id_map = FormatMaps.getProductIdMap() + printer_name_map = FormatMaps.getInversePrinterNameMap() + extruder_type_map = FormatMaps.getInverseExtruderTypeMap() + material_map = FormatMaps.getInverseMaterialMap() + for key, value in metadata_json.items(): + if "all_settings" in value: + if "machine_name" in value["all_settings"]: + machine_name = value["all_settings"]["machine_name"] + if machine_name in product_to_id_map: + machine_name = product_to_id_map[machine_name][0] + value["all_settings"]["machine_name"] = printer_name_map.get(machine_name, machine_name) + if "machine_nozzle_id" in value["all_settings"]: + extruder_type = value["all_settings"]["machine_nozzle_id"] + value["all_settings"]["machine_nozzle_id"] = extruder_type_map.get(extruder_type, extruder_type) + if "material_type" in value["all_settings"]: + material_type = value["all_settings"]["material_type"] + value["all_settings"]["material_type"] = material_map.get(material_type, material_type) + + slice_metadata = json.dumps(metadata_json, separators=(", ", ": "), indent=4) + zip_stream.writestr("slicemetadata.json", slice_metadata) except (IOError, OSError, BadZipFile) as ex: Logger.log("e", f"Could not write to (.makerbot) file because: '{ex}'.") self.setInformation(catalog.i18nc("@error", "MakerbotWriter could not save to the designated path.")) @@ -226,12 +258,88 @@ class MakerbotWriter(MeshWriter): meta["preferences"] = dict() bounds = application.getBuildVolume().getBoundingBox() + intent = CuraApplication.getInstance().getIntentManager().currentIntentCategory meta["preferences"]["instance0"] = { - "machineBounds": [bounds.right, bounds.back, bounds.left, bounds.front] if bounds is not None else None, - "printMode": CuraApplication.getInstance().getIntentManager().currentIntentCategory, + "machineBounds": [bounds.right, bounds.front, bounds.left, bounds.back] if bounds is not None else None, + "printMode": intent } - meta["miracle_config"] = {"gaggles": {str(node.getName()): {} for node in nodes}} + if file_format == "application/x-makerbot": + accel_overrides = meta["accel_overrides"] = {} + if intent in ['highspeed', 'highspeedsolid']: + accel_overrides['do_input_shaping'] = True + accel_overrides['do_corner_rounding'] = True + bead_mode_overrides = accel_overrides["bead_mode"] = {} + + accel_enabled = global_stack.getProperty('acceleration_enabled', 'value') + + if accel_enabled: + global_accel_setting = global_stack.getProperty('acceleration_print', 'value') + accel_overrides["rate_mm_per_s_sq"] = { + "x": global_accel_setting, + "y": global_accel_setting + } + + if global_stack.getProperty('acceleration_travel_enabled', 'value'): + travel_accel_setting = global_stack.getProperty('acceleration_travel', 'value') + bead_mode_overrides['Travel Move'] = { + "rate_mm_per_s_sq": { + "x": travel_accel_setting, + "y": travel_accel_setting + } + } + + jerk_enabled = global_stack.getProperty('jerk_enabled', 'value') + if jerk_enabled: + global_jerk_setting = global_stack.getProperty('jerk_print', 'value') + accel_overrides["max_speed_change_mm_per_s"] = { + "x": global_jerk_setting, + "y": global_jerk_setting + } + + if global_stack.getProperty('jerk_travel_enabled', 'value'): + travel_jerk_setting = global_stack.getProperty('jerk_travel', 'value') + if 'Travel Move' not in bead_mode_overrides: + bead_mode_overrides['Travel Move' ] = {} + bead_mode_overrides['Travel Move'].update({ + "max_speed_change_mm_per_s": { + "x": travel_jerk_setting, + "y": travel_jerk_setting + } + }) + + + # Get bead mode settings per extruder + available_bead_modes = { + "infill": "FILL", + "prime_tower": "PRIME_TOWER", + "roofing": "TOP_SURFACE", + "support_infill": "SUPPORT", + "support_interface": "SUPPORT_INTERFACE", + "wall_0": "WALL_OUTER", + "wall_x": "WALL_INNER", + "skirt_brim": "SKIRT" + } + for idx, extruder in enumerate(extruders): + for bead_mode_setting, bead_mode_tag in available_bead_modes.items(): + ext_specific_tag = "%s_%s" % (bead_mode_tag, idx) + if accel_enabled or jerk_enabled: + bead_mode_overrides[ext_specific_tag] = {} + + if accel_enabled: + accel_val = extruder.getProperty('acceleration_%s' % bead_mode_setting, 'value') + bead_mode_overrides[ext_specific_tag]["rate_mm_per_s_sq"] = { + "x": accel_val, + "y": accel_val + } + if jerk_enabled: + jerk_val = extruder.getProperty('jerk_%s' % bead_mode_setting, 'value') + bead_mode_overrides[ext_specific_tag][ "max_speed_change_mm_per_s"] = { + "x": jerk_val, + "y": jerk_val + } + + meta["miracle_config"] = {"gaggles": {"instance0": {}}} version_info = dict() cura_engine_info = ConanInstalls.get("curaengine", {"version": "unknown", "revision": "unknown"}) diff --git a/plugins/MakerbotWriter/__init__.py b/plugins/MakerbotWriter/__init__.py index 60f232fbc0..bd766add8e 100644 --- a/plugins/MakerbotWriter/__init__.py +++ b/plugins/MakerbotWriter/__init__.py @@ -25,6 +25,12 @@ def getMetaData(): "description": catalog.i18nc("@item:inlistbox", "Makerbot Sketch Printfile"), "mime_type": "application/x-makerbot-sketch", "mode": MakerbotWriter.MakerbotWriter.OutputMode.BinaryMode, + }, + { + "extension": file_extension, + "description": catalog.i18nc("@item:inlistbox", "Makerbot Replicator+ Printfile"), + "mime_type": "application/x-makerbot-replicator_plus", + "mode": MakerbotWriter.MakerbotWriter.OutputMode.BinaryMode, } ] }, diff --git a/plugins/PostProcessingPlugin/Script.py b/plugins/PostProcessingPlugin/Script.py index be661e0889..bdd57a06e0 100644 --- a/plugins/PostProcessingPlugin/Script.py +++ b/plugins/PostProcessingPlugin/Script.py @@ -122,7 +122,7 @@ class Script: if not key in line or (';' in line and line.find(key) > line.find(';')): return default sub_part = line[line.find(key) + 1:] - m = re.search('^-?[0-9]+\.?[0-9]*', sub_part) + m = re.search(r'^-?[0-9]+\.?[0-9]*', sub_part) if m is None: return default try: diff --git a/plugins/PostProcessingPlugin/scripts/FilamentChange.py b/plugins/PostProcessingPlugin/scripts/FilamentChange.py index 6fe28ef2f2..f51ba73ffb 100644 --- a/plugins/PostProcessingPlugin/scripts/FilamentChange.py +++ b/plugins/PostProcessingPlugin/scripts/FilamentChange.py @@ -92,7 +92,7 @@ class FilamentChange(Script): "type": "float", "default_value": 0, "minimum_value": 0, - "enabled": "enabled" + "enabled": "enabled and not firmware_config" }, "retract_method": { diff --git a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py index 8cadceb528..ea783b08d8 100644 --- a/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py +++ b/plugins/PostProcessingPlugin/scripts/InsertAtLayerChange.py @@ -1,65 +1,217 @@ # Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. # Created by Wayne Porter +# Re-write in April of 2024 by GregValiant (Greg Foresi) +# Changes: +# Added an 'Enable' setting +# Added support for multi-line insertions (comma delimited) +# Added insertions in a range of layers or a single insertion at a layer. Numbers are consistent with the Cura Preview (base1) +# Added frequency of Insertion (once only, every layer, every 2nd, 3rd, 5th, 10th, 25th, 50th, 100th) +# Added support for 'One at a Time' print sequence +# Rafts are allowed and accounted for but no insertions are made in raft layers from ..Script import Script +import re +from UM.Application import Application class InsertAtLayerChange(Script): - def __init__(self): - super().__init__() def getSettingDataString(self): return """{ - "name": "Insert at layer change", + "name": "Insert at Layer Change", "key": "InsertAtLayerChange", "metadata": {}, "version": 2, "settings": { - "insert_location": + "enabled": { - "label": "When to insert", - "description": "Whether to insert code before or after layer change.", + "label": "Enable this script", + "description": "You must enable the script for it to run.", + "type": "bool", + "default_value": true, + "enabled": true + }, + "insert_frequency": + { + "label": "How often to insert", + "description": "Every so many layers starting with the Start Layer OR as single insertion at a specific layer. If the print sequence is 'one_at_a_time' then the insertions will be made for every model. Insertions are made at the beginning of a layer.", "type": "enum", - "options": {"before": "Before", "after": "After"}, - "default_value": "before" + "options": { + "once_only": "One insertion only", + "every_layer": "Every Layer", + "every_2nd": "Every 2nd", + "every_3rd": "Every 3rd", + "every_5th": "Every 5th", + "every_10th": "Every 10th", + "every_25th": "Every 25th", + "every_50th": "Every 50th", + "every_100th": "Every 100th"}, + "default_value": "every_layer", + "enabled": "enabled" + }, + "start_layer": + { + "label": "Starting Layer", + "description": "The layer before which the first insertion will take place. If the Print_Sequence is 'All at Once' then use the layer numbers from the Cura Preview. Enter '1' to start at gcode LAYER:0. In 'One at a Time' mode use the layer numbers from the first model that prints AND all models will receive the same insertions. NOTE: There is never an insertion for raft layers.", + "type": "int", + "default_value": 1, + "minimum_value": 1, + "enabled": "insert_frequency != 'once_only' and enabled" + }, + "end_layer": + { + "label": "Ending Layer", + "description": "The layer before which the last insertion will take place. Enter '-1' to indicate the entire file. Use layer numbers from the Cura Preview.", + "type": "int", + "default_value": -1, + "minimum_value": -1, + "enabled": "insert_frequency != 'once_only' and enabled" + }, + "single_end_layer": + { + "label": "Layer # for Single Insertion.", + "description": "The layer before which the Gcode insertion will take place. Use the layer numbers from the Cura Preview.", + "type": "str", + "default_value": "", + "enabled": "insert_frequency == 'once_only' and enabled" }, "gcode_to_add": { - "label": "G-code to insert", - "description": "G-code to add before or after layer change.", + "label": "G-code to insert.", + "description": "G-code to add at start of the layer. Use a comma to delimit multi-line commands. EX: G28 X Y,M220 S100,M117 HELL0. NOTE: All inserted text will be converted to upper-case as some firmwares don't understand lower-case.", "type": "str", - "default_value": "" - }, - "skip_layers": - { - "label": "Skip layers", - "description": "Number of layers to skip between insertions (0 for every layer).", - "type": "int", - "default_value": 0, - "minimum_value": 0 + "default_value": "", + "enabled": "enabled" } } }""" def execute(self, data): - gcode_to_add = self.getSettingValueByKey("gcode_to_add") + "\n" - skip_layers = self.getSettingValueByKey("skip_layers") - count = 0 - for layer in data: - # Check that a layer is being printed - lines = layer.split("\n") - for line in lines: - if ";LAYER:" in line: - index = data.index(layer) - if count == 0: - if self.getSettingValueByKey("insert_location") == "before": - layer = gcode_to_add + layer - else: - layer = layer + gcode_to_add - - data[index] = layer - - count = (count + 1) % (skip_layers + 1) - break - return data + # Exit if the script is not enabled + if not bool(self.getSettingValueByKey("enabled")): + return data + #Initialize variables + mycode = self.getSettingValueByKey("gcode_to_add").upper() + start_layer = int(self.getSettingValueByKey("start_layer")) + end_layer = int(self.getSettingValueByKey("end_layer")) + when_to_insert = self.getSettingValueByKey("insert_frequency") + end_list = [0] + print_sequence = Application.getInstance().getGlobalContainerStack().getProperty("print_sequence", "value") + # Get the topmost layer number and adjust the end_list + if end_layer == -1: + if print_sequence == "all_at_once": + for lnum in range(0, len(data) - 1): + if ";LAYER:" in data[lnum]: + the_top = int(data[lnum].split(";LAYER:")[1].split("\n")[0]) + end_list[0] = the_top + # Get the topmost layer number for each model and append it to the end_list + if print_sequence == "one_at_a_time": + for lnum in range(0, 10): + if ";LAYER:0" in data[lnum]: + start_at = lnum + 1 + break + for lnum in range(start_at, len(data)-1, 1): + if ";LAYER:" in data[lnum] and not ";LAYER:0" in data[lnum] and not ";LAYER:-" in data[lnum]: + end_list[len(end_list) - 1] = int(data[lnum].split(";LAYER:")[1].split("\n")[0]) + continue + if ";LAYER:0" in data[lnum]: + end_list.append(0) + elif end_layer != -1: + if print_sequence == "all_at_once": + # Catch an error if the entered End_Layer > the top layer in the gcode + for e_num, layer in enumerate(data): + if ";LAYER:" in layer: + top_layer = int(data[e_num].split(";LAYER:")[1].split("\n")[0]) + end_list[0] = end_layer - 1 + if top_layer < end_layer - 1: + end_list[0] = top_layer + elif print_sequence == "one_at_a_time": + # Find the index of the first Layer:0 + for lnum in range(0, 10): + if ";LAYER:0" in data[lnum]: + start_at = lnum + 1 + break + # Get the top layer number for each model + for lnum in range(start_at, len(data)-1): + if ";LAYER:" in data[lnum] and not ";LAYER:0" in data[lnum] and not ";LAYER:-" in data[lnum]: + end_list[len(end_list) - 1] = int(data[lnum].split(";LAYER:")[1].split("\n")[0]) + if ";LAYER:0" in data[lnum]: + end_list.append(0) + # Adjust the end list if an end layer was named + for index, num in enumerate(end_list): + if num > end_layer - 1: + end_list[index] = end_layer - 1 + #If the gcode_to_enter is multi-line then replace the commas with newline characters + if mycode != "": + if "," in mycode: + mycode = re.sub(",", "\n",mycode) + gcode_to_add = mycode + #Get the insertion frequency + match when_to_insert: + case "every_layer": + freq = 1 + case "every_2nd": + freq = 2 + case "every_3rd": + freq = 3 + case "every_5th": + freq = 5 + case "every_10th": + freq = 10 + case "every_25th": + freq = 25 + case "every_50th": + freq = 50 + case "every_100th": + freq = 100 + case "once_only": + the_insert_layer = int(self.getSettingValueByKey("single_end_layer"))-1 + case _: + raise ValueError(f"Unexpected insertion frequency {when_to_insert}") + #Single insertion + if when_to_insert == "once_only": + # For print sequence 'All at once' + if print_sequence == "all_at_once": + for index, layer in enumerate(data): + if ";LAYER:" + str(the_insert_layer) + "\n" in layer: + lines = layer.split("\n") + lines.insert(1,gcode_to_add) + data[index] = "\n".join(lines) + return data + # For print sequence 'One at a time' + else: + for index, layer in enumerate(data): + if ";LAYER:" + str(the_insert_layer) + "\n" in layer: + lines = layer.split("\n") + lines.insert(1,gcode_to_add) + data[index] = "\n".join(lines) + return data + # For multiple insertions + if when_to_insert != "once_only": + # Search from the line after the first Layer:0 so we know when a model ends if in One at a Time mode. + first_0 = True + next_layer = start_layer - 1 + end_layer = end_list.pop(0) + for index, layer in enumerate(data): + lines = layer.split("\n") + for l_index, line in enumerate(lines): + if ";LAYER:" in line: + layer_number = int(line.split(":")[1]) + if layer_number == next_layer and layer_number <= end_layer: + lines.insert(l_index + 1,gcode_to_add) + data[index] = "\n".join(lines) + next_layer += freq + # Reset the next_layer for one-at-a-time + if next_layer > int(end_layer): + next_layer = start_layer - 1 + # Index to the next end_layer when a Layer:0 is encountered + try: + if not first_0 and layer_number == 0: + end_layer = end_list.pop(0) + except: + pass + # Beyond the initial Layer:0 futher Layer:0's indicate the top layer of a model. + if layer_number == 0: + first_0 = False + break + return data \ No newline at end of file diff --git a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py index f502678317..43df766962 100644 --- a/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py +++ b/plugins/PostProcessingPlugin/scripts/PauseAtHeight.py @@ -338,7 +338,7 @@ class PauseAtHeight(Script): nbr_negative_layers += 1 #Track the latest printing temperature in order to resume at the correct temperature. - if re.match("T(\d*)", line): + if re.match(r"T(\d*)", line): current_t = self.getValue(line, "T") m = self.getValue(line, "M") if m is not None and (m == 104 or m == 109) and self.getValue(line, "S") is not None: diff --git a/plugins/PostProcessingPlugin/scripts/PurgeLinesAndUnload.py b/plugins/PostProcessingPlugin/scripts/PurgeLinesAndUnload.py new file mode 100644 index 0000000000..ca95359e29 --- /dev/null +++ b/plugins/PostProcessingPlugin/scripts/PurgeLinesAndUnload.py @@ -0,0 +1,988 @@ +# August 2024 - Designed by: GregValiant (Greg Foresi). Straightened out by: Hellaholic +# +# NOTE: You may have purge lines in your startup, or you may use this script, you should not do both. The script will attempt to comment out existing StartUp purge lines. +# 'Add Purge Lines to StartUp' Allows the user to determine where the purge lines are on the build plate, or to not use purge lines if a print extends to the limits of the build surface. +# This script will attempt to recognize and comment out purge lines in the StartUp Gcode but they should be removed if using this script. +# The setting 'Purge Line Length' is only avaialble for rectangular beds because I was too lazy to calculate the 45° arcs. +# 'Move to Start' takes an orthogonal path around the periphery before moving in to the print start location. It eliminates strings across the print area. +# 'Adjust Starting E' is a correction in the E location before the skirt/brim starts. The user can make an adjustment so that the skirt / brim / raft starts where it should. +# 'Unload' adds code to the Ending Gcode that will unload the filament from the machine. The unlaod distance is broken into chunks to avoid overly long E distances. +# Added extra moves to account for Cura adding a "Travel to Prime Tower" move that can cross the middle of the build surface. +# Added ability to take 'disallowed areas' into account. + +import math +from ..Script import Script +from UM.Application import Application +from UM.Message import Message +import re +from UM.Logger import Logger +from enum import Enum + + +class Location(str, Enum): + LEFT = "left" + RIGHT = "right" + REAR = "rear" + FRONT = "front" + + +class Position(tuple, Enum): + LEFT_FRONT = ("left", "front") + RIGHT_FRONT = ("right", "front") + LEFT_REAR = ("left", "rear") + RIGHT_REAR = ("right", "rear") + + +class PurgeLinesAndUnload(Script): + + def __init__(self): + super().__init__() + self.global_stack = Application.getInstance().getGlobalContainerStack() + self.extruder = self.global_stack.extruderList + self.end_purge_location = None + self.speed_travel = None + # This will be True when there are more than 4 'machine_disallowed_areas' + self.show_warning = False + self.disallowed_areas = self.global_stack.getProperty("machine_disallowed_areas", "value") + self.extruder = self.global_stack.extruderList + self.extruder_count = self.global_stack.getProperty("machine_extruder_count", "value") + self.bed_shape = self.global_stack.getProperty("machine_shape", "value") + self.origin_at_center = self.global_stack.getProperty("machine_center_is_zero", "value") + self.machine_width = self.global_stack.getProperty("machine_width", "value") + self.machine_depth = self.global_stack.getProperty("machine_depth", "value") + self.machine_left = 1.0 + self.machine_right = self.machine_width - 1.0 + self.machine_front = 1.0 + self.machine_back = self.machine_depth - 1.0 + self.start_x = None + self.start_y = None + + def initialize(self) -> None: + super().initialize() + # Get the StartUp Gcode from Cura and attempt to catch if it contains purge lines. Message the user if an extrusion is in the startup. + startup_gcode = self.global_stack.getProperty("machine_start_gcode", "value") + start_lines = startup_gcode.splitlines() + for line in start_lines: + if "G1" in line and " E" in line and (" X" in line or " Y" in line): + Message(title="[Purge Lines and Unload]", + text="It appears that there are 'purge lines' in the StartUp Gcode. Using the 'Add Purge Lines' function of this script will comment them out.").show() + break + # 'is_rectangular' is used to disable half-length purge lines for elliptic beds. + self._instance.setProperty("is_rectangular", "value", True if self.global_stack.getProperty("machine_shape", "value") == "rectangular" else False) + self._instance.setProperty("move_to_prime_tower", "value", True if self.global_stack.getProperty("machine_extruder_count", "value") > 1 else False) + # Set the default E adjustment + self._instance.setProperty("adjust_e_loc_to", "value", -abs(round(float(self.extruder[0].getProperty("retraction_amount", "value")), 1))) + + def getSettingDataString(self): + return """{ + "name": "Purge Lines and Unload Filament", + "key": "PurgeLinesAndUnload", + "metadata": {}, + "version": 2, + "settings": + { + "add_purge_lines": + { + "label": "Add Purge Lines to StartUp", + "description": "The purge lines can be left, right, front or back. If there are purge lines present in the StartUp Gcode remove them or comment them out before using this script. You don't want to double dip.", + "type": "bool", + "default_value": false, + "value": false, + "enabled": true + }, + "purge_line_location": + { + "label": " Purge Line Location", + "description": "What edge of the build plate should have the purge lines. If the printer is 'Elliptical' then it is assumed to be an 'Origin At Center' printer and the purge lines are 90° arcs.", + "type": "enum", + "options": { + "left": "On left edge (Xmin)", + "right": "On right edge (Xmax)", + "front": "On front edge (Ymin)", + "rear": "On back edge (Ymax)"}, + "default_value": "left", + "enabled": "add_purge_lines" + }, + "purge_line_length": + { + "label": " Purge Line Length", + "description": "Select 'Full' for the entire Height or Width of the build plate. Select 'Half' for shorter purge lines. NOTE: This has no effect on elliptic beds.", + "type": "enum", + "options": { + "purge_full": "Full", + "purge_half": "Half"}, + "default_value": "purge_full", + "enabled": "add_purge_lines and is_rectangular" + }, + "border_distance": + { + "label": " Border Distance", + "description": "This is the distance from the build plate edge to the first purge line. '0' works for most printers but you might want the lines further inboard. The allowable range is -12 to 12. ⚠️ Negative numbers are allowed for printers that have 'Disallowed Areas'. You must use due caution when using a negative value.", + "type": "int", + "unit": "mm ", + "default_value": 0, + "minimum_value": -12, + "maximum_value": 12, + "enabled": "add_purge_lines" + }, + "prime_blob_enable": + { + "label": " Start with Prime Blob️​", + "description": "Enable a stationary purge before starting the purge lines. Available only when purge line location is 'left' or 'front'", + "type": "bool", + "default_value": false, + "enabled": "add_purge_lines and purge_line_location in ['front', 'left']" + }, + "prime_blob_distance": + { + "label": " Blob Distance️​", + "description": "How many mm's of filament should be extruded for the blob.", + "type": "int", + "default_value": 0, + "unit": "mm ", + "enabled": "add_purge_lines and prime_blob_enable and purge_line_location in ['front', 'left']" + }, + "prime_blob_loc_x": + { + "label": " Blob Location X", + "description": "The 'X' position to put the prime blob. 'Origin at Center' printers might require a negative value here. Keep in mind that purge lines always start in the left front, or the right rear. Pay attention or the nozzle can sit down into the prime blob.", + "type": "int", + "default_value": 0, + "unit": "mm ", + "enabled": "add_purge_lines and prime_blob_enable and purge_line_location in ['front', 'left']" + }, + "prime_blob_loc_y": + { + "label": " Blob location Y", + "description": "The 'Y' position to put the prime blob. 'Origin at Center' printers might require a negative value here. Keep in mind that purge lines always start in the left front, or the right rear. Pay attention or the nozzle can sit down into the prime blob.", + "type": "int", + "default_value": 0, + "unit": "mm ", + "enabled": "add_purge_lines and prime_blob_enable and purge_line_location in ['front', 'left']" + }, + "move_to_start": + { + "label": "Circle around to layer start ⚠️​", + "description": "Depending on where the 'Layer Start X' and 'Layer Start Y' are for the print, the opening travel move can pass across the print area and leave a string there. This option will generate an orthogonal path that moves the nozzle around the edges of the build plate and then comes in to the Start Point. || ⚠️​ || The nozzle can drop to Z0.0 and touch the build plate at each stop in order to 'nail down the string'. The nozzle always raises after the touch-down. It will not drag on the bed.", + "type": "bool", + "default_value": false, + "enabled": true + }, + "move_to_start_min_z": + { + "label": " Minimum Z height ⚠️​", + "description": "When moving to the start position, the nozzle can touch down on the build plate at each stop (Z = 0.0). That will stick the string to the build plate at each direction change so it doesn't pull across the print area. Some printers may not respond well to Z=0.0. You may set a minimum Z height here (min is 0.0 and max is 0.50). The string must stick or it defeats the purpose of moving around the periphery.", + "type": "float", + "default_value": 0.0, + "minimum_value": 0.0, + "maximum_value": 0.5, + "enabled": "move_to_start" + }, + "adjust_starting_e": + { + "label": "Adjust Starting E location", + "description": "If there is a retraction after the purge lines in the Startup Gcode (like the 'Add Purge Lines' script here does) then often the skirt does not start where the nozzle starts. It is because Cura always adds a retraction prior to the print starting which results in a double retraction. Enabling this will allow you to adjust the starting E location and tune it so the skirt/brim/model starts right where it should. To fix a blob enter a positive number. To fix a 'dry start' enter a negative number.", + "type": "bool", + "default_value": false, + "value": false, + "enabled": true + }, + "adjust_e_loc_to": + { + "label": " Starting E location", + "description": "This is usually a negative amount and often equal to the '-Retraction Distance'. This 'G92 E' adjustment changes where the printer 'thinks' the end of the filament is in relation to the nozzle. It replaces the retraction that Cura adds prior to the start of 'LAYER:0'. If retraction is not enabled then this setting has no effect.", + "type": "float", + "unit": "mm ", + "default_value": -6.5, + "enabled": "adjust_starting_e" + }, + "enable_unload": + { + "label": "Unload filament at print end", + "description": "Adds an unload script to the Ending Gcode section. It goes in just ahead of the M104 S0. This scripts always unloads the active extruder. If the unload distance is greater than 150mm it will be broken into chunks to avoid tripping the excessive extrusion warning in some firmware.", + "type": "bool", + "default_value": false, + "enabled": true + }, + "unload_distance": + { + "label": " Unload Distance", + "description": "The amount of filament to unload. Bowden printers usually require a significant amount and direct drives not as much.", + "type": "int", + "default_value": 440, + "unit": "mm ", + "enabled": "enable_unload" + }, + "unload_quick_purge": + { + "label": " Quick purge before unload", + "description": "When printing something fine that has a lot of retractions in a short space (like lettering or spires) right before the unload, the filament can get hung up in the hot end and unload can fail. A quick purge will soften the end of the filament so it will retract correctly. This 'quick purge' will take place at the last position of the nozzle.", + "type": "bool", + "default_value": false, + "enabled": "enable_unload" + }, + "move_to_prime_tower": + { + "label": "Hidden setting", + "description": "Hidden setting that enables 'move_to_prime_tower' for multi extruder machines.", + "type": "bool", + "default_value": false, + "enabled": false + }, + "is_rectangular": + { + "label": "Bed is rectangular", + "description": "Hidden setting that disables 'purge line length' for elliptical beds.", + "type": "bool", + "default_value": false, + "enabled": false + } + } + }""" + + def execute(self, data): + # Exit if the Gcode has already been processed. + for num in range(0, len(data)): + layer = data[num].split("\n") + for line in layer: + if ";LAYER:" in line: + break + elif "PurgeLinesAndUnload" in line: + Logger.log("i", "[Add Purge Lines and Unload Filament] has already run on this gcode.") + return data + # The function also retrieves extruder settings used later in the script + # 't0_has_offsets' is used to exit 'Add Purge Lines' and 'Circle around...' because the script is not compatible with machines with the right nozzle as the primary nozzle. + self.t0_has_offsets = False + self.init_ext_nr = self._get_initial_tool() + # Adjust the usable size of the bed per any 'disallowed areas' + self._get_build_plate_extents() + # The start location changes according to which quadrant the nozzle is in at the beginning + self.end_purge_location = self._get_real_start_point(data[1]) + self.border_distance = self.getSettingValueByKey("border_distance") + self.prime_blob_enable = self.getSettingValueByKey("prime_blob_enable") + if self.prime_blob_enable: + self.prime_blob_distance = self.getSettingValueByKey("prime_blob_distance") + else: + self.prime_blob_distance = 0 + # Set the minimum Z to stick the string to the build plate when Move to Start is selected. + self.touchdown_z = self.getSettingValueByKey("move_to_start_min_z") + + # Mapping settings to corresponding methods + procedures = { + "add_purge_lines": self._add_purge_lines, + "move_to_prime_tower": self._move_to_prime_tower, + "move_to_start": self._move_to_start, + "adjust_starting_e": self._adjust_starting_e, + "enable_unload": self._unload_filament + } + # Run selected procedures + for setting, method in procedures.items(): + if self.getSettingValueByKey(setting): + method(data) + # Format the startup and ending gcodes + data[1] = self._format_string(data[1]) + data[-1] = self._format_string(data[-1]) + if self.getSettingValueByKey("add_purge_lines"): + if self.show_warning: + msg_text = ("The printer has ( " + str(len(self.disallowed_areas)) + + " ) 'disallowed areas'. That can cause the area available for the purge lines to be small.\nOpen the Gcode file for preview in Cura and check the purge line location to insure it is acceptable.") + else: + msg_text = "Open the Gcode file for preview in Cura. Make sure the 'Purge Lines' don't run underneath something else and are acceptable." + Message(title="[Purge Lines and Unload]", text=msg_text).show() + return data + + def _get_real_start_point(self, first_section: str) -> tuple: + last_x, last_y = 0.0, 0.0 + start_quadrant = Position.LEFT_FRONT + + for line in first_section.split("\n"): + if line.startswith(";") and not line.startswith(";LAYER_COUNT") or not line: + continue + + if line.startswith("G28"): + last_x, last_y = 0.0, 0.0 + elif line[:3] in {"G0 ", "G1 "}: + last_x = self.getValue(line, "X") if " X" in line else last_x + last_y = self.getValue(line, "Y") if " Y" in line else last_y + elif "LAYER_COUNT" in line: + break + + midpoint_x, midpoint_y = (0.0, 0.0) if self.origin_at_center else ( + self.machine_width / 2, self.machine_depth / 2) + + if last_x <= midpoint_x and last_y <= midpoint_y: + start_quadrant = Position.LEFT_FRONT + elif last_x > midpoint_x and last_y <= midpoint_y: + start_quadrant = Position.RIGHT_FRONT + elif last_x > midpoint_x and last_y > midpoint_y: + start_quadrant = Position.RIGHT_REAR + elif last_x <= midpoint_x and last_y > midpoint_y: + start_quadrant = Position.LEFT_REAR + + return start_quadrant + + """ + For some multi-extruder printers. + Takes into account a 'Move to Prime Tower' if there is one and adds orthogonal travel moves to get there. + 'Move to Prime Tower' does not require that the prime tower is enabled, + only that 'machine_extruder_start_position_?' is in the definition file. + """ + + def _move_to_prime_tower(self, first_section: str) -> str: + if self.extruder_count == 1: + return first_section + adjustment_lines = "" + move_to_prime_present = False + prime_tower_x = self.global_stack.getProperty("prime_tower_position_x", "value") + prime_tower_y = self.global_stack.getProperty("prime_tower_position_y", "value") + prime_tower_loc = self._prime_tower_quadrant(prime_tower_x, prime_tower_y) + # Shortstop an error if Start Location comes through as None + if self.end_purge_location is None: + self.end_purge_location = Position.LEFT_FRONT + if prime_tower_loc != self.end_purge_location: + startup = first_section[1].split("\n") + for index, line in enumerate(startup): + if ";LAYER_COUNT:" in line: + try: + if startup[index + 1].startswith("G0"): + prime_move = startup[index + 1] + " ; Move to Prime Tower" + adjustment_lines = self._move_to_location("Prime Tower", prime_tower_loc) + startup[index + 1] = adjustment_lines + prime_move + "\n;---------------------[End of Prime Tower moves]\n" + startup[index] + startup.pop(index) + first_section[1] = "\n".join(startup) + move_to_prime_present = True + except IndexError: + pass + # The start_location changes to the prime tower location in case 'Move to Start' is enabled. + if move_to_prime_present: + self.end_purge_location = prime_tower_loc + return first_section + + # Determine the quadrant that the prime tower rests in so the orthogonal moves can be calculated + def _prime_tower_quadrant(self, prime_tower_x: float, prime_tower_y: float) -> tuple: + midpoint_x, midpoint_y = (0.0, 0.0) if self.origin_at_center else ( + self.machine_width / 2, self.machine_depth / 2) + + if prime_tower_x < midpoint_x and prime_tower_y < midpoint_y: + return Position.LEFT_FRONT + elif prime_tower_x > midpoint_x and prime_tower_y < midpoint_y: + return Position.RIGHT_FRONT + elif prime_tower_x > midpoint_x and prime_tower_y > midpoint_y: + return Position.RIGHT_REAR + elif prime_tower_x < midpoint_x and prime_tower_y > midpoint_y: + return Position.LEFT_REAR + else: + return Position.LEFT_FRONT # return Default in case of no match + + def _move_to_location(self, location_name: str, location: tuple) -> str: + """ + Compare the input tuple (B) with the end purge location (A) and describe the move from A to B. + Parameters: + location_name (str): A descriptive name for the target location. + location (tuple): The target tuple (e.g., ("right", "front")). + Returns: + str: G-code for the move from A to B or an empty string if no move is required. + """ + # Validate input + if len(self.end_purge_location) != 2 or len(location) != 2: + raise ValueError("Both locations must be tuples of length 2.") + + # Extract components + start_side, start_depth = self.end_purge_location + target_side, target_depth = location + # Start of the moves and a comment to highlight the move + moves = [f";MESH:NONMESH---------[Circle around to {location_name}] Start from: {str(start_side)} {str(start_depth)} Go to: {target_side} {target_depth}\nG0 F600 Z2 ; Move up\n"] + + # Helper function to add G-code for moves + def add_move(axis: str, position: float) -> None: + moves.append( + f"G0 F{self.speed_travel} {axis}{position} ; Start move\n" + f"G0 F600 Z{self.touchdown_z} ; Nail down the string\n" + f"G0 F600 Z2 ; Move up\n" + ) + + # Move to a corner + if start_side == Location.LEFT: + moves.append(f"G0 F{self.speed_travel} X{self.machine_left + 6} ; Init move\n") + elif start_side == Location.RIGHT: + moves.append(f"G0 F{self.speed_travel} X{self.machine_right - 6} ; Init move\n") + if start_depth == Location.FRONT: + add_move("Y", self.machine_front + 6) + elif start_depth == Location.REAR: + add_move("Y", self.machine_back - 6) + # Compare sides + if start_side != target_side: + if target_side == Location.RIGHT: + add_move("X", self.machine_right) + else: + add_move("X", self.machine_left) + # Compare positions + if start_depth != target_depth: + if target_depth == Location.REAR: + add_move("Y", self.machine_back) + else: + add_move("Y", self.machine_front) + if len(moves) == 1: + moves.append(f"G0 F{self.speed_travel} Y{self.start_y} ; Move to start Y\n") + # Combine moves into a single G-code string and return + return "".join(moves) + + def _get_build_plate_extents(self): + """ + Machine disallowed areas can be ordered at the whim of the definition author and cannot be counted on when parsed + This determines a simple rectangle that will be available for the purge lines. For some machines (Ex: UM3) it can be a small rectangle. + If there are "extruder offsets" then use them to adjust the 'machine_right' and 'machine_back' independent of any disallowed areas. + """ + if self.bed_shape == "rectangular": + if self.disallowed_areas: + if len(self.disallowed_areas) > 4: + self.show_warning = True + mid_x = 0 + mid_y = 0 + left_x = -(self.machine_width / 2) + right_x = (self.machine_width / 2) + front_y = (self.machine_depth / 2) + back_y = -(self.machine_depth / 2) + for rect in self.disallowed_areas: + for corner in rect: + x = corner[0] + if mid_x > x > left_x: + left_x = x + if mid_x < x < right_x: + right_x = x + y = corner[1] + if mid_y < y < front_y: + front_y = y + if mid_y > y > back_y: + back_y = y + if self.origin_at_center: + self.machine_left = round(left_x, 2) + self.machine_right = round(right_x, 2) + self.machine_front = round(front_y, 2) + self.machine_back = round(back_y, 2) + else: + self.machine_left = round(left_x + self.machine_width / 2, 2) + self.machine_right = round(right_x + self.machine_width / 2, 2) + self.machine_front = round((self.machine_depth / 2) - front_y, 2) + self.machine_back = round((self.machine_depth / 2) - back_y, 2) + else: + if self.origin_at_center: + self.machine_left = round(-(self.machine_width / 2), 2) + self.machine_right = round((self.machine_width / 2) - self.nozzle_offset_x, 2) + self.machine_front = round(-(self.machine_depth / 2) + self.nozzle_offset_y, 2) + self.machine_back = round((self.machine_depth / 2) - self.nozzle_offset_y, 2) + else: + self.machine_left = 0 + self.machine_right = self.machine_width - self.nozzle_offset_x + if self.nozzle_offset_y >= 0: + self.machine_front = 0 + self.machine_back = self.machine_depth - self.nozzle_offset_y + elif self.nozzle_offset_y < 0: + self.machine_front = abs(self.nozzle_offset_y) + self.machine_back = self.machine_depth + return + + # Add Purge Lines to the user defined position on the build plate + def _add_purge_lines(self, data: str): + if self.t0_has_offsets: + data[0] += "; [Purge Lines and Unload] 'Add Purge Lines' did not run because the assumed primary nozzle (T0) has tool offsets.\n" + Message(title = "[Purge Lines and Unload]", text = "'Add Purge Lines' did not run because the assumed primary nozzle (T0) has tool offsets").show() + return data + + def calculate_purge_volume(line_width, purge_length, volume_per_mm): + return round((line_width * 0.3 * purge_length) * 1.25 / volume_per_mm, 5) + + def adjust_for_prime_blob_gcode(retract_speed, retract_distance): + """Generates G-code lines for prime blob adjustment.""" + gcode_lines = [ + f"G1 F{retract_speed} E{retract_distance} ; Unretract", + "G92 E0 ; Reset extruder\n" + ] + return "\n".join(gcode_lines) + + purge_location = self.getSettingValueByKey("purge_line_location") + purge_extrusion_full = True if self.getSettingValueByKey("purge_line_length") == "purge_full" else False + purge_str = ";TYPE:CUSTOM----------[Purge Lines]\nG0 F600 Z2 ; Move up\nG92 E0 ; Reset extruder\n" + purge_str += self._get_blob_code() + # Normal cartesian printer with origin at the left front corner + if self.bed_shape == "rectangular" and not self.origin_at_center: + if purge_location == Location.LEFT: + purge_len = int(self.machine_back - 20) if purge_extrusion_full else int((self.machine_back - self.machine_front) / 2) + y_stop = int(self.machine_back - 10) if purge_extrusion_full else int(self.machine_depth / 2) + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + purge_str = purge_str.replace("Lines", "Lines at MinX") + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{self.machine_left + self.border_distance} Y{self.machine_front + 10} ; Move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{self.machine_left + self.border_distance} Y{y_stop} E{purge_volume} ; First line\n" + purge_str += f"G0 X{self.machine_left + 3 + self.border_distance} Y{y_stop} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_left + 3 + self.border_distance} Y{self.machine_front + 10} E{round(purge_volume * 2, 5)} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_left + 3 + self.border_distance} Y{self.machine_front + 20} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_left + 3 + self.border_distance} Y{self.machine_front + 35} ; Wipe\n" + self.end_purge_location = Position.LEFT_FRONT + elif purge_location == Location.RIGHT: + purge_len = int(self.machine_depth - 20) if purge_extrusion_full else int((self.machine_back - self.machine_front) / 2) + y_stop = int(self.machine_front + 10) if purge_extrusion_full else int(self.machine_depth / 2) + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + purge_str = purge_str.replace("Lines", "Lines at MaxX") + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{self.machine_right - self.border_distance} ; Move\nG0 Y{self.machine_back - 10} ; Move\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{self.machine_right - self.border_distance} Y{y_stop} E{purge_volume} ; First line\n" + purge_str += f"G0 X{self.machine_right - 3 - self.border_distance} Y{y_stop} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_right - 3 - self.border_distance} Y{self.machine_back - 10} E{purge_volume * 2} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_right - 3 - self.border_distance} Y{self.machine_back - 20} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_right - 3 - self.border_distance} Y{self.machine_back - 35} ; Wipe\n" + self.end_purge_location = Position.RIGHT_REAR + elif purge_location == Location.FRONT: + purge_len = int(self.machine_width) - self.nozzle_offset_x - 20 if purge_extrusion_full else int( + (self.machine_right - self.machine_left) / 2) + x_stop = int(self.machine_right - 10) if purge_extrusion_full else int(self.machine_width / 2) + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + purge_str = purge_str.replace("Lines", "Lines at MinY") + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{self.machine_left + 10} Y{self.machine_front + self.border_distance} ; Move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{x_stop} Y{self.machine_front + self.border_distance} E{purge_volume} ; First line\n" + purge_str += f"G0 X{x_stop} Y{self.machine_front + 3 + self.border_distance} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_left + 10} Y{self.machine_front + 3 + self.border_distance} E{purge_volume * 2} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_left + 20} Y{self.machine_front + 3 + self.border_distance} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_left + 35} Y{self.machine_front + 3 + self.border_distance} ; Wipe\n" + self.end_purge_location = Position.LEFT_FRONT + elif purge_location == Location.REAR: + purge_len = int(self.machine_width - 20) if purge_extrusion_full else int( + (self.machine_right - self.machine_left) / 2) + x_stop = int(self.machine_left + 10) if purge_extrusion_full else int(self.machine_width / 2) + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + purge_str = purge_str.replace("Lines", "Lines at MaxY") + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} Y{self.machine_back - self.border_distance} ; Ortho Move to back\n" + purge_str += f"G0 X{self.machine_right - 10} ; Ortho move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{x_stop} Y{self.machine_back - self.border_distance} E{purge_volume} ; First line\n" + purge_str += f"G0 X{x_stop} Y{self.machine_back - 3 - self.border_distance} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_right - 10} Y{self.machine_back - 3 - self.border_distance} E{purge_volume * 2} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_right - 20} Y{self.machine_back - 3 - self.border_distance} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_right - 35} Y{self.machine_back - 3 - self.border_distance} ; Wipe\n" + self.end_purge_location = Position.RIGHT_REAR + # Some cartesian printers (BIBO, Weedo, MethodX, etc.) are Origin at Center + elif self.bed_shape == "rectangular" and self.origin_at_center: + if purge_location == Location.LEFT: + purge_len = int(self.machine_back - self.machine_front - 20) if purge_extrusion_full else abs( + int(self.machine_front - 10)) + y_stop = int(self.machine_back - 10) if purge_extrusion_full else 0 + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{self.machine_left + self.border_distance} Y{self.machine_front + 10} ; Move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{self.machine_left + self.border_distance} Y{y_stop} E{purge_volume} ; First line\n" + purge_str += f"G0 X{self.machine_left + 3 + self.border_distance} Y{y_stop} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_left + 3 + self.border_distance} Y{self.machine_front + 10} E{round(purge_volume * 2, 5)} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_left + 3 + self.border_distance} Y{self.machine_front + 20} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_left + 3 + self.border_distance} Y{self.machine_front + 35} ; Wipe\n" + self.end_purge_location = Position.LEFT_FRONT + elif purge_location == Location.RIGHT: + purge_len = int(self.machine_back - 20) if purge_extrusion_full else int( + (self.machine_back - self.machine_front) / 2) + y_stop = int(self.machine_front + 10) if purge_extrusion_full else 0 + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{self.machine_right - self.border_distance} Z2 ; Move\nG0 Y{self.machine_back - 10} Z2 ; Move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{self.machine_right - self.border_distance} Y{y_stop} E{purge_volume} ; First line\n" + purge_str += f"G0 X{self.machine_right - 3 - self.border_distance} Y{y_stop} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_right - 3 - self.border_distance} Y{self.machine_back - 10} E{purge_volume * 2} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_right - 3 - self.border_distance} Y{self.machine_back - 20} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_right - 3 - self.border_distance} Y{self.machine_back - 35} ; Wipe\n" + self.end_purge_location = Position.RIGHT_REAR + elif purge_location == Location.FRONT: + purge_len = int(self.machine_right - self.machine_left - 20) if purge_extrusion_full else int( + (self.machine_right - self.machine_left) / 2) + x_stop = int(self.machine_right - 10) if purge_extrusion_full else 0 + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{self.machine_left + 10} Z2 ; Move\nG0 Y{self.machine_front + self.border_distance} Z2 ; Move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{x_stop} Y{self.machine_front + self.border_distance} E{purge_volume} ; First line\n" + purge_str += f"G0 X{x_stop} Y{self.machine_front + 3 + self.border_distance} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_left + 10} Y{self.machine_front + 3 + self.border_distance} E{purge_volume * 2} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_left + 20} Y{self.machine_front + 3 + self.border_distance} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_left + 35} Y{self.machine_front + 3 + self.border_distance} ; Wipe\n" + self.end_purge_location = Position.LEFT_FRONT + elif purge_location == Location.REAR: + purge_len = int(self.machine_right - self.machine_left - 20) if purge_extrusion_full else abs( + int(self.machine_right - 10)) + x_stop = int(self.machine_left + 10) if purge_extrusion_full else 0 + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} Y{self.machine_back - self.border_distance} Z2; Ortho Move to back\n" + purge_str += f"G0 X{self.machine_right - 10} Z2 ; Ortho Move to start\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + if self.prime_blob_enable: + purge_str += adjust_for_prime_blob_gcode(self.retract_speed, self.retract_dist) + # Purge two lines + purge_str += f"G1 F{self.print_speed} X{x_stop} Y{self.machine_back - self.border_distance} E{purge_volume} ; First line\n" + purge_str += f"G0 X{x_stop} Y{self.machine_back - 3 - self.border_distance} ; Move over\n" + purge_str += f"G1 F{self.print_speed} X{self.machine_right - 10} Y{self.machine_back - 3 - self.border_distance} E{purge_volume * 2} ; Second line\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round(purge_volume * 2 - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z8 ; Move Up\nG4 S1 ; Wait for 1 second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{self.machine_right - 20} Y{self.machine_back - 3 - self.border_distance} Z0.3 ; Slide over and down\n" + purge_str += f"G0 X{self.machine_right - 35} Y{self.machine_back - 3 - self.border_distance} ; Wipe\n" + self.end_purge_location = Position.RIGHT_REAR + # Elliptic printers with Origin at Center + elif self.bed_shape == "elliptic": + if purge_location in [Location.LEFT, Location.RIGHT]: + radius_1 = round((self.machine_width / 2) - 1, 2) + else: # For purge_location in [Location.FRONT, Location.REAR] + radius_1 = round((self.machine_depth / 2) - 1, 2) + purge_len = int(radius_1) * math.pi / 4 + purge_volume = calculate_purge_volume(self.init_line_width, purge_len, self.mm3_per_mm) + if purge_location == Location.LEFT: + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X-{round(radius_1 * .707, 2)} Y-{round(radius_1 * .707, 2)} ; Travel\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + # Purge two arcs + purge_str += f"G2 F{self.print_speed} X-{round(radius_1 * .707, 2)} Y{round(radius_1 * .707, 2)} I{round(radius_1 * .707, 2)} J{round(radius_1 * .707, 2)} E{purge_volume} ; First Arc\n" + purge_str += f"G0 X-{round((radius_1 - 3) * .707, 2)} Y{round((radius_1 - 3) * .707, 2)} ; Move Over\n" + purge_str += f"G3 F{self.print_speed} X-{round((radius_1 - 3) * .707, 2)} Y-{round((radius_1 - 3) * .707, 2)} I{round((radius_1 - 3) * .707, 2)} J-{round((radius_1 - 3) * .707, 2)} E{purge_volume * 2} ; Second Arc\n" + purge_str += f"G1 X-{round((radius_1 - 3) * .707 - 25, 2)} E{round(purge_volume * 2 + 1, 5)} ; Move Over\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round((purge_volume * 2 + 1) - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z5 ; Move Up\nG4 S1 ; Wait 1 Second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X-{round((radius_1 - 3) * .707 - 15, 2)} Z0.3 ; Slide Over\n" + purge_str += f"G0 F{self.print_speed} X-{round((radius_1 - 3) * .707, 2)} ; Wipe\n" + self.end_purge_location = Position.LEFT_FRONT + elif purge_location == Location.RIGHT: + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{round(radius_1 * .707, 2)} Y-{round(radius_1 * .707, 2)} ; Travel\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + # Purge two arcs + purge_str += f"G3 F{self.print_speed} X{round(radius_1 * .707, 2)} Y{round(radius_1 * .707, 2)} I-{round(radius_1 * .707, 2)} J{round(radius_1 * .707, 2)} E{purge_volume} ; First Arc\n" + purge_str += f"G0 X{round((radius_1 - 3) * .707, 2)} Y{round((radius_1 - 3) * .707, 2)} ; Move Over\n" + purge_str += f"G2 F{self.print_speed} X{round((radius_1 - 3) * .707, 2)} Y-{round((radius_1 - 3) * .707, 2)} I-{round((radius_1 - 3) * .707, 2)} J-{round((radius_1 - 3) * .707, 2)} E{purge_volume * 2} ; Second Arc\n" + purge_str += f"G1 X{round((radius_1 - 3) * .707 - 25, 2)} E{round(purge_volume * 2 + 1, 5)} ; Move Over\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round((purge_volume * 2 + 1) - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z5 ; Move Up\nG4 S1 ; Wait 1 Second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} X{round((radius_1 - 3) * .707 - 15, 2)} Z0.3 ; Slide Over\n" + purge_str += f"G0 F{self.print_speed} X{round((radius_1 - 3) * .707, 2)} ; Wipe\n" + self.end_purge_location = Position.RIGHT_REAR + elif purge_location == Location.FRONT: + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X-{round(radius_1 * .707, 2)} Y-{round(radius_1 * .707, 2)} ; Travel\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + # Purge two arcs + purge_str += f"G3 F{self.print_speed} X{round(radius_1 * .707, 2)} Y-{round(radius_1 * .707, 2)} I{round(radius_1 * .707, 2)} J{round(radius_1 * .707, 2)} E{purge_volume} ; First Arc\n" + purge_str += f"G0 X{round((radius_1 - 3) * .707, 2)} Y-{round((radius_1 - 3) * .707, 2)} ; Move Over\n" + purge_str += f"G2 F{self.print_speed} X-{round((radius_1 - 3) * .707, 2)} Y-{round((radius_1 - 3) * .707, 2)} I-{round((radius_1 - 3) * .707, 2)} J{round((radius_1 - 3) * .707, 2)} E{purge_volume * 2} ; Second Arc\n" + purge_str += f"G1 Y-{round((radius_1 - 3) * .707 - 25, 2)} E{round(purge_volume * 2 + 1, 5)} ; Move Over\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round((purge_volume * 2 + 1) - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z5 ; Move Up\nG4 S1 ; Wait 1 Second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} Y-{round((radius_1 - 3) * .707 - 15, 2)} Z0.3 ; Slide Over\n" + purge_str += f"G0 F{self.print_speed} Y-{round((radius_1 - 3) * .707, 2)} ; Wipe\n" + self.end_purge_location = Position.LEFT_FRONT + elif purge_location == Location.REAR: + # Travel to the purge start + purge_str += f"G0 F{self.speed_travel} X{round(radius_1 * .707, 2)} Y{round(radius_1 * .707, 2)} ; Travel\n" + purge_str += f"G0 F600 Z0.3 ; Move down\n" + # Purge two arcs + purge_str += f"G3 F{self.print_speed} X-{round(radius_1 * .707, 2)} Y{round(radius_1 * .707, 2)} I-{round(radius_1 * .707, 2)} J-{round(radius_1 * .707, 2)} E{purge_volume} ; First Arc\n" + purge_str += f"G0 X-{round((radius_1 - 3) * .707, 2)} Y{round((radius_1 - 3) * .707, 2)} ; Move Over\n" + purge_str += f"G2 F{self.print_speed} X{round((radius_1 - 3) * .707, 2)} Y{round((radius_1 - 3) * .707, 2)} I{round((radius_1 - 3) * .707, 2)} J-{round((radius_1 - 3) * .707, 2)} E{purge_volume * 2} ; Second Arc\n" + purge_str += f"G1 Y{round((radius_1 - 3) * .707 - 25, 2)} E{round(purge_volume * 2 + 1, 5)} ; Move Over\n" + # Retract if enabled + purge_str += f"G1 F{int(self.retract_speed)} E{round((purge_volume * 2 + 1) - self.retract_dist, 5)} ; Retract\n" if self.retraction_enable else "" + purge_str += "G0 F600 Z5\nG4 S1 ; Wait 1 Second\n" + # Wipe + purge_str += f"G0 F{self.print_speed} Y{round((radius_1 - 3) * .707 - 15, 2)} Z0.3 ; Slide Over\n" + purge_str += f"G0 F{self.print_speed} Y{round((radius_1 - 3) * .707, 2)} ; Wipe\n" + self.end_purge_location = Position.RIGHT_REAR + + # Common ending for purge_str + purge_str += "G0 F600 Z2 ; Move Z\n;---------------------[End of Purge]" + + # Comment out any existing purge lines in data + startup = data[1].split("\n") + for index, line in enumerate(startup): + if "G1" in line and " E" in line and (" X" in line or " Y" in line): + next_line = index + try: + while not startup[next_line].startswith("G92 E0"): + startup[next_line] = ";" + startup[next_line] + next_line += 1 + except IndexError: + break + data[1] = "\n".join(startup) + + # Find the insertion location in data + purge_str = self._format_string(purge_str) + startup_section = data[1].split("\n") + insert_index = len(startup_section) - 1 + for num in range(len(startup_section) - 1, 0, -1): + # In Absolute Extrusion mode - insert above the last G92 E0 line + if "G92 E0" in startup_section[num]: + insert_index = num + break + # In Relative Extrusion mode - insert above the M83 line + elif "M83" in startup_section[num]: + insert_index = num + break + startup_section.insert(insert_index, purge_str) + data[1] = "\n".join(startup_section) + return data + + # Travel moves around the bed periphery to keep strings from crossing the footprint of the model. + def _move_to_start(self, data: str) -> str: + if self.t0_has_offsets: + data[0] += "; [Purge Lines and Unload] 'Circle Around to Layer Start' did not run because the assumed primary nozzle (T0) has tool offsets.\n" + Message(title = "[Purge Lines and Unload]", text = "'Circle Around to Layer Start' did not run because the assumed primary nozzle (T0) has tool offsets.").show() + return data + self.start_x = None + self.start_y = None + move_str = None + layer = data[2].split("\n") + for line in layer: + if line.startswith("G0") and " X" in line and " Y" in line: + self.start_x = self.getValue(line, "X") + self.start_y = self.getValue(line, "Y") + break + self.start_x = self.start_x or 0 + self.start_y = self.start_y or 0 + if self.end_purge_location is None: + self.end_purge_location = Position.LEFT_FRONT + midpoint_x = self.machine_width / 2 + midpoint_y = self.machine_depth / 2 + if not self.origin_at_center: + if float(self.start_x) <= float(midpoint_x): + x_target = Location.LEFT + else: + x_target = Location.RIGHT + if float(self.start_y) <= float(midpoint_y): + y_target = Location.FRONT + else: + y_target = Location.REAR + else: + if float(self.start_x) <= 0: + x_target = Location.LEFT + else: + x_target = Location.RIGHT + if float(self.start_y) <= 0: + y_target = Location.FRONT + else: + y_target = Location.REAR + target_location = (x_target, y_target) + if self.bed_shape == "rectangular": + move_str = self._move_to_location("Layer Start", target_location) + elif self.bed_shape == "elliptic" and self.origin_at_center: + move_str = f";MESH:NONMESH---------[Travel to Layer Start]\nG0 F600 Z2 ; Move up\n" + radius = self.machine_width / 2 + offset_sin = round(2 ** .5 / 2 * radius, 2) + if target_location == Position.LEFT_FRONT: + move_str += f"G0 F{self.speed_travel} X-{offset_sin} Z2 ; Move\nG0 Y-{offset_sin} Z2 ; Move to start\n" + elif target_location == Position.LEFT_REAR: + if self.end_purge_location == Position.LEFT_REAR: + move_str += f"G2 X0 Y{offset_sin} I{offset_sin} J{offset_sin} ; Move around to start\n" + else: + move_str += f"G0 F{self.speed_travel} X-{offset_sin} Z2 ; Ortho move\nG0 Y{offset_sin} Z2 ; Ortho move\n" + elif target_location == Position.RIGHT_FRONT: + move_str += f"G0 F{self.speed_travel} X{offset_sin} Z2 ; Ortho move\nG0 Y-{offset_sin} Z2 ; Ortho move\n" + elif target_location == Position.RIGHT_REAR: + move_str += f"G0 F{self.speed_travel} X{offset_sin} Z2 ; Ortho move\nG0 Y{offset_sin} Z2 ; Ortho move\n" + move_str += ";---------------------[End of layer start travels]" + # Add the move_str to the end of the StartUp section and move 'LAYER_COUNT' to the end. + startup = data[1].split("\n") + move_str = self._format_string(move_str) + if move_str.startswith("\n"): + move_str = move_str[1:] + startup.append(move_str) + # Move the 'LAYER_COUNT' line so it's at the end of data[1] + for index, line in enumerate(startup): + if "LAYER_COUNT" in line: + lay_count = startup.pop(index) + "\n" + startup.append(lay_count) + break + + data[1] = "\n".join(startup) + # Remove any double-spaced lines + data[1] = data[1].replace("\n\n", "\n") + return data + + # Unloading a large amount of filament in a single command can trip the 'Overlong Extrusion' warning in some firmware. Unloads longer than 150mm are split into individual 150mm segments. + def _unload_filament(self, data: str) -> str: + extrude_speed = 3000 + quick_purge_speed = round(float(self.nozzle_size) * 500) + if self.material_diameter > 2: quick_purge_speed *= .38 # Adjustment for 2.85 filament + retract_amount = self.extruder[0].getProperty("retraction_amount", "value") + quick_purge_amount = retract_amount + 5 if retract_amount < 2.0 else retract_amount * 2 + unload_distance = self.getSettingValueByKey("unload_distance") + quick_purge = self.getSettingValueByKey("unload_quick_purge") + lines = data[-1].split("\n") + for index, line in enumerate(lines): + # Unload the filament just before the hot end turns off. + if line.startswith("M104") and "S0" in line: + filament_str = ( + "M83 ; [Unload] Relative extrusion\n" + "M400 ; Complete all moves\n" + ) + if quick_purge: + filament_str += f"G1 F{quick_purge_speed} E{quick_purge_amount} ; Quick Purge before unload\n" + if unload_distance > 150: + filament_str += "".join( + f"G1 F{extrude_speed} E-150 ; Unload some\n" + for _ in range(unload_distance // 150) + ) + remaining_unload = unload_distance % 150 + if remaining_unload > 0: + filament_str += f"G1 F{extrude_speed} E-{remaining_unload} ; Unload the remainder\n" + else: + filament_str += f"G1 F{extrude_speed} E-{unload_distance} ; Unload\n" + filament_str += ( + "M82 ; Absolute Extrusion\n" + "G92 E0 ; Reset Extruder\n" + ) + lines[index] = filament_str + line + break + data[-1] = "\n".join(lines) + return data + + # Make an adjustment to the starting E location so the skirt/brim/raft starts out when the nozzle starts out. + def _adjust_starting_e(self, data: str) -> str: + if not self.extruder[0].getProperty("retraction_enable", "value"): + return data + adjust_amount = self.getSettingValueByKey("adjust_e_loc_to") + lines = data[1].split("\n") + lines.reverse() + if self.global_stack.getProperty("machine_firmware_retract", "value"): + search_pattern = r"G10" + else: + search_pattern = r"G1 F(\d*) E-(\d.*)" + for index, line in enumerate(lines): + if re.search(search_pattern, line): + lines[index] = re.sub(search_pattern, f"G92 E{adjust_amount}", line) + lines.reverse() + data[1] = "\n".join(lines) + break + return data + + # Format the purge or travel-to-start strings. No reason they shouldn't look nice. + def _format_string(self, any_gcode_str: str): + temp_lines = any_gcode_str.split("\n") + gap_len = 0 + for temp_line in temp_lines: + if ";" in temp_line and not temp_line.startswith(";"): + if gap_len - len(temp_line.split(";")[0]) + 1 < 0: + gap_len = len(temp_line.split(";")[0]) + 1 + if gap_len < 30: gap_len = 30 + for temp_index, temp_line in enumerate(temp_lines): + if ";" in temp_line and not temp_line.startswith(";"): + temp_lines[temp_index] = temp_line.replace(temp_line.split(";")[0], temp_line.split(";")[0] + str( + " " * (gap_len - len(temp_line.split(";")[0]))), 1) + # This formats lines that are commented out but contain additional comments Ex: ;M420 ; leveling mesh + elif temp_line.startswith(";") and ";" in temp_line[1:]: + temp_lines[temp_index] = temp_line[1:].replace(temp_line[1:].split(";")[0], + ";" + temp_line[1:].split(";")[0] + str(" " * ( + gap_len - 1 - len( + temp_line[1:].split(";")[0]))), 1) + any_gcode_str = "\n".join(temp_lines) + return any_gcode_str + + def _get_initial_tool(self) -> int: + # Get the Initial Extruder + num = Application.getInstance().getExtruderManager().getInitialExtruderNr() + if num is None or num == -1: + num = 0 + # If there is an extruder offset X then it will be used to adjust the "machine_right" and a Y offset will adjust the "machine_back" + if self.extruder_count > 1 and bool(self.global_stack.getProperty("machine_use_extruder_offset_to_offset_coords", "value")): + self.nozzle_offset_x = self.extruder[1].getProperty("machine_nozzle_offset_x", "value") + self.nozzle_offset_y = self.extruder[1].getProperty("machine_nozzle_offset_y", "value") + else: + self.nozzle_offset_x = 0.0 + self.nozzle_offset_y = 0.0 + self.material_diameter = self.extruder[num].getProperty("material_diameter", "value") + self.nozzle_size = self.extruder[num].getProperty("machine_nozzle_size", "value") + self.init_line_width = self.extruder[num].getProperty("skirt_brim_line_width", "value") + self.print_speed = round(self.extruder[num].getProperty("speed_print", "value") * 60 * .75) + self.speed_travel = round(self.extruder[num].getProperty("speed_travel", "value") * 60) + self.retract_dist = self.extruder[num].getProperty("retraction_amount", "value") + self.retraction_enable = self.extruder[num].getProperty("retraction_enable", "value") + self.retract_speed = self.extruder[num].getProperty("retraction_retract_speed", "value") * 60 + self.mm3_per_mm = (self.material_diameter / 2) ** 2 * math.pi + # Don't add purge lines if 'T0' has offsets. + t0_x_offset = self.extruder[0].getProperty("machine_nozzle_offset_x", "value") + t0_y_offset = self.extruder[0].getProperty("machine_nozzle_offset_y", "value") + if t0_x_offset or t0_y_offset: + self.t0_has_offsets = True + return num + + def _get_blob_code(self) -> str: + if not self.prime_blob_enable or self.prime_blob_distance == 0 or self.getSettingValueByKey("purge_line_location") not in ["front", "left"]: + return "" + # Set extruder speed for 1.75 filament + speed_blob = round(float(self.nozzle_size) * 500) + # Adjust speed if 2.85 filament + if self.material_diameter > 2: speed_blob *= .4 + blob_x = self.getSettingValueByKey("prime_blob_loc_x") + blob_y = self.getSettingValueByKey("prime_blob_loc_y") + blob_string = "G0 F1200 Z20 ; Move up\n" + blob_string += f"G0 F{self.speed_travel} X{blob_x} Y{blob_y} ; Move to blob location\n" + blob_string += f"G1 F{speed_blob} E{self.prime_blob_distance} ; Blob\n" + blob_string += f"G1 F{self.retract_speed} E{self.prime_blob_distance - self.retract_dist} ; Retract\n" + blob_string += "G92 E0 ; Reset extruder\n" + blob_string += "M300 P500 S600 ; Beep\n" + blob_string += "G4 S2 ; Wait\n" + return blob_string diff --git a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py index dabc6b725a..db062f4084 100644 --- a/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py +++ b/plugins/PostProcessingPlugin/scripts/SearchAndReplace.py @@ -1,20 +1,20 @@ # Copyright (c) 2017 Ghostkeeper # The PostProcessingPlugin is released under the terms of the LGPLv3 or higher. +# Altered by GregValiant (Greg Foresi) February, 2025. +# Added option for "first instance only" +# Added option for a layer search with a Start Layer and an End layer. +# Added 'Ignore StartUp G-code' and 'Ignore Ending G-code' options -import re # To perform the search and replace. - +import re from ..Script import Script - +from UM.Application import Application class SearchAndReplace(Script): - """Performs a search-and-replace on all g-code. - - Due to technical limitations, the search can't cross the border between - layers. + """Performs a search-and-replace on the g-code. """ def getSettingDataString(self): - return """{ + return r"""{ "name": "Search and Replace", "key": "SearchAndReplace", "metadata": {}, @@ -23,37 +23,145 @@ class SearchAndReplace(Script): { "search": { - "label": "Search", - "description": "All occurrences of this text will get replaced by the replacement text.", + "label": "Search for:", + "description": "All occurrences of this text (within the search range) will be replaced by the 'Replace with' string. The search string is 'Case Sensitive' and 'Layer' is not the same as 'layer'.", "type": "str", "default_value": "" }, "replace": { - "label": "Replace", - "description": "The search text will get replaced by this text.", + "label": "Replace with:", + "description": "The 'Search For' text will get replaced by this text. For MultiLine insertions use the newline character '\\n' as the delimiter. If your Search term ends with a '\\n' remember to add '\\n' to the end of this Replace term.", "type": "str", "default_value": "" }, "is_regex": { "label": "Use Regular Expressions", - "description": "When enabled, the search text will be interpreted as a regular expression.", + "description": "When disabled the search string is treated as a simple text string. When enabled, the search text will be interpreted as a Python regular expression.", "type": "bool", "default_value": false + }, + "enable_layer_search": + { + "label": "Enable search within a Layer Range:", + "description": "When enabled, You can choose a Start and End layer for the search. When 'Layer Search' is enabled the StartUp and Ending gcodes are always ignored.", + "type": "bool", + "default_value": false, + "enabled": true + }, + "search_start": + { + "label": "Start S&R at Layer:", + "description": "Use the Cura Preview layer numbering.", + "type": "int", + "default_value": 1, + "minimum_value": 1, + "enabled": "enable_layer_search" + }, + "search_end": + { + "label": "Stop S&R at end of Layer:", + "description": "Use the Cura Preview layer numbering. The replacements will conclude at the end of this layer. If the End Layer is equal to the Start Layer then only that single layer is searched.", + "type": "int", + "default_value": 2, + "minimum_value": 1, + "enabled": "enable_layer_search" + }, + "first_instance_only": + { + "label": "Replace first instance only:", + "description": "When enabled only the first instance is replaced.", + "type": "bool", + "default_value": false, + "enabled": true + }, + "ignore_start": + { + "label": "Ignore StartUp G-code:", + "description": "When enabled the StartUp Gcode is unaffected. The StartUp Gcode is everything from ';generated with Cura...' to ';LAYER_COUNT:' inclusive.", + "type": "bool", + "default_value": true, + "enabled": "not enable_layer_search" + }, + "ignore_end": + { + "label": "Ignore Ending G-code:", + "description": "When enabled the Ending Gcode is unaffected.", + "type": "bool", + "default_value": true, + "enabled": "not enable_layer_search" } } }""" def execute(self, data): + global_stack = Application.getInstance().getGlobalContainerStack() + extruder = global_stack.extruderList + retract_enabled = bool(extruder[0].getProperty("retraction_enable", "value")) search_string = self.getSettingValueByKey("search") - if not self.getSettingValueByKey("is_regex"): - search_string = re.escape(search_string) #Need to search for the actual string, not as a regex. - search_regex = re.compile(search_string) - replace_string = self.getSettingValueByKey("replace") + is_regex = self.getSettingValueByKey("is_regex") + enable_layer_search = self.getSettingValueByKey("enable_layer_search") + start_layer = self.getSettingValueByKey("search_start") + end_layer = self.getSettingValueByKey("search_end") + ignore_start = self.getSettingValueByKey("ignore_start") + ignore_end = self.getSettingValueByKey("ignore_end") + if enable_layer_search: + ignore_start = True + ignore_end = True + first_instance_only = bool(self.getSettingValueByKey("first_instance_only")) - for layer_number, layer in enumerate(data): - data[layer_number] = re.sub(search_regex, replace_string, layer) #Replace all. + # Account for missing layer numbers when a raft is used + start_index = 1 + end_index = len(data) - 1 + data_list = [0,1] + layer_list = [-1,0] + lay_num = 1 + for index, layer in enumerate(data): + if re.search(r";LAYER:(-?\d+)", layer): + data_list.append(index) + layer_list.append(lay_num) + lay_num += 1 - return data \ No newline at end of file + # Get the start and end indexes within the data + if not enable_layer_search: + if ignore_start: + start_index = 2 + else: + start_index = 1 + + if ignore_end: + end_index = data_list[len(data_list) - 1] + else: + # Account for the extra data item when retraction is enabled + end_index = data_list[len(data_list) - 1] + (2 if retract_enabled else 1) + + elif enable_layer_search: + for index, num in enumerate(layer_list): + if num == start_layer: + start_index = data_list[index] + if num == end_layer: + end_index = data_list[index] + + # Make replacements + replace_one = False + if not is_regex: + search_string = re.escape(search_string) + search_regex = re.compile(search_string) + for num in range(start_index, end_index + 1, 1): + layer = data[num] + # First_instance only + if first_instance_only: + if re.search(search_regex, layer) and replace_one == False: + data[num] = re.sub(search_regex, replace_string, data[num], 1) + replace_one = True + break + # All instances + else: + if end_index > start_index: + data[num] = re.sub(search_regex, replace_string, layer) + elif end_index == start_index: + layer = data[start_index] + data[start_index] = re.sub(search_regex, replace_string, layer) + return data diff --git a/plugins/PostProcessingPlugin/scripts/TimeLapse.py b/plugins/PostProcessingPlugin/scripts/TimeLapse.py index 210199e087..f78765f3f0 100644 --- a/plugins/PostProcessingPlugin/scripts/TimeLapse.py +++ b/plugins/PostProcessingPlugin/scripts/TimeLapse.py @@ -1,9 +1,15 @@ -# Copyright (c) 2020 Ultimaker B.V. -# Cura is released under the terms of the LGPLv3 or higher. -# Created by Wayne Porter +# Modified 5/15/2023 - Greg Valiant (Greg Foresi) +# Created by Wayne Porter +# Added insertion frequency +# Adjusted for use with Relative Extrusion +# Changed Retract to a boolean and when true use the regular Cura retract settings. +# Use the regular Cura settings for Travel Speed and Speed_Z instead of asking. +# Added code to check the E location to prevent retracts if the filament was already retracted. +# Added 'Pause before image' per LemanRus from ..Script import Script - +from UM.Application import Application +from UM.Logger import Logger class TimeLapse(Script): def __init__(self): @@ -11,7 +17,7 @@ class TimeLapse(Script): def getSettingDataString(self): return """{ - "name": "Time Lapse", + "name": "Time Lapse Camera", "key": "TimeLapse", "metadata": {}, "version": 2, @@ -19,24 +25,49 @@ class TimeLapse(Script): { "trigger_command": { - "label": "Trigger camera command", - "description": "G-code command used to trigger camera.", + "label": "Camera Trigger Command", + "description": "G-code command used to trigger the camera. The setting box will take any command and parameters.", "type": "str", "default_value": "M240" }, + "insert_frequency": + { + "label": "How often (layers)", + "description": "Every so many layers (always starts at the first layer whether it's the model or a raft).", + "type": "enum", + "options": { + "every_layer": "Every Layer", + "every_2nd": "Every 2nd", + "every_3rd": "Every 3rd", + "every_5th": "Every 5th", + "every_10th": "Every 10th", + "every_25th": "Every 25th", + "every_50th": "Every 50th", + "every_100th": "Every 100th"}, + "default_value": "every_layer" + }, + "anti_shake_length": + { + "label": "Pause before image", + "description": "How long to wait (in ms) before capturing the image. This is to allow the printer to 'settle down' after movement. To disable set this to '0'.", + "type": "int", + "default_value": 0, + "minimum_value": 0, + "unit": "ms" + }, "pause_length": { - "label": "Pause length", + "label": "Pause after image", "description": "How long to wait (in ms) after camera was triggered.", "type": "int", - "default_value": 700, + "default_value": 500, "minimum_value": 0, "unit": "ms" }, "park_print_head": { "label": "Park Print Head", - "description": "Park the print head out of the way. Assumes absolute positioning.", + "description": "Park the print head out of the way.", "type": "bool", "default_value": true }, @@ -55,90 +86,166 @@ class TimeLapse(Script): "description": "What Y location does the head move to for photo.", "unit": "mm", "type": "float", - "default_value": 190, - "enabled": "park_print_head" - }, - "park_feed_rate": - { - "label": "Park Feed Rate", - "description": "How fast does the head move to the park coordinates.", - "unit": "mm/s", - "type": "float", - "default_value": 9000, + "default_value": 0, "enabled": "park_print_head" }, "retract": { - "label": "Retraction Distance", - "description": "Filament retraction distance for camera trigger.", - "unit": "mm", - "type": "int", - "default_value": 0 + "label": "Retract when required", + "description": "Retract if there isn't already a retraction. If unchecked then there will be no retraction even if there is none in the gcode. If retractions are not enabled in Cura there won't be a retraction. regardless of this setting.", + "type": "bool", + "default_value": true }, "zhop": { "label": "Z-Hop Height When Parking", - "description": "Z-hop length before parking", + "description": "The height to lift the nozzle off the print before parking.", "unit": "mm", "type": "float", - "default_value": 0 + "default_value": 2.0, + "minimum_value": 0.0 + }, + "ensure_final_image": + { + "label": "Ensure Final Image", + "description": "Depending on how the layer numbers work out with the 'How Often' frequency there might not be an image taken at the end of the last layer. This will ensure that one is taken. There is no parking as the Ending Gcode comes right up.", + "type": "bool", + "default_value": false } } }""" def execute(self, data): - feed_rate = self.getSettingValueByKey("park_feed_rate") + mycura = Application.getInstance().getGlobalContainerStack() + relative_extrusion = bool(mycura.getProperty("relative_extrusion", "value")) + extruder = mycura.extruderList + retract_speed = int(extruder[0].getProperty("retraction_speed", "value"))*60 + retract_dist = round(float(extruder[0].getProperty("retraction_amount", "value")), 2) + retract_enabled = bool(extruder[0].getProperty("retraction_enable", "value")) + firmware_retract = bool(mycura.getProperty("machine_firmware_retract", "value")) + speed_z = int(extruder[0].getProperty("speed_z_hop", "value"))*60 + if relative_extrusion: + rel_cmd = 83 + else: + rel_cmd = 82 + travel_speed = int(extruder[0].getProperty("speed_travel", "value"))*60 park_print_head = self.getSettingValueByKey("park_print_head") x_park = self.getSettingValueByKey("head_park_x") y_park = self.getSettingValueByKey("head_park_y") trigger_command = self.getSettingValueByKey("trigger_command") pause_length = self.getSettingValueByKey("pause_length") - retract = int(self.getSettingValueByKey("retract")) + retract = bool(self.getSettingValueByKey("retract")) zhop = self.getSettingValueByKey("zhop") - gcode_to_append = ";TimeLapse Begin\n" + ensure_final_image = bool(self.getSettingValueByKey("ensure_final_image")) + when_to_insert = self.getSettingValueByKey("insert_frequency") last_x = 0 last_y = 0 last_z = 0 - + last_e = 0 + prev_e = 0 + is_retracted = False + gcode_to_append = "" if park_print_head: - gcode_to_append += self.putValue(G=1, F=feed_rate, - X=x_park, Y=y_park) + " ;Park print head\n" - gcode_to_append += self.putValue(M=400) + " ;Wait for moves to finish\n" - gcode_to_append += trigger_command + " ;Snap Photo\n" - gcode_to_append += self.putValue(G=4, P=pause_length) + " ;Wait for camera\n" - - for idx, layer in enumerate(data): - for line in layer.split("\n"): - if self.getValue(line, "G") in {0, 1}: # Track X,Y,Z location. - last_x = self.getValue(line, "X", last_x) - last_y = self.getValue(line, "Y", last_y) - last_z = self.getValue(line, "Z", last_z) - # Check that a layer is being printed - lines = layer.split("\n") - for line in lines: - if ";LAYER:" in line: - if retract != 0: # Retract the filament so no stringing happens - layer += self.putValue(M=83) + " ;Extrude Relative\n" - layer += self.putValue(G=1, E=-retract, F=3000) + " ;Retract filament\n" - layer += self.putValue(M=82) + " ;Extrude Absolute\n" - layer += self.putValue(M=400) + " ;Wait for moves to finish\n" # Wait to fully retract before hopping - - if zhop != 0: - layer += self.putValue(G=1, Z=last_z+zhop, F=3000) + " ;Z-Hop\n" - - layer += gcode_to_append - - if zhop != 0: - layer += self.putValue(G=0, X=last_x, Y=last_y, Z=last_z) + "; Restore position \n" - else: - layer += self.putValue(G=0, X=last_x, Y=last_y) + "; Restore position \n" - - if retract != 0: - layer += self.putValue(M=400) + " ;Wait for moves to finish\n" - layer += self.putValue(M=83) + " ;Extrude Relative\n" - layer += self.putValue(G=1, E=retract, F=3000) + " ;Retract filament\n" - layer += self.putValue(M=82) + " ;Extrude Absolute\n" - - data[idx] = layer - break + gcode_to_append += f"G0 F{travel_speed} X{x_park} Y{y_park} ;Park print head\n" + gcode_to_append += "M400 ;Wait for moves to finish\n" + anti_shake_length = self.getSettingValueByKey("anti_shake_length") + if anti_shake_length > 0: + gcode_to_append += f"G4 P{anti_shake_length} ;Wait for printer to settle down\n" + gcode_to_append += trigger_command + " ;Snap the Image\n" + gcode_to_append += f"G4 P{pause_length} ;Wait for camera to finish\n" + match when_to_insert: + case "every_layer": + step_freq = 1 + case "every_2nd": + step_freq = 2 + case "every_3rd": + step_freq = 3 + case "every_5th": + step_freq = 5 + case "every_10th": + step_freq = 10 + case "every_25th": + step_freq = 25 + case "every_50th": + step_freq = 50 + case "every_100th": + step_freq = 100 + case _: + step_freq = 1 + # Use the step_freq to index through the layers---------------------------------------- + for num in range(2,len(data)-1,step_freq): + layer = data[num] + try: + # Track X,Y,Z location.-------------------------------------------------------- + for line in layer.split("\n"): + if self.getValue(line, "G") in {0, 1}: + last_x = self.getValue(line, "X", last_x) + last_y = self.getValue(line, "Y", last_y) + last_z = self.getValue(line, "Z", last_z) + #Track the E location so that if there is already a retraction we don't double dip. + if rel_cmd == 82: + if " E" in line: + last_e = line.split("E")[1] + if float(last_e) < float(prev_e): + is_retracted = True + else: + is_retracted = False + prev_e = last_e + elif rel_cmd == 83: + if " E" in line: + last_e = line.split("E")[1] + if float(last_e) < 0: + is_retracted = True + else: + is_retracted = False + prev_e = last_e + if firmware_retract and self.getValue(line, "G") in {10, 11}: + if self.getValue(line, "G") == 10: + is_retracted = True + last_e = float(prev_e) - float(retract_dist) + if self.getValue(line, "G") == 11: + is_retracted = False + last_e = float(prev_e) + float(retract_dist) + prev_e = last_e + lines = layer.split("\n") + # Insert the code---------------------------------------------------- + camera_code = "" + for line in lines: + if ";LAYER:" in line: + if retract and not is_retracted and retract_enabled: # Retract unless already retracted + camera_code += ";TYPE:CUSTOM-----------------TimeLapse Begin\n" + camera_code += "M83 ;Extrude Relative\n" + if not firmware_retract: + camera_code += f"G1 F{retract_speed} E-{retract_dist} ;Retract filament\n" + else: + camera_code += "G10 ;Retract filament\n" + else: + camera_code += ";TYPE:CUSTOM-----------------TimeLapse Begin\n" + if zhop != 0: + camera_code += f"G1 F{speed_z} Z{round(last_z + zhop,2)} ;Z-Hop\n" + camera_code += gcode_to_append + camera_code += f"G0 F{travel_speed} X{last_x} Y{last_y} ;Restore XY position\n" + if zhop != 0: + camera_code += f"G0 F{speed_z} Z{last_z} ;Restore Z position\n" + if retract and not is_retracted and retract_enabled: + if not firmware_retract: + camera_code += f"G1 F{retract_speed} E{retract_dist} ;Un-Retract filament\n" + else: + camera_code += "G11 ;Un-Retract filament\n" + camera_code += f"M{rel_cmd} ;Extrude Mode\n" + camera_code += f";{'-' * 28}TimeLapse End" + # Format the camera code to be inserted + temp_lines = camera_code.split("\n") + for temp_index, temp_line in enumerate(temp_lines): + if ";" in temp_line and not temp_line.startswith(";"): + temp_lines[temp_index] = temp_line.replace(temp_line.split(";")[0], temp_line.split(";")[0] + str(" " * (29 - len(temp_line.split(";")[0]))),1) + temp_lines = "\n".join(temp_lines) + lines.insert(len(lines) - 2, temp_lines) + data[num] = "\n".join(lines) + break + except Exception as e: + Logger.log("w", "TimeLapse Error: " + repr(e)) + # Take a final image if there was no camera shot at the end of the last layer. + if "TimeLapse Begin" not in data[len(data) - (3 if retract_enabled else 2)] and ensure_final_image: + data[len(data)-1] = "M400 ; Wait for all moves to finish\n" + trigger_command + " ;Snap the final Image\n" + f"G4 P{pause_length} ;Wait for camera\n" + data[len(data)-1] return data diff --git a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py index a9a0666d9c..2ddf8aa334 100644 --- a/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py +++ b/plugins/RemovableDriveOutputDevice/RemovableDriveOutputDevice.py @@ -101,7 +101,8 @@ class RemovableDriveOutputDevice(OutputDevice): self._stream = open(file_name, "wt", buffering = 1, encoding = "utf-8") else: #Binary mode. self._stream = open(file_name, "wb", buffering = 1) - job = WriteFileJob(writer, self._stream, nodes, preferred_format["mode"]) + writer_args = {"mime_type": preferred_format["mime_type"]} + job = WriteFileJob(writer, self._stream, nodes, preferred_format["mode"], writer_args) job.setFileName(file_name) job.progress.connect(self._onProgress) job.finished.connect(self._onFinished) diff --git a/plugins/SimulationView/SimulationPass.py b/plugins/SimulationView/SimulationPass.py index 080b02bd9e..436d5b8723 100644 --- a/plugins/SimulationView/SimulationPass.py +++ b/plugins/SimulationView/SimulationPass.py @@ -67,39 +67,40 @@ class SimulationPass(RenderPass): if not self._compatibility_mode: self._layer_shader.setUniformValue("u_starts_color", Color(*Application.getInstance().getTheme().getColor("layerview_starts").getRgb())) - if self._layer_view: - self._layer_shader.setUniformValue("u_max_feedrate", self._layer_view.getMaxFeedrate()) - self._layer_shader.setUniformValue("u_min_feedrate", self._layer_view.getMinFeedrate()) - self._layer_shader.setUniformValue("u_max_thickness", self._layer_view.getMaxThickness()) - self._layer_shader.setUniformValue("u_min_thickness", self._layer_view.getMinThickness()) - self._layer_shader.setUniformValue("u_max_line_width", self._layer_view.getMaxLineWidth()) - self._layer_shader.setUniformValue("u_min_line_width", self._layer_view.getMinLineWidth()) - self._layer_shader.setUniformValue("u_max_flow_rate", self._layer_view.getMaxFlowRate()) - self._layer_shader.setUniformValue("u_min_flow_rate", self._layer_view.getMinFlowRate()) - self._layer_shader.setUniformValue("u_layer_view_type", self._layer_view.getSimulationViewType()) - self._layer_shader.setUniformValue("u_extruder_opacity", self._layer_view.getExtruderOpacities()) - self._layer_shader.setUniformValue("u_show_travel_moves", self._layer_view.getShowTravelMoves()) - self._layer_shader.setUniformValue("u_show_helpers", self._layer_view.getShowHelpers()) - self._layer_shader.setUniformValue("u_show_skin", self._layer_view.getShowSkin()) - self._layer_shader.setUniformValue("u_show_infill", self._layer_view.getShowInfill()) - self._layer_shader.setUniformValue("u_show_starts", self._layer_view.getShowStarts()) - else: - #defaults - self._layer_shader.setUniformValue("u_max_feedrate", 1) - self._layer_shader.setUniformValue("u_min_feedrate", 0) - self._layer_shader.setUniformValue("u_max_thickness", 1) - self._layer_shader.setUniformValue("u_min_thickness", 0) - self._layer_shader.setUniformValue("u_max_flow_rate", 1) - self._layer_shader.setUniformValue("u_min_flow_rate", 0) - self._layer_shader.setUniformValue("u_max_line_width", 1) - self._layer_shader.setUniformValue("u_min_line_width", 0) - self._layer_shader.setUniformValue("u_layer_view_type", 1) - self._layer_shader.setUniformValue("u_extruder_opacity", [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]]) - self._layer_shader.setUniformValue("u_show_travel_moves", 0) - self._layer_shader.setUniformValue("u_show_helpers", 1) - self._layer_shader.setUniformValue("u_show_skin", 1) - self._layer_shader.setUniformValue("u_show_infill", 1) - self._layer_shader.setUniformValue("u_show_starts", 1) + for shader in [self._layer_shader, self._layer_shadow_shader]: + if self._layer_view: + shader.setUniformValue("u_max_feedrate", self._layer_view.getMaxFeedrate()) + shader.setUniformValue("u_min_feedrate", self._layer_view.getMinFeedrate()) + shader.setUniformValue("u_max_thickness", self._layer_view.getMaxThickness()) + shader.setUniformValue("u_min_thickness", self._layer_view.getMinThickness()) + shader.setUniformValue("u_max_line_width", self._layer_view.getMaxLineWidth()) + shader.setUniformValue("u_min_line_width", self._layer_view.getMinLineWidth()) + shader.setUniformValue("u_max_flow_rate", self._layer_view.getMaxFlowRate()) + shader.setUniformValue("u_min_flow_rate", self._layer_view.getMinFlowRate()) + shader.setUniformValue("u_layer_view_type", self._layer_view.getSimulationViewType()) + shader.setUniformValue("u_extruder_opacity", self._layer_view.getExtruderOpacities()) + shader.setUniformValue("u_show_travel_moves", self._layer_view.getShowTravelMoves()) + shader.setUniformValue("u_show_helpers", self._layer_view.getShowHelpers()) + shader.setUniformValue("u_show_skin", self._layer_view.getShowSkin()) + shader.setUniformValue("u_show_infill", self._layer_view.getShowInfill()) + shader.setUniformValue("u_show_starts", self._layer_view.getShowStarts()) + else: + #defaults + shader.setUniformValue("u_max_feedrate", 1) + shader.setUniformValue("u_min_feedrate", 0) + shader.setUniformValue("u_max_thickness", 1) + shader.setUniformValue("u_min_thickness", 0) + shader.setUniformValue("u_max_flow_rate", 1) + shader.setUniformValue("u_min_flow_rate", 0) + shader.setUniformValue("u_max_line_width", 1) + shader.setUniformValue("u_min_line_width", 0) + shader.setUniformValue("u_layer_view_type", 1) + shader.setUniformValue("u_extruder_opacity", [[1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1], [1, 1, 1, 1]]) + shader.setUniformValue("u_show_travel_moves", 0) + shader.setUniformValue("u_show_helpers", 1) + shader.setUniformValue("u_show_skin", 1) + shader.setUniformValue("u_show_infill", 1) + shader.setUniformValue("u_show_starts", 1) if not self._tool_handle_shader: self._tool_handle_shader = OpenGL.getInstance().createShaderProgram(Resources.getPath(Resources.Shaders, "toolhandle.shader")) diff --git a/plugins/SimulationView/SimulationView.py b/plugins/SimulationView/SimulationView.py index 10b68edaa0..10861acfd0 100644 --- a/plugins/SimulationView/SimulationView.py +++ b/plugins/SimulationView/SimulationView.py @@ -222,12 +222,11 @@ class SimulationView(CuraView): self.setPath(i + fractional_value) - def advanceTime(self, time_increase: float) -> bool: + def advanceTime(self, time_increase: float) -> None: """ Advance the time by the given amount. :param time_increase: The amount of time to advance (in seconds). - :return: True if the time was advanced, False if the end of the simulation was reached. """ total_duration = 0.0 if len(self.cumulativeLineDuration()) > 0: @@ -237,15 +236,13 @@ class SimulationView(CuraView): # If we have reached the end of the simulation, go to the next layer. if self.getCurrentLayer() == self.getMaxLayers(): # If we are already at the last layer, go to the first layer. - self.setTime(total_duration) - return False - - # advance to the next layer, and reset the time - self.setLayer(self.getCurrentLayer() + 1) + self.setLayer(0) + else: + # advance to the next layer, and reset the time + self.setLayer(self.getCurrentLayer() + 1) self.setTime(0.0) else: self.setTime(self._current_time + time_increase) - return True def cumulativeLineDuration(self) -> List[float]: # Make sure _cumulative_line_duration is initialized properly @@ -256,9 +253,19 @@ class SimulationView(CuraView): polylines = self.getLayerData() if polylines is not None: for polyline in polylines.polygons: - for line_duration in list((polyline.lineLengths / polyline.lineFeedrates)[0]): + for line_index in range(len(polyline.lineLengths)): + line_length = polyline.lineLengths[line_index] + line_feedrate = polyline.lineFeedrates[line_index][0] + + if line_feedrate > 0.0: + line_duration = line_length / line_feedrate + else: + # Something is wrong with this line, set an arbitrary non-null duration + line_duration = 0.1 + total_duration += line_duration / SimulationView.SIMULATION_FACTOR self._cumulative_line_duration.append(total_duration) + # for tool change we add an extra tool path self._cumulative_line_duration.append(total_duration) # set current cached layer @@ -583,7 +590,7 @@ class SimulationView(CuraView): self._max_thickness = sys.float_info.min self._min_flow_rate = sys.float_info.max self._max_flow_rate = sys.float_info.min - self._cumulative_line_duration = {} + self._cumulative_line_duration = [] # The colour scheme is only influenced by the visible lines, so filter the lines by if they should be visible. visible_line_types = [] diff --git a/plugins/SimulationView/SimulationViewMainComponent.qml b/plugins/SimulationView/SimulationViewMainComponent.qml index d9e7a95bc1..602d403a8a 100644 --- a/plugins/SimulationView/SimulationViewMainComponent.qml +++ b/plugins/SimulationView/SimulationViewMainComponent.qml @@ -144,9 +144,7 @@ Item { // divide by 1000 to account for ms to s conversion const advance_time = simulationTimer.interval / 1000.0; - if (!UM.SimulationView.advanceTime(advance_time)) { - playButton.pauseSimulation(); - } + UM.SimulationView.advanceTime(advance_time); // The status must be set here instead of in the resumeSimulation function otherwise it won't work // correctly, because part of the logic is in this trigger function. isSimulationPlaying = true; diff --git a/plugins/SimulationView/SimulationViewProxy.py b/plugins/SimulationView/SimulationViewProxy.py index bf449a99d1..30fed1422c 100644 --- a/plugins/SimulationView/SimulationViewProxy.py +++ b/plugins/SimulationView/SimulationViewProxy.py @@ -54,9 +54,9 @@ class SimulationViewProxy(QObject): def currentPath(self): return self._simulation_view.getCurrentPath() - @pyqtSlot(float, result=bool) - def advanceTime(self, duration: float) -> bool: - return self._simulation_view.advanceTime(duration) + @pyqtSlot(float) + def advanceTime(self, duration: float) -> None: + self._simulation_view.advanceTime(duration) @pyqtProperty(int, notify=currentPathChanged) def minimumPath(self): diff --git a/plugins/SimulationView/layers3d.shader b/plugins/SimulationView/layers3d.shader index 2bf77e89fa..494a07083d 100644 --- a/plugins/SimulationView/layers3d.shader +++ b/plugins/SimulationView/layers3d.shader @@ -360,8 +360,8 @@ geometry41core = ((v_prev_line_type[0] != 1) && (v_line_type[0] == 1)) || ((v_prev_line_type[0] != 4) && (v_line_type[0] == 4)) )) { - float w = size_x; - float h = size_y; + float w = max(0.05, size_x); + float h = max(0.05, size_y); myEmitVertex(v_vertex[0] + vec3( w, h, w), u_starts_color, normalize(vec3( 1.0, 1.0, 1.0)), viewProjectionMatrix * (gl_in[0].gl_Position + vec4( w, h, w, 0.0))); // Front-top-left myEmitVertex(v_vertex[0] + vec3(-w, h, w), u_starts_color, normalize(vec3(-1.0, 1.0, 1.0)), viewProjectionMatrix * (gl_in[0].gl_Position + vec4(-w, h, w, 0.0))); // Front-top-right diff --git a/plugins/SliceInfoPlugin/SliceInfo.py b/plugins/SliceInfoPlugin/SliceInfo.py index 411146d065..81c0ca05c8 100755 --- a/plugins/SliceInfoPlugin/SliceInfo.py +++ b/plugins/SliceInfoPlugin/SliceInfo.py @@ -1,11 +1,12 @@ # Copyright (c) 2023 UltiMaker # Cura is released under the terms of the LGPLv3 or higher. +import datetime import json import os import platform import time -from typing import Optional, Set, TYPE_CHECKING +from typing import Any, Optional, Set, TYPE_CHECKING from PyQt6.QtCore import pyqtSlot, QObject from PyQt6.QtNetwork import QNetworkRequest @@ -33,7 +34,18 @@ class SliceInfo(QObject, Extension): no model files are being sent (Just a SHA256 hash of the model). """ - info_url = "https://stats.ultimaker.com/api/cura" + info_url = "https://statistics.ultimaker.com/api/v2/cura/slice" + + _adjust_flattened_names = { + "extruders_extruder": "extruders", + "extruders_settings": "extruders", + "models_model": "models", + "models_transformation_data": "models_transformation", + "print_settings_": "", + "print_times": "print_time", + "active_machine_": "", + "slice_uuid": "slice_id", + } def __init__(self, parent = None): QObject.__init__(self, parent) @@ -112,6 +124,26 @@ class SliceInfo(QObject, Extension): return list(sorted(user_modified_setting_keys)) + def _flattenData(self, data: Any, result: dict, current_flat_key: Optional[str] = None, lift_list: bool = False) -> None: + if isinstance(data, dict): + for key, value in data.items(): + total_flat_key = key if current_flat_key is None else f"{current_flat_key}_{key}" + self._flattenData(value, result, total_flat_key, lift_list) + elif isinstance(data, list): + for item in data: + self._flattenData(item, result, current_flat_key, True) + else: + actual_flat_key = current_flat_key.lower() + for key, value in self._adjust_flattened_names.items(): + if actual_flat_key.startswith(key): + actual_flat_key = actual_flat_key.replace(key, value) + if lift_list: + if actual_flat_key not in result: + result[actual_flat_key] = [] + result[actual_flat_key].append(data) + else: + result[actual_flat_key] = data + def _onWriteStarted(self, output_device): try: if not self._application.getPreferences().getValue("info/send_slice_info"): @@ -125,8 +157,7 @@ class SliceInfo(QObject, Extension): global_stack = machine_manager.activeMachine data = dict() # The data that we're going to submit. - data["time_stamp"] = time.time() - data["schema_version"] = 0 + data["schema_version"] = 1000 data["cura_version"] = self._application.getVersion() data["cura_build_type"] = ApplicationMetadata.CuraBuildType org_id = user_profile.get("organization_id", None) if user_profile else None @@ -298,6 +329,11 @@ class SliceInfo(QObject, Extension): "time_backend": int(round(time_backend)), } + # Massage data into format used in the DB: + flat_data = dict() + self._flattenData(data, flat_data) + data = flat_data + # Convert data to bytes binary_data = json.dumps(data).encode("utf-8") diff --git a/plugins/UFPWriter/UFPWriter.py b/plugins/UFPWriter/UFPWriter.py index 475e5fc01a..c5558c1140 100644 --- a/plugins/UFPWriter/UFPWriter.py +++ b/plugins/UFPWriter/UFPWriter.py @@ -24,6 +24,7 @@ from UM.Settings.InstanceContainer import InstanceContainer from cura.CuraApplication import CuraApplication from cura.Settings.GlobalStack import GlobalStack from cura.Utils.Threading import call_on_qt_thread +from cura.API import CuraAPI from UM.i18n import i18nCatalog @@ -50,7 +51,7 @@ class UFPWriter(MeshWriter): # Qt thread. The File read/write operations right now are executed on separated threads because they are scheduled # by the Job class. @call_on_qt_thread - def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode): + def write(self, stream, nodes, mode = MeshWriter.OutputMode.BinaryMode, **kwargs): archive = VirtualFile() archive.openStream(stream, "application/x-ufp", OpenMode.WriteOnly) @@ -85,7 +86,8 @@ class UFPWriter(MeshWriter): try: archive.addContentType(extension="json", mime_type="application/json") setting_textio = StringIO() - json.dump(self._getSliceMetadata(), setting_textio, separators=(", ", ": "), indent=4) + api = CuraApplication.getInstance().getCuraAPI() + json.dump(api.interface.settings.getSliceMetadata(), setting_textio, separators=(", ", ": "), indent=4) steam = archive.getStream(SLICE_METADATA_PATH) steam.write(setting_textio.getvalue().encode("UTF-8")) except EnvironmentError as e: @@ -210,57 +212,3 @@ class UFPWriter(MeshWriter): return [{"name": item.getName()} for item in DepthFirstIterator(node) if item.getMeshData() is not None and not item.callDecoration("isNonPrintingMesh")] - - def _getSliceMetadata(self) -> Dict[str, Dict[str, Dict[str, str]]]: - """Get all changed settings and all settings. For each extruder and the global stack""" - print_information = CuraApplication.getInstance().getPrintInformation() - machine_manager = CuraApplication.getInstance().getMachineManager() - settings = { - "material": { - "length": print_information.materialLengths, - "weight": print_information.materialWeights, - "cost": print_information.materialCosts, - }, - "global": { - "changes": {}, - "all_settings": {}, - }, - "quality": asdict(machine_manager.activeQualityDisplayNameMap()), - } - - def _retrieveValue(container: InstanceContainer, setting_: str): - value_ = container.getProperty(setting_, "value") - for _ in range(0, 1024): # Prevent possibly endless loop by not using a limit. - if not isinstance(value_, SettingFunction): - return value_ # Success! - value_ = value_(container) - return 0 # Fallback value after breaking possibly endless loop. - - global_stack = cast(GlobalStack, Application.getInstance().getGlobalContainerStack()) - - # Add global user or quality changes - global_flattened_changes = InstanceContainer.createMergedInstanceContainer(global_stack.userChanges, global_stack.qualityChanges) - for setting in global_flattened_changes.getAllKeys(): - settings["global"]["changes"][setting] = _retrieveValue(global_flattened_changes, setting) - - # Get global all settings values without user or quality changes - for setting in global_stack.getAllKeys(): - settings["global"]["all_settings"][setting] = _retrieveValue(global_stack, setting) - - for i, extruder in enumerate(global_stack.extruderList): - # Add extruder fields to settings dictionary - settings[f"extruder_{i}"] = { - "changes": {}, - "all_settings": {}, - } - - # Add extruder user or quality changes - extruder_flattened_changes = InstanceContainer.createMergedInstanceContainer(extruder.userChanges, extruder.qualityChanges) - for setting in extruder_flattened_changes.getAllKeys(): - settings[f"extruder_{i}"]["changes"][setting] = _retrieveValue(extruder_flattened_changes, setting) - - # Get extruder all settings values without user or quality changes - for setting in extruder.getAllKeys(): - settings[f"extruder_{i}"]["all_settings"][setting] = _retrieveValue(extruder, setting) - - return settings diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png index fc289fe62c..fa8460860c 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method X.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png index c23767459c..bad4e0b8ac 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method XL.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png index c48fe68492..446c0dd6e3 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Method.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png b/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png index 2cc52a13ba..dea80a1ff5 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png and b/plugins/UM3NetworkPrinting/resources/png/MakerBot Sketch.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker 2+ Connect.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker 2+ Connect.png index 9821dc0908..9c37f046da 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker 2+ Connect.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker 2+ Connect.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3 Extended.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3 Extended.png index c4beb8d709..f41dc11f0a 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3 Extended.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3 Extended.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3.png index e499d767c1..12126160d0 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker 3.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png index 2a9b3567c8..aa96550988 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker Factor 4.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S3.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S3.png index d92e454d23..9eb9ae086b 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S3.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S3.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S5.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S5.png index 56400f7027..a673a89598 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S5.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S5.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S6.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S6.png new file mode 100644 index 0000000000..393225ddfc Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S6.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png index 6f75d02005..3ef77eac7c 100644 Binary files a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S7.png differ diff --git a/plugins/UM3NetworkPrinting/resources/png/Ultimaker S8.png b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S8.png new file mode 100644 index 0000000000..1c901a748a Binary files /dev/null and b/plugins/UM3NetworkPrinting/resources/png/Ultimaker S8.png differ diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py index 4feb77222a..3c8e53b2e9 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudApiClient.py @@ -42,7 +42,7 @@ class CloudApiClient: CLUSTER_API_ROOT = f"{ROOT_PATH}/connect/v1" CURA_API_ROOT = f"{ROOT_PATH}/cura/v1" - DEFAULT_REQUEST_TIMEOUT = 10 # seconds + DEFAULT_REQUEST_TIMEOUT = 30 # seconds # In order to avoid garbage collection we keep the callbacks in this list. _anti_gc_callbacks = [] # type: List[Callable[[Any], None]] diff --git a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py index 4ca83772f2..090355a3c0 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py +++ b/plugins/UM3NetworkPrinting/src/Cloud/CloudOutputDevice.py @@ -331,7 +331,7 @@ class CloudOutputDevice(UltimakerNetworkedPrinterOutputDevice): return False [printer, *_] = self._printers - return printer.type in ("MakerBot Method X", "MakerBot Method XL", "MakerBot Sketch") + return printer.type in ("MakerBot Method", "MakerBot Method X", "MakerBot Method XL", "MakerBot Sketch", "MakerBot Sketch Large", "MakerBot Sketch Sprint") @pyqtProperty(bool, notify=_cloudClusterPrintersChanged) def supportsPrintJobActions(self) -> bool: diff --git a/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json b/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json index 9d0db2a30d..6b99f74062 100644 --- a/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json +++ b/plugins/UM3NetworkPrinting/src/Cloud/machine_id_to_name.json @@ -3,5 +3,7 @@ "ultimaker_methodx": "MakerBot Method X", "ultimaker_methodxl": "MakerBot Method XL", "ultimaker_factor4": "Ultimaker Factor 4", - "ultimaker_sketch": "MakerBot Sketch" + "ultimaker_sketch": "MakerBot Sketch", + "ultimaker_sketch_large": "MakerBot Sketch Large", + "ultimaker_sketch_sprint": "MakerBot Sketch Sprint" } diff --git a/plugins/UM3NetworkPrinting/src/ExportFileJob.py b/plugins/UM3NetworkPrinting/src/ExportFileJob.py index ac3da65719..1ab493c747 100644 --- a/plugins/UM3NetworkPrinting/src/ExportFileJob.py +++ b/plugins/UM3NetworkPrinting/src/ExportFileJob.py @@ -28,7 +28,7 @@ class ExportFileJob(WriteFileJob): # Determine the filename. job_name = CuraApplication.getInstance().getPrintInformation().jobName - job_name = re.sub("[^\w\-. ()]", "-", job_name) + job_name = re.sub(r"[^\w\-. ()]", "-", job_name) extension = self._mesh_format_handler.preferred_format.get("extension", "") self.setFileName("{}.{}".format(job_name, extension)) diff --git a/plugins/USBPrinting/USBPrinterOutputDevice.py b/plugins/USBPrinting/USBPrinterOutputDevice.py index 85b98e532b..18d9466eb5 100644 --- a/plugins/USBPrinting/USBPrinterOutputDevice.py +++ b/plugins/USBPrinting/USBPrinterOutputDevice.py @@ -97,6 +97,8 @@ class USBPrinterOutputDevice(PrinterOutputDevice): CuraApplication.getInstance().getOnExitCallbackManager().addCallback(self._checkActivePrintingUponAppExit) + CuraApplication.getInstance().getPreferences().addPreference("usb_printing/enabled", False) + # This is a callback function that checks if there is any printing in progress via USB when the application tries # to exit. If so, it will show a confirmation before def _checkActivePrintingUponAppExit(self) -> None: @@ -144,6 +146,8 @@ class USBPrinterOutputDevice(PrinterOutputDevice): CuraApplication.getInstance().getController().setActiveStage("MonitorStage") + CuraApplication.getInstance().getPreferences().setValue("usb_printing/enabled", True) + #Find the g-code to print. gcode_textio = StringIO() gcode_writer = cast(MeshWriter, PluginRegistry.getInstance().getPluginObject("GCodeWriter")) diff --git a/plugins/VersionUpgrade/VersionUpgrade58to59/VersionUpgrade58to59.py b/plugins/VersionUpgrade/VersionUpgrade58to59/VersionUpgrade58to59.py new file mode 100644 index 0000000000..f85300bc51 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade58to59/VersionUpgrade58to59.py @@ -0,0 +1,103 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +import configparser +from typing import Dict, List, Tuple +import io +from UM.VersionUpgrade import VersionUpgrade + +# Just to be sure, since in my testing there were both 0.1.0 and 0.2.0 settings about. +_PLUGIN_NAME = "_plugin__curaenginegradualflow" +_FROM_PLUGINS_SETTINGS = { + "gradual_flow_enabled", + "max_flow_acceleration", + "layer_0_max_flow_acceleration", + "gradual_flow_discretisation_step_size", + "reset_flow_duration", +} # type: Set[str] + +_NEW_SETTING_VERSION = "24" + + +class VersionUpgrade58to59(VersionUpgrade): + def upgradePreferences(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades preferences to remove from the visibility list the settings that were removed in this version. + It also changes the preferences to have the new version number. + + This removes any settings that were removed in the new Cura version. + :param serialized: The original contents of the preferences file. + :param filename: The file name of the preferences file. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + # Fix renamed settings for visibility + if "visible_settings" in parser["general"]: + all_setting_keys = parser["general"]["visible_settings"].strip().split(";") + if all_setting_keys: + for idx, key in enumerate(all_setting_keys): + if key.startswith(_PLUGIN_NAME): + all_setting_keys[idx] = key.split("__")[-1] + parser["general"]["visible_settings"] = ";".join(all_setting_keys) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades instance containers to remove the settings that were removed in this version. + It also changes the instance containers to have the new version number. + + This removes any settings that were removed in the new Cura version and updates settings that need to be updated + with a new value. + + :param serialized: The original contents of the instance container. + :param filename: The original file name of the instance container. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + # Rename settings. + if "values" in parser: + for key, value in parser["values"].items(): + if key.startswith(_PLUGIN_NAME): + parser["values"][key.split("__")[-1]] = parser["values"][key] + del parser["values"][key] + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + """ + Upgrades stacks to have the new version number. + + :param serialized: The original contents of the stack. + :param filename: The original file name of the stack. + :return: A list of new file names, and a list of the new contents for + those files. + """ + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + if "metadata" not in parser: + parser["metadata"] = {} + + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade58to59/__init__.py b/plugins/VersionUpgrade/VersionUpgrade58to59/__init__.py new file mode 100644 index 0000000000..db41e98e2f --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade58to59/__init__.py @@ -0,0 +1,61 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade58to59 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade58to59.VersionUpgrade58to59() + + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000023): ("preferences", 7000024, upgrade.upgradePreferences), + ("machine_stack", 6000023): ("machine_stack", 6000024, upgrade.upgradeStack), + ("extruder_train", 6000023): ("extruder_train", 6000024, upgrade.upgradeStack), + ("definition_changes", 4000023): ("definition_changes", 4000024, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000023): ("quality_changes", 4000024, upgrade.upgradeInstanceContainer), + ("quality", 4000023): ("quality", 4000024, upgrade.upgradeInstanceContainer), + ("user", 4000023): ("user", 4000024, upgrade.upgradeInstanceContainer), + ("intent", 4000023): ("intent", 4000024, upgrade.upgradeInstanceContainer), + }, + "sources": { + "preferences": { + "get_version": upgrade.getCfgVersion, + "location": {"."} + }, + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade58to59/plugin.json b/plugins/VersionUpgrade/VersionUpgrade58to59/plugin.json new file mode 100644 index 0000000000..147d46bd2f --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade58to59/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.8 to 5.9", + "author": "UltiMaker", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.8 to Cura 5.9.", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/plugins/VersionUpgrade/VersionUpgrade59to510/VersionUpgrade59to510.py b/plugins/VersionUpgrade/VersionUpgrade59to510/VersionUpgrade59to510.py new file mode 100644 index 0000000000..70190b6e7f --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade59to510/VersionUpgrade59to510.py @@ -0,0 +1,68 @@ +import configparser +import io +from typing import Dict, Tuple, List + +from UM.VersionUpgrade import VersionUpgrade + +_RENAMED_SETTINGS = { + "wall_overhang_speed_factor": "wall_overhang_speed_factors" +} # type: Dict[str, str] + +_NEW_SETTING_VERSION = "25" + + +class VersionUpgrade59to510(VersionUpgrade): + def upgradePreferences(self, serialized: str, filename: str): + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Fix 'renamed'(ish) settings for visibility + if "visible_settings" in parser["general"]: + all_setting_keys = parser["general"]["visible_settings"].strip().split(";") + if all_setting_keys: + for idx, key in enumerate(all_setting_keys): + if key in _RENAMED_SETTINGS: + all_setting_keys[idx] = _RENAMED_SETTINGS[key] + parser["general"]["visible_settings"] = ";".join(all_setting_keys) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeInstanceContainer(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + parser = configparser.ConfigParser(interpolation = None, comment_prefixes = ()) + parser.read_string(serialized) + + # Update version number. + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + if "values" in parser: + for old_name, new_name in _RENAMED_SETTINGS.items(): + if old_name in parser["values"]: + parser["values"][new_name] = parser["values"][old_name] + del parser["values"][old_name] + if "wall_overhang_speed_factors" in parser["values"]: + old_value = float(parser["values"]["wall_overhang_speed_factors"]) + new_value = [max(1, int(round(old_value)))] + parser["values"]["wall_overhang_speed_factor"] = str(new_value) + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] + + def upgradeStack(self, serialized: str, filename: str) -> Tuple[List[str], List[str]]: + parser = configparser.ConfigParser(interpolation = None) + parser.read_string(serialized) + + # Update version number. + if "metadata" not in parser: + parser["metadata"] = {} + + parser["metadata"]["setting_version"] = _NEW_SETTING_VERSION + + result = io.StringIO() + parser.write(result) + return [filename], [result.getvalue()] diff --git a/plugins/VersionUpgrade/VersionUpgrade59to510/__init__.py b/plugins/VersionUpgrade/VersionUpgrade59to510/__init__.py new file mode 100644 index 0000000000..4c2b2622b1 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade59to510/__init__.py @@ -0,0 +1,60 @@ +# Copyright (c) 2024 UltiMaker +# Cura is released under the terms of the LGPLv3 or higher. + +from typing import Any, Dict, TYPE_CHECKING + +from . import VersionUpgrade59to510 + +if TYPE_CHECKING: + from UM.Application import Application + +upgrade = VersionUpgrade59to510.VersionUpgrade59to510() + +def getMetaData() -> Dict[str, Any]: + return { + "version_upgrade": { + # From To Upgrade function + ("preferences", 7000024): ("preferences", 7000025, upgrade.upgradePreferences), + ("machine_stack", 6000024): ("machine_stack", 6000025, upgrade.upgradeStack), + ("extruder_train", 6000024): ("extruder_train", 6000025, upgrade.upgradeStack), + ("definition_changes", 4000024): ("definition_changes", 4000025, upgrade.upgradeInstanceContainer), + ("quality_changes", 4000024): ("quality_changes", 4000025, upgrade.upgradeInstanceContainer), + ("quality", 4000024): ("quality", 4000025, upgrade.upgradeInstanceContainer), + ("user", 4000024): ("user", 4000025, upgrade.upgradeInstanceContainer), + ("intent", 4000024): ("intent", 4000025, upgrade.upgradeInstanceContainer), + }, + "sources": { + "preferences": { + "get_version": upgrade.getCfgVersion, + "location": {"."} + }, + "machine_stack": { + "get_version": upgrade.getCfgVersion, + "location": {"./machine_instances"} + }, + "extruder_train": { + "get_version": upgrade.getCfgVersion, + "location": {"./extruders"} + }, + "definition_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./definition_changes"} + }, + "quality_changes": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality_changes"} + }, + "quality": { + "get_version": upgrade.getCfgVersion, + "location": {"./quality"} + }, + "user": { + "get_version": upgrade.getCfgVersion, + "location": {"./user"} + } + } + } + + +def register(app: "Application") -> Dict[str, Any]: + return {"version_upgrade": upgrade} diff --git a/plugins/VersionUpgrade/VersionUpgrade59to510/plugin.json b/plugins/VersionUpgrade/VersionUpgrade59to510/plugin.json new file mode 100644 index 0000000000..f06d6b3161 --- /dev/null +++ b/plugins/VersionUpgrade/VersionUpgrade59to510/plugin.json @@ -0,0 +1,8 @@ +{ + "name": "Version Upgrade 5.9 to 5.10", + "author": "Ultimaker B.V.", + "version": "1.0.0", + "description": "Upgrades configurations from Cura 5.9 to Cura 5.10", + "api": 8, + "i18n-catalog": "cura" +} diff --git a/plugins/XmlMaterialProfile/XmlMaterialProfile.py b/plugins/XmlMaterialProfile/XmlMaterialProfile.py index 98c0f95e10..f756a79868 100644 --- a/plugins/XmlMaterialProfile/XmlMaterialProfile.py +++ b/plugins/XmlMaterialProfile/XmlMaterialProfile.py @@ -11,12 +11,14 @@ import xml.etree.ElementTree as ET from UM.PluginRegistry import PluginRegistry from UM.Resources import Resources from UM.Logger import Logger +from UM.Decorators import CachedMemberFunctions import UM.Dictionary from UM.Settings.InstanceContainer import InstanceContainer from UM.Settings.ContainerRegistry import ContainerRegistry from UM.ConfigurationErrorMessage import ConfigurationErrorMessage from cura.CuraApplication import CuraApplication +from cura.PrinterOutput.FormatMaps import FormatMaps from cura.Machines.VariantType import VariantType try: @@ -70,6 +72,8 @@ class XmlMaterialProfile(InstanceContainer): Logger.log("w", "Can't change metadata {key} of material {material_id} because it's read-only.".format(key = key, material_id = self.getId())) return + CachedMemberFunctions.clearInstanceCache(self) + # Some metadata such as diameter should also be instantiated to be a setting. Go though all values for the # "properties" field and apply the new values to SettingInstances as well. new_setting_values_dict = {} @@ -249,7 +253,7 @@ class XmlMaterialProfile(InstanceContainer): machine_variant_map[definition_id][variant_name] = variant_dict # Map machine human-readable names to IDs - product_id_map = self.getProductIdMap() + product_id_map = FormatMaps.getProductIdMap() for definition_id, container in machine_container_map.items(): definition_id = container.getMetaDataEntry("definition") @@ -479,6 +483,7 @@ class XmlMaterialProfile(InstanceContainer): first.append(element) def clearData(self): + CachedMemberFunctions.clearInstanceCache(self) self._metadata = { "id": self.getId(), "name": "" @@ -518,6 +523,8 @@ class XmlMaterialProfile(InstanceContainer): def deserialize(self, serialized, file_name = None): """Overridden from InstanceContainer""" + CachedMemberFunctions.clearInstanceCache(self) + containers_to_add = [] # update the serialized data first from UM.Settings.Interfaces import ContainerInterface @@ -647,7 +654,7 @@ class XmlMaterialProfile(InstanceContainer): self._dirty = False # Map machine human-readable names to IDs - product_id_map = self.getProductIdMap() + product_id_map = FormatMaps.getProductIdMap() machines = data.iterfind("./um:settings/um:machine", self.__namespaces) for machine in machines: @@ -911,9 +918,6 @@ class XmlMaterialProfile(InstanceContainer): base_metadata["properties"] = property_values base_metadata["definition"] = "fdmprinter" - # Certain materials are loaded but should not be visible / selectable to the user. - base_metadata["visible"] = not base_metadata.get("abstract_color", False) - compatible_entries = data.iterfind("./um:settings/um:setting[@key='hardware compatible']", cls.__namespaces) try: common_compatibility = cls._parseCompatibleValue(next(compatible_entries).text) # type: ignore @@ -923,7 +927,7 @@ class XmlMaterialProfile(InstanceContainer): result_metadata.append(base_metadata) # Map machine human-readable names to IDs - product_id_map = cls.getProductIdMap() + product_id_map = FormatMaps.getProductIdMap() for machine in data.iterfind("./um:settings/um:machine", cls.__namespaces): machine_compatibility = common_compatibility @@ -1083,10 +1087,8 @@ class XmlMaterialProfile(InstanceContainer): # Skip material properties (eg diameter) or metadata (eg GUID) return - if instance.value is True: - data = "yes" - elif instance.value is False: - data = "no" + if tag_name != "cura:setting" and isinstance(instance.value, bool): + data = "yes" if instance.value else "no" else: data = str(instance.value) @@ -1129,29 +1131,6 @@ class XmlMaterialProfile(InstanceContainer): id_list = list(id_list) return id_list - __product_to_id_map: Optional[Dict[str, List[str]]] = None - - @classmethod - def getProductIdMap(cls) -> Dict[str, List[str]]: - """Gets a mapping from product names in the XML files to their definition IDs. - - This loads the mapping from a file. - """ - if cls.__product_to_id_map is not None: - return cls.__product_to_id_map - - plugin_path = cast(str, PluginRegistry.getInstance().getPluginPath("XmlMaterialProfile")) - product_to_id_file = os.path.join(plugin_path, "product_to_id.json") - with open(product_to_id_file, encoding = "utf-8") as f: - contents = "" - for line in f: - contents += line if "#" not in line else "".join([line.replace("#", str(n)) for n in range(1, 12)]) - cls.__product_to_id_map = json.loads(contents) - cls.__product_to_id_map = {key: [value] for key, value in cls.__product_to_id_map.items()} - #This also loads "Ultimaker S5" -> "ultimaker_s5" even though that is not strictly necessary with the default to change spaces into underscores. - #However it is not always loaded with that default; this mapping is also used in serialize() without that default. - return cls.__product_to_id_map - @staticmethod def _parseCompatibleValue(value: str): """Parse the value of the "material compatible" property.""" diff --git a/printer-linter/src/terminal.py b/printer-linter/src/terminal.py index d93372571f..774c5b4de4 100644 --- a/printer-linter/src/terminal.py +++ b/printer-linter/src/terminal.py @@ -21,7 +21,7 @@ def main() -> None: parser.add_argument("--diagnose", action="store_true", help="Diagnose the files") parser.add_argument("--deleted", action="store_true", help="Check for deleted files") parser.add_argument("--fix", action="store_true", help="Attempt to apply the suggested fixes on the files") - parser.add_argument("Files", metavar="F", type=Path, nargs="+", help="Files or directories to format") + parser.add_argument("Files", type=Path, nargs="+", help="Files or directories to format") args = parser.parse_args() files = extractFilePaths(args.Files) @@ -39,7 +39,7 @@ def main() -> None: return with open(setting_path, "r") as f: - settings = yaml.load(f, yaml.FullLoader) + settings = yaml.safe_load(f) full_body_check = {"Diagnostics": []} comments_check = {"Error Files": []} diff --git a/requirements-dev.txt b/requirements-dev.txt deleted file mode 100644 index 162b33bf15..0000000000 --- a/requirements-dev.txt +++ /dev/null @@ -1,6 +0,0 @@ -pytest -pyinstaller==6.3.0 -pyinstaller-hooks-contrib -pyyaml -sip==6.5.1 -jinja2 diff --git a/requirements-ultimaker.txt b/requirements-ultimaker.txt deleted file mode 100644 index 8a412d8596..0000000000 --- a/requirements-ultimaker.txt +++ /dev/null @@ -1 +0,0 @@ -git+https://github.com/ultimaker/libcharon@master/s-line#egg=charon diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 344a0156d8..0000000000 --- a/requirements.txt +++ /dev/null @@ -1,408 +0,0 @@ -### Direct requirements for Uranium and libCharon ### -PyQt6-sip==13.6.0 \ - --hash=sha256:0dfd22cfedd87e96f9d51e0778ca2ba3dc0be83e424e9e0f98f6994d8d9c90f0 \ - --hash=sha256:13885361ca2cb2f5085d50359ba61b3fabd41b139fb58f37332acbe631ef2357 \ - --hash=sha256:24441032a29791e82beb7dfd76878339058def0e97fdb7c1cea517f3a0e6e96b \ - --hash=sha256:2486e1588071943d4f6657ba09096dc9fffd2322ad2c30041e78ea3f037b5778 \ - --hash=sha256:3075d8b325382750829e6cde6971c943352309d35768a4d4da0587459606d562 \ - --hash=sha256:33ea771fe777eb0d1a2c3ef35bcc3f7a286eb3ff09cd5b2fdd3d87d1f392d7e8 \ - --hash=sha256:39854dba35f8e5a4288da26ecb5f40b4c5ec1932efffb3f49d5ea435a7f37fb3 \ - --hash=sha256:3bf03e130fbfd75c9c06e687b86ba375410c7a9e835e4e03285889e61dd4b0c4 \ - --hash=sha256:43fb8551796030aae3d66d6e35e277494071ec6172cd182c9569ab7db268a2f5 \ - --hash=sha256:58f68a48400e0b3d1ccb18090090299bad26e3aed7ccb7057c65887b79b8aeea \ - --hash=sha256:5b9c6b6f9cfccb48cbb78a59603145a698fb4ffd176764d7083e5bf47631d8df \ - --hash=sha256:747f6ca44af81777a2c696bd501bc4815a53ec6fc94d4e25830e10bc1391f8ab \ - --hash=sha256:86a7b67c64436e32bffa9c28c9f21bf14a9faa54991520b12c3f6f435f24df7f \ - --hash=sha256:8c282062125eea5baf830c6998587d98c50be7c3a817a057fb95fef647184012 \ - --hash=sha256:8f9df9f7ccd8a9f0f1d36948c686f03ce1a1281543a3e636b7b7d5e086e1a436 \ - --hash=sha256:98bf954103b087162fa63b3a78f30b0b63da22fd6450b610ec1b851dbb798228 \ - --hash=sha256:9adf672f9114687533a74d5c2d4c03a9a929ad5ad9c3e88098a7da1a440ab916 \ - --hash=sha256:a6ce80bc24618d8a41be8ca51ad9f10e8bc4296dd90ab2809573df30a23ae0e5 \ - --hash=sha256:d6b5f699aaed0ac1fcd23e8fbca70d8a77965831b7c1ce474b81b1678817a49d \ - --hash=sha256:fa759b6339ff7e25f9afe2a6b651b775f0a36bcb3f5fa85e81a90d3b033c83f4 \ - --hash=sha256:fa7b10af7488efc5e53b41dd42c0f421bde6c2865a107af7ae259aff9d841da9 -PyQt6==6.6.0 \ - --hash=sha256:33655db05ac2de699320f035250c21434c77144a6a2943aca3f4c579dabc3f7b \ - --hash=sha256:3ef68830a9b32050c30f7962c56a5927802c9193b68eaf405faecb8ce9ae10a8 \ - --hash=sha256:d41512d66044c2df9c5f515a56a922170d68a37b3406ffddc8b4adc57181b576 \ - --hash=sha256:fc7185d65755f26d7a6842492ec5398c92544dc4eafbbcbef1b1922aca585c96 -PyQt6-Qt6==6.6.0 \ - --hash=sha256:1b079a33088d32ff47872cdb37fd15aa42101f0be46c3340244483849b781438 \ - --hash=sha256:8cb30d64a4d32465ea1686bc827cbe452225fb387c4873356b0fa7b9ae63534f \ - --hash=sha256:a151f34712cd645111e89cb30b02e5fb69c9dcc3603ab3c03a561e874bd7cbcf \ - --hash=sha256:e5483ae04bf107411c7469f1be9f9e2eb9840303e788b3ac524fe30af90d45f4 -PyQt6-NetworkAuth==6.6.0 \ - --hash=sha256:7b90b81792fe53105287c8cbb5e4b22bc44a482268ffb7d3e33f852807f86182 \ - --hash=sha256:c7e2335159aa795e2fe6fb069ccce6308672ab80f26c50fab57caf957371cbb5 \ - --hash=sha256:cdfc0bfaea16a9e09f075bdafefb996aa9fdec392052ba4fb3cbac233c1958fb \ - --hash=sha256:f60ff9a62f5129dc2a9d4c495fb47f9a03e4dfb666b50fb7d61f46e89bf7b6a2 -PyQt6-NetworkAuth-Qt6==6.6.0 \ - --hash=sha256:481d9093e1fb1ac6843d8beabcd359cc34b74b9a2cbb3e2b68d96bd3f178d4e0 \ - --hash=sha256:4cc48fd375730a0ba5fbed9d64abb2914f587377560a78a63aff893f9e276a45 \ - --hash=sha256:5006deabf55304d4a3e0b3c954f93e5835546b11e789d14653a2493d12d3a063 \ - --hash=sha256:bcd56bfc892fec961c51eba3c0bf32ba8317a762d9e254d3830569611ed569d6 - -certifi==2023.5.7; \ - --hash=sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716 -cryptography==41.0.1 \ - --hash=sha256:059e348f9a3c1950937e1b5d7ba1f8e968508ab181e75fc32b879452f08356db \ - --hash=sha256:1a5472d40c8f8e91ff7a3d8ac6dfa363d8e3138b961529c996f3e2df0c7a411a \ - --hash=sha256:1a8e6c2de6fbbcc5e14fd27fb24414507cb3333198ea9ab1258d916f00bc3039 \ - --hash=sha256:1fee5aacc7367487b4e22484d3c7e547992ed726d14864ee33c0176ae43b0d7c \ - --hash=sha256:5d092fdfedaec4cbbffbf98cddc915ba145313a6fdaab83c6e67f4e6c218e6f3 \ - --hash=sha256:5f0ff6e18d13a3de56f609dd1fd11470918f770c6bd5d00d632076c727d35485 \ - --hash=sha256:7bfc55a5eae8b86a287747053140ba221afc65eb06207bedf6e019b8934b477c \ - --hash=sha256:7fa01527046ca5facdf973eef2535a27fec4cb651e4daec4d043ef63f6ecd4ca \ - --hash=sha256:8dde71c4169ec5ccc1087bb7521d54251c016f126f922ab2dfe6649170a3b8c5 \ - --hash=sha256:8f4ab7021127a9b4323537300a2acfb450124b2def3756f64dc3a3d2160ee4b5 \ - --hash=sha256:948224d76c4b6457349d47c0c98657557f429b4e93057cf5a2f71d603e2fc3a3 \ - --hash=sha256:9a6c7a3c87d595608a39980ebaa04d5a37f94024c9f24eb7d10262b92f739ddb \ - --hash=sha256:b46e37db3cc267b4dea1f56da7346c9727e1209aa98487179ee8ebed09d21e43 \ - --hash=sha256:b4ceb5324b998ce2003bc17d519080b4ec8d5b7b70794cbd2836101406a9be31 \ - --hash=sha256:cb33ccf15e89f7ed89b235cff9d49e2e62c6c981a6061c9c8bb47ed7951190bc \ - --hash=sha256:d198820aba55660b4d74f7b5fd1f17db3aa5eb3e6893b0a41b75e84e4f9e0e4b \ - --hash=sha256:d34579085401d3f49762d2f7d6634d6b6c2ae1242202e860f4d26b046e3a1006 \ - --hash=sha256:eb8163f5e549a22888c18b0d53d6bb62a20510060a22fd5a995ec8a05268df8a \ - --hash=sha256:f73bff05db2a3e5974a6fd248af2566134d8981fd7ab012e5dd4ddb1d9a70699 -zeroconf==0.31.0 \ - --hash=sha256:53a180248471c6f81bd1fffcbce03ed93d7d8eaf10905c9121ac1ea996d19844 \ - --hash=sha256:5a468da018bc3f04bbce77ae247924d802df7aeb4c291bbbb5a9616d128800b0 -importlib-metadata==4.10.0 \ - --hash=sha256:b7cf7d3fef75f1e4c80a96ca660efbd51473d7e8f39b5ab9210febc7809012a4 \ - --hash=sha256:92a8b58ce734b2a4494878e0ecf7d79ccd7a128b5fc6014c401e0b61f006f0f6 -keyring==23.0.1 \ - --hash=sha256:045703609dd3fccfcdb27da201684278823b72af515aedec1a8515719a038cb8 \ - --hash=sha256:8f607d7d1cc502c43a932a275a56fe47db50271904513a379d39df1af277ac48 - -# Use Numpy wheel that is compiled with Intel optimizations (MKL). Obtained from https://www.lfd.uci.edu/~gohlke/pythonlibs/#numpy -# We cache this at software.ultimaker.com since this website tends to remove older versions rather quickly. -https://software.ultimaker.com/cura-binary-dependencies/numpy-1.21.5+mkl-cp310-cp310-win_amd64.whl; \ - sys_platform=="win32" \ - --hash=sha256:fbd5d5126b730a151134d21994a951fe28df06464e0c9a2cba2a4132e542a5fc -numpy==1.21.5; \ - sys_platform!="win32" \ - --hash=sha256:00c9fa73a6989895b8815d98300a20ac993c49ac36c8277e8ffeaa3631c0dbbb \ - --hash=sha256:025b497014bc33fc23897859350f284323f32a2fff7654697f5a5fc2a19e9939 \ - --hash=sha256:08de8472d9f7571f9d51b27b75e827f5296295fa78817032e84464be8bb905bc \ - --hash=sha256:1964db2d4a00348b7a60ee9d013c8cb0c566644a589eaa80995126eac3b99ced \ - --hash=sha256:2a9add27d7fc0fdb572abc3b2486eb3b1395da71e0254c5552b2aad2a18b5441 \ - --hash=sha256:2d8adfca843bc46ac199a4645233f13abf2011a0b2f4affc5c37cd552626f27b \ - --hash=sha256:301e408a052fdcda5cdcf03021ebafc3c6ea093021bf9d1aa47c54d48bdad166 \ - --hash=sha256:311283acf880cfcc20369201bd75da907909afc4666966c7895cbed6f9d2c640 \ - --hash=sha256:341dddcfe3b7b6427a28a27baa59af5ad51baa59bfec3264f1ab287aa3b30b13 \ - --hash=sha256:3a5098df115340fb17fc93867317a947e1dcd978c3888c5ddb118366095851f8 \ - --hash=sha256:3c978544be9e04ed12016dd295a74283773149b48f507d69b36f91aa90a643e5 \ - --hash=sha256:3d893b0871322eaa2f8c7072cdb552d8e2b27645b7875a70833c31e9274d4611 \ - --hash=sha256:4fe6a006557b87b352c04596a6e3f12a57d6e5f401d804947bd3188e6b0e0e76 \ - --hash=sha256:507c05c7a37b3683eb08a3ff993bd1ee1e6c752f77c2f275260533b265ecdb6c \ - --hash=sha256:58ca1d7c8aef6e996112d0ce873ac9dfa1eaf4a1196b4ff7ff73880a09923ba7 \ - --hash=sha256:61bada43d494515d5b122f4532af226fdb5ee08fe5b5918b111279843dc6836a \ - --hash=sha256:69a5a8d71c308d7ef33ef72371c2388a90e3495dbb7993430e674006f94797d5 \ - --hash=sha256:6a5928bc6241264dce5ed509e66f33676fc97f464e7a919edc672fb5532221ee \ - --hash=sha256:7b9d6b14fc9a4864b08d1ba57d732b248f0e482c7b2ff55c313137e3ed4d8449 \ - --hash=sha256:a7c4b701ca418cd39e28ec3b496e6388fe06de83f5f0cb74794fa31cfa384c02 \ - --hash=sha256:a7e8f6216f180f3fd4efb73de5d1eaefb5f5a1ee5b645c67333033e39440e63a \ - --hash=sha256:b545ebadaa2b878c8630e5bcdb97fc4096e779f335fc0f943547c1c91540c815 \ - --hash=sha256:c293d3c0321996cd8ffe84215ffe5d269fd9d1d12c6f4ffe2b597a7c30d3e593 \ - --hash=sha256:c5562bcc1a9b61960fc8950ade44d00e3de28f891af0acc96307c73613d18f6e \ - --hash=sha256:ca9c23848292c6fe0a19d212790e62f398fd9609aaa838859be8459bfbe558aa \ - --hash=sha256:cc1b30205d138d1005adb52087ff45708febbef0e420386f58664f984ef56954 \ - --hash=sha256:dbce7adeb66b895c6aaa1fad796aaefc299ced597f6fbd9ceddb0dd735245354 \ - --hash=sha256:dc4b2fb01f1b4ddbe2453468ea0719f4dbb1f5caa712c8b21bb3dd1480cd30d9 \ - --hash=sha256:eed2afaa97ec33b4411995be12f8bdb95c87984eaa28d76cf628970c8a2d689a \ - --hash=sha256:fc7a7d7b0ed72589fd8b8486b9b42a564f10b8762be8bd4d9df94b807af4a089 -pyclipper==1.3.0.post3; \ - --hash=sha256:1408461fba4985d58589fa74c59e273e8aa91d8b55c2e9a6abf966eed7562d90 \ - --hash=sha256:1df7e4bce6ac68abfe926d319f52b749b7c9d5e0a6bd7112a0c7f2f908abecbc \ - --hash=sha256:24b6b70114941805c14a33e9378e52d24b18791f1bfc365853d5adb33425f173 \ - --hash=sha256:2b0950dada5b56a002dddccf131815a8f9b55c4df86ff6a43b7ef48a91b572aa \ - --hash=sha256:2d51757df15f1721946f39016191c7d685306fc69d8a5f2933a1d22119150a1d \ - --hash=sha256:341556b83ce2a5d4ee36e263e04751a9949e4161f60f0011f9500b845b25ce3c \ - --hash=sha256:46b3996c8dcda562c408e653ccef8efd95a7d69400f9119df2c2cb8083d36bf8 \ - --hash=sha256:5434e1e69425dc7958579b1f7bedfa8a7cce79400e1b708a42be769a165a3a2c \ - --hash=sha256:5b4e0e360ebfc25d01c7e0873b27f912d1c02d99b84393d526bc01836a5fb9f4 \ - --hash=sha256:60f20e96e9e055e9bb2e729fe6078969ce252c6b7b1b18d8d963e5343d99f99e \ - --hash=sha256:615bece709d8c304d97089a83f8ff91ca0d2646e8fe42f2637d7cdfcf99a6e4e \ - --hash=sha256:639fbc55569b94487f89261b1656e3e655d06888a582218c5432c426705d1f6f \ - --hash=sha256:6748239b89a5edd00b3ce36cb5c7a177978ff3361de861fe2cc559bb2760625d \ - --hash=sha256:679bfd1fd4595a3f58a706256dc6cc7179ee40fbeff4d134aa3163a9c87ca545 \ - --hash=sha256:6ace0de72f252e48eda28981e24142a2b02ac17eacc3d8a2baf628671dd8cc8f \ - --hash=sha256:771ba332790e88eb4aa9de2172131af25525ac23fdda789691e543962849f149 \ - --hash=sha256:8fabba875314ebc751b66e571b8b0d5319c76e22051304880a552d70db2252af \ - --hash=sha256:a050ec9df95e9611461adb7f86da4f066848c045d966c46e7b124593e6410e2a \ - --hash=sha256:ab7e2f9b655333a37002b90bea47d77ff8d1f01293798911afa7f39217f1b71d \ - --hash=sha256:b0097aef9ac8a5e10434059641fea338fb682c61993bfe65670e459ec14b4151 \ - --hash=sha256:b509cfd696962683553cd6b9fc7f0baf05bff47c09fd68b085a8aea493436267 \ - --hash=sha256:bad590e701eaef644899ce164631f83e39669796e552f17aef5a37238646b392 \ - --hash=sha256:c586ca07c1418d4f010c6bc65215c4b193211e1b95dd8a1bd312d8207c5ccf6a \ - --hash=sha256:cb5ad68b82c2aa408672444e567cea138db29790997d603525878632d61fd6ec \ - --hash=sha256:cd9f0496daa9b505902848d401bfc3ffe80ee3a6863451fc6c05ceb2a45b9d8f \ - --hash=sha256:da4d8f253dd8e152b3364902bed5e221165d3af4e71e2ae81eb9a9a9802089a2 \ - --hash=sha256:e8d77755a00566e0f0cf48da2e42e76ff93423b55880621944f950058be3fc0e \ - --hash=sha256:ebc13dbfaec1b489fc6ed92a642b8a2c7072fa2d4bc12514cc2bbeacd47c5baf \ - --hash=sha256:ed5ea68bc6f3428fbf9d98f1e72e2020d763d88053cc9a9d31b2eeb49500b26f \ - --hash=sha256:ee52b9d29512eb7b8b9faee6db3f8694eb6c8455785a5d2d561c40eca67b226f \ - --hash=sha256:f428ecdd224ec30c1a4dbdbaac44e746cbe9a05c25627b05cc7bc2dcda235a26 \ - --hash=sha256:f5f3ad171f21511813085ac549bb717bbdcc0f4da27abf6b0629438e1f23ca0b -scipy==1.9.1 \ - --hash=sha256:c61b4a91a702e8e04aeb0bfc40460e1f17a640977c04dda8757efb0199c75332 \ - --hash=sha256:d79da472015d0120ba9b357b28a99146cd6c17b9609403164b1a8ed149b4dfc8 \ - --hash=sha256:825951b88f56765aeb6e5e38ac9d7d47407cfaaeb008d40aa1b45a2d7ea2731e \ - --hash=sha256:f950a04b33e17b38ff561d5a0951caf3f5b47caa841edd772ffb7959f20a6af0 \ - --hash=sha256:8cc81ac25659fec73599ccc52c989670e5ccd8974cf34bacd7b54a8d809aff1a \ - --hash=sha256:8d3faa40ac16c6357aaf7ea50394ea6f1e8e99d75e927a51102b1943b311b4d9 \ - --hash=sha256:7a412c476a91b080e456229e413792bbb5d6202865dae963d1e6e28c2bb58691 \ - --hash=sha256:eb954f5aca4d26f468bbebcdc5448348eb287f7bea536c6306f62ea062f63d9a \ - --hash=sha256:3c6f5d1d4b9a5e4fe5e14f26ffc9444fc59473bbf8d45dc4a9a15283b7063a72 \ - --hash=sha256:bc4e2c77d4cd015d739e75e74ebbafed59ba8497a7ed0fd400231ed7683497c4 \ - --hash=sha256:0419485dbcd0ed78c0d5bf234c5dd63e86065b39b4d669e45810d42199d49521 \ - --hash=sha256:34441dfbee5b002f9e15285014fd56e5e3372493c3e64ae297bae2c4b9659f5a \ - --hash=sha256:b97b479f39c7e4aaf807efd0424dec74bbb379108f7d22cf09323086afcd312c \ - --hash=sha256:e8fe305d9d67a81255e06203454729405706907dccbdfcc330b7b3482a6c371d \ - --hash=sha256:39ab9240cd215a9349c85ab908dda6d732f7d3b4b192fa05780812495536acc4 \ - --hash=sha256:71487c503e036740635f18324f62a11f283a632ace9d35933b2b0a04fd898c98 \ - --hash=sha256:3bc1ab68b9a096f368ba06c3a5e1d1d50957a86665fc929c4332d21355e7e8f4 \ - --hash=sha256:f7c39f7dbb57cce00c108d06d731f3b0e2a4d3a95c66d96bce697684876ce4d4 \ - --hash=sha256:47d1a95bd9d37302afcfe1b84c8011377c4f81e33649c5a5785db9ab827a6ade \ - --hash=sha256:96d7cf7b25c9f23c59a766385f6370dab0659741699ecc7a451f9b94604938ce \ - --hash=sha256:09412eb7fb60b8f00b328037fd814d25d261066ebc43a1e339cdce4f7502877e \ - --hash=sha256:90c805f30c46cf60f1e76e947574f02954d25e3bb1e97aa8a07bc53aa31cf7d1 \ - --hash=sha256:26d28c468900e6d5fdb37d2812ab46db0ccd22c63baa095057871faa3a498bc9 -trimesh==3.9.36 \ - --hash=sha256:f01e8edab14d1999700c980c21a1546f37417216ad915a53be649d263130181e \ - --hash=sha256:8ac8bea693b3ee119f11b022fc9b9481c9f1af06cb38bc859bf5d16bbbe49b23 -sentry-sdk==0.13.5 \ - --hash=sha256:05285942901d38c7ce2498aba50d8e87b361fc603281a5902dda98f3f8c5e145 \ - --hash=sha256:c6b919623e488134a728f16326c6f0bcdab7e3f59e7f4c472a90eea4d6d8fe82 -mypy==0.931 \ - --hash=sha256:0038b21890867793581e4cb0d810829f5fd4441aa75796b53033af3aa30430ce \ - --hash=sha256:1171f2e0859cfff2d366da2c7092b06130f232c636a3f7301e3feb8b41f6377d \ - --hash=sha256:1b06268df7eb53a8feea99cbfff77a6e2b205e70bf31743e786678ef87ee8069 \ - --hash=sha256:1b65714dc296a7991000b6ee59a35b3f550e0073411ac9d3202f6516621ba66c \ - --hash=sha256:1bf752559797c897cdd2c65f7b60c2b6969ffe458417b8d947b8340cc9cec08d \ - --hash=sha256:300717a07ad09525401a508ef5d105e6b56646f7942eb92715a1c8d610149714 \ - --hash=sha256:3c5b42d0815e15518b1f0990cff7a705805961613e701db60387e6fb663fe78a \ - --hash=sha256:4365c60266b95a3f216a3047f1d8e3f895da6c7402e9e1ddfab96393122cc58d \ - --hash=sha256:50c7346a46dc76a4ed88f3277d4959de8a2bd0a0fa47fa87a4cde36fe247ac05 \ - --hash=sha256:5b56154f8c09427bae082b32275a21f500b24d93c88d69a5e82f3978018a0266 \ - --hash=sha256:74f7eccbfd436abe9c352ad9fb65872cc0f1f0a868e9d9c44db0893440f0c697 \ - --hash=sha256:7b3f6f557ba4afc7f2ce6d3215d5db279bcf120b3cfd0add20a5d4f4abdae5bc \ - --hash=sha256:8c11003aaeaf7cc2d0f1bc101c1cc9454ec4cc9cb825aef3cafff8a5fdf4c799 \ - --hash=sha256:8ca7f8c4b1584d63c9a0f827c37ba7a47226c19a23a753d52e5b5eddb201afcd \ - --hash=sha256:c89702cac5b302f0c5d33b172d2b55b5df2bede3344a2fbed99ff96bddb2cf00 \ - --hash=sha256:d8f1ff62f7a879c9fe5917b3f9eb93a79b78aad47b533911b853a757223f72e7 \ - --hash=sha256:d9d2b84b2007cea426e327d2483238f040c49405a6bf4074f605f0156c91a47a \ - --hash=sha256:e839191b8da5b4e5d805f940537efcaa13ea5dd98418f06dc585d2891d228cf0 \ - --hash=sha256:f9fe20d0872b26c4bba1c1be02c5340de1019530302cf2dcc85c7f9fc3252ae0 \ - --hash=sha256:ff3bf387c14c805ab1388185dd22d6b210824e164d4bb324b195ff34e322d166 -pyserial==3.4 \ - --hash=sha256:6e2d401fdee0eab996cf734e67773a0143b932772ca8b42451440cfed942c627 \ - --hash=sha256:e0770fadba80c31013896c7e6ef703f72e7834965954a78e71a3049488d4d7d8 - -### Indirect requirements ### -chardet==3.0.4 \ - --hash=sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae \ - --hash=sha256:fc323ffcaeaed0e0a02bf4d117757b98aed530d9ed4531e3e15460124c106691 -idna==2.8 \ - --hash=sha256:c357b3f628cf53ae2c4c05627ecc484553142ca23264e593d327bcde5e9c3407 \ - --hash=sha256:ea8b7f6188e6fa117537c3df7da9fc686d485087abf6ac197f9c46432f7e4a3c -attrs==21.3.0 \ - --hash=sha256:8f7335278dedd26b58c38e006338242cc0977f06d51579b2b8b87b9b33bff66c \ - --hash=sha256:50f3c9b216dc9021042f71b392859a773b904ce1a029077f58f6598272432045 -requests==2.22.0 \ - --hash=sha256:11e007a8a2aa0323f5a921e9e6a2d7e4e67d9877e85773fba9ba6419025cbeb4 \ - --hash=sha256:9cf5292fcd0f598c671cfc1e0d7d1a7f13bb8085e9a590f48c010551dc6c4b31 -# twisted -Twisted==21.2.0 \ - --hash=sha256:77544a8945cf69b98d2946689bbe0c75de7d145cdf11f391dd487eae8fc95a12 \ - --hash=sha256:aab38085ea6cda5b378b519a0ec99986874921ee8881318626b0a3414bb2631e -constantly==15.1.0 \ - --hash=sha256:586372eb92059873e29eba4f9dec8381541b4d3834660707faf8ba59146dfc35 \ - --hash=sha256:dd2fa9d6b1a51a83f0d7dd76293d734046aa176e384bf6e33b7e44880eb37c5d -hyperlink==21.0.0 \ - --hash=sha256:427af957daa58bc909471c6c40f74c5450fa123dd093fc53efd2e91d2705a56b \ - --hash=sha256:e6b14c37ecb73e89c77d78cdb4c2cc8f3fb59a885c5b3f819ff4ed80f25af1b4 -incremental==22.10.0 \ - --hash=sha256:b864a1f30885ee72c5ac2835a761b8fe8aa9c28b9395cacf27286602688d3e51 \ - --hash=sha256:912feeb5e0f7e0188e6f42241d2f450002e11bbc0937c65865045854c24c0bd0 -zope.interface==5.4.0 \ - --hash=sha256:0f91b5b948686659a8e28b728ff5e74b1be6bf40cb04704453617e5f1e945ef3 \ - --hash=sha256:3c02411a3b62668200910090a0dff17c0b25aaa36145082a5a6adf08fa281e54 \ - --hash=sha256:5dba5f530fec3f0988d83b78cc591b58c0b6eb8431a85edd1569a0539a8a5a0e \ - --hash=sha256:bf68f4b2b6683e52bec69273562df15af352e5ed25d1b6641e7efddc5951d1a7 \ - --hash=sha256:db1fa631737dab9fa0b37f3979d8d2631e348c3b4e8325d6873c2541d0ae5a48 \ - --hash=sha256:f44e517131a98f7a76696a7b21b164bcb85291cee106a23beccce454e1f433a4 -Automat==20.2.0 \ - --hash=sha256:7979803c74610e11ef0c0d68a2942b152df52da55336e0c9d58daf1831cbdf33 \ - --hash=sha256:b6feb6455337df834f6c9962d6ccf771515b7d939bca142b29c20c2376bc6111 -twisted-iocpsupport==1.0.2; \ - sys_platform=="win32" \ - --hash=sha256:306becd6e22ab6e8e4f36b6bdafd9c92e867c98a5ce517b27fdd27760ee7ae41 \ - --hash=sha256:3c61742cb0bc6c1ac117a7e5f422c129832f0c295af49e01d8a6066df8cfc04d \ - --hash=sha256:72068b206ee809c9c596b57b5287259ea41ddb4774d86725b19f35bf56aa32a9 \ - --hash=sha256:7d972cfa8439bdcb35a7be78b7ef86d73b34b808c74be56dfa785c8a93b851bf \ - --hash=sha256:81b3abe3527b367da0220482820cb12a16c661672b7bcfcde328902890d63323 \ - --hash=sha256:851b3735ca7e8102e661872390e3bce88f8901bece95c25a0c8bb9ecb8a23d32 \ - --hash=sha256:985c06a33f5c0dae92c71a036d1ea63872ee86a21dd9b01e1f287486f15524b4 \ - --hash=sha256:9dbb8823b49f06d4de52721b47de4d3b3026064ef4788ce62b1a21c57c3fff6f \ - --hash=sha256:b435857b9efcbfc12f8c326ef0383f26416272260455bbca2cd8d8eca470c546 \ - --hash=sha256:b76b4eed9b27fd63ddb0877efdd2d15835fdcb6baa745cb85b66e5d016ac2878 \ - --hash=sha256:b9fed67cf0f951573f06d560ac2f10f2a4bbdc6697770113a2fc396ea2cb2565 \ - --hash=sha256:bf4133139d77fc706d8f572e6b7d82871d82ec7ef25d685c2351bdacfb701415 -numpy-stl==2.10.1 \ - --hash=sha256:f6b529b8a8112dfe456d4f7697c7aee0aca62be5a873879306afe4b26fca963c -python-utils==2.3.0 \ - --hash=sha256:34aaf26b39b0b86628008f2ae0ac001b30e7986a8d303b61e1357dfcdad4f6d3 \ - --hash=sha256:e25f840564554eaded56eaa395bca507b0b9e9f0ae5ecb13a8cb785305c56d25 -six==1.12.0 \ - --hash=sha256:3350809f0555b11f552448330d0b52d5f24c91a322ea4a15ef22629740f3761c \ - --hash=sha256:d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73 -shapely==2.0.1 \ - --hash=sha256:01224899ff692a62929ef1a3f5fe389043e262698a708ab7569f43a99a48ae82 \ - --hash=sha256:05c51a29336e604c084fb43ae5dbbfa2c0ef9bd6fedeae0a0d02c7b57a56ba46 \ - --hash=sha256:09d6c7763b1bee0d0a2b84bb32a4c25c6359ad1ac582a62d8b211e89de986154 \ - --hash=sha256:193a398d81c97a62fc3634a1a33798a58fd1dcf4aead254d080b273efbb7e3ff \ - --hash=sha256:1a34a23d6266ca162499e4a22b79159dc0052f4973d16f16f990baa4d29e58b6 \ - --hash=sha256:2569a4b91caeef54dd5ae9091ae6f63526d8ca0b376b5bb9fd1a3195d047d7d4 \ - --hash=sha256:33403b8896e1d98aaa3a52110d828b18985d740cc9f34f198922018b1e0f8afe \ - --hash=sha256:3ad81f292fffbd568ae71828e6c387da7eb5384a79db9b4fde14dd9fdeffca9a \ - --hash=sha256:3cb256ae0c01b17f7bc68ee2ffdd45aebf42af8992484ea55c29a6151abe4386 \ - --hash=sha256:45b4833235b90bc87ee26c6537438fa77559d994d2d3be5190dd2e54d31b2820 \ - --hash=sha256:4641325e065fd3e07d55677849c9ddfd0cf3ee98f96475126942e746d55b17c8 \ - --hash=sha256:502e0a607f1dcc6dee0125aeee886379be5242c854500ea5fd2e7ac076b9ce6d \ - --hash=sha256:66a6b1a3e72ece97fc85536a281476f9b7794de2e646ca8a4517e2e3c1446893 \ - --hash=sha256:70a18fc7d6418e5aea76ac55dce33f98e75bd413c6eb39cfed6a1ba36469d7d4 \ - --hash=sha256:7d3bbeefd8a6a1a1017265d2d36f8ff2d79d0162d8c141aa0d37a87063525656 \ - --hash=sha256:83a8ec0ee0192b6e3feee9f6a499d1377e9c295af74d7f81ecba5a42a6b195b7 \ - --hash=sha256:865bc3d7cc0ea63189d11a0b1120d1307ed7a64720a8bfa5be2fde5fc6d0d33f \ - --hash=sha256:90cfa4144ff189a3c3de62e2f3669283c98fb760cfa2e82ff70df40f11cadb39 \ - --hash=sha256:91575d97fd67391b85686573d758896ed2fc7476321c9d2e2b0c398b628b961c \ - --hash=sha256:9a6ac34c16f4d5d3c174c76c9d7614ec8fe735f8f82b6cc97a46b54f386a86bf \ - --hash=sha256:a529218e72a3dbdc83676198e610485fdfa31178f4be5b519a8ae12ea688db14 \ - --hash=sha256:a70a614791ff65f5e283feed747e1cc3d9e6c6ba91556e640636bbb0a1e32a71 \ - --hash=sha256:ac1dfc397475d1de485e76de0c3c91cc9d79bd39012a84bb0f5e8a199fc17bef \ - --hash=sha256:b06d031bc64149e340448fea25eee01360a58936c89985cf584134171e05863f \ - --hash=sha256:b4f0711cc83734c6fad94fc8d4ec30f3d52c1787b17d9dca261dc841d4731c64 \ - --hash=sha256:b50c401b64883e61556a90b89948297f1714dbac29243d17ed9284a47e6dd731 \ - --hash=sha256:b519cf3726ddb6c67f6a951d1bb1d29691111eaa67ea19ddca4d454fbe35949c \ - --hash=sha256:bca57b683e3d94d0919e2f31e4d70fdfbb7059650ef1b431d9f4e045690edcd5 \ - --hash=sha256:c43755d2c46b75a7b74ac6226d2cc9fa2a76c3263c5ae70c195c6fb4e7b08e79 \ - --hash=sha256:c7eed1fb3008a8a4a56425334b7eb82651a51f9e9a9c2f72844a2fb394f38a6c \ - --hash=sha256:c8b0d834b11be97d5ab2b4dceada20ae8e07bcccbc0f55d71df6729965f406ad \ - --hash=sha256:ce88ec79df55430e37178a191ad8df45cae90b0f6972d46d867bf6ebbb58cc4d \ - --hash=sha256:d173d24e85e51510e658fb108513d5bc11e3fd2820db6b1bd0522266ddd11f51 \ - --hash=sha256:d8f55f355be7821dade839df785a49dc9f16d1af363134d07eb11e9207e0b189 \ - --hash=sha256:da71de5bf552d83dcc21b78cc0020e86f8d0feea43e202110973987ffa781c21 \ - --hash=sha256:e55698e0ed95a70fe9ff9a23c763acfe0bf335b02df12142f74e4543095e9a9b \ - --hash=sha256:f32a748703e7bf6e92dfa3d2936b2fbfe76f8ce5f756e24f49ef72d17d26ad02 \ - --hash=sha256:f470a130d6ddb05b810fc1776d918659407f8d025b7f56d2742a596b6dffa6c7 -cython==0.29.26 \ - --hash=sha256:af377d543a762867da11fcf6e558f7a4a535ff8693f30cce123fab10c00fa312 \ - --hash=sha256:f5e15ff892c8afad64931ee3dd723c4755c2c516606f9aae7613bebfac62b0f6 \ - --hash=sha256:2b834ff6e4d10ba6d7a0d676dd71c1b427a181ddbbbbf79e91d1861557aab59f \ - --hash=sha256:c813799d533194b7d85203d881d8b4f567a8c644a67f50d47f1ffbf316df412f \ - --hash=sha256:6773cce9d4b3b6168d8feb2b6f06b658ef1e11cbfec075041745666d8e2a5e45 \ - --hash=sha256:362fbb9cb4627c7786231429768b54aaba5459a2a0e46c25e59f202ca6155437 -pybind11==2.6.2 \ - --hash=sha256:2d8aebe1709bc367e34e3b23d8eccbf3f387ee9d5640548c6260d33b59f02405 \ - --hash=sha256:d0e0aed9279656f21501243b707eb6e3b951e89e10c3271dedf3ae41c365e5ed -wheel==0.37.1 \ - --hash=sha256:e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4 \ - --hash=sha256:4bdcd7d840138086126cd09254dc6195fb4fc6f01c050a1d7236f2630db1d22a -setuptools==62.0.0 \ - --hash=sha256:7999cbd87f1b6e1f33bf47efa368b224bed5e27b5ef2c4d46580186cbcb1a86a \ - --hash=sha256:a65e3802053e99fc64c6b3b29c11132943d5b8c8facbcc461157511546510967 -ifaddr==0.1.7 \ - --hash=sha256:1f9e8a6ca6f16db5a37d3356f07b6e52344f6f9f7e806d618537731669eb1a94 \ - --hash=sha256:d1f603952f0a71c9ab4e705754511e4e03b02565bc4cec7188ad6415ff534cd3 -pycparser==2.20 \ - --hash=sha256:2d475327684562c3a96cc71adf7dc8c4f0565175cf86b6d7a404ff4c771f15f0 \ - --hash=sha256:7582ad22678f0fcd81102833f60ef8d0e57288b6b5fb00323d101be910e35705 -zipp==3.5.0 \ - --hash=sha256:957cfda87797e389580cb8b9e3870841ca991e2125350677b2ca83a0e99390a3 \ - --hash=sha256:f5812b1e007e48cff63449a5e9f4e7ebea716b4111f9c4f9a645f91d579bf0c4 -cffi==1.15.0 \ - --hash=sha256:00c878c90cb53ccfaae6b8bc18ad05d2036553e6d9d1d9dbcf323bbe83854ca3 \ - --hash=sha256:0104fb5ae2391d46a4cb082abdd5c69ea4eab79d8d44eaaf79f1b1fd806ee4c2 \ - --hash=sha256:06c48159c1abed75c2e721b1715c379fa3200c7784271b3c46df01383b593636 \ - --hash=sha256:0808014eb713677ec1292301ea4c81ad277b6cdf2fdd90fd540af98c0b101d20 \ - --hash=sha256:10dffb601ccfb65262a27233ac273d552ddc4d8ae1bf93b21c94b8511bffe728 \ - --hash=sha256:14cd121ea63ecdae71efa69c15c5543a4b5fbcd0bbe2aad864baca0063cecf27 \ - --hash=sha256:17771976e82e9f94976180f76468546834d22a7cc404b17c22df2a2c81db0c66 \ - --hash=sha256:181dee03b1170ff1969489acf1c26533710231c58f95534e3edac87fff06c443 \ - --hash=sha256:23cfe892bd5dd8941608f93348c0737e369e51c100d03718f108bf1add7bd6d0 \ - --hash=sha256:263cc3d821c4ab2213cbe8cd8b355a7f72a8324577dc865ef98487c1aeee2bc7 \ - --hash=sha256:2756c88cbb94231c7a147402476be2c4df2f6078099a6f4a480d239a8817ae39 \ - --hash=sha256:27c219baf94952ae9d50ec19651a687b826792055353d07648a5695413e0c605 \ - --hash=sha256:2a23af14f408d53d5e6cd4e3d9a24ff9e05906ad574822a10563efcef137979a \ - --hash=sha256:31fb708d9d7c3f49a60f04cf5b119aeefe5644daba1cd2a0fe389b674fd1de37 \ - --hash=sha256:3415c89f9204ee60cd09b235810be700e993e343a408693e80ce7f6a40108029 \ - --hash=sha256:3773c4d81e6e818df2efbc7dd77325ca0dcb688116050fb2b3011218eda36139 \ - --hash=sha256:3b96a311ac60a3f6be21d2572e46ce67f09abcf4d09344c49274eb9e0bf345fc \ - --hash=sha256:3f7d084648d77af029acb79a0ff49a0ad7e9d09057a9bf46596dac9514dc07df \ - --hash=sha256:41d45de54cd277a7878919867c0f08b0cf817605e4eb94093e7516505d3c8d14 \ - --hash=sha256:4238e6dab5d6a8ba812de994bbb0a79bddbdf80994e4ce802b6f6f3142fcc880 \ - --hash=sha256:45db3a33139e9c8f7c09234b5784a5e33d31fd6907800b316decad50af323ff2 \ - --hash=sha256:45e8636704eacc432a206ac7345a5d3d2c62d95a507ec70d62f23cd91770482a \ - --hash=sha256:4958391dbd6249d7ad855b9ca88fae690783a6be9e86df65865058ed81fc860e \ - --hash=sha256:4a306fa632e8f0928956a41fa8e1d6243c71e7eb59ffbd165fc0b41e316b2474 \ - --hash=sha256:57e9ac9ccc3101fac9d6014fba037473e4358ef4e89f8e181f8951a2c0162024 \ - --hash=sha256:59888172256cac5629e60e72e86598027aca6bf01fa2465bdb676d37636573e8 \ - --hash=sha256:5e069f72d497312b24fcc02073d70cb989045d1c91cbd53979366077959933e0 \ - --hash=sha256:64d4ec9f448dfe041705426000cc13e34e6e5bb13736e9fd62e34a0b0c41566e \ - --hash=sha256:6dc2737a3674b3e344847c8686cf29e500584ccad76204efea14f451d4cc669a \ - --hash=sha256:74fdfdbfdc48d3f47148976f49fab3251e550a8720bebc99bf1483f5bfb5db3e \ - --hash=sha256:75e4024375654472cc27e91cbe9eaa08567f7fbdf822638be2814ce059f58032 \ - --hash=sha256:786902fb9ba7433aae840e0ed609f45c7bcd4e225ebb9c753aa39725bb3e6ad6 \ - --hash=sha256:8b6c2ea03845c9f501ed1313e78de148cd3f6cad741a75d43a29b43da27f2e1e \ - --hash=sha256:91d77d2a782be4274da750752bb1650a97bfd8f291022b379bb8e01c66b4e96b \ - --hash=sha256:91ec59c33514b7c7559a6acda53bbfe1b283949c34fe7440bcf917f96ac0723e \ - --hash=sha256:920f0d66a896c2d99f0adbb391f990a84091179542c205fa53ce5787aff87954 \ - --hash=sha256:a5263e363c27b653a90078143adb3d076c1a748ec9ecc78ea2fb916f9b861962 \ - --hash=sha256:abb9a20a72ac4e0fdb50dae135ba5e77880518e742077ced47eb1499e29a443c \ - --hash=sha256:c2051981a968d7de9dd2d7b87bcb9c939c74a34626a6e2f8181455dd49ed69e4 \ - --hash=sha256:c21c9e3896c23007803a875460fb786118f0cdd4434359577ea25eb556e34c55 \ - --hash=sha256:c2502a1a03b6312837279c8c1bd3ebedf6c12c4228ddbad40912d671ccc8a962 \ - --hash=sha256:d4d692a89c5cf08a8557fdeb329b82e7bf609aadfaed6c0d79f5a449a3c7c023 \ - --hash=sha256:da5db4e883f1ce37f55c667e5c0de439df76ac4cb55964655906306918e7363c \ - --hash=sha256:e7022a66d9b55e93e1a845d8c9eba2a1bebd4966cd8bfc25d9cd07d515b33fa6 \ - --hash=sha256:ef1f279350da2c586a69d32fc8733092fd32cc8ac95139a00377841f59a3f8d8 \ - --hash=sha256:f54a64f8b0c8ff0b64d18aa76675262e1700f3995182267998c31ae974fbc382 \ - --hash=sha256:f5c7150ad32ba43a07c4479f40241756145a1f03b43480e058cfd862bf5041c7 \ - --hash=sha256:f6f824dc3bce0edab5f427efcfb1d63ee75b6fcb7282900ccaf925be84efb0fc \ - --hash=sha256:fd8a250edc26254fe5b33be00402e6d287f562b6a5b2152dec302fa15bb3e997 \ - --hash=sha256:ffaa5c925128e29efbde7301d8ecaf35c8c60ffbcd6a1ffd3a552177c8e5e796 -urllib3==1.25.9 \ - --hash=sha256:3018294ebefce6572a474f0604c2021e33b3fd8006ecd11d62107a5d2a963527 \ - --hash=sha256:88206b0eb87e6d677d424843ac5209e3fb9d0190d0ee169599165ec25e9d9115 -mypy-extensions==0.4.3 \ - --hash=sha256:090fedd75945a69ae91ce1303b5824f428daf5a028d2f6ab8a299250a846f15d \ - --hash=sha256:2d82818f5bb3e369420cb3c4060a7970edba416647068eb4c5343488a6c604a8 -tomli==2.0.1 \ - --hash=sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc \ - --hash=sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f -typing-extensions==3.10.0.2 \ - --hash=sha256:49f75d16ff11f1cd258e1b988ccff82a3ca5570217d7ad8c5f48205dd99a677e \ - --hash=sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34 -jeepney==0.7.1; \ - --hash=sha256:1b5a0ea5c0e7b166b2f5895b91a08c14de8915afda4407fb5022a195224958ac \ - --hash=sha256:fa9e232dfa0c498bd0b8a3a73b8d8a31978304dcef0515adc859d4e096f96f4f -SecretStorage==3.3.3 \ - --hash=sha256:2403533ef369eca6d2ba81718576c5e0f564d5cca1b58f73a8b23e7d4eeebd77 \ - --hash=sha256:f356e6628222568e3af06f2eba8df495efa13b3b63081dafd4f7d9a7b7bc9f99 -keyring==23.0.1 \ - --hash=sha256:045703609dd3fccfcdb27da201684278823b72af515aedec1a8515719a038cb8 \ - --hash=sha256:8f607d7d1cc502c43a932a275a56fe47db50271904513a379d39df1af277ac48 -networkx==2.6.2 \ - --hash=sha256:2306f1950ce772c5a59a57f5486d59bb9cab98497c45fc49cbc45ac0dec119bb \ - --hash=sha256:5fcb7004be69e8fbdf07dcb502efa5c77cadcaad6982164134eeb9721f826c2e -pywin32==303; \ - sys_platform=="win32" \ - --hash=sha256:51cb52c5ec6709f96c3f26e7795b0bf169ee0d8395b2c1d7eb2c029a5008ed51 -pywin32-ctypes==0.2.0; \ - sys_platform=="win32" \ - --hash=sha256:24ffc3b341d457d48e8922352130cf2644024a4ff09762a2261fd34c36ee5942 \ - --hash=sha256:9dc2d991b3479cc2df15930958b674a48a227d5361d413827a4cfd0b5876fc98 - -charset-normalizer==2.1.0; \ - --hash=sha256:5189b6f22b01957427f35b6a08d9a0bc45b46d3788ef5a92e978433c7a35f8a5 diff --git a/resources/bundled_packages/cura.json b/resources/bundled_packages/cura.json index a32d1d61f6..1b32ee3484 100644 --- a/resources/bundled_packages/cura.json +++ b/resources/bundled_packages/cura.json @@ -1,4 +1,21 @@ { + "3DConnexion": { + "package_info": { + "package_id": "3DConnexion", + "package_type": "plugin", + "display_name": "3DConnexion mouses", + "description": "Allows working with 3D mouses inside Cura.\nOnly available on Windows and MacOS.", + "package_version": "1.0.0", + "sdk_version": "8.6.0", + "website": "https://3dconnexion.com", + "author": { + "author_id": "UltimakerPackages", + "display_name": "3DConnexion", + "email": "plugins@ultimaker.com", + "website": "https://3dconnexion.com" + } + } + }, "3MFReader": { "package_info": { "package_id": "3MFReader", @@ -1429,6 +1446,23 @@ } } }, + "BASFUltrafuse316L": { + "package_info": { + "package_id": "BASFUltrafuse316L", + "package_type": "material", + "display_name": "BASF Ultrafuse 316L", + "description": "An innovative filament to produce 316L grade stainless steel parts.", + "package_version": "1.0.1", + "sdk_version": "8.6.0", + "website": "https://forward-am.com/material-portfolio/ultrafuse-filaments-for-fused-filaments-fabrication-fff/metal-filaments/ultrafuse-316l/", + "author": { + "author_id": "BASF", + "display_name": "BASF", + "email": null, + "website": "https://forward-am.com/" + } + } + }, "DagomaChromatikPLA": { "package_info": { "package_id": "DagomaChromatikPLA", @@ -1582,6 +1616,23 @@ } } }, + "JabilTPE_SEBS1300_95a": { + "package_info": { + "package_id": "JabilTPE_SEBS1300_95a", + "package_type": "material", + "display_name": "Jabil TPE SEBS 1300 95a", + "description": "Soft material great for prototyping where rubber-like or elastomeric properties and durability are required.", + "package_version": "1.0.1", + "sdk_version": "8.6.0", + "website": "https://www.jabil.com/services/additive-manufacturing/additive-materials/compare-filaments/tpe-sebs-95a.html", + "author": { + "author_id": "Jabil", + "display_name": "Jabil", + "email": null, + "website": "https://www.jabil.com/" + } + } + }, "OctofiberPLA": { "package_info": { "package_id": "OctofiberPLA", @@ -1616,6 +1667,23 @@ } } }, + "PolyMaxPC": { + "package_info": { + "package_id": "PolyMaxPC", + "package_type": "material", + "display_name": "PolyMax™ PC", + "description": "PolyMax™ PC is an engineered PC filament combining excellent strength, toughness, heat resistance and printing quality. It is the ideal choice for a wide range of engineering applications.", + "package_version": "1.0.1", + "sdk_version": "8.6.0", + "website": "http://www.polymaker.com/shop/polymax/", + "author": { + "author_id": "Polymaker", + "display_name": "Polymaker L.L.C.", + "email": "inquiry@polymaker.com", + "website": "https://www.polymaker.com" + } + } + }, "PolyMaxPLA": { "package_info": { "package_id": "PolyMaxPLA", @@ -1933,11 +2001,201 @@ } } }, + "ULTIMAKERABSMETHOD": { + "package_info": { + "package_id": "ULTIMAKERABSMETHOD", + "package_type": "material", + "display_name": "ABS", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-abs/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "ULTIMAKERNYLONMETHOD": { + "package_info": { + "package_id": "ULTIMAKERNYLONMETHOD", + "package_type": "material", + "display_name": "Nylon", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-nylon/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "ULTIMAKERNYLONCFMETHOD": { + "package_info": { + "package_id": "ULTIMAKERNYLONCFMETHOD", + "package_type": "material", + "display_name": "Nylon Carbon Fiber", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-nylon-carbon-fiber/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "ULTIMAKERPLAMETHOD": { + "package_info": { + "package_id": "ULTIMAKERPLAMETHOD", + "package_type": "material", + "display_name": "PLA", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-pla/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "ULTIMAKERPVAMETHOD": { + "package_info": { + "package_id": "ULTIMAKERPVAMETHOD", + "package_type": "material", + "display_name": "PVA", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-pva/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "ULTIMAKERPETGMETHOD": { + "package_info": { + "package_id": "ULTIMAKERPETGMETHOD", + "package_type": "material", + "display_name": "PETG", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-petg/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "ULTIMAKERTOUGHMETHOD": { + "package_info": { + "package_id": "ULTIMAKERTOUGHMETHOD", + "package_type": "material", + "display_name": "Tough PLA", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-series-tough/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "BASFMETALMETHOD": { + "package_info": { + "package_id": "BASFMETALMETHOD", + "package_type": "material", + "display_name": "BASF Ultrafuse 316L", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-materials/#metal", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "JABILSEBSMETHOD": { + "package_info": { + "package_id": "JABILSEBSMETHOD", + "package_type": "material", + "display_name": "Jabil TPE SEBS 95A", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-materials/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, + "POLYMAKERPCMETHOD": { + "package_info": { + "package_id": "POLYMAKERPCMETHOD", + "package_type": "material", + "display_name": "Polymaker PolyMax PC", + "description": "Example package for material and quality profiles for Ultimaker materials.", + "package_version": "2.0.0", + "sdk_version": "8.6.0", + "website": "https://ultimaker.com/materials/method-materials/", + "author": { + "author_id": "UltimakerPackages", + "display_name": "UltiMaker", + "email": "materials@ultimaker.com", + "website": "https://ultimaker.com", + "description": "Professional 3D printing made accessible.", + "support_website": "https://ultimaker.com/materials/method-materials/" + } + } + }, "ULTIMAKERBASCFMETHOD": { "package_info": { "package_id": "ULTIMAKERBASCFMETHOD", "package_type": "material", - "display_name": "Ultimaker ABS-CF", + "display_name": "ABS-CF", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "2.0.0", "sdk_version": "8.6.0", @@ -1956,7 +2214,7 @@ "package_info": { "package_id": "ULTIMAKERABSRMETHOD", "package_type": "material", - "display_name": "Ultimaker ABS-R", + "display_name": "ABS-R", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "2.0.0", "sdk_version": "8.6.0", @@ -1975,7 +2233,7 @@ "package_info": { "package_id": "ULTIMAKERASAMETHOD", "package_type": "material", - "display_name": "Ultimaker ASA", + "display_name": "ASA", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "2.0.0", "sdk_version": "8.6.0", @@ -1994,7 +2252,7 @@ "package_info": { "package_id": "ULTIMAKERNYLON12CFMETHOD", "package_type": "material", - "display_name": "Ultimaker Nylon12 Carbon Fiber", + "display_name": "Nylon12 Carbon Fiber", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "2.0.0", "sdk_version": "8.6.0", @@ -2013,7 +2271,7 @@ "package_info": { "package_id": "ULTIMAKERRAPIDRINSEMETHOD", "package_type": "material", - "display_name": "Ultimaker RapidRinse", + "display_name": "RapidRinse", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "2.0.0", "sdk_version": "8.6.0", @@ -2032,7 +2290,7 @@ "package_info": { "package_id": "ULTIMAKERSR30METHOD", "package_type": "material", - "display_name": "Ultimaker SR-30", + "display_name": "SR-30", "description": "Example package for material and quality profiles for Ultimaker materials.", "package_version": "2.0.0", "sdk_version": "8.6.0", diff --git a/resources/conandata.yml b/resources/conandata.yml index c2971e2769..0644c1a42e 100644 --- a/resources/conandata.yml +++ b/resources/conandata.yml @@ -1 +1 @@ -version: "5.8.0-alpha.0" +version: "5.11.0-alpha.0" diff --git a/resources/conanfile.py b/resources/conanfile.py index fde648eeac..cebaea4345 100644 --- a/resources/conanfile.py +++ b/resources/conanfile.py @@ -5,7 +5,7 @@ from conan.tools.files import copy, update_conandata from conan.tools.scm import Version from conan.errors import ConanInvalidConfiguration -required_conan_version = ">=1.58.0 <2.0.0" +required_conan_version = ">=2.7.0" class CuraResource(ConanFile): @@ -15,9 +15,8 @@ class CuraResource(ConanFile): url = "https://github.com/Ultimaker/cura" description = "Cura Resources" topics = ("conan", "cura") - settings = "os", "compiler", "build_type", "arch" no_copy_source = True - + package_type = "shared-library" @property def _shared_resources(self): @@ -37,10 +36,6 @@ class CuraResource(ConanFile): copy(self, pattern="*", src=os.path.join(self.recipe_folder, shared_resources), dst=os.path.join(self.export_sources_folder, shared_resources)) - def validate(self): - if Version(self.version) <= Version("4"): - raise ConanInvalidConfiguration("Only versions 5+ are support") - def layout(self): self.cpp.source.resdirs = self._shared_resources self.cpp.package.resdirs = [f"res/{res}" for res in self._shared_resources] @@ -51,12 +46,9 @@ class CuraResource(ConanFile): def package_info(self): self.cpp_info.includedirs = [] - self.runenv_info.append_path("CURA_RESOURCES", os.path.join(self.package_folder, "res")) - self.runenv_info.append_path("CURA_ENGINE_SEARCH_PATH", os.path.join(self.package_folder, "res", "definitions")) - self.runenv_info.append_path("CURA_ENGINE_SEARCH_PATH", os.path.join(self.package_folder, "res", "extruders")) - self.env_info.CURA_RESOURCES.append(os.path.join(self.package_folder, "res")) - self.env_info.CURA_ENGINE_SEARCH_PATH.append(os.path.join(self.package_folder, "res", "definitions")) - self.env_info.CURA_ENGINE_SEARCH_PATH.append(os.path.join(self.package_folder, "res", "definitions")) + self.runenv_info.define("CURA_RESOURCES", os.path.join(self.package_folder, "res")) + self.runenv_info.define("CURA_ENGINE_SEARCH_PATH", os.path.join(self.package_folder, "res", "definitions")) + self.runenv_info.define("CURA_ENGINE_SEARCH_PATH", os.path.join(self.package_folder, "res", "extruders")) def package_id(self): self.info.clear() diff --git a/resources/definitions/Mark2_for_Ultimaker2.def.json b/resources/definitions/Mark2_for_Ultimaker2.def.json index 789d5d42ec..dab45dd80c 100644 --- a/resources/definitions/Mark2_for_Ultimaker2.def.json +++ b/resources/definitions/Mark2_for_Ultimaker2.def.json @@ -130,7 +130,6 @@ "machine_min_cool_heat_time_window": { "default_value": 15.0 }, "machine_name": { "default_value": "Mark2_for_Ultimaker2" }, "machine_nozzle_cool_down_speed": { "default_value": 1.5 }, - "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_heat_up_speed": { "default_value": 3.5 }, "machine_nozzle_size": { "default_value": 0.4 }, "machine_show_variants": { "default_value": true }, diff --git a/resources/definitions/ankermake_m5.def.json b/resources/definitions/ankermake_m5.def.json index 4e4b3498b3..a4bc967108 100644 --- a/resources/definitions/ankermake_m5.def.json +++ b/resources/definitions/ankermake_m5.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "ankermake_m5_platform.obj", "has_machine_quality": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "ankermake_m5_extruder_0" }, "platform_texture": "ankermake_m5.png", "preferred_material": "generic_pla", @@ -119,7 +120,12 @@ "support_z_distance": { "value": "layer_height * 2" }, "top_bottom_thickness": { "value": "layer_height * 4" }, "wall_overhang_angle": { "value": 55 }, - "wall_overhang_speed_factor": { "value": 55 }, + "wall_overhang_speed_factors": + { + "value": [ + 55 + ] + }, "zig_zaggify_infill": { "value": "infill_pattern == 'cross' or infill_pattern == 'cross_3d' or infill_pattern == 'lines'" } } } \ No newline at end of file diff --git a/resources/definitions/ankermake_m5c.def.json b/resources/definitions/ankermake_m5c.def.json index 8a131534be..3e1d7db0a9 100644 --- a/resources/definitions/ankermake_m5c.def.json +++ b/resources/definitions/ankermake_m5c.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "ankermake_m5c_platform.obj", "has_machine_quality": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "ankermake_m5c_extruder_0" }, "platform_texture": "ankermake_m5c.png", "preferred_material": "generic_pla", @@ -67,7 +68,6 @@ ] }, "infill_extruder_nr": { "value": -1 }, - "infill_line_distance": { "value": 8 }, "infill_material_flow": { "value": 90 }, "infill_pattern": { "value": "'lines' if infill_sparse_density >= 25 else 'grid'" }, "infill_sparse_density": { "value": 10 }, @@ -238,7 +238,12 @@ "wall_extruder_nr": { "value": -1 }, "wall_line_width_0": { "value": 0.44 }, "wall_overhang_angle": { "value": 45 }, - "wall_overhang_speed_factor": { "value": 40 }, + "wall_overhang_speed_factors": + { + "value": [ + 40 + ] + }, "wall_thickness": { "value": 0.84 }, "wall_x_extruder_nr": { "value": -1 }, "zig_zaggify_infill": { "value": true } diff --git a/resources/definitions/atmat_signal_pro_base.def.json b/resources/definitions/atmat_signal_pro_base.def.json index cd59e1c169..01ecc1bdfe 100644 --- a/resources/definitions/atmat_signal_pro_base.def.json +++ b/resources/definitions/atmat_signal_pro_base.def.json @@ -167,7 +167,12 @@ "travel_avoid_supports": { "value": "True" }, "wall_line_width": { "value": "machine_nozzle_size" }, "wall_overhang_angle": { "value": "75" }, - "wall_overhang_speed_factor": { "value": "50" }, + "wall_overhang_speed_factors": + { + "value": [ + 50 + ] + }, "zig_zaggify_infill": { "value": "True" } } } \ No newline at end of file diff --git a/resources/definitions/atom3.def.json b/resources/definitions/atom3.def.json index c9b54d2f89..6fab25a96d 100644 --- a/resources/definitions/atom3.def.json +++ b/resources/definitions/atom3.def.json @@ -65,7 +65,6 @@ "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 340 }, "machine_name": { "default_value": "Atom 3" }, - "machine_nozzle_head_distance": { "default_value": 6 }, "machine_shape": { "default_value": "elliptic" }, "machine_show_variants": { "default_value": true }, "machine_start_gcode": { "default_value": ";MACHINE START CODE\nG21 ;metric values\nG90 ;absolute positioning\nG28 ;home\nG1 Z5 F9000\n;MACHINE START CODE" }, diff --git a/resources/definitions/bambulab_a1.def.json b/resources/definitions/bambulab_a1.def.json new file mode 100644 index 0000000000..28737d9d8d --- /dev/null +++ b/resources/definitions/bambulab_a1.def.json @@ -0,0 +1,42 @@ +{ + "version": 2, + "name": "BambuLab A1", + "inherits": "bambulab_base", + "metadata": + { + "visible": true, + "platform": "bambulab_x1.obj", + "has_machine_quality": true, + "has_material": true, + "has_textured_buildplate": true, + "has_variant_buildplates": false, + "has_variants": true, + "machine_extruder_trains": + { + "0": "bambulab_a1_extruder_0", + "1": "bambulab_a1_extruder_1", + "2": "bambulab_a1_extruder_2", + "3": "bambulab_a1_extruder_3" + }, + "platform_offset": [ + -130, + 0, + 130 + ], + "platform_texture": "bambulab-buildplate.png", + "preferred_variant_name": "0.4mm", + "weight": 3 + }, + "overrides": + { + "machine_depth": { "value": 256 }, + "machine_end_gcode": { "default_value": ";===== date: 20231229 =====================\n;turn off nozzle clog detect\nG392 S0\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{machine_height + 0.5} F900 ; lower z a little\nG1 X0 Y{machine_depth} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !magic_spiralize && print_sequence != 'one_at_a_time'}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\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\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X181 F12000\nT255\nG1 X0 F18000\nG1 X-13.0 F3000\nG1 X0 F18000 ; wipe\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\nG1 Z180 F600\nG1 Z180\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-13 Y180 F3600\n\nG91\nG1 Z-1 F600\nG90\nM83\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M100 E42 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C46 D10 M100 E46 F10 N100\nM1006 A44 B20 L100 C39 D20 M100 E48 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E48 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B20 L100 C41 D20 M100 E49 F20 N100\nM1006 A0 B20 L100 C0 D20 M100 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M100 E37 F20 N100\nM1006 W\n;=====printer finish sound=========\nM400 S1\nM18 X Y Z\n" }, + "machine_extruder_count": { "value": 4 }, + "machine_height": { "value": 251 }, + "machine_name": { "default_value": "BambuLab Bambu A1" }, + "machine_start_gcode": { "default_value": ";===== machine: A1 =========================\n;===== date: 20240620 =====================\nG392 S0\nM9833.2\n;M400\n;M73 P1.717\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{material_type, initial_extruder_nr}\nM104 S140\nM140 S{material_bed_temperature_layer_0}\n\n;=====start printer sound ===================\n; 'The entertainer' by Scott Joplin\nM17\nM400 S1\nM1006 S1\n\nM1006 A0 B10 C39 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C40 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C41 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C41 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C41 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\n\nM1006 A0 B10 C0 D30 L30 M60 E0 F10 N60\n\nM1006 A0 B10 C49 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C50 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C51 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C53 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C50 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C51 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C53 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C47 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C51 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\n\nM1006 W\nM18\n;=====start printer sound ===================\n\n;=====avoid end stop =================\nG91\nG380 S2 Z40 F1200\nG380 S3 Z-15 F1200\nG90\n\n;===== reset machine status =================\n;M290 X39 Y39 Z8\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.65 Y1.2 Z0.6 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;M211 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\n\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\nM1002 gcode_claim_action : 13\n\nG28 X\nG91\nG1 Z5 F1200\nG90\nG0 X128 F30000\nG0 Y254 F3000\nG91\nG1 Z-5 F1200\n\nM109 S25 H140\n\nM17 E0.3\nM83\nG1 E10 F1200\nG1 E-0.5 F30\nM17 D\n\nG28 Z P0 T140; home z with low precision,permit 300deg temperature\nM104 S{material_print_temperature_layer_0, initial_extruder_nr}\n\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n G90\n G1 Z5 F1200\nM623\n\n;M400\n;M73 P1.717\n\n;===== prepare print temperature and material ==========\nM1002 gcode_claim_action : 24\n\nM400\n;G392 S1\nM211 X0 Y0 Z0 ;turn off soft endstop\nM975 S1 ; turn on\n\nG90\nG1 X-28.5 F30000\nG1 X-48.2 F3000\n\nM620 M ;enable remap\nM620 S{initial_extruder_nr}A ; switch material if AMS exist\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S{material_print_temperature_layer_0, initial_extruder_nr}\n M104 S250\n M400\n T{initial_extruder_nr}\n G1 X-48.2 F3000\n M400\n\n M620.1 E F{material_max_flowrate/2.4053*60, initial_extruder_nr} T{material_print_temperature, initial_extruder_nr}\n M109 S250 ;set nozzle to common flush temp\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{material_type, initial_extruder_nr}\nM621 S{initial_extruder_nr}A\n\nM109 S{material_print_temperature, initial_extruder_nr} H300\nG92 E0\nG1 E50 F200 ; lower extrusion speed to avoid clog\nM400\nM106 P1 S178\nG92 E0\nG1 E5 F200\nM104 S{material_print_temperature_layer_0, initial_extruder_nr}\nG92 E0\nG1 E-0.5 F300\n\nG1 X-28.5 F30000\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\nG1 X-28.5 F30000 ;wipe and shake\nG1 X-48.2 F3000\n\n;G392 S0\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n;M400\n;M73 P1.717\n\n;===== auto extrude cali start =========================\nM975 S1\n;G392 S1\n\nG90\nM83\nT1000\nG1 X-48.2 Y0 Z10 F10000\nM400\nM1002 set_filament_type:UNKNOWN\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{material_type, initial_extruder_nr}\n\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\n\nM622 J1\n M1002 gcode_claim_action : 8\n\n M109 S{material_print_temperature, initial_extruder_nr}\n G1 E10 F{speed_wall_0*wall_line_width_0*layer_height/2.4*60, initial_extruder_nr}\n M983 F{speed_wall_0*wall_line_width_0*layer_height/2.4, initial_extruder_nr} A0.3 H{machine_nozzle_size}; cali dynamic extrusion compensation\n\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{speed_wall_0*wall_line_width_0*layer_height/2.4, initial_extruder_nr} A0.3 H{machine_nozzle_size}; cali dynamic extrusion compensation\n M106 P1 S255\n M400 S5\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n\n G1 X-48.2 F3000\n M400\n M984 A0.1 E1 S1 F{speed_wall_0*wall_line_width_0*layer_height/2.4, initial_extruder_nr} H{machine_nozzle_size}\n M106 P1 S178\n M400 S7\n G1 X-28.5 F18000\n G1 X-48.2 F3000\n G1 X-28.5 F18000 ;wipe and shake\n G1 X-48.2 F3000\n G1 X-28.5 F12000 ;wipe and shake\n G1 X-48.2 F3000\n M400\n M106 P1 S0\nM623 ; end of 'draw extrinsic para cali paint'\n\n;G392 S0\n;===== auto extrude cali end ========================\n\n;M400\n;M73 P1.717\n\nM104 S170 ; prepare to wipe nozzle\nM106 S255 ; turn on fan\n\n;===== mech mode fast check start =====================\nM1002 gcode_claim_action : 3\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q1 A5 K0 O3\nM974 Q1 S2 P0\n\nM970.2 Q1 K1 W58 Z0.1\nM974 S2\n\nG1 X128 Y128 F20000\nG1 Z5 F1200\nM400 P200\nM970.3 Q0 A10 K0 O1\nM974 Q0 S2 P0\n\nM970.2 Q0 K1 W78 Z0.1\nM974 S2\n\nM975 S1\nG1 F30000\nG1 X0 Y5\nG28 X ; re-home XY\n\nG1 Z4 F1200\n\n;===== mech mode fast check end =======================\n\n;M400\n;M73 P1.717\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\n\nM975 S1\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\n;===== remove waste by touching start =====\n\nM104 S170 ; set temp down to heatbed acceptable\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nG0 X108 Y-0.5 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X110 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X112 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X114 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X116 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X118 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X120 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X122 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X124 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X126 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X128 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X130 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X132 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X134 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X136 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X138 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X140 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X142 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X144 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X146 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X148 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;===== remove waste by touching end =====\n\nG1 Z10 F1200\nG0 X118 Y261 F30000\nG1 Z5 F1200\nM109 S{material_print_temperature_layer_0-50, initial_extruder_nr}\n\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S140 ; prepare to abl\nG0 Z5 F20000\n\nG0 X128 Y261 F20000 ; move to exposed steel surface\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z10 F1200\n\n;===== brush material wipe nozzle =====\n\nG90\nG1 Y250 F30000\nG1 X55\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X-35 F30000\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Z5.000 F1200\n\nG90\nG1 X30 Y250.000 F30000\nG1 Z1.300 F1200\nG1 Y262.5 F6000\nG91\nG1 X35 F30000\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Y-0.5\nG1 X45\nG1 Y-0.5\nG1 X-45\nG1 Z10.000 F1200\n\n;===== brush material wipe nozzle end =====\n\nG90\n;G0 X128 Y261 F20000 ; move to exposed steel surface\nG1 Y250 F30000\nG1 X138\nG1 Y261\nG0 Z-1.01 F1200 ; stop the nozzle\n\nG91\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nM109 S140\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM211 R; pop softend status\n\n;===== wipe nozzle end ================================\n\n;M400\n;M73 P1.717\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\n\nG90\nG1 Z5 F1200\nG1 X0 Y0 F30000\nG29.2 S1 ; turn on ABL\n\nM190 S{material_bed_temperature_layer_0}; ensure bed temp\nM109 S140\nM106 S0 ; turn off fan , too noisy\n\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{-machine_width/2 if machine_center_is_zero else 0} Y{-machine_depth/2 if machine_center_is_zero else 0} I{machine_width} J{machine_depth}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n\n;===== home after wipe mouth end =======================\n\n;M400\n;M73 P1.717\n\nG1 X108.000 Y-0.500 F30000\nG1 Z0.300 F1200\nM400\nG2814 Z0.32\n\nM104 S{material_print_temperature_layer_0, initial_extruder_nr} ; prepare to print\n\n;===== extrude cali test ===============================\n\nM400\n M900 S\n M900 C\n G90\n M83\n\n M109 S{material_print_temperature_layer_0, initial_extruder_nr}\n G0 X128 E8 F{speed_wall_0*wall_line_width_0*layer_height/(24/20) * 60, initial_extruder_nr}\n G0 X133 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 X138 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X143 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 X148 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X153 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\n\nM900 R\n\nM1002 judge_flag extrude_cali_flag\nM622 J1\n G90\n G1 X108.000 Y1.000 F30000\n G91\n G1 Z-0.700 F1200\n G90\n M83\n G0 X128 E10 F{speed_wall_0*wall_line_width_0*layer_height/(24/20) * 60, initial_extruder_nr}\n G0 X133 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 X138 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X143 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 X148 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X153 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G91\n G1 X1 Z-0.300\n G1 X4\n G1 Z1 F1200\n G90\n M400\nM623\n\nG1 Z0.2\n\n;M400\n;M73 P1.717\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if machine_buildplate_type=='textured_pei_plate'}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\n;G392 S1 ; turn on clog detection\nM1007 S1 ; turn on mass estimation\nG29.4\n" }, + "machine_width": { "value": 256 }, + "prime_tower_position_x": { "value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) + max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_y": { "value": "(resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) + max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)" } + } +} \ No newline at end of file diff --git a/resources/definitions/bambulab_a1mini.def.json b/resources/definitions/bambulab_a1mini.def.json new file mode 100644 index 0000000000..490556e4f0 --- /dev/null +++ b/resources/definitions/bambulab_a1mini.def.json @@ -0,0 +1,42 @@ +{ + "version": 2, + "name": "BambuLab A1 mini", + "inherits": "bambulab_base", + "metadata": + { + "visible": true, + "platform": "bambulab_a1mini.obj", + "has_machine_quality": true, + "has_material": true, + "has_textured_buildplate": true, + "has_variant_buildplates": false, + "has_variants": true, + "machine_extruder_trains": + { + "0": "bambulab_a1mini_extruder_0", + "1": "bambulab_a1mini_extruder_1", + "2": "bambulab_a1mini_extruder_2", + "3": "bambulab_a1mini_extruder_3" + }, + "platform_offset": [ + -90, + 0, + 90 + ], + "platform_texture": "bambulab-buildplate.png", + "preferred_variant_name": "0.4mm", + "weight": 3 + }, + "overrides": + { + "machine_depth": { "value": 180 }, + "machine_end_gcode": { "default_value": ";===== date: 20231229 =====================\n;turn off nozzle clog detect\nG392 S0\n\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{machine_height + 0.5} F900 ; lower z a little\nG1 X0 Y{machine_depth} F18000 ; move to safe pos\nG1 X-13.0 F3000 ; move to safe pos\n{if !magic_spiralize && print_sequence != 'one_at_a_time'}\nM1002 judge_flag timelapse_record_flag\nM622 J1\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM400 P100\nM971 S11 C11 O0\nM991 S0 P-1 ;end timelapse at safe pos\nM623\n{endif}\n\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\n\n;G1 X27 F15000 ; wipe\n\n; pull back filament to AMS\nM620 S255\nG1 X181 F12000\nT255\nG1 X0 F18000\nG1 X-13.0 F3000\nG1 X0 F18000 ; wipe\nM621 S255\n\nM104 S0 ; turn off hotend\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\nG1 Z180 F600\nG1 Z180\nM400 P100\nM17 R ; restore z current\n\nG90\nG1 X-13 Y180 F3600\n\nG91\nG1 Z-1 F600\nG90\nM83\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\n;=====printer finish sound=========\nM17\nM400 S1\nM1006 S1\nM1006 A0 B20 L100 C37 D20 M100 E42 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C46 D10 M100 E46 F10 N100\nM1006 A44 B20 L100 C39 D20 M100 E48 F20 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C44 D10 M100 E44 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A0 B10 L100 C39 D10 M100 E39 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B10 L100 C0 D10 M100 E48 F10 N100\nM1006 A0 B10 L100 C0 D10 M100 E0 F10 N100\nM1006 A44 B20 L100 C41 D20 M100 E49 F20 N100\nM1006 A0 B20 L100 C0 D20 M100 E0 F20 N100\nM1006 A0 B20 L100 C37 D20 M100 E37 F20 N100\nM1006 W\n;=====printer finish sound=========\nM400 S1\nM18 X Y Z\n" }, + "machine_extruder_count": { "value": 4 }, + "machine_height": { "value": 175 }, + "machine_name": { "default_value": "BambuLab Bambu A1 mini" }, + "machine_start_gcode": { "default_value": ";===== machine: A1 mini =========================\n\n;===== start to heat heatbead&hotend==========\nM1002 gcode_claim_action : 2\nM1002 set_filament_type:{material_type, initial_extruder_nr}\nM104 S170\nM140 S{material_bed_temperature_layer_0}\nG392 S0 ;turn off clog detect\nM9833.2\n;=====start printer sound ===================\n; 'The entertainer' by Scott Joplin\nM17\nM400 S1\nM1006 S1\n\nM1006 A0 B10 C39 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C40 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C41 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C41 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C41 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\n\nM1006 A0 B10 C0 D30 L30 M60 E0 F10 N60\n\nM1006 A0 B10 C49 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C50 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C51 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C53 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C50 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C51 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C53 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C47 D15 L30 M60 E0 F10 N60\nM1006 A0 B10 C51 D30 L30 M60 E0 F10 N60\nM1006 A0 B10 C49 D30 L30 M60 E0 F10 N60\n\nM1006 W\nM18\n;=====avoid end stop =================\nG91\nG380 S2 Z30 F1200\nG380 S3 Z-20 F1200\nG1 Z5 F1200\nG90\n\n;===== reset machine status =================\nM204 S6000\n\nM630 S0 P0\nG91\nM17 Z0.3 ; lower the z-motor current\n\nG90\nM17 X0.7 Y0.9 Z0.5 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM83\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\n;====== cog noise reduction=================\nM982.2 S1 ; turn on cog noise reduction\n\n;===== prepare print temperature and material ==========\nM400\nM18\nM109 S100 H170\nM104 S170\nM400\nM17\nM400\nG28 X\n\nM211 X0 Y0 Z0 ;turn off soft endstop ; turn off soft endstop to prevent protential logic problem\n\nM975 S1 ; turn on\n\nG1 X0.0 F30000\nG1 X-13.5 F3000\n\nM620 M ;enable remap\nM620 S{initial_extruder_nr}A ; switch material if AMS exist\n G392 S0 ;turn on clog detect\n M1002 gcode_claim_action : 4\n M400\n M1002 set_filament_type:UNKNOWN\n M109 S{material_print_temperature_layer_0, initial_extruder_nr}\n M104 S250\n M400\n T{initial_extruder_nr}\n G1 X-13.5 F3000\n M400\n M620.1 E F{material_max_flowrate/2.4053*60, initial_extruder_nr} T{material_print_temperature, initial_extruder_nr}\n M109 S250 ;set nozzle to common flush temp\n M106 P1 S0\n G92 E0\n G1 E50 F200\n M400\n M1002 set_filament_type:{material_type, initial_extruder_nr}\n M104 S{material_print_temperature, initial_extruder_nr}\n G92 E0\n G1 E50 F{material_max_flowrate/2.4053*60, initial_extruder_nr}\n M400\n M106 P1 S178\n G92 E0\n G1 E5 F{material_max_flowrate/2.4053*60, initial_extruder_nr}\n M109 S{material_print_temperature_layer_0-20, initial_extruder_nr} ; drop nozzle temp, make filament shink a bit\n M104 S{material_print_temperature_layer_0-40, material_print_temperature_layer_0}\n G92 E0\n G1 E-0.5 F300\n\n G1 X0 F30000\n G1 X-13.5 F3000\n G1 X0 F30000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X0 F30000\n G1 X-13.5 F3000\n M109 S{material_print_temperature_layer_0-40, initial_extruder_nr}\n G392 S0 ;turn off clog detect\nM621 S{initial_extruder_nr}A\n\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== mech mode fast check============================\n{if material_print_temperature > 2000}\nM1002 gcode_claim_action : 3\n{endif}\nG0 X25 Y175 F20000 ; find a soft place to home\n;M104 S0\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nM104 S170\n\n; build plate detect\nM1002 judge_flag build_plate_detect_flag\nM622 S1\n G39.4\n M400\nM623\n\nG1 Z5 F3000\nG1 X90 Y-1 F30000\nM400 P200\nM970.3 Q1 A7 K0 O2\nM974 Q1 S2 P0\n\nG1 X90 Y0 Z5 F30000\nM400 P200\nM970 Q0 A10 B50 C90 H15 K0 M20 O3\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X-1 Y10\nG28 X ; re-home XY\n\n;===== wipe nozzle ===============================\n{if material_print_temperature > 2000}\nM1002 gcode_claim_action : 14\nM975 S1\n\nM104 S170 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\nM211 S; push soft endstop status\nM211 X0 Y0 Z0 ;turn off Z axis endstop\n\nM83\nG1 E-1 F500\nG90\nM83\n\nM109 S170\nM104 S140\nG0 X90 Y-4 F30000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X91 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X92 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X93 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X94 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X95 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X96 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X97 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X98 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\nG1 Z2 F1200\nG1 X99 F10000\nG380 S3 Z-5 F1200\n\nG1 Z5 F30000\n;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;\nG1 X25 Y175 F30000.1 ;Brush material\nG1 Z0.2 F30000.1\nG1 Y185\nG91\nG1 X-30 F30000\nG1 Y-2\nG1 X27\nG1 Y1.5\nG1 X-28\nG1 Y-2\nG1 X30\nG1 Y1.5\nG1 X-30\nG90\nM83\n\nG1 Z5 F3000\nG0 X50 Y175 F20000 ; find a soft place to home\nG28 Z P0 T300; home z with low precision, permit 300deg temperature\nG29.2 S0 ; turn off ABL\n\nG0 X85 Y185 F10000 ;move to exposed steel surface and stop the nozzle\nG0 Z-1.01 F10000\nG91\n\nG2 I1 J0 X2 Y0 F2000.1\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\nG2 I1 J0 X2\nG2 I-0.75 J0 X-1.5\n\nG90\nG1 Z5 F30000\nG1 X25 Y175 F30000.1 ;Brush material\nG1 Z0.2 F30000.1\nG1 Y185\nG91\nG1 X-30 F30000\nG1 Y-2\nG1 X27\nG1 Y1.5\nG1 X-28\nG1 Y-2\nG1 X30\nG1 Y1.5\nG1 X-30\nG90\nM83\n\nG1 Z5\nG0 X55 Y175 F20000 ; find a soft place to home\nG28 Z P0 T300; home z with low precision, permit 300deg temperature\nG29.2 S0 ; turn off ABL\n\nG1 Z10\nG1 X85 Y185\nG1 Z-1.01\nG1 X95\nG1 X90\n\nM211 R; pop softend status\n\nM106 S0 ; turn off fan , too noisy\n{endif}\n;===== wipe nozzle end ================================\n\n\n;===== wait heatbed ====================\nM1002 gcode_claim_action : 2\nM104 S0\nM190 S{material_bed_temperature_layer_0};set bed temp\nM109 S140\n\nG1 Z5 F3000\nG29.2 S1\nG1 X10 Y10 F20000\n\n;===== bed leveling ==================================\n;M1002 set_flag g29_before_print_flag=1\nM1002 judge_flag g29_before_print_flag\nM622 J1\n M1002 gcode_claim_action : 1\n G29 A1 X{-machine_width/2 if machine_center_is_zero else 0} Y{-machine_depth/2 if machine_center_is_zero else 0} I{machine_width} J{machine_depth}\n M400\n M500 ; save cali data\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28 T145\n\nM623\n\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\n\nG1 X-13.5 Y0 Z10 F10000\nG1 E1.2 F500\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature_layer_0, initial_extruder_nr}\nM400\n\nM412 S1 ; ===turn on filament runout detection===\nM400 P10\n\nG392 S0 ;turn on clog detect\n\nM620.3 W1; === turn on filament tangle detection===\nM400 S2\n\nM1002 set_filament_type:{material_type, initial_extruder_nr}\n;M1002 set_flag extrude_cali_flag=1\nM1002 judge_flag extrude_cali_flag\nM622 J1\n M1002 gcode_claim_action : 8\n\n M400\n M900 K0.0 L1000.0 M1.0\n G90\n M83\n G0 X68 Y-4 F30000\n G0 Z0.3 F18000 ;Move to start position\n M400\n G0 X88 E10 F{speed_wall_0*wall_line_width_0*layer_height/(24/20) * 60, initial_extruder_nr}\n G0 X93 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 X98 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X103 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 X108 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X113 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\n G0 Y0 Z0 F20000\n M400\n\n G1 X-13.5 Y0 Z10 F10000\n M400\n\n G1 E10 F{speed_wall_0*wall_line_width_0*layer_height/2.4*60, initial_extruder_nr}\n M983 F{speed_wall_0*wall_line_width_0*layer_height/2.4, initial_extruder_nr} A0.3 H{machine_nozzle_size}; cali dynamic extrusion compensation\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n M400\n M106 P1 S0\n\n M1002 judge_last_extrude_cali_success\n M622 J0\n M983 F{speed_wall_0*wall_line_width_0*layer_height/2.4, initial_extruder_nr} A0.3 H{machine_nozzle_size}; cali dynamic extrusion compensation\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n M400\n M106 P1 S0\n M623\n\n G1 X-13.5 F3000\n M400\n M984 A0.1 E1 S1 F{speed_wall_0*wall_line_width_0*layer_height/2.4, initial_extruder_nr} H{machine_nozzle_size}\n M106 P1 S178\n M400 S7\n G1 X0 F18000\n G1 X-13.5 F3000\n G1 X0 F18000 ;wipe and shake\n G1 X-13.5 F3000\n G1 X0 F12000 ;wipe and shake\n G1 X-13.5 F3000\n M400\n M106 P1 S0\n\nM623 ; end of 'draw extrinsic para cali paint'\n\n;===== extrude cali test ===============================\nM104 S{material_print_temperature_layer_0, initial_extruder_nr}\nG90\nM83\nG0 X68 Y-2.5 F30000\nG0 Z0.3 F18000 ;Move to start position\nG0 X88 E10 F{speed_wall_0*wall_line_width_0*layer_height/(24/20) * 60, initial_extruder_nr}\nG0 X93 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\nG0 X98 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\nG0 X103 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\nG0 X108 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\nG0 X113 E.3742 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4 * 60, initial_extruder_nr}\nG0 X115 Z0 F20000\nG0 Z5\nM400\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\n\nM400 ; wait all motion done before implement the emprical L parameters\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if machine_buildplate_type=='textured_pei_plate'}\nG29.1 Z{-0.02} ; for Textured PEI Plate\n{endif}\n\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n\nM211 X0 Y0 Z0 ;turn off soft endstop\nM1007 S1\n\n\n\n" }, + "machine_width": { "value": 180 }, + "prime_tower_position_x": { "value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) + max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "prime_tower_position_y": { "value": "(resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) + max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)" } + } +} \ No newline at end of file diff --git a/resources/definitions/bambulab_base.def.json b/resources/definitions/bambulab_base.def.json new file mode 100644 index 0000000000..a28e606a38 --- /dev/null +++ b/resources/definitions/bambulab_base.def.json @@ -0,0 +1,267 @@ +{ + "version": 2, + "name": "BambuLab base definition", + "inherits": "fdmprinter", + "metadata": + { + "visible": false, + "author": "UltiMaker", + "manufacturer": "BambuLab", + "file_formats": "application/vnd.bambulab-package.3dmanufacturing-3dmodel+xml" + }, + "overrides": + { + "acceleration_infill": { "value": "acceleration_print" }, + "acceleration_layer_0": { "value": 2000 }, + "acceleration_prime_tower": { "value": "acceleration_print" }, + "acceleration_print": { "value": 20000 }, + "acceleration_print_layer_0": { "value": "acceleration_layer_0" }, + "acceleration_roofing": { "value": "acceleration_wall_0" }, + "acceleration_skirt_brim": { "value": "acceleration_layer_0" }, + "acceleration_support": { "value": "acceleration_print" }, + "acceleration_support_bottom": { "value": "acceleration_support_interface" }, + "acceleration_support_infill": { "value": "acceleration_support" }, + "acceleration_support_interface": { "value": "acceleration_support" }, + "acceleration_support_roof": { "value": "acceleration_support_interface" }, + "acceleration_topbottom": { "value": "acceleration_print" }, + "acceleration_travel": { "value": 20000 }, + "acceleration_travel_enabled": { "value": true }, + "acceleration_travel_layer_0": { "value": "acceleration_layer_0" }, + "acceleration_wall": { "value": "acceleration_print/8" }, + "acceleration_wall_0": { "value": "acceleration_wall" }, + "acceleration_wall_0_roofing": { "value": "acceleration_wall_0" }, + "acceleration_wall_x": { "value": "acceleration_print" }, + "acceleration_wall_x_roofing": { "value": "acceleration_wall" }, + "adhesion_type": { "value": "'skirt'" }, + "bottom_thickness": { "value": 0.6 }, + "bridge_skin_speed": + { + "unit": "mm/s", + "value": "bridge_wall_speed" + }, + "bridge_sparse_infill_max_density": { "value": 50 }, + "bridge_wall_min_length": { "value": 10 }, + "bridge_wall_speed": + { + "unit": "mm/s", + "value": 50 + }, + "cool_min_layer_time": { "value": 6 }, + "cool_min_speed": { "value": 6 }, + "cool_min_temperature": { "value": "material_print_temperature-15" }, + "default_material_print_temperature": { "maximum_value_warning": 320 }, + "extra_infill_lines_to_support_skins": { "value": "'walls_and_lines'" }, + "gradual_flow_enabled": { "value": false }, + "hole_xy_offset": { "value": 0.075 }, + "infill_overlap": { "value": 10 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'gyroid'" }, + "infill_sparse_density": { "value": 15 }, + "infill_wall_line_count": { "value": "1 if infill_sparse_density > 80 else 0" }, + "jerk_infill": { "value": "jerk_print" }, + "jerk_layer_0": { "value": "jerk_print/2" }, + "jerk_prime_tower": { "value": "jerk_print" }, + "jerk_print": { "value": "50" }, + "jerk_print_layer_0": { "value": "jerk_layer_0" }, + "jerk_roofing": { "value": "jerk_wall_0" }, + "jerk_skirt_brim": { "value": "jerk_layer_0" }, + "jerk_support": { "value": "jerk_print" }, + "jerk_support_bottom": { "value": "jerk_support_interface" }, + "jerk_support_infill": { "value": "jerk_support" }, + "jerk_support_interface": { "value": "jerk_support" }, + "jerk_support_roof": { "value": "jerk_support_interface" }, + "jerk_topbottom": { "value": "jerk_print" }, + "jerk_travel": { "value": 50 }, + "jerk_travel_enabled": { "value": true }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "jerk_wall": { "value": "jerk_print/5" }, + "jerk_wall_0": { "value": "jerk_wall" }, + "jerk_wall_0_roofing": { "value": "jerk_wall_0" }, + "jerk_wall_x": { "value": "jerk_print" }, + "jerk_wall_x_roofing": { "value": "jerk_wall_0" }, + "line_width": { "value": 0.42 }, + "machine_acceleration": { "value": 10000 }, + "machine_buildplate_type": + { + "default_value": "textured_pei_plate", + "options": + { + "cool_plate": "Cool Plate", + "engineering_plate": "Engineering Plate", + "high_temp_plate": "High Temp Plate", + "textured_pei_plate": "Textured PEI Plate" + } + }, + "machine_center_is_zero": { "default_value": false }, + "machine_gcode_flavor": { "default_value": "BambuLab" }, + "machine_heated_bed": { "default_value": true }, + "machine_max_feedrate_e": { "value": 150 }, + "machine_max_feedrate_x": { "value": 500 }, + "machine_max_feedrate_y": { "value": 500 }, + "machine_max_feedrate_z": { "value": 15 }, + "machine_max_jerk_e": { "default_value": 100 }, + "machine_max_jerk_xy": { "default_value": 5000 }, + "machine_max_jerk_z": { "default_value": 100 }, + "machine_nozzle_cool_down_speed": { "default_value": 1.3 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.9 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "machine_show_variants": { "value": true }, + "machine_use_extruder_offset_to_offset_coords": { "value": false }, + "material_diameter": { "default_value": 1.75 }, + "material_flush_purge_length": + { + "default_value": 80, + "enabled": "not prime_tower_enable" + }, + "material_flush_purge_speed": + { + "default_value": 500, + "enabled": "not prime_tower_enable" + }, + "material_max_flowrate": { "enabled": true }, + "max_skin_angle_for_expansion": { "value": 45 }, + "meshfix_maximum_resolution": { "value": 0.4 }, + "min_infill_area": { "default_value": 10 }, + "optimize_wall_printing_order": { "value": false }, + "prime_tower_enable": { "default_value": true }, + "prime_tower_line_width": { "value": "1.5 * line_width" }, + "prime_tower_min_volume": { "default_value": 250 }, + "prime_tower_size": { "default_value": 40 }, + "relative_extrusion": { "value": true }, + "retraction_amount": { "value": 0.5 }, + "retraction_combing_max_distance": { "value": 100 }, + "retraction_extra_prime_amount": { "value": 0.12 }, + "retraction_hop": { "value": 0.2 }, + "retraction_hop_after_extruder_switch_height": { "value": 2 }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": "5 if support_enable and support_structure=='tree' else line_width * 2" }, + "retraction_prime_speed": { "value": 15 }, + "retraction_speed": { "value": 30 }, + "skin_edge_support_thickness": { "value": 0 }, + "skin_material_flow": { "value": 95 }, + "skin_overlap": { "value": 0 }, + "skin_preshrink": { "value": 0 }, + "skirt_brim_speed": { "maximum_value_warning": 500 }, + "skirt_line_count": { "value": 5 }, + "small_skin_on_surface": { "value": false }, + "small_skin_width": { "value": 4 }, + "speed_infill": + { + "maximum_value_warning": 500, + "value": "speed_print" + }, + "speed_ironing": + { + "maximum_value_warning": 500, + "value": 20 + }, + "speed_layer_0": + { + "maximum_value_warning": 500, + "value": "speed_print/6" + }, + "speed_prime_tower": + { + "maximum_value_warning": 500, + "value": "speed_wall" + }, + "speed_print": + { + "maximum_value_warning": 500, + "value": 300 + }, + "speed_print_layer_0": + { + "maximum_value_warning": 500, + "value": "speed_layer_0" + }, + "speed_roofing": + { + "maximum_value_warning": 500, + "value": "speed_wall" + }, + "speed_support": + { + "maximum_value_warning": 500, + "value": "speed_wall_0" + }, + "speed_support_bottom": + { + "maximum_value_warning": 500, + "value": "speed_support_interface" + }, + "speed_support_infill": + { + "maximum_value_warning": 500, + "value": "speed_support" + }, + "speed_support_interface": + { + "maximum_value_warning": 500, + "value": 50 + }, + "speed_support_roof": + { + "maximum_value_warning": 500, + "value": "speed_support_interface" + }, + "speed_topbottom": + { + "maximum_value_warning": 500, + "value": "speed_print" + }, + "speed_travel": + { + "maximum_value": 500, + "value": 500 + }, + "speed_travel_layer_0": + { + "maximum_value": 500, + "value": 150 + }, + "speed_wall": + { + "maximum_value_warning": 500, + "value": "speed_print*2/3" + }, + "speed_wall_0": + { + "maximum_value_warning": 500, + "value": "speed_wall" + }, + "speed_wall_0_roofing": + { + "maximum_value_warning": 500, + "value": "speed_wall" + }, + "speed_wall_x": + { + "maximum_value_warning": 500, + "value": "speed_print" + }, + "speed_wall_x_roofing": + { + "maximum_value_warning": 500, + "value": "speed_wall" + }, + "support_brim_line_count": { "value": 5 }, + "support_infill_rate": { "value": "80 if gradual_support_infill_steps != 0 else 15" }, + "support_pattern": { "value": "'gyroid'" }, + "support_structure": { "value": "'tree'" }, + "switch_extruder_retraction_amount": { "value": 5 }, + "travel_avoid_other_parts": { "value": false }, + "wall_0_acceleration": { "value": 1000 }, + "wall_0_deceleration": { "value": 1000 }, + "wall_0_end_speed_ratio": { "value": 100 }, + "wall_0_speed_split_distance": { "value": 0.2 }, + "wall_0_start_speed_ratio": { "value": 100 }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_material_flow": { "value": 95 }, + "wall_overhang_angle": { "value": 10 }, + "wall_overhang_speed_factors": { "default_value": "[25,15,5,5]" }, + "wall_x_material_flow": { "value": 100 }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_position": { "value": "'backright'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/bambulab_x1.def.json b/resources/definitions/bambulab_x1.def.json new file mode 100644 index 0000000000..0c6d223e1a --- /dev/null +++ b/resources/definitions/bambulab_x1.def.json @@ -0,0 +1,58 @@ +{ + "version": 2, + "name": "BambuLab X1", + "inherits": "bambulab_base", + "metadata": + { + "visible": true, + "platform": "bambulab_x1.obj", + "has_machine_quality": true, + "has_material": true, + "has_textured_buildplate": true, + "has_variant_buildplates": false, + "has_variants": true, + "machine_extruder_trains": + { + "0": "bambulab_x1_extruder_0", + "1": "bambulab_x1_extruder_1", + "2": "bambulab_x1_extruder_2", + "3": "bambulab_x1_extruder_3" + }, + "platform_offset": [ + -130, + 0, + 130 + ], + "platform_texture": "bambulab-buildplate.png", + "preferred_variant_name": "X1 0.4mm", + "weight": 3 + }, + "overrides": + { + "machine_depth": { "value": 256 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-128, 100], + [-110, 100], + [-110, 128], + [-128, 128] + ] + ] + }, + "machine_end_gcode": { "default_value": ";===== date: 20240528 =====================\nM400 ; wait for buffer to clear\nG92 E0 ; zero the extruder\nG1 E-0.8 F1800 ; retract\nG1 Z{machine_height + 0.5} F900 ; lower z a little\nG1 X65 Y245 F12000 ; move to safe pos\nG1 Y265 F3000\n\nG1 X65 Y245 F12000\nG1 Y265 F3000\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\n\nG1 X100 F12000 ; wipe\n; pull back filament to AMS\nM620 S255\nG1 X20 Y50 F12000\nG1 Y-3\nT255\nG1 X65 F12000\nG1 Y265\nG1 X100 F12000 ; wipe\nM621 S255\nM104 S0 ; turn off hotend\n\nM622.1 S1 ; for prev firware, default turned on\nM1002 judge_flag timelapse_record_flag\nM622 J1\n M400 ; wait all motion done\n M991 S0 P-1 ;end smooth timelapse at safe pos\n M400 S3 ;wait for last picture to be taken\nM623; end of 'timelapse_record_flag'\n\nM400 ; wait all motion done\nM17 S\nM17 Z0.4 ; lower z motor current to reduce impact if there is something in the bottom\nG1 Z250 F600\nG1 Z248\nM400 P100\nM17 R ; restore z current\n\nM220 S100 ; Reset feedrate magnitude\nM201.2 K1.0 ; Reset acc magnitude\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 0\n\nM17 X0.8 Y0.8 Z0.5 ; lower motor current to 45% power\nM960 S5 P0 ; turn off logo lamp\n" }, + "machine_extruder_count": { "value": 4 }, + "machine_height": { "value": 251 }, + "machine_name": { "default_value": "BambuLab Bambu X1" }, + "machine_scan_first_layer": + { + "enabled": true, + "value": "machine_buildplate_type!='textured_pei_plate'" + }, + "machine_start_gcode": { "default_value": ";===== machine: X1 ====================\n;===== date: 20241023 ==================\n;===== turn on the HB fan =================\nM104 S75 ;set extruder temp to turn on the HB fan and prevent filament oozing from nozzle\n;===== reset machine status =================\nM290 X40 Y40 Z2.6666666\nG91\nM17 Z0.4 ; lower the z-motor current\nG380 S2 Z30 F300 ; G380 is same as G38; lower the hotbed , to prevent the nozzle is below the hotbed\nG380 S2 Z-25 F300 ;\nG1 Z5 F300;\nG90\nM17 X1.2 Y1.2 Z0.75 ; reset motor current to default\nM960 S5 P1 ; turn on logo lamp\nG90\nM220 S100 ;Reset Feedrate\nM221 S100 ;Reset Flowrate\nM73.2 R1.0 ;Reset left time magnitude\nM1002 set_gcode_claim_speed_level : 5\nM221 X0 Y0 Z0 ; turn off soft endstop to prevent protential logic problem\nG29.1 Z0 ; clear z-trim value first\nM204 S10000 ; init ACC set to 10m/s^2\n\n;===== heatbed preheat ====================\nM1002 gcode_claim_action : 2\nM140 S{material_bed_temperature_layer_0} ;set bed temp\nM190 S{material_bed_temperature_layer_0} ;wait for bed temp\n\n{if machine_scan_first_layer}\n;=========register first layer scan=====\nM977 S1 P60\n{endif}\n\n;=============turn on fans to prevent PLA jamming=================\n{if material_type=='PLA' and (material_bed_temperature_layer_0>45 or material_bed_temperature>45), initial_extruder_nr}\n M106 P3 S180\n M142 P1 R35 S40\n{endif}\n{if material_type=='PLA' and (material_bed_temperature_layer_0<=45 and material_bed_temperature<=45) , initial_extruder_nr}\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\n;===== prepare print temperature and material ==========\nM104 S{material_print_temperature_layer_0, initial_extruder_nr} ;set extruder temp\nG91\nG0 Z10 F1200\nG90\nG28 X\nM975 S1 ; turn on\nG1 X60 F12000\nG1 Y245\nG1 Y265 F3000\nM620 M\nM620 S{initial_extruder_nr}A ; switch material if AMS exist\n M109 S{material_print_temperature_layer_0, initial_extruder_nr}\n G1 X120 F12000\n\n G1 X20 Y50 F12000\n G1 Y-3\n T{initial_extruder_nr}\n G1 X54 F12000\n G1 Y265\n M400\nM621 S{initial_extruder_nr}A\nM620.1 E F{material_max_flowrate/2.4053*60, initial_extruder_nr} T{material_print_temperature, initial_extruder_nr}\n\n\nM412 S1 ; ===turn on filament runout detection===\n\nM109 S250 ;set nozzle to common flush temp\nM106 P1 S0\nG92 E0\nG1 E50 F200\nM400\nM104 S{material_print_temperature_layer_0, initial_extruder_nr}\nG92 E0\nG1 E50 F200\nM400\nM106 P1 S255\nG92 E0\nG1 E5 F300\nM109 S{material_print_temperature_layer_0-20, initial_extruder_nr} ; drop nozzle temp, make filament shink a bit\nG92 E0\nG1 E-0.5 F300\n\nG1 X70 F9000\nG1 X76 F15000\nG1 X65 F15000\nG1 X76 F15000\nG1 X65 F15000; shake to put down garbage\nG1 X80 F6000\nG1 X95 F15000\nG1 X80 F15000\nG1 X165 F15000; wipe and shake\nM400\nM106 P1 S0\n;===== prepare print temperature and material end =====\n\n\n;===== wipe nozzle ===============================\nM1002 gcode_claim_action : 14\nM975 S1\nM106 S255\nG1 X65 Y230 F18000\nG1 Y264 F6000\nM109 S{material_print_temperature_layer_0-20, initial_extruder_nr}\nG1 X100 F18000 ; first wipe mouth\n\nG0 X135 Y253 F20000 ; move to exposed steel surface edge\nG28 Z P0 T300; home z with low precision,permit 300deg temperature\nG29.2 S0 ; turn off ABL\nG0 Z5 F20000\n\nG1 X60 Y265\nG92 E0\nG1 E-0.5 F300 ; retrack more\nG1 X100 F5000; second wipe mouth\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X100 F5000\nG1 X70 F15000\nG1 X90 F5000\nG0 X128 Y261 Z-1.5 F20000 ; move to exposed steel surface and stop the nozzle\nM104 S140 ; set temp down to heatbed acceptable\nM106 S255 ; turn on fan (G28 has turn off fan)\n\nM221 S; push soft endstop status\nM221 Z0 ;turn off Z axis endstop\nG0 Z0.5 F20000\nG0 X125 Y259.5 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y262.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y260.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.5\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 Z0.5 F20000\nG0 X125 Y261.0\nG0 Z-1.01\nG0 X131 F211\nG0 X124\nG0 X128\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\nG2 I0.5 J0 F300\n\nM109 S140 ; wait nozzle temp down to heatbed acceptable\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\nG2 I0.5 J0 F3000\n\nM221 R; pop softend status\nG1 Z10 F1200\nM400\nG1 Z10\nG1 F30000\nG1 X128 Y128\nG29.2 S1 ; turn on ABL\n;G28 ; home again after hard wipe mouth\nM106 S0 ; turn off fan , too noisy\n;===== wipe nozzle end ================================\n\n;===== check scanner clarity ===========================\nG1 X128 Y128 F24000\nG28 Z P0\nM972 S5 P0\nG1 X230 Y15 F24000\n;===== check scanner clarity end =======================\n\n;===== bed leveling ==================================\nM1002 judge_flag g29_before_print_flag\nM622 J1\n\n M1002 gcode_claim_action : 1\n G29 A X{-machine_width/2 if machine_center_is_zero else 0} Y{-machine_depth/2 if machine_center_is_zero else 0} I{machine_width} J{machine_depth}\n M400\n M500 ; save cali data\n\nM623\n;===== bed leveling end ================================\n\n;===== home after wipe mouth============================\nM1002 judge_flag g29_before_print_flag\nM622 J0\n\n M1002 gcode_claim_action : 13\n G28\n\nM623\n;===== home after wipe mouth end =======================\n\nM975 S1 ; turn on vibration supression\n\n;=============turn on fans to prevent PLA jamming=================\n{if material_type=='PLA' and (material_bed_temperature_layer_0>45 or material_bed_temperature>45), initial_extruder_nr}\n M106 P3 S180\n M142 P1 R35 S40\n{endif}\n{if material_type=='PLA' and (material_bed_temperature_layer_0<=45 and material_bed_temperature<=45) , initial_extruder_nr}\n M142 P1 R35 S40\n{endif}\nM106 P2 S100 ; turn on big fan ,to cool down toolhead\n\nM104 S{material_print_temperature_layer_0, initial_extruder_nr} ; set extrude temp earlier, to reduce wait time\n\n;===== mech mode fast check============================\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q1 A7 B30 C80 H15 K0\nM974 Q1 S2 P0\n\nG1 X128 Y128 Z10 F20000\nM400 P200\nM970.3 Q0 A7 B30 C90 Q0 H15 K0\nM974 Q0 S2 P0\n\nM975 S1\nG1 F30000\nG1 X230 Y15\nG28 X ; re-home XY\n;===== mech mode fast check============================\n\n{if machine_scan_first_layer}\n;start heatbed scan====================================\nM976 S2 P1\nG90\nG1 X128 Y128 F20000\nM976 S3 P2 ;register void printing detection\n{endif}\n\n;===== nozzle load line ===============================\nM975 S1\nG90\nM83\nT1000\nG1 X18.0 Y1.0 Z0.8 F18000;Move to start position\nM109 S{material_print_temperature, initial_extruder_nr}\nG1 Z0.2\nG0 E2 F300\nG0 X240 E15 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\nG0 Y11 E0.700 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\nG0 X239.5\nG0 E0.2\nG0 Y1.5 E0.700\nG0 X231 E0.700 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\nM400\n\n;===== for Textured PEI Plate , lower the nozzle as the nozzle was touching topmost of the texture when homing ==\n;curr_bed_type={curr_bed_type}\n{if machine_buildplate_type=='textured_pei_plate'}\nG29.1 Z{-0.04} ; for Textured PEI Plate\n{endif}\n\n;===== draw extrinsic para cali paint =================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M1002 gcode_claim_action : 8\n\n T1000\n\n G0 F1200.0 X231 Y15 Z0.2 E0.741\n G0 F1200.0 X226 Y15 Z0.2 E0.275\n G0 F1200.0 X226 Y8 Z0.2 E0.384\n G0 F1200.0 X216 Y8 Z0.2 E0.549\n G0 F1200.0 X216 Y1.5 Z0.2 E0.357\n\n G0 X48.0 E12.0 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G0 X48.0 Y14 E0.92 F1200.0\n G0 X35.0 Y6.0 E1.03 F1200.0\n\n ;=========== extruder cali extrusion ==================\n T1000\n M83\n {if acceleration_print > 0 and acceleration_wall_0 > 0, initial_extruder_nr}\n M204 S{acceleration_wall_0, initial_extruder_nr}\n {endif}\n {if acceleration_print > 0 and acceleration_wall_0 <= 0, initial_extruder_nr}\n M204 S{acceleration_print, initial_extruder_nr}\n {endif}\n\n G0 X35.000 Y6.000 Z0.300 F30000 E0\n G1 F1500.000 E0.800\n M106 S0 ; turn off fan\n G0 X185.000 E9.35441 F4800\n G0 X187 Z0\n G1 F1500.000 E-0.800\n G0 Z1\n G0 X180 Z0.3 F18000\n\n M900 L1000.0 M1.0\n M900 K0.160\n G0 X45.000 F30000\n G0 Y8.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X70.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X75.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X80.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X85.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X90.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X95.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X100.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X105.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X110.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X115.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X120.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X125.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X130.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X135.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X140.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X145.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X150.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X155.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X160.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X165.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X170.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X175.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X180.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.080\n G0 X45.000 F30000\n G0 Y10.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X70.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X75.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X80.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X85.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X90.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X95.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X100.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X105.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X110.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X115.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X120.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X125.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X130.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X135.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X140.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X145.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X150.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X155.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X160.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X165.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X170.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X175.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X180.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n M400\n\n G0 X45.000 F30000\n M900 K0.000\n G0 X45.000 F30000\n G0 Y12.000 F30000\n G1 F1500.000 E0.800\n G1 X65.000 E1.24726 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X70.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X75.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X80.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X85.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X90.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X95.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X100.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X105.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X110.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X115.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X120.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X125.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X130.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X135.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X140.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X145.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X150.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X155.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X160.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X165.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X170.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X175.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X180.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 F1500.000 E-0.800\n G1 X183 Z0.15 F30000\n G1 X185\n G1 Z1.0\n G0 Y6.000 F30000 ; move y to clear pos\n G1 Z0.3\n\n G0 X45.000 F30000 ; move to start point\n\nM623 ; end of 'draw extrinsic para cali paint'\n\nM1002 judge_flag extrude_cali_flag\nM622 J0\n G0 X231 Y1.5 F30000\n G0 X18 E14.3 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\nM623\n\nM104 S140\n\n\n;=========== laser and rgb calibration ===========\nM400\nM18 E\nM500 R\n\nM973 S3 P14\n\nG1 X120 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nT1100\nG1 X235.0 Y1.0 Z0.3 F18000.0;Move to first extrude line pos\nM400 P100\nM960 S1 P1\nM400 P100\nM973 S6 P0; use auto exposure for horizontal laser by xcam\nM960 S0 P0\n\nG1 X240.0 Y6.0 Z0.3 F18000.0;Move to vertical extrude line pos\nM960 S2 P1\nM400 P100\nM973 S6 P1; use auto exposure for vertical laser by xcam\nM960 S0 P0\n\n;=========== handeye calibration ======================\nM1002 judge_flag extrude_cali_flag\nM622 J1\n\n M973 S3 P1 ; camera start stream\n M400 P500\n M973 S1\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G0 F6000 X228.500 Y4.500 Z0.000\n M960 S0 P1\n M973 S1\n M400 P800\n M971 S6 P0\n M973 S2 P0\n M400 P500\n G0 Z0.000 F12000\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P200\n M971 S5 P1\n M973 S2 P1\n M400 P500\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P3\n G0 Z0.500 F12000\n M960 S0 P0\n M960 S2 P1\n G0 X228.5 Y11.0\n M400 P200\n M971 S5 P4\n M973 S2 P0\n M400 P500\n M960 S0 P0\n M960 S1 P1\n G0 X221.00 Y4.50\n M400 P500\n M971 S5 P2\n M963 S1\n M400 P1500\n M964\n T1100\n G1 Z3 F3000\n\n M400\n M500 ; save cali data\n\n M104 S{material_print_temperature, initial_extruder_nr} ; rise nozzle temp now ,to reduce temp waiting time.\n\n T1100\n M400 P400\n M960 S0 P0\n G0 F30000.000 Y10.000 X65.000 Z0.000\n M400 P400\n M960 S1 P1\n M400 P50\n\n M969 S1 N3 A2000\n G0 F360.000 X181.000 Z0.000\n M980.3 A70.000 B{speed_wall_0*wall_line_width_0*layer_height/(1.75*1.75/4*3.14)*60/4, initial_extruder_nr} C5.000 D{speed_wall_0*wall_line_width_0*layer_height/(1.75*1.75/4*3.14)*60, initial_extruder_nr} E5.000 F175.000 H1.000 I0.000 J0.080 K0.160\n M400 P100\n G0 F20000\n G0 Z1 ; rise nozzle up\n T1000 ; change to nozzle space\n G0 X45.000 Y4.000 F30000 ; move to test line pos\n M969 S0 ; turn off scanning\n M960 S0 P0\n\n\n G1 Z2 F20000\n T1000\n G0 X45.000 Y4.000 F30000 E0\n M109 S{material_print_temperature, initial_extruder_nr}\n G0 Z0.3\n G1 F1500.000 E3.600\n G1 X65.000 E1.24726 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X70.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X75.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X80.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X85.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X90.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X95.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X100.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X105.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X110.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X115.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X120.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X125.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X130.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X135.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n\n ; see if extrude cali success, if not ,use default value\n M1002 judge_last_extrude_cali_success\n M622 J0\n M400\n M900 K0.08 M{speed_wall_0*wall_line_width_0*layer_height/(1.75*1.75/4*3.14)*0.08, initial_extruder_nr}\n M623\n\n G1 X140.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X145.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X150.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X155.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X160.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X165.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X170.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X175.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X180.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X185.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X190.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X195.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X200.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X205.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X210.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X215.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n G1 X220.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/ 4 * 60, initial_extruder_nr}\n G1 X225.000 E0.31181 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\n M973 S4\n\nM623\n\n;========turn off light and wait extrude temperature =============\nM1002 gcode_claim_action : 0\nM973 S4 ; turn off scanner\nM400 ; wait all motion done before implement the emprical L parameters\n;M900 L500.0 ; Empirical parameters\nM109 S{material_print_temperature_layer_0, initial_extruder_nr}\nM960 S1 P0 ; turn off laser\nM960 S2 P0 ; turn off laser\nM106 S0 ; turn off fan\nM106 P2 S0 ; turn off big fan\nM106 P3 S0 ; turn off chamber fan\n\nM975 S1 ; turn on mech mode supression\nG90\nM83\nT1000\n;===== purge line to wipe the nozzle ============================\nG1 E{-retraction_amount, initial_extruder_nr} F1800\nG1 X18.0 Y2.5 Z0.8 F18000.0;Move to start position\nG1 E{retraction_amount, initial_extruder_nr} F1800\nM109 S{material_print_temperature_layer_0, initial_extruder_nr}\nG1 Z0.2\nG0 X239 E15 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5) * 60, initial_extruder_nr}\nG0 Y12 E0.7 F{speed_wall_0*wall_line_width_0*layer_height/(0.3*0.5)/4* 60, initial_extruder_nr}\n" }, + "machine_width": { "value": 256 }, + "prime_tower_position_x": { "value": "resolveOrValue('prime_tower_size') + (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) + max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('machine_nozzle_offset_y')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (resolveOrValue('machine_depth') / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, + "travel_avoid_distance": { "value": "3" } + } +} \ No newline at end of file diff --git a/resources/definitions/biqu_b2.def.json b/resources/definitions/biqu_b2.def.json new file mode 100644 index 0000000000..85139b82c1 --- /dev/null +++ b/resources/definitions/biqu_b2.def.json @@ -0,0 +1,39 @@ +{ + "version": 2, + "name": "Biqu B2", + "inherits": "biqu_b1", + "metadata": + { + "visible": true, + "author": "Boris Juraga", + "has_textured_buildplate": true, + "machine_extruder_trains": + { + "0": "biqu_b2_extruder_0", + "1": "biqu_b2_extruder_1" + }, + "quality_definition": "biqu_b2" + }, + "overrides": + { + "gantry_height": { "value": 27.5 }, + "machine_end_gcode": { "default_value": ";BEGIN OF CUSTOM END GCODE\nM104 S0\nM140 S0\n;Retract the filament\nG91\nG1 E-30 F300\nG1 Z5\nG90\nG28 X0 Y{machine_depth}\n;END OF CUSTOM END GCODE" }, + "machine_extruder_count": { "default_value": 2 }, + "machine_extruders_share_heater": { "default_value": true }, + "machine_extruders_share_nozzle": { "default_value": true }, + "machine_extruders_shared_nozzle_initial_retraction": { "default_value": 30 }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-33, 35], + [-33, -23], + [33, -23], + [33, 35] + ] + }, + "machine_name": { "default_value": "BIQU B2" }, + "machine_start_gcode": { "default_value": ";BEGIN OF CUSTOM START GCODE\nG28 ;Home\nG1 Z15.0 F6000 ;Move the platform down 15mm\n;Prime the extruder\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nT0\nG92 E0\nG1 F1200 E-30\nG92 E0\nM109 S{material_print_temperature_layer_0} ; Wait for Extruder temperature\nT1\nG92 E0\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X6.1 Y20 Z0.3 F5000.0 ; Move to start position\nM117 Purging\nG1 X6.1 Y200.0 Z0.3 F1500.0 E10 ; Draw the first line\nG1 X6.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X6.4 Y20 Z0.3 F1500.0 E20 ; Draw the second line\nG1 X6.7 Y20 Z0.3 F5000.0 ; Move to side a little\nG1 X6.7 Y200.0 Z0.3 F1500.0 E30 ; Draw the three line\nG1 X7.0 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X7.0 Y20 Z0.3 F1500.0 E40 ; Draw the four line\nG1 X7.3 Y20 Z0.3 F5000.0 ; Move to side a little\nG1 X7.3 Y200.0 Z0.3 F1500.0 E50 ; Draw the four line\nG92 E0 \nT1\nG92 E0\nG1 F1200 E-30\nG92 E0\nT0\nG92 E0\nG1 F1200 E30\nG92 E0\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X9.1 Y20 Z0.3 F5000.0 ; Move to start position\nM117 Purging\nG1 X9.1 Y200.0 Z0.3 F1500.0 E10 ; Draw the first line\nG1 X9.4 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X9.4 Y20 Z0.3 F1500.0 E20 ; Draw the second line\nG1 X9.7 Y20 Z0.3 F5000.0 ; Move to side a little\nG1 X9.7 Y200.0 Z0.3 F1500.0 E30 ; Draw the three line\nG1 X10.0 Y200.0 Z0.3 F5000.0 ; Move to side a little\nG1 X10.0 Y20 Z0.3 F1500.0 E40 ; Draw the four line\nG1 X10.3 Y20 Z0.3 F5000.0 ; Move to side a little\nG1 X10.3 Y200.0 Z0.3 F1500.0 E50 ; Draw the four line\nT0\nG92 E0\nG1 F1200 E-30\nG92 E0\nG92 E0\nT{initial_extruder_nr} ; RESET EXTRUDER TO INITIAL\n; start print\n;END OF CUSTOM START GCODE" }, + "prime_tower_enable": { "default_value": true }, + "prime_tower_mode": { "default_value": "interleaved" } + } +} \ No newline at end of file diff --git a/resources/definitions/blocks_base.def.json b/resources/definitions/blocks_base.def.json index fde5f912da..64e4213d5f 100644 --- a/resources/definitions/blocks_base.def.json +++ b/resources/definitions/blocks_base.def.json @@ -107,7 +107,7 @@ "travel_retract_before_outer_wall": { "value": true }, "wall_0_wipe_dist": { "value": 0.0 }, "wall_overhang_angle": { "default_value": 75 }, - "wall_overhang_speed_factor": { "default_value": 50 }, + "wall_overhang_speed_factors": { "default_value": "[50]" }, "wall_thickness": { "value": "line_width * 2" }, "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, "z_seam_type": { "value": "'back'" } diff --git a/resources/definitions/creality_crm4.def.json b/resources/definitions/creality_crm4.def.json new file mode 100644 index 0000000000..89ab3ed04c --- /dev/null +++ b/resources/definitions/creality_crm4.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Creality CR-M4", + "inherits": "creality_base", + "metadata": + { + "visible": true, + "quality_definition": "creality_base" + }, + "overrides": + { + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 450 }, + "machine_height": { "default_value": 470 }, + "machine_name": { "default_value": "Creality CR-M4" }, + "machine_width": { "default_value": 450 } + } +} \ No newline at end of file diff --git a/resources/definitions/creality_ender3v3ke.def.json b/resources/definitions/creality_ender3v3ke.def.json index 47227e187d..2718882cc4 100644 --- a/resources/definitions/creality_ender3v3ke.def.json +++ b/resources/definitions/creality_ender3v3ke.def.json @@ -48,7 +48,7 @@ "machine_width": { "default_value": 220 }, "material_print_temp_wait": { "default_value": false }, "retraction_amount": { "default_value": 0.8 }, - "retraction_combing": { "value": "no_outer_surfaces" }, + "retraction_combing": { "value": "'no_outer_surfaces'" }, "retraction_combing_max_distance": { "value": 5.0 }, "retraction_extrusion_window": { "value": "retraction_amount" }, "retraction_min_travel": { "value": 2.0 }, diff --git a/resources/definitions/creality_ender3v3se.def.json b/resources/definitions/creality_ender3v3se.def.json index bf49d8dd1b..6248e5c851 100644 --- a/resources/definitions/creality_ender3v3se.def.json +++ b/resources/definitions/creality_ender3v3se.def.json @@ -36,9 +36,9 @@ }, "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 250 }, - "machine_max_acceleration_e": { "value": 5000 }, - "machine_max_acceleration_x": { "value": 5000.0 }, - "machine_max_acceleration_y": { "value": 5000.0 }, + "machine_max_acceleration_e": { "value": 2500 }, + "machine_max_acceleration_x": { "value": 2500.0 }, + "machine_max_acceleration_y": { "value": 2500.0 }, "machine_max_acceleration_z": { "value": 500.0 }, "machine_max_feedrate_e": { "value": 100 }, "machine_max_feedrate_x": { "value": 500 }, diff --git a/resources/definitions/dagoma_sigma_pro.def.json b/resources/definitions/dagoma_sigma_pro.def.json index 8bbac5a483..3f39c9f713 100644 --- a/resources/definitions/dagoma_sigma_pro.def.json +++ b/resources/definitions/dagoma_sigma_pro.def.json @@ -11,6 +11,7 @@ "platform": "dagoma_sigma_pro.obj", "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, + "has_textured_buildplate": true, "has_variants": true, "machine_extruder_trains": { "0": "dagoma_sigma_pro_extruder" }, "platform_texture": "dagoma_sigma_pro.png", diff --git a/resources/definitions/dagoma_sigma_pro_dual.def.json b/resources/definitions/dagoma_sigma_pro_dual.def.json index eb11b37603..cd1702228c 100644 --- a/resources/definitions/dagoma_sigma_pro_dual.def.json +++ b/resources/definitions/dagoma_sigma_pro_dual.def.json @@ -11,6 +11,7 @@ "platform": "dagoma_sigma_pro.obj", "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, + "has_textured_buildplate": true, "has_variants": true, "machine_extruder_trains": { diff --git a/resources/definitions/diy220.def.json b/resources/definitions/diy220.def.json index f4c2e41364..ea3e89ab04 100644 --- a/resources/definitions/diy220.def.json +++ b/resources/definitions/diy220.def.json @@ -35,7 +35,6 @@ "machine_max_feedrate_y": { "default_value": 300 }, "machine_max_feedrate_z": { "default_value": 40 }, "machine_name": { "default_value": "Diytech 220" }, - "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_tip_outer_diameter": { "default_value": 1 }, "machine_start_gcode": { "default_value": "G21\nG90\nM82\nM107\nG28\nG1 Z15 F200\nT0\nG92 E0\nG1 E16 F250\nG92 E0\n" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, diff --git a/resources/definitions/dxu.def.json b/resources/definitions/dxu.def.json index c5eb9720f3..117edf43db 100644 --- a/resources/definitions/dxu.def.json +++ b/resources/definitions/dxu.def.json @@ -122,7 +122,6 @@ "machine_name": { "default_value": "dxu" }, "machine_nozzle_cool_down_speed": { "default_value": 1.5 }, "machine_nozzle_expansion_angle": { "default_value": 45 }, - "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_heat_up_speed": { "default_value": 3.5 }, "machine_nozzle_size": { "default_value": 0.4 }, "machine_show_variants": { "default_value": true }, diff --git a/resources/definitions/eazao_m500.def.json b/resources/definitions/eazao_m500.def.json new file mode 100644 index 0000000000..f4ad1dd03e --- /dev/null +++ b/resources/definitions/eazao_m500.def.json @@ -0,0 +1,72 @@ +{ + "version": 2, + "name": "Eazao M500", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Eazao", + "manufacturer": "Eazao", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "eazao_m500_extruder_0" }, + "preferred_material": "eazao_clay", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_print": { "value": 300 }, + "acceleration_travel": { "value": 300 }, + "adhesion_type": { "default_value": "'none'" }, + "bottom_layers": { "value": 2 }, + "infill_sparse_density": { "value": 0 }, + "initial_bottom_layers": { "value": 2 }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height": { "value": 1.0 }, + "layer_height_0": { "value": 1.0 }, + "line_width": { "value": 3.0 }, + "machine_acceleration": { "value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 320 }, + "machine_end_gcode": { "default_value": "G92 Z0\nG1 F1500 Z10\nG28 X0 Y300 ;move X Y to min endstops\nM82\nM84 ;steppers off\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 520 }, + "machine_max_acceleration_e": { "value": 500 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 25 }, + "machine_max_feedrate_x": { "value": 100 }, + "machine_max_feedrate_y": { "value": 100 }, + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Eazao M500" }, + "machine_start_gcode": { "default_value": "G21 ;set units to millimeters\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home\nG1 Z25.0 F1500 ;move the platform down 15mm\nG92 E0 ;extruder reset\nG1 F300 E5\nG92 E0 ;The extruder is forced to zero again\nM302\nM163 S0 P0.85; Set Mix Factor\nM163 S1 P0.15; Set Mix Factor\nM164 S0" }, + "machine_width": { "default_value": 320 }, + "magic_spiralize": { "value": true }, + "material_final_print_temperature": { "value": "0" }, + "material_initial_print_temperature": { "value": "0" }, + "material_print_temperature": { "value": "0" }, + "material_print_temperature_layer_0": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 7 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "speed_print": { "value": 20.0 }, + "speed_travel": { "value": 20.0 }, + "speed_wall": { "value": 20.0 }, + "speed_wall_0": { "value": 20.0 }, + "speed_wall_x": { "value": 20.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, + "top_bottom_pattern": { "value": "concentric" }, + "top_bottom_thickness": { "value": 3 }, + "wall_thickness": { "value": 5.0 } + } +} \ No newline at end of file diff --git a/resources/definitions/eazao_m600.def.json b/resources/definitions/eazao_m600.def.json new file mode 100644 index 0000000000..e76d923909 --- /dev/null +++ b/resources/definitions/eazao_m600.def.json @@ -0,0 +1,72 @@ +{ + "version": 2, + "name": "Eazao M600", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Eazao", + "manufacturer": "Eazao", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "eazao_m600_extruder_0" }, + "preferred_material": "eazao_clay", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_print": { "value": 300 }, + "acceleration_travel": { "value": 300 }, + "adhesion_type": { "default_value": "'none'" }, + "bottom_layers": { "value": 2 }, + "infill_sparse_density": { "value": 0 }, + "initial_bottom_layers": { "value": 2 }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height": { "value": 1.0 }, + "layer_height_0": { "value": 1.0 }, + "line_width": { "value": 3.0 }, + "machine_acceleration": { "value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 420 }, + "machine_end_gcode": { "default_value": "G92 Z0\nG1 F1500 Z10\nG28 X0 Y400 ;move X Y to min endstops\nM82\nM84 ;steppers off\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 620 }, + "machine_max_acceleration_e": { "value": 500 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 25 }, + "machine_max_feedrate_x": { "value": 100 }, + "machine_max_feedrate_y": { "value": 100 }, + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Eazao M600" }, + "machine_start_gcode": { "default_value": "G21 ;set units to millimeters\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home\nG1 Z25.0 F1500 ;move the platform down 15mm\nG92 E0 ;extruder reset\nG1 F300 E5\nG92 E0 ;The extruder is forced to zero again\nM302\nM163 S0 P0.87; Set Mix Factor\nM163 S1 P0.13; Set Mix Factor\nM164 S0" }, + "machine_width": { "default_value": 420 }, + "magic_spiralize": { "value": true }, + "material_final_print_temperature": { "value": "0" }, + "material_initial_print_temperature": { "value": "0" }, + "material_print_temperature": { "value": "0" }, + "material_print_temperature_layer_0": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 7 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "speed_print": { "value": 20.0 }, + "speed_travel": { "value": 20.0 }, + "speed_wall": { "value": 20.0 }, + "speed_wall_0": { "value": 20.0 }, + "speed_wall_x": { "value": 20.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, + "top_bottom_pattern": { "value": "concentric" }, + "top_bottom_thickness": { "value": 3 }, + "wall_thickness": { "value": 5.0 } + } +} \ No newline at end of file diff --git a/resources/definitions/eazao_m700.def.json b/resources/definitions/eazao_m700.def.json new file mode 100644 index 0000000000..98e35f46e1 --- /dev/null +++ b/resources/definitions/eazao_m700.def.json @@ -0,0 +1,72 @@ +{ + "version": 2, + "name": "Eazao M700", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Eazao", + "manufacturer": "Eazao", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "eazao_m700_extruder_0" }, + "preferred_material": "eazao_clay", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_print": { "value": 300 }, + "acceleration_travel": { "value": 300 }, + "adhesion_type": { "default_value": "none" }, + "bottom_layers": { "value": 2 }, + "infill_sparse_density": { "value": 0 }, + "initial_bottom_layers": { "value": 2 }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height": { "value": 1.0 }, + "layer_height_0": { "value": 1.0 }, + "line_width": { "value": 3.0 }, + "machine_acceleration": { "value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 520 }, + "machine_end_gcode": { "default_value": "G92 Z0\nG1 F1500 Z10\nG28 X0 Y500 ;move X Y to min endstops\nM82\nM84 ;steppers off\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 720 }, + "machine_max_acceleration_e": { "value": 500 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 25 }, + "machine_max_feedrate_x": { "value": 100 }, + "machine_max_feedrate_y": { "value": 100 }, + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Eazao M700" }, + "machine_start_gcode": { "default_value": "G21 ;set units to millimeters\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home\nG1 Z25.0 F1500 ;move the platform down 15mm\nG92 E0 ;extruder reset\nG1 F300 E5\nG92 E0 ;The extruder is forced to zero again\nM302\nM163 S0 P0.87; Set Mix Factor\nM163 S1 P0.13; Set Mix Factor\nM164 S0" }, + "machine_width": { "default_value": 520 }, + "magic_spiralize": { "value": true }, + "material_final_print_temperature": { "value": "0" }, + "material_initial_print_temperature": { "value": "0" }, + "material_print_temperature": { "value": "0" }, + "material_print_temperature_layer_0": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 7 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "speed_print": { "value": 20.0 }, + "speed_travel": { "value": 20.0 }, + "speed_wall": { "value": 20.0 }, + "speed_wall_0": { "value": 20.0 }, + "speed_wall_x": { "value": 20.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, + "top_bottom_pattern": { "value": "concentric" }, + "top_bottom_thickness": { "value": 3 }, + "wall_thickness": { "value": 5.0 } + } +} \ No newline at end of file diff --git a/resources/definitions/eazao_potter.def.json b/resources/definitions/eazao_potter.def.json new file mode 100644 index 0000000000..110ea1efb5 --- /dev/null +++ b/resources/definitions/eazao_potter.def.json @@ -0,0 +1,72 @@ +{ + "version": 2, + "name": "Eazao Potter", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Eazao", + "manufacturer": "Eazao", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "eazao_potter_extruder_0" }, + "preferred_material": "eazao_clay", + "preferred_quality_type": "normal" + }, + "overrides": + { + "acceleration_print": { "value": 300 }, + "acceleration_travel": { "value": 300 }, + "adhesion_type": { "default_value": "'none'" }, + "bottom_layers": { "value": 3 }, + "infill_sparse_density": { "value": 0 }, + "initial_bottom_layers": { "value": 3 }, + "jerk_print": { "value": 10 }, + "jerk_travel": { "value": "jerk_print" }, + "jerk_travel_layer_0": { "value": "jerk_travel" }, + "layer_height": { "value": 1.0 }, + "layer_height_0": { "value": 1.0 }, + "line_width": { "value": 3.0 }, + "machine_acceleration": { "value": 300 }, + "machine_center_is_zero": { "default_value": false }, + "machine_depth": { "default_value": 167 }, + "machine_end_gcode": { "default_value": "G92 Z0 E0\nG1 F1500 Z10 E-2\nM82\nM84 ;steppers off\n" }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": false }, + "machine_height": { "default_value": 280 }, + "machine_max_acceleration_e": { "value": 500 }, + "machine_max_acceleration_x": { "value": 500 }, + "machine_max_acceleration_y": { "value": 500 }, + "machine_max_acceleration_z": { "value": 50 }, + "machine_max_feedrate_e": { "value": 25 }, + "machine_max_feedrate_x": { "value": 100 }, + "machine_max_feedrate_y": { "value": 100 }, + "machine_max_feedrate_z": { "value": 5 }, + "machine_max_jerk_e": { "value": 5 }, + "machine_max_jerk_xy": { "value": 10 }, + "machine_max_jerk_z": { "value": 0.3 }, + "machine_name": { "default_value": "Eazao Potter" }, + "machine_start_gcode": { "default_value": "G21 ;set units to millimeters\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home\nG1 Z25.0 F1500 ;move the platform down 25mm\nG92 E0 ;extruder reset\nG1 F1500 E2\nG92 E0 ;The extruder is forced to zero again\nM302\nM163 S0 P0.85; Set Mix Factor\nM163 S1 P0.15; Set Mix Factor\nM164 S0" }, + "machine_width": { "default_value": 167 }, + "magic_spiralize": { "value": true }, + "material_final_print_temperature": { "value": "0" }, + "material_initial_print_temperature": { "value": "0" }, + "material_print_temperature": { "value": "0" }, + "material_print_temperature_layer_0": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "retraction_amount": { "value": 7 }, + "retraction_combing": { "value": "'noskin'" }, + "retraction_count_max": { "value": 100 }, + "retraction_extrusion_window": { "value": 10 }, + "retraction_hop": { "value": 0.2 }, + "speed_print": { "value": 25.0 }, + "speed_travel": { "value": 25.0 }, + "speed_wall": { "value": 25.0 }, + "speed_wall_0": { "value": 25.0 }, + "speed_wall_x": { "value": 25.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, + "top_bottom_pattern": { "value": "concentric" }, + "top_bottom_thickness": { "value": 3 }, + "wall_thickness": { "value": 3.0 } + } +} \ No newline at end of file diff --git a/resources/definitions/eazao_zero.def.json b/resources/definitions/eazao_zero.def.json index f849e25eb5..d4ae902fa6 100644 --- a/resources/definitions/eazao_zero.def.json +++ b/resources/definitions/eazao_zero.def.json @@ -9,9 +9,8 @@ "manufacturer": "Eazao", "file_formats": "text/x-gcode", "has_machine_quality": false, - "has_materials": true, "machine_extruder_trains": { "0": "eazao_zero_extruder_0" }, - "preferred_material": "generic_pla", + "preferred_material": "eazao_clay", "preferred_quality_type": "normal" }, "overrides": @@ -20,11 +19,9 @@ "acceleration_print": { "value": 300 }, "acceleration_travel": { "value": 300 }, "adhesion_type": { "default_value": "none" }, - "bottom_layers": { "value": 2 }, - "cool_fan_enabled": { "value": false }, + "bottom_layers": { "value": 3 }, "infill_sparse_density": { "value": 0 }, - "initial_bottom_layers": { "value": 2 }, - "jerk_enabled": { "value": false }, + "initial_bottom_layers": { "value": 3 }, "jerk_print": { "value": 10 }, "jerk_travel": { "value": "jerk_print" }, "jerk_travel_layer_0": { "value": "jerk_travel" }, @@ -34,7 +31,7 @@ "machine_acceleration": { "value": 300 }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 150 }, - "machine_end_gcode": { "default_value": "G92 E10\nG1 E-10 F300\nG28 X0 Y0 ;move X Y to min endstops\nM82\nM84 ;steppers off\n" }, + "machine_end_gcode": { "default_value": "G92 Z0 E0\nG1 F1500 E-2\nG1 F1500 Z10\nG28 X0;move X Y to min endstops\nM82\nM84 ;steppers off\n" }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_heated_bed": { "default_value": false }, "machine_height": { "default_value": 240 }, @@ -49,9 +46,10 @@ "machine_max_jerk_e": { "value": 5 }, "machine_max_jerk_xy": { "value": 10 }, "machine_max_jerk_z": { "value": 0.3 }, - "machine_name": { "default_value": "EAZAO Zero" }, - "machine_start_gcode": { "default_value": "G21 \nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home \nG1 Z15.0 F1500 ;move the platform down 15mm\nG92 E0 \nG1 F300 E10\nG92 E0\nM302\nM163 S0 P0.9; Set Mix Factor\nM163 S1 P0.1; Set Mix Factor\nM164 S0\n" }, + "machine_name": { "default_value": "Eazao Zero" }, + "machine_start_gcode": { "default_value": "G21 \nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nG28 ;Home \nG1 Z15.0 F1500 ;move the platform down 15mm\nG92 E0 \nG1 F1500 E2\nG92 E0\nM302\nM163 S0 P0.8; Set Mix Factor\nM163 S1 P0.2; Set Mix Factor\nM164 S0\n" }, "machine_width": { "default_value": 150 }, + "magic_spiralize": { "value": true }, "material_final_print_temperature": { "value": "0" }, "material_initial_print_temperature": { "value": "0" }, "material_print_temperature": { "value": "0" }, @@ -59,23 +57,13 @@ "optimize_wall_printing_order": { "value": "True" }, "retraction_amount": { "value": 7 }, "retraction_combing": { "value": "'noskin'" }, - "retraction_combing_max_distance": { "value": 0 }, "retraction_count_max": { "value": 100 }, - "retraction_enable": { "value": false }, "retraction_extrusion_window": { "value": 10 }, "retraction_hop": { "value": 0.2 }, - "retraction_hop_enabled": { "value": false }, - "retraction_speed": { "value": 25 }, - "speed_print": { "value": 20.0 }, - "speed_travel": { "value": 20.0 }, - "speed_wall": { "value": 20.0 }, - "speed_wall_0": { "value": 20.0 }, - "speed_wall_x": { "value": 20.0 }, + "speed_print": { "value": 25.0 }, "speed_z_hop": { "value": "machine_max_feedrate_z" }, - "top_bottom_thickness": { "value": 0 }, - "travel_avoid_other_parts": { "value": true }, - "travel_avoid_supports": { "value": false }, - "travel_retract_before_outer_wall": { "value": false }, + "top_bottom_pattern": { "value": "concentric" }, + "top_bottom_thickness": { "value": 3 }, "wall_thickness": { "value": 3.0 } } } \ No newline at end of file diff --git a/resources/definitions/erzay3d.def.json b/resources/definitions/erzay3d.def.json index 5baadf32e4..af5784e4e6 100644 --- a/resources/definitions/erzay3d.def.json +++ b/resources/definitions/erzay3d.def.json @@ -44,7 +44,6 @@ "machine_max_jerk_xy": { "default_value": 10 }, "machine_max_jerk_z": { "default_value": 10 }, "machine_name": { "default_value": "Erzay3D" }, - "machine_nozzle_head_distance": { "default_value": 2.5 }, "machine_nozzle_size": { "default_value": 0.4 }, "machine_shape": { "default_value": "elliptic" }, "machine_start_gcode": { "default_value": "G28\nG1 Z15.0 F6000\nG92 E0" }, diff --git a/resources/definitions/fdmextruder.def.json b/resources/definitions/fdmextruder.def.json index f60cf63360..5ba963bf71 100644 --- a/resources/definitions/fdmextruder.def.json +++ b/resources/definitions/fdmextruder.def.json @@ -7,7 +7,7 @@ "author": "Ultimaker", "manufacturer": "Unknown", "position": "0", - "setting_version": 23, + "setting_version": 25, "type": "extruder" }, "settings": @@ -39,6 +39,18 @@ "type": "float", "unit": "mm" }, + "machine_extruder_change_duration": + { + "default_value": 0, + "description": "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur.", + "label": "Extruder Change duration", + "minimum_value": "0", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float" + }, "machine_extruder_cooling_fan_number": { "default_value": 0, @@ -109,6 +121,17 @@ "type": "float", "unit": "mm" }, + "machine_extruder_prestart_code": + { + "default_value": "", + "description": "Prestart g-code to execute before switching to this extruder.", + "label": "Extruder Prestart G-Code", + "settable_globally": false, + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "str" + }, "machine_extruder_start_code": { "default_value": "", @@ -167,6 +190,17 @@ "type": "float", "unit": "mm" }, + "machine_nozzle_head_distance": + { + "default_value": 3, + "description": "The height difference between the tip of the nozzle and the lowest part of the print head.", + "label": "Nozzle Length", + "settable_per_extruder": true, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "float", + "unit": "mm" + }, "machine_nozzle_id": { "default_value": "unknown", diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 64196b9f8b..6710d0f0bf 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -6,7 +6,7 @@ "type": "machine", "author": "Unknown", "manufacturer": "Unknown", - "setting_version": 23, + "setting_version": 25, "file_formats": "text/x-gcode;model/stl;application/x-wavefront-obj;application/x3g", "visible": false, "has_materials": true, @@ -15,8 +15,11 @@ "preferred_material": "generic_pla", "preferred_quality_type": "normal", "machine_extruder_trains": { "0": "fdmextruder" }, + "has_textured_buildplate": false, "supports_usb_connection": true, - "supports_network_connection": false + "supports_network_connection": false, + "supports_abstract_color": false, + "variants_name_has_translation": false }, "settings": { @@ -28,6 +31,18 @@ "icon": "Printer", "children": { + "build_volume_fan_nr": + { + "label": "Build volume fan number", + "description": "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan", + "default_value": 0, + "minimum_value": "0", + "maximum_value": "999999", + "type": "int", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false + }, "machine_name": { "label": "Machine Type", @@ -199,8 +214,8 @@ }, "machine_buildplate_type": { - "label": "Build Plate Material", - "description": "The material of the build plate installed on the printer.", + "label": "Build Plate Type", + "description": "The type of build plate installed on the printer.", "default_value": "glass", "type": "enum", "options": @@ -289,17 +304,6 @@ "settable_per_meshgroup": false, "settable_globally": false }, - "machine_nozzle_head_distance": - { - "label": "Nozzle Length", - "description": "The height difference between the tip of the nozzle and the lowest part of the print head.", - "unit": "mm", - "default_value": 3, - "type": "float", - "settable_per_mesh": false, - "settable_per_extruder": true, - "settable_per_meshgroup": false - }, "machine_nozzle_expansion_angle": { "label": "Nozzle Angle", @@ -380,10 +384,12 @@ "RepRap (RepRap)": "RepRap", "UltiGCode": "Ultimaker 2", "Griffin": "Griffin", + "Cheetah": "Griffin+Cheetah", "Makerbot": "Makerbot", "BFB": "Bits from Bytes", "MACH3": "Mach3", - "Repetier": "Repetier" + "Repetier": "Repetier", + "BambuLab": "BambuLab" }, "default_value": "RepRap (Marlin/Sprinter)", "settable_per_mesh": false, @@ -457,7 +463,7 @@ "machine_head_with_fans_polygon": { "label": "Machine Head & Fan Polygon", - "description": "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates.", + "description": "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam.", "type": "polygon", "default_value": [ [-20, 10], @@ -511,6 +517,16 @@ "settable_per_extruder": false, "settable_per_meshgroup": false }, + "machine_start_gcode_first": + { + "label": "Start GCode must be first", + "description": "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code.", + "type": "bool", + "default_value": false, + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false + }, "extruder_prime_pos_z": { "label": "Extruder Prime Z Position", @@ -764,6 +780,15 @@ "settable_per_mesh": false, "settable_per_extruder": false, "settable_per_meshgroup": false + }, + "reset_flow_duration": + { + "enabled": "gradual_flow_enabled", + "value": 2.0, + "label": "Reset flow duration", + "description": "For any travel move longer than this value, the material flow is reset to the paths target flow", + "unit": "s", + "type": "float" } } }, @@ -1347,7 +1372,7 @@ "label": "Z Seam On Vertex", "description": "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)", "type": "bool", - "default_value": true, + "default_value": false, "settable_per_mesh": true, "enabled": "z_seam_type == 'back' or z_seam_type == 'shortest'" }, @@ -1413,7 +1438,7 @@ "z_seam_corner_weighted": "Smart Hiding" }, "default_value": "z_seam_corner_inner", - "enabled": "z_seam_type != 'random'", + "enabled": "z_seam_type == 'sharpest_corner'", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -1521,6 +1546,90 @@ } } }, + "flooring_extruder_nr": + { + "label": "Bottom Surface Skin Extruder", + "description": "The extruder train used for printing the bottom most skin. This is used in multi-extrusion.", + "type": "optional_extruder", + "default_value": "-1", + "value": "top_bottom_extruder_nr", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": true, + "settable_globally": true, + "enabled": "extruders_enabled_count > 1 and max(extruderValues('flooring_layer_count')) > 0 and max(extruderValues('bottom_layers')) > 0" + }, + "flooring_layer_count": + { + "label": "Bottom Surface Skin Layers", + "description": "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces.", + "default_value": 0, + "minimum_value": "0", + "maximum_value_warning": "bottom_layers - 1", + "type": "int", + "maximum_value": "999999", + "value": "0", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true, + "enabled": "bottom_layers > 0", + "children": + { + "flooring_line_width": + { + "label": "Bottom Surface Skin Line Width", + "description": "Width of a single line of the areas at the bottom of the print.", + "unit": "mm", + "minimum_value": "0.001", + "minimum_value_warning": "0.1 + 0.4 * machine_nozzle_size", + "maximum_value_warning": "2 * machine_nozzle_size", + "default_value": 0.4, + "type": "float", + "value": "skin_line_width", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true, + "enabled": "flooring_layer_count > 0 and bottom_layers > 0" + }, + "flooring_pattern": + { + "label": "Bottom Surface Skin Pattern", + "description": "The pattern of the bottom most layers.", + "type": "enum", + "options": + { + "lines": "Lines", + "concentric": "Concentric", + "zigzag": "Zig Zag" + }, + "default_value": "lines", + "value": "top_bottom_pattern", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true, + "enabled": "flooring_layer_count > 0 and bottom_layers > 0" + }, + "flooring_monotonic": + { + "label": "Monotonic Bottom Surface Order", + "description": "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent.", + "type": "bool", + "value": true, + "default_value": true, + "enabled": "flooring_layer_count > 0 and bottom_layers > 0 and flooring_pattern != 'concentric'", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true + }, + "flooring_angles": + { + "label": "Bottom Surface Skin Line Directions", + "description": "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees).", + "type": "[int]", + "default_value": "[ ]", + "value": "skin_angles", + "enabled": "flooring_pattern != 'concentric' and flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true + } + } + }, "top_bottom_extruder_nr": { "label": "Top/Bottom Extruder", @@ -2326,7 +2435,7 @@ "label": "Skin Edge Support Thickness", "description": "The thickness of the extra infill that supports skin edges.", "unit": "mm", - "default_value": 0.8, + "default_value": 0, "minimum_value": "0", "maximum_value": "machine_height", "maximum_value_warning": "resolveOrValue('infill_sparse_thickness') * 10", @@ -2341,7 +2450,7 @@ { "label": "Skin Edge Support Layers", "description": "The number of infill layers that supports skin edges.", - "default_value": 4, + "default_value": 0, "minimum_value": "0", "maximum_value_warning": "10", "type": "int", @@ -2353,6 +2462,21 @@ } } }, + "extra_infill_lines_to_support_skins": + { + "label": "Extra Infill Lines To Support Skins", + "description": "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin.", + "type": "enum", + "options": + { + "walls_and_lines": "Walls and Lines", + "walls": "Walls Only", + "none": "None" + }, + "default_value": "walls_and_lines", + "value": "'none' if infill_sparse_density > 50 else 'walls' if skin_edge_support_thickness > 0 else 'walls_and_lines'", + "enabled": "infill_sparse_density > 0 and infill_pattern not in ('lightning', 'concentric', 'cross','cross_3d') and wall_line_count > 0 and top_layers > 0" + }, "lightning_infill_support_angle": { "label": "Lightning Infill Support Angle", @@ -2898,6 +3022,7 @@ "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", + "enabled": "roofing_layer_count > 0 and top_layers > 0", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -2912,6 +3037,37 @@ "minimum_value": "0.0001", "minimum_value_warning": "50", "maximum_value_warning": "150", + "enabled": "roofing_layer_count > 0 and top_layers > 0", + "limit_to_extruder": "wall_x_extruder_nr", + "settable_per_mesh": true + }, + "wall_0_material_flow_flooring": + { + "label": "Bottom Surface Outer Wall Flow", + "description": "Flow compensation on the bottom surface outermost wall line.", + "unit": "%", + "type": "float", + "default_value": 100, + "value": "wall_0_material_flow", + "minimum_value": "0.0001", + "minimum_value_warning": "50", + "maximum_value_warning": "150", + "enabled": "flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_mesh": true + }, + "wall_x_material_flow_flooring": + { + "label": "Bottom Surface Inner Wall(s) Flow", + "description": "Flow compensation on bottom surface wall lines for all wall lines except the outermost one.", + "unit": "%", + "type": "float", + "default_value": 100, + "value": "wall_x_material_flow", + "minimum_value": "0.0001", + "minimum_value_warning": "50", + "maximum_value_warning": "150", + "enabled": "flooring_layer_count > 0 and bottom_layers > 0", "limit_to_extruder": "wall_x_extruder_nr", "settable_per_mesh": true } @@ -2947,6 +3103,21 @@ "settable_per_mesh": true, "enabled": "roofing_layer_count > 0 and top_layers > 0" }, + "flooring_material_flow": + { + "label": "Bottom Surface Skin Flow", + "description": "Flow compensation on lines of the areas at the bottom of the print.", + "unit": "%", + "type": "float", + "default_value": 100, + "value": "skin_material_flow", + "minimum_value": "0.0001", + "minimum_value_warning": "50", + "maximum_value_warning": "150", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true, + "enabled": "flooring_layer_count > 0 and bottom_layers > 0" + }, "infill_material_flow": { "label": "Infill Flow", @@ -3139,6 +3310,87 @@ "enabled": false, "settable_per_mesh": false, "settable_per_extruder": true + }, + "gradual_flow_enabled": + { + "label": "Gradual flow enabled", + "description": "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops.", + "type": "bool", + "default_value": false, + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "max_flow_acceleration": + { + "enabled": "gradual_flow_enabled", + "label": "Gradual flow max acceleration", + "description": "Maximum acceleration for gradual flow changes", + "type": "float", + "unit": "mm\u00b3/s\u00b2", + "default_value": 1, + "minimum_value_warning": 0.1, + "maximum_value_warning": 99999, + "minimum_value": 0.01, + "settable_per_mesh": false, + "settable_per_extruder": true, + "comments": "when enabled, each second the flow will at max be increased/decreased by this value" + }, + "layer_0_max_flow_acceleration": + { + "enabled": "gradual_flow_enabled", + "value": "max_flow_acceleration", + "label": "Initial layer max flow acceleration", + "description": "Minimum speed for gradual flow changes for the first layer", + "type": "float", + "unit": "mm\u00b3/s\u00b2", + "default_value": 1, + "minimum_value_warning": 0.1, + "maximum_value_warning": 99999, + "minimum_value": 0.01, + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "gradual_flow_discretisation_step_size": + { + "enabled": "gradual_flow_enabled", + "label": "Gradual flow discretisation step size", + "description": "Duration of each step in the gradual flow change", + "type": "float", + "unit": "s", + "default_value": 0.2, + "maximum_value_warning": 1.0, + "maximum_value": 5.0, + "minimum_value_warning": 0.1, + "minimum_value": 0.01, + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "material_pressure_advance_factor": + { + "enabled": false, + "label": "Pressure advance factor", + "description": "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion", + "default_value": 0.05, + "maximum_value_warning": 1.0, + "minimum_value": 0, + "type": "float", + "settable_per_mesh": false, + "settable_per_extruder": true, + "settable_per_meshgroup": false + }, + "material_max_flowrate": + { + "default_value": 16, + "description": "Maximum flow rate that the printer can extrude for the material", + "enabled": false, + "label": "Material Maximum Flow Rate", + "maximum_value": "machine_max_feedrate_e * (material_diameter/2)**2 * math.pi", + "minimum_value": "0", + "settable_per_extruder": true, + "settable_per_mesh": false, + "type": "float", + "unit": "mm\u00b3/s", + "value": "16" } } }, @@ -3231,6 +3483,7 @@ "maximum_value_warning": "150", "default_value": 30, "value": "speed_wall_0", + "enabled": "roofing_layer_count > 0 and top_layers > 0", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -3245,6 +3498,37 @@ "maximum_value_warning": "150", "default_value": 60, "value": "speed_wall_x", + "enabled": "roofing_layer_count > 0 and top_layers > 0", + "limit_to_extruder": "wall_x_extruder_nr", + "settable_per_mesh": true + }, + "speed_wall_0_flooring": + { + "label": "Bottom Surface Outer Wall Speed", + "description": "The speed at which the bottom surface outermost wall is printed.", + "unit": "mm/s", + "type": "float", + "minimum_value": "0.1", + "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", + "maximum_value_warning": "150", + "default_value": 30, + "value": "speed_wall_0", + "enabled": "flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_mesh": true + }, + "speed_wall_x_flooring": + { + "label": "Bottom Surface Inner Wall Speed", + "description": "The speed at which the bottom surface inner walls are printed.", + "unit": "mm/s", + "type": "float", + "minimum_value": "0.1", + "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", + "maximum_value_warning": "150", + "default_value": 60, + "value": "speed_wall_x", + "enabled": "flooring_layer_count > 0 and bottom_layers > 0", "limit_to_extruder": "wall_x_extruder_nr", "settable_per_mesh": true } @@ -3265,6 +3549,21 @@ "settable_per_mesh": true, "enabled": "roofing_layer_count > 0 and top_layers > 0" }, + "speed_flooring": + { + "label": "Bottom Surface Skin Speed", + "description": "The speed at which bottom surface skin layers are printed.", + "unit": "mm/s", + "type": "float", + "minimum_value": "0.1", + "maximum_value": "math.sqrt(machine_max_feedrate_x ** 2 + machine_max_feedrate_y ** 2)", + "maximum_value_warning": "150", + "default_value": 25, + "value": "speed_topbottom", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true, + "enabled": "flooring_layer_count > 0 and bottom_layers > 0" + }, "speed_topbottom": { "label": "Top/Bottom Speed", @@ -3602,7 +3901,7 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_wall_0", - "enabled": "resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('acceleration_enabled') and roofing_layer_count > 0 and top_layers > 0", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -3617,7 +3916,37 @@ "maximum_value_warning": "10000", "default_value": 3000, "value": "acceleration_wall_x", - "enabled": "resolveOrValue('acceleration_enabled')", + "enabled": "resolveOrValue('acceleration_enabled') and roofing_layer_count > 0 and top_layers > 0", + "limit_to_extruder": "wall_x_extruder_nr", + "settable_per_mesh": true + }, + "acceleration_wall_0_flooring": + { + "label": "Bottom Surface Outer Wall Acceleration", + "description": "The acceleration with which the bottom surface outermost walls are printed.", + "unit": "mm/s\u00b2", + "type": "float", + "minimum_value": "0.1", + "minimum_value_warning": "100", + "maximum_value_warning": "10000", + "default_value": 3000, + "value": "acceleration_wall_0", + "enabled": "resolveOrValue('acceleration_enabled') and flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_mesh": true + }, + "acceleration_wall_x_flooring": + { + "label": "Bottom Surface Inner Wall Acceleration", + "description": "The acceleration with which the bottom surface inner walls are printed.", + "unit": "mm/s\u00b2", + "type": "float", + "minimum_value": "0.1", + "minimum_value_warning": "100", + "maximum_value_warning": "10000", + "default_value": 3000, + "value": "acceleration_wall_x", + "enabled": "resolveOrValue('acceleration_enabled') and flooring_layer_count > 0 and bottom_layers > 0", "limit_to_extruder": "wall_x_extruder_nr", "settable_per_mesh": true } @@ -3638,6 +3967,21 @@ "limit_to_extruder": "roofing_extruder_nr", "settable_per_mesh": true }, + "acceleration_flooring": + { + "label": "Bottom Surface Skin Acceleration", + "description": "The acceleration with which bottom surface skin layers are printed.", + "unit": "mm/s\u00b2", + "type": "float", + "minimum_value": "0.1", + "minimum_value_warning": "100", + "maximum_value_warning": "10000", + "default_value": 3000, + "value": "acceleration_topbottom", + "enabled": "resolveOrValue('acceleration_enabled') and flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true + }, "acceleration_topbottom": { "label": "Top/Bottom Acceleration", @@ -3930,7 +4274,7 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_wall_0", - "enabled": "resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('jerk_enabled') and roofing_layer_count > 0 and top_layers > 0", "limit_to_extruder": "wall_0_extruder_nr", "settable_per_mesh": true }, @@ -3944,7 +4288,35 @@ "maximum_value_warning": "50", "default_value": 20, "value": "jerk_wall_x", - "enabled": "resolveOrValue('jerk_enabled')", + "enabled": "resolveOrValue('jerk_enabled') and roofing_layer_count > 0 and top_layers > 0", + "limit_to_extruder": "wall_x_extruder_nr", + "settable_per_mesh": true + }, + "jerk_wall_0_flooring": + { + "label": "Bottom Surface Outer Wall Jerk", + "description": "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed.", + "unit": "mm/s", + "type": "float", + "minimum_value": "0", + "maximum_value_warning": "50", + "default_value": 20, + "value": "jerk_wall_0", + "enabled": "resolveOrValue('jerk_enabled') and flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_mesh": true + }, + "jerk_wall_x_flooring": + { + "label": "Bottom Surface Inner Wall Jerk", + "description": "The maximum instantaneous velocity change with which the bottom surface inner walls are printed.", + "unit": "mm/s", + "type": "float", + "minimum_value": "0", + "maximum_value_warning": "50", + "default_value": 20, + "value": "jerk_wall_x", + "enabled": "resolveOrValue('jerk_enabled') and flooring_layer_count > 0 and bottom_layers > 0", "limit_to_extruder": "wall_x_extruder_nr", "settable_per_mesh": true } @@ -3964,6 +4336,20 @@ "limit_to_extruder": "roofing_extruder_nr", "settable_per_mesh": true }, + "jerk_flooring": + { + "label": "Bottom Surface Skin Jerk", + "description": "The maximum instantaneous velocity change with which bottom surface skin layers are printed.", + "unit": "mm/s", + "type": "float", + "minimum_value": "0", + "maximum_value_warning": "50", + "default_value": 20, + "value": "jerk_topbottom", + "enabled": "resolveOrValue('jerk_enabled') and flooring_layer_count > 0 and bottom_layers > 0", + "limit_to_extruder": "flooring_extruder_nr", + "settable_per_mesh": true + }, "jerk_topbottom": { "label": "Top/Bottom Jerk", @@ -4320,6 +4706,21 @@ "settable_per_mesh": false, "settable_per_extruder": true }, + "retraction_combing_avoid_distance": + { + "label": "Inside Travel Avoid Distance", + "description": "The distance between the nozzle and already printed outer walls when travelling inside a model.", + "unit": "mm", + "type": "float", + "default_value": 0, + "value": "machine_nozzle_size * 1.5", + "minimum_value": "0", + "minimum_value_warning": "machine_nozzle_size * 0.5", + "maximum_value_warning": "machine_nozzle_size * 10", + "enabled": "resolveOrValue('retraction_combing') != 'off'", + "settable_per_mesh": false, + "settable_per_extruder": true + }, "travel_retract_before_outer_wall": { "label": "Retract Before Outer Wall", @@ -4467,6 +4868,65 @@ "settable_per_mesh": false, "settable_per_extruder": true }, + "build_fan_full_at_height": + { + "label": "Build Volume Fan Speed at Height", + "description": "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed.", + "unit": "mm", + "type": "float", + "default_value": 0, + "minimum_value": "0", + "enabled": "build_volume_fan_nr != 0", + "maximum_value_warning": "10.0", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false, + "children": + { + "build_fan_full_layer": + { + "label": "Build Volume Fan Speed at Layer", + "description": "The layer at which the build-volume fans spin on full fan speed. This value is calculated and rounded to a whole number.", + "type": "int", + "default_value": 0, + "minimum_value": "0", + "enabled": "build_volume_fan_nr != 0", + "maximum_value_warning": "10 / resolveOrValue('layer_height')", + "value": "max(1, int(math.floor((build_fan_full_at_height - resolveOrValue('layer_height_0')) / resolveOrValue('layer_height')) + 2))", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false + } + } + }, + "build_volume_fan_speed_0": + { + "label": "Initial Layers Build Volume Fan Speed", + "description": "The fan speed (as a percentage) for the auxiliary or build-volume fan, that is set until the layer specified at 'Build Volume Fan Speed at Layer' is reached. After that, the speed is set by 'Build Volume Fan Speed' instead (so not this 'Initial Layers' one).", + "unit": "%", + "type": "float", + "minimum_value": "0", + "maximum_value": "100", + "default_value": 0, + "enabled": "build_volume_fan_nr != 0", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false + }, + "build_volume_fan_speed": + { + "label": "Build Volume Fan Speed", + "description": "The fan speed (as a percentage) for the auxiliary or build-volume fan, that is set from the moment that the layer specified at 'Build Volume Fan Speed at Layer' is reached and onwards. Before that, the speed is set by 'Initial Layers Build Volume Fan Speed' instead.", + "unit": "%", + "type": "float", + "minimum_value": "0", + "maximum_value": "100", + "default_value": 100, + "enabled": "build_volume_fan_nr != 0", + "settable_per_mesh": false, + "settable_per_extruder": false, + "settable_per_meshgroup": false + }, "cool_fan_speed": { "label": "Fan Speed", @@ -5953,7 +6413,7 @@ "none": "None" }, "default_value": "brim", - "resolve": "extruderValue(adhesion_extruder_nr, 'adhesion_type')", + "resolve": "min(extruderValues('adhesion_type'), key=('raft', 'brim', 'skirt', 'none').index)", "settable_per_mesh": false, "settable_per_extruder": false }, @@ -7048,6 +7508,17 @@ "limit_to_extruder": "raft_surface_extruder_nr" } } + }, + "machine_scan_first_layer": + { + "default_value": false, + "description": "Whether to scan the first layer for layer adhesion problems.", + "enabled": false, + "label": "Scan the first layer", + "settable_per_extruder": false, + "settable_per_mesh": false, + "settable_per_meshgroup": false, + "type": "bool" } } }, @@ -7362,6 +7833,88 @@ "enabled": "retraction_enable and extruders_enabled_count > 1", "settable_per_mesh": false, "settable_per_extruder": true + }, + "interlocking_enable": + { + "label": "Generate Interlocking Structure", + "description": "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials.", + "type": "bool", + "enabled": "extruders_enabled_count > 1", + "default_value": false, + "resolve": "(extruders_enabled_count > 1) and any(extruderValues('interlocking_enable'))", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "interlocking_beam_width": + { + "label": "Interlocking Beam Width", + "description": "The width of the interlocking structure beams.", + "type": "float", + "unit": "mm", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", + "default_value": 0.8, + "value": "2 * wall_line_width_0", + "minimum_value": "min_odd_wall_line_width", + "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", + "maximum_value_warning": "max(extruderValues('wall_line_width_0')) * 6", + "settable_per_mesh": true, + "settable_per_extruder": true + }, + "interlocking_orientation": + { + "label": "Interlocking Structure Orientation", + "description": "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects.", + "unit": "\u00b0", + "type": "float", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", + "default_value": 22.5, + "minimum_value": "0", + "maximum_value": "360", + "resolve": "min(extruderValues('interlocking_orientation'))", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "interlocking_beam_layer_count": + { + "label": "Interlocking Beam Layer Count", + "description": "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects.", + "type": "int", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", + "default_value": 2, + "minimum_value": "1", + "maximum_value_warning": "50", + "resolve": "max(extruderValues('interlocking_beam_layer_count'))", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "interlocking_depth": + { + "label": "Interlocking Depth", + "description": "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion.", + "type": "int", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", + "default_value": 2, + "minimum_value": "1", + "maximum_value": "10", + "maximum_value_warning": "5", + "resolve": "max(extruderValues('interlocking_depth'))", + "settable_per_mesh": false, + "settable_per_extruder": false + }, + "interlocking_boundary_avoidance": + { + "label": "Interlocking Boundary Avoidance", + "description": "The distance from the outside of a model where interlocking structures will not be generated, measured in cells.", + "type": "int", + "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", + "default_value": 2, + "minimum_value": "0", + "minimum_value_warning": "resolveOrValue('interlocking_depth')", + "maximum_value": "10", + "maximum_value_warning": "5", + "resolve": "max(extruderValues('interlocking_boundary_avoidance'))", + "settable_per_mesh": false, + "settable_per_extruder": false } } }, @@ -7784,88 +8337,6 @@ "settable_per_mesh": true, "settable_per_extruder": false }, - "interlocking_enable": - { - "label": "Generate Interlocking Structure", - "description": "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials.", - "type": "bool", - "enabled": "extruders_enabled_count > 1", - "default_value": false, - "resolve": "(extruders_enabled_count > 1) and any(extruderValues('interlocking_enable'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "interlocking_beam_width": - { - "label": "Interlocking Beam Width", - "description": "The width of the interlocking structure beams.", - "type": "float", - "unit": "mm", - "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", - "default_value": 0.8, - "value": "2 * wall_line_width_0", - "minimum_value": "min_odd_wall_line_width", - "maximum_value": "min(0.5 * machine_width, 0.5 * machine_depth)", - "maximum_value_warning": "max(extruderValues('wall_line_width_0')) * 6", - "settable_per_mesh": true, - "settable_per_extruder": true - }, - "interlocking_orientation": - { - "label": "Interlocking Structure Orientation", - "description": "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects.", - "unit": "\u00b0", - "type": "float", - "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", - "default_value": 22.5, - "minimum_value": "0", - "maximum_value": "360", - "resolve": "min(extruderValues('interlocking_orientation'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "interlocking_beam_layer_count": - { - "label": "Interlocking Beam Layer Count", - "description": "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects.", - "type": "int", - "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", - "default_value": 2, - "minimum_value": "1", - "maximum_value_warning": "50", - "resolve": "max(extruderValues('interlocking_beam_layer_count'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "interlocking_depth": - { - "label": "Interlocking Depth", - "description": "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion.", - "type": "int", - "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", - "default_value": 2, - "minimum_value": "1", - "maximum_value": "10", - "maximum_value_warning": "5", - "resolve": "max(extruderValues('interlocking_depth'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, - "interlocking_boundary_avoidance": - { - "label": "Interlocking Boundary Avoidance", - "description": "The distance from the outside of a model where interlocking structures will not be generated, measured in cells.", - "type": "int", - "enabled": "extruders_enabled_count > 1 and resolveOrValue('interlocking_enable')", - "default_value": 2, - "minimum_value": "0", - "minimum_value_warning": "resolveOrValue('interlocking_depth')", - "maximum_value": "10", - "maximum_value_warning": "5", - "resolve": "max(extruderValues('interlocking_boundary_avoidance'))", - "settable_per_mesh": false, - "settable_per_extruder": false - }, "support_skip_some_zags": { "label": "Break Up Support In Chunks", @@ -8256,7 +8727,7 @@ "wall_overhang_angle": { "label": "Overhanging Wall Angle", - "description": "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either.", + "description": "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang.", "unit": "\u00b0", "type": "float", "minimum_value": "0", @@ -8265,6 +8736,33 @@ "default_value": 90, "settable_per_mesh": true }, + "cool_min_layer_time_overhang": + { + "label": "Minimum Layer Time with Overhang", + "description": "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated.", + "unit": "s", + "type": "float", + "default_value": 5, + "value": "cool_min_layer_time", + "minimum_value": "0", + "maximum_value_warning": "600", + "enabled": "wall_overhang_angle < 90", + "settable_per_mesh": false, + "settable_per_extruder": true + }, + "cool_min_layer_time_overhang_min_segment_length": + { + "label": "Minimum Overhang Segment Length", + "description": "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value.", + "unit": "mm", + "type": "float", + "default_value": 5, + "minimum_value": "0", + "maximum_value_warning": "500", + "enabled": "wall_overhang_angle < 90", + "settable_per_mesh": false, + "settable_per_extruder": true + }, "seam_overhang_angle": { "label": "Seam Overhanging Wall Angle", @@ -8275,18 +8773,17 @@ "minimum_value_warning": "2", "maximum_value": "90", "default_value": 90, - "value": "wall_overhang_angle", + "value": "support_angle", "settable_per_mesh": true }, - "wall_overhang_speed_factor": + "wall_overhang_speed_factors": { - "label": "Overhanging Wall Speed", - "description": "Overhanging walls will be printed at this percentage of their normal print speed.", + "label": "Overhanging Wall Speeds", + "description": "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]", "unit": "%", - "type": "float", - "default_value": 100, - "minimum_value": "0.001", - "minimum_value_warning": "25", + "type": "[int]", + "default_value": "[100]", + "enabled": "wall_overhang_angle < 90", "settable_per_mesh": true }, "bridge_settings_enabled": @@ -8813,6 +9310,115 @@ "type": "bool", "default_value": true, "settable_per_mesh": true + }, + "scarf_joint_seam_length": + { + "label": "Scarf Seam Length", + "description": "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective.", + "type": "float", + "default_value": 0, + "minimum_value": "0", + "maximum_value_warning": "50.0", + "unit": "mm", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true + }, + "scarf_joint_seam_start_height_ratio": + { + "label": "Scarf Seam Start Height", + "description": "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective.", + "type": "float", + "default_value": 0, + "minimum_value": 0, + "maximum_value": 100.0, + "unit": "%", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true, + "enabled": "scarf_joint_seam_length > 0" + }, + "scarf_split_distance": + { + "label": "Scarf Seam Step Length", + "description": "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code.", + "type": "float", + "default_value": 1.0, + "minimum_value": 0.1, + "maximum_value": 100.0, + "maximum_value_warning": "scarf_joint_seam_length", + "unit": "mm", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true, + "enabled": "scarf_joint_seam_length > 0" + }, + "wall_0_start_speed_ratio": + { + "label": "Outer Wall Start Speed Ratio", + "description": "This is the ratio of the top speed to start with when printing an outer wall.", + "type": "float", + "default_value": 100.0, + "minimum_value": 0.0, + "maximum_value": 100.0, + "unit": "%", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true + }, + "wall_0_acceleration": + { + "label": "Outer Wall Start Acceleration", + "description": "This is the acceleration with which to reach the top speed when printing an outer wall.", + "enabled": "wall_0_start_speed_ratio < 100.0", + "type": "float", + "default_value": 20.0, + "minimum_value": 1.0, + "maximum_value": 100000.0, + "unit": "mm/s\u00b2", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true + }, + "wall_0_end_speed_ratio": + { + "label": "Outer Wall End Speed Ratio", + "description": "This is the ratio of the top speed to end with when printing an outer wall.", + "type": "float", + "default_value": 100.0, + "minimum_value": 0.0, + "maximum_value": 100.0, + "unit": "%", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true + }, + "wall_0_deceleration": + { + "label": "Outer Wall End Deceleration", + "description": "This is the deceleration with which to end printing an outer wall.", + "enabled": "wall_0_end_speed_ratio < 100.0", + "type": "float", + "default_value": 20.0, + "minimum_value": 1.0, + "maximum_value": 100000.0, + "unit": "mm/s\u00b2", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true + }, + "wall_0_speed_split_distance": + { + "label": "Outer Wall Speed Split Distance", + "description": "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code.", + "type": "float", + "default_value": 1.0, + "minimum_value": 0.1, + "maximum_value": 100.0, + "unit": "mm", + "limit_to_extruder": "wall_0_extruder_nr", + "settable_per_extruder": true, + "settable_per_mesh": true } } }, diff --git a/resources/definitions/flyingbear_ghost_4s.def.json b/resources/definitions/flyingbear_ghost_4s.def.json index fe5b82a49f..807d036523 100644 --- a/resources/definitions/flyingbear_ghost_4s.def.json +++ b/resources/definitions/flyingbear_ghost_4s.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "oducceu", "platform": "flyingbear_platform.obj", + "has_textured_buildplate": true, "platform_texture": "flyingbear_platform.png", "quality_definition": "flyingbear_base" }, diff --git a/resources/definitions/flyingbear_ghost_5.def.json b/resources/definitions/flyingbear_ghost_5.def.json index 26108d9eeb..b72a3a18fd 100644 --- a/resources/definitions/flyingbear_ghost_5.def.json +++ b/resources/definitions/flyingbear_ghost_5.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "oducceu", "platform": "flyingbear_platform.obj", + "has_textured_buildplate": true, "platform_texture": "flyingbear_platform.png", "quality_definition": "flyingbear_base" }, diff --git a/resources/definitions/flyingbear_ghost_6.def.json b/resources/definitions/flyingbear_ghost_6.def.json index 26c067285e..8c5287cb4e 100644 --- a/resources/definitions/flyingbear_ghost_6.def.json +++ b/resources/definitions/flyingbear_ghost_6.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "barrnet", "platform": "flyingbear_platform.obj", + "has_textured_buildplate": true, "platform_texture": "flyingbear_platform.png", "quality_definition": "flyingbear_base" }, diff --git a/resources/definitions/geeetech_M1.def.json b/resources/definitions/geeetech_M1.def.json new file mode 100644 index 0000000000..2782c7c87c --- /dev/null +++ b/resources/definitions/geeetech_M1.def.json @@ -0,0 +1,59 @@ +{ + "version": 2, + "name": "Geeetech M1", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "adhesion_type": { "value": "'brim'" }, + "brim_width": { "value": 2 }, + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 105 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 95 }, + "machine_name": { "default_value": "Geeetech M1" }, + "machine_start_gcode": { "default_value": ";Official wiki URL for Geeetech M1:https://www.geeetech.com/wiki/index.php/Geeetech_M1_3D_printer \nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM140 S{material_bed_temperature_layer_0} ; Set Bed Temperature\n;M190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 ;Off Fan\nM300 S2500 P1000 ;Play a short tune\nG1 Z0.28 ;Move Z Axis up little to prevent scratching of Heat Bed\nG92 E0 ;Reset Extruder\nG1 Y3 F2400 ;Move to start position\nG1 X75 E40 F500 ;Draw a filament line\nG92 E0 ;Reset Extruder\n;G1 E-0.2 F3000 ;Retract a little\nG1 Z2.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X70 Y3 Z0.27 F3000 ;Quickly wipe away from the filament line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 105 }, + "material_bed_temperature": { "maximum_value": 60 }, + "material_print_temperature": { "maximum_value": 230 }, + "retraction_amount": { "value": 2 }, + "speed_print": + { + "maximum_value_warning": "200", + "value": 120 + }, + "speed_topbottom": + { + "maximum_value_warning": "200", + "value": 60 + }, + "speed_wall": + { + "maximum_value_warning": "200", + "value": 80 + }, + "speed_wall_0": + { + "maximum_value_warning": "200", + "value": 50 + }, + "speed_wall_x": + { + "maximum_value_warning": "200", + "value": 80 + } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_M1S.def.json b/resources/definitions/geeetech_M1S.def.json new file mode 100644 index 0000000000..79bfec5a89 --- /dev/null +++ b/resources/definitions/geeetech_M1S.def.json @@ -0,0 +1,59 @@ +{ + "version": 2, + "name": "Geeetech M1S", + "inherits": "Geeetech_Base_Single_Extruder", + "metadata": + { + "visible": true, + "machine_extruder_trains": { "0": "Geeetech_Single_Extruder" } + }, + "overrides": + { + "adhesion_type": { "value": "'brim'" }, + "brim_width": { "value": 2 }, + "gantry_height": { "value": 35 }, + "machine_depth": { "default_value": 105 }, + "machine_end_gcode": { "default_value": "G91 ;Switch to relative positioning\nG1 E-2.5 F2700 ;Retract filament\nG1 E-1.5 Z0.2 F2400 ;Retract and raise Z\nG1 X5 Y5 F3000 ;Move away\nG1 Z10 ;lift print head\nG90 ;Switch to absolute positioning\nG28 X Y ;homing XY\nM106 S0 ;off Fan\nM104 S0 ;Cooldown hotend\nM140 S0 ;Cooldown bed\nM84 X Y E ;Disable steppers" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-31, 31], + [34, 31], + [34, -40], + [-31, -40] + ] + }, + "machine_height": { "default_value": 95 }, + "machine_name": { "default_value": "Geeetech M1S" }, + "machine_start_gcode": { "default_value": ";Official wiki URL for Geeetech M1S:https://www.geeetech.com/wiki/index.php/Geeetech_M1S_3D_printer \nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM140 S{material_bed_temperature_layer_0} ; Set Bed Temperature\n;M190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 ;Off Fan\nM300 S2500 P1000 ;Play a short tune\nG1 Z0.28 ;Move Z Axis up little to prevent scratching of Heat Bed\nG92 E0 ;Reset Extruder\nG1 Y3 F2400 ;Move to start position\nG1 X75 E40 F500 ;Draw a filament line\nG92 E0 ;Reset Extruder\n;G1 E-0.2 F3000 ;Retract a little\nG1 Z2.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X70 Y3 Z0.27 F3000 ;Quickly wipe away from the filament line\nG92 E0 ;Reset Extruder" }, + "machine_width": { "default_value": 105 }, + "material_bed_temperature": { "maximum_value": 85 }, + "material_print_temperature": { "maximum_value": 250 }, + "retraction_amount": { "value": 2 }, + "speed_print": + { + "maximum_value_warning": "200", + "value": 120 + }, + "speed_topbottom": + { + "maximum_value_warning": "200", + "value": 60 + }, + "speed_wall": + { + "maximum_value_warning": "200", + "value": 80 + }, + "speed_wall_0": + { + "maximum_value_warning": "200", + "value": 50 + }, + "speed_wall_x": + { + "maximum_value_warning": "200", + "value": 80 + } + } +} \ No newline at end of file diff --git a/resources/definitions/geeetech_Thunder.def.json b/resources/definitions/geeetech_Thunder.def.json index cc3e4044f8..cf0f9dd5e9 100644 --- a/resources/definitions/geeetech_Thunder.def.json +++ b/resources/definitions/geeetech_Thunder.def.json @@ -81,14 +81,10 @@ "machine_max_jerk_xy": { "value": 45 }, "machine_max_jerk_z": { "value": 0.8 }, "machine_name": { "default_value": "Geeetech Thunder" }, - "machine_start_gcode": { "default_value": ";Official viki homepage for Thunder:https://www.geeetech.com/wiki/index.php/Geeetech_Thunder_3D_printer \n\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, + "machine_start_gcode": { "default_value": ";Official wiki URL for Thunder:https://www.geeetech.com/wiki/index.php/Geeetech_Thunder_3D_printer \n\nM104 S{material_print_temperature_layer_0} ; Set Hotend Temperature\nM190 S{material_bed_temperature_layer_0} ; Wait for Bed Temperature\nM109 S{material_print_temperature_layer_0} ; Wait for Hotend Temperature\nG92 E0 ; Reset Extruder\nG28 ; Home all axes\nM107 P0 ;Off Main Fan\nM107 P1 ;Off Aux Fan\nM2012 P8 S1 F100 ; ON Light\n;M106 P0 S383 ; ON MainFan 150% if need\n;M106 P1 S255 ; ON Aux Fan 100% if need\nG1 Z5.0 F3000 ;Move Z Axis up little to prevent scratching of Heat Bed\nG1 X0.1 Y20 Z0.8 F5000 ; Move to start position\nG1 X0.1 Y200.0 Z1.2 F1500 E30 ; Draw the first line\nG92 E0 ; Reset Extruder\nG1 X0.4 Y200.0 Z1.2 F3000 ; Move to side a little\nG1 X0.4 Y20 Z1.2 F1500 E25 ; Draw the second line\nG92 E0 ; Reset Extruder\nG1 Z2.0 F3000 ; Move Z Axis up little to prevent scratching of Heat Bed\nG1 X5 Y20 Z0.4 F3000.0 ; Scrape off nozzle residue" }, "machine_width": { "default_value": 250 }, "material_flow_layer_0": { "value": 95 }, - "material_print_temperature": - { - "maximum_value": "250", - "value": "200 if speed_infill <=150 else 205 if speed_infill <= 200 else 215 if speed_infill <= 260 else 220" - }, + "material_print_temperature": { "maximum_value": "250" }, "material_print_temperature_layer_0": { "maximum_value_warning": 300, diff --git a/resources/definitions/gutenberg_base.def.json b/resources/definitions/gutenberg_base.def.json index f0329bef6d..335718c21a 100644 --- a/resources/definitions/gutenberg_base.def.json +++ b/resources/definitions/gutenberg_base.def.json @@ -109,7 +109,12 @@ "travel_avoid_other_parts": { "default_value": false }, "wall_line_width": { "value": "machine_nozzle_size" }, "wall_overhang_angle": { "default_value": 75 }, - "wall_overhang_speed_factor": { "default_value": 50 }, + "wall_overhang_speed_factors": + { + "default_value": [ + 50 + ] + }, "zig_zaggify_infill": { "value": true } } } \ No newline at end of file diff --git a/resources/definitions/hellbot_adonis.def.json b/resources/definitions/hellbot_adonis.def.json index 8f797dc668..2a7022e7c1 100644 --- a/resources/definitions/hellbot_adonis.def.json +++ b/resources/definitions/hellbot_adonis.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_adonis.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_adonis_extruder" }, "platform_offset": [ 0, diff --git a/resources/definitions/hellbot_hidra.def.json b/resources/definitions/hellbot_hidra.def.json index 810f308a19..bf8eb16608 100644 --- a/resources/definitions/hellbot_hidra.def.json +++ b/resources/definitions/hellbot_hidra.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_hidra.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_hidra_extruder_0", @@ -20,7 +21,7 @@ 0, 5 ], - "platform_texture": "hellbot_hidra.png" + "platform_texture": "Hellbot_Hidra_and_Hidra_Plus_V2.png" }, "overrides": { diff --git a/resources/definitions/hellbot_hidra_plus.def.json b/resources/definitions/hellbot_hidra_plus.def.json index 60654b9dec..70938b5b00 100644 --- a/resources/definitions/hellbot_hidra_plus.def.json +++ b/resources/definitions/hellbot_hidra_plus.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_hidra_plus.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_hidra_plus_extruder_0", @@ -20,7 +21,7 @@ 0, 5 ], - "platform_texture": "hellbot_hidra_plus.png" + "platform_texture": "Hellbot_Hidra_and_Hidra_Plus_V2.png" }, "overrides": { diff --git a/resources/definitions/hellbot_magna_2_230.def.json b/resources/definitions/hellbot_magna_2_230.def.json index 10be0b79fc..c2e200b100 100644 --- a/resources/definitions/hellbot_magna_2_230.def.json +++ b/resources/definitions/hellbot_magna_2_230.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_230.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_230_extruder_0" }, "platform_texture": "Magna2_230.png" }, diff --git a/resources/definitions/hellbot_magna_2_230_dual.def.json b/resources/definitions/hellbot_magna_2_230_dual.def.json index 31501cbea1..3ba073d89b 100644 --- a/resources/definitions/hellbot_magna_2_230_dual.def.json +++ b/resources/definitions/hellbot_magna_2_230_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_230.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_230_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_300.def.json b/resources/definitions/hellbot_magna_2_300.def.json index 3fd09e49f3..565119e31f 100644 --- a/resources/definitions/hellbot_magna_2_300.def.json +++ b/resources/definitions/hellbot_magna_2_300.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_300.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_300_extruder_0" }, "platform_texture": "Magna2_300.png" }, diff --git a/resources/definitions/hellbot_magna_2_300_dual.def.json b/resources/definitions/hellbot_magna_2_300_dual.def.json index 11d98cf150..9e0e72f145 100644 --- a/resources/definitions/hellbot_magna_2_300_dual.def.json +++ b/resources/definitions/hellbot_magna_2_300_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_300.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_300_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_400.def.json b/resources/definitions/hellbot_magna_2_400.def.json index c27273c67b..8bc7c21811 100644 --- a/resources/definitions/hellbot_magna_2_400.def.json +++ b/resources/definitions/hellbot_magna_2_400.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_400.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_400_extruder_0" }, "platform_texture": "Magna2_400.png" }, diff --git a/resources/definitions/hellbot_magna_2_400_dual.def.json b/resources/definitions/hellbot_magna_2_400_dual.def.json index 560bd800b4..00f10c1117 100644 --- a/resources/definitions/hellbot_magna_2_400_dual.def.json +++ b/resources/definitions/hellbot_magna_2_400_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_400.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_400_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_2_500.def.json b/resources/definitions/hellbot_magna_2_500.def.json index d718fd3635..fe83fab70a 100644 --- a/resources/definitions/hellbot_magna_2_500.def.json +++ b/resources/definitions/hellbot_magna_2_500.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_500.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_500_extruder_0" }, "platform_texture": "Magna2_500.png" }, diff --git a/resources/definitions/hellbot_magna_2_500_dual.def.json b/resources/definitions/hellbot_magna_2_500_dual.def.json index cb5e8b94be..a8f6fc5b37 100644 --- a/resources/definitions/hellbot_magna_2_500_dual.def.json +++ b/resources/definitions/hellbot_magna_2_500_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_2_500.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_2_500_dual_extruder_0", diff --git a/resources/definitions/hellbot_magna_I.def.json b/resources/definitions/hellbot_magna_I.def.json index 263a182ebc..7425aa3db4 100644 --- a/resources/definitions/hellbot_magna_I.def.json +++ b/resources/definitions/hellbot_magna_I.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_magna.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_i_extruder" }, "platform_offset": [ 0, diff --git a/resources/definitions/hellbot_magna_SE.def.json b/resources/definitions/hellbot_magna_SE.def.json index 0c010151e6..0248b0caf2 100644 --- a/resources/definitions/hellbot_magna_SE.def.json +++ b/resources/definitions/hellbot_magna_SE.def.json @@ -8,10 +8,11 @@ "author": "Hellbot Development Team", "manufacturer": "Hellbot", "file_formats": "text/x-gcode", - "platform": "hellbot_magna_SE.obj", + "platform": "Hellbot_Magna_SE.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_SE_extruder" }, - "platform_texture": "hellbot_magna_SE.png" + "platform_texture": "Hellbot_Magna_SE.png" }, "overrides": { diff --git a/resources/definitions/hellbot_magna_SE_300.def.json b/resources/definitions/hellbot_magna_SE_300.def.json index bc60eb3aa7..bb83df4a37 100644 --- a/resources/definitions/hellbot_magna_SE_300.def.json +++ b/resources/definitions/hellbot_magna_SE_300.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_SE_300.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_SE_300_extruder" }, "platform_texture": "Hellbot_Magna_SE_300.png" }, diff --git a/resources/definitions/hellbot_magna_SE_Pro.def.json b/resources/definitions/hellbot_magna_SE_Pro.def.json index 65f32c2aab..cb13626121 100644 --- a/resources/definitions/hellbot_magna_SE_Pro.def.json +++ b/resources/definitions/hellbot_magna_SE_Pro.def.json @@ -10,8 +10,9 @@ "file_formats": "text/x-gcode", "platform": "Hellbot_Magna_SE_Pro.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_SE_Pro_extruder" }, - "platform_texture": "Hellbot_magna_SE_Pro.png" + "platform_texture": "Hellbot_Magna_SE_Pro.png" }, "overrides": { diff --git a/resources/definitions/hellbot_magna_dual.def.json b/resources/definitions/hellbot_magna_dual.def.json index e41fcb7cce..9488ec2a43 100644 --- a/resources/definitions/hellbot_magna_dual.def.json +++ b/resources/definitions/hellbot_magna_dual.def.json @@ -10,6 +10,7 @@ "file_formats": "text/x-gcode", "platform": "hellbot_magna.obj", "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "hellbot_magna_dual_extruder_1", diff --git a/resources/definitions/inat_base.def.json b/resources/definitions/inat_base.def.json index 1d95bbbde4..5bd5258d5a 100644 --- a/resources/definitions/inat_base.def.json +++ b/resources/definitions/inat_base.def.json @@ -16,7 +16,8 @@ "preferred_material": "generic_pla", "preferred_quality_type": "standard", "preferred_variant_name": "0.4mm", - "variants_name": "Extruder:" + "variants_name": "Extruder", + "variants_name_has_translation": true }, "overrides": { diff --git a/resources/definitions/koonovo_base.def.json b/resources/definitions/koonovo_base.def.json index f46c39ec1e..d194902e5c 100644 --- a/resources/definitions/koonovo_base.def.json +++ b/resources/definitions/koonovo_base.def.json @@ -12,6 +12,7 @@ "first_start_actions": [ "MachineSettingsAction" ], "has_machine_quality": true, "has_materials": true, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "koonovo_base_extruder_0" }, "platform_texture": "koonovo.png", "preferred_material": "generic_pla", diff --git a/resources/definitions/lotmaxx_sc60.def.json b/resources/definitions/lotmaxx_sc60.def.json index f4ce358be1..f283e56442 100644 --- a/resources/definitions/lotmaxx_sc60.def.json +++ b/resources/definitions/lotmaxx_sc60.def.json @@ -61,7 +61,12 @@ "support_pattern": { "default_value": "lines" }, "switch_extruder_retraction_amount": { "value": 100 }, "switch_extruder_retraction_speeds": { "value": 60 }, - "wall_overhang_speed_factor": { "value": 50 }, + "wall_overhang_speed_factors": + { + "value": [ + 50 + ] + }, "z_seam_corner": { "default_value": "z_seam_corner_any" }, "z_seam_relative": { "value": true }, "z_seam_type": { "default_value": "sharpest_corner" }, diff --git a/resources/definitions/maker_starter.def.json b/resources/definitions/maker_starter.def.json index e654ee0915..5e5f9dcb5b 100644 --- a/resources/definitions/maker_starter.def.json +++ b/resources/definitions/maker_starter.def.json @@ -27,7 +27,6 @@ "machine_heated_bed": { "default_value": false }, "machine_height": { "default_value": 200 }, "machine_name": { "default_value": "3DMaker Starter" }, - "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_tip_outer_diameter": { "default_value": 1 }, "machine_width": { "default_value": 210 }, "raft_airgap": { "default_value": 0.2 }, diff --git a/resources/definitions/mendel90.def.json b/resources/definitions/mendel90.def.json index 57e1276e6a..d8619fe276 100644 --- a/resources/definitions/mendel90.def.json +++ b/resources/definitions/mendel90.def.json @@ -37,7 +37,6 @@ "machine_heated_bed": { "default_value": true }, "machine_height": { "default_value": 200 }, "machine_name": { "default_value": "Mendel90" }, - "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_tip_outer_diameter": { "default_value": 1 }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;absolute extrusion\nM107 ;start with the fan off\nG28 ;home\nG92 E0 ;zero the extruded length\nM140 S{material_bed_temperature_layer_0} ; set the bed temperature and continue on\nG1 X-50 Y98 F9000 ;go to the left of the top\nG1 Z0.05 ; close to the bed\nM104 S{material_print_temperature_layer_0}; pre-heat the extruder continue on\nM190 S{material_bed_temperature_layer_0} ;set the bed temp & wait\nM109 S{material_print_temperature_layer_0};set the extruder temp for layer 0 & wait\nG92 E0 ;zero the extruded length\nG1 X50 E10 F300 ; make a thick line to prime extruder\nG92 E0 ; reset extruder\nG1 E-4 F1800\nG1 Z0.3 ;lift Z\n" }, "machine_width": { "default_value": 200 }, diff --git a/resources/definitions/peopoly_moai.def.json b/resources/definitions/peopoly_moai.def.json index 9ce1438fe3..20d3bafa0a 100644 --- a/resources/definitions/peopoly_moai.def.json +++ b/resources/definitions/peopoly_moai.def.json @@ -11,6 +11,7 @@ "platform": "moai.obj", "has_machine_quality": true, "has_materials": false, + "has_textured_buildplate": true, "machine_extruder_trains": { "0": "peopoly_moai_extruder_0" }, "platform_texture": "moai.jpg" }, diff --git a/resources/definitions/snakeoil_standard_base.def.json b/resources/definitions/snakeoil_standard_base.def.json index 700edf3d35..16bec69636 100644 --- a/resources/definitions/snakeoil_standard_base.def.json +++ b/resources/definitions/snakeoil_standard_base.def.json @@ -109,7 +109,12 @@ "travel_avoid_other_parts": { "default_value": false }, "wall_line_width": { "value": "machine_nozzle_size" }, "wall_overhang_angle": { "default_value": 75 }, - "wall_overhang_speed_factor": { "default_value": 50 }, + "wall_overhang_speed_factors": + { + "default_value": [ + 50 + ] + }, "zig_zaggify_infill": { "value": true } } } \ No newline at end of file diff --git a/resources/definitions/sovol_base_bowden.def.json b/resources/definitions/sovol_base_bowden.def.json index 670b24fffc..0f389a25f8 100644 --- a/resources/definitions/sovol_base_bowden.def.json +++ b/resources/definitions/sovol_base_bowden.def.json @@ -10,6 +10,6 @@ "overrides": { "retraction_amount": { "default_value": 5 }, - "retraction_speed": { "value": "machine_max_feedrate_e" } + "retraction_speed": { "value": "resolveOrValue('machine_max_feedrate_e')" } } } \ No newline at end of file diff --git a/resources/definitions/sovol_sv01.def.json b/resources/definitions/sovol_sv01.def.json index 9d77c1c3f6..5c87d8124e 100644 --- a/resources/definitions/sovol_sv01.def.json +++ b/resources/definitions/sovol_sv01.def.json @@ -1,11 +1,11 @@ { "version": 2, "name": "Sovol SV01", - "inherits": "sovol_base_bowden", + "inherits": "sovol_base_titan", "metadata": { "visible": true, - "quality_definition": "sovol_base_bowden" + "quality_definition": "sovol_base_titan" }, "overrides": { diff --git a/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json b/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json index c013c49e05..4876738f6e 100644 --- a/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json +++ b/resources/definitions/structur3d_discov3ry1_complete_um2plus.def.json @@ -25,7 +25,7 @@ "preferred_quality_type": "extra_fast", "preferred_variant_name": "0.84mm (Green)", "supported_actions": [], - "variants_name": "Print core" + "variants_name": "Print Core" }, "overrides": { @@ -78,7 +78,6 @@ "machine_heat_zone_length": { "default_value": 20 }, "machine_height": { "default_value": 205 }, "machine_name": { "default_value": "Discov3ry Complete (Ultimaker 2+)" }, - "machine_nozzle_head_distance": { "default_value": 5 }, "machine_show_variants": { "default_value": true }, "machine_start_gcode": { "default_value": "\n;Updated Firmware (.hex and Marlin .ino) for \n;Ultimaker 2+ with Discov3ry Extruder available at: \n;https://github.com/Structur3d/UM2.1Discov3ry-Firmware-beta \n;**Learn more at https://www.structur3d.io** \n \nM104 S{material_print_temperature} ;Start heating extruder \nM140 S{material_bed_temperature} ;Start heating bed \nG21 ;metric values \nG90 ;absolute positioning \nM82 ;set extruder to absolute mode \nM107 ;start with the fan off \nM302 ;allow cold extrusion \nM92 E2589 ;set extruder EEPROM steps/mm for paste \nG28 Z0 ;move Z to bottom endstops \nG28 X0 Y0 ;move X/Y to endstops \nG1 X15 Y0 F4000 ;move X/Y to front of printer \nG1 Z15.0 F9000 ;move the platform to 15mm \nG92 E0 ;zero the extruded length \nG1 F200 E10 ;extrude 10 mm of feed stock \nG92 E0 ;zero the extruded length again \nG1 F9000 \n;Put printing message on LCD screen \nM117 Printing..." }, "machine_width": { "default_value": 205 }, diff --git a/resources/definitions/tam.def.json b/resources/definitions/tam.def.json index 84bbc9c8fb..01437cebe7 100644 --- a/resources/definitions/tam.def.json +++ b/resources/definitions/tam.def.json @@ -44,7 +44,6 @@ "machine_max_acceleration_y": { "default_value": 6000 }, "machine_max_acceleration_z": { "default_value": 12000 }, "machine_name": { "default_value": "TypeAMachines" }, - "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_tip_outer_diameter": { "default_value": 1 }, "machine_start_gcode": { "default_value": ";-- START GCODE --\n;Sliced for Type A Machines Series 1\n;Sliced at: {day} {date} {time}\n;Basic settings:\n;Layer height: {layer_height}\n;Walls: {wall_thickness}\n;Fill: {fill_distance}\n;Print Speed: {print_speed}\n;Support: {support}\n;Retraction Speed: {retraction_speed}\n;Retraction Distance: {retraction_amount}\n;Print time: {print_time}\n;Filament used: {filament_amount}m {filament_weight}g\n;Settings based on: {material_profile}\nG21 ;metric values\nG90 ;absolute positioning\nG28 ;move to endstops\nG29 ;allows for auto-levelling\nG1 Z15.0 F12000 ;move the platform down 15mm\nG1 X150 Y5 F9000 ;center\nM140 S{material_bed_temperature} ;Prep Heat Bed\nM109 S{default_material_print_temperature} ;Heat To temp\nM190 S{material_bed_temperature} ;Heat Bed to temp\nG1 X150 Y5 Z0.3 ;move the platform to purge extrusion\nG92 E0 ;zero the extruded length\nG1 F200 X250 E30 ;extrude 30mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 X150 Y150 Z25 F12000 ;recenter and begin\nG1 F9000" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, diff --git a/resources/definitions/toybox_alpha_one_two.def.json b/resources/definitions/toybox_alpha_one_two.def.json new file mode 100644 index 0000000000..6dc32a5fa7 --- /dev/null +++ b/resources/definitions/toybox_alpha_one_two.def.json @@ -0,0 +1,25 @@ +{ + "version": 2, + "name": "Toybox Alpha One/Two", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "lukbrew25", + "manufacturer": "Toybox", + "file_formats": "text/x-gcode", + "has_machine_quality": false, + "machine_extruder_trains": { "0": "toybox_alpha_one_two_extruder_0" } + }, + "overrides": + { + "gantry_height": { "value": "0.0" }, + "machine_depth": { "default_value": 80 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_height": { "default_value": 90 }, + "machine_name": { "default_value": "Toybox Alpha One/Two" }, + "machine_start_gcode": { "default_value": "G90\nM82" }, + "machine_width": { "default_value": 70 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker.def.json b/resources/definitions/ultimaker.def.json index 918db0d0ea..d8fdd7eede 100644 --- a/resources/definitions/ultimaker.def.json +++ b/resources/definitions/ultimaker.def.json @@ -42,42 +42,129 @@ "cool_min_layer_time_fan_speed_max": { "value": "cool_min_layer_time + 5" }, "cool_min_speed": { "value": "round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5)" }, "cool_min_temperature": { "value": "max([material_final_print_temperature, material_initial_print_temperature, material_print_temperature - 15])" }, + "extra_infill_lines_to_support_skins": { "value": "'none'" }, "gradual_support_infill_step_height": { "value": "4 * layer_height" }, "gradual_support_infill_steps": { "value": "2 if support_interface_enable and support_structure != 'tree' else 0" }, "infill_material_flow": { "value": "(1.95-infill_sparse_density / 100 if infill_sparse_density > 95 else 1) * material_flow" }, "infill_overlap": { "value": "0 if infill_sparse_density > 80 else 10" }, "inset_direction": { "value": "'outside_in'" }, - "jerk_infill": { "minimum_value_warning": 20 }, - "jerk_prime_tower": { "minimum_value_warning": 20 }, + "jerk_flooring": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_infill": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_layer_0": { "minimum_value": 1 }, + "jerk_prime_tower": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, "jerk_print": { + "minimum_value": 1, "minimum_value_warning": 20, "value": "20" }, - "jerk_print_layer_0": { "value": "max(20, jerk_wall_0)" }, - "jerk_roofing": { "minimum_value_warning": 20 }, - "jerk_support": { "minimum_value_warning": 20 }, - "jerk_support_infill": { "minimum_value_warning": 20 }, - "jerk_support_interface": { "minimum_value_warning": 20 }, - "jerk_topbottom": { "minimum_value_warning": 20 }, - "jerk_travel": { "value": "jerk_print" }, + "jerk_print_layer_0": + { + "minimum_value": 1, + "value": "max(20, jerk_wall_0)" + }, + "jerk_roofing": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_skirt_brim": { "minimum_value": 1 }, + "jerk_support": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_support_bottom": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_support_infill": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_support_interface": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_support_roof": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_topbottom": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_travel": + { + "minimum_value": 1, + "value": "jerk_print" + }, "jerk_travel_enabled": { "value": false }, - "jerk_wall": { "minimum_value_warning": 20 }, - "jerk_wall_0": { "minimum_value_warning": 20 }, + "jerk_travel_layer_0": { "minimum_value": 1 }, + "jerk_wall": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_wall_0": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_wall_0_flooring": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_wall_0_roofing": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_wall_x": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_wall_x_flooring": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, + "jerk_wall_x_roofing": + { + "minimum_value": 1, + "minimum_value_warning": 20 + }, "layer_height": { "value": 0.15 }, "layer_height_0": { "value": "max(0.2, layer_height)" }, "line_width": { "value": "machine_nozzle_size" }, "machine_max_feedrate_e": { "default_value": 45 }, "material_bed_temperature": { - "maximum_value": "140", - "maximum_value_warning": "120", + "maximum_value": "120", "minimum_value": "0" }, "material_bed_temperature_layer_0": { - "maximum_value": "140", - "maximum_value_warning": "120", + "maximum_value": "120", "minimum_value": "0" }, "material_print_temp_wait": { "value": false }, @@ -85,7 +172,7 @@ "material_standby_temperature": { "minimum_value": "0", - "value": "material_print_temperature - 100" + "value": "resolveOrValue('material_print_temperature') - 100" }, "meshfix_maximum_deviation": { "value": "machine_nozzle_size / 10" }, "meshfix_maximum_resolution": { "value": "max(speed_wall_0 / 75, 0.5)" }, @@ -129,7 +216,6 @@ "support_line_distance": { "minimum_value_warning": "0 if support_structure == 'tree' else support_line_width" }, "support_tower_maximum_supported_diameter": { "value": "support_tower_diameter" }, "support_tower_roof_angle": { "value": "0 if support_interface_enable else 65" }, - "support_use_towers": { "value": false }, "support_wall_count": { "value": "1 if support_structure == 'tree' else 0" }, "support_xy_distance_overhang": { "value": "0.2" }, "support_z_distance": { "value": "0" }, @@ -139,7 +225,8 @@ "wall_x_material_flow_layer_0": { "value": "0.95 * material_flow_layer_0" }, "xy_offset": { "value": "-layer_height * 0.1" }, "xy_offset_layer_0": { "value": "-wall_line_width_0 / 5 + xy_offset" }, - "z_seam_corner": { "value": "'z_seam_corner_none'" }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_relative": { "value": "True" }, "zig_zaggify_support": { "value": true } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker2.def.json b/resources/definitions/ultimaker2.def.json index 8c0e066cd1..4564e4ba72 100644 --- a/resources/definitions/ultimaker2.def.json +++ b/resources/definitions/ultimaker2.def.json @@ -26,7 +26,9 @@ "ultimaker_petcf", "ultimaker_petg", "ultimaker_pva", - "ultimaker_tough_pla" + "ultimaker_tough_pla", + "generic_cffpps", + "ultimaker_ppscf" ], "firmware_file": "MarlinUltimaker2.hex", "has_machine_quality": true, @@ -95,7 +97,6 @@ "machine_max_feedrate_y": { "default_value": 300 }, "machine_max_feedrate_z": { "default_value": 40 }, "machine_name": { "default_value": "Ultimaker 2" }, - "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_tip_outer_diameter": { "default_value": 1 }, "machine_start_gcode": { "value": "\"G0 F3000 Y50 ;avoid prime blob\" if machine_gcode_flavor == \"UltiGCode\" else \"G21 ;metric values\\nG90 ;absolute positioning\\nM82 ;set extruder to absolute mode\\nM107 ;start with the fan off\\nG28 Z0 ;move Z to bottom endstops\\nG28 X0 Y0 ;move X/Y to endstops\\nG1 X15 Y0 F4000 ;move X/Y to front of printer\\nG1 Z15.0 F9000 ;move the platform to 15mm\\nG92 E0 ;zero the extruded length\\nG1 F200 E10 ;extrude 10 mm of feed stock\\nG92 E0 ;zero the extruded length again\\nG1 Y50 F9000\\n;Put printing message on LCD screen\\nM117 Printing...\"" }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, diff --git a/resources/definitions/ultimaker2_plus.def.json b/resources/definitions/ultimaker2_plus.def.json index b5ad30bb8d..c06d8b1e68 100644 --- a/resources/definitions/ultimaker2_plus.def.json +++ b/resources/definitions/ultimaker2_plus.def.json @@ -83,7 +83,6 @@ "machine_heat_zone_length": { "default_value": 20 }, "machine_height": { "default_value": 205 }, "machine_name": { "default_value": "Ultimaker 2+" }, - "machine_nozzle_head_distance": { "default_value": 5 }, "machine_show_variants": { "default_value": true }, "speed_infill": { "value": "speed_print" }, "speed_support": { "value": "speed_wall_0" }, diff --git a/resources/definitions/ultimaker2_plus_connect.def.json b/resources/definitions/ultimaker2_plus_connect.def.json index 8aae2d4c19..6cdd3e9705 100644 --- a/resources/definitions/ultimaker2_plus_connect.def.json +++ b/resources/definitions/ultimaker2_plus_connect.def.json @@ -92,7 +92,6 @@ "machine_heat_zone_length": { "default_value": 20 }, "machine_height": { "default_value": 205 }, "machine_name": { "default_value": "Ultimaker 2+ Connect" }, - "machine_nozzle_head_distance": { "default_value": 5 }, "machine_show_variants": { "default_value": true }, "machine_start_gcode": { "value": "''" }, "machine_width": { "default_value": 223 }, diff --git a/resources/definitions/ultimaker3.def.json b/resources/definitions/ultimaker3.def.json index 9b732aa421..fb8b876fb5 100644 --- a/resources/definitions/ultimaker3.def.json +++ b/resources/definitions/ultimaker3.def.json @@ -21,7 +21,9 @@ "generic_hips", "generic_petcf", "structur3d_", - "ultimaker_petcf" + "ultimaker_petcf", + "generic_cffpps", + "ultimaker_ppscf" ], "firmware_update_info": { @@ -49,7 +51,8 @@ "supported_actions": [ "DiscoverUM3Action" ], "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core" + "variants_name": "Print Core", + "variants_name_has_translation": true }, "overrides": { diff --git a/resources/definitions/ultimaker3_extended.def.json b/resources/definitions/ultimaker3_extended.def.json index 5afbbce1da..bdfd5f93a5 100644 --- a/resources/definitions/ultimaker3_extended.def.json +++ b/resources/definitions/ultimaker3_extended.def.json @@ -36,7 +36,8 @@ "preferred_variant_name": "AA 0.4", "quality_definition": "ultimaker3", "supported_actions": [ "DiscoverUM3Action" ], - "variants_name": "Print core" + "variants_name": "Print Core", + "variants_name_has_translation": true }, "overrides": { diff --git a/resources/definitions/ultimaker_factor4.def.json b/resources/definitions/ultimaker_factor4.def.json index 573b26cf50..710ee29a40 100644 --- a/resources/definitions/ultimaker_factor4.def.json +++ b/resources/definitions/ultimaker_factor4.def.json @@ -39,10 +39,12 @@ "preferred_quality_type": "draft", "preferred_variant_name": "AA 0.4", "supported_actions": [ "DiscoverUM3Action" ], + "supports_abstract_color": true, "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -1 }, "overrides": @@ -112,10 +114,10 @@ "machine_head_with_fans_polygon": { "default_value": [ - [-30, -80], - [-30, 20], - [50, 20], - [50, -80] + [-35, -80], + [-35, 30], + [55, 30], + [55, -80] ] }, "machine_heated_bed": { "default_value": true }, diff --git a/resources/definitions/ultimaker_method.def.json b/resources/definitions/ultimaker_method.def.json index 90c3a0ae2f..d2813ea8a3 100644 --- a/resources/definitions/ultimaker_method.def.json +++ b/resources/definitions/ultimaker_method.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -23,19 +24,7 @@ "fabtotum_", "fdplast_", "filo3d_", - "generic_asa_175", - "generic_abs_175", - "generic_bvoh_175", - "generic_petg_175", - "generic_pla_175", - "generic_tough_pla_175", - "generic_pva_175", - "generic_cffpa_175", - "generic_cpe_175", - "generic_nylon_175", - "generic_hips_175", - "generic_pc_175", - "generic_tpu_175", + "generic_", "goofoo_", "ideagen3D_", "imade3d_", @@ -44,6 +33,7 @@ "leapfrog_", "polyflex_pla", "polymax_pla", + "polymaker_polymax_pc_175", "polyplus_pla", "polywood_pla", "redd_", @@ -53,23 +43,25 @@ "ultimaker_absr_175", "ultimaker_abscf_175", "ultimaker_bvoh_175", - "ultimaker_petg_175", "ultimaker_cffpa_175", "ultimaker_cpe_175", "ultimaker_nylon_175", "ultimaker_hips_175", "ultimaker_pc_175", "ultimaker_tpu_175", - "ultimaker_tough_pla_175", "ultimaker_rapidrinse_175", "ultimaker_sr30", + "ultimaker_metallic_pla_175", "verbatim_", "Vertex_", "volumic_", "xyzprinting_", "zyyx_pro_", "octofiber_", - "fiberlogy_" + "fiberlogy_", + "ultimaker_pc-abs", + "ultimaker_pc-abs-fr", + "ultimaker_metallic_pla_175" ], "has_machine_materials": true, "has_machine_quality": true, @@ -93,43 +85,13 @@ "supports_usb_connection": false, "variant_definition": "ultimaker_method", "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": { - "machine_depth": { "default_value": 236.48 }, - "machine_disallowed_areas": - { - "default_value": [ - [ - [-141.65, -118.11], - [141.65, -118.11], - [141.65, -94], - [-141.65, -94] - ], - [ - [-141.65, 118.37], - [141.65, 118.37], - [141.65, 94], - [-141.65, 94] - ], - [ - [-141.65, -118.11], - [-75, -118.11], - [-75, 118.37], - [-141.65, 118.37] - ], - [ - [75, -118.11], - [141.65, -118.11], - [141.65, 118.37], - [75, 118.37] - ] - ] - }, - "machine_height": { "default_value": 196 }, + "build_volume_temperature": { "maximum_value": "67" }, "machine_name": { "default_value": "UltiMaker Method" }, - "machine_width": { "default_value": 283.3 }, "prime_tower_position_x": { "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, "prime_tower_position_y": { "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" } } diff --git a/resources/definitions/ultimaker_method_base.def.json b/resources/definitions/ultimaker_method_base.def.json index 831f74bbaa..e421b20529 100644 --- a/resources/definitions/ultimaker_method_base.def.json +++ b/resources/definitions/ultimaker_method_base.def.json @@ -9,42 +9,7 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_platform.stl", - "exclude_materials": [ - "dsm_", - "Essentium_", - "imade3d_", - "chromatik_", - "3D-Fuel_", - "bestfilament_", - "emotiontech_", - "eryone_", - "eSUN_", - "Extrudr_", - "fabtotum_", - "fdplast_", - "filo3d_", - "generic_", - "ultimaker_rapidrinse_175", - "goofoo_", - "ideagen3D_", - "imade3d_", - "innofill_", - "layer_one_", - "leapfrog_", - "polyflex_pla", - "polymax_pla", - "polyplus_pla", - "polywood_pla", - "redd_", - "tizyx_", - "verbatim_", - "Vertex_", - "volumic_", - "xyzprinting_", - "zyyx_pro_", - "octofiber_", - "fiberlogy_" - ], + "exclude_materials": [], "has_machine_materials": true, "has_machine_quality": true, "has_materials": true, @@ -61,18 +26,22 @@ "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": { "acceleration_enabled": { - "enabled": false, + "enabled": true, "value": true }, "acceleration_infill": { "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, "value": "acceleration_print" }, "acceleration_layer_0": @@ -83,11 +52,17 @@ "acceleration_prime_tower": { "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, "value": "acceleration_print" }, "acceleration_print": { "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, "value": 800 }, "acceleration_print_layer_0": @@ -98,32 +73,52 @@ "acceleration_roofing": { "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, "value": "acceleration_print" }, + "acceleration_skirt_brim": + { + "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, + "value": 800 + }, "acceleration_support": { "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, "value": "acceleration_print" }, "acceleration_support_bottom": { "enabled": false, - "value": "acceleration_print" + "value": "acceleration_support_interface" }, "acceleration_support_infill": { "enabled": false, - "value": "acceleration_print" + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, + "value": "acceleration_support" }, "acceleration_support_interface": { "enabled": false, - "value": "acceleration_print" + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, + "value": "acceleration_support" }, "acceleration_support_roof": { "enabled": false, - "value": "acceleration_print" + "value": "acceleration_support_interface" }, "acceleration_topbottom": { @@ -133,6 +128,9 @@ "acceleration_travel": { "enabled": false, + "maximum_value": 5000, + "minimum_value": 200, + "minimum_value_warning": 750, "value": 5000 }, "acceleration_travel_enabled": @@ -148,35 +146,50 @@ "acceleration_wall": { "enabled": false, + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, "value": "acceleration_print" }, "acceleration_wall_0": { "enabled": false, - "value": "acceleration_print" + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, + "value": "acceleration_wall" }, "acceleration_wall_0_roofing": { "enabled": false, - "value": "acceleration_print" + "value": "acceleration_wall" }, "acceleration_wall_x": { "enabled": false, - "value": "acceleration_print" + "maximum_value": 3500, + "minimum_value": 200, + "minimum_value_warning": 750, + "value": "acceleration_wall" }, "acceleration_wall_x_roofing": { "enabled": false, - "value": "acceleration_print" + "value": "acceleration_wall" + }, + "adhesion_extruder_nr": + { + "enabled": false, + "value": "min(extruderValues('extruder_nr'))" }, - "adhesion_extruder_nr": { "value": 0 }, "adhesion_type": { "value": "'raft'" }, + "bottom_thickness": + { + "minimum_value_warning": 0.3, + "value": "top_bottom_thickness" + }, "bridge_enable_more_layers": { "value": true }, - "bridge_fan_speed": { "value": "cool_fan_speed_max" }, "bridge_fan_speed_2": { "value": "(cool_fan_speed_max + cool_fan_speed_min) / 2" }, - "bridge_fan_speed_3": { "value": "cool_fan_speed_min" }, - "bridge_settings_enabled": { "value": true }, "bridge_skin_density": { "value": 100 }, "bridge_skin_density_2": { "value": 100 }, "bridge_skin_density_3": { "value": 100 }, @@ -191,22 +204,55 @@ "bridge_wall_material_flow": { "value": "material_flow" }, "bridge_wall_speed": { "value": "speed_wall" }, "brim_width": { "value": 5 }, + "cool_during_extruder_switch": { "value": "'only_last_extruder'" }, + "cool_fan_enabled": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, + "cool_fan_full_at_height": { "value": "1 if resolveOrValue('adhesion_type') == 'raft' else layer_height + layer_height_0" }, + "cool_fan_full_layer": { "value": "1 if resolveOrValue('adhesion_type') == 'raft' else 3" }, + "default_material_bed_temperature": { "resolve": "min(extruderValues('default_material_bed_temperature'))" }, "extruder_prime_pos_abs": { "default_value": true }, "gradual_support_infill_steps": { "value": 0 }, + "group_outer_walls": { "value": false }, + "infill_angles": + { + "value": [ + 45, + 45, + 45, + 45, + 45, + 135, + 135, + 135, + 135, + 135 + ] + }, "infill_before_walls": { "value": false }, "infill_material_flow": { "value": "material_flow" }, "infill_overlap": { "value": 0 }, - "infill_pattern": { "value": "'grid' if infill_sparse_density < 80 else 'lines'" }, + "infill_pattern": { "value": "'zigzag'" }, "infill_wipe_dist": { "value": 0 }, + "initial_layer_line_width_factor": + { + "maximum_value": 350, + "maximum_value_warning": 320, + "value": "100 if resolveOrValue('adhesion_type') == 'raft' else 200" + }, "inset_direction": { "value": "'inside_out'" }, "jerk_enabled": { - "enabled": false, + "enabled": true, "value": true }, "jerk_infill": { - "enabled": false, + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, "jerk_layer_0": @@ -216,13 +262,19 @@ }, "jerk_prime_tower": { - "enabled": false, + "enabled": "jerk_enabled and prime_tower_enable and extruders_enabled_count > 1", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, "jerk_print": { - "enabled": false, - "value": 6.25 + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, + "value": 12.5 }, "jerk_print_layer_0": { @@ -231,33 +283,50 @@ }, "jerk_roofing": { - "enabled": false, + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, + "jerk_skirt_brim": + { + "enabled": "jerk_enabled and (adhesion_type == 'brim' or adhesion_type == 'skirt')", + "value": 12.5 + }, "jerk_support": { - "enabled": false, + "enabled": "jerk_enabled and support_enable", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, "jerk_support_bottom": { "enabled": false, - "value": "jerk_print" + "value": "jerk_support_interface" }, "jerk_support_infill": { - "enabled": false, - "value": "jerk_print" + "enabled": "jerk_enabled and support_enable", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, + "value": "jerk_support" }, "jerk_support_interface": { - "enabled": false, - "value": "jerk_print" + "enabled": "jerk_enabled and support_enable", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, + "value": "jerk_support" }, "jerk_support_roof": { "enabled": false, - "value": "jerk_print" + "value": "jerk_support_interface" }, "jerk_topbottom": { @@ -266,8 +335,11 @@ }, "jerk_travel": { - "enabled": false, - "value": "jerk_print" + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, + "value": 12.5 }, "jerk_travel_enabled": { @@ -281,12 +353,18 @@ }, "jerk_wall": { - "enabled": false, + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, "jerk_wall_0": { - "enabled": false, + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, "jerk_wall_0_roofing": @@ -296,7 +374,10 @@ }, "jerk_wall_x": { - "enabled": false, + "enabled": "jerk_enabled", + "maximum_value": 35, + "minimum_value": 5, + "minimum_value_warning": 12, "value": "jerk_print" }, "jerk_wall_x_roofing": @@ -304,22 +385,41 @@ "enabled": false, "value": "jerk_print" }, + "layer_height_0": { "value": "layer_height if resolveOrValue('adhesion_type') == 'raft' else layer_height * 1.25" }, "machine_acceleration": { "default_value": 3000 }, "machine_center_is_zero": { "value": true }, + "machine_depth": { "default_value": 236.48 }, + "machine_disallowed_areas": { "value": "[ [ [-141.65, -118.11], [141.65, -118.11], [141.65, -95.205], [-141.65, -95.205] ], [ [-141.65, 118.37], [141.65, 118.37], [141.65, 95.205], [-141.65, 95.205] ], [ [-141.65, -118.11], [-114.249, -118.11], [-114.249, 118.37], [-141.65, 118.37] ], [ [76.149, -118.11], [141.65, -118.11], [141.65, 118.37], [76.149, 118.37] ] ] if max(extruderValues('extruder_nr')) == 0 else [ [ [-141.65, -118.11], [141.65, -118.11], [141.65, -95.205], [-141.65, -95.205] ], [ [-141.65, 118.37], [141.65, 118.37], [141.65, 95.205], [-141.65, 95.205] ], [ [-141.65, -118.11], [-76.149, -118.11], [-76.149, 118.37], [-141.65, 118.37] ], [ [76.149, -118.11], [141.65, -118.11], [141.65, 118.37], [76.149, 118.37] ] ]" }, "machine_end_gcode": { "default_value": "" }, "machine_extruder_count": { "default_value": 2 }, "machine_gcode_flavor": { "default_value": "Griffin" }, "machine_heated_bed": { "default_value": false }, "machine_heated_build_volume": { "default_value": true }, - "machine_min_cool_heat_time_window": { "value": 15 }, + "machine_height": { "default_value": 196.749 }, + "machine_min_cool_heat_time_window": { "value": 0 }, "machine_name": { "default_value": "UltiMaker Method" }, "machine_nozzle_cool_down_speed": { "value": 0.8 }, "machine_nozzle_heat_up_speed": { "value": 3.5 }, "machine_scale_fan_speed_zero_to_one": { "value": true }, - "machine_start_gcode": { "default_value": "" }, + "machine_start_gcode": { "default_value": "G0 Z20" }, + "machine_width": { "default_value": 283.3 }, "material_bed_temperature": { "enabled": "machine_heated_bed" }, + "material_final_print_temperature": + { + "maximum_value": "material_print_temperature", + "minimum_value": "material_standby_temperature" + }, "material_flow": { "value": 100 }, - "material_initial_print_temperature": { "value": "material_print_temperature-10" }, + "material_initial_print_temperature": + { + "maximum_value": "material_print_temperature", + "minimum_value": "material_standby_temperature", + "value": "material_print_temperature-5" + }, + "material_print_temperature": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, "material_shrinkage_percentage": { "enabled": true }, "min_bead_width": { "value": "0.75*line_width" }, "min_wall_line_width": { "value": 0.4 }, @@ -327,97 +427,313 @@ "multiple_mesh_overlap": { "value": 0 }, "optimize_wall_printing_order": { "value": true }, "prime_blob_enable": { "enabled": false }, - "prime_tower_base_curve_magnitude": { "value": 2 }, - "prime_tower_base_height": { "value": 6 }, - "prime_tower_base_size": { "value": 10 }, - "prime_tower_enable": { "value": false }, + "prime_tower_enable": { "default_value": true }, "prime_tower_flow": { "value": "material_flow" }, - "prime_tower_line_width": { "value": 1 }, + "prime_tower_line_width": + { + "maximum_value": 2, + "maximum_value_warning": 1.5, + "value": 1 + }, + "prime_tower_mode": + { + "resolve": "'normal'", + "value": "'normal'" + }, "prime_tower_raft_base_line_spacing": { "value": "raft_base_line_width" }, "prime_tower_wipe_enabled": { "value": true }, "print_sequence": { "enabled": false }, + "raft_acceleration": { "enabled": false }, + "raft_airgap": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, + "raft_base_acceleration": { "enabled": false }, + "raft_base_extruder_nr": + { + "enabled": false, + "value": "min(extruderValues('extruder_nr'))" + }, "raft_base_fan_speed": { "value": 0 }, - "raft_base_line_spacing": { "value": "2*raft_base_line_width" }, - "raft_base_line_width": { "value": 1.4 }, - "raft_base_speed": { "value": 10 }, - "raft_base_thickness": { "value": 0.8 }, - "raft_interface_extruder_nr": { "value": "raft_surface_extruder_nr" }, + "raft_base_jerk": { "enabled": false }, + "raft_base_line_spacing": + { + "force_depends_on_settings": [ "raft_interface_extruder_nr" ], + "value": "2*raft_base_line_width" + }, + "raft_base_line_width": + { + "force_depends_on_settings": [ "raft_interface_extruder_nr" ], + "maximum_value": 2.5, + "maximum_value_warning": 1.8, + "value": 1.4 + }, + "raft_base_thickness": + { + "force_depends_on_settings": [ + "raft_interface_extruder_nr", + "support_extruder_nr" + ], + "value": 0.8 + }, + "raft_base_wall_count": { "value": "raft_wall_count" }, + "raft_interface_acceleration": { "enabled": false }, + "raft_interface_extruder_nr": { "value": "max(extruderValues('extruder_nr'))" }, "raft_interface_fan_speed": { "value": 0 }, + "raft_interface_infill_overlap": + { + "force_depends_on_settings": [ "raft_interface_extruder_nr" ] + }, + "raft_interface_infill_overlap_mm": { "maximum_value_warning": "2 * machine_nozzle_size" }, + "raft_interface_jerk": { "enabled": false }, "raft_interface_layers": { "value": 2 }, - "raft_interface_line_width": { "value": 0.7 }, - "raft_interface_speed": { "value": 90 }, + "raft_interface_line_spacing": + { + "force_depends_on_settings": [ + "raft_base_thickness", + "raft_interface_extruder_nr" + ], + "minimum_value_warning": "raft_interface_line_width * 0.8" + }, + "raft_interface_line_width": + { + "force_depends_on_settings": [ + "raft_base_thickness", + "raft_interface_extruder_nr" + ], + "value": 0.7 + }, + "raft_interface_speed": + { + "force_depends_on_settings": [ "support_extruder_nr" ], + "value": "raft_speed * 5" + }, "raft_interface_thickness": { "value": 0.3 }, "raft_interface_wall_count": { "value": "raft_wall_count" }, + "raft_interface_z_offset": + { + "force_depends_on_settings": [ + "raft_base_thickness", + "raft_interface_extruder_nr" + ] + }, + "raft_jerk": { "enabled": false }, "raft_margin": { "value": 1.2 }, "raft_smoothing": { "value": 9.5 }, - "raft_surface_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material')) if support_enable and extruderValue(support_extruder_nr,'material_is_support_material') else raft_base_extruder_nr" }, + "raft_speed": { "value": 10 }, + "raft_surface_acceleration": { "enabled": false }, + "raft_surface_extruder_nr": { "value": "max(extruderValues('extruder_nr'))" }, "raft_surface_fan_speed": { "value": 0 }, - "raft_surface_monotonic": { "value": true }, + "raft_surface_flow": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, + "raft_surface_jerk": { "enabled": false }, + "raft_surface_speed": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, + "raft_surface_thickness": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, "raft_surface_wall_count": { "value": "raft_wall_count" }, + "raft_surface_z_offset": + { + "force_depends_on_settings": [ "support_extruder_nr" ] + }, + "raft_wall_count": { "value": 2 }, "retract_at_layer_change": { "value": true }, "retraction_amount": { "value": 0.75 }, - "retraction_combing": { "value": "'off'" }, + "retraction_combing": + { + "enabled": false, + "value": "'off'" + }, "retraction_combing_max_distance": { "value": "speed_travel / 10" }, "retraction_count_max": { "value": 100 }, "retraction_extrusion_window": { "value": 0 }, "retraction_hop": { "value": 0.4 }, "retraction_hop_enabled": { "value": true }, "retraction_hop_only_when_collides": { "value": false }, - "retraction_min_travel": { "value": "0.6 if extruder_nr == support_extruder_nr else 5" }, + "retraction_min_travel": + { + "minimum_value_warning": "line_width * 1.25", + "value": 0.6 + }, "retraction_prime_speed": { "value": "retraction_speed" }, "retraction_speed": { "value": 5 }, - "roofing_layer_count": { "value": 2 }, - "roofing_material_flow": { "value": "material_flow" }, - "roofing_monotonic": { "value": true }, + "roofing_angles": + { + "value": [45, 135] + }, + "roofing_layer_count": + { + "maximum_value_warning": 10, + "minimum_value": 0, + "minimum_value_warning": 1, + "value": 2 + }, + "skin_angles": + { + "value": [0, 90] + }, "skin_material_flow": { "value": "material_flow" }, "skin_material_flow_layer_0": { "value": "material_flow" }, "skin_monotonic": { "value": true }, "skin_outline_count": { "value": 0 }, "skin_overlap": { "value": 0 }, "skin_preshrink": { "value": 0 }, + "skirt_brim_extruder_nr": + { + "enabled": false, + "value": "min(extruderValues('extruder_nr'))" + }, + "skirt_brim_line_width": { "value": 1 }, "skirt_brim_material_flow": { "value": "material_flow" }, "skirt_brim_minimal_length": { "value": 500 }, + "skirt_gap": { "value": 2 }, + "skirt_height": { "value": 3 }, "small_skin_width": { "value": 4 }, "speed_equalize_flow_width_factor": { "value": 0 }, - "speed_prime_tower": { "value": "speed_topbottom" }, - "speed_print": { "value": 50 }, - "speed_roofing": { "value": "speed_wall_0" }, - "speed_support": { "value": "speed_wall" }, - "speed_support_interface": { "value": "speed_topbottom" }, - "speed_topbottom": { "value": "speed_wall" }, + "speed_infill": + { + "maximum_value": 350, + "maximum_value_warning": 325 + }, + "speed_prime_tower": + { + "maximum_value": 250, + "maximum_value_warning": 200, + "value": "speed_topbottom" + }, + "speed_print": + { + "maximum_value": 350, + "maximum_value_warning": 325, + "value": 50 + }, + "speed_roofing": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "speed_wall_0" + }, + "speed_support": + { + "maximum_value": 350, + "maximum_value_warning": 325, + "value": "speed_wall" + }, + "speed_support_infill": + { + "maximum_value": 350, + "maximum_value_warning": 325 + }, + "speed_support_interface": + { + "maximum_value": 260, + "maximum_value_warning": 255, + "value": "speed_topbottom" + }, + "speed_support_roof": + { + "maximum_value": 260, + "maximum_value_warning": 255 + }, + "speed_topbottom": + { + "maximum_value": 260, + "maximum_value_warning": 255, + "value": "speed_wall" + }, "speed_travel": { "value": 250 }, - "speed_wall": { "value": "speed_print * 40/50" }, - "speed_wall_0": { "value": "speed_wall * 30/40" }, - "speed_wall_x": { "value": "speed_wall" }, + "speed_wall": + { + "maximum_value": 260, + "maximum_value_warning": 255, + "value": "speed_print * 40/50" + }, + "speed_wall_0": + { + "maximum_value": 260, + "maximum_value_warning": 255, + "value": "speed_wall * 30/40" + }, + "speed_wall_0_roofing": + { + "maximum_value": 260, + "maximum_value_warning": 255 + }, + "speed_wall_x": + { + "maximum_value": 260, + "maximum_value_warning": 255, + "value": "speed_wall" + }, + "speed_wall_x_roofing": + { + "maximum_value": 260, + "maximum_value_warning": 255 + }, "support_angle": { "value": 40 }, - "support_bottom_distance": { "value": "layer_height if extruder_nr == support_extruder_nr else 0" }, - "support_bottom_enable": { "value": "false if extruder_nr == support_extruder_nr else true" }, + "support_bottom_height": { "value": "2*support_infill_sparse_thickness" }, + "support_bottom_line_width": + { + "maximum_value": 3, + "maximum_value_warning": 1.8 + }, "support_bottom_material_flow": { "value": "material_flow" }, - "support_bottom_wall_count": { "value": "0 if extruder_nr == support_extruder_nr else support_wall_count" }, + "support_bottom_wall_count": + { + "maximum_value": 8, + "maximum_value_warning": 6, + "value": 0 + }, "support_brim_enable": { "value": false }, "support_conical_min_width": { "value": 10 }, "support_enable": { "value": true }, "support_extruder_nr": { "value": "int(anyExtruderWithMaterial('material_is_support_material'))" }, - "support_fan_enable": { "value": "true if extruder_nr == support_extruder_nr else false" }, + "support_fan_enable": { "value": "True" }, + "support_infill_angles": + { + "value": [ + 45 + ] + }, "support_infill_rate": { "value": 20.0 }, "support_infill_sparse_thickness": { "value": "layer_height" }, "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "4*support_infill_sparse_thickness" }, "support_interface_material_flow": { "value": "material_flow" }, - "support_interface_offset": { "value": "1 if extruder_nr == support_extruder_nr else 0" }, - "support_interface_pattern": { "value": "'lines'" }, - "support_interface_wall_count": { "value": "1 if extruder_nr == support_extruder_nr else 2" }, + "support_interface_offset": { "value": "1" }, + "support_interface_pattern": { "value": "'zigzag' if support_wall_count > 1 else 'lines'" }, + "support_interface_wall_count": { "value": "1" }, + "support_join_distance": { "value": "4.5 if support_wall_count > 1 else 2" }, "support_material_flow": { "value": "material_flow" }, - "support_offset": { "value": "1.8 if extruder_nr == support_extruder_nr else 0.8" }, - "support_pattern": { "value": "'lines'" }, - "support_roof_height": { "value": "4*layer_height if extruder_nr == support_extruder_nr else 5*layer_height" }, + "support_offset": { "value": "2.4 if support_wall_count > 1 else 1.8" }, + "support_pattern": { "value": "'zigzag' if support_wall_count > 1 else 'lines'" }, + "support_roof_height": { "value": "4*layer_height" }, "support_roof_material_flow": { "value": "material_flow" }, "support_supported_skin_fan_speed": { "value": "cool_fan_speed_max" }, - "support_top_distance": { "value": "support_z_distance" }, + "support_use_towers": { "value": false }, "support_wall_count": { "value": "2 if support_conical_enabled or support_structure == 'tree' else 0" }, "support_xy_distance": { "value": 0.2 }, + "support_xy_distance_overhang": { "value": "support_xy_distance" }, "switch_extruder_retraction_amount": { "value": 0.5 }, "switch_extruder_retraction_speeds": { "value": "retraction_speed" }, - "top_bottom_thickness": { "value": "5*layer_height" }, + "top_bottom_pattern": { "value": "'zigzag'" }, + "top_bottom_pattern_0": { "value": "'zigzag'" }, + "top_bottom_thickness": + { + "minimum_value_warning": 0.3, + "value": "4*layer_height" + }, + "top_thickness": + { + "minimum_value_warning": 0.3, + "value": "top_bottom_thickness * 1.5" + }, "travel_avoid_distance": { "value": "3 if extruders_enabled_count > 1 else machine_nozzle_tip_outer_diameter / 2 * 1.5" }, "travel_avoid_other_parts": { "value": false }, "wall_0_inset": { "value": 0 }, diff --git a/resources/definitions/ultimaker_methodx.def.json b/resources/definitions/ultimaker_methodx.def.json index 5202b7f66a..37b11ad4ef 100644 --- a/resources/definitions/ultimaker_methodx.def.json +++ b/resources/definitions/ultimaker_methodx.def.json @@ -16,6 +16,7 @@ "chromatik_", "3D-Fuel_", "bestfilament_", + "eazao_", "emotiontech_", "eryone_", "eSUN_", @@ -36,14 +37,15 @@ "polywood_pla", "redd_", "tizyx_", - "ultimaker_tough_pla_175", "verbatim_", "Vertex_", "volumic_", "xyzprinting_", "zyyx_pro_", "octofiber_", - "fiberlogy_" + "fiberlogy_", + "ultimaker_nylon_175", + "ultimaker_metallic_pla_175" ], "has_machine_materials": true, "has_machine_quality": true, @@ -67,46 +69,14 @@ "supports_usb_connection": false, "variant_definition": "ultimaker_methodx", "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": { - "machine_depth": { "default_value": 236.48 }, - "machine_disallowed_areas": - { - "default_value": [ - [ - [-141.65, -118.11], - [141.65, -118.11], - [141.65, -94], - [-141.65, -94] - ], - [ - [-141.65, 118.37], - [141.65, 118.37], - [141.65, 94], - [-141.65, 94] - ], - [ - [-141.65, -118.11], - [-75, -118.11], - [-75, 118.37], - [-141.65, 118.37] - ], - [ - [75, -118.11], - [141.65, -118.11], - [141.65, 118.37], - [75, 118.37] - ] - ] - }, - "machine_height": { "default_value": 196 }, + "build_volume_temperature": { "maximum_value": "107" }, "machine_name": { "default_value": "UltiMaker Method X" }, - "machine_width": { "default_value": 283.3 }, - "material_flow": { "value": 97 }, "prime_tower_position_x": { "value": "(150 / 2 + resolveOrValue('prime_tower_size') / 2) if resolveOrValue('machine_shape') == 'elliptic' else (150 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (150 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, - "prime_tower_position_y": { "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" }, - "skin_material_flow": { "value": "0.95*material_flow" } + "prime_tower_position_y": { "value": "190 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (190 / 2 if resolveOrValue('machine_center_is_zero') else 0)" } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_methodxl.def.json b/resources/definitions/ultimaker_methodxl.def.json index 098586df68..d12fa8ac59 100644 --- a/resources/definitions/ultimaker_methodxl.def.json +++ b/resources/definitions/ultimaker_methodxl.def.json @@ -9,6 +9,45 @@ "manufacturer": "Ultimaker B.V.", "file_formats": "application/x-makerbot", "platform": "ultimaker_method_xl_platform.stl", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "eazao_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "generic_", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_", + "basf_ultrafuse_316l_175", + "ultimaker_nylon_175", + "ultimaker_metallic_pla_175" + ], "has_machine_materials": true, "has_machine_quality": true, "has_materials": true, @@ -18,51 +57,41 @@ "0": "ultimaker_methodxl_extruder_left", "1": "ultimaker_methodxl_extruder_right" }, + "platform_offset": [ + 0, + 0, + 0 + ], "preferred_quality_type": "draft", "reference_machine_id": "magma_10", "supports_network_connection": true, "supports_usb_connection": false, "variants_name": "Extruder", + "variants_name_has_translation": true, "weight": -1 }, "overrides": { + "build_volume_temperature": { "maximum_value": "100" }, "machine_depth": { "default_value": 320 }, - "machine_disallowed_areas": - { - "default_value": [ - [ - [-204, -160], - [204, -160], - [204, -154.5], - [-204, -154.5] - ], - [ - [-204, 160], - [204, 160], - [204, 154.5], - [-204, 154.5] - ], - [ - [-205, -160], - [-154.5, -160], - [-154.5, 160], - [-205, 160] - ], - [ - [154.5, -160], - [205, -160], - [205, 160], - [154.5, 160] - ] - ] - }, + "machine_disallowed_areas": { "value": "[ [ [-204, -160], [204, -160], [204, -154.5], [-204, -154.5] ], [ [-204, 160], [204, 160], [204, 154.5], [-204, 154.5] ], [ [-205, -160], [-191.5, -160], [-191.5, 160], [-205, 160] ], [ [154.5, -160], [205, -160], [205, 160], [154.5, 160] ] ] if max(extruderValues('extruder_nr')) == 0 else [ [ [-204, -160], [204, -160], [204, -154.5], [-204, -154.5] ], [ [-204, 160], [204, 160], [204, 154.5], [-204, 154.5] ], [ [-205, -160], [-154.5, -160], [-154.5, 160], [-205, 160] ], [ [154.5, -160], [205, -160], [205, 160], [154.5, 160] ] ]" }, "machine_heated_bed": { "default_value": true }, - "machine_height": { "default_value": 320 }, + "machine_height": { "default_value": 319.9 }, "machine_name": { "default_value": "UltiMaker Method XL" }, "machine_width": { "default_value": 410 }, "prime_tower_position_x": { "value": "(305 - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_x'))), 1)) - (305 / 2)" }, "prime_tower_position_y": { "value": "305 - prime_tower_size - (resolveOrValue('prime_tower_base_size') if (resolveOrValue('adhesion_type') == 'raft' or resolveOrValue('prime_tower_brim_enable')) else 0) - max(max(extruderValues('travel_avoid_distance')) + max(extruderValues('support_offset')) + (extruderValue(skirt_brim_extruder_nr, 'skirt_brim_line_width') * extruderValue(skirt_brim_extruder_nr, 'skirt_line_count') * extruderValue(skirt_brim_extruder_nr, 'initial_layer_line_width_factor') / 100 + extruderValue(skirt_brim_extruder_nr, 'skirt_gap') if resolveOrValue('adhesion_type') == 'skirt' else 0) + (resolveOrValue('draft_shield_dist') if resolveOrValue('draft_shield_enabled') else 0), max(map(abs, extruderValues('machine_nozzle_offset_y'))), 1) - (305 / 2)" }, - "speed_travel": { "value": 500 } + "speed_travel": + { + "maximum_value": 500, + "maximum_value_warning": 450, + "value": 400 + }, + "speed_travel_layer_0": + { + "maximum_value": 500, + "maximum_value_warning": 450, + "value": 250 + } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_original.def.json b/resources/definitions/ultimaker_original.def.json index 6848cb3c86..826a612c6c 100644 --- a/resources/definitions/ultimaker_original.def.json +++ b/resources/definitions/ultimaker_original.def.json @@ -25,7 +25,9 @@ "ultimaker_petcf", "ultimaker_petg", "ultimaker_pva", - "ultimaker_tough_pla" + "ultimaker_tough_pla", + "generic_cffpps", + "ultimaker_ppscf" ], "firmware_file": "MarlinUltimaker-{baudrate}.hex", "firmware_hbk_file": "MarlinUltimaker-HBK-{baudrate}.hex", @@ -66,6 +68,7 @@ "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 Y50 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, "machine_width": { "default_value": 205 }, + "material_print_temp_wait": { "value": true }, "speed_slowdown_layers": { "value": 2 } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_original_dual.def.json b/resources/definitions/ultimaker_original_dual.def.json index 65fca17df7..d26d3a9555 100644 --- a/resources/definitions/ultimaker_original_dual.def.json +++ b/resources/definitions/ultimaker_original_dual.def.json @@ -1,7 +1,7 @@ { "version": 2, "name": "Ultimaker Original Dual Extrusion", - "inherits": "ultimaker", + "inherits": "ultimaker_original", "metadata": { "visible": true, @@ -49,10 +49,13 @@ }, "overrides": { + "cool_fan_speed_0": { "value": "cool_fan_speed_min" }, "gantry_height": { "value": "55" }, + "infill_before_walls": { "value": "True" }, + "layer_height_0": { "value": "max(0.2, layer_height)" }, "machine_center_is_zero": { "default_value": false }, "machine_depth": { "default_value": 195 }, - "machine_end_gcode": { "default_value": "M104 T0 S0 ;1st extruder heater off\nM104 T1 S0 ;2nd 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 E-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\nM84 ;steppers off\nG90 ;absolute positioning" }, + "machine_end_gcode": { "value": "'M104 T0 S0 ;1st extruder heater off\\nM104 T1 S0 ;2nd extruder heater off' + ('\\nM140 S0 ;heated bed heater off' if machine_heated_bed else '') + '\\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 E-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\\nM84 ;steppers off\\nG90 ;absolute positioning'" }, "machine_extruder_count": { "default_value": 2 }, "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, "machine_head_with_fans_polygon": @@ -65,9 +68,11 @@ ] }, "machine_height": { "default_value": 200 }, - "machine_name": { "default_value": "Ultimaker Original" }, + "machine_name": { "default_value": "Ultimaker Original Dual Extrusion" }, "machine_start_gcode": { "default_value": "G21 ;metric values\nG90 ;absolute positioning\nM82 ;set extruder to absolute mode\nM107 ;start with the fan off\nG28 X0 Y0 ;move X/Y to min endstops\nG28 Z0 ;move Z to min endstops\nG1 Z15.0 F9000 ;move the platform down 15mm\nT1 ;Switch to the 2nd extruder\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F200 E-{switch_extruder_retraction_amount}\nT0 ;Switch to the 1st extruder\nG92 E0 ;zero the extruded length\nG1 F200 E6 ;extrude 6 mm of feed stock\nG92 E0 ;zero the extruded length again\nG1 F9000\n;Put printing message on LCD screen\nM117 Printing..." }, "machine_use_extruder_offset_to_offset_coords": { "default_value": true }, - "machine_width": { "default_value": 205 } + "machine_width": { "default_value": 205 }, + "material_print_temp_wait": { "value": false }, + "speed_slowdown_layers": { "value": 1 } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_replicator_plus.def.json b/resources/definitions/ultimaker_replicator_plus.def.json new file mode 100644 index 0000000000..edfab6d962 --- /dev/null +++ b/resources/definitions/ultimaker_replicator_plus.def.json @@ -0,0 +1,274 @@ +{ + "version": 2, + "name": "MakerBot Replicator+", + "inherits": "ultimaker", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-replicator_plus", + "platform": "ultimaker_replicator_plus_platform.3MF", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "eazao_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "ultimaker_rapidrinse_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_", + "generic_", + "ultimaker_asa", + "ultimaker_abs", + "ultimaker_nylon", + "ultimaker_pva", + "ultimaker_rapidrinse", + "ultimaker_sr30", + "ultimaker_petg", + "basf_", + "jabil_", + "polymaker_", + "lehvoss", + "ultimaker_metallic_pla", + "ultimaker_pc-abs" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker_replicator_extruder" }, + "preferred_material": "ultimaker_pla_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "Smart Extruder+", + "reference_machine_id": "replicator_b", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": + { + "enabled": false, + "value": false + }, + "adhesion_type": { "value": "'raft'" }, + "brim_width": { "value": "3" }, + "cool_during_extruder_switch": + { + "enabled": false, + "value": false + }, + "cool_fan_full_at_height": { "value": "layer_height + layer_height_0" }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 0 }, + "cool_min_layer_time": { "value": 5 }, + "extruder_prime_pos_abs": { "default_value": true }, + "fill_outline_gaps": { "value": true }, + "gantry_height": { "value": "60" }, + "gradual_support_infill_steps": { "value": 0 }, + "infill_angles": { "value": "[45,45,45,45,45,135,135,135,135,135]" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 0 }, + "infill_pattern": { "value": "'zigzag'" }, + "infill_sparse_density": { "value": 10 }, + "infill_wipe_dist": { "value": 0 }, + "initial_layer_line_width_factor": + { + "maximum_value": 300, + "maximum_value_warning": 250, + "value": "125 if resolveOrValue('adhesion_type') == 'raft' else 200" + }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": + { + "enabled": false, + "value": false + }, + "layer_height_0": { "value": "0.2 if resolveOrValue('adhesion_type') == 'raft' else 0.3" }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 195 }, + "machine_end_gcode": { "default_value": "; End GCode\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Marlin" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 165 }, + "machine_max_feedrate_x": { "default_value": 200 }, + "machine_max_feedrate_y": { "default_value": 200 }, + "machine_max_feedrate_z": { "default_value": 25 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "MakerBot Replicator+" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "; Start GCode\n" }, + "machine_width": { "default_value": 295 }, + "material_bed_temperature": { "enabled": false }, + "material_bed_temperature_layer_0": { "enabled": false }, + "material_diameter": { "default_value": 1.75 }, + "material_final_print_temperature": + { + "enabled": false, + "value": "material_print_temperature" + }, + "material_flow": { "default_value": 100 }, + "material_initial_print_temperature": + { + "enabled": false, + "value": "material_print_temperature" + }, + "material_print_temperature": + { + "maximum_value": 250, + "maximum_value_warning": 235 + }, + "material_print_temperature_layer_0": + { + "maximum_value": 250, + "maximum_value_warning": 235, + "value": "material_print_temperature + 5" + }, + "min_bead_width": + { + "minimum_value": "line_width * 0.5", + "minimum_value_warning": "line_width * 0.625", + "value": "line_width * 0.75" + }, + "min_wall_line_width": + { + "minimum_value": "line_width * 0.5", + "minimum_value_warning": "line_width * 0.75", + "value": "line_width" + }, + "minimum_support_area": { "value": 0.5 }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": false, + "enabled": false, + "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" + }, + "print_sequence": { "enabled": false }, + "raft_airgap": { "value": 0.3 }, + "raft_base_flow": { "value": 120 }, + "raft_base_infill_overlap": { "value": 25 }, + "raft_base_line_spacing": { "value": 2.5 }, + "raft_base_line_width": { "value": 2 }, + "raft_base_thickness": { "value": 0.4 }, + "raft_interface_fan_speed": { "value": 0 }, + "raft_interface_infill_overlap": { "value": 25 }, + "raft_interface_wall_count": { "value": "raft_wall_count" }, + "raft_margin": { "value": 6.5 }, + "raft_surface_fan_speed": { "value": 50.0 }, + "raft_surface_infill_overlap": { "value": 35 }, + "raft_surface_wall_count": { "value": "raft_wall_count" }, + "raft_wall_count": { "value": 2 }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": + { + "maximum_value": 5, + "maximum_value_warning": 2.5, + "value": 0.5 + }, + "retraction_combing": { "value": "'infill'" }, + "retraction_count_max": + { + "maximum_value": 700, + "maximum_value_warning": 600, + "value": 500 + }, + "retraction_extra_prime_amount": { "value": 0.1 }, + "retraction_min_travel": { "value": "2 * line_width" }, + "retraction_prime_speed": + { + "maximum_values": 35, + "value": 30 + }, + "retraction_retract_speed": + { + "maximum_value": 55, + "value": 50 + }, + "retraction_speed": + { + "maximum_value": 55, + "value": 50 + }, + "roofing_material_flow": { "value": "material_flow" }, + "skin_material_flow": { "value": "material_flow" }, + "skin_material_flow_layer_0": { "value": "material_flow" }, + "skirt_brim_line_width": { "value": 0.8 }, + "skirt_brim_minimal_length": { "value": 150 }, + "skirt_brim_speed": { "value": 15 }, + "skirt_height": { "value": 3 }, + "speed_equalize_flow_width_factor": { "value": 100 }, + "speed_print": { "value": 90 }, + "speed_roofing": { "value": "1 * speed_print" }, + "speed_support": { "value": "1 * speed_print" }, + "speed_support_interface": { "value": "speed_support" }, + "speed_topbottom": { "value": "speed_roofing" }, + "speed_travel": { "value": 150 }, + "speed_wall": { "value": "1 * speed_print" }, + "speed_wall_0": { "value": "4/9 * speed_wall" }, + "speed_wall_x": { "value": "1 * speed_wall" }, + "speed_z_hop": { "value": 10 }, + "support_angle": { "value": 68 }, + "support_bottom_enable": { "value": false }, + "support_brim_enable": { "value": false }, + "support_connect_zigzags": { "value": false }, + "support_infill_angles": { "value": "[45]" }, + "support_infill_rate": { "value": 20 }, + "support_interface_density": { "value": 90 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": 0.8 }, + "support_interface_wall_count": { "value": 0 }, + "support_line_width": { "value": 0.35 }, + "support_material_flow": { "value": 90 }, + "support_offset": { "value": 1 }, + "support_structure": { "value": "'normal'" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": 0.3 }, + "support_z_distance": { "value": 0.2 }, + "top_bottom_thickness": { "value": "4 * layer_height" }, + "travel_avoid_distance": { "value": 2 }, + "travel_avoid_supports": { "value": true }, + "wall_0_inset": { "value": "0" }, + "wall_0_material_flow_layer_0": { "value": "material_flow" }, + "wall_thickness": { "value": "2 * machine_nozzle_size" }, + "wall_x_material_flow": { "value": "material_flow" }, + "wall_x_material_flow_layer_0": { "value": "1 * material_flow" }, + "xy_offset": { "value": 0 }, + "xy_offset_layer_0": { "value": 0 }, + "z_seam_corner": { "value": "'z_seam_corner_any'" }, + "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_s3.def.json b/resources/definitions/ultimaker_s3.def.json index 82776bd62e..27957af727 100644 --- a/resources/definitions/ultimaker_s3.def.json +++ b/resources/definitions/ultimaker_s3.def.json @@ -17,7 +17,9 @@ "exclude_materials": [ "generic_hips", "generic_flexible", - "structur3d_" + "generic_cffpps", + "structur3d_", + "ultimaker_ppscf" ], "firmware_update_info": { @@ -48,7 +50,8 @@ "supported_actions": [ "DiscoverUM3Action" ], "supports_material_export": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -1 }, "overrides": diff --git a/resources/definitions/ultimaker_s5.def.json b/resources/definitions/ultimaker_s5.def.json index 3c35c84a00..fa6f5a9a38 100644 --- a/resources/definitions/ultimaker_s5.def.json +++ b/resources/definitions/ultimaker_s5.def.json @@ -18,7 +18,9 @@ "exclude_materials": [ "generic_hips", "generic_flexible", - "structur3d_" + "generic_cffpps", + "structur3d_", + "ultimaker_ppscf" ], "firmware_update_info": { @@ -48,10 +50,12 @@ "preferred_variant_buildplate_name": "Glass", "preferred_variant_name": "AA 0.4", "supported_actions": [ "DiscoverUM3Action" ], + "supports_abstract_color": true, "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -2 }, "overrides": @@ -68,7 +72,11 @@ "brim_width": { "value": "3" }, "build_volume_temperature": { "maximum_value": 50 }, "cool_fan_speed": { "value": "50" }, - "default_material_print_temperature": { "value": "200" }, + "default_material_print_temperature": + { + "maximum_value_warning": "320", + "value": "200" + }, "extruder_prime_pos_abs": { "default_value": true }, "gantry_height": { "value": "55" }, "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'triangles'" }, @@ -100,6 +108,7 @@ "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, "machine_start_gcode": { "default_value": "" }, "machine_width": { "default_value": 330 }, + "material_print_temperature_layer_0": { "maximum_value_warning": "320" }, "multiple_mesh_overlap": { "value": "0" }, "optimize_wall_printing_order": { "value": "True" }, "prime_blob_enable": diff --git a/resources/definitions/ultimaker_s6.def.json b/resources/definitions/ultimaker_s6.def.json new file mode 100644 index 0000000000..90a90fee26 --- /dev/null +++ b/resources/definitions/ultimaker_s6.def.json @@ -0,0 +1,51 @@ +{ + "version": 2, + "name": "UltiMaker S6", + "inherits": "ultimaker_s8", + "metadata": + { + "visible": true, + "author": "UltiMaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-ufp;text/x-gcode", + "platform": "ultimaker_s5_platform.obj", + "bom_numbers": [10700, 10701], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/5078167/stable/um-update.swu.version" ], + "id": 5078167, + "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" + }, + "first_start_actions": [ "DiscoverUM3Action" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_s6_extruder_left", + "1": "ultimaker_s6_extruder_right" + }, + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + -30, + -10 + ], + "platform_texture": "UltimakerS6backplate.png", + "preferred_material": "ultimaker_pla_blue", + "preferred_variant_name": "AA+ 0.4", + "quality_definition": "ultimaker_s8", + "supported_actions": [ "DiscoverUM3Action" ], + "supports_material_export": true, + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Print Core", + "variants_name_has_translation": true, + "weight": -2 + }, + "overrides": + { + "adhesion_type": { "value": "'brim'" }, + "machine_name": { "default_value": "Ultimaker S6" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_s7.def.json b/resources/definitions/ultimaker_s7.def.json index bb3f5a938d..ac2f927ad4 100644 --- a/resources/definitions/ultimaker_s7.def.json +++ b/resources/definitions/ultimaker_s7.def.json @@ -36,16 +36,16 @@ "preferred_variant_name": "AA 0.4", "quality_definition": "ultimaker_s5", "supported_actions": [ "DiscoverUM3Action" ], + "supports_abstract_color": true, "supports_material_export": true, "supports_network_connection": true, "supports_usb_connection": false, - "variants_name": "Print core", + "variants_name": "Print Core", + "variants_name_has_translation": true, "weight": -2 }, "overrides": { - "default_material_print_temperature": { "maximum_value_warning": "320" }, - "machine_name": { "default_value": "Ultimaker S7" }, - "material_print_temperature_layer_0": { "maximum_value_warning": "320" } + "machine_name": { "default_value": "Ultimaker S7" } } } \ No newline at end of file diff --git a/resources/definitions/ultimaker_s8.def.json b/resources/definitions/ultimaker_s8.def.json new file mode 100644 index 0000000000..b7de27722d --- /dev/null +++ b/resources/definitions/ultimaker_s8.def.json @@ -0,0 +1,610 @@ +{ + "version": 2, + "name": "UltiMaker S8", + "inherits": "ultimaker_s5", + "metadata": + { + "visible": true, + "author": "UltiMaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-ufp;text/x-gcode", + "platform": "ultimaker_s7_platform.obj", + "bom_numbers": [ + 10600 + ], + "exclude_materials": [ + "generic_hips", + "generic_flexible", + "generic_cffpps", + "generic_cffpa", + "generic_cffcpe", + "generic_gffpa", + "generic_gffcpe", + "structur3d_", + "ultimaker_ppscf" + ], + "firmware_update_info": + { + "check_urls": [ "https://software.ultimaker.com/releases/firmware/10600/stable/um-update.swu.version" ], + "id": 10600, + "update_url": "https://ultimaker.com/firmware?utm_source=cura&utm_medium=software&utm_campaign=fw-update" + }, + "first_start_actions": [ "DiscoverUM3Action" ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": + { + "0": "ultimaker_s8_extruder_left", + "1": "ultimaker_s8_extruder_right" + }, + "nozzle_offsetting_for_disallowed_areas": false, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "UltimakerS8backplate.png", + "preferred_material": "ultimaker_pla_blue", + "preferred_quality_type": "draft", + "preferred_variant_name": "AA+ 0.4", + "supported_actions": [ "DiscoverUM3Action" ], + "supports_material_export": true, + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Print Core", + "variants_name_has_translation": true, + "weight": -2 + }, + "overrides": + { + "acceleration_flooring": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_roofing" + }, + "acceleration_infill": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_print" + }, + "acceleration_layer_0": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": 2000 + }, + "acceleration_prime_tower": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_print" + }, + "acceleration_print": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": 20000 + }, + "acceleration_print_layer_0": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_layer_0" + }, + "acceleration_roofing": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_wall_0" + }, + "acceleration_skirt_brim": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_layer_0" + }, + "acceleration_support": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_print" + }, + "acceleration_support_bottom": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_support_interface" + }, + "acceleration_support_infill": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_support" + }, + "acceleration_support_interface": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_support" + }, + "acceleration_support_roof": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_support_interface" + }, + "acceleration_topbottom": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_print" + }, + "acceleration_travel": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": 10000 + }, + "acceleration_travel_enabled": { "value": true }, + "acceleration_travel_layer_0": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_layer_0" + }, + "acceleration_wall": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_print/8" + }, + "acceleration_wall_0": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_wall" + }, + "acceleration_wall_0_flooring": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_wall_0_roofing" + }, + "acceleration_wall_0_roofing": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_wall_0" + }, + "acceleration_wall_x": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_print" + }, + "acceleration_wall_x_flooring": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_wall_x_roofing" + }, + "acceleration_wall_x_roofing": + { + "maximum_value": "machine_max_acceleration_x", + "maximum_value_warning": "machine_max_acceleration_x*0.8", + "value": "acceleration_wall" + }, + "adhesion_type": { "value": "'brim' if support_enable and support_structure=='tree' else 'skirt'" }, + "bottom_thickness": { "value": "3*layer_height if top_layers==4 and not support_enable else top_bottom_thickness" }, + "bridge_skin_material_flow": { "value": 200 }, + "bridge_skin_speed": + { + "unit": "mm/s", + "value": "bridge_wall_speed" + }, + "bridge_sparse_infill_max_density": { "value": 50 }, + "bridge_wall_material_flow": { "value": "bridge_skin_material_flow" }, + "bridge_wall_min_length": { "value": 10 }, + "bridge_wall_speed": + { + "unit": "mm/s", + "value": 50 + }, + "build_volume_temperature": + { + "force_depends_on_settings": [ + "support_extruder_nr", + "support_enable" + ] + }, + "cool_during_extruder_switch": { "value": "'all_fans'" }, + "cool_min_layer_time": { "value": 5 }, + "cool_min_layer_time_overhang": { "value": 9 }, + "cool_min_layer_time_overhang_min_segment_length": { "value": 2 }, + "cool_min_speed": { "value": 6 }, + "cool_min_temperature": + { + "minimum_value_warning": "material_print_temperature-15", + "value": "material_print_temperature-15" + }, + "default_material_print_temperature": { "maximum_value_warning": 320 }, + "extra_infill_lines_to_support_skins": { "value": "'walls_and_lines'" }, + "flooring_layer_count": { "value": 1 }, + "gradual_flow_enabled": { "value": false }, + "hole_xy_offset": { "value": 0.075 }, + "infill_material_flow": { "value": "material_flow" }, + "infill_overlap": { "value": 10 }, + "infill_pattern": { "value": "'zigzag' if infill_sparse_density > 80 else 'grid'" }, + "infill_sparse_density": { "value": 15 }, + "infill_wall_line_count": { "value": "1 if infill_sparse_density > 80 else 0" }, + "initial_bottom_layers": { "value": 2 }, + "jerk_flooring": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_roofing" + }, + "jerk_infill": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_print" + }, + "jerk_layer_0": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_print/2" + }, + "jerk_prime_tower": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall" + }, + "jerk_print": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "10000" + }, + "jerk_print_layer_0": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_layer_0" + }, + "jerk_roofing": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall_0" + }, + "jerk_skirt_brim": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_layer_0" + }, + "jerk_support": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_print" + }, + "jerk_support_bottom": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_support_interface" + }, + "jerk_support_infill": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_support" + }, + "jerk_support_interface": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_support" + }, + "jerk_support_roof": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_support_interface" + }, + "jerk_topbottom": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_print" + }, + "jerk_travel": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": 10000 + }, + "jerk_travel_enabled": { "value": true }, + "jerk_travel_layer_0": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_travel" + }, + "jerk_wall": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_print/5" + }, + "jerk_wall_0": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall" + }, + "jerk_wall_0_flooring": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall_0_roofing" + }, + "jerk_wall_0_roofing": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall_0" + }, + "jerk_wall_x": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_print" + }, + "jerk_wall_x_flooring": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall_x_roofing" + }, + "jerk_wall_x_roofing": + { + "maximum_value_warning": "machine_max_jerk_xy / 2", + "unit": "m/s\u00b3", + "value": "jerk_wall_0" + }, + "machine_gcode_flavor": { "default_value": "Cheetah" }, + "machine_max_acceleration_x": { "default_value": 50000 }, + "machine_max_acceleration_y": { "default_value": 50000 }, + "machine_max_feedrate_x": { "default_value": 500 }, + "machine_max_feedrate_y": { "default_value": 500 }, + "machine_max_jerk_e": + { + "default_value": 20000, + "unit": "m/s\u00b3", + "value": "20000 if machine_gcode_flavor == 'Cheetah' else 100" + }, + "machine_max_jerk_xy": + { + "default_value": 1000000, + "unit": "m/s\u00b3", + "value": "1000000 if machine_gcode_flavor == 'Cheetah' else 500" + }, + "machine_max_jerk_z": + { + "default_value": 20000, + "unit": "m/s\u00b3", + "value": "20000 if machine_gcode_flavor == 'Cheetah' else 100" + }, + "machine_name": { "default_value": "Ultimaker S8" }, + "machine_nozzle_cool_down_speed": { "default_value": 1.3 }, + "machine_nozzle_heat_up_speed": { "default_value": 0.6 }, + "machine_start_gcode": { "default_value": "M213 U0.1 ;undercut 0.1mm" }, + "material_bed_temperature": + { + "force_depends_on_settings": [ + "support_extruder_nr", + "support_enable" + ] + }, + "material_extrusion_cool_down_speed": { "value": 0 }, + "material_final_print_temperature": { "value": "material_print_temperature - 5" }, + "material_initial_print_temperature": { "value": "material_print_temperature - 5" }, + "material_pressure_advance_factor": + { + "enabled": true, + "value": 0.5 + }, + "material_print_temperature": { "maximum_value_warning": 320 }, + "material_print_temperature_layer_0": { "maximum_value_warning": 320 }, + "max_flow_acceleration": { "value": 8.0 }, + "max_skin_angle_for_expansion": { "value": 45 }, + "meshfix_maximum_resolution": { "value": 0.4 }, + "min_infill_area": { "default_value": 10 }, + "optimize_wall_printing_order": { "value": false }, + "prime_tower_brim_enable": { "value": true }, + "prime_tower_min_volume": { "value": 10 }, + "prime_tower_mode": { "resolve": "'normal'" }, + "retraction_amount": { "value": 6.5 }, + "retraction_combing_avoid_distance": { "value": 1.2 }, + "retraction_combing_max_distance": { "value": 50 }, + "retraction_hop": { "value": 1 }, + "retraction_hop_after_extruder_switch_height": { "value": 2 }, + "retraction_hop_enabled": { "value": true }, + "retraction_min_travel": { "value": "5 if support_enable and support_structure=='tree' else line_width * 2.5" }, + "retraction_prime_speed": { "value": 15 }, + "skin_edge_support_thickness": { "value": 0 }, + "skin_material_flow": { "value": 95 }, + "skin_overlap": { "value": 0 }, + "skin_preshrink": { "value": 0 }, + "skirt_brim_minimal_length": { "value": 1000 }, + "skirt_brim_speed": + { + "maximum_value_warning": 300, + "value": "speed_layer_0" + }, + "skirt_line_count": { "value": 5 }, + "small_skin_on_surface": { "value": false }, + "small_skin_width": { "value": 4 }, + "speed_flooring": + { + "maximum_value_warning": 300, + "value": "speed_roofing" + }, + "speed_infill": + { + "maximum_value_warning": 300, + "value": "speed_print" + }, + "speed_ironing": + { + "maximum_value_warning": 300, + "value": 20 + }, + "speed_layer_0": + { + "maximum_value_warning": 300, + "value": "min(speed_wall, 50)" + }, + "speed_prime_tower": + { + "maximum_value_warning": 300, + "value": "min(speed_wall, 50)" + }, + "speed_print": + { + "maximum_value_warning": 300, + "value": 150 + }, + "speed_print_layer_0": + { + "maximum_value_warning": 300, + "value": "speed_layer_0" + }, + "speed_roofing": + { + "maximum_value_warning": 300, + "value": "speed_wall" + }, + "speed_support": + { + "maximum_value_warning": 300, + "value": "speed_wall" + }, + "speed_support_bottom": + { + "maximum_value_warning": 300, + "value": "speed_support_interface" + }, + "speed_support_infill": + { + "maximum_value_warning": 300, + "value": "speed_support" + }, + "speed_support_interface": + { + "maximum_value_warning": 300, + "value": 80 + }, + "speed_support_roof": + { + "maximum_value_warning": 300, + "value": "speed_support_interface" + }, + "speed_topbottom": + { + "maximum_value_warning": 300, + "value": "speed_print" + }, + "speed_travel": + { + "maximum_value": 500, + "maximum_value_warning": 500, + "value": 500 + }, + "speed_travel_layer_0": + { + "maximum_value": 500, + "maximum_value_warning": 500, + "value": 150 + }, + "speed_wall": + { + "maximum_value_warning": 300, + "value": "speed_print*2/3" + }, + "speed_wall_0": + { + "maximum_value_warning": 300, + "value": "speed_wall" + }, + "speed_wall_0_flooring": + { + "maximum_value_warning": 300, + "value": "speed_wall_0_roofing" + }, + "speed_wall_0_roofing": + { + "maximum_value_warning": 300, + "value": "speed_wall" + }, + "speed_wall_x": + { + "maximum_value_warning": 300, + "value": "speed_print" + }, + "speed_wall_x_flooring": + { + "maximum_value_warning": 300, + "value": "speed_wall_x_roofing" + }, + "speed_wall_x_roofing": + { + "maximum_value_warning": 300, + "value": "speed_wall" + }, + "support_angle": { "value": 60 }, + "support_bottom_distance": { "maximum_value_warning": "3*layer_height" }, + "support_bottom_offset": { "value": 0 }, + "support_brim_width": { "value": 10 }, + "support_interface_enable": { "value": true }, + "support_interface_offset": { "value": "support_offset" }, + "support_line_width": { "value": "1.25*line_width" }, + "support_offset": { "value": "1.2 if support_structure == 'tree' else 0.8" }, + "support_pattern": { "value": "'gyroid' if support_structure == 'tree' else 'lines'" }, + "support_roof_height": { "minimum_value_warning": 0 }, + "support_structure": { "value": "'normal'" }, + "support_top_distance": { "maximum_value_warning": "3*layer_height" }, + "support_tree_angle": { "value": 50 }, + "support_tree_angle_slow": { "value": 35 }, + "support_tree_bp_diameter": { "value": 15 }, + "support_tree_branch_diameter": { "value": 8 }, + "support_tree_tip_diameter": { "value": 1.0 }, + "support_tree_top_rate": { "value": 20 }, + "support_xy_distance_overhang": { "value": "machine_nozzle_size" }, + "support_z_distance": { "value": "0.4*material_shrinkage_percentage_z/100.0" }, + "top_bottom_thickness": { "value": "round(4*layer_height, 2)" }, + "travel_avoid_other_parts": { "value": true }, + "travel_avoid_supports": { "value": true }, + "wall_0_acceleration": { "value": 1000 }, + "wall_0_deceleration": { "value": 1000 }, + "wall_0_end_speed_ratio": { "value": 100 }, + "wall_0_speed_split_distance": { "value": 0.2 }, + "wall_0_start_speed_ratio": { "value": 100 }, + "wall_0_wipe_dist": { "value": 0 }, + "wall_material_flow": { "value": 95 }, + "wall_overhang_angle": { "value": 45 }, + "wall_x_material_flow": { "value": 100 }, + "xy_offset": { "value": 0.05 }, + "z_seam_corner": { "value": "'z_seam_corner_weighted'" }, + "z_seam_position": { "value": "'backright'" }, + "z_seam_type": { "value": "'sharpest_corner'" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_sketch.def.json b/resources/definitions/ultimaker_sketch.def.json new file mode 100644 index 0000000000..a49dd432af --- /dev/null +++ b/resources/definitions/ultimaker_sketch.def.json @@ -0,0 +1,209 @@ +{ + "version": 2, + "name": "MakerBot Sketch", + "inherits": "ultimaker", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-sketch", + "platform": "ultimaker_sketch_platform.obj", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "eazao_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "ultimaker_rapidrinse_175", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_", + "generic_", + "ultimaker_asa", + "ultimaker_abs", + "ultimaker_nylon", + "ultimaker_pva", + "ultimaker_rapidrinse", + "ultimaker_sr30", + "ultimaker_petg", + "basf_", + "jabil_", + "polymaker_", + "ultimaker_pc-abs", + "ultimaker_pc-abs-fr" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker_sketch_extruder" }, + "preferred_material": "ultimaker_pla_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "0.4mm", + "reference_machine_id": "sketch", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "variants_name_has_translation": true, + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": + { + "enabled": false, + "value": false + }, + "adhesion_type": { "value": "'skirt'" }, + "brim_width": { "value": "3" }, + "cool_during_extruder_switch": + { + "enabled": false, + "value": false + }, + "cool_fan_full_at_height": { "value": "layer_height + layer_height_0" }, + "cool_fan_speed": { "value": 100 }, + "cool_fan_speed_0": { "value": 0 }, + "cool_min_layer_time": { "value": 8 }, + "extruder_prime_pos_abs": { "default_value": true }, + "fill_outline_gaps": { "value": false }, + "gantry_height": { "value": "60" }, + "infill_angles": { "value": "[45,45,45,45,45,135,135,135,135,135]" }, + "infill_before_walls": { "value": false }, + "infill_overlap": { "value": 0 }, + "infill_pattern": { "value": "'zigzag'" }, + "infill_sparse_density": { "value": 20 }, + "infill_wipe_dist": { "value": 0 }, + "initial_layer_line_width_factor": { "value": 125 }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": + { + "enabled": false, + "value": false + }, + "layer_height_0": { "value": "layer_height * 1.25" }, + "layer_start_x": { "value": "sum(extruderValues('machine_extruder_start_pos_x')) / len(extruderValues('machine_extruder_start_pos_x'))" }, + "layer_start_y": { "value": "sum(extruderValues('machine_extruder_start_pos_y')) / len(extruderValues('machine_extruder_start_pos_y'))" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 150 }, + "machine_end_gcode": { "default_value": "M107; Disable Fan; \n; End of print; \n; End GCode\nM104 S0 T0; Set Toolhead Temp to 0\nM140 S0 T0; Set Platform Temp to 0\nG162 Z F1800; Move to max axes position\nG28 X Y; Home\nM652; Turn off back fan\nM132 X Y Z A B; Set Home Position\nG91; Use Relative Positioning\nM18; Disable Axes\n\n" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "Griffin" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 150 }, + "machine_max_feedrate_x": { "default_value": 300 }, + "machine_max_feedrate_y": { "default_value": 300 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "MakerBot Sketch" }, + "machine_nozzle_cool_down_speed": { "default_value": 0.8 }, + "machine_nozzle_heat_up_speed": { "default_value": 1.4 }, + "machine_start_gcode": { "default_value": "M140 S50 T0; Set Platform Temp\nM104 S220 T0; Set Extruder Temp\nG90; Use Absolute Positioning\nG28; Home\nM132 X Y Z A B; Set Current Position to Home\nG161 X Y F3300; Move to min axes positions\nM7 T0; Wait For Platform to Heat\nM6 T0; Wait For Extruders to Heat\nM651; Turn on back fan\nM907 X100 Y100 Z40 A80 B20; Set Stepper Currents\nM106; Enable Cooling Fan\n; Purge Line\nG92 E0; Reset Extruder Axis Position\nG1 X-26.18 Y-75.90 Z0.200 F420\nG1 X26.18 Y-75.90 E10\nG92 E0; Reset Extruder Axis Position\n; Start GCode\n" }, + "machine_width": { "default_value": 150 }, + "material_bed_temperature": + { + "maximum_value": 100, + "maximum_value_warning": 70 + }, + "material_bed_temperature_layer_0": + { + "maximum_value": 100, + "maximum_value_warning": 70 + }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "default_value": 100 }, + "material_print_temperature": + { + "maximum_value": 240, + "maximum_value_warning": 230 + }, + "min_bead_width": + { + "minimum_value": "line_width * 0.5", + "minimum_value_warning": "line_width * 0.75", + "value": "line_width" + }, + "min_wall_line_width": + { + "minimum_value": "line_width * 0.5", + "minimum_value_warning": "line_width * 0.75", + "value": "line_width" + }, + "multiple_mesh_overlap": { "value": "0" }, + "optimize_wall_printing_order": { "value": "True" }, + "prime_blob_enable": + { + "default_value": true, + "enabled": true, + "value": "resolveOrValue('print_sequence') != 'one_at_a_time'" + }, + "print_sequence": { "enabled": false }, + "raft_margin": { "value": "5" }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": + { + "maximum_value": 6, + "maximum_value_warning": 5.75, + "value": 5.5 + }, + "retraction_combing": { "value": "'no_outer_surfaces'" }, + "retraction_min_travel": { "value": "2 * line_width" }, + "retraction_prime_speed": { "value": "15" }, + "retraction_speed": { "value": "25" }, + "roofing_material_flow": { "value": 100 }, + "skin_material_flow": { "value": 95 }, + "skin_material_flow_layer_0": { "value": 100 }, + "skirt_brim_line_width": { "value": 1 }, + "skirt_brim_speed": { "value": 15 }, + "skirt_height": { "value": 3 }, + "speed_print": { "value": 50 }, + "speed_roofing": { "value": "0.8 * speed_print" }, + "speed_support": { "value": "0.7 * speed_print" }, + "speed_support_interface": { "value": "speed_topbottom" }, + "speed_topbottom": { "value": "speed_roofing" }, + "speed_travel": { "value": 80 }, + "speed_wall": { "value": "0.5 * speed_print" }, + "speed_wall_0": { "value": "1 * speed_wall" }, + "speed_wall_x": { "value": "1 * speed_wall" }, + "speed_z_hop": { "value": 10 }, + "support_angle": { "value": "45" }, + "support_structure": { "value": "'tree'" }, + "top_bottom_thickness": { "value": "4 * layer_height" }, + "travel_avoid_distance": { "value": "machine_nozzle_tip_outer_diameter / 2 * 1.5" }, + "travel_avoid_supports": { "value": true }, + "wall_0_inset": { "value": "0" }, + "wall_0_material_flow_layer_0": { "value": "1 * material_flow" }, + "wall_thickness": { "value": "2 * machine_nozzle_size" }, + "wall_x_material_flow": { "value": "0.95 * material_flow" }, + "wall_x_material_flow_layer_0": { "value": "1 * material_flow" }, + "xy_offset": { "value": 0 }, + "xy_offset_layer_0": { "value": 0 }, + "z_seam_corner": { "value": "'z_seam_corner_any'" }, + "zig_zaggify_infill": { "value": "gradual_infill_steps == 0" } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_sketch_large.def.json b/resources/definitions/ultimaker_sketch_large.def.json new file mode 100644 index 0000000000..49ae05a614 --- /dev/null +++ b/resources/definitions/ultimaker_sketch_large.def.json @@ -0,0 +1,41 @@ +{ + "version": 2, + "name": "MakerBot Sketch Large", + "inherits": "ultimaker_sketch", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-sketch", + "platform": "ultimaker_sketch_large_platform.obj", + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker_sketch_large_extruder" }, + "preferred_material": "ultimaker_pla_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "0.4mm", + "reference_machine_id": "sketch_large", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "variants_name_has_translation": true, + "weight": -1 + }, + "overrides": + { + "machine_depth": { "default_value": 200 }, + "machine_height": { "default_value": 250 }, + "machine_name": { "default_value": "MakerBot Sketch Large" }, + "machine_width": { "default_value": 220 }, + "retraction_amount": + { + "maximum_value": 6.5, + "maximum_value_warning": 6.25, + "value": 6 + }, + "retraction_prime_speed": { "value": "retraction_speed * 0.8" }, + "speed_travel": { "value": 150 } + } +} \ No newline at end of file diff --git a/resources/definitions/ultimaker_sketch_sprint.def.json b/resources/definitions/ultimaker_sketch_sprint.def.json new file mode 100644 index 0000000000..529abc0940 --- /dev/null +++ b/resources/definitions/ultimaker_sketch_sprint.def.json @@ -0,0 +1,402 @@ +{ + "version": 2, + "name": "MakerBot Sketch Sprint", + "inherits": "ultimaker", + "metadata": + { + "visible": true, + "author": "Ultimaker", + "manufacturer": "Ultimaker B.V.", + "file_formats": "application/x-makerbot-sketch", + "platform": "ultimaker_sketch_sprint_platform.obj", + "exclude_materials": [ + "dsm_", + "Essentium_", + "imade3d_", + "chromatik_", + "3D-Fuel_", + "bestfilament_", + "eazao_", + "emotiontech_", + "eryone_", + "eSUN_", + "Extrudr_", + "fabtotum_", + "fdplast_", + "filo3d_", + "goofoo_", + "ideagen3D_", + "imade3d_", + "innofill_", + "layer_one_", + "leapfrog_", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_", + "tizyx_", + "verbatim_", + "Vertex_", + "volumic_", + "xyzprinting_", + "zyyx_pro_", + "octofiber_", + "fiberlogy_", + "generic_", + "basf_", + "jabil_", + "polymaker_", + "ultimaker_asa", + "ultimaker_abs", + "ultimaker_nylon", + "ultimaker_pva", + "ultimaker_rapidrinse", + "ultimaker_sr30", + "ultimaker_petg", + "ultimaker_pc-abs", + "ultimaker_pc-abs-fr" + ], + "has_machine_quality": true, + "has_materials": true, + "has_textured_buildplate": true, + "has_variants": true, + "machine_extruder_trains": { "0": "ultimaker_sketch_sprint_extruder" }, + "platform_offset": [ + 0, + 0, + 0 + ], + "platform_texture": "MakerbotSketchSprint.png", + "preferred_material": "ultimaker_pla_175", + "preferred_quality_type": "draft", + "preferred_variant_name": "0.4mm", + "reference_machine_id": "sketch_sprint", + "supports_network_connection": true, + "supports_usb_connection": false, + "variants_name": "Extruder", + "variants_name_has_translation": true, + "weight": -1 + }, + "overrides": + { + "acceleration_enabled": { "value": true }, + "acceleration_layer_0": { "value": "acceleration_print * 0.05" }, + "acceleration_print": { "value": 10000 }, + "acceleration_print_layer_0": { "value": "acceleration_layer_0" }, + "acceleration_roofing": { "value": "acceleration_print * 0.2" }, + "acceleration_skirt_brim": { "value": "acceleration_layer_0" }, + "acceleration_topbottom": { "value": "acceleration_print * 0.2" }, + "acceleration_travel": { "value": "acceleration_print" }, + "acceleration_travel_enabled": { "value": true }, + "acceleration_travel_layer_0": { "value": "acceleration_travel * 0.2" }, + "acceleration_wall": { "value": "acceleration_print * 0.5" }, + "acceleration_wall_0_roofing": { "value": "acceleration_wall * 2/5" }, + "acceleration_wall_x_roofing": { "value": "acceleration_wall * 2/5" }, + "adhesion_type": { "value": "'none'" }, + "bottom_layers": { "value": 3 }, + "bridge_skin_density": { "value": 100 }, + "bridge_skin_density_2": { "value": 75 }, + "bridge_skin_density_3": { "value": 80 }, + "bridge_skin_material_flow_3": { "value": 110 }, + "bridge_skin_speed": { "value": 50 }, + "bridge_skin_speed_2": { "value": 50 }, + "bridge_skin_speed_3": { "value": 50 }, + "bridge_sparse_infill_max_density": { "value": 15 }, + "bridge_wall_min_length": { "value": 2.4 }, + "bridge_wall_speed": { "value": 20 }, + "brim_gap": { "value": 0.32 }, + "brim_inside_margin": { "value": 1.6 }, + "brim_line_count": { "value": 3 }, + "brim_width": { "value": 2.4 }, + "build_volume_fan_nr": { "value": 101 }, + "cool_fan_full_layer": { "value": "1 if adhesion_type == 'raft' else 3" }, + "cool_fan_speed_0": { "value": 0 }, + "cool_min_layer_time": { "value": 3 }, + "cool_min_layer_time_fan_speed_max": { "value": 10 }, + "cool_min_speed": { "value": 20 }, + "default_material_print_temperature": + { + "maximum_value": 280, + "maximum_value_warning": 240 + }, + "gantry_height": { "value": 27.5 }, + "gradual_infill_steps": { "value": 0 }, + "gradual_support_infill_steps": { "value": 0 }, + "group_outer_walls": { "value": false }, + "infill_angles": + { + "value": [ + 135 + ] + }, + "infill_before_walls": { "value": false }, + "infill_line_width": { "value": "0.45 if layer_height == 0.2 else 0.4" }, + "infill_overlap": { "value": 10 }, + "infill_pattern": { "value": "'lines'" }, + "infill_sparse_density": { "value": 15 }, + "infill_wipe_dist": { "value": 0 }, + "initial_layer_line_width_factor": { "value": 150 }, + "inset_direction": { "value": "'inside_out'" }, + "jerk_enabled": + { + "enabled": false, + "value": false + }, + "jerk_travel_enabled": { "enabled": false }, + "layer_height_0": { "value": "layer_height if adhesion_type == 'raft' else layer_height * 1.25" }, + "line_width": { "value": 0.42 }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 221.5 }, + "machine_end_gcode": { "default_value": "M104 S0 T0\nM140 S0 T0\nG162 Z F1800\nG28 X Y\nM132 X Y A B\nM652\nG91" }, + "machine_extruder_count": { "default_value": 1 }, + "machine_gcode_flavor": { "default_value": "RepRap (Marlin/Sprinter)" }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 220.4 }, + "machine_max_feedrate_x": { "default_value": 600 }, + "machine_max_feedrate_y": { "default_value": 600 }, + "machine_max_feedrate_z": { "default_value": 40 }, + "machine_min_cool_heat_time_window": { "value": "15" }, + "machine_name": { "default_value": "MakerBot Sketch Sprint" }, + "machine_start_gcode": { "default_value": "G28\nM132 X Y Z A B\nG1 Z50.000 F420\nG161 X Y F3300\nM7 T0\nM6 T0\nM651 S255\nG1 Z0.25 F6000\nG1 E-1.5 F800\nG1 E2 F800\nG1 X111 Y111 Z0.25 F4800\nG1 X111 Y-111 E25 F1200" }, + "machine_width": { "default_value": 221.5 }, + "material_bed_temp_wait": { "value": "False" }, + "material_bed_temperature": + { + "maximum_value": 100, + "maximum_value_warning": 70 + }, + "material_bed_temperature_layer_0": + { + "maximum_value": 100, + "maximum_value_warning": 70 + }, + "material_diameter": { "default_value": 1.75 }, + "material_flow": { "default_value": 100 }, + "material_print_temperature": + { + "maximum_value": 260, + "maximum_value_warning": 240 + }, + "min_bead_width": { "value": 0.3 }, + "multiple_mesh_overlap": { "value": "0" }, + "print_sequence": { "enabled": false }, + "raft_airgap": { "value": 0.35 }, + "raft_base_acceleration": { "value": "acceleration_layer_0" }, + "raft_base_speed": + { + "maximum_value": "raft_speed", + "maximum_value_warning": "raft_speed * 1/2", + "value": "raft_speed * 1/4" + }, + "raft_interface_acceleration": { "value": "acceleration_print * 0.2" }, + "raft_interface_line_width": { "value": 0.7 }, + "raft_interface_speed": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "raft_speed * 3/4" + }, + "raft_interface_wall_count": { "value": "raft_wall_count" }, + "raft_margin": { "value": "1.5" }, + "raft_smoothing": { "value": "9.5" }, + "raft_speed": { "value": 200 }, + "raft_surface_acceleration": { "value": "acceleration_print * 0.5" }, + "raft_surface_line_width": { "value": 0.4 }, + "raft_surface_speed": + { + "maximum_value": 300, + "maximum_value_warning": 275 + }, + "raft_surface_wall_count": { "value": "raft_wall_count" }, + "raft_wall_count": { "value": 2 }, + "retract_at_layer_change": { "value": true }, + "retraction_amount": { "value": "1.0" }, + "retraction_combing": { "value": "'all'" }, + "retraction_combing_max_distance": { "value": 10 }, + "retraction_count_max": { "value": 90 }, + "retraction_extrusion_window": { "value": 1.2 }, + "retraction_hop": { "value": 0.4 }, + "retraction_hop_enabled": { "value": true }, + "retraction_hop_only_when_collides": { "value": true }, + "retraction_min_travel": { "value": 0.8 }, + "retraction_prime_speed": { "value": "35" }, + "retraction_speed": { "value": "35" }, + "seam_overhang_angle": { "value": 30 }, + "skin_edge_support_thickness": { "value": 0 }, + "skin_material_flow": { "value": "material_flow" }, + "skin_material_flow_layer_0": { "value": "material_flow * 0.95" }, + "skin_monotonic": { "value": true }, + "skin_outline_count": { "value": 0 }, + "skin_overlap": { "value": 10 }, + "skirt_brim_minimal_length": { "value": 250 }, + "skirt_gap": { "value": 1.2 }, + "skirt_height": { "value": 1 }, + "small_feature_speed_factor": { "value": 10 }, + "small_hole_max_size": { "value": 0 }, + "speed_equalize_flow_width_factor": { "value": 100 }, + "speed_infill": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "speed_print if infill_sparse_density < 70 else speed_print * 0.8" + }, + "speed_layer_0": + { + "maximum_value": 200, + "maximum_value_warning": 175, + "value": "round(8/35 * speed_print)" + }, + "speed_print": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": 250 + }, + "speed_roofing": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "round(9/14 * speed_print)" + }, + "speed_slowdown_layers": { "value": 2 }, + "speed_support": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "1 * speed_print" + }, + "speed_support_bottom": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "round(3/7 * speed_support)" + }, + "speed_support_infill": + { + "maximum_value": 300, + "maximum_value_warning": 275 + }, + "speed_support_interface": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "round(23/35 * speed_support)" + }, + "speed_support_roof": + { + "maximum_value": 300, + "maximum_value_warning": 275 + }, + "speed_topbottom": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "round(9/14 * speed_print)" + }, + "speed_travel": + { + "maximum_value": 600, + "maximum_value_warning": 550, + "value": 500 + }, + "speed_travel_layer_0": + { + "maximum_value": 550, + "maximum_value_warning": 500, + "value": 250 + }, + "speed_wall": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "2/5 * speed_print" + }, + "speed_wall_0": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "1 * speed_wall" + }, + "speed_wall_0_roofing": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "speed_wall_0" + }, + "speed_wall_x": + { + "maximum_value": 300, + "maximum_value_warning": 275, + "value": "round(1.428575 * speed_wall,0)" + }, + "speed_wall_x_roofing": + { + "maximum_value": 300, + "maximum_value_warning": 275 + }, + "speed_z_hop": + { + "maximum_value": 24, + "maximum_value_warning": 22, + "value": 20 + }, + "support_angle": { "value": "60" }, + "support_bottom_density": { "value": "80 if support_structure == 'tree' else support_infill_rate" }, + "support_bottom_distance": { "value": 0.2 }, + "support_bottom_enable": { "value": true }, + "support_bottom_height": { "value": "layer_height if support_structure == 'tree' else layer_height * 2" }, + "support_bottom_offset": { "value": "0 if support_structure == 'tree' else support_interface_offset" }, + "support_bottom_wall_count": { "value": "1 if support_structure == 'tree' else 0" }, + "support_brim_line_count": { "value": 5 }, + "support_infill_angles": + { + "value": [ + 45 + ] + }, + "support_infill_rate": { "value": 15 }, + "support_interface_density": { "value": 80 }, + "support_interface_enable": { "value": true }, + "support_interface_height": { "value": "layer_height * 3" }, + "support_interface_material_flow": { "value": "material_flow" }, + "support_interface_offset": { "value": 1 }, + "support_interface_pattern": { "value": "'lines'" }, + "support_interface_wall_count": { "value": 0 }, + "support_line_width": { "value": 0.32 }, + "support_material_flow": { "value": "material_flow * 0.9" }, + "support_offset": { "value": 1.6 }, + "support_pattern": { "value": "'lines'" }, + "support_roof_height": { "value": "support_interface_height" }, + "support_roof_wall_count": { "value": "support_interface_wall_count" }, + "support_top_distance": { "value": "support_z_distance" }, + "support_use_towers": { "value": false }, + "support_xy_distance": { "value": 0.3 }, + "support_xy_overrides_z": { "value": "'xy_overrides_z'" }, + "support_z_distance": { "value": "0.2 if support_structure == 'tree' else 0.25" }, + "top_bottom_thickness": { "value": "5 * layer_height" }, + "top_layers": { "value": 5 }, + "travel_avoid_distance": { "value": 0.625 }, + "travel_avoid_supports": { "value": true }, + "wall_0_inset": { "value": "0" }, + "wall_0_material_flow_layer_0": { "value": "material_flow * 0.95" }, + "wall_0_wipe_dist": { "value": 0.2 }, + "wall_line_width_x": { "value": 0.58 }, + "wall_overhang_angle": { "value": 35 }, + "wall_overhang_speed_factors": + { + "minimum_value_warning": 15, + "value": [ + 18 + ] + }, + "wall_thickness": { "value": 1 }, + "wall_x_material_flow_layer_0": { "value": "material_flow" }, + "xy_offset": { "value": 0 }, + "xy_offset_layer_0": { "value": -0.1 }, + "z_seam_corner": { "value": "'z_seam_corner_inner'" }, + "z_seam_position": { "value": "'backleft'" }, + "z_seam_type": { "value": "'sharpest_corner'" }, + "zig_zaggify_infill": { "value": true } + } +} \ No newline at end of file diff --git a/resources/definitions/uni_200.def.json b/resources/definitions/uni_200.def.json index 9b1d498408..c58264e1ee 100644 --- a/resources/definitions/uni_200.def.json +++ b/resources/definitions/uni_200.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_200_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/uni_250.def.json b/resources/definitions/uni_250.def.json index a6300a32e2..ae2aad9714 100644 --- a/resources/definitions/uni_250.def.json +++ b/resources/definitions/uni_250.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_250_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/uni_300.def.json b/resources/definitions/uni_300.def.json index a5c8be60a6..6d801b68f8 100644 --- a/resources/definitions/uni_300.def.json +++ b/resources/definitions/uni_300.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_300_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/uni_mini.def.json b/resources/definitions/uni_mini.def.json index 5c08db9fb3..be327eef4a 100644 --- a/resources/definitions/uni_mini.def.json +++ b/resources/definitions/uni_mini.def.json @@ -7,6 +7,7 @@ "visible": true, "author": "Nail` Gimadeev (C)", "platform": "uni_mini_platform.stl", + "has_textured_buildplate": true, "platform_texture": "uni.png", "quality_definition": "uni_base" }, diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index dc6cd255bb..d08166d60d 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -119,7 +119,12 @@ "travel_avoid_other_parts": { "default_value": false }, "wall_line_width": { "value": "machine_nozzle_size" }, "wall_overhang_angle": { "default_value": 75 }, - "wall_overhang_speed_factor": { "default_value": 50 }, + "wall_overhang_speed_factors": + { + "default_value": [ + 50 + ] + }, "zig_zaggify_infill": { "value": true } } } \ No newline at end of file diff --git a/resources/definitions/voron2_stealthchanger_base.def.json b/resources/definitions/voron2_stealthchanger_base.def.json index e1db1d24c3..3fccc15db3 100644 --- a/resources/definitions/voron2_stealthchanger_base.def.json +++ b/resources/definitions/voron2_stealthchanger_base.def.json @@ -24,6 +24,7 @@ "machine_end_gcode": { "default_value": "PRINT_END" }, "machine_extruder_count": { "default_value": 1 }, "machine_name": { "default_value": "VORON2 StealthChanger" }, - "machine_start_gcode": { "default_value": "PRINT_START TOOL_TEMP={material_print_temperature_layer_0} T{initial_extruder_nr}_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0} TOOL={initial_extruder_nr}" } + "machine_start_gcode": { "default_value": "PRINT_START TOOL_TEMP={material_print_temperature_layer_0} T{initial_extruder_nr}_TEMP={material_print_temperature_layer_0} BED_TEMP={material_bed_temperature_layer_0} TOOL={initial_extruder_nr}" }, + "machine_start_gcode_first": { "default_value": true } } } \ No newline at end of file diff --git a/resources/definitions/vzbot_base.def.json b/resources/definitions/vzbot_base.def.json index 4efdbc2f66..a447f1acdb 100644 --- a/resources/definitions/vzbot_base.def.json +++ b/resources/definitions/vzbot_base.def.json @@ -195,7 +195,12 @@ "travel_avoid_other_parts": { "default_value": false }, "wall_line_width": { "value": "machine_nozzle_size" }, "wall_overhang_angle": { "default_value": 75 }, - "wall_overhang_speed_factor": { "default_value": 50 }, + "wall_overhang_speed_factors": + { + "default_value": [ + 50 + ] + }, "xy_offset_layer_0": { "value": -0.3 }, "z_seam_type": { "value": "'back'" }, "zig_zaggify_infill": { "value": true } diff --git a/resources/definitions/zyyx_agile.def.json b/resources/definitions/zyyx_agile.def.json deleted file mode 100644 index 4f57045e40..0000000000 --- a/resources/definitions/zyyx_agile.def.json +++ /dev/null @@ -1,63 +0,0 @@ -{ - "version": 2, - "name": "Zyyx Agile", - "inherits": "fdmprinter", - "metadata": - { - "visible": true, - "author": "Magicfirm Europe", - "manufacturer": "Magicfirm Europe", - "file_formats": "application/x3g", - "platform": "zyyx_platform.3mf", - "has_machine_quality": true, - "machine_extruder_trains": { "0": "zyyx_agile_extruder_0" }, - "machine_x3g_variant": "z", - "preferred_material": "zyyx_pro_pla", - "preferred_quality_type": "normal", - "quality_definition": "zyyx_agile" - }, - "overrides": - { - "gantry_height": { "value": "10" }, - "infill_overlap": { "value": "12 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, - "machine_center_is_zero": { "default_value": true }, - "machine_depth": { "default_value": 225 }, - "machine_end_gcode": { "default_value": "; ZYYX 3D Printer end gcode\nM73 P100 ; end build progress\nG0 Z195 F1000 ; send Z axis to bottom of machine\nM104 S0 T0 ; cool down extruder\nM127 ; stop blower fan\nG162 X Y F3000 ; home XY maximum\nM18 ; disable stepper\nM70 P5 (ZYYX Print Finished!)\nM72 P1 ; play Ta-Da song\n" }, - "machine_gcode_flavor": { "default_value": "Makerbot" }, - "machine_head_with_fans_polygon": - { - "default_value": [ - [-37, 50], - [25, 50], - [25, -40], - [-37, -40] - ] - }, - "machine_height": { "default_value": 195 }, - "machine_name": { "default_value": "ZYYX Agile" }, - "machine_start_gcode": { "default_value": "; ZYYX 3D Printer start gcode\nM73 P0; enable build progress\nG21; set units to mm\nG90; set positioning to absolute\nG130 X80 Y80 A127 B127 ; Set Stepper Vref to default value\nG162 X Y F3000; home XY axes maximum\nM133 T0 ; stabilize extruder temperature\nG161 Z F450\nG161 Z F450; home Z axis minimum\nG92 X0 Y0 Z0 E0\nG1 X0 Y0 Z5 F200\nG161 Z F200; home Z axis minimum again\nG92 X0 Y0 Z0 E0\nM131 A; store surface calibration point 1\nG1 X0 Y0 Z5 F200\nG1 X-177 Y0 Z5 F3000; move to 2nd probing point\nG161 Z F200\nM131 B; store surface calibration point 2\nG92 X-177 Y0 Z0 E0\nG1 X-177 Y0 Z5 F200\nG1 X0 Y0 Z5 F3000; move to home point\nG161 Z F200; home Z axis minimum again\nG92 X0 Y0 Z0 E0; set reference again\nG1 X0 Y0 Z5 F200; clear Z\nG1 X0 Y-225 Z5 F3000; move to 3rd calibration point\nG161 Z F200\nM131 AB; store surface calibration point 3\nM132 AB; activate auto leveling\nG92 X0 Y-225 Z0 E0\nG1 X0 Y-225 Z5 F200\nG162 X Y F3000\nG161 Z F200\nG92 X135 Y115 Z0 E0\nM132 Z; Recall stored home offset for Z axis\nG1 X135 Y115 Z5 F450; clear nozzle from hole\nG1 X0 Y115 Z5 F3000; clear nozzle from hole\nG92 E0 ; Set E to 0" }, - "machine_steps_per_mm_e": { "default_value": 96.27520187033366 }, - "machine_steps_per_mm_x": { "default_value": 88.888889 }, - "machine_steps_per_mm_y": { "default_value": 88.888889 }, - "machine_steps_per_mm_z": { "default_value": 400 }, - "machine_width": { "default_value": 265 }, - "material_final_print_temperature": { "value": "material_print_temperature" }, - "material_initial_print_temperature": { "value": "material_print_temperature" }, - "raft_airgap": { "default_value": 0.15 }, - "raft_margin": { "default_value": 6 }, - "retract_at_layer_change": { "default_value": true }, - "retraction_amount": { "default_value": 0.7 }, - "retraction_speed": { "default_value": 15 }, - "speed_layer_0": { "value": 15 }, - "speed_print": { "default_value": 50 }, - "speed_travel": { "value": 80 }, - "speed_wall": { "value": 25 }, - "speed_wall_x": { "value": 35 }, - "support_interface_density": { "default_value": 80 }, - "support_interface_enable": { "default_value": true }, - "support_interface_height": { "default_value": 0.8 }, - "support_interface_pattern": { "default_value": "grid" }, - "travel_avoid_other_parts": { "default_value": false }, - "travel_retract_before_outer_wall": { "default_value": true } - } -} \ No newline at end of file diff --git a/resources/definitions/zyyx_plus.def.json b/resources/definitions/zyyx_plus.def.json new file mode 100644 index 0000000000..4df6e50a85 --- /dev/null +++ b/resources/definitions/zyyx_plus.def.json @@ -0,0 +1,219 @@ +{ + "version": 2, + "name": "ZYYX+", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Theodor Hansson", + "manufacturer": "ZYYX Labs AB", + "file_formats": "application/x3g", + "platform": "zyyx_platform.3mf", + "exclude_materials": [ + "3D-Fuel_PLA_PRO_Black", + "3D-Fuel_PLA_SnapSupport", + "bestfilament_abs_skyblue", + "bestfilament_petg_orange", + "bestfilament_pla_green", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "goofoo_abs", + "goofoo_asa", + "goofoo_bronze_pla", + "goofoo_emarble_pla", + "goofoo_esilk_pla", + "goofoo_hips", + "goofoo_pa_cf", + "goofoo_pa", + "goofoo_pc", + "goofoo_peek", + "goofoo_petg", + "goofoo_pla", + "goofoo_pva", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "emotiontech_pa6cf", + "emotiontech_pa6gf", + "emotiontech_pc", + "emotiontech_pekk", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pla_hr_870", + "emotiontech_pva-m", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "eryone_petg", + "eryone_pla_glow", + "eryone_pla_matte", + "eryone_pla_wood", + "eryone_pla", + "eryone_tpu", + "eSUN_PETG_Black", + "eSUN_PETG_Grey", + "eSUN_PETG_Purple", + "eSUN_PLA_PRO_Black", + "eSUN_PLA_PRO_Grey", + "eSUN_PLA_PRO_Purple", + "eSUN_PLA_PRO_White", + "Extrudr_GreenTECPro_Anthracite_175", + "Extrudr_GreenTECPro_Black_175", + "Extrudr_GreenTECPro_Blue_175", + "Extrudr_GreenTECPro_Nature_175", + "Extrudr_GreenTECPro_Red_175", + "Extrudr_GreenTECPro_Silver_175", + "Extrudr_GreenTECPro_White_175", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fdplast_abs_tomato", + "fdplast_petg_gray", + "fdplast_pla_olive", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "ideagen3D_ToughPLA", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "layer_one_black_pla", + "layer_one_dark_gray_pla", + "layer_one_white_pla", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla_bois", + "tizyx_pla", + "tizyx_pva", + "ultimaker_abscf_175", + "ultimaker_absr_175", + "ultimaker_asa_175", + "ultimaker_nylon12-cf_175", + "ultimaker_pla_175", + "ultimaker_pva_175", + "ultimaker_rapidrinse_175", + "ultimaker_sr30_175", + "ultimaker_tough_pla_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "volumic_abs_ultra", + "volumic_arma_ultra", + "volumic_asa_ultra", + "volumic_br80_ultra", + "volumic_bumper_ultra", + "volumic_cu80_ultra", + "volumic_flex93_ultra", + "volumic_medical_ultra", + "volumic_nylon_ultra", + "volumic_pekk_carbone", + "volumic_petg_ultra", + "volumic_petgcarbone_ultra", + "volumic_pla_ultra", + "volumic_pp_ultra", + "volumic_strong_ultra", + "volumic_support_ultra", + "xyzprinting_abs", + "xyzprinting_antibact_pla", + "xyzprinting_carbon_fiber", + "xyzprinting_colorinkjet_pla", + "xyzprinting_flexible", + "xyzprinting_metallic_pla", + "xyzprinting_nylon", + "xyzprinting_pahtcf15", + "xyzprinting_pc", + "xyzprinting_petcf15", + "xyzprinting_petg", + "xyzprinting_pla", + "xyzprinting_ppgf30", + "xyzprinting_tough_pla", + "xyzprinting_tpu", + "zyyx_abs-mm", + "zyyx_abs-perf", + "zyyx_flex95a", + "zyyx_petg", + "zyyx_petg-cf", + "zyyx_pla", + "zyyx_pro_flex", + "zyyx_pro_pla", + "zyyx_procarbon", + "zyyx_proglass", + "zyyx_pronylon" + ], + "has_machine_quality": true, + "machine_extruder_trains": { "0": "zyyx_plus_extruder_0" }, + "machine_x3g_variant": "z", + "preferred_material": "generic_pla", + "preferred_quality_type": "normal", + "quality_definition": "zyyx_plus", + "setting_version": 3 + }, + "overrides": + { + "gantry_height": { "value": "10" }, + "infill_overlap": { "value": "12 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 210 }, + "machine_end_gcode": { "default_value": "; ZYYX 3D Printer end gcode\nM73 P100 ; end build progress\nG0 Z195 F1000 ; send Z axis to bottom of machine\nM104 S0 T0 ; cool down extruder\nM127 ; stop blower fan\nG162 X Y F3000 ; home XY maximum\nM18 ; disable stepper\nM70 P5 (ZYYX Print Finished!)\nM72 P1 ; play Ta-Da song\n" }, + "machine_gcode_flavor": { "default_value": "Makerbot" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-37, 50], + [25, 50], + [25, -40], + [-37, -40] + ] + }, + "machine_height": { "default_value": 195 }, + "machine_name": { "default_value": "ZYYX+" }, + "machine_start_gcode": { "default_value": "; ZYYX+ start gcode\n; Author Theodor Hansson 2024\nM73 P0; enable build progress\nM104 S{material_print_temperature_layer_0} T0; set nozzle temperature\nM126 S0; Turn off fan\nG21; set units to mm\nG90; set positioning to absolute\nG130 X80 Y80 A127 B127 ; Set Stepper Vref to default value\n\n; Home xy-axis\nG162 X Y F2500; home XY axes maximum\nG92 X0 Y0\nG1 X-5 Y-5 F2500\nG162 X Y F200; home XY axes maximum slowly\nG92 X132.5 Y120\n\n; Home z-axis\nG161 Z F1100; home Z axis minimum\nG92 Z0\nG1 Z2 F1100\nG161 Z F100; home Z axis minimum slowly\nG92 Z0\nM132 Z; Recall home offsets for Z\n\n; Calibrate point 1 (we're already at point 1)\nM131 A; store surface calibration point 1\nG1 Z2 F1100; back up from buildplate\n\n; Calibrate point 2\nG1 X-44.5 Y120 F7000; move to 2nd probing point\nG161 Z F100\nM131 B; store surface calibration point 1\nG1 Z2 F1100; back up from buildplate\n\n; Calibrate point 3\nG1 X132.5 Y-110 F7000; move to 2nd probing point\nG161 Z F100\nM131 AB; store surface calibration point 3\nG1 Z2 F1100; back up from buildplate\nM132 AB; Activate auto-leveling\nG1 Z1 F1000\n\n; Lay prime strip\nM133 T0; stabilize extruder temperature\nM126 S{cool_fan_speed_0}; Activate fan\nG4 P1000; Wait a little bit longer\nG1 X80 Y-110 Z0.2 F1000\nG1 X20 E9 F1000\nG1 X-20 E12.5 F1000\nG92 E0 ; Set E to 0\n\n; End of start gcode" }, + "machine_steps_per_mm_e": { "default_value": 96.27520187033366 }, + "machine_steps_per_mm_x": { "default_value": 88.888889 }, + "machine_steps_per_mm_y": { "default_value": 88.888889 }, + "machine_steps_per_mm_z": { "default_value": 400 }, + "machine_width": { "default_value": 265 } + } +} \ No newline at end of file diff --git a/resources/definitions/zyyx_pro.def.json b/resources/definitions/zyyx_pro.def.json new file mode 100644 index 0000000000..3fdfbe27d7 --- /dev/null +++ b/resources/definitions/zyyx_pro.def.json @@ -0,0 +1,249 @@ +{ + "version": 2, + "name": "ZYYX Pro", + "inherits": "fdmprinter", + "metadata": + { + "visible": true, + "author": "Theodor Hansson", + "manufacturer": "ZYYX Labs AB", + "file_formats": "application/x3g", + "platform": "zyyx_pro_platform.stl", + "exclude_materials": [ + "3D-Fuel_PLA_PRO_Black", + "3D-Fuel_PLA_SnapSupport", + "bestfilament_abs_skyblue", + "bestfilament_petg_orange", + "bestfilament_pla_green", + "leapfrog_abs_natural", + "leapfrog_epla_natural", + "leapfrog_pva_natural", + "goofoo_abs", + "goofoo_asa", + "goofoo_bronze_pla", + "goofoo_emarble_pla", + "goofoo_esilk_pla", + "goofoo_hips", + "goofoo_pa_cf", + "goofoo_pa", + "goofoo_pc", + "goofoo_peek", + "goofoo_petg", + "goofoo_pla", + "goofoo_pva", + "goofoo_tpe_83a", + "goofoo_tpu_87a", + "goofoo_tpu_95a", + "emotiontech_abs", + "emotiontech_absx", + "emotiontech_acetate", + "emotiontech_asax", + "emotiontech_bvoh", + "emotiontech_copa", + "emotiontech_hips", + "emotiontech_nylon_1030", + "emotiontech_nylon_1030cf", + "emotiontech_nylon_1070", + "emotiontech_pa6cf", + "emotiontech_pa6gf", + "emotiontech_pc", + "emotiontech_pekk", + "emotiontech_petg", + "emotiontech_pla", + "emotiontech_pla_hr_870", + "emotiontech_pva-m", + "emotiontech_pva-s", + "emotiontech_tpu98a", + "eryone_petg", + "eryone_pla_matte", + "eryone_pla", + "eryone_tpu", + "eSUN_PETG_Black", + "eSUN_PETG_Grey", + "eSUN_PETG_Purple", + "eSUN_PLA_PRO_Black", + "eSUN_PLA_PRO_Grey", + "eSUN_PLA_PRO_Purple", + "eSUN_PLA_PRO_White", + "Extrudr_GreenTECPro_Anthracite_175", + "Extrudr_GreenTECPro_Black_175", + "Extrudr_GreenTECPro_Blue_175", + "Extrudr_GreenTECPro_Nature_175", + "Extrudr_GreenTECPro_Red_175", + "Extrudr_GreenTECPro_Silver_175", + "Extrudr_GreenTECPro_White_175", + "verbatim_bvoh_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "chromatik_pla", + "dsm_arnitel2045_175", + "dsm_novamid1070_175", + "fabtotum_abs", + "fabtotum_nylon", + "fabtotum_pla", + "fabtotum_tpu", + "fdplast_abs_tomato", + "fdplast_petg_gray", + "fdplast_pla_olive", + "fiberlogy_hd_pla", + "filo3d_pla", + "filo3d_pla_green", + "filo3d_pla_red", + "ideagen3D_ToughPLA", + "imade3d_petg_green", + "imade3d_petg_pink", + "imade3d_pla_green", + "imade3d_pla_pink", + "imade3d_petg_175", + "imade3d_pla_175", + "innofill_innoflex60_175", + "layer_one_black_pla", + "layer_one_dark_gray_pla", + "layer_one_white_pla", + "octofiber_pla", + "polyflex_pla", + "polymax_pla", + "polyplus_pla", + "polywood_pla", + "redd_abs", + "redd_asa", + "redd_hips", + "redd_nylon", + "redd_petg", + "redd_pla", + "redd_tpe", + "tizyx_abs", + "tizyx_flex", + "tizyx_petg", + "tizyx_pla_bois", + "tizyx_pla", + "tizyx_pva", + "ultimaker_abscf_175", + "ultimaker_absr_175", + "ultimaker_asa_175", + "ultimaker_nylon12-cf_175", + "ultimaker_pla_175", + "ultimaker_pva_175", + "ultimaker_rapidrinse_175", + "ultimaker_sr30_175", + "ultimaker_tough_pla_175", + "Vertex_Delta_ABS", + "Vertex_Delta_PET", + "Vertex_Delta_PLA_Glitter", + "Vertex_Delta_PLA_Mat", + "Vertex_Delta_PLA_Satin", + "Vertex_Delta_PLA_Wood", + "Vertex_Delta_PLA", + "Vertex_Delta_TPU", + "volumic_abs_ultra", + "volumic_arma_ultra", + "volumic_asa_ultra", + "volumic_br80_ultra", + "volumic_bumper_ultra", + "volumic_cu80_ultra", + "volumic_flex93_ultra", + "volumic_medical_ultra", + "volumic_nylon_ultra", + "volumic_pekk_carbone", + "volumic_petg_ultra", + "volumic_petgcarbone_ultra", + "volumic_pla_ultra", + "volumic_pp_ultra", + "volumic_strong_ultra", + "volumic_support_ultra", + "xyzprinting_abs", + "xyzprinting_antibact_pla", + "xyzprinting_carbon_fiber", + "xyzprinting_colorinkjet_pla", + "xyzprinting_flexible", + "xyzprinting_metallic_pla", + "xyzprinting_nylon", + "xyzprinting_pahtcf15", + "xyzprinting_pc", + "xyzprinting_petcf15", + "xyzprinting_petg", + "xyzprinting_pla", + "xyzprinting_ppgf30", + "xyzprinting_tough_pla", + "xyzprinting_tpu", + "zyyx_abs-mm", + "zyyx_abs-perf", + "zyyx_flex95a", + "zyyx_petg", + "zyyx_pla", + "zyyx_pro_flex", + "zyyx_pro_pla", + "zyyx_pronylon" + ], + "has_machine_quality": true, + "has_materials": true, + "has_variants": true, + "machine": "zyyx_pro", + "machine_extruder_trains": { "0": "zyyx_pro_extruder" }, + "machine_x3g_variant": "z", + "preferred_material": "generic_pla", + "preferred_variant_name": "Carbon0.6", + "quality_definition": "zyyx_pro", + "setting_version": 3, + "variants_name": "SwiftTool" + }, + "overrides": + { + "gantry_height": { "value": "10" }, + "infill_overlap": { "value": "12 if infill_sparse_density < 95 and infill_pattern != 'concentric' else 0" }, + "machine_center_is_zero": { "default_value": true }, + "machine_depth": { "default_value": 228 }, + "machine_disallowed_areas": + { + "default_value": [ + [ + [-58, 117.5], + [-58, 108], + [-50, 108], + [-50, 117.5] + ], + [ + [119, 117.5], + [119, 108], + [140, 108], + [140, 117.5] + ], + [ + [-58, -117.5], + [-58, -108], + [-50, -108], + [-50, -117.5] + ], + [ + [119, -117.5], + [119, -108], + [140, -108], + [140, -117.5] + ] + ] + }, + "machine_end_gcode": { "default_value": "; ZYYX 3D Printer end gcode\nM73 P100 ; end build progress\nG0 Z195 F1000 ; send Z axis to bottom of machine\nM104 S0 T0 ; cool down extruder\nM127 ; stop blower fan\nG162 X Y F3000 ; home XY maximum\nM18 ; disable stepper\nM70 P5 (ZYYX Print Finished!)\nM72 P1 ; play Ta-Da song\n" }, + "machine_gcode_flavor": { "default_value": "Makerbot" }, + "machine_head_with_fans_polygon": + { + "default_value": [ + [-37, 50], + [25, 50], + [25, -40], + [-37, -40] + ] + }, + "machine_heated_bed": { "default_value": true }, + "machine_height": { "default_value": 195 }, + "machine_name": { "default_value": "ZYYX Pro" }, + "machine_start_gcode": { "default_value": "; ZYYX Pro start gcode\n; Author Theodor Hansson 2024\nM73 P0; enable build progress\nM420 P20; set back fan speed 10 off 11-20 10-100%\nM140 S10 T0; set 100% heater power\nM140 S99 T0; set chamber heater negative hysteresis 19 degrees\nM140 S102 T0; set chamber heater positive hysteresis 2 degrees\nM140 S{material_bed_temperature_layer_0} T0; set chamber temperature\nM104 S{material_print_temperature_layer_0} T0; set nozzle temperature\nG21; set units to mm\nG90; set positioning to absolute\nG130 X80 Y90 A127 B127 ; Set Stepper Vref to default value\n\n; Home xy-axis\nG162 X Y F2500; home XY axes maximum\nG92 X0 Y0\nG1 X-5 Y-5 F2500\nG162 X Y F200; home XY axes maximum slowly\nG92 X135 Y114\n\n; Home z-axis\nG161 Z F1100; home Z axis minimum\nG92 Z0\nG1 Z2 F1100\nG161 Z F100; home Z axis minimum slowly\nG92 Z0\nM132 Z; Recall home offsets for Z\n\n; Calibrate point 1 (we're already at point 1)\nM131 A; store surface calibration point 1\nG1 Z2 F1100; back up from buildplate\n\n; Calibrate point 2\nG1 X-47 F7000; move to 2nd probing point\nG161 Z F100\nM131 B; store surface calibration point 1\nG1 Z2 F1100; back up from buildplate\n\n; Calibrate point 3\nG1 X135 Y-114 F7000; move to 2nd probing point\nG161 Z F100\nM131 AB; store surface calibration point 3\nG1 Z2 F1100; back up from buildplate\nM132 AB; Activate auto-leveling\n\n; Extrude material over hole\nM133 T0; stabilize extruder temperature\nM126 S{cool_fan_speed_0}; Activate fan\nG4 P1000; Wait a little bit longer\nG1 Z0.10 E500 F50\nG1 X115 Y-95 F1000\nG92 E0 ; Set E to 0\n; End of start gcode" }, + "machine_steps_per_mm_e": { "default_value": 96.27520187033366 }, + "machine_steps_per_mm_x": { "default_value": 88.888889 }, + "machine_steps_per_mm_y": { "default_value": 88.888889 }, + "machine_steps_per_mm_z": { "default_value": 400 }, + "machine_width": { "default_value": 265 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/Mark2_extruder1.def.json b/resources/extruders/Mark2_extruder1.def.json index 89992ad450..9617678f7e 100644 --- a/resources/extruders/Mark2_extruder1.def.json +++ b/resources/extruders/Mark2_extruder1.def.json @@ -14,6 +14,7 @@ "default_value": 0, "maximum_value": "1" }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 } } diff --git a/resources/extruders/Mark2_extruder2.def.json b/resources/extruders/Mark2_extruder2.def.json index 967e32d8b8..b0ea604fbb 100644 --- a/resources/extruders/Mark2_extruder2.def.json +++ b/resources/extruders/Mark2_extruder2.def.json @@ -14,6 +14,7 @@ "default_value": 1, "maximum_value": "1" }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 } } diff --git a/resources/extruders/atom3_extruder_0.def.json b/resources/extruders/atom3_extruder_0.def.json index ccc7a0bd6b..fc51a8cf03 100644 --- a/resources/extruders/atom3_extruder_0.def.json +++ b/resources/extruders/atom3_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 6 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } diff --git a/resources/extruders/bambulab_a1_extruder_0.def.json b/resources/extruders/bambulab_a1_extruder_0.def.json new file mode 100644 index 0000000000..e2a89b97c4 --- /dev/null +++ b/resources/extruders/bambulab_a1_extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1 extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X267 F18000\nG1 Y128 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1 extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1 extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S4\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1 extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1_extruder_1.def.json b/resources/extruders/bambulab_a1_extruder_1.def.json new file mode 100644 index 0000000000..b61a74d199 --- /dev/null +++ b/resources/extruders/bambulab_a1_extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1 extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X267 F18000\nG1 Y128 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1 extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1 extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S4\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1 extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1_extruder_2.def.json b/resources/extruders/bambulab_a1_extruder_2.def.json new file mode 100644 index 0000000000..d439de1d30 --- /dev/null +++ b/resources/extruders/bambulab_a1_extruder_2.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1", + "position": "2" + }, + "overrides": + { + "extruder_nr": { "default_value": 2 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1 extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X267 F18000\nG1 Y128 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1 extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1 extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S4\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1 extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1_extruder_3.def.json b/resources/extruders/bambulab_a1_extruder_3.def.json new file mode 100644 index 0000000000..13b7ec8699 --- /dev/null +++ b/resources/extruders/bambulab_a1_extruder_3.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1", + "position": "3" + }, + "overrides": + { + "extruder_nr": { "default_value": 3 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1 extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X267 F18000\nG1 Y128 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1 extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1 extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S4\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1 extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1mini_extruder_0.def.json b/resources/extruders/bambulab_a1mini_extruder_0.def.json new file mode 100644 index 0000000000..57627b20b1 --- /dev/null +++ b/resources/extruders/bambulab_a1mini_extruder_0.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1mini", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1mini extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X180 F18000\nG1 Y90 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1mini extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1mini extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E5 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1mini extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1mini_extruder_1.def.json b/resources/extruders/bambulab_a1mini_extruder_1.def.json new file mode 100644 index 0000000000..02f2a102ff --- /dev/null +++ b/resources/extruders/bambulab_a1mini_extruder_1.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1mini", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1mini extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X180 F18000\nG1 Y90 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1mini extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1mini extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E5 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1mini extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1mini_extruder_2.def.json b/resources/extruders/bambulab_a1mini_extruder_2.def.json new file mode 100644 index 0000000000..9b16132547 --- /dev/null +++ b/resources/extruders/bambulab_a1mini_extruder_2.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1mini", + "position": "2" + }, + "overrides": + { + "extruder_nr": { "default_value": 2 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1mini extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X180 F18000\nG1 Y90 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1mini extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1mini extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E5 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1mini extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_a1mini_extruder_3.def.json b/resources/extruders/bambulab_a1mini_extruder_3.def.json new file mode 100644 index 0000000000..ee63528e5f --- /dev/null +++ b/resources/extruders/bambulab_a1mini_extruder_3.def.json @@ -0,0 +1,19 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_a1mini", + "position": "3" + }, + "overrides": + { + "extruder_nr": { "default_value": 3 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": ";===== A1mini extruder end {extruder_nr} begin =====\nG392 S0\nM1007 S0 ; turn off mass estimation\nM204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X180 F18000\nG1 Y90 F9000\n\nM400\nM106 P1 S0\nM106 P2 S0\n{if material_print_temperature > 142, extruder_nr}\nM104 S{material_print_temperature, extruder_nr}\n{endif}\n\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A0 F{material_flush_purge_speed}\n\nM628 S1\nG92 E0\nG1 E-18 F{material_flush_purge_speed}\nM400\nM629 S1\n\n;===== A1mini extruder end {extruder_nr} finish =====\n" }, + "machine_extruder_start_code": { "default_value": ";===== A1mini extruder start {extruder_nr} begin =====\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\nM620.10 A1 F{material_flush_purge_speed} L{material_flush_purge_length} H{machine_nozzle_size} T{material_print_temperature, extruder_nr}\n\nM400\nG92 E0\n\n{if not prime_tower_enable}\n\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n\nM400\nM106 P1 S60\nG1 E5 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n; G1 E-{retraction_amount} F1800\nM400\nM106 P1 S178\nM400 S3\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nG1 X-3.5 F18000\nG1 X-13.5 F3000\nM400\nM106 P1 S0\n\nM622.1 S0\n\nM621 S{extruder_nr}A\nG392 S0\n\nM1007 S1\n;===== A1mini extruder start {extruder_nr} finish =====\n" }, + "material_diameter": { "default_value": 1.75 }, + "switch_extruder_retraction_amount": { "default_value": 18 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_x1_extruder_0.def.json b/resources/extruders/bambulab_x1_extruder_0.def.json new file mode 100644 index 0000000000..3ff6e83c83 --- /dev/null +++ b/resources/extruders/bambulab_x1_extruder_0.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_x1", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": "M204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if material_print_temperature > 142}\nM104 S{material_print_temperature}\n{endif}\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n\n;{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n;{endif}\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n" }, + "machine_extruder_start_code": { "default_value": "M620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n\nG92 E0\n\n; always use highest temperature to flush\n{if material_type == 'PETG'}\nM109 S260\n{elsif material_type == 'PVA'}\nM109 S210\n{else}\nM109 S{material_print_temperature}\n{endif}\n\n{if not prime_tower_enable}\n\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; FLUSH_START\nM400\nM109 S{material_print_temperature}\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n;G1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\n\nM621 S{extruder_nr}A\n" }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_x1_extruder_1.def.json b/resources/extruders/bambulab_x1_extruder_1.def.json new file mode 100644 index 0000000000..777e735fa6 --- /dev/null +++ b/resources/extruders/bambulab_x1_extruder_1.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_x1", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": "M204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if material_print_temperature > 142}\nM104 S{material_print_temperature}\n{endif}\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n\n;{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n;{endif}\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n" }, + "machine_extruder_start_code": { "default_value": "M620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n\nG92 E0\n\n; always use highest temperature to flush\n{if material_type == 'PETG'}\nM109 S260\n{elsif material_type == 'PVA'}\nM109 S210\n{else}\nM109 S{material_print_temperature}\n{endif}\n\n{if not prime_tower_enable}\n\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; FLUSH_START\nM400\nM109 S{material_print_temperature}\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n;G1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\n\nM621 S{extruder_nr}A\n" }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_x1_extruder_2.def.json b/resources/extruders/bambulab_x1_extruder_2.def.json new file mode 100644 index 0000000000..3fad4c692d --- /dev/null +++ b/resources/extruders/bambulab_x1_extruder_2.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_x1", + "position": "2" + }, + "overrides": + { + "extruder_nr": { "default_value": 2 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": "M204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if material_print_temperature > 142}\nM104 S{material_print_temperature}\n{endif}\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n\n;{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n;{endif}\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n" }, + "machine_extruder_start_code": { "default_value": "M620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n\nG92 E0\n\n; always use highest temperature to flush\n{if material_type == 'PETG'}\nM109 S260\n{elsif material_type == 'PVA'}\nM109 S210\n{else}\nM109 S{material_print_temperature}\n{endif}\n\n{if not prime_tower_enable}\n\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; FLUSH_START\nM400\nM109 S{material_print_temperature}\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n;G1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\n\nM621 S{extruder_nr}A\n" }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/bambulab_x1_extruder_3.def.json b/resources/extruders/bambulab_x1_extruder_3.def.json new file mode 100644 index 0000000000..751ec2b459 --- /dev/null +++ b/resources/extruders/bambulab_x1_extruder_3.def.json @@ -0,0 +1,18 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "bambulab_x1", + "position": "3" + }, + "overrides": + { + "extruder_nr": { "default_value": 3 }, + "machine_extruder_change_duration": { "default_value": 29 }, + "machine_extruder_end_code": { "default_value": "M204 S9000\n\nG91 ; set relative positioning\nG1 Z3.0 F1200\nG90 ; back to abolute positioning\n\nG1 X70 F21000\nG1 Y245\nG1 Y265 F3000\nM400\nM106 P1 S0\nM106 P2 S0\n\n{if material_print_temperature > 142}\nM104 S{material_print_temperature}\n{endif}\n\nM620.11 S1 I{extruder_nr} E-18 F1200\nM400\n\nG1 X90 F3000\nG1 Y255 F4000\nG1 X100 F5000\nG1 X120 F15000\nG1 X20 Y50 F21000\nG1 Y-3\n\n;{if toolchange_count == 2}\n; get travel path for change filament\n;M620.1 X[travel_point_1_x] Y[travel_point_1_y] F21000 P0\n;M620.1 X[travel_point_2_x] Y[travel_point_2_y] F21000 P1\n;M620.1 X[travel_point_3_x] Y[travel_point_3_y] F21000 P2\n;{endif}\n\nM620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n" }, + "machine_extruder_start_code": { "default_value": "M620.1 E F{material_flush_purge_speed} T{material_print_temperature, extruder_nr}\n\nG92 E0\n\n; always use highest temperature to flush\n{if material_type == 'PETG'}\nM109 S260\n{elsif material_type == 'PVA'}\nM109 S210\n{else}\nM109 S{material_print_temperature}\n{endif}\n\n{if not prime_tower_enable}\n\nM83\n; FLUSH_START\n; always use highest temperature to flush\nM400\nM1002 set_filament_type:UNKNOWN\nM109 S{material_print_temperature, extruder_nr}\nM106 P1 S60\nG1 E{material_flush_purge_length / 4.0} F{min(extruderValues('material_flush_purge_speed'))} ; do not need pulsatile flushing for start part\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{min(extruderValues('material_flush_purge_speed'))}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.23} F{material_flush_purge_speed, extruder_nr}\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\nM400\nM1002 set_filament_type:{material_type, extruder_nr}\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; WIPE\nM400\nM106 P1 S178\nM400 S3\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nG1 X-38.2 F18000\nG1 X-48.2 F3000\nM400\nM106 P1 S0\n\nM106 P1 S60\n; FLUSH_START\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\nG1 E{(material_flush_purge_length / 4.0) * 0.18} F{material_flush_purge_speed, extruder_nr}\nG1 E{(material_flush_purge_length / 4.0) * 0.02} F50\n; FLUSH_END\nG1 E-{retraction_amount * 2} F1800\nG1 E{retraction_amount * 2} F300\n\n; FLUSH_START\nM400\nM109 S{material_print_temperature}\nG1 E6 F{material_flush_purge_speed, extruder_nr} ;Compensate for filament spillage during waiting temperature\n; FLUSH_END\n\n{endif} ; prime_tower_enable\n\nM400\nG92 E0\n;G1 E-[new_retract_length_toolchange] F1800\nM106 P1 S255\nM400 S3\n\nG1 X70 F5000\nG1 X90 F3000\nG1 Y255 F4000\nG1 X105 F5000\nG1 Y265 F5000\nG1 X70 F10000\nG1 X100 F5000\nG1 X70 F10000\nG1 X100 F5000\n\nG1 X70 F10000\nG1 X80 F15000\nG1 X60\nG1 X80\nG1 X60\nG1 X80 ; shake to put down garbage\nG1 X100 F5000\nG1 X165 F15000; wipe and shake\nG1 Y256 ; move Y to aside, prevent collision\nM400\n\nM621 S{extruder_nr}A\n" }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/zyyx_agile_extruder_0.def.json b/resources/extruders/biqu_b2_extruder_0.def.json similarity index 90% rename from resources/extruders/zyyx_agile_extruder_0.def.json rename to resources/extruders/biqu_b2_extruder_0.def.json index a34d020faa..4bfb9686b3 100644 --- a/resources/extruders/zyyx_agile_extruder_0.def.json +++ b/resources/extruders/biqu_b2_extruder_0.def.json @@ -4,7 +4,7 @@ "inherits": "fdmextruder", "metadata": { - "machine": "zyyx_agile", + "machine": "biqu_b2", "position": "0" }, "overrides": diff --git a/resources/extruders/biqu_b2_extruder_1.def.json b/resources/extruders/biqu_b2_extruder_1.def.json new file mode 100644 index 0000000000..fc5778b071 --- /dev/null +++ b/resources/extruders/biqu_b2_extruder_1.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "biqu_b2", + "position": "1" + }, + "overrides": + { + "extruder_nr": { "default_value": 1 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/diy220_extruder_0.def.json b/resources/extruders/diy220_extruder_0.def.json index 4d802b4a8d..ab271d1006 100644 --- a/resources/extruders/diy220_extruder_0.def.json +++ b/resources/extruders/diy220_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } diff --git a/resources/extruders/dxu_extruder1.def.json b/resources/extruders/dxu_extruder1.def.json index de974b8174..b44f79fdac 100644 --- a/resources/extruders/dxu_extruder1.def.json +++ b/resources/extruders/dxu_extruder1.def.json @@ -14,6 +14,7 @@ "default_value": 0, "maximum_value": "1" }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_offset_x": { "default_value": 0.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/dxu_extruder2.def.json b/resources/extruders/dxu_extruder2.def.json index b4de471289..358bc69dae 100644 --- a/resources/extruders/dxu_extruder2.def.json +++ b/resources/extruders/dxu_extruder2.def.json @@ -14,6 +14,7 @@ "default_value": 1, "maximum_value": "1" }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_offset_x": { "default_value": 19.0 }, "machine_nozzle_offset_y": { "default_value": 0.0 }, "machine_nozzle_size": { "default_value": 0.4 }, diff --git a/resources/extruders/eazao_m500_extruder_0.def.json b/resources/extruders/eazao_m500_extruder_0.def.json new file mode 100644 index 0000000000..6f95c06cc9 --- /dev/null +++ b/resources/extruders/eazao_m500_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "eazao_m500", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 2.3 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/eazao_m600_extruder_0.def.json b/resources/extruders/eazao_m600_extruder_0.def.json new file mode 100644 index 0000000000..bcbad3ab0f --- /dev/null +++ b/resources/extruders/eazao_m600_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "eazao_m600", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 2.3 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/eazao_m700_extruder_0.def.json b/resources/extruders/eazao_m700_extruder_0.def.json new file mode 100644 index 0000000000..fada355172 --- /dev/null +++ b/resources/extruders/eazao_m700_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "eazao_m700", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 2.3 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/eazao_potter_extruder_0.def.json b/resources/extruders/eazao_potter_extruder_0.def.json new file mode 100644 index 0000000000..e2c1451896 --- /dev/null +++ b/resources/extruders/eazao_potter_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "eazao_potter", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 1.6 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/eazao_zero_extruder_0.def.json b/resources/extruders/eazao_zero_extruder_0.def.json index 5d34008337..f4b958fba7 100644 --- a/resources/extruders/eazao_zero_extruder_0.def.json +++ b/resources/extruders/eazao_zero_extruder_0.def.json @@ -10,7 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, - "machine_nozzle_size": { "default_value": 1.5 }, + "machine_nozzle_size": { "default_value": 1.6 }, "material_diameter": { "default_value": 1.75 } } } \ No newline at end of file diff --git a/resources/extruders/erzay3d_extruder_0.def.json b/resources/extruders/erzay3d_extruder_0.def.json index a4082a6224..8ba6c573f3 100644 --- a/resources/extruders/erzay3d_extruder_0.def.json +++ b/resources/extruders/erzay3d_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 2.5 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } diff --git a/resources/extruders/maker_starter_extruder_0.def.json b/resources/extruders/maker_starter_extruder_0.def.json index 1a8877f8ef..4154b00862 100644 --- a/resources/extruders/maker_starter_extruder_0.def.json +++ b/resources/extruders/maker_starter_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } diff --git a/resources/extruders/mendel90_extruder_0.def.json b/resources/extruders/mendel90_extruder_0.def.json index 0701164a65..b04e2d2fe9 100644 --- a/resources/extruders/mendel90_extruder_0.def.json +++ b/resources/extruders/mendel90_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } diff --git a/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json b/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json index 0258f9da9c..ec25298a5c 100644 --- a/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json +++ b/resources/extruders/structur3d_discov3ry1_complete_um2plus_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_size": { "default_value": 0.84 }, "material_diameter": { "default_value": 3.175 } } diff --git a/resources/extruders/tam_extruder_0.def.json b/resources/extruders/tam_extruder_0.def.json index b606474ff0..4e5cbe4216 100644 --- a/resources/extruders/tam_extruder_0.def.json +++ b/resources/extruders/tam_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 1.75 } } diff --git a/resources/extruders/toybox_alpha_one_two_extruder_0.def.json b/resources/extruders/toybox_alpha_one_two_extruder_0.def.json new file mode 100644 index 0000000000..f7f773257c --- /dev/null +++ b/resources/extruders/toybox_alpha_one_two_extruder_0.def.json @@ -0,0 +1,17 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "toybox_alpha_one_two", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_offset_x": { "default_value": -3.0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker2_extruder_0.def.json b/resources/extruders/ultimaker2_extruder_0.def.json index 17d0d425df..3432ace596 100644 --- a/resources/extruders/ultimaker2_extruder_0.def.json +++ b/resources/extruders/ultimaker2_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 3 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } diff --git a/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json b/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json index 0b74aae019..9ad61af313 100644 --- a/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json +++ b/resources/extruders/ultimaker2_plus_connect_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } diff --git a/resources/extruders/ultimaker2_plus_extruder_0.def.json b/resources/extruders/ultimaker2_plus_extruder_0.def.json index 3fec85805e..ace4b5b813 100644 --- a/resources/extruders/ultimaker2_plus_extruder_0.def.json +++ b/resources/extruders/ultimaker2_plus_extruder_0.def.json @@ -10,6 +10,7 @@ "overrides": { "extruder_nr": { "default_value": 0 }, + "machine_nozzle_head_distance": { "default_value": 5 }, "machine_nozzle_size": { "default_value": 0.4 }, "material_diameter": { "default_value": 2.85 } } diff --git a/resources/extruders/ultimaker_method_extruder_left.def.json b/resources/extruders/ultimaker_method_extruder_left.def.json index 44680a3468..9f6ad4e02b 100644 --- a/resources/extruders/ultimaker_method_extruder_left.def.json +++ b/resources/extruders/ultimaker_method_extruder_left.def.json @@ -15,8 +15,8 @@ "maximum_value": 1 }, "machine_extruder_cooling_fan_number": { "default_value": 0 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed_0/100}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_method_extruder_right.def.json b/resources/extruders/ultimaker_method_extruder_right.def.json index 75eb50bdd8..c590c4e05f 100644 --- a/resources/extruders/ultimaker_method_extruder_right.def.json +++ b/resources/extruders/ultimaker_method_extruder_right.def.json @@ -15,8 +15,8 @@ "maximum_value": 1 }, "machine_extruder_cooling_fan_number": { "default_value": 1 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed_0/100}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_left.def.json b/resources/extruders/ultimaker_methodx_extruder_left.def.json index 2b927405f0..99d12c7944 100644 --- a/resources/extruders/ultimaker_methodx_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_left.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 0 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed_0/100}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodx_extruder_right.def.json b/resources/extruders/ultimaker_methodx_extruder_right.def.json index 43979e136b..c2438424a9 100644 --- a/resources/extruders/ultimaker_methodx_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodx_extruder_right.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 1 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed_0/100}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 8 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_left.def.json b/resources/extruders/ultimaker_methodxl_extruder_left.def.json index c7e365f269..4301e1a8e2 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_left.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_left.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 0 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed_0/100}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 10 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_methodxl_extruder_right.def.json b/resources/extruders/ultimaker_methodxl_extruder_right.def.json index 7ac702d3c2..4a15d6a045 100644 --- a/resources/extruders/ultimaker_methodxl_extruder_right.def.json +++ b/resources/extruders/ultimaker_methodxl_extruder_right.def.json @@ -15,8 +15,8 @@ "maximum_value": "1" }, "machine_extruder_cooling_fan_number": { "default_value": 1 }, - "machine_extruder_end_code": { "default_value": "M106 P{extruder_nr} S1.0\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, - "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nM104 S{material_print_temperature}\nG4 S5\nG91\nG0 Z-0.4 F600\nG90\nM107 P{(extruder_nr+1)%2}\nM106 P{extruder_nr} S{cool_fan_speed_0/100}" }, + "machine_extruder_end_code": { "default_value": "M104 S{material_standby_temperature}\nG91\nG0 Z0.4 F600\nG90\nG0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000" }, + "machine_extruder_start_code": { "default_value": "G0 X{prime_tower_position_x - prime_tower_size/2} Y{prime_tower_position_y + prime_tower_size/2} F6000\nG91\nG0 Z-0.4 F600\nG90" }, "machine_extruder_start_code_duration": { "default_value": 10 }, "machine_nozzle_offset_x": { "default_value": 0 }, "machine_nozzle_offset_y": { "default_value": 0 }, diff --git a/resources/extruders/ultimaker_replicator_extruder.def.json b/resources/extruders/ultimaker_replicator_extruder.def.json new file mode 100644 index 0000000000..c8fff87967 --- /dev/null +++ b/resources/extruders/ultimaker_replicator_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_replicator_plus", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": 0 + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_s6_extruder_left.def.json b/resources/extruders/ultimaker_s6_extruder_left.def.json new file mode 100644 index 0000000000..d3991222b2 --- /dev/null +++ b/resources/extruders/ultimaker_s6_extruder_left.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_s6", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "extruder_prime_pos_x": { "default_value": -3 }, + "extruder_prime_pos_y": { "default_value": 6 }, + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 330 }, + "machine_extruder_end_pos_y": { "default_value": 237 }, + "machine_extruder_start_code": { "value": "\"M214 D0 K{material_pressure_advance_factor} R0.04\"" }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 330 }, + "machine_extruder_start_pos_y": { "default_value": 237 }, + "machine_nozzle_head_distance": { "default_value": 2.7 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_s6_extruder_right.def.json b/resources/extruders/ultimaker_s6_extruder_right.def.json new file mode 100644 index 0000000000..5c70f36741 --- /dev/null +++ b/resources/extruders/ultimaker_s6_extruder_right.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_s6", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "extruder_prime_pos_x": { "default_value": 333 }, + "extruder_prime_pos_y": { "default_value": 6 }, + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 330 }, + "machine_extruder_end_pos_y": { "default_value": 219 }, + "machine_extruder_start_code": { "value": "\"M214 D0 K{material_pressure_advance_factor} R0.04\"" }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 330 }, + "machine_extruder_start_pos_y": { "default_value": 219 }, + "machine_nozzle_head_distance": { "default_value": 4.2 }, + "machine_nozzle_offset_x": { "default_value": 22 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_s8_extruder_left.def.json b/resources/extruders/ultimaker_s8_extruder_left.def.json new file mode 100644 index 0000000000..cd2c34d16f --- /dev/null +++ b/resources/extruders/ultimaker_s8_extruder_left.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_s8", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "extruder_prime_pos_x": { "default_value": -3 }, + "extruder_prime_pos_y": { "default_value": 6 }, + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 330 }, + "machine_extruder_end_pos_y": { "default_value": 237 }, + "machine_extruder_start_code": { "value": "\"M214 K{material_pressure_advance_factor} R0.04\"" }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 330 }, + "machine_extruder_start_pos_y": { "default_value": 237 }, + "machine_nozzle_head_distance": { "default_value": 2.7 }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_s8_extruder_right.def.json b/resources/extruders/ultimaker_s8_extruder_right.def.json new file mode 100644 index 0000000000..7bab64fa67 --- /dev/null +++ b/resources/extruders/ultimaker_s8_extruder_right.def.json @@ -0,0 +1,31 @@ +{ + "version": 2, + "name": "Extruder 2", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_s8", + "position": "1" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 1, + "maximum_value": "1" + }, + "extruder_prime_pos_x": { "default_value": 333 }, + "extruder_prime_pos_y": { "default_value": 6 }, + "extruder_prime_pos_z": { "default_value": 2 }, + "machine_extruder_end_pos_abs": { "default_value": true }, + "machine_extruder_end_pos_x": { "default_value": 330 }, + "machine_extruder_end_pos_y": { "default_value": 219 }, + "machine_extruder_start_code": { "value": "\"M214 K{material_pressure_advance_factor} R0.04\"" }, + "machine_extruder_start_pos_abs": { "default_value": true }, + "machine_extruder_start_pos_x": { "default_value": 330 }, + "machine_extruder_start_pos_y": { "default_value": 219 }, + "machine_nozzle_head_distance": { "default_value": 4.2 }, + "machine_nozzle_offset_x": { "default_value": 22 }, + "machine_nozzle_offset_y": { "default_value": 0 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_sketch_extruder.def.json b/resources/extruders/ultimaker_sketch_extruder.def.json new file mode 100644 index 0000000000..5f6c3054ac --- /dev/null +++ b/resources/extruders/ultimaker_sketch_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_sketch", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_sketch_large_extruder.def.json b/resources/extruders/ultimaker_sketch_large_extruder.def.json new file mode 100644 index 0000000000..946b047072 --- /dev/null +++ b/resources/extruders/ultimaker_sketch_large_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_sketch_large", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/ultimaker_sketch_sprint_extruder.def.json b/resources/extruders/ultimaker_sketch_sprint_extruder.def.json new file mode 100644 index 0000000000..adea8a923c --- /dev/null +++ b/resources/extruders/ultimaker_sketch_sprint_extruder.def.json @@ -0,0 +1,22 @@ +{ + "version": 2, + "name": "Extruder", + "inherits": "fdmextruder", + "metadata": + { + "machine": "ultimaker_sketch_sprint", + "position": "0" + }, + "overrides": + { + "extruder_nr": + { + "default_value": 0, + "maximum_value": "1" + }, + "machine_nozzle_offset_x": { "default_value": 0 }, + "machine_nozzle_offset_y": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/voron2_stealthchanger_extruder_0.def.json b/resources/extruders/voron2_stealthchanger_extruder_0.def.json index 55ddf8f90b..e3f8cd0701 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_0.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_0.def.json @@ -14,9 +14,11 @@ "default_value": 0, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_1.def.json b/resources/extruders/voron2_stealthchanger_extruder_1.def.json index ad29966960..b6338a38f5 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_1.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_1.def.json @@ -14,9 +14,11 @@ "default_value": 1, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_2.def.json b/resources/extruders/voron2_stealthchanger_extruder_2.def.json index ec3b6ff3a9..f101cdaf68 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_2.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_2.def.json @@ -14,9 +14,11 @@ "default_value": 2, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_3.def.json b/resources/extruders/voron2_stealthchanger_extruder_3.def.json index dfaa249e5d..1011910025 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_3.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_3.def.json @@ -14,9 +14,11 @@ "default_value": 3, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_4.def.json b/resources/extruders/voron2_stealthchanger_extruder_4.def.json index eeb6fbbe60..35170fdb0b 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_4.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_4.def.json @@ -14,9 +14,11 @@ "default_value": 4, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_5.def.json b/resources/extruders/voron2_stealthchanger_extruder_5.def.json index 61e05b6945..4f8471d50f 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_5.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_5.def.json @@ -14,9 +14,11 @@ "default_value": 5, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_6.def.json b/resources/extruders/voron2_stealthchanger_extruder_6.def.json index 3b3f614ae7..7a58e80f8b 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_6.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_6.def.json @@ -14,9 +14,11 @@ "default_value": 6, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/voron2_stealthchanger_extruder_7.def.json b/resources/extruders/voron2_stealthchanger_extruder_7.def.json index 071cd5d064..196f6607d6 100644 --- a/resources/extruders/voron2_stealthchanger_extruder_7.def.json +++ b/resources/extruders/voron2_stealthchanger_extruder_7.def.json @@ -14,9 +14,11 @@ "default_value": 7, "maximum_value": 7 }, + "machine_extruder_change_duration": { "default_value": 10.0 }, "machine_extruder_end_pos_abs": { "default_value": true }, "machine_extruder_end_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_end_pos_y": { "value": "prime_tower_position_y" }, + "machine_extruder_prestart_code": { "default_value": "M104 S{material_print_temperature} T{extruder_nr}" }, "machine_extruder_start_pos_abs": { "default_value": true }, "machine_extruder_start_pos_x": { "value": "prime_tower_position_x" }, "machine_extruder_start_pos_y": { "value": "prime_tower_position_y" }, diff --git a/resources/extruders/zyyx_plus_extruder_0.def.json b/resources/extruders/zyyx_plus_extruder_0.def.json new file mode 100644 index 0000000000..f87248832c --- /dev/null +++ b/resources/extruders/zyyx_plus_extruder_0.def.json @@ -0,0 +1,16 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "zyyx_plus", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "machine_nozzle_size": { "default_value": 0.4 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/extruders/zyyx_pro_extruder.def.json b/resources/extruders/zyyx_pro_extruder.def.json new file mode 100644 index 0000000000..acf5bc2d3e --- /dev/null +++ b/resources/extruders/zyyx_pro_extruder.def.json @@ -0,0 +1,15 @@ +{ + "version": 2, + "name": "Extruder 1", + "inherits": "fdmextruder", + "metadata": + { + "machine": "zyyx_pro", + "position": "0" + }, + "overrides": + { + "extruder_nr": { "default_value": 0 }, + "material_diameter": { "default_value": 1.75 } + } +} \ No newline at end of file diff --git a/resources/i18n/cs_CZ/cura.po b/resources/i18n/cs_CZ/cura.po index 035f893405..98b186b6a2 100644 --- a/resources/i18n/cs_CZ/cura.po +++ b/resources/i18n/cs_CZ/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" "PO-Revision-Date: 2023-09-03 18:15+0200\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -18,6 +18,10 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n>=2 && n<=4 ? 1 : 2);\n" "X-Generator: Poedit 3.3.2\n" +msgctxt "@title:label" +msgid " " +msgstr "" + #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" @@ -179,6 +183,10 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "3D Pohled" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "" + msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Soubor 3MF" @@ -476,6 +484,10 @@ msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "Povoluje načítání a zobrazení souborů G kódu." +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Vždy se zeptat" @@ -516,10 +528,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Aplikační framework" - msgctxt "@title:column" msgid "Applies on" msgstr "" @@ -698,10 +706,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "Od" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Binding knihovna C/C++" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" @@ -870,6 +874,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "Barevné schéma" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "" + msgctxt "@info" msgid "Compare and save." msgstr "Porovnat a uložit." @@ -878,10 +886,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "Mód kompatibility" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Kompatibilita mezi Python 2 a 3" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "Kompatibilní tiskárny" @@ -1207,14 +1211,6 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine Backend" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - msgctxt "@label" msgid "Currency:" msgstr "Měna:" @@ -1275,10 +1271,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "Data poslána" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Formát výměny dat" - msgctxt "@button" msgid "Decline" msgstr "Odmítnout" @@ -1339,10 +1331,6 @@ msgctxt "@label" msgid "Density" msgstr "Husttoa" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "Správce závislostí a balíčků" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "Hloubka (mm)" @@ -1565,6 +1553,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Exportovat materiál" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "" + msgctxt "@title:window" msgid "Export Profile" msgstr "Exportovat profil" @@ -1606,6 +1598,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Ukončující G-kód extuderu" @@ -1614,6 +1610,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Počáteční G-kód extuderu" @@ -1803,6 +1803,10 @@ msgctxt "@label" msgid "First available" msgstr "První dostupný" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "" + msgctxt "@label:listbox" msgid "Flow" msgstr "Průtok" @@ -1819,10 +1823,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Následováním několika jednoduchých kroků budete moci synchronizovat všechny vaše materiálové profily s vašimi tiskárnami." -msgctxt "@label" -msgid "Font" -msgstr "Font" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "Pro každou pozici; vložte kousek papíru pod trysku a upravte výšku tiskové desky. Výška desky pro sestavení tisku je správná, když je papír lehce uchopen špičkou trysky." @@ -1878,10 +1878,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "Varianta G kódu" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Generátor G kódu" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "GCodeGzWriter nepodporuje textový mód." @@ -1894,14 +1890,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Obrázek GIF" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "GUI framework" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Propojení GUI frameworku" - msgctxt "@label" msgid "Gantry Height" msgstr "Výška rámu tiskárny" @@ -1914,10 +1902,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Vytvořit struktury pro podporu částí modelu, které mají přesahy. Bez těchto struktur by se takové části během tisku zhroutily." -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Generování instalátorů pro Windows" - msgctxt "@label:category menu label" msgid "Generic" msgstr "Obecné" @@ -1938,10 +1922,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "Globální nastavení" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Grafické uživatelské prostředí" - msgctxt "@label" msgid "Grid Placement" msgstr "" @@ -2187,10 +2167,6 @@ msgctxt "@label" msgid "Interface" msgstr "Rozhranní" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Meziprocesní komunikační knihovna" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "Špatná IP adresa" @@ -2219,10 +2195,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "Obrázek JPG" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "JSON parser" - msgctxt "@label" msgid "Job Name" msgstr "Název úlohy" @@ -2323,6 +2295,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "Vyrovnat podložku" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Světlejší je vyšší" @@ -2339,10 +2315,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "Lineární" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Sestavování Linux aplikací nezávislých na distribuci" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "Načíst %3 jako materiál %1 (Toho nemůže být přepsáno)." @@ -2431,6 +2403,14 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "" @@ -3011,10 +2991,6 @@ msgctxt "@header" msgid "Package details" msgstr "Detaily balíčku" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Vytváření balíčků Python aplikací" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "Zpracovávám G kód" @@ -3174,14 +3150,6 @@ msgctxt "@button" msgid "Plugins" msgstr "Zásuvné moduly" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Knihovna pro výstřižky z mnohoúhelníků" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post Processing" @@ -3457,10 +3425,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Profily kompatibilní s aktivní tiskárnou:" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Programovací jazyk" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3589,18 +3553,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "Verze PyQt" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Knihovna pro sledování Python chyb" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Propojení Clipper s jazykem Python" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Propojení libnest2d s jazykem Python" - msgctxt "@label" msgid "Qt version" msgstr "Verze Qt" @@ -3782,10 +3734,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "Pohled zprava" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Kořenové certifikáty pro ověření důvěryhodnosti SSL" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Bezpečně vysunout hardware" @@ -3877,6 +3825,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "Hledat" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "" + msgctxt "@info" msgid "Search in the browser" msgstr "Hledat v prohlížeči" @@ -3969,10 +3921,6 @@ msgctxt "name" msgid "Sentry Logger" msgstr "Záznamník hlavy" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Knihovna pro sériovou komunikaci" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Nastavit jako aktivní extruder" @@ -4081,6 +4029,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "Má být podložka vyčištěna před načtením nového modelu v jediné instanci Cury?" @@ -4109,10 +4061,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Zobrazit online &dokumentaci" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "Zobrazit online řešení problémů" - msgctxt "@label:checkbox" msgid "Show all" msgstr "Zobrazit vše" @@ -4321,6 +4269,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "Počáteční G kód" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "@label" msgid "Start the slicing process" msgstr "Začít proces slicování" @@ -4402,34 +4354,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "Typ podpory" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Podpůrný knihovna pro rychlejší matematické výpočty" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Podpůrná knihovna pro metadata souborů a streaming" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Podpůrná knihovna pro práci se soubory STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Podpůrná knihovna pro vědecké výpočty" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "Podpůrná knihovna pro přístup k systémové klíčence" - msgctxt "@action:button" msgid "Sync" msgstr "Synchronizovat" @@ -4755,8 +4679,12 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Tato konfigurace není k dispozici, protože %1 nebyl rozpoznán. Navštivte prosím %2 a stáhněte si správný materiálový profil." +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" msgstr "" msgctxt "@text:window" @@ -5052,6 +4980,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Nelze načíst ukázkový datový soubor." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "" + msgctxt "@info:title" msgid "Unable to slice" msgstr "Nelze slicovat" @@ -5120,10 +5056,6 @@ msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "Univerzální konfigurace překladu programů" - msgctxt "@label" msgid "Unknown" msgstr "Neznámý" @@ -5313,6 +5245,14 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Nahrát vlastní firmware" @@ -5337,14 +5277,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "Uživatelská dohoda" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Pomocné funkce zahrnující načítání obrázků" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Pomocná knihovna zahrnující Voronoi generátor" - msgctxt "@title:column" msgid "Value" msgstr "" @@ -5457,6 +5389,14 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Zobrazit tiskárny v Digital Factory" @@ -5619,12 +5559,12 @@ msgid "Y (Depth)" msgstr "Y (Hloubka)" msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Y max ( '+' towards front)" +msgstr "" msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Y min ( '-' towards back)" +msgstr "" msgctxt "@info" msgid "Yes" @@ -5718,10 +5658,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "Z (Výška)" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Knihovna ZeroConf discovery" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Přiblížit směrem k směru myši" @@ -5787,18 +5723,38 @@ msgstr "Nepovedlo se stáhnout {} zásuvných modulů" #~ msgstr[1] "... a {0} další" #~ msgstr[2] "... a {0} dalších" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "Aplikační framework" + #~ msgctxt "@tooltip:button" #~ msgid "Become a 3D printing expert with UltiMaker e-learning." #~ msgstr "Staňte se expertem na 3D tisk díky UltiMaker e-learningu." +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "Binding knihovna C/C++" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Compatibility between Python 2 and 3" +#~ msgstr "Kompatibilita mezi Python 2 a 3" + #~ msgctxt "@info:status" #~ msgid "Cura does not accurately display layers when Wire Printing is enabled." #~ msgstr "Když je aktivován síťový tisk, Cura přesně nezobrazuje vrstvy." +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "Formát výměny dat" + #~ msgctxt "@label" #~ msgid "Default" #~ msgstr "Výchozí" +#~ msgctxt "@label Description for development tool" +#~ msgid "Dependency and package manager" +#~ msgstr "Správce závislostí a balíčků" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Umožňuje tisk okraje nebo voru. Tímto způsobem se kolem nebo pod objekt přidá plochá oblast, kterou lze snadno odříznout." @@ -5807,6 +5763,30 @@ msgstr "Nepovedlo se stáhnout {} zásuvných modulů" #~ msgid "Error writing 3mf file." #~ msgstr "Chyba při zápisu 3mf file." +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "Font" + +#~ msgctxt "@label Description for application component" +#~ msgid "G-code generator" +#~ msgstr "Generátor G kódu" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "GUI framework" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "Propojení GUI frameworku" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Generating Windows installers" +#~ msgstr "Generování instalátorů pro Windows" + +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "Grafické uživatelské prostředí" + #~ msgctxt "@label" #~ msgid "Hex" #~ msgstr "Hexadecimální" @@ -5823,18 +5803,74 @@ msgstr "Nepovedlo se stáhnout {} zásuvných modulů" #~ msgid "Install missing material" #~ msgstr "Nainstalovat chybějící materiál" +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "Meziprocesní komunikační knihovna" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "JSON parser" +#~ msgstr "JSON parser" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Linux cross-distribution application deployment" +#~ msgstr "Sestavování Linux aplikací nezávislých na distribuci" + #~ msgctxt "@info:title" #~ msgid "Material profiles not installed" #~ msgstr "Materiálové profily nejsou nainstalovány" +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "Velikost trysky" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Packaging Python-applications" +#~ msgstr "Vytváření balíčků Python aplikací" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "Knihovna pro výstřižky z mnohoúhelníků" + +#~ msgctxt "@label Description for application component" +#~ msgid "Polygon packing library, developed by Prusa Research" +#~ msgstr "Knihovna pro plošnou optimalizaci vyvinutá Prusa Research" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "Programovací jazyk" + #~ msgctxt "description" #~ msgid "Provides support for writing 3MF files." #~ msgstr "Poskytuje podporu pro psaní souborů 3MF." +#~ msgctxt "@Label Description for application dependency" +#~ msgid "Python Error tracking library" +#~ msgstr "Knihovna pro sledování Python chyb" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Python bindings for Clipper" +#~ msgstr "Propojení Clipper s jazykem Python" + +#~ msgctxt "@label Description for application component" +#~ msgid "Python bindings for libnest2d" +#~ msgstr "Propojení libnest2d s jazykem Python" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Root Certificates for validating SSL trustworthiness" +#~ msgstr "Kořenové certifikáty pro ověření důvěryhodnosti SSL" + #~ msgctxt "@option" #~ msgid "Save Cura project and print file" #~ msgstr "Uložit projekt Cura a tiskový soubor UFP" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "Knihovna pro sériovou komunikaci" + +#~ msgctxt "@action:inmenu" +#~ msgid "Show Online Troubleshooting" +#~ msgstr "Zobrazit online řešení problémů" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Pohled simulace" @@ -5843,6 +5879,34 @@ msgstr "Nepovedlo se stáhnout {} zásuvných modulů" #~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." #~ msgstr "Slicování selhalo na neočekávané chybě. Zvažte, prosím, nahlášení chyby v našem issue trackeru." +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "Podpůrný knihovna pro rychlejší matematické výpočty" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for file metadata and streaming" +#~ msgstr "Podpůrná knihovna pro metadata souborů a streaming" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "Podpůrná knihovna pro manipulaci s 3MF soubory" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "Podpůrná knihovna pro práci se soubory STL" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling triangular meshes" +#~ msgstr "Podpůrná knihovna pro manipulaci s trojúhelníkovými sítěmi" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "Podpůrná knihovna pro vědecké výpočty" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for system keyring access" +#~ msgstr "Podpůrná knihovna pro přístup k systémové klíčence" + #~ msgctxt "@label" #~ msgid "The material used in this project is currently not installed in Cura.
Install the material profile and reopen the project." #~ msgstr "Materiál použitý v tomto projektu není aktuálně nainstalován v Cuře.
Nainstalujte materiálový profil a znovu otevřete projekt." @@ -5854,3 +5918,27 @@ msgstr "Nepovedlo se stáhnout {} zásuvných modulů" #~ msgctxt "@error:zip" #~ msgid "The operating system does not allow saving a project file to this location or with this file name." #~ msgstr "Operační systém nepovoluje uložit soubor s projektem do tohoto umístění nebo pod tímto názvem." + +#~ msgctxt "@label Description for development tool" +#~ msgid "Universal build system configuration" +#~ msgstr "Univerzální konfigurace překladu programů" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Utility functions, including an image loader" +#~ msgstr "Pomocné funkce zahrnující načítání obrázků" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Utility library, including Voronoi generation" +#~ msgstr "Pomocná knihovna zahrnující Voronoi generátor" + +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y max" + +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y min" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "Knihovna ZeroConf discovery" diff --git a/resources/i18n/cs_CZ/fdmextruder.def.json.po b/resources/i18n/cs_CZ/fdmextruder.def.json.po index 5819c51d85..cc026a5360 100644 --- a/resources/i18n/cs_CZ/fdmextruder.def.json.po +++ b/resources/i18n/cs_CZ/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2020-02-20 17:30+0100\n" "Last-Translator: DenyCZ \n" "Language-Team: DenyCZ \n" @@ -41,6 +41,10 @@ msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ukončující G kód extruderu" @@ -61,6 +65,10 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Konečná pozice Y extruderu" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Primární pozice extruderu X" @@ -129,6 +137,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID trysky" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X offset trysky" @@ -137,6 +149,10 @@ msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y offset trysky" +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Spusťte g-kód, který se má provést při přepnutí na tento extrudér." @@ -157,6 +173,10 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Vytlačovací stroj byl použit pro tisknutí. Toto je používáno při vícenásobné extruzi." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "" + msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Vnitřní průměr trysky. Změňte toto nastavení pokud používáte nestandardní velikost trysky." @@ -200,3 +220,7 @@ msgstr "Y-ová souřadnice offsetu trysky." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Souřadnice y počáteční pozice při zapnutí extrudéru." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "" diff --git a/resources/i18n/cs_CZ/fdmprinter.def.json.po b/resources/i18n/cs_CZ/fdmprinter.def.json.po index 5fd9a10ebe..0dac772d19 100644 --- a/resources/i18n/cs_CZ/fdmprinter.def.json.po +++ b/resources/i18n/cs_CZ/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2023-02-16 20:35+0100\n" "Last-Translator: Miroslav Šustek \n" "Language-Team: DenyCZ \n" @@ -21,6 +21,10 @@ msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" msgstr "" +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "" + msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" @@ -33,6 +37,10 @@ msgctxt "material_no_load_move_factor description" msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." msgstr "Faktor udávající, jak moc se vlákno stlačí mezi podavačem a komorou trysky, používá se k určení, jak daleko se má pohybovat materiál pro spínač vlákna." +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "" + msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "Seznam směrů celočíselných čar, které se použijí, když horní povrchové vrstvy používají čáry nebo vzor cik cak. Prvky ze seznamu se používají postupně jako vrstvy a jakmile je dosaženo konce seznamu, začíná znovu na začátku. Položky seznamu jsou odděleny čárkami a celý seznam je obsažen v hranatých závorkách. Výchozí je prázdný seznam, což znamená použití tradičních výchozích úhlů (45 a 135 stupňů)." @@ -93,6 +101,10 @@ msgctxt "adaptive_layer_height_enabled description" msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "Adaptivní vrstvy vypočítávají výšky vrstev v závislosti na tvaru modelu." +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "" + msgctxt "infill_wall_line_count description" msgid "" "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" @@ -157,6 +169,10 @@ msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Vše najednou" +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "" + msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Všechna nastavení, která ovlivňují rozlišení tisku. Tato nastavení mají velký vliv na kvalitu (a dobu tisku)" @@ -293,6 +309,74 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "Dolní šířka odstranění povrchu" +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "" + msgctxt "bottom_thickness label" msgid "Bottom Thickness" msgstr "Spodní tloušťka" @@ -437,6 +521,14 @@ msgctxt "brim_width label" msgid "Brim Width" msgstr "Šířka límce" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "" + msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" msgstr "Adheze topné podložky" @@ -477,6 +569,10 @@ msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" msgstr "" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -517,6 +613,10 @@ msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "Nastavení příkazové řádky" +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "" + msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Soustředný" @@ -621,6 +721,10 @@ msgctxt "cooling label" msgid "Cooling" msgstr "Chlazení" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "" + msgctxt "infill_pattern option cross" msgid "Cross" msgstr "Křížek" @@ -709,6 +813,14 @@ msgctxt "bridge_settings_enabled description" msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "Zjistěte mosty a upravte rychlost tisku, průtok a nastavení ventilátoru během tisku mostů." +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "" + msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "Určuje pořadí, v jakém budou tištěny zdi. Tištění vnějších zdí jako prvních pomáhá rozměrové přesnosti, jelikož se vady z vnitřních stěn nemohou přenášet na vnějšek. Naproti tomu tištění vnějších zdí nakonec dovoluje jejich lepší vrstvení při tištění převisů. Pokud je nepravidelný počet čar ve vnitřních stěnách, tisknou se 'zbylé střední čáry' nakonec." @@ -833,6 +945,10 @@ msgctxt "dual label" msgid "Dual Extrusion" msgstr "Dvojitá extruze" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Doba trvání každého kroku v postupné změně průtoku" + msgctxt "machine_shape option elliptic" msgid "Elliptic" msgstr "Eliptická" @@ -925,6 +1041,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Povolit vnější ochranu proti úniku. Tím se vytvoří model kolem modelu, který pravděpodobně otře druhou trysku, pokud je ve stejné výšce jako první tryska." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." + msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." msgstr "" @@ -989,6 +1109,10 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "Rozsáhlé sešívání se snaží spojit otevřené otvory v mřížce uzavřením díry dotykem mnohoúhelníků. Tato možnost může přinést spoustu času zpracování." +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "" + msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" msgstr "Počet navíc výplní zdí" @@ -1001,6 +1125,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Materiál navíc pro extruzi po změně trysky." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Primární pozice extruderu X" @@ -1097,6 +1225,10 @@ msgctxt "skin_material_flow_layer_0 description" msgid "Flow compensation on bottom lines of the first layer" msgstr "Kompenzace toku pro čáry spodku modelu v první vrstvě" +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "infill_material_flow description" msgid "Flow compensation on infill lines." msgstr "Kompenzace toku na výplňových vedeních." @@ -1105,6 +1237,10 @@ msgctxt "support_interface_material_flow description" msgid "Flow compensation on lines of support roof or floor." msgstr "Kompenzace toku na liniích podpůrné střechy nebo podlahy." +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "Kompenzace toku na řádcích oblastí v horní části tisku." @@ -1129,6 +1265,10 @@ msgctxt "support_material_flow description" msgid "Flow compensation on support structure lines." msgstr "Kompenzace toku na podpůrných strukturách." +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "" + msgctxt "wall_0_material_flow_layer_0 description" msgid "Flow compensation on the outermost wall line of the first layer." msgstr "Kompenzace toku v nejvíce venkovní čáře stěny první vrstvy." @@ -1185,6 +1325,10 @@ msgctxt "material_flush_purge_speed label" msgid "Flush Purge Speed" msgstr "Rychlost proplachování" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" + msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Pro struktury o šířce okolo jedno až dvojnásobku velikosti trysky musí být šířky čar upravovány, aby to se dodržovala správná tloušťka modelu. Toto nastavení ovládá minimální dovolenou šířku čáry pro zdi. Z minimální šířky čáry se také odvozuje maximální šířka, jelikož při určité tloušťce tvaru se přechází z N na N + 1 zdí, kdy je N zdí širokých, zatímco N + 1 zdi jsou úzké. Nejvyšší možná šířka čáry zdi je tedy dvojnásobek tohoto nastavení." @@ -1303,6 +1447,18 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "Postupné kroky vyplňování podpory" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Velikost kroku diskretizace postupné změny průtoku" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Postupné změny průtoku povoleny" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximální zrychlení postupných změn průtoku" + msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "Postupně ochlazuje na tuto teplotu, když se tiskne při snížených rychlostech kvůli minimální doby vrstvy." @@ -1331,6 +1487,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "" + msgctxt "group_outer_walls label" msgid "Group Outer Walls" msgstr "Seskupit vnější stěny" @@ -1695,6 +1855,10 @@ msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" msgstr "Počáteční teplota tisku" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximální zrychlení průtoku pro první vrstvu" + msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" msgstr "Akcelerace tisku vnitřní zdi" @@ -1731,6 +1895,10 @@ msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "Zevnitř ven" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "" + msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" msgstr "Preferovat čáry rozhraní" @@ -1919,6 +2087,10 @@ msgctxt "line_width label" msgid "Line Width" msgstr "Šířka čáry" +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "" + msgctxt "infill_pattern option lines" msgid "Lines" msgstr "Čáry" @@ -2017,6 +2189,10 @@ msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "" + msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" @@ -2133,6 +2309,10 @@ msgctxt "meshfix_maximum_travel_resolution label" msgid "Maximum Travel Resolution" msgstr "Maximální rozlišení pohybu" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximální zrychlení pro postupné změny průtoku" + msgctxt "machine_max_acceleration_x description" msgid "Maximum acceleration for the motor of the X-direction" msgstr "Maximální zrychlení pro motor ve směru X" @@ -2193,6 +2373,10 @@ msgctxt "slicing_tolerance option middle" msgid "Middle" msgstr "Střední" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "" + msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "Minimální šířka formy" @@ -2233,10 +2417,18 @@ msgctxt "cool_min_layer_time label" msgid "Minimum Layer Time" msgstr "Minimální doba vrstvy" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "" + msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" msgstr "Minimální šířka nepárové čáry zdi" +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "" + msgctxt "minimum_polygon_circumference label" msgid "Minimum Polygon Circumference" msgstr "Minimální polygonální obvod" @@ -2297,6 +2489,10 @@ msgctxt "minimum_roof_area description" msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." msgstr "Minimální velikost plochy pro střechy podpěry. Polygony, které mají plochu menší než tato hodnota, budou vytištěny jako normální podpora." +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" + msgctxt "min_feature_size description" 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 Line Width." msgstr "Minimální tloušťka tenkých částí. Části modelu, které jsou tenčí než tato hodnota nebudou tištěny, zatímco části širší než tato hodnota budou rozšířeny na Minimální šířku čáry zdi." @@ -2317,6 +2513,10 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "Výška střechy formy" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "" + msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Monotónní pořadí žehlení" @@ -2337,6 +2537,10 @@ msgctxt "skirt_line_count description" msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." msgstr "Více linek okraje pomáhá vytlačit vaše vytlačování lépe pro malé modely. Nastavení na 0 zakáže okraj." +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "" + msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "Násobitel šířky čáry v první vrstvě. Jejich zvýšení by mohlo zlepšit přilnavost k podložce." @@ -2357,6 +2561,10 @@ msgctxt "adhesion_type option none" msgid "None" msgstr "Žádný" +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "" + msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "Žádný" @@ -2401,10 +2609,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID trysky" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Délka trysky" - msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Množství materiálu navíc pro změnu trysky" @@ -2493,6 +2697,10 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Pouze jedna" +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "" + msgctxt "retraction_hop_only_when_collides description" msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." msgstr "Z-hop provádějte pouze při pohybu po tištěných částech, kterým nelze zabránit vodorovným pohybem pomocí Vyvarujte se potištěných součástí při cestování." @@ -2529,6 +2737,14 @@ msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "Akcelerace tisku vnější zdi" +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "" + msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "Extruder vnější zdi" @@ -2553,6 +2769,18 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Rychlost tisku vnější zdi" +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "" + msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Vzdálenost stírání vnější stěny" @@ -2573,13 +2801,13 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "Převislý úhel stěny" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Rychlost tisku převislé stěny" +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Převislé stěny budou vytištěny v procentech jejich normální rychlosti tisku." +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "" msgctxt "wipe_pause description" msgid "Pause after the unretract." @@ -2601,6 +2829,10 @@ msgctxt "bridge_fan_speed_3 description" msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "Procentuální rychlost ventilátoru, která se použije při tisku třetí vrstvy povrchu mostu." +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "" + msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "Polygony v krájených vrstvách, jejichž obvod je menší než toto množství, budou odfiltrovány. Nižší hodnoty vedou k vyššímu rozlišení ok za cenu krájení. Je určen především pro tiskárny SLA s vysokým rozlišením a velmi malé 3D modely se spoustou detailů." @@ -2609,6 +2841,10 @@ msgctxt "support_tree_angle_slow label" msgid "Preferred Branch Angle" msgstr "Preferovaný úhel větví" +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "" + msgctxt "wall_transition_filter_deviation description" msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." msgstr "Zabraňuje přecházení tam a zpět mezi o jednu více a o jednu méně čarami zdí. Tato rezerva rozšíří rozsah možných šířek čar na [Minimální šířka čáry zdi - Rezerva, 2 * Minimální šířka čáry zdi + Rezerva]. Zvýšení této rezervy omezí počet přechodů mezi různými počty čar zdí, což sníží počet rozjezdů/zastavení a také čas cestování. Velké výkyvy v šířce čar však mohou vést k problémům s nedostatečnou nebo přílišnou extruzí." @@ -2649,6 +2885,10 @@ msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" msgstr "" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Minimální objem hlavní věže" @@ -2681,6 +2921,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Akcelerace tisku" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Trh při tisku" @@ -2709,6 +2953,10 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Vytiskněte věž vedle tisku, která slouží k naplnění materiálu po každém přepnutí trysky." +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + msgctxt "infill_support_enabled description" msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." msgstr "Výplňové struktury tiskněte pouze tam, kde by měly být podporovány vrcholy modelu. Pokud to povolíte, sníží se doba tisku a spotřeba materiálu, ale vede k nestejnoměrné pevnosti objektu." @@ -2801,6 +3049,18 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "Rychlost ventilátoru při tisku základních vrstev raftu" +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "" + msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" msgstr "Rozteč základny voru" @@ -2841,6 +3101,26 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Rychlost ventilátoru při tisku raftu" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "" + msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" msgstr "" @@ -2905,6 +3185,22 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Vyhlazování raftu" +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "" + msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" msgstr "" @@ -3069,6 +3365,10 @@ msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" msgstr "" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Doba trvání resetování průtoku" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferované umístění podpor" @@ -3133,6 +3433,18 @@ msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" msgstr "Faktor zvětšení pro kompenzaci smrštění" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "" + msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" msgstr "Scéna Má Podpůrné Masky" @@ -3141,6 +3453,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Rohová preference švu" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "" + msgctxt "user_defined_print_order_enabled label" msgid "Set Print Sequence Manually" msgstr "Nastavit tiskovou sekvenci ručně" @@ -3357,6 +3673,10 @@ msgctxt "machine_start_gcode label" msgid "Start G-code" msgstr "Počáteční G kód" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "z_seam_type description" msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." msgstr "Počáteční bod každé cesty ve vrstvě. Když cesty v po sobě jdoucích vrstvách začínají ve stejném bodě, může se na výtisku zobrazit svislý šev. Při jejich zarovnání poblíž uživatelem zadaného umístění je šev nejjednodušší odstranit. Při náhodném umístění budou nepřesnosti na začátku cest méně patrné. Při nejkratší cestě bude tisk rychlejší." @@ -3485,6 +3805,10 @@ msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" msgstr "Akcelerace tisku výplně podpor" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "" + msgctxt "support_infill_extruder_nr label" msgid "Support Infill Extruder" msgstr "Extruder pro vnitřní podpory" @@ -3677,6 +4001,10 @@ msgctxt "support_z_distance label" msgid "Support Z Distance" msgstr "Vzdálenost Z podor" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "" + msgctxt "support_interface_priority option support_lines_overwrite_interface_area" msgid "Support lines preferred" msgstr "Preferovat čáry podpor" @@ -3769,6 +4097,10 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Zrychlení, kterým jsou potištěny všechny vnitřní stěny." +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "" + msgctxt "acceleration_infill description" msgid "The acceleration with which infill is printed." msgstr "Zrychlení, kterým je výplň vytištěna." @@ -3785,6 +4117,14 @@ msgctxt "raft_base_acceleration description" msgid "The acceleration with which the base raft layer is printed." msgstr "Zrychlení, s nímž je tisknuta základní raftová vrstva." +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_support_bottom description" msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." msgstr "Zrychlení, s nímž se potiskují podlahy podpory. Jejich tisk při nižším zrychlení může zlepšit přilnutí podpory na váš model." @@ -3853,6 +4193,22 @@ msgctxt "acceleration_travel description" msgid "The acceleration with which travel moves are made." msgstr "Zrychlení, kterým se pohybují pohyby." +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." msgstr "Množství materiálu vzhledem k normální linii kůže, které se během žehlení vytlačuje. Udržování trysky naplněné pomáhá vyplnit některé štěrbiny na horním povrchu, ale příliš mnoho vede k nadměrnému vytlačování a klouzání na straně povrchu." @@ -3861,6 +4217,30 @@ msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." msgstr "Velikost překrytí mezi výplní a stěnami jako procento šířky výplňové linie. Mírné překrytí umožňuje, aby se stěny pevně připojily k výplni." +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "Velikost překrytí mezi výplní a stěnami. Mírné překrytí umožňuje, aby se stěny pevně připojily k výplni." @@ -3961,10 +4341,22 @@ msgctxt "adaptive_layer_height_variation_step description" msgid "The difference in height of the next layer height compared to the previous one." msgstr "Rozdíl ve výšce další vrstvy ve srovnání s předchozí." +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "" + msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." msgstr "Vzdálenost mezi čárami žehlení." +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "" + msgctxt "travel_avoid_distance description" msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "Vzdálenost mezi tryskou a již potištěnými částmi, kterým se hlavy vyvaruje." @@ -4073,6 +4465,10 @@ msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "Vytlačovací souprava použitá pro tisk výplně. Používá se při vícenásobném vytlačování." +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "" + msgctxt "wall_x_extruder_nr description" msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "Vytlačovací souprava použitá pro tisk vnitřních stěn. Používá se při vícenásobném vytlačování." @@ -4133,6 +4529,10 @@ msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." msgstr "Výška nad vodorovnými částmi modelu, které chcete vytisknout." +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "" + msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." msgstr "Výška, při které se otáčejí ventilátory při normální rychlosti ventilátoru. Ve vrstvách pod rychlostí ventilátoru se postupně zvyšuje z počáteční rychlosti ventilátoru na normální rychlost ventilátoru." @@ -4141,10 +4541,6 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Výškový rozdíl mezi špičkou trysky a portálovým systémem (osy X a Y)." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Výškový rozdíl mezi špičkou trysky a nejnižší částí tiskové hlavy." - msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." msgstr "Výškový rozdíl při provádění Z Hopu po přepnutí extruderu." @@ -4245,6 +4641,10 @@ msgctxt "top_skin_preshrink description" msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." msgstr "Největší šířka horních oblastí povrchu, které mají být odstraněny. Každá oblast povrchu menší než tato hodnota zmizí. To může pomoci omezit množství času a materiálu stráveného tiskem vrchní kůže na šikmých plochách v modelu." +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "" + msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." msgstr "Vrstva, ve které se ventilátory otáčejí běžnou rychlostí ventilátoru. Pokud je nastavena normální rychlost ventilátoru ve výšce, je tato hodnota vypočítána a zaokrouhlena na celé číslo." @@ -4317,10 +4717,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Maximální okamžitá změna rychlosti, se kterou se tisknou všechny vnitřní stěny." +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "" + msgctxt "jerk_infill description" msgid "The maximum instantaneous velocity change with which infill is printed." msgstr "Maximální okamžitá změna rychlosti tisku výplně." +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "Maximální okamžitá změna rychlosti, se kterou se potiskují podlahy podpory." @@ -4457,6 +4869,14 @@ msgctxt "support_bottom_stair_step_min_slope description" msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." msgstr "Minimální sklon oblasti, aby se schodové schody projevily. Nízké hodnoty by měly usnadnit odstraňování podpory na mělkých svazích, ale opravdu nízké hodnoty mohou vést k velmi kontraintuitivním výsledkům na jiných částech modelu." +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "" + msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "Minimální doba strávená ve vrstvě. To nutí tiskárnu zpomalit a alespoň zde strávit čas nastavený v jedné vrstvě. To umožňuje, aby se tištěný materiál před tiskem další vrstvy správně ochladil. Vrstvy mohou stále trvat kratší dobu, než je minimální vrstva, pokud je Lift Head deaktivována a pokud by jinak byla porušena minimální rychlost." @@ -4489,6 +4909,10 @@ msgctxt "bottom_layers description" msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "Počet spodních vrstev. Při výpočtu podle tloušťky dna je tato hodnota zaokrouhlena na celé číslo." +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "" + msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "Kolik obrysových čar se má tisknout okolo lineárního vzoru v základně raftu." @@ -4525,6 +4949,10 @@ msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." msgstr "Počet řádků použitých pro podpůrný límec. Více límcových linií zvyšuje přilnavost k stavební desce za cenu nějakého dalšího materiálu." +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "" + msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "Počet vrchních vrstev na druhé vrstvě voru. Jedná se o plně vyplněné vrstvy, na kterých model sedí. Výsledkem 2 vrstev je hladší horní povrch než 1." @@ -4565,6 +4993,10 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "Vnější průměr špičky trysky." +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "" + msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "Vzor výplňového materiálu tisku. Čáry a cik-cak s každou vrstvou obracejí směr výplně, čímž se snižují náklady na materiál. Mřížka, trojúhelník, tri-hexagon, krychle, oktet, čtvrtinově krychlový, křížový a soustředný vzor jsou plně vytištěny v každé vrstvě. Vzory gyroid, krychlový, čtvrtinově krychlový a oktet se mění s každou vrstvou, aby se zajistilo rovnoměrnější rozložení síly v každém směru. Bleskový vzor se snaží minimalizovat množství výplně tím, že podporuje pouze strop objektu." @@ -4617,14 +5049,14 @@ msgctxt "jerk_layer_0 description" msgid "The print maximum instantaneous velocity change for the initial layer." msgstr "Maximální okamžitá změna rychlosti tisku pro počáteční vrstvu." +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "" + msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." msgstr "Tvar desky pro sestavení bez zohlednění netisknutelných oblastí." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Tvar tiskové hlavy. Toto jsou souřadnice relativně k pozici tiskové hlavy, což je obvykle pozice jejího prvního extruderu. Rozměry vlevo a před tiskovou hlavou musí být negativní souřadnice." - msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "Velikost kapes na čtyřcestných kříženích v křížovém 3D vzoru ve výškách, kde se vzor sám dotýká." @@ -4645,6 +5077,10 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Rychlost tisku všech vnitřních stěn. Tisk vnitřní stěny rychleji než vnější zeď zkracuje dobu tisku. Funguje dobře, když je nastavena mezi rychlostí vnější stěny a rychlostí výplně." +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "" + msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." msgstr "Rychlost, při které se tisknou oblasti povrchu mostu." @@ -4661,6 +5097,14 @@ msgctxt "raft_base_speed description" msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Rychlost tisku základní vrstvy raftu. Toto by se mělo tisknout poměrně pomalu, protože objem materiálu vycházejícího z trysky je poměrně vysoký." +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "" + msgctxt "bridge_wall_speed description" msgid "The speed at which the bridge walls are printed." msgstr "Rychlost, při které jsou stěny mostu tisknuty." @@ -4945,6 +5389,26 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Tím se řídí vzdálenost, kterou by extrudér měl dojet bezprostředně před začátkem zdi mostu. Pobyt před startem můstku může snížit tlak v trysce a může vést k ploššímu můstku." +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "" + msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" @@ -4961,6 +5425,10 @@ msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Toto nastavení omezuje počet stažení, ke kterým dochází v okně minimální vzdálenosti vytlačování. Další stažení v tomto okně budou ignorovány. Tím se zabrání opakovanému navíjení na stejný kus vlákna, protože to může vlákno zploštit a způsobit problémy s broušením." @@ -5189,10 +5657,22 @@ msgctxt "support_tree_max_diameter label" msgid "Trunk Diameter" msgstr "Průměr kmene" +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "" + msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "" + msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" msgstr "Spojit překrývající se objekty" @@ -5317,9 +5797,17 @@ msgctxt "shell label" msgid "Walls" msgstr "Stěny" +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "" + msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Stěny, které přesahují více než tento úhel, budou vytištěny pomocí nastavení převislých stěn. Pokud je hodnota 90, nebudou se žádné stěny považovat za převislé. Převis, který je podporován podporou, nebude považován ani za převis." +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "" msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." @@ -5357,6 +5845,14 @@ msgctxt "bridge_wall_material_flow description" msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "Při tisku stěn můstku je množství vytlačovaného materiálu násobeno touto hodnotou." +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "" + msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "Při tisku druhé vrstvy potahu se množství vytlačovaného materiálu násobí touto hodnotou." @@ -5381,6 +5877,10 @@ msgctxt "wall_transition_length description" 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 lines." msgstr "Když dochází k přechodu mezi různými počty čar zdí v místě, kde se část stává užší, je určitý prostor vyhrazen pro rozdělení nebo spojení čar zdí." +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "" + msgctxt "wipe_hop_enable description" msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." msgstr "Při stírání se podložka spustí, aby se vytvořila vůle mezi tryskou a tiskem. Zabraňuje tomu, aby tryska narazila na tisk během pohybů, což snižuje šanci vyrazit tisk z montážní desky." @@ -5477,6 +5977,10 @@ msgctxt "support_interface_line_width description" msgid "Width of a single line of support roof or floor." msgstr "Šířka jedné řady nosných střech nebo podlah." +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." msgstr "Šířka jedné řady oblastí v horní části tisku." @@ -5653,6 +6157,10 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Vyrovnávní spojů na ose Z" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "Z pozice švu" @@ -5673,6 +6181,10 @@ msgctxt "support_xy_overrides_z option z_overrides_xy" msgid "Z overrides X/Y" msgstr "Z přepisuje X/Y" +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + msgctxt "infill_pattern option zigzag" msgid "Zig Zag" msgstr "Cik-cak" @@ -5729,58 +6241,46 @@ msgstr "cestování" #~ msgid "Brim Only on Outside" #~ msgstr "Límec pouze venku" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Doba trvání každého kroku v postupné změně průtoku" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Povolit postupné změny průtoku. Když je povoleno, průtok se postupně zvyšuje / snižuje na cílový průtok. Toto je užitečné pro tiskárny s Bowdenovou trubicí, kde se průtok okamžitě nezmění, když se spustí / zastaví extrudér." - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Pro jakýkoli pohyb delší než tato hodnota se materiálový průtok resetuje na cílový průtok dráhy" - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Velikost kroku diskretizace postupné změny průtoku" - -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Postupné změny průtoku povoleny" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Maximální zrychlení postupných změn průtoku" - -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Maximální zrychlení průtoku pro první vrstvu" - #~ msgctxt "layer_0_z_overlap description" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "První a druhá vrstva modelu se překrývají ve směru Z, aby se kompenzovalo vlákno ztracené ve vzduchové mezeře. Všechny modely nad první vrstvou modelu budou o tuto částku posunuty dolů." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Maximální zrychlení pro postupné změny průtoku" +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle Length" +#~ msgstr "Délka trysky" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Minimální rychlost pro postupné změny průtoku pro první vrstvu" +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "Velikost trysky" #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Límec tiskněte pouze na vnější stranu modelu. Tím se snižuje množství límce, který je třeba následně odstranit, zatímco to tolik nesnižuje přilnavost k podložce." -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Doba trvání resetování průtoku" +#~ msgctxt "wall_overhang_speed_factor label" +#~ msgid "Overhanging Wall Speed" +#~ msgstr "Rychlost tisku převislé stěny" + +#~ msgctxt "wall_overhang_speed_factor description" +#~ msgid "Overhanging walls will be printed at this percentage of their normal print speed." +#~ msgstr "Převislé stěny budou vytištěny v procentech jejich normální rychlosti tisku." #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" #~ msgstr "Rozlišení rozhraní podpor" +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "Výškový rozdíl mezi špičkou trysky a nejnižší částí tiskové hlavy." + +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +#~ msgstr "Tvar tiskové hlavy. Toto jsou souřadnice relativně k pozici tiskové hlavy, což je obvykle pozice jejího prvního extruderu. Rozměry vlevo a před tiskovou hlavou musí být negativní souřadnice." + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +#~ msgstr "Stěny, které přesahují více než tento úhel, budou vytištěny pomocí nastavení převislých stěn. Pokud je hodnota 90, nebudou se žádné stěny považovat za převislé. Převis, který je podporován podporou, nebude považován ani za převis." + #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "Při kontrole, kde je model nad a pod podpěrou, proveďte kroky dané výšky. Nižší hodnoty se budou řezat pomaleji, zatímco vyšší hodnoty mohou způsobit tisk normální podpory na místech, kde mělo být rozhraní podpory." diff --git a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po b/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4..0000000000 --- a/resources/i18n/cs_CZ/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/cura.pot b/resources/i18n/cura.pot index 4141ac0f71..2f55767f0c 100644 --- a/resources/i18n/cura.pot +++ b/resources/i18n/cura.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -18,6 +18,10 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" +msgctxt "@title:label" +msgid " " +msgstr "" + #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" @@ -478,10 +482,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "" - msgctxt "@title:column" msgid "Applies on" msgstr "" @@ -656,10 +656,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "" @@ -815,6 +811,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "" + msgctxt "@info" msgid "Compare and save." msgstr "" @@ -823,10 +823,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "" @@ -1178,10 +1174,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "" - msgctxt "@button" msgid "Decline" msgstr "" @@ -1242,10 +1234,6 @@ msgctxt "@label" msgid "Density" msgstr "" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "" @@ -1464,6 +1452,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "" + msgctxt "@title:window" msgid "Export Profile" msgstr "" @@ -1501,6 +1493,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" @@ -1509,6 +1505,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" @@ -1690,6 +1690,10 @@ msgctxt "@label" msgid "First available" msgstr "" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "" + msgctxt "@label:listbox" msgid "Flow" msgstr "" @@ -1706,10 +1710,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -msgctxt "@label" -msgid "Font" -msgstr "" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "" @@ -1753,10 +1753,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "" @@ -1769,14 +1765,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "" - msgctxt "@label" msgid "Gantry Height" msgstr "" @@ -1789,10 +1777,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "" - msgctxt "@label:category menu label" msgid "Generic" msgstr "" @@ -1813,10 +1797,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "" - msgctxt "@label" msgid "Grid Placement" msgstr "" @@ -2058,10 +2038,6 @@ msgctxt "@label" msgid "Interface" msgstr "" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "" @@ -2090,10 +2066,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "" - msgctxt "@label" msgid "Job Name" msgstr "" @@ -2190,6 +2162,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "" @@ -2206,10 +2182,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "" @@ -2286,6 +2258,14 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "" @@ -2839,10 +2819,6 @@ msgctxt "@header" msgid "Package details" msgstr "" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "" @@ -2990,14 +2966,6 @@ msgctxt "@button" msgid "Plugins" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "" @@ -3259,10 +3227,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3291,18 +3255,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "" - msgctxt "@label" msgid "Qt version" msgstr "" @@ -3476,10 +3428,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "" @@ -3571,6 +3519,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "" + msgctxt "@info" msgid "Search in the browser" msgstr "" @@ -3659,10 +3611,6 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "" @@ -3771,6 +3719,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -3799,10 +3751,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "" - msgctxt "@label:checkbox" msgid "Show all" msgstr "" @@ -3993,6 +3941,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "@label" msgid "Start the slicing process" msgstr "" @@ -4066,34 +4018,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "" - msgctxt "@action:button" msgid "Sync" msgstr "" @@ -4410,8 +4334,12 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" msgstr "" msgctxt "@text:window" @@ -4671,6 +4599,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "" + msgctxt "@info:title" msgid "Unable to slice" msgstr "" @@ -4739,10 +4675,6 @@ msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "" - msgctxt "@label" msgid "Unknown" msgstr "" @@ -4848,14 +4780,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "" - msgctxt "@title:column" msgid "Value" msgstr "" @@ -5006,11 +4930,11 @@ msgid "Y (Depth)" msgstr "" msgctxt "@label" -msgid "Y max" +msgid "Y max ( '+' towards front)" msgstr "" msgctxt "@label" -msgid "Y min" +msgid "Y min ( '-' towards back)" msgstr "" msgctxt "@info" @@ -5094,10 +5018,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "" @@ -5171,6 +5091,14 @@ msgctxt "name" msgid "G-code Profile Reader" msgstr "" +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "" + +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "" + msgctxt "description" msgid "Provides a normal solid mesh view." msgstr "" @@ -5179,14 +5107,6 @@ msgctxt "name" msgid "Solid View" msgstr "" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - msgctxt "description" msgid "Provides support for reading 3MF files." msgstr "" @@ -5235,222 +5155,6 @@ msgctxt "name" msgid "Machine Settings Action" msgstr "" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "" - msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "" @@ -5707,3 +5411,234 @@ msgctxt "name" msgid "G-code Writer" msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "" diff --git a/resources/i18n/de_DE/cura.po b/resources/i18n/de_DE/cura.po index 900fbb7490..ee6c397b33 100644 --- a/resources/i18n/de_DE/cura.po +++ b/resources/i18n/de_DE/cura.po @@ -170,6 +170,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-Datei" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-Reader" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-Writer" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Das 3MF-Writer-Plugin ist beschädigt." @@ -245,6 +253,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF-Datei" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-Reader" + msgctxt "@label" msgid "Abort" msgstr "Abbrechen" @@ -281,6 +293,10 @@ msgctxt "@button" msgid "Accept" msgstr "Akzeptieren" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." + msgctxt "@label" msgid "Account synced" msgstr "Konto wurde synchronisiert" @@ -421,6 +437,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Senden von anonymen Daten erlauben" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Stets nachfragen" @@ -577,6 +597,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup und Reset der Konfiguration" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Materialeinstellungen und Plug-ins sichern und synchronisieren" @@ -749,6 +773,14 @@ msgctxt "@label" msgid "Checking..." msgstr "Überprüfung läuft ..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Nach Firmware-Updates suchen." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." @@ -829,6 +861,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Komprimierte G-Code-Datei" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Reader für komprimierten G-Code" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer für komprimierten G-Code" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Konfigurationsänderungen" @@ -901,6 +941,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Über Cloud verbunden" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Wenden Sie sich an die UltiMaker Community." @@ -1036,6 +1080,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Erstellen Sie Druckprojekte in der digitalen Bibliothek." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Ihr Backup wird erstellt..." @@ -1048,10 +1096,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura-Backups" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-Backups" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-Profil" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-Profil-Reader" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-Profil-Writer" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-Projekt 3MF-Datei" @@ -1081,6 +1141,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-Version" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Backend" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Währung:" @@ -1365,6 +1437,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Aktiviert" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." + msgctxt "@title:label" msgid "End G-code" msgstr "Ende G-Code" @@ -1453,6 +1529,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Erweitern Sie UltiMaker Cura durch Plugins und Materialprofile." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" + msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -1601,6 +1681,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Firmware-Aktualisierung" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-Update-Prüfer" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-Aktualisierungsfunktion" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Firmware kann nicht aktualisiert werden, da die Verbindung zum Drucker die Firmware-Aktualisierung nicht unterstützt." @@ -1700,6 +1788,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-Code-Datei" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-Code-Profil-Reader" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-Code-Reader" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-Code-Writer" + msgctxt "@label" msgid "G-code flavor" msgstr "G-Code-Variante" @@ -1848,6 +1948,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Wenn Ihr Drucker nicht aufgeführt ist, lesen Sie die Anleitung für Fehlerbehebung für Netzwerkdruck" +msgctxt "name" +msgid "Image Reader" +msgstr "Bild-Reader" + msgctxt "@action:button" msgid "Import" msgstr "Importieren" @@ -2132,6 +2236,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Ansicht von links" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Cura-Vorgängerprofil-Reader" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Lassen Sie es die Entwickler wissen, falls etwas schief läuft." @@ -2212,6 +2320,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Protokolle" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbindung zum Drucker wurde unterbrochen" @@ -2220,6 +2332,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Geräteeinstellungen" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Beschreibung Geräteeinstellungen" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Maschinen" @@ -2236,6 +2352,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot-Druckdatei" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot-Druckdatei-Writer" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter konnte nicht im angegebenen Pfad speichern." @@ -2292,6 +2412,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Verwalten Sie hier Ihre UltiMaker Cura Plug-ins und Ihre Materialprofile. Halten Sie Ihre Plug-ins auf dem neuesten Stand und sichern Sie Ihr Setup regelmäßig." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Verwaltet Netzwerkverbindungen zu Ultimaker-Netzwerkdruckern." + msgctxt "@label" msgid "Manufacturer" msgstr "Hersteller" @@ -2304,6 +2432,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marktplatz" +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplatz" + msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2320,6 +2452,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Materialfarbe" +msgctxt "name" +msgid "Material Profiles" +msgstr "Materialprofile" + msgctxt "@label" msgid "Material Type" msgstr "Materialtyp" @@ -2364,6 +2500,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modus" +msgctxt "name" +msgid "Model Checker" +msgstr "Modell-Prüfer" + msgctxt "@info:title" msgid "Model Errors" msgstr "Modellfehler" @@ -2380,6 +2520,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Überwachen" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Überwachungsstufe" + msgctxt "@action:button" msgid "Monitor print" msgstr "Druck überwachen" @@ -2821,6 +2965,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Einstellungen pro Objekt" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Werkzeug „Einstellungen pro Objekt“" + msgid "Perspective" msgstr "Ansicht" @@ -2945,6 +3093,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nachbearbeitung" +msgctxt "name" +msgid "Post Processing" +msgstr "Nachbearbeitung" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin Nachbearbeitung" @@ -2961,6 +3113,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Vorbereiten" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Vorbereitungsstufe" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Vorbereitung läuft..." @@ -2981,6 +3137,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Vorschau" +msgctxt "name" +msgid "Preview Stage" +msgstr "Vorschaustufe" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Einzugsturm" @@ -3225,6 +3385,106 @@ msgctxt "@label" msgid "Properties" msgstr "Eigenschaften" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Bietet eine Überwachungsstufe in Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Bietet eine normale, solide Netzansicht." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Bietet eine Vorbereitungsstufe in Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Bietet eine Vorschaustufe in Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Ermöglicht das Exportieren von Cura-Profilen." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Ermöglicht das Importieren von Cura-Profilen." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Ermöglicht das Lesen von 3MF-Dateien." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Ermöglicht das Lesen von AMF-Dateien." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Unterstützt das Lesen von Modelldateien." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Bietet Unterstützung für das Schreiben von 3MF- und UCP-Dateien." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von MakerBot-Formatpaketen." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Ermöglicht die Einstellungen pro Objekt." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Stellt die Röntgen-Ansicht bereit." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt Version" @@ -3261,6 +3521,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 beenden" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Liest G-Code-Format aus einem komprimierten Archiv." + msgctxt "@button" msgid "Recommended" msgstr "Empfohlen" @@ -3313,6 +3577,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Wechseldatenträger" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Ausgabegerät-Plugin für Wechseldatenträger" + msgctxt "@action:button" msgid "Remove" msgstr "Entfernen" @@ -3593,6 +3861,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Material an Drucker senden" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry-Protokolleinrichtung" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothek für serielle Kommunikation" @@ -3801,6 +4073,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Bei der UltiMaker-Plattform anmelden" +msgctxt "name" +msgid "Simulation View" +msgstr "Simulationsansicht" + msgctxt "@tooltip" msgid "Skin" msgstr "Außenhaut" @@ -3829,6 +4105,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Bei Änderung der Einstellungen automatisch schneiden." +msgctxt "name" +msgid "Slice info" +msgstr "Slice-Informationen" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicing fehlgeschlagen" @@ -3845,6 +4125,10 @@ msgctxt "@label" msgid "Solid" msgstr "Fest" +msgctxt "name" +msgid "Solid View" +msgstr "Solide Ansicht" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide Ansicht" @@ -3939,6 +4223,10 @@ msgctxt "@label" msgid "Strength" msgstr "Festigkeit" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material erfolgreich nach %1 exportiert" @@ -3983,6 +4271,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Stützstruktur-Blocker" +msgctxt "name" +msgid "Support Eraser" +msgstr "Stützstruktur-Radierer" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Stützstruktur-Füllung" @@ -4500,6 +4792,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Versucht, ein Cura-Backup-Verzeichnis ohne entsprechende Daten oder Metadaten wiederherzustellen." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + msgctxt "@button" msgid "Troubleshooting" msgstr "Störungen beheben" @@ -4520,10 +4816,22 @@ msgctxt "@label" msgid "Type" msgstr "Typ" +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-Reader" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-Writer" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-Drucken" +msgctxt "name" +msgid "USB printing" +msgstr "USB-Drucken" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker‑Konto" @@ -4540,6 +4848,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-Netzwerkverbindung" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Durch UltiMaker verifiziertes Paket" @@ -4548,6 +4860,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Durch UltiMaker verifiziertes Plug-in" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker-Maschinenabläufe" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker-Drucker" @@ -4560,6 +4876,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Digitale Bibliothek von UltiMaker" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Das Profil kann nicht hinzugefügt werden." @@ -4733,6 +5053,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Aktualisierung läuft…" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Upgrades von Konfigurationen von Cura 5.6 auf Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Benutzerdefinierte Firmware hochladen" @@ -4769,6 +5197,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Wert" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Upgrade von Version 2.1 auf 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Upgrade von Version 2.2 auf 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Upgrade von Version 2.5 auf 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Upgrade von Version 2.6 auf 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Upgrade von Version 2.7 auf 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Upgrade von Version 3.0 auf 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Upgrade von Version 3.2 auf 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Upgrade von Version 3.3 auf 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Upgrade von Version 3.4 auf 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Upgrade von Version 3.5 auf 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Upgrade von Version 4.0 auf 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Upgrade von Version 4.1 auf 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Upgrade von Version 4.11 auf 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Upgrade von Version 4.13 auf 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Upgrade von Version 4.2 auf 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Upgrade von Version 4.3 auf 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Upgrade von Version 4.4 auf 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Upgrade von Version 4.5 auf 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Upgrade von Version 4.6.0 auf 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Upgrade von Version 4.6.2 auf 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Upgrade von Version 4.7 auf 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Upgrade von Version 4.8 auf 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Upgrade von Version 4.9 auf 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Upgrade von Version 5.2 auf 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versions-Upgrade 5.3 auf 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versions-Upgrade 5.4 auf 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Versions-Upgrade 5.6 auf 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Drucker in der Digital Factory anzeigen" @@ -4885,6 +5421,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Breite (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Schreibt G-Code in eine Datei." + msgctxt "@label" msgid "X (Width)" msgstr "X (Breite)" @@ -4897,6 +5441,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen-Ansicht" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgen-Ansicht" @@ -4909,6 +5457,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D-Datei" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-Reader" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Tiefe)" @@ -5054,554 +5606,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Sie müssen das Programm beenden und neu starten {}, bevor Änderungen wirksam werden." -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Verwaltet Netzwerkverbindungen zu vernetzten UltiMaker-Druckern." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker-Netzwerkverbindung" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Ermöglicht das Importieren von Profilen aus G-Code-Dateien." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-Code-Profil-Reader" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Bietet eine normale, solide Netzansicht." - -msgctxt "name" -msgid "Solid View" -msgstr "Solide Ansicht" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-Plugin zur stufenweisen Glättung des Flusses, um Sprünge bei hohem Fluss zu begrenzen" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Ermöglicht das Lesen von 3MF-Dateien." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-Reader" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Akzeptiert den G-Code und sendet diesen an einen Drucker. Das Plugin kann auch die Firmware aktualisieren." - -msgctxt "name" -msgid "USB printing" -msgstr "USB-Drucken" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Nach Firmware-Updates suchen." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-Update-Prüfer" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Verwaltet die Erweiterungen der Anwendung und ermöglicht das Durchsuchen von Erweiterungen auf der Ultimaker-Website." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplatz" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sicherung und Wiederherstellen Ihrer Konfiguration." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-Backups" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Beschreibt die Durchführung der Geräteeinstellung (z. B. Druckabmessung, Düsengröße usw.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Beschreibung Geräteeinstellungen" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aktualisiert Konfigurationen von Cura 2.5 auf Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Upgrade von Version 2.5 auf 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Upgrade der Konfigurationen von Cura 4.7 auf Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Upgrade von Version 4.7 auf 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Upgrade der Konfigurationen von Cura 4.4 auf Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Upgrade von Version 4.4 auf 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aktualisiert Konfigurationen von Cura 3.0 auf Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Upgrade von Version 3.0 auf 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aktualisiert die Konfigurationen von Cura 4.11 auf Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Upgrade von Version 4.11 auf 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aktualisiert Konfigurationen von Cura 4.1 auf Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Upgrade von Version 4.1 auf 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aktualisiert Konfigurationen von Cura 2.6 auf Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Upgrade von Version 2.6 auf 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Upgrade der Konfigurationen von Cura 4.6.0 auf Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Upgrade von Version 4.6.0 auf 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aktualisiert Konfigurationen von Cura 3.3 auf Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Upgrade von Version 3.3 auf 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Upgrade der Konfigurationen von Cura 4.8 auf Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Upgrade von Version 4.8 auf 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Upgrade der Konfigurationen von Cura 4.5 auf Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Upgrade von Version 4.5 auf 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aktualisiert Konfigurationen von Cura 4.2 auf Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Upgrade von Version 4.2 auf 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aktualisiert Konfigurationen von Cura 3.2 auf Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Upgrade von Version 3.2 auf 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aktualisiert Konfigurationen von Cura 4.3 auf Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Kombination nicht empfohlen. Laden Sie den BB-Kern in Slot 1 (links) für bessere Zuverlässigkeit." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Upgrade von Version 4.3 auf 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Upgrades von Konfigurationen von Cura 5.6 auf Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot-Sketch-Druckdatei" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Versions-Upgrade 5.6 auf 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Drucker suchen" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aktualisiert Konfigurationen von Cura 2.1 auf Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Dies ist eine Cura-Universal-Projektdatei. Möchten Sie sie als Cura-Universal-Projekt öffnen oder die Modelle daraus importieren?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Upgrade von Version 2.1 auf 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportpaket für technischen Support" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Aktualisiert Konfigurationen von Cura 5.3 auf Cura 5.4." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Die Modelldaten können nicht an die Engine gesendet werden. Bitte versuchen Sie es erneut oder wenden Sie sich an den Support." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versions-Upgrade 5.3 auf 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Die Modelldaten können nicht an die Engine gesendet werden. Bitte versuchen Sie, ein weniger detailliertes Modell zu verwenden oder die Anzahl der Instanzen zu reduzieren." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Upgrade der Konfigurationen von Cura 4.9 auf Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Aktualisiert Konfigurationen von Cura 5.8 auf Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Upgrade von Version 4.9 auf 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aktualisiert Konfigurationen von Cura 2.7 auf Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Versionsaktualisierung 5.8 auf 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Upgrade von Version 2.7 auf 3.0" +msgid "3DConnexion mouses" +msgstr "3DConnexion-Mäuse" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aktualisiert Konfigurationen von Cura 3.5 auf Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Ermöglicht das Arbeiten mit 3D-Mäusen in Cura." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Upgrade von Version 3.5 auf 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Dauer des Extruderwechsels" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Upgrade der Konfigurationen von Cura 5.2 auf Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "Extruder-Vorstart-G-Code" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Upgrade von Version 5.2 auf 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Flip-Modell-Werkzeuggriff Y-Achse (Neustart erforderlich)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aktualisiert Konfigurationen von Cura 4.0 auf Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Lizenz für %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Upgrade von Version 4.0 auf 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ Druckdatei" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aktualisiert Konfigurationen von Cura 4.13 auf Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Sollte die Y-Achse des Übersetzungs-Werkzeuggriffs gespiegelt werden? Dies wirkt sich nur auf die Y-Koordinate des Modells aus, alle anderen Einstellungen wie die Druckkopfeinstellungen der Maschine bleiben unberührt und verhalten sich wie zuvor." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Upgrade von Version 4.13 auf 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aktualisiert Konfigurationen von Cura 3.4 auf Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Upgrade von Version 3.4 auf 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aktualisiert Konfigurationen von Cura 2.2 auf Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "Start GCode ist zuerst erforderlich" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Upgrade von Version 2.2 auf 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Diese Konfiguration ist nicht verfügbar, da eine Nichtübereinstimmung oder ein anderes Problem mit dem Kerntyp %1 vorliegt. Bitte besuchen Sie die Support-Seite, um zu überprüfen, welche Kerne dieser Druckertyp in Bezug auf neue Slices unterstützt." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aktualisiert Konfigurationen von Cura 4.6.2 auf Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Konfigurationsupgrades von Cura 5.9 auf Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Upgrade von Version 4.6.2 auf 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Versions-Upgrade 5.9 auf 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Aktualisiert Konfigurationen von Cura 5.4 auf Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versions-Upgrade 5.4 auf 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Ermöglicht das Laden und Anzeigen von G-Code-Dateien." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-Code-Reader" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y max ( '+' nach vorne)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Sendet anonymisierte Slice-Informationen. Kann in den Einstellungen deaktiviert werden." - -msgctxt "name" -msgid "Slice info" -msgstr "Slice-Informationen" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Ermöglicht Hotplugging des Wechseldatenträgers und Beschreiben." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Ausgabegerät-Plugin für Wechseldatenträger" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Erstellt ein Radierernetz, um den Druck von Stützstrukturen in bestimmten Positionen zu blockieren" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Stützstruktur-Radierer" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Überprüft Modelle und Druckkonfiguration auf mögliche Probleme und erteilt Empfehlungen." - -msgctxt "name" -msgid "Model Checker" -msgstr "Modell-Prüfer" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Bietet eine Vorbereitungsstufe in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Vorbereitungsstufe" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Stellt eine Vorschau der Daten der Slice-Ebene bereit." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simulationsansicht" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Ermöglicht das Lesen von AMF-Dateien." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-Reader" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Stellt die Röntgen-Ansicht bereit." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen-Ansicht" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Ermöglicht Gerätemaßnahmen für die Aktualisierung der Firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-Aktualisierungsfunktion" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Bietet Unterstützung für den Import von Profilen der Vorgängerversionen von Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Cura-Vorgängerprofil-Reader" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Erweiterung, die eine Nachbearbeitung von Skripten ermöglicht, die von Benutzern erstellt wurden" - -msgctxt "name" -msgid "Post Processing" -msgstr "Nachbearbeitung" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Protokolliert bestimmte Ereignisse, damit diese vom Absturzbericht verwendet werden können" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry-Protokolleinrichtung" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von MakerBot-Formatpaketen." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot-Druckdatei-Writer" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Ermöglicht das Importieren von Cura-Profilen." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-Profil-Reader" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Lesen von Ultimaker Format Packages." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-Reader" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Ermöglicht Erstellung von druckbarer Geometrie aus einer 2D-Bilddatei." - -msgctxt "name" -msgid "Image Reader" -msgstr "Bild-Reader" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Stellt die Verbindung zum Slicing-Backend der CuraEngine her." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Backend" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-Code wird in ein komprimiertes Archiv geschrieben." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer für komprimierten G-Code" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ermöglicht Maschinenabläufe für UltiMaker-Maschinen (z. B. Assistent für Bettnivellierung, Auswahl von Upgrades usw.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker-Maschinenabläufe" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Liest G-Code-Format aus einem komprimierten Archiv." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Reader für komprimierten G-Code" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Bietet eine Vorschaustufe in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Vorschaustufe" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Stellt eine Verbindung zur Digitalen Bibliothek her und ermöglicht es Cura, Dateien aus der Digitalen Bibliothek zu öffnen und darin zu speichern." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Digitale Bibliothek von UltiMaker" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Ermöglicht das Exportieren von Cura-Profilen." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-Profil-Writer" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Bietet Unterstützung für das Lesen von X3D-Dateien." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-Reader" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Unterstützt das Lesen von Modelldateien." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Bietet eine Überwachungsstufe in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Überwachungsstufe" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Ermöglicht die Einstellungen pro Objekt." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Werkzeug „Einstellungen pro Objekt“" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Bietet Möglichkeiten, um XML-basierte Materialprofile zu lesen und zu schreiben." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Materialprofile" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Bietet Unterstützung für das Schreiben von 3MF- und UCP-Dateien." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-Writer" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Bietet Unterstützung für das Schreiben von Ultimaker Format Packages." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-Writer" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Schreibt G-Code in eine Datei." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-Code-Writer" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y min ( '-' nach hinten)" diff --git a/resources/i18n/de_DE/fdmextruder.def.json.po b/resources/i18n/de_DE/fdmextruder.def.json.po index 9bf0c7595f..6308a92a13 100644 --- a/resources/i18n/de_DE/fdmextruder.def.json.po +++ b/resources/i18n/de_DE/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Durchmesser" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Drucklüfter Extruder" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Extruder-Ende" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Auszuführenden G-Code beim Umschalten von diesem Extruder beenden." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Extruder Ende G-Code Dauer" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "Die Zeit, die für die Ausführung des Ende-G-Codes benötigt wird, wenn Sie von diesem Extruder wegschalten." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Extruder-Endposition" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Extruder-Endposition X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extruder-Endposition Y" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Z-Position Extruder-Einzug" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Drucklüfter Extruder" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Extruder-Start" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Extruder Start G-Code Dauer" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "Die Zeit, die für die Ausführung des Start-G-Codes benötigt wird, wenn Sie zu diesem Extruder wechseln." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startposition des Extruders" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "X-Position Extruder-Start" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Y-Position Extruder-Start" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Endposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Bevorzugen Sie eine absolute Startposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Düsen-ID" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "X-Position Extruder-Start" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Y-Position Extruder-Start" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Versatz Düse" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Die X-Koordinate des Düsenversatzes." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y-Versatz Düse" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Auszuführenden G-Code beim Umschalten auf diesen Extruder starten." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Die für das Drucken verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Die Anzahl der Drucklüfter für diesen Extruder. Nur vom Standardwert 0 ändern, wenn Sie für jeden Extruder einen anderen Drucklüfter verwenden." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Die Zeit, die für die Ausführung des Ende-G-Codes benötigt wird, wenn Sie von diesem Extruder wegschalten." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Die Zeit, die für die Ausführung des Start-G-Codes benötigt wird, wenn Sie zu diesem Extruder wechseln." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Die X-Koordinate der Endposition beim Ausschalten des Extruders." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Die X-Koordinate des Düsenversatzes." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Die X-Koordinate der Startposition beim Einschalten des Extruders." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Die Y-Koordinate der Endposition beim Ausschalten des Extruders." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Die Y-Koordinate des Düsenversatzes." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Die Y-Koordinate der Startposition beim Einschalten des Extruders." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Düsenlänge" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Teil des Druckkopfs." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Dauer des Extruderwechsels" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "Extruder-G-Code-Vorstart" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "Vor dem Umschalten auf diesen Extruder auszuführender G-Code-Vorstart." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Bei Verwendung einer Mehrfachwerkzeugkonfiguration ist dieser Wert die Werkzeugwechselzeit in Sekunden. Dieser Wert wird zur geschätzten Zeit basierend auf der Anzahl der Änderungen hinzugefügt." diff --git a/resources/i18n/de_DE/fdmprinter.def.json.po b/resources/i18n/de_DE/fdmprinter.def.json.po index 78217b35f8..428e8b385e 100644 --- a/resources/i18n/de_DE/fdmprinter.def.json.po +++ b/resources/i18n/de_DE/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Gerät" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" +msgstr "So erzeugen Sie den Prime Tower:
  • Normal: Erstellen Sie ein Bucket, in dem sekundäre Materialien grundiert werden
  • Verschachtelt: Erstellen Sie einen Prime Tower so spärlich wie möglich. Das spart Zeit und Filament, ist aber nur möglich, wenn die verwendeten Materialien aneinander haften
" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Gerätespezifische Einstellungen" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Gerät" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Die Bezeichnung Ihres 3D-Druckermodells." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Anzeige der Gerätevarianten" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-Code" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Ende G-Code" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Material-GUID" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID des Materials. Dies wird automatisch eingestellt." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Materialart" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "Die Art des verwendeten Materials." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Material-Marke" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "Die Marke des verwendeten Materials." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Durchmesser" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Warten auf Aufheizen der Druckplatte" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Warten auf Aufheizen der Düse" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materialtemperaturen einfügen" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Temperaturprüfung der Druckplatte einfügen" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Gerätebreite" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Gerätetiefe" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Gerätehöhe" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Druckbettform" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechteckig" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptisch" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Druckplattenmaterial" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Das Material der im Drucker eingebauten Druckplatte." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Mit beheizter Druckplatte" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Option für vorhandene beheizte Druckplatte." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Immer aktives Tools schreiben" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is-Center-Ursprung" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Anzahl Extruder" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Anzahl der aktivierten Extruder" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Düsendurchmesser außen" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Der Außendurchmesser der Düsenspitze." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Düsenlänge" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Düsenwinkel" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Heizzonenlänge" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Temperatursteuerung der Düse aktivieren" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Aufheizgeschwindigkeit" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Abkühlgeschwindigkeit" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Mindestzeit Standby-Temperatur" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-Code-Variante" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Der Typ des zu generierenden G-Codes." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits von Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Firmware-Einzug" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruder teilen sich Heizelement" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruder teilen sich eine Düse" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rückzugstellung der gemeinsam genutzten Düse" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Unzulässige Bereiche" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Unzulässige Bereiche für die Düse" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Eine Liste mit Polygonen mit Bereichen, in welche die Düse nicht eintreten darf." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Gerätekopf und Lüfter Polygon" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Brückenhöhe" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Düsen-ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Düsendurchmesser" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Versatz mit Extruder" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Extruder absolute Einzugsposition" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximaldrehzahl X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximaldrehzahl Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximaldrehzahl Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximaldrehzahl E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Die Maximalgeschwindigkeit des Filaments." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Beschleunigung X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Die maximale Beschleunigung für den Motor der X-Richtung" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Beschleunigung Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Beschleunigung Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Beschleunigung Filament" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Die maximale Beschleunigung für den Motor des Filaments." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Voreingestellte Beschleunigung" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Voreingestellter X-Y-Ruck" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Voreingestellter Z-Ruck" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Voreingestellter Ruck für den Motor in Z-Richtung." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Voreingestellter Filament-Ruck" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Voreingestellter Ruck für den Motor des Filaments." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Schritte pro Millimeter (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Schritte pro Millimeter (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Schritte pro Millimeter (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Schritte pro Millimeter (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-Endanschlag in positiver Richtung" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-Endanschlag in positiver Richtung" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-Endanschlag in positiver Richtung" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Mindest-Vorschub" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Feeder-Raddurchmesser" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256" - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualität" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Schichtdicke" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Dicke der ersten Schicht" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Linienbreite" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Breite der Wandlinien" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Die Breite einer einzelnen Wandlinie." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Breite der äußeren Wandlinien" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Breite der inneren Wandlinien" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Breite der oberen/unteren Linie" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Die Breite einer einzelnen oberen/unteren Linie." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Breite der Fülllinien" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Die Breite einer einzelnen Fülllinie." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Skirt-/Brim-Linienbreite" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Breite der Stützstrukturlinien" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Die Breite einer einzelnen Stützstrukturlinie." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Stützstruktur Schnittstelle Linienbreite" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Breite der Stützdachlinie" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Die Breite einer einzelnen Stützdachlinie." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Stützstruktur Boden Linienbreite" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Linienbreite Einzugsturm" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Die Linienbreite eines einzelnen Einzugsturms." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Linienbreite der ersten Schicht" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung." - -msgctxt "shell label" -msgid "Walls" -msgstr "Wände" - -msgctxt "shell description" -msgid "Shell" -msgstr "Gehäuse" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extruder für Wand" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder Außenwand" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder Innenwand" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddicke" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Anzahl der Wandlinien" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Wandübergangslänge" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Anzahl verteilter Wände" - -msgctxt "wall_distribution_count description" -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 "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Schwellenwinkel für Wandübergang" - -msgctxt "wall_transition_angle description" -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 "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Wandübergangsfilter Abstand" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Wandübergangsfilter Rand" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Wipe-Abstand der Außenwand" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Einfügung Außenwand" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Reihenfolge des Wanddrucks optimieren" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandreihenfolge" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Von innen nach außen" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Von außen nach innen" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Abwechselnde Zusatzwände" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Mindestlinienstärke der Wand" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimale Wandlinienstärke (geradzahlig)" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimale Wandlinienstärke (ungeradzahlig)" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Drucken von dünnen Wänden" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Mindestgröße des Merkmals" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimale Wandlinienstärke (dünn)" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Erweiterung" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Horizontale Erweiterung erste Schicht" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontalloch-Erweiterung" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Justierung der Z-Naht" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Benutzerdefiniert" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kürzester" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Zufall" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Schärfste Kante" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position der Z-Naht" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Hinten links" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Hinten" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Hinten rechts" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Vorne rechts" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Vorne" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Vorne links" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-Naht X" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-Naht Y" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Präferenz Nahtkante" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Keine" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Naht verbergen" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naht offenlegen" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Naht verbergen oder offenlegen" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Intelligent verbergen" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Realitvwert der Z-Naht" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Oben/Unten" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Oben/Unten" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Oberfläche Außenhaut Extruder" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Oberfläche Außenhaut Schichten" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Oberfläche Außenhaut Linienbreite" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Oberfläche Außenhaut Muster" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Das Muster der obersten Schichten." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Gleichmäßige Reihenfolge oben" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Linienrichtungen der Oberfläche Außenhaut" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Oben/Unten" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Obere/untere Dicke" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Obere Dicke" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Obere Schichten" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Untere Dicke" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Untere Schichten" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Erste untere Schichten" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine ganze Zahl auf- oder abgerundet." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Unteres/oberes Muster" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Das Muster der oberen/unteren Schichten." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Unteres Muster für erste Schicht" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Das Muster am Boden des Drucks der ersten Schicht." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Polygone oben/unten verbinden" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Gleichmäßige Reihenfolge oben/unten" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Richtungen der oberen/unteren Linie" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Kleine obere/untere Breite" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Kleine Oberseite/Unterseite auf der Oberfläche" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Keine Außenhaut in Z-Lücken" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Linienanzahl der zusätzlichen Außenhaut" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Glätten aktivieren" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Nur oberste Schicht glätten" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Glättungsmuster" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Gleichmäßige Reihenfolge hin/her" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Glättungslinienabstand" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Der Abstand zwischen den Glättungslinien." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Glättungsfluss" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Glättungseinsatz" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Ein Rand um ein Modell kann ein anderes Modell an einer Stelle berühren, an der Sie sie nicht haben wollen. Dies entfernt alle Ränder innerhalb dieser Entfernung von Modellen ohne Rand." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Eine Distanz, die von den Kanten des Modells einzuhalten ist. Die Glättung des gesamten Weges zur Kante des Mesh führt möglicherweise zu einer gezackten Kante Ihres Drucks." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Glättungsgeschwindigkeit" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen Außenhautschichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Beschleunigung Glättung" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste von Ganzzahl-Linienrichtungen für den Fall, wenn die oberen/unteren Schichten die Linien- oder Zickzack-Muster verwenden. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad) verwendet werden." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Die Beschleunigung, mit der das Glätten erfolgt." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ruckfunktion glätten" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Prozentsatz Außenhaut überlappen" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Außenhaut überlappen" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut oben" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Breite für das Entfernen der Außenhaut unten" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut oben" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansionsdistanz Außenhaut unten" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximaler Winkel Außenhaut für Expansion" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Mindestbreite Außenhaut für Expansion" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Außenhautbereiche, die schmaler als die Mindestbreite sind, werden nicht expandiert. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist." - -msgctxt "infill label" -msgid "Infill" -msgstr "Füllung" - -msgctxt "infill description" -msgid "Infill" -msgstr "Füllung" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extruder für Füllung" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Fülldichte" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Passt die Fülldichte des Drucks an." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Linienabstand Füllung" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Füllmuster" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexagon" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Würfel" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Würfel-Unterbereich" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Viertelwürfel" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kreuz" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3D-Kreuz" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Blitz" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Füllungslinien verbinden" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Füllungspolygone verbinden" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Linienrichtungen Füllung" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Eine Liste von Ganzzahl-Linienrichtungen für die Verwendung. Elemente aus der Liste werden während des Aufbaus der Schichten sequentiell verwendet und wenn das Listenende erreicht wird, beginnt die Liste von vorne. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (45- und 135-Grad für die Linien- und Zickzack-Muster und 45-Grad für alle anderen Muster) verwendet werden." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "X-Versatz Füllung" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Eine Liste mit Polygonen mit Bereichen, in welche die Düse nicht eintreten darf." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Eine Liste mit Polygonen mit Bereichen, die für den Druckkopf unzulässig sind." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Y-Versatz Füllung" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Extruder absolute Einzugsposition" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Füllstart randomisieren" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximale Abweichung für Anpassschichten" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Topographische Größe der Anpassschichten" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Fülllinie multiplizieren" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Abweichung Schrittgröße für Anpassschichten" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Zusätzliche Füllung Wandlinien" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Fügen Sie zusätzliche Wände um den Füllbereich hinzu. Derartige Wände können zu einem verringerten Absacken der oberen/unteren Außenhautlinien beitragen, was bedeutet, dass Sie weniger Außenhautschichten oben/unten bei derselben Qualität von Kosten für zusätzliches Material benötigen." " Diese Funktion ist verknüpfbar mit „Füllungspolygone verbinden“, um alle Füllungen mit einem einzigen Extrusionspfad zu verbinden, ohne dass hierzu Vorwärtsbewegungen oder Rückzüge erforderlich sind, sofern die richtige Konfiguration gewählt wurde." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Gehäuse Würfel-Unterbereich" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Prozentsatz Füllung überlappen" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Füllung überlappen" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Wipe-Abstand der Füllung" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Füllschichtdicke" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stufenweise Füllungsschritte" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Höhe stufenweise Füllungsschritte" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Füllung vor Wänden" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Mindestbereich Füllung" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Füllstruktur" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Füllung für Überhänge Stützstruktur" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Stützenstärke für Außenhautkanten" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Unterstützungsebenen für Außenhautkanten" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Stützwinkel der Blitz-Füllung" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Überstandswinkel der Blitz-Füllung" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Beschnittwinkel der Blitz-Füllung" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Begradigungswinkel der Blitz-Füllung" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Voreingestellte Drucktemperatur" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatur Druckabmessung" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Drucktemperatur" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Die Temperatur, die für das Drucken verwendet wird." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Drucktemperatur erste Schicht" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Anfängliche Drucktemperatur" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Endgültige Drucktemperatur" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standardtemperatur Druckplatte" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatur Druckplatte" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatur der Druckplatte für die erste Schicht" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Haftung" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Haftungstendenz" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Oberflächenhaftungstendenz." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien als Prozentwert der Linienbreite der Außenhautlinien und der inneren Wand. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Prozentwert über 50 % bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Oberflächenenergie" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Justieren Sie die Überlappung zwischen den Wänden und den Außenhaut-Mittellinien bzw. den Endpunkten der Außenhaut-Mittellinien. Eine geringe Überlappung ermöglicht die feste Verbindung der Wände mit der Außenhaut. Beachten Sie, dass bei einer einheitlichen Linienbreite von Außenhaut und Wand jeder Wert über die Hälfte der Wandbreite bereits dazu führen kann, dass die Außenhaut über die Wand hinausgeht, da in diesem Moment die Position der Düse des Außenhaut-Extruders möglicherweise bereits über die Wandmitte hinausgeht." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oberflächenenergie." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallines Material" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Einzugsmaß für Sickerschutz" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Sickerschutz" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Einzugsmaß für Bruchvorbereitung" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, bevor es beim Einziehen abgebrochen wird." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatur für Bruchvorbereitung" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Einzugsmaß für das Brechen" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Einzugsgeschwindigkeit für das Brechen" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Bruchtemperatur" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Die Temperatur, bei der das Filament für eine saubere Bruchstelle gebrochen wird." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Ausspülgeschwindigkeit" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Ausspüldauer" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Ausspülgeschwindigkeit am Ende des Filaments" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Ausspüldauer am Ende des Filaments" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale Parkdauer" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Faktor für Bewegung ohne Ladung" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Ein Faktor, der angibt, wie stark das Filament zwischen dem Feeder und der Düsenkammer komprimiert wird; hilft zu bestimmen, wie weit das Material für einen Filamentwechsel bewegt werden muss." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluss" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wandfluss" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Durchflusskompensation an Wandlinien." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Wandfluss außen" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Durchflusskompensation an der äußeren Wandlinie." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Wandfluss innen" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluss der äußersten Oberflächenwand" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluss der inneren Oberflächenwand(en)" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluss oben/unten" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Durchflusskompensation an oberen/unteren Linien." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluss Oberfläche Außenhaut" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluss der Füllung" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Durchflusskompensation an Füllungslinien." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Skirt/Brim-Fluss" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Stützstruktur-Fluss" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Durchflusskompensation an Stützstrukturlinien." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluss Stützstruktur-Schnittstelle" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Stützdachfluss" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Durchflusskompensation an Stützdachlinien." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Stützbodenfluss" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Durchflusskompensation an Stützbodenlinien." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluss Einzugsturm" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Durchflusskompensation an Einzugsturmlinien." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluss der ersten Schicht" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Innenwandfluss der ersten Schicht" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Außenwandfluss der ersten Schicht" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Unterer Fluss der ersten Schicht" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Standby-Temperatur" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Die Temperatur der Düse, wenn eine andere Düse aktuell für das Drucken verwendet wird." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Ist Stützmaterial" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" - -msgctxt "speed label" -msgid "Speed" -msgstr "Geschwindigkeit" - -msgctxt "speed description" -msgid "Speed" -msgstr "Geschwindigkeit" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Druckgeschwindigkeit" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Die Geschwindigkeit, mit der gedruckt wird." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Füllgeschwindigkeit" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandgeschwindigkeit" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Geschwindigkeit Außenwand" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Geschwindigkeit Innenwand" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Geschwindigkeit der inneren Oberfläche der Wand" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Oberfläche Außenhaut Geschwindigkeit" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Geschwindigkeit obere/untere Schicht" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Stützstrukturgeschwindigkeit" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Stützstruktur-Füllungsgeschwindigkeit" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Stützstruktur-Schnittstellengeschwindigkeit" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Stützdachgeschwindigkeit" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Geschwindigkeit Bodenstruktur" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Geschwindigkeit Einzugsturm" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegungsgeschwindigkeit" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Druckgeschwindigkeit für die erste Schicht" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegungsgeschwindigkeit für die erste Schicht" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Geschwindigkeit Skirt/Brim" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Sprunghöhe Z" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Anzahl der langsamen Schichten" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhältnis für Durchflussausgleich" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Beschleunigungssteuerung aktivieren" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Beschleunigung für Bewegungen aktivieren" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Beschleunigung Druck" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Die Beschleunigung, mit der das Drucken erfolgt." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Beschleunigung Füllung" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Beschleunigung Wand" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Beschleunigung Außenwand" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Beschleunigung Innenwand" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Beschleunigung der äußeren Oberfläche der Wand" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Beschleunigung der inneren Oberfläche der Wand" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Beschleunigung Oberfläche Außenhaut" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Beschleunigung Oben/Unten" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Beschleunigung Stützstruktur" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Beschleunigung Stützstrukturfüllung" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Beschleunigung Stützstrukturschnittstelle" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Beschleunigung Dachstruktur" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Beschleunigung Bodenstruktur" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Beschleunigung Einzugsturm" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Beschleunigung Bewegung" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Beschleunigung erste Schicht" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Die Beschleunigung für die erste Schicht." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Druckbeschleunigung für die erste Schicht" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Die Beschleunigung während des Druckens der ersten Schicht." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Geschwindigkeit der Bewegung für die erste Schicht" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Beschleunigung Skirt/Brim" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Rucksteuerung aktivieren" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Ruckfunktion für Bewegungen aktivieren" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Ruckfunktion Drucken" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Ruckfunktion Füllung" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Ruckfunktion Wand" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Ruckfunktion Außenwand" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Ruckfunktion Innenwand" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Ruck der inneren Oberflächenwand" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Ruck der äußersten Oberflächenwand" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Justierung der Oberfläche Außenhaut" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Ruckfunktion obere/untere Schicht" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Ruckfunktion Stützstruktur" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Ruckfunktion Stützstruktur-Füllung" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Ruckfunktion Stützstruktur-Schnittstelle" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Ruckfunktion für Dachstruktur" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Ruckfunktion für Bodenstruktur" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Ruckfunktion Einzugsturm" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Ruckfunktion Bewegung" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Ruckfunktion der ersten Schicht" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Ruckfunktion Druck für die erste Schicht" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Ruckfunktion Bewegung für die erste Schicht" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Ruckfunktion Skirt/Brim" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden." - -msgctxt "travel label" -msgid "Travel" -msgstr "Bewegungen" - -msgctxt "travel description" -msgid "travel" -msgstr "Bewegungen" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Einzug aktivieren" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Einziehen bei Schichtänderung" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Einzugsabstand" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Einzugsgeschwindigkeit" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug)" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Einzugsgeschwindigkeit (Zurückschieben)" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Mindestbewegung für Einzug" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximale Anzahl von Einzügen" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Fenster „Minimaler Extrusionsabstand“" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-Modus" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Aus" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alle" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Nicht auf der Außenfläche" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Nicht in Außenhaut" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Innerhalb der Füllung" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. Combing Entfernung ohne Einziehen" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Vor Außenwand zurückziehen" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Gedruckte Teile bei Bewegung umgehen" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Stützstrukturen bei Bewegung umgehen" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Umgehungsabstand Bewegung" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Schichtstart X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Schichtstart Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-Sprung beim Einziehen" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-Sprung nur über gedruckten Teilen" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z-Sprung Höhe" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-Sprung nach Extruder-Wechsel" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z-Sprung Höhe nach Extruder-Wechsel" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Kühlung" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Kühlung" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Kühlung für Drucken aktivieren" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Lüfterdrehzahl" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normaldrehzahl des Lüfters" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximaldrehzahl des Lüfters" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Anfängliche Lüfterdrehzahl" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normaldrehzahl des Lüfters bei Höhe" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normaldrehzahl des Lüfters bei Schicht" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Mindestzeit für Schicht" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Mindestgeschwindigkeit" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Druckkopf anheben" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Drucktemperatur für kleine Schichten" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken." - -msgctxt "support label" -msgid "Support" -msgstr "Stützstruktur" - -msgctxt "support description" -msgid "Support" -msgstr "Stützstruktur" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Stützstruktur generieren" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder für Stützstruktur" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder für Füllung Stützstruktur" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder für erste Schicht der Stützstruktur" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder für Stützstruktur-Schnittstelle" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder für Dachstruktur" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder für Bodenstruktur" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Stützstruktur" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Tree" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maximaler Astwinkel" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Astdichte" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Stammdurchmesser" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Winkel des Astdurchmessers" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Platzierung Stützstruktur" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Druckbett berühren" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Überall" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Bevorzugter Astwinkel" - -msgctxt "support_tree_angle_slow description" -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 "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Vergrößerung des Durchmessers zum Modell" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht." - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Mindesthöhe auf Modell" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Durchmesser der ersten Schicht" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Astdichte" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Astspitzendurchmesser" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Begrenzung der Astreichweite" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimale Astreichweite" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Dieser Wert ist die empfohlene Entfernung der Äste von den Stellen, die durch sie gestützt werden. Er kann überschritten werden, damit Äste ihre Zielposition erreichen (Druckplatte oder einen flachen Teil des Modells). Eine Senkung dieses Werts sorgt für eine stabilere Stützstruktur, erhöht jedoch die Anzahl der Äste und damit den Materialverbrauch/die Druckzeit)." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Präferenz Auflagestelle" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Wenn möglich auf der Druckplatte" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Bei Bedarf auf dem Modell" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Winkel für Überhänge Stützstruktur" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Muster der Stützstruktur" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Quer" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Anzahl der Wandlinien des Stützdachs" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Anzahl der unteren Wandlinien der Stützstruktur" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Stützlinien verbinden" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zickzack-Elemente Stützstruktur verbinden" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichte der Stützstruktur" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Linienabstand der Stützstruktur" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Linienabstand der ursprünglichen Stützstruktur" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Unterstützung Linienrichtung Füllung" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass der Standardwinkel von 0 Grad zu verwenden ist." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Stütz-Brim aktivieren" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breite der Brim-Stützstruktur" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Anzahl der Brim-Stützstrukturlinien" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-Abstand der Stützstruktur" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Oberer Abstand der Stützstruktur" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Unterer Abstand der Stützstruktur" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y-Abstand der Stützstruktur" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Abstandspriorität der Stützstruktur" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y hebt Z auf" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z hebt X/Y auf" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "X/Y-Mindestabstand der Stützstruktur" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Stufenhöhe der Stützstruktur" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Max. Stufenhöhe der Stützstruktur" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Stützstufe minimaler Neigungswinkel" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Abstand für Zusammenführung der Stützstrukturen" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Erweiterung der Stützstruktur" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Stützstruktur Füllschichtdicke" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Stufenweise Füllungsschritte Stützstruktur" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Mindestbereich Stützstruktur" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Stützstruktur-Schnittstelle aktivieren" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Stützdach aktivieren" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Stützboden aktivieren" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dicke der Stützstrukturschnittstelle" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Dicke des Stützdachs" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dicke der Bodenstruktur" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Dichte Stützstrukturschnittstelle" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Passt die Fülldichte des Drucks an." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Die Dichte der Stützstrukturdächer und -böden wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichte der Dachstruktur" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Dadurch wird die Dichte der Stützstruktur angepasst, mit der die Spitzen der Äste generiert werden. Ein höherer Wert führt zu besseren Überhängen, allerdings lässt sich die Stützstruktur schwerer entfernen. Verwenden Sie bei sehr hohen Werten ein Stützdach oder stellen Sie sicher, dass die Dichte der Stützstruktur oben ähnlich hoch ist." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstruktur wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Linienabstand der Dachstruktur" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Der Durchmesser des verwendeten Filaments wird angepasst. Stellen Sie hier den Durchmesser des verwendeten Filaments ein." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichte der Bodenstruktur" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Linienabstand der Bodenstruktur" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Muster Stützstrukturschnittstelle" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Muster des Stützdachs" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Muster der Bodenstruktur" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linien" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Gitter" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Dreiecke" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Konzentrisch" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zickzack" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Mindestbereich Stützstruktur-Schnittstelle" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Mindestbereich Stützstrukturdach" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Mindestbereich Stützstrukturboden" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturdach" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Horizontale Erweiterung Stützstrukturboden" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Schnittstellenpriorität der Stützstruktur" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Stützstruktur priorisiert" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Schnittstelle priorisiert" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Stützlinien priorisiert" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Schnittstellenlinien priorisiert" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Beide überlappen" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Richtungen der Verbindungslinien unterstützen" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Richtungen der Dachlinien unterstützen" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Richtungen der Bodenlinien unterstützen" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Liste der zu verwendenden Linienrichtungen (in ganzen Zahlen). Die Elemente der Liste werden während des Aufbaus der Schichten der Reihe nach abgearbeitet. Wenn das Ende der Liste erreicht wird, wird wieder beim ersten Element begonnen. Die Listenobjekte werden durch Kommas getrennt und die gesamte Liste ist in eckige Klammern gesetzt. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass herkömmliche Standardwinkel (zwischen 45 und 135- rad, falls die Verbindungsstellen ziemlich dick sind, oder 90 Grad) zu verwenden sind." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Lüfterdrehzahl überschreiben" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Verwendung von Pfeilern" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pfeilerdurchmesser" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Der Durchmesser eines speziellen Pfeilers." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximaler Durchmesser für Stützpfeiler" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Winkel des Pfeilerdachs" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Stütznetz ablegen" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Szene verfügt über Stütznetze" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Druckplattenhaftung" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Haftung" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Einzugstropfen aktivieren" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-Position Extruder-Einzug" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Druckplattenhaftungstyp" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Keine" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Druckplattenhaftung für Extruder" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Das für das Drucken von Skirt/Brim/Raft verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim-Extruder" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft-Basis-Extruder" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck der ersten Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extruder für die Raft-Mitte" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck der mittleren Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extruder für die Raft-Oberseite" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Der Extruderzug, der für den Druck der obersten Schicht(en) des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Anzahl der Skirt-Linien" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Skirt-Höhe" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt-Abstand" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks." -"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Mindestlänge für Skirt/Brim" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breite des Brim-Elements" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Anzahl der Brim-Linien" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Die Anzahl der Linien für das Brim-Element. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Abstand zum Brim-Element" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim ersetzt die Stützstruktur" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Position des Randes" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Drucken Sie einen Rand an der Außenseite des Modells, an der Innenseite oder an beiden. Je nach Modell können Sie so die Menge des Randes, den Sie anschließend entfernen müssen, reduzieren und gleichzeitig eine gute Bettanhaftung sicherstellen." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Nur außen" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Nur innen" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Überall" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Randvermeidung" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Ein Rand um ein Modell kann ein anderes Modell an einer Stelle berühren, an der Sie sie nicht haben wollen. Dies entfernt alle Ränder innerhalb dieser Entfernung von Modellen ohne Rand." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Intelligente Brim" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Zusätzlicher Abstand für Raft" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Floßbasis Extra-Rand" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Wenn die Floßbasis aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell herum, das ebenfalls ein Floß erhält. Wenn Sie diesen Rand vergrößern, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Floßmitte Extra-Rand" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Wenn die Floßmitte aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell, der ebenfalls ein Floß erhält. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Floß Oberseite Extra-Rand" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Wenn die Oberseite des Floßes aktiviert ist, ist dies der zusätzliche Bereich um das Modell herum, der ebenfalls mit einem Floß versehen wird. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Innenecken des Rafts entfernen" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Innenecken der Floßbasis entfernen" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Entfernen Sie die Innenecken der Floßbasis, so dass das Floß konvex wird." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Mittlere Innenecken des Floßes entfernen" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Entfernen Sie die Innenecken aus dem mittleren Teil des Floßes, so dass das Floß konvex wird." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Innenecken der Oberseite des Floßes entfernen" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Entfernen Sie die Innenecken aus der Oberseite des Floßes, damit das Floß konvex wird." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft-Glättung" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Floßbasis glätten" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Kontur des Floßbodens abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Umriss des Floßes entfernt, die kleiner als ein solcher Kreis sind." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Floßmitte glätten" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Floßmitte abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Floßoberseite glätten" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Mit dieser Einstellung legen Sie fest, wie stark die Innenecken des oberen Umrisses des Floßes abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luftspalt für Raft" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Überlappung der ersten Schicht" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Lassen Sie die erste und zweite Ebene des Modells in Z-Richtung überlappen, um das im Luftspalt verlorene Filament auszugleichen. Alle Modelle oberhalb der ersten Modellebene werden um diesen Betrag nach unten verschoben.\nEs kann vorkommen, dass aufgrund dieser Einstellung die zweite Ebene unterhalb der ersten Ebene gedruckt wird. Dieses Verhalten ist beabsichtigt." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dicke der Raft-Basis" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Linienbreite der Raft-Basis" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Linienabstand der Raft-Basis" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Mittlere Ebenen des Rafts" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Dicke der Raft-Mittelbereichs" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Die Schichtdicke des Raft-Mittelbereichs." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Linienbreite des Raft-Mittelbereichs" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Linienabstand im Raft-Mittelbereich" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Obere Raft-Schichten" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dicke der oberen Raft-Schichten" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Die Schichtdicke der oberen Raft-Schichten." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Linienbreite der Raft-Oberfläche" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Linienabstand der Raft-Oberfläche" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Monotone Floßoberflächenordnung" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Drucken Sie die Linien auf der Oberseite des Floßes in einer Reihenfolge, die bewirkt, dass sie sich immer mit den benachbarten Linien in einer Richtung überlappen. Der Druckvorgang dauert dadurch etwas länger, aber die Oberfläche sieht konsistenter aus, was auch auf der Unterseite des Modells sichtbar ist." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Anzahl der Floßwände" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "Die Anzahl der Konturen, die um das lineare Muster des Floßes gedruckt werden." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Wandanzahl des Raft-Bodens" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Anzahl der mittleren Wände des Floßes" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "Die Anzahl der Konturen, die um das lineare Muster in den mittleren Schichten des Floßes gedruckt werden." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Anzahl der oberen Wände des Floßes" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "Die Anzahl der Konturen, die um das lineare Muster in den oberen Lagen des Floßes gedruckt werden sollen." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft-Druckgeschwindigkeit" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Druckgeschwindigkeit für Raft-Basis" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Druckgeschwindigkeit Raft Mitte" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Druckgeschwindigkeit Raft Oben" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Druckbeschleunigung Raft" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Druckbeschleunigung Raft Unten" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Druckbeschleunigung Raft Mitte" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Druckbeschleunigung Raft Oben" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Ruckfunktion Raft-Druck" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Ruckfunktion Drucken Raft-Basis" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Ruckfunktion Drucken Raft Mitte" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Ruckfunktion Drucken Raft Oben" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Lüfterdrehzahl für Raft" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Die Drehzahl des Lüfters für das Raft." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Lüfterdrehzahl für Raft-Basis" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Lüfterdrehzahl Raft Mitte" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Lüfterdrehzahl Raft Oben" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Duale Extrusion" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Einzugsturm aktivieren" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Prime Tower Typ" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" -msgstr "So erzeugen Sie den Prime Tower:
  • Normal: Erstellen Sie ein Bucket, in dem sekundäre Materialien grundiert werden
  • Verschachtelt: Erstellen Sie einen Prime Tower so spärlich wie möglich. Das spart Zeit und Filament, ist aber nur möglich, wenn die verwendeten Materialien aneinander haften
" - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Verschachtelt" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Größe Einzugsturm" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Die Breite des Einzugsturms." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Mindestvolumen Einzugsturm" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Prime Tower Maximaler Überbrückungsabstand" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "Die maximale Länge der Zweige, die über die Luft gedruckt werden dürfen." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-Position des Einzugsturm" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Die X-Koordinate der Position des Einzugsturms." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-Position des Einzugsturms" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Die Y-Koordinate der Position des Einzugsturms." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Wipe-Düse am Einzugsturm inaktiv" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Nach dem Drucken des Einzugsturms mit einer Düse wird das ausgetretene Material von der anderen Düse am Einzugsturm abgewischt." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Grundfläche des Prime-Turms" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Nachdem das Gerät von einem Extruder zu einem anderen gewechselt hat, wird die Druckplatte abgesenkt, um einen Abstand zwischen der Düse und dem Druck zu bilden. Das verhindert, dass die Düse abgesondertes Material auf der Außenseite des Drucks hinterlässt." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Größe der Prime-Turm-Basis" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Höhe der Prime-Turm-Basis" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Neigung der Prime-Turm-Basis" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Linienabstand des Prime-Turm-Floßes" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sickerschutz aktivieren" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Winkel für Sickerschutz" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Abstand für Sickerschutz" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtungen." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Düsenwechsel Einzugsabstand" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Düsenwechsel Rückzugsgeschwindigkeit" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Düsenwechsel Rückzuggeschwindigkeit" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgezogen wird." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgeschoben wird." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Netzreparaturen" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Passe die Gitter besser an den 3D-Druck an." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Überlappende Volumen vereinen" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Löcher entfernen" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Extensives Stitching" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Unterbrochene Flächen beibehalten" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Überlappung zusammengeführte Netze" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Netzüberschneidung entfernen" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Wechselndes Entfernen des Netzes" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Leere erste Schichten entfernen" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale Auflösung" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale Bewegungsauflösung" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale Abweichung" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale Abweichung der Extrusionsfläche" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Fließbewegung aktivieren" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Fließbewegung – Verschiebeabstand" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Fließbewegung – kleiner Abstand" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Fließbewegungswinkel" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Sonderfunktionen" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Druckreihenfolge" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Alle" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Alle gleichzeitig" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Nacheinander" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Druckreihenfolge manuell einstellen" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Alle Einstellungen, die die Auflösung des Drucks beeinflussen. Diese Einstellungen haben große Auswirkung auf die Qualität (und Druckdauer)." msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Ermöglicht es Ihnen, die Objektliste zu ordnen, um die Druckreihenfolge manuell festzulegen. Das erste Objekt in der Liste wird zuerst gedruckt." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Mesh-Füllung" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Abwechselnde Zusatzwände" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang der Netzverarbeitung" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Mesh beschneiden" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Form" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Mindestbreite der Form" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dachhöhe der Form" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Formwinkel" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Stütznetz" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Anti-Überhang-Netz" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oberflächenmodus" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oberfläche" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beides" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiralisieren der äußeren Konturen" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Glätten der spiralisierten Kontur" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relative Extrusion" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimentell" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicing-Toleranz" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Mitte" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exklusiv" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inklusiv" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegungsoptimierung Füllung" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Fließtemperaturgraf" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Mindestumfang Polygon" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Ineinandergreifende Struktur generieren" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Breite der ineinandergreifenden Balken" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Ausrichtung der ineinandergreifenden Struktur" - -msgctxt "interlocking_orientation description" -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 "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Anzahl der Schichten ineinandergreifender Balken" - -msgctxt "interlocking_beam_layer_count description" -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 "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Tiefe der ineinandergreifenden Struktur" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Stützstruktur in Blöcke aufteilen" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Blockgröße für Stützstruktur" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Anzahl der Stützstruktur-Blocklinien" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Windschutz aktivieren" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "X/Y-Abstand des Windschutzes" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Begrenzung des Windschutzes" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Voll" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Begrenzt" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Höhe des Windschutzes" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Überhänge druckbar machen" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximaler Winkel des Modells" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximaler Lochflächen-Überstand" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting aktivieren" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-Volumen" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Mindestvolumen vor Coasting" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-Geschwindigkeit" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Größe 3D-Quertasche" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Querfülldichte Bild" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Querfülldichte Bild für Stützstruktur" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konische Stützstruktur aktivieren" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Winkel konische Stützstruktur" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Mindestbreite konische Stützstruktur" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Ungleichmäßige Außenhaut" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Willkürliche Zitterbewegung beim Druck der äußeren Wand, wodurch die Oberfläche ein raues und ungleichmäßiges Aussehen erhält." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Nur ungleichmäßige Außenhaut" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dicke der ungleichmäßigen Außenhaut" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichte der ungleichmäßigen Außenhaut" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Punktabstand der ungleichmäßigen Außenhaut" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Ausgleichsfaktor Durchflussrate" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während einer Sekunde Extrusion bewegen würde." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Anpassschichten verwenden" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Die Funktion Anpassschichten berechnet die Schichthöhe je nach Form des Modells." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale Abweichung für Anpassschichten" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Abweichung Schrittgröße für Anpassschichten" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topographische Größe der Anpassschichten" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten der Schichten enger aneinander liegen." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Winkel für überhängende Wände" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Geschwindigkeit für überhängende Wände" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Brückeneinstellungen aktivieren" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Mindestlänge Brückenwand" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale Dichte der Materialsparfüllung der Brücke" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting Brückenwand" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Brückenwandgeschwindigkeit" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Brückenwandfluss" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Brücken-Außenhautgeschwindigkeit" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Brücken-Außenhautfluss" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichte der Brücken-Außenhaut" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Lüfterdrehzahl Brücke" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brücke hat mehrere Schichten" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Geschwindigkeit Brücke, zweite Außenhaut" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluss Brücke, zweite Außenhaut" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichte Brücke, zweite Außenhaut" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Geschwindigkeit Brücke, dritte Außenhaut" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluss Brücke, dritte Außenhaut" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Die extrudierte Materialmenge beim Drucken der dritten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichte Brücke, dritte Außenhaut" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Düse zwischen den Schichten abwischen" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für das Abwischen aktiv wird." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materialmenge zwischen den Wischvorgängen" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Abwischen bei Einzug aktivieren" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Einzugsabstand für Abwischen" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Einzugsgeschwindigkeit für Abwischen" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vorbereitungszeit für Abwischen beim Einzug" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Abwischen pausieren" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausieren nach Aufhebung des Einzugs." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Z-Sprung beim Abwischen" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Z-Sprung Höhe - Abwischen" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprunghöhe - Abwischen" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-Position für Bürste - Abwischen" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "X-Position, an der das Skript für Abwischen startet." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Wiederholungszähler - Abwischen" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Abstand Wischbewegung" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Max. Lochdurchmesser" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Max. Detaillänge" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Detailgeschwindigkeit" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Geschwindigkeit der ersten Schicht von Details" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Wechselndes Entfernen des Netzes" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Abwechselnde Wandrichtungen für jede weitere Schicht und jeden Einsatz. Nützlich für Materialien, die Spannungen aufbauen können, wie beim Metalldruck." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Äußere Wände gruppieren" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Immer aktives Tools schreiben" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Druckprozess-Berichterstattung" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Stets zurückziehen, wenn eine Bewegung für den Beginn einer Außenwand erfolgt." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Meldung von Ereignissen, die über die eingestellten Schwellenwerte hinausgehen" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können zu große Löcher kompensieren; negative Werte können zu kleine Löcher kompensieren." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Druckprozess-Berichterstattung aktivieren" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Der Abstand, der auf die Polygone in der ersten Schicht angewendet wird. Ein negativer Wert kann ein Zerquetschen der ersten Schicht, auch als „Elefantenfuß“ bezeichnet, ausgleichen." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Aktivieren Sie die Druckprozess-Berichterstattung, um Schwellenwerte für eine mögliche Fehlererkennung festzulegen." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Der Abstand, der auf die Polygone in den einzelnen Schichten angewendet wird. Positive Werte können die Stützbereiche glätten und dadurch eine stabilere Stützstruktur schaffen." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Fluss-Warnung" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Umfang des angewandten Versatzes für die Böden der Stützstruktur." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Grenzwert für die Fluss-Warnung zur Erkennung." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Umfang des angewandten Versatzes für die Dächer der Stützstruktur." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Fluss-Grenzwert" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Umfang des angewandten Versatzes für die Stützstruktur-Schnittstellen-Polygone." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Grenzwert für die Flussanomalie zur Erkennung." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Wert, um den das Filament eingezogen wird, damit es während des Abwischens nicht austritt." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Drucktemperatur-Warnung" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Ein Zusatz zum Radius von der Mitte jedes Würfels, um die Modellbegrenzungen zu überprüfen und um zu entscheiden, ob dieser Würfel unterteilt werden sollte. Höhere Werte führen zu einem dickeren Gehäuse von kleinen Würfeln im Bereich der Modellbegrenzungen." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Grenzwert für Drucktemperaturwarnung zur Erkennung." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Anti-Überhang-Netz" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Drucktemperatur-Grenzwert" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Einzugsmaß für Sickerschutz" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Grenzwert für die Erkennung von Drucktemperatur-Anomalien." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Sickerschutz" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Build-Volumen-Temperatur Warnung" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Verwenden Sie den Extruder-Versatz für das Koordinatensystem. Betrifft alle Extruder." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Grenzwert für die Erkennung einer Warnung vor der Build-Volumen-Temperatur." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Erzeugt eine Struktur aus ineinandergreifenden Balken an den Stellen, an denen sich Modelle berühren. Dies verbessert die Haftung zwischen Modellen, insbesondere bei Modellen, die aus verschiedenen Materialien gedruckt werden." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Gedruckte Teile bei Bewegung umgehen" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Stützstrukturen bei Bewegung umgehen" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Hinten" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Hinten links" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Hinten rechts" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits von Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beides" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Beide überlappen" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Untere Schichten" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Unteres Muster für erste Schicht" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut unten" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut unten" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Untere Dicke" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Astdichte" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Astdichte" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Winkel des Astdurchmessers" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Einzugsmaß für Bruchvorbereitung" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Bruchvorbereitung" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatur für Bruchvorbereitung" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Einzugsmaß für das Brechen" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Einzugsgeschwindigkeit für das Brechen" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Bruchtemperatur" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Stützstruktur in Blöcke aufteilen" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Lüfterdrehzahl Brücke" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brücke hat mehrere Schichten" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichte Brücke, zweite Außenhaut" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, zweite Außenhaut" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluss Brücke, zweite Außenhaut" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Geschwindigkeit Brücke, zweite Außenhaut" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichte der Brücken-Außenhaut" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Brücken-Außenhautfluss" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Brücken-Außenhautgeschwindigkeit" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Schwellenwert Stützstruktur Brücken-Außenhaut" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale Dichte der Materialsparfüllung der Brücke" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichte Brücke, dritte Außenhaut" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Lüfterdrehzahl Brücke, dritte Außenhaut" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluss Brücke, dritte Außenhaut" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Geschwindigkeit Brücke, dritte Außenhaut" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting Brückenwand" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Brückenwandfluss" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Brückenwandgeschwindigkeit" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Randvermeidung" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Abstand zum Brim-Element" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Anzahl der Brim-Linien" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Position des Randes" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim ersetzt die Stützstruktur" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breite des Brim-Elements" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Druckplattenhaftung" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Druckplattenhaftung für Extruder" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Druckplattenhaftungstyp" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Druckplattenmaterial" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Druckbettform" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatur Druckplatte" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatur der Druckplatte für die erste Schicht" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatur Druckabmessung" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Build-Volumen-Temperatur Grenzwert" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Grenzwert für Anomalie der Build-Volumen-Temperatur für die Erkennung." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Build-Volumen-Temperatur Warnung" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Einstellungen Befehlszeile" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Durch Aktivieren dieser Einstellung erhält Ihr Prime-Turm einen Rand, auch wenn das Modell keinen hat. Wenn Sie eine stabilere Basis für einen hohen Turm möchten, können Sie die Basis-Höhe erhöhen." msgctxt "center_object label" msgid "Center Object" msgstr "Objekt zentrieren" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Ändern Sie die Geometrie des gedruckten Modells so, dass eine minimale Stützstruktur benötigt wird. Tiefe Überhänge werden flacher. Überhängende Bereiche fallen herunter und werden damit vertikaler." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Wählt zwischen den verfügbaren Techniken zur Erzeugung von Stützstrukturen. Mit „Normal“ wird eine Stützstruktur direkt unter den überhängenden Teilen erzeugt, die direkt darauf liegen. In der Einstellung „Tree“ wird eine Baumstützstruktur erzeugt, die zu den überhängenden Teilen reicht und diese stützt. Die Stützstruktur verästelt sich innerhalb des Modells und stützt es so gut wie möglich vom Druckbett aus." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-Geschwindigkeit" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-Volumen" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Beim Coasting wird der letzte Teil eines Extrusionswegs durch einen Bewegungsweg ersetzt. Das abgesonderte Material wird zum Druck des letzten Stücks des Extrusionswegs verwendet, um Fadenziehen zu vermindern." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-Modus" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Durch Combing bleibt die Düse während der Bewegung innerhalb von bereits gedruckten Bereichen. Dies führt zu einer leicht verlängerten Bewegungszeit, reduziert jedoch die Notwendigkeit von Einzügen. Wenn Combing deaktiviert ist, wird das Material eingezogen und die Düse bewegt sich in einer geraden Linie zum nächsten Punkt. Es ist außerdem möglich, das Combing über die oberen/unteren Außenhautbereiche zu vermeiden, oder nur Combing innerhalb der Füllung auszuführen." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Einstellungen Befehlszeile" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Konzentrisch" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Winkel konische Stützstruktur" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Mindestbreite konische Stützstruktur" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Füllungslinien verbinden" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Füllungspolygone verbinden" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Stützlinien verbinden" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zickzack-Elemente Stützstruktur verbinden" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Polygone oben/unten verbinden" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Verbinden Sie Füllungspfade, wenn sie nebeneinander laufen. Bei Füllungsmustern, die aus mehreren geschlossenen Polygonen bestehen, reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Die Zickzack-Elemente werden verbunden. Dies erhöht die Stärke der Zickzack-Stützstruktur." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Die Enden der Stützlinien werden miteinander verbunden. Die Aktivierung dieser Einstellung kann Ihre Stützstruktur stabiler machen und Unterextrusion verhindern, kostet jedoch mehr Material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Verbindet die Enden, an denen das Füllmuster auf die Innenwand trifft, mithilfe einer Linie, die der Form der Innenwand folgt. Durch Aktivierung dieser Einstellung kann die Füllung besser an den Wänden haften; auch die Auswirkungen der Füllung auf die Qualität der vertikalen Flächen werden reduziert. Die Deaktivierung dieser Einstellung reduziert den Materialverbrauch." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Außenhaut-Pfade oben/unten verbinden, wenn sie nebeneinander laufen. Bei konzentrischen Mustern reduziert die Aktivierung dieser Einstellung die Durchlaufzeit erheblich. Da die Verbindungen jedoch auf halbem Weg über der Füllung erfolgen können, kann diese Funktion die Oberflächenqualität reduzieren." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Definieren Sie, ob Kanten am Modell-Umriss die Nahtposition beeinflussen. Keine bedeutet, dass Kanten keinen Einfluss auf die Nahtposition haben. Naht verbergen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden Kante auftreten. Naht offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer Außenkante auftreten. Naht verbergen oder offenlegen lässt die Naht mit höherer Wahrscheinlichkeit an einer innenliegenden oder außenliegenden Kante auftreten. Intelligent verbergen lässt die Naht an innen- oder außenliegenden Kanten auftreten, verwendet aber – falls zweckmäßig – häufiger innenliegende Kanten." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Konvertieren Sie jede Fülllinie in diese mehrfachen Linien. Die zusätzlichen Linien überschneiden sich nicht, sondern vermeiden sich vielmehr. Damit wird die Füllung steifer, allerdings erhöhen sich Druckzeit und Materialverbrauch." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Abkühlgeschwindigkeit" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Kühlung" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Kühlung" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kreuz" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Quer" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3D-Kreuz" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Größe 3D-Quertasche" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Querfülldichte Bild für Stützstruktur" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Querfülldichte Bild" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallines Material" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Würfel" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Würfel-Unterbereich" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Gehäuse Würfel-Unterbereich" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Mesh beschneiden" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Der Materialfluss (in mm3 pro Sekunde) in Bezug zur Temperatur (Grad Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Voreingestellte Beschleunigung" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standardtemperatur Druckplatte" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Voreingestellter Filament-Ruck" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Voreingestellte Drucktemperatur" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Voreingestellter X-Y-Ruck" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Voreingestellter Z-Ruck" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Voreingestellter Ruck für die Bewegung in der horizontalen Planfläche." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Voreingestellter Ruck für den Motor in Z-Richtung." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Voreingestellter Ruck für den Motor des Filaments." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Erkennt Brücken und ändert die Druckgeschwindigkeit, Fluss- und Lüftereinstellungen während des Drucks von Brücken." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Bestimmt die Reihenfolge, in der die Wände gedruckt werden. Das frühe Drucken der Außenwände hilft bei der Maßgenauigkeit, da Fehler von Innenwänden nicht an die Außenseite weitergegeben werden können. Wenn sie jedoch später gedruckt werden, ist ein Stapeldruck besser möglich, wenn Überhänge gedruckt werden. Bei einer ungleichmäßigen Anzahl an Gesamtinnenwänden wird die „mittlere letzte Linie“ immer zuletzt gedruckt." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Legt fest, welchen Rang dieses Netz (Mesh) bei mehreren überlappenden Mesh-Füllungen hat. Bereiche, in denen mehrere Mesh-Füllungen überlappen, übernehmen die Einstellungen des Netzes mit dem höchsten Rang. Ist der Rang einer Mesh-Füllung höher, führt dies zu einer Modifizierung der Füllungen oder Mesh-Füllungen, deren Rang niedriger oder normal ist." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Legt fest, wann eine Blitz-Füllschicht alles Darüberliegende tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Legt fest, wann eine Blitz-Füllschicht das Modell darüber tragen soll. Gemessen in dem Winkel, den die Schichtstärke vorgibt." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Durchmesser" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Vergrößerung des Durchmessers zum Modell" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Dies bezeichnet den Durchmesser, den jeder Ast haben sollte, wenn er die Druckplatte erreicht. Verbessert die Betthaftung." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Verschiedene Optionen, die die Materialbereitstellung für die Extrusion und die Haftung am Druckbett verbessern. Durch die Brim-Funktion wird ein flacher, einschichtiger Bereich um die Basis des Modells herum hinzugefügt, um Warping zu verhindern. Durch die Raft-Funktion wird ein dickes Gitter mit Dach unter dem Modell hinzugefügt. Das Skirt-Element ist eine Linie, die um das Modell herum gedruckt wird, aber nicht mit dem Modell verbunden ist." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Unzulässige Bereiche" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Der Abstand zwischen den gedruckten Fülllinien. Diese Einstellung wird anhand von Fülldichte und Breite der Fülllinien berechnet." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Der Abstand zwischen der ursprünglichen gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Der Abstand zwischen den gedruckten Stützstrukturbodenlinien. Diese Einstellung wird anhand der Dichte des Stützstrukturboden berechnet, kann aber auch separat eingestellt werden." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Der Abstand zwischen den gedruckten Stützdachlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet, kann aber auch separat eingestellt werden." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Der Abstand zwischen den gedruckten Stützstrukturlinien. Diese Einstellung wird anhand der Dichte der Stützstruktur berechnet." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Abstand vom Druck zum Boden der Stütze. Beachten Sie, dass dies auf die nächste Schichthöhe aufgerundet wird." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Der Abstand von der Oberseite der Stützstruktur zum gedruckten Objekt." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Abstand von der Ober-/Unterseite der Stützstruktur zum Druck. Diese Lücke ermöglicht es, die Stützen nach dem Drucken des Modells zu entfernen. Die oberste Stützschicht unter dem Modell könnte ein Bruchteil der normalen Schichten sein." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Der Abstand, der nach jeder Fülllinie zurückgelegt wird, damit die Füllung besser an den Wänden haftet. Diese Option ähnelt Füllung überlappen, aber ohne Extrusion und nur an einem Ende der Fülllinie." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Entfernung einer Bewegung nach der Außenwand, um die Z-Naht besser zu verbergen." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Der Abstand des Windschutzes zum gedruckten Objekt in den X/Y-Richtungen." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Der Abstand des Sicherschutzes zum gedruckten Objekt in den X/Y-Richtungen." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Der Abstand der Stützstruktur zum Überhang in der X- und Y-Richtung." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Der Abstand der Stützstruktur zum gedruckten Objekt in der X- und Y-Richtung." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Abstandspunkte werden verschoben, um den Pfad zu glätten" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Keine Füllungsbereiche generieren, die kleiner als dieser sind (stattdessen Außenhaut verwenden)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Höhe des Windschutzes" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Begrenzung des Windschutzes" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "X/Y-Abstand des Windschutzes" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Stütznetz ablegen" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Duale Extrusion" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptisch" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Beschleunigungssteuerung aktivieren" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Brückeneinstellungen aktivieren" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting aktivieren" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konische Stützstruktur aktivieren" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Windschutz aktivieren" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Fließbewegung aktivieren" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Glätten aktivieren" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Rucksteuerung aktivieren" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Temperatursteuerung der Düse aktivieren" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sickerschutz aktivieren" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Einzugstropfen aktivieren" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Einzugsturm aktivieren" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Kühlung für Drucken aktivieren" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Druckprozess-Berichterstattung aktivieren" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Einzug aktivieren" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Stütz-Brim aktivieren" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Stützboden aktivieren" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Stützstruktur-Schnittstelle aktivieren" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Stützdach aktivieren" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Beschleunigung für Bewegungen aktivieren" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ruckfunktion für Bewegungen aktivieren" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Aktiviert den äußeren Sickerschutz. Damit wird eine Hülle um das Modell erstellt, die eine zweite Düse abstreift, wenn diese auf derselben Höhe wie die erste Düse steht." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Aktivieren Sie die Druckprozess-Berichterstattung, um Schwellenwerte für eine mögliche Fehlererkennung festzulegen." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Ermöglicht es, dass kleine (bis zu „Kleine obere/untere Breite“) Bereiche auf der obersten (der Luft ausgesetzten) Hautschicht mit Wänden anstelle des Standardmusters gefüllt werden." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Ermöglicht die Justierung der Ruckfunktion des Druckkopfes bei Änderung der Geschwindigkeit in der X- oder Y-Achse. Eine Erhöhung der Ruckfunktion kann die Druckzeit auf Kosten der Druckqualität reduzieren." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Ermöglicht die Justierung der Druckkopfbeschleunigung. Eine Erhöhung der Beschleunigungen kann die Druckzeit auf Kosten der Druckqualität reduzieren." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Die Druckerlüfter werden während des Druckens aktiviert. Die Lüfter verbessern die Qualität von Schichten mit kurzen Schichtzeiten und von Brückenbildung/Überhängen." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Ende G-Code" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Ausspüldauer am Ende des Filaments" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Ausspülgeschwindigkeit am Ende des Filaments" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Erzwingen Sie den Druck des Brims um das Modell herum, auch wenn dieser Raum sonst durch die Stützstruktur belegt würde. Dies ersetzt einige der ersten Schichten der Stützstruktur durch Brim-Bereiche." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Überall" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Überall" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exklusiv" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimentell" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naht offenlegen" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Extensives Stitching" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Extensives Stitching versucht die Löcher im Netz mit sich berührenden Polygonen abzudecken. Diese Option kann eine lange Verarbeitungszeit in Anspruch nehmen." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Zusätzliche Füllung Wandlinien" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Linienanzahl der zusätzlichen Außenhaut" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Nach einem Düsenwechsel zusätzlich bereitzustellendes Material." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-Position Extruder-Einzug" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-Position Extruder-Einzug" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruder teilen sich Heizelement" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruder teilen sich eine Düse" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Geschwindigkeitsregulierer für Abkühlung bei Extrusion" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Korrekturfaktor für die Geschwindigkeit auf Basis der Extrusionsbreite. Bei 0 % wird die Bewegungsgeschwindigkeit konstant in der Druckgeschwindigkeit gehalten. Bei 100 % wird die Bewegungsgeschwindigkeit so eingestellt, dass der Fluss (in mm³/s) konstant bleibt, d. h. Linien mit der Hälfte der normalen Linienstärke werden doppelt so schnell gedruckt und Linien mit der doppelten Linienstärke werden halb so schnell gedruckt. Ein Wert größer als 100 % kann dazu beitragen, den höheren Druck zu kompensieren, der zum Extrudieren breiter Linien erforderlich ist." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Lüfterdrehzahl" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Lüfterdrehzahl überschreiben" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Teile, die kleiner sind als dieser Wert, werden in Detailgeschwindigkeit gedruckt." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Merkmale, die noch nicht vollständig ausgearbeitet wurden." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Feeder-Raddurchmesser" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Endgültige Drucktemperatur" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Firmware-Einzug" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder für erste Schicht der Stützstruktur" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluss" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhältnis für Durchflussausgleich" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Fluss-Grenzwert" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Ausgleichsfaktor Durchflussrate" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Ausgleich Durchflussrate max. Extrusionswirkung" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Fließtemperaturgraf" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Fluss-Warnung" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Fluss-Kompensation für die erste Schicht: Die auf der ersten Schicht extrudierte Materialmenge wird mit diesem Wert multipliziert." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Durchflusskompensation an den unteren Linien der ersten Schicht" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Durchflusskompensation an Füllungslinien." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Durchflusskompensation an Dach- oder Bodenlinien der Stützstruktur." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Durchflusskompensation an Linien von Flächen an der Oberseite des Druckobjekts." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Durchflusskompensation an Einzugsturmlinien." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Durchflusskompensation an Skirt- oder Brim-Linien." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Durchflusskompensation an Stützbodenlinien." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Durchflusskompensation an Stützdachlinien." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Durchflusskompensation an Stützstrukturlinien." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Durchflusskompensation an der äußersten Wandlinie der ersten Schicht" + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Durchflusskompensation an der äußeren Wandlinie." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Flussausgleich an der äußersten Wandlinie der Oberfläche." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Flussausgleich auf den Wandlinien der Oberfläche für alle Wandlinien außer der äußersten." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Durchflusskompensation an oberen/unteren Linien." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere, aber nur für die erste Schicht" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Durchflusskompensation an allen Wandlinien bis auf die äußere." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Durchflusskompensation an Wandlinien." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Fluss-Kompensation: Die extrudierte Materialmenge wird mit diesem Wert multipliziert." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Fließbewegungswinkel" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Fließbewegung – Verschiebeabstand" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Fließbewegung – kleiner Abstand" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Ausspüldauer" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Ausspülgeschwindigkeit" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Bei dünnen Strukturen, die etwa ein- bis zweimal so groß sind wie die Düse, müssen die Linienstärken an die Dicke des Modells angepasst werden. Mit dieser Einstellung wird die Mindestlinienstärke für die Wände festgelegt. Die minimalen Linienstärken bestimmen gleichzeitig auch die maximalen Linienstärken, da wir bei einer gewissen Stärke der Geometrie von N- auf N+1-Wände übergehen, wobei die N-Wände breit und die N+1-Wände schmal sind. Die maximale Wandlinienstärke beträgt das Doppelte der minimalen Wandlinienstärke." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Vorne" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Vorne links" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Vorne rechts" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Voll" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Ungleichmäßige Außenhaut" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichte der ungleichmäßigen Außenhaut" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Nur ungleichmäßige Außenhaut" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Punktabstand der ungleichmäßigen Außenhaut" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dicke der ungleichmäßigen Außenhaut" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-Code-Variante" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "G-Code-Befehle, die am Ende ausgeführt werden sollen – getrennt durch " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "G-Code-Befehle, die zu Beginn ausgeführt werden sollen – getrennt durch " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID des Materials. Dies wird automatisch eingestellt." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Brückenhöhe" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Ineinandergreifende Struktur generieren" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Stützstruktur generieren" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Erstellen Sie ein Brim in den Stützstruktur-Füllungsbereichen der ersten Schicht. Das Brim wird unterhalb der Stützstruktur und nicht drumherum gedruckt. Die Aktivierung dieser Einstellung erhöht die Haftung der Stützstruktur am Druckbett." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Es wird eine dichte Schnittstelle zwischen dem Modell und der Stützstruktur generiert. Das erstellt eine Außenhaut oben auf der Stützstruktur, auf der das Modell gedruckt wird, und unten auf der Stützstruktur, wo diese auf dem Modell ruht." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Es wird eine dichte Materialschicht zwischen dem Boden der Stützstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Es wird eine dichte Materialschicht zwischen der Stützdachstruktur und dem Modell generiert. Das erstellt eine Außenhaut zwischen dem Modell und der Stützstruktur." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Damit werden Strukturen zur Unterstützung von Modellteilen mit Überhängen generiert. Ohne diese Strukturen würden solche Teile während des Druckvorgangs zusammenfallen." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Gehen Sie ein weiteres Mal über die Oberfläche, aber extrudieren Sie diesmal sehr wenig Material. Dadurch wird die oberste Kunststoffschicht geschmolzen und es entsteht eine glattere Oberfläche. Der Druck in der Düsenkammer bleibt weiterhin hoch, so dass Risse in der Oberfläche mit Material gefüllt werden." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Höhe stufenweise Füllungsschritte" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stufenweise Füllungsschritte" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Höhe stufenweiser Füllungsschritt Stützstruktur" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Stufenweise Füllungsschritte Stützstruktur" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduzieren Sie die Temperatur allmählich auf diesen Wert, wenn Sie aufgrund der Mindestzeit für eine Schicht mit reduzierter Geschwindigkeit drucken." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Gitter" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Äußere Wände gruppieren" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Verfügt über Temperaturstabilisierung für den Druckraum" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Mit beheizter Druckplatte" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Aufheizgeschwindigkeit" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Heizzonenlänge" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Die Begrenzung der Höhe des Windschutzes. Oberhalb dieser Höhe wird kein Windschutz mehr gedruckt." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Naht verbergen" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Naht verbergen oder offenlegen" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontalloch-Erweiterung" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Maximaler Durchmesser der Horizontalloch-Erweiterung" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Löcher und Teilkonturen mit einem kleineren Durchmesser werden mit Small Feature Speed gedruckt." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Erweiterung" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für horizontalen Skalierungsfaktor" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Streckmaß für das Filament im erhitzten Zustand, bevor es bricht." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Maß, um das das Material eingezogen werden muss, damit es nicht heraussickert." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Wie weit das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren – als Prozentsatz der Strecke, die das Filament sich während einer Sekunde Extrusion bewegen würde." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Maß, um das das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, bevor es beim Einziehen abgebrochen wird." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Geschwindigkeit, mit der das Material beim Filamentwechsel eingezogen werden muss, damit es nicht heraussickert." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Gibt an, wie schnell das Material nach Austausch einer leeren Spule gegen eine neue Spule desselben Materials vorbereitet werden muss." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Gibt an, wie schnell das Material nach einem Wechsel zu einem anderen Material vorbereitet werden muss." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Gibt an, wie lange das Material sicher außerhalb der trockenen Lagerung aufbewahrt werden kann." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in X-Richtung führen." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Y-Richtung führen." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Anzahl der Schritte des Schrittmotors, die zu einem Millimeter Bewegung in Z-Richtung führen." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Wie viele Schritte sollen die Schrittmotoren ausführen, um das Feeder-Rad um einen Millimeter auf seinem Umfang zu bewegen." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um das letzte Material aus der Düse zu entfernen, wenn eine leere Spule durch eine neue Spule mit dem selben Material ersetzt wird." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Materialmenge (Filamentlänge), die erforderlich ist, um bei einem Materialwechsel das letzte Material aus der Düse zu entfernen." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Bestimmt, wie weit das Filament jedes Extruders bei Abschluss des GCode-Skripts „printer-start“ von der gemeinsam genutzten Düsenspitze zurückgezogen sein soll; der Wert sollte gleich oder größer sein als die Länge des gemeinsamen Teils der Düsenkanäle." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Hierdurch wird bestimmt, wie Stützstruktur-Schnittstelle und Stützstruktur interagieren, wenn sie sich überschneiden. Zurzeit nur für Stützdächer implementiert." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Dies bezeichnet die minimale Höhe eines Astes, der auf dem Modell platziert werden soll. Verhindert kleine Tropfen in der Stützstruktur. Diese Einstellung wird ignoriert, wenn ein Ast ein Stützdach hält." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Wenn ein Außenhautbereich für weniger als diesen Prozentwert seines Bereichs unterstützt wird, drucken Sie ihn mit den Brückeneinstellungen. Ansonsten erfolgt der Druck mit den normalen Außenhauteinstellungen." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Weicht ein Werkzeugpfad-Segment mehr als diesen Winkel von der allgemeinen Bewegung ab, wird es geglättet." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Bei Aktivierung werden die zweite und dritte Schicht über der Luft mit den folgenden Einstellungen gedruckt. Ansonsten werden diese Schichten mit den normalen Einstellungen gedruckt." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Wenn in schneller Folge viele Übergänge zwischen verschiedenen Wänden erzeugt würden, werden gar keine Übergänge erzeugt. Übergänge, die näher beieinander liegen als dieser Abstand, werden entfernt." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Floßbasis aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell herum, das ebenfalls ein Floß erhält. Wenn Sie diesen Rand vergrößern, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Raft-Funktion aktiviert ist, gibt es einen zusätzlichen Raft-Bereich um das Modell herum, für das ein Raft erstellt wird. Bei einem größeren Abstand wird ein kräftigeres Raft-Element hergestellt, wobei jedoch mehr Material verbraucht wird und weniger Platz für das gedruckte Modell verbleibt." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Floßmitte aktiviert ist, ist dies der zusätzliche Floßbereich um das Modell, der ebenfalls ein Floß erhält. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Wenn die Oberseite des Floßes aktiviert ist, ist dies der zusätzliche Bereich um das Modell herum, der ebenfalls mit einem Floß versehen wird. Wenn Sie diesen Rand erhöhen, wird ein stärkeres Floß erzeugt, wobei mehr Material verwendet wird und weniger Fläche für den Druck übrig bleibt." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Die interne Geometrie, die durch überlappende Volumen innerhalb eines Netzes entsteht, wird ignoriert und diese Volumen werden als ein Einziges gedruckt. Dadurch können unbeabsichtigte innere Hohlräume verschwinden." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Temperaturprüfung der Druckplatte einfügen" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materialtemperaturen einfügen" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inklusiv" + +msgctxt "infill description" +msgid "Infill" +msgstr "Füllung" + +msgctxt "infill label" +msgid "Infill" +msgstr "Füllung" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Beschleunigung Füllung" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Füllung vor Wänden" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Fülldichte" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extruder für Füllung" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluss der Füllung" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Ruckfunktion Füllung" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Füllschichtdicke" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Linienrichtungen Füllung" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Linienabstand Füllung" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Fülllinie multiplizieren" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Breite der Fülllinien" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Mesh-Füllung" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Füllung für Überhänge Stützstruktur" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Füllung überlappen" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Prozentsatz Füllung überlappen" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Füllmuster" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Füllgeschwindigkeit" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Füllstruktur" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegungsoptimierung Füllung" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Wipe-Abstand der Füllung" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "X-Versatz Füllung" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Y-Versatz Füllung" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Erste untere Schichten" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Anfängliche Lüfterdrehzahl" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Beschleunigung erste Schicht" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Unterer Fluss der ersten Schicht" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Durchmesser der ersten Schicht" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluss der ersten Schicht" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Dicke der ersten Schicht" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Horizontale Erweiterung erste Schicht" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Innenwandfluss der ersten Schicht" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Ruckfunktion der ersten Schicht" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Linienbreite der ersten Schicht" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Außenwandfluss der ersten Schicht" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Druckbeschleunigung für die erste Schicht" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Ruckfunktion Druck für die erste Schicht" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Druckgeschwindigkeit für die erste Schicht" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Linienabstand der ursprünglichen Stützstruktur" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Geschwindigkeit der Bewegung für die erste Schicht" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Ruckfunktion Bewegung für die erste Schicht" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegungsgeschwindigkeit für die erste Schicht" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Überlappung der ersten Schicht" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Anfängliche Drucktemperatur" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Beschleunigung Innenwand" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder Innenwand" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Ruckfunktion Innenwand" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Geschwindigkeit Innenwand" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Wandfluss innen" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Breite der inneren Wandlinien" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Verwendete Einfügung am Pfad zur Außenwand. Wenn die Außenwand kleiner als die Düse ist und nach den Innenwänden gedruckt wird, verwenden Sie diesen Versatz, damit die Öffnung in der Düse mit den Innenwänden überlappt, anstelle mit der Außenseite des Modells." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Nur innen" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Von innen nach außen" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Schnittstellenlinien priorisiert" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Schnittstelle priorisiert" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Verschachtelt" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Anzahl der Schichten ineinandergreifender Balken" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breite der ineinandergreifenden Balken" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Abstand zu Begrenzungen ineinandergreifender Strukturen" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Tiefe der ineinandergreifenden Struktur" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ausrichtung der ineinandergreifenden Struktur" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Nur oberste Schicht glätten" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Beschleunigung Glättung" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Glättungsfluss" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Glättungseinsatz" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ruckfunktion glätten" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Glättungslinienabstand" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Glättungsmuster" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Glättungsgeschwindigkeit" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is-Center-Ursprung" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Ist Stützmaterial" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Lässt sich das Material im erhitzten Zustand leicht brechen (kristallin) oder bildet es lange, verflochtene Polymerketten (nicht kristallin)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wird dieses Material normalerweise während des Druckvorgangs als Stützmaterial verwendet?" + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Es werden nur die Umrisse der Teile gejittert und nicht die Löcher der Teile." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Unterbrochene Flächen beibehalten" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Schichtdicke" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Schichtstart X" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Schichtstart Y" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Die Schichtdicke der Raft-Basisschicht. Dabei sollte es sich um eine dicke Schicht handeln, die fest an der Druckplatte haftet." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Die Schichtdicke des Raft-Mittelbereichs." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Die Schichtdicke der oberen Raft-Schichten." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Überspringen Sie eine Verbindung zwischen den Stützstrukturlinien nach jedem N-Millimeter, um das Brechen der Stützstruktur zu erleichtern." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Druckkopf anheben" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Blitz" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Überstandswinkel der Blitz-Füllung" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Beschnittwinkel der Blitz-Füllung" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Begradigungswinkel der Blitz-Füllung" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Stützwinkel der Blitz-Füllung" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Begrenzung der Astreichweite" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Dieser Parameter schränkt ein, wie weit sich jeder Ast von der Stelle entfernen kann, die er stützt. Dadurch wird die Stabilität der Stützstruktur gestärkt, jedoch erhöht sich die Anzahl der Äste (und damit der Materialverbrauch•/ die Druckzeit)." + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Grenzwert für die Erkennung einer Warnung vor der Build-Volumen-Temperatur." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Grenzwert für Anomalie der Build-Volumen-Temperatur für die Erkennung." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Grenzwert für die Erkennung von Drucktemperatur-Anomalien." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Grenzwert für Drucktemperaturwarnung zur Erkennung." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Grenzwert für die Flussanomalie zur Erkennung." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Grenzwert für die Fluss-Warnung zur Erkennung." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Beschränkt die Menge dieses Meshs innerhalb der anderen Meshes. Sie können diese Funktion verwenden, um bestimmte Bereiche eines Mesh-Drucks mit unterschiedlichen Einstellungen und einem völlig anderen Extruder zu produzieren." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Begrenzt" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Linienbreite" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Gerät" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Gerätetiefe" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Gerätekopf und Lüfter Polygon" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Gerätehöhe" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Gerät" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Gerätebreite" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Gerätespezifische Einstellungen" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Überhänge druckbar machen" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Erstellen Sie Netze, die einander berühren und sich leicht überlappen. Damit haften sie besser aneinander." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Macht die Bereiche der Stützstruktur am Boden kleiner als beim Überhang." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Sorgt für Unterstützung überall unterhalb des Stütznetzes, sodass kein Überhang im Stütznetz vorhanden ist." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Bevorzugen Sie eine absolute Einzugsposition des Extruders anstelle einer relativen Position zur zuletzt bekannten Kopfposition." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Lassen Sie die erste und zweite Ebene des Modells in Z-Richtung überlappen, um das im Luftspalt verlorene Filament auszugleichen. Alle Modelle oberhalb der ersten Modellebene werden um diesen Betrag nach unten verschoben." +"Es kann vorkommen, dass aufgrund dieser Einstellung die zweite Ebene unterhalb der ersten Ebene gedruckt wird. Dieses Verhalten ist beabsichtigt." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Passe die Gitter besser an den 3D-Druck an." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Material-Marke" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Material-GUID" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Materialart" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materialmenge zwischen den Wischvorgängen" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. Combing Entfernung ohne Einziehen" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Beschleunigung X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Beschleunigung Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Beschleunigung Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maximaler Astwinkel" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale Abweichung" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale Abweichung der Extrusionsfläche" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximaldrehzahl des Lüfters" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Beschleunigung Filament" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximaler Winkel des Modells" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximaler Lochflächen-Überstand" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale Parkdauer" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale Auflösung" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximale Anzahl von Einzügen" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximaler Winkel Außenhaut für Expansion" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximaldrehzahl E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximaldrehzahl X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximaldrehzahl Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximaldrehzahl Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximaler Durchmesser für Stützpfeiler" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale Bewegungsauflösung" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Die maximale Beschleunigung für den Motor der X-Richtung" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Die maximale Beschleunigung für den Motor der Y-Richtung." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Die maximale Beschleunigung für den Motor der Z-Richtung." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Die maximale Beschleunigung für den Motor des Filaments." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Maximale Dichte der Füllung, die im Sparmodus eingefüllt werden soll. Haut über spärlicher Füllung wird als nicht unterstützt betrachtet und kann daher als Brückenhaut behandelt werden." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Der Mindestdurchmesser in den X/Y-Richtungen eines kleinen Bereichs, der durch einen speziellen Stützpfeiler gestützt wird." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Die maximale Materialmenge, die extrudiert werden kann, bevor die Düse ein weiteres Mal abgewischt wird. Ist dieser Wert kleiner als das in einer Schicht benötigte Materialvolumen, so hat die Einstellung in dieser Schicht keine Auswirkung, d.h. sie ist auf ein Wischen pro Schicht begrenzt." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Überlappung zusammengeführte Netze" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Netzreparaturen" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Netzposition X" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Verwendeter Versatz für das Objekt in X-Richtung." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Netzposition Y" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Verwendeter Versatz für das Objekt in Y-Richtung." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Netzposition Z" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rang der Netzverarbeitung" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrix Netzdrehung" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Mitte" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Mindestbreite der Form" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Mindestzeit Standby-Temperatur" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Mindestlänge Brückenwand" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimale Wandlinienstärke (geradzahlig)" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Fenster „Minimaler Extrusionsabstand“" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Mindestgröße des Merkmals" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Mindest-Vorschub" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Mindesthöhe auf Modell" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Mindestbereich Füllung" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Mindestzeit für Schicht" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimale Wandlinienstärke (ungeradzahlig)" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Mindestumfang Polygon" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Mindestbreite Außenhaut für Expansion" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Mindestgeschwindigkeit" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Mindestbereich Stützstruktur" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Mindestbereich Stützstrukturboden" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Mindestbereich Stützstruktur-Schnittstelle" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Mindestbereich Stützstrukturdach" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "X/Y-Mindestabstand der Stützstruktur" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimale Wandlinienstärke (dünn)" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Mindestvolumen vor Coasting" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Mindestlinienstärke der Wand" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Mindestflächenbreite für Stützstruktur-Schnittstellen-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Mindestflächenbreite für Stützstruktur-Polygone. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden nicht generiert." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Mindestfläche für die Dächer der Stützstruktur. Polygone, die eine kleinere Fläche als diesen Wert aufweisen, werden als normale Stützstruktur gedruckt." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Mindeststärke dünner Merkmale. Modellmerkmale, die dünner sind als dieser Wert, werden nicht gedruckt, während Merkmale, die dicker als die Mindeststärke sind, auf die Mindestwandlinienstärke verbreitert werden." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Die Mindestbreite, auf die die Basis der konischen Stützstruktur reduziert wird. Geringe Breiten können instabile Stützstrukturen zur Folge haben." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Form" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Formwinkel" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dachhöhe der Form" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Gleichmäßige Reihenfolge hin/her" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotone Floßoberflächenordnung" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Gleichmäßige Reihenfolge oben" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Gleichmäßige Reihenfolge oben/unten" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Mehrere Skirt-Linien ermöglichen eine bessere Materialbereitstellung für die Extrusion für kleine Modelle. Wird dieser Wert auf 0 eingestellt, wird kein Skirt erstellt." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplikator der Linienbreite der ersten Schicht. Eine Erhöhung dieses Werts verbessert möglicherweise die Betthaftung." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Faktor für Bewegung ohne Ladung" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Keine Außenhaut in Z-Lücken" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Nicht-traditionelle Möglichkeiten, Ihre Modelle zu drucken." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Keine" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Keine" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalerweise versucht Cura kleine Löcher im Netz abzudecken und Teile von Schichten, die große Löcher aufweisen, zu entfernen. Die Aktivierung dieser Option erhält jene Teile, die nicht abgedeckt werden können. Diese Option sollte nur als letzter Ausweg verwendet werden, wenn es andernfalls nicht möglich ist, einen korrekten G-Code zu berechnen." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Nicht in Außenhaut" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Nicht auf der Außenfläche" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Düsenwinkel" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Düsendurchmesser" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Unzulässige Bereiche für die Düse" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Düsen-ID" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Düsenlänge" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Zusätzliche Einzugsmenge bei Düsenwechsel" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Düsenwechsel Einzugsgeschwindigkeit (Zurückschieben)" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Düsenwechsel Rückzuggeschwindigkeit" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Düsenwechsel Einzugsabstand" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Düsenwechsel Rückzugsgeschwindigkeit" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Anzahl Extruder" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Anzahl der aktivierten Extruder" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Anzahl der langsamen Schichten" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Anzahl der aktivierten Extruder-Elemente; wird automatisch in der Software festgelegt" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Anzahl der Extruder-Elemente. Ein Extruder-Element ist die Kombination aus Zuführung, Filamentführungsschlauch und Düse." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Anzahl der Wiederholungen für das Bewegen der Düse über der Bürste." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Anzahl der Male zur Reduzierung der Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Anzahl der Male zur Reduzierung der Stützstruktur-Füllungsdichte um die Hälfte bei Arbeiten unter den oberen Flächen. Bereiche, die weiter an den Oberflächen sind, erhalten eine höhere Dichte bis zur Füllungsdichte der Stützstruktur." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Aus" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Verwendeter Versatz für das Objekt in X-Richtung." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Verwendeter Versatz für das Objekt in Y-Richtung." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Der für das Objekt in Z-Richtung verwendete Versatz. Damit können Sie den Vorgang ausführen, der unter dem Begriff „Objekt absenken“ verwendet wurde." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Versatz mit Extruder" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Wenn möglich auf der Druckplatte" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Bei Bedarf auf dem Modell" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Nacheinander" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Führen Sie nur einen Z-Sprung aus, wenn Sie über gedruckte Teile fahren, die nicht durch eine horizontale Bewegung vermeidbar sind, indem Sie gedruckte Teile während der Fahrt vermeiden." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Führen Sie das Glätten nur für die allerletzte Schicht des Meshs aus. Dies spart Zeit, wenn die unteren Schichten keine glatte Oberflächenausführung erfordern." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Winkel für Sickerschutz" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Abstand für Sickerschutz" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimale Astreichweite" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Reihenfolge des Wanddrucks optimieren" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimieren Sie die Reihenfolge, in der die Wände gedruckt werden, um die Anzahl der Einzüge und die zurückgelegten Distanzen zu reduzieren. Dieser Schritt bringt für die meisten Teile Vorteile, allerdings werden einige möglicherweise länger benötigen. Vergleichen Sie deshalb bitte die Schätzung der Druckzeiten mit und ohne Optimierung. Bei Wahl eines Brims als Druckplattenhaftungstyp ist die erste Schicht nicht optimiert." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Düsendurchmesser außen" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Beschleunigung Außenwand" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder Außenwand" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Wandfluss außen" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Einfügung Außenwand" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Ruckfunktion Außenwand" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Breite der äußeren Wandlinien" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Geschwindigkeit Außenwand" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Wipe-Abstand der Außenwand" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Die äußeren Wände verschiedener Inseln in derselben Schicht werden nacheinander gedruckt. Wenn aktiviert, wird die Menge der Flussänderungen begrenzt, da die Wände nacheinander gedruckt werden, wenn deaktiviert, wird die Anzahl der Fahrten zwischen den Inseln reduziert, da die Wände auf den gleichen Inseln gruppiert sind." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Nur außen" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Von außen nach innen" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Winkel für überhängende Wände" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Geschwindigkeit für überhängende Wände" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Überhängende Wände werden zu diesem Prozentwert ihrer normalen Druckgeschwindigkeit gedruckt." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausieren nach Aufhebung des Einzugs." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Lüfterdrehzahl in Prozentwert für das Drucken von Brückenwänden und -Außenhaut." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Lüfterdrehzahl in Prozentwert für das Drucken der zweiten Brücken-Außenhautschicht." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Prozentwert der Lüfterdrehzahl für die Verwendung beim Drucken der Außenhautbereiche direkt oberhalb der Stützstruktur. Die Verwendung einer hohen Lüfterdrehzahl ermöglicht ein leichteres Entfernen der Stützstruktur." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Prozentwert der Lüfterdrehzahl für das Drucken der dritten Brücken-Außenhautschicht." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polygone in geschnittenen Schichten, die einen Umfang unter diesem Wert haben, werden ausgefiltert. Niedrigere Werte führen zu einem Mesh mit höherer Auflösung zulasten der Slicing-Zeit. Dies gilt in erster Linie für SLA-Drucker mit höherer Auflösung und sehr kleine 3D-Modelle mit zahlreichen Details." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Bevorzugter Astwinkel" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Vermeiden Sie den Wechsel zwischen getrennten und zusammengeführten Wänden. Dieser Rand erweitert den Bereich der Linienstärken auf [Minimale Wandlinienstärke – Rand, 2 x Minimale Wandlinienstärke + Rand]. Wenn Sie diesen Rand vergrößern, wird die Anzahl der Übergänge reduziert, was die Anzahl der Starts/Stopps und die Anfahrzeit für die Extrusion reduziert. Große Unterschiede der Linienstärken können jedoch zu Unter- oder Überextrusionsproblemen führen." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Beschleunigung Einzugsturm" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Grundfläche des Prime-Turms" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Höhe der Prime-Turm-Basis" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Größe der Prime-Turm-Basis" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Neigung der Prime-Turm-Basis" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluss Einzugsturm" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Ruckfunktion Einzugsturm" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Linienbreite Einzugsturm" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Prime Tower Maximaler Überbrückungsabstand" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Mindestvolumen Einzugsturm" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Linienabstand des Prime-Turm-Floßes" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Größe Einzugsturm" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Geschwindigkeit Einzugsturm" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Prime Tower Typ" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-Position des Einzugsturm" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-Position des Einzugsturms" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Beschleunigung Druck" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Ruckfunktion Drucken" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Druckprozess-Berichterstattung" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Druckreihenfolge" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Druckgeschwindigkeit" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Drucken von dünnen Wänden" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Drucken Sie einen Rand an der Außenseite des Modells, an der Innenseite oder an beiden. Je nach Modell können Sie so die Menge des Randes, den Sie anschließend entfernen müssen, reduzieren und gleichzeitig eine gute Bettanhaftung sicherstellen." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Drucken Sie einen Turm neben dem Druck, der zum Einziehen des Materials nach jeder Düsenschaltung dient." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Drucken Sie Füllstrukturen nur dort, wo das Modell gestützt werden soll. Die Aktivierung dieser Option reduziert die Druckdauer und den Materialverbrauch, führt jedoch zu einer ungleichmäßigen Objektdicke." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Linien werden hin und her in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Damit werden Modelle als Form gedruckt, die gegossen werden kann, um ein Modell zu erhalten, das den Modellen des Druckbetts ähnelt." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Drucken Sie Teile des Modells, die horizontal dünner als die Düsengröße sind." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Drucken Sie die Linien auf der Oberseite des Floßes in einer Reihenfolge, die bewirkt, dass sie sich immer mit den benachbarten Linien in einer Richtung überlappen. Der Druckvorgang dauert dadurch etwas länger, aber die Oberfläche sieht konsistenter aus, was auch auf der Unterseite des Modells sichtbar ist." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Druckgeschwindigkeit für das Drucken der zweiten Brücken-Außenhautschicht." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Druckgeschwindigkeit für das Drucken der dritten Brücken-Außenhautschicht." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Drucktemperatur-Grenzwert" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Drucktemperatur-Warnung" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Es wird die Füllung gedruckt, bevor die Wände gedruckt werden. Wenn man die Wände zuerst druckt, kann dies zu präziseren Wänden führen, aber Überhänge werden schlechter gedruckt. Wenn man die Füllung zuerst druckt, bekommt man stabilere Wände, aber manchmal zeigt sich das Füllmuster auf der Oberfläche." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in einer einzigen Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Obere/Untere Linien werden in einer Reihenfolge gedruckt, so dass sie sich mit benachbarten Linien immer in gleicher Richtung überschneiden. Dies erfordert etwas mehr Zeit für den Druck, lässt aber flache Oberflächen gleichmäßiger aussehen." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Drucktemperatur" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Drucktemperatur erste Schicht" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Ein Druck der innersten Skirt-Linie mit mehreren Schichten ermöglicht ein einfaches Entfernen des Skirts." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Es wird eine Zusatzwand für jede zweite Schicht gedruckt. Auf diese Weise gelangt Füllung zwischen diese Zusatzwände, was zu stärkeren Drucken führt." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualität" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Viertelwürfel" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luftspalt für Raft" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Floßbasis Extra-Rand" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft-Basis-Extruder" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Lüfterdrehzahl für Raft-Basis" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Linienabstand der Raft-Basis" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Linienbreite der Raft-Basis" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Druckbeschleunigung Raft Unten" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Ruckfunktion Drucken Raft-Basis" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Druckgeschwindigkeit für Raft-Basis" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Floßbasis glätten" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dicke der Raft-Basis" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Wandanzahl des Raft-Bodens" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Zusätzlicher Abstand für Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Lüfterdrehzahl für Raft" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Floßmitte Extra-Rand" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extruder für die Raft-Mitte" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Lüfterdrehzahl Raft Mitte" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Mittlere Ebenen des Rafts" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Linienbreite des Raft-Mittelbereichs" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Druckbeschleunigung Raft Mitte" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Ruckfunktion Drucken Raft Mitte" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Druckgeschwindigkeit Raft Mitte" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Floßmitte glätten" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Linienabstand im Raft-Mittelbereich" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Dicke der Raft-Mittelbereichs" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Anzahl der mittleren Wände des Floßes" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Druckbeschleunigung Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Ruckfunktion Raft-Druck" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft-Druckgeschwindigkeit" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft-Glättung" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Floß Oberseite Extra-Rand" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extruder für die Raft-Oberseite" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Lüfterdrehzahl Raft Oben" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dicke der oberen Raft-Schichten" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Obere Raft-Schichten" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Linienbreite der Raft-Oberfläche" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Druckbeschleunigung Raft Oben" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Ruckfunktion Drucken Raft Oben" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Druckgeschwindigkeit Raft Oben" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Floßoberseite glätten" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Linienabstand der Raft-Oberfläche" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Anzahl der oberen Wände des Floßes" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Anzahl der Floßwände" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Zufall" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Füllstart randomisieren" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Randomisieren Sie, welche Fülllinie zuerst gedruckt wird. So wird vermieden, dass ein Segment am stärksten ist. Allerdings muss dafür eine zusätzliche Bewegung ausgeführt werden." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Willkürliche Zitterbewegung beim Druck der äußeren Wand, wodurch die Oberfläche ein raues und ungleichmäßiges Aussehen erhält." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechteckig" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normaldrehzahl des Lüfters" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normaldrehzahl des Lüfters bei Höhe" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normaldrehzahl des Lüfters bei Schicht" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Grenzwert für Normaldrehzahl/Maximaldrehzahl des Lüfters" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relative Extrusion" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Löcher entfernen" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Leere erste Schichten entfernen" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Netzüberschneidung entfernen" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Innenecken der Floßbasis entfernen" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Innenecken des Rafts entfernen" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Mittlere Innenecken des Floßes entfernen" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Innenecken der Oberseite des Floßes entfernen" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Entfernt Bereiche, in denen mehrere Netze miteinander überlappen. Dies kann verwendet werden, wenn zusammengefügte Objekte aus zwei Materialien miteinander überlappen." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Entfernen Sie die leeren Schichten unter der ersten gedruckten Schicht, sofern vorhanden. Die Deaktivierung dieser Einstellung kann zu leeren ersten Schichten führen, wenn die Einstellung der Slicing-Toleranz auf Exklusiv oder Mittel gesetzt wurde." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken der Floßbasis, so dass das Floß konvex wird." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken aus dem mittleren Teil des Floßes, so dass das Floß konvex wird." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Entfernen Sie die Innenecken aus der Oberseite des Floßes, damit das Floß konvex wird." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Entfernen der inneren Ecken des Floßes, so dass das Floß konvex wird." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Es werden alle Löcher in den einzelnen Schichten entfernt und lediglich die äußere Form wird erhalten. Dadurch wird jegliche unsichtbare interne Geometrie ignoriert. Jedoch werden auch solche Löcher in den Schichten ignoriert, die man von oben oder unten sehen kann." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Der äußerste Teil des oberen/unteren Musters wird durch eine Anzahl von konzentrischen Linien ersetzt. Die Verwendung von ein oder zwei Linien verbessert Dächer, die auf Füllmaterial beginnen." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Meldung von Ereignissen, die über die eingestellten Schwellenwerte hinausgehen" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Präferenz Auflagestelle" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Vor Außenwand zurückziehen" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Einziehen bei Schichtänderung" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Das Filament wird eingezogen, wenn sich die Düse über einen nicht zu bedruckenden Bereich bewegt." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Ziehen Sie das Filament ein, wenn die Düse zur nächsten Schicht fährt." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Einzugsabstand" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Mindestbewegung für Einzug" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Einzugsgeschwindigkeit (Zurückschieben)" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug)" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Einzugsgeschwindigkeit" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Skalierung der Lüftergeschwindigkeit auf 0–1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Skalieren der Lüftergeschwindigkeit auf einen Wert zwischen 0 und 1 statt zwischen 0 und 256" + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Kompensation der Schrumpfung des Skalierungsfaktors" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Szene verfügt über Stütznetze" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Präferenz Nahtkante" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Druckreihenfolge manuell einstellen" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Hier wird die Höhe des Windschutzes eingestellt. Stellen Sie ein, ob der Windschutz für die gesamte Höhe des Modells oder für eine begrenzte Höhe gedruckt wird." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Verwendete Einstellungen für das Drucken mit mehreren Extrudern." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Diese Einstellungen werden nur verwendet, wenn CuraEngine nicht seitens Cura aufgerufen wird." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rückzugstellung der gemeinsam genutzten Düse" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Schärfste Kante" + +msgctxt "shell description" +msgid "Shell" +msgstr "Gehäuse" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kürzester" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Anzeige der Gerätevarianten" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Unterstützungsebenen für Außenhautkanten" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Stützenstärke für Außenhautkanten" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Außenhaut überlappen" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Prozentsatz Außenhaut überlappen" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Außenhautbereiche, die schmaler als die Mindestbreite sind, werden nicht expandiert. Damit wird vermieden, dass enge Außenhautbereiche expandiert werden, die entstehen, wenn die Modellfläche eine nahezu vertikale Neigung aufweist." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Überspringen Sie eine in jeder N-Verbindungslinie, um das Wegbrechen der Stützstruktur zu erleichtern." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Überspringen Sie einige Stützstruktur-Verbindungen, um das Brechen der Stützstruktur zu erleichtern. Diese Einstellung ist für die Zickzack-Stützstruktur-Füllung vorgesehen." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt-Abstand" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Skirt-Höhe" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Anzahl der Skirt-Linien" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Beschleunigung Skirt/Brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim-Extruder" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Skirt/Brim-Fluss" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Ruckfunktion Skirt/Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Skirt-/Brim-Linienbreite" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Mindestlänge für Skirt/Brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Geschwindigkeit Skirt/Brim" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicing-Toleranz" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Geschwindigkeit der ersten Schicht von Details" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Max. Detaillänge" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Detailgeschwindigkeit" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Max. Lochdurchmesser" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Drucktemperatur für kleine Schichten" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Kleine Oberseite/Unterseite auf der Oberfläche" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Kleine obere/untere Breite" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Bei kleinen Details wird die Geschwindigkeit bei der ersten Schicht auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Bei kleinen Details wird die Geschwindigkeit auf diesen Prozentsatz der normalen Druckgeschwindigkeit gesetzt. Durch eine niedrigere Druckgeschwindigkeit können die Haftung und die Genauigkeit verbessert werden." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Kleine obere bzw. untere Bereiche werden mit Wänden anstelle des standardmäßigen oberen und unteren Musters gefüllt. So lassen sich ruckartige Bewegungen vermeiden. Dies ist standardmäßig für die oberste (der Luft ausgesetzten) Schicht deaktiviert (siehe „Kleine Oberseite/Unterseite auf der Oberfläche“)." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Intelligente Brim" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Intelligent verbergen" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Glätten der spiralisierten Kontur" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Glättet die spiralförmigen Konturen, um die Sichtbarkeit der Z-Naht zu reduzieren (die Z-Naht sollte am Druckobjekt kaum sichtbar sein, ist jedoch in der Schichtenansicht erkennbar). Beachten Sie, dass beim Glätten feine Oberflächendetails verwischt werden." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Während einer Bewegung über einen nicht zu bedruckenden Bereich kann Material wegsickern, was hier kompensiert werden kann." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Während einer Bewegung für den Abwischvorgang kann Material wegsickern, was hier kompensiert werden kann." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Sonderfunktionen" + +msgctxt "speed description" +msgid "Speed" +msgstr "Geschwindigkeit" + +msgctxt "speed label" +msgid "Speed" +msgstr "Geschwindigkeit" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Geschwindigkeit für das Verfahren der Z-Achse während des Sprungs." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiralisieren der äußeren Konturen" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Durch Spiralisieren wird die Z-Bewegung der äußeren Kante geglättet. Dies führt zu einem konstanten Z-Anstieg des gesamten Drucks. Diese Funktion wandelt ein solides Modell in einen Druck mit Einzelwänden und einem soliden Boden um. Diese Funktion sollte nur aktiviert werden, wenn jede Schicht nur ein einzelnes Teil enthält." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Standby-Temperatur" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-Code" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Der Startdruckpunkt von jedem Teil einer Schicht. Wenn der Druck der Teile in aufeinanderfolgenden Schichten am gleichen Punkt startet, kann eine vertikale Naht sichtbar werden. Wird dieser neben einer benutzerdefinierten Position ausgerichtet, ist die Naht am einfachsten zu entfernen. Wird er zufällig platziert, fallen die Ungenauigkeiten am Startpunkt weniger auf. Wird der kürzeste Weg eingestellt, ist der Druck schneller." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Schritte pro Millimeter (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Schritte pro Millimeter (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Schritte pro Millimeter (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Schritte pro Millimeter (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Stützstruktur" + +msgctxt "support label" +msgid "Support" +msgstr "Stützstruktur" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Beschleunigung Stützstruktur" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Unterer Abstand der Stützstruktur" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Anzahl der unteren Wandlinien der Stützstruktur" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Anzahl der Brim-Stützstrukturlinien" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breite der Brim-Stützstruktur" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Anzahl der Stützstruktur-Blocklinien" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Blockgröße für Stützstruktur" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichte der Stützstruktur" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Abstandspriorität der Stützstruktur" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder für Stützstruktur" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Beschleunigung Bodenstruktur" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichte der Bodenstruktur" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder für Bodenstruktur" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Stützbodenfluss" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturboden" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Ruckfunktion für Bodenstruktur" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Richtungen der Bodenlinien unterstützen" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Linienabstand der Bodenstruktur" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Stützstruktur Boden Linienbreite" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Muster der Bodenstruktur" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Geschwindigkeit Bodenstruktur" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dicke der Bodenstruktur" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Stützstruktur-Fluss" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Erweiterung der Stützstruktur" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Beschleunigung Stützstrukturfüllung" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder für Füllung Stützstruktur" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Ruckfunktion Stützstruktur-Füllung" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Stützstruktur Füllschichtdicke" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Unterstützung Linienrichtung Füllung" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Stützstruktur-Füllungsgeschwindigkeit" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Beschleunigung Stützstrukturschnittstelle" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichte Stützstrukturschnittstelle" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder für Stützstruktur-Schnittstelle" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluss Stützstruktur-Schnittstelle" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstruktur-Schnittstelle" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Ruckfunktion Stützstruktur-Schnittstelle" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Richtungen der Verbindungslinien unterstützen" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Stützstruktur Schnittstelle Linienbreite" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Muster Stützstrukturschnittstelle" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Schnittstellenpriorität der Stützstruktur" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Stützstruktur-Schnittstellengeschwindigkeit" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dicke der Stützstrukturschnittstelle" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur-Schnittstelle" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Ruckfunktion Stützstruktur" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Abstand für Zusammenführung der Stützstrukturen" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Linienabstand der Stützstruktur" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Breite der Stützstrukturlinien" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Stütznetz" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Winkel für Überhänge Stützstruktur" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Muster der Stützstruktur" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Platzierung Stützstruktur" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Beschleunigung Dachstruktur" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichte der Dachstruktur" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder für Dachstruktur" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Stützdachfluss" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Horizontale Erweiterung Stützstrukturdach" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Ruckfunktion für Dachstruktur" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Richtungen der Dachlinien unterstützen" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Linienabstand der Dachstruktur" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Breite der Stützdachlinie" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Muster des Stützdachs" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Stützdachgeschwindigkeit" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Dicke des Stützdachs" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Anzahl der Wandlinien des Stützdachs" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Stützstrukturgeschwindigkeit" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Stufenhöhe der Stützstruktur" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Max. Stufenhöhe der Stützstruktur" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Stützstufe minimaler Neigungswinkel" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Stützstruktur" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Oberer Abstand der Stützstruktur" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Anzahl der Wandlinien der Stützstruktur" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y-Abstand der Stützstruktur" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-Abstand der Stützstruktur" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Stützlinien priorisiert" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Stützstruktur priorisiert" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Unterstützte Lüfterdrehzahl für Außenhaut" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oberfläche" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oberflächenenergie" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oberflächenmodus" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Oberflächenhaftungstendenz." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oberflächenenergie." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Vertauschen Sie die Druckreihenfolge der innersten und der zweitinnersten Brim-Linie, um die Entfernung des Brims zu erleichtern." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Schaltet mit jeder Schicht das Volumen zu den entsprechenden Netzüberschneidungen, sodass die überlappenden Netze miteinander verwebt werden. Durch Abschalten dieser Funktion erhält eines der Netze das gesamte Volumen der Überlappung, während es von den anderen Netzen entfernt wird." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Horizontaler Abstand zwischen zwei angrenzenden Schichten. Bei Einstellung eines niedrigeren Werts werden dünnere Schichten aufgetragen, damit die Kanten der Schichten enger aneinander liegen." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Die X-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Die X-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die X-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Die Y-Koordinate der Position, neben der das Teil positioniert ist, von dem aus der Druck jeder Schicht begonnen wird." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Die Y-Koordinate der Position, neben der der Druck jedes Teils in einer Schicht begonnen wird." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Y-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Die Z-Koordinate der Position, an der die Düse am Druckbeginn einzieht." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Die Beschleunigung während des Druckens der ersten Schicht." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Die Beschleunigung für die erste Schicht." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Die Beschleunigung für die Fahrtbewegung der ersten Schicht." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Die Beschleunigung, mit der die Innenwände gedruckt werden." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Die Beschleunigung, mit der die Füllung gedruckt wird." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Die Beschleunigung, mit der das Glätten erfolgt." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Die Beschleunigung, mit der das Drucken erfolgt." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Die Beschleunigung, mit der die unteren Raft-Schichten gedruckt werden." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Haftung des Stützdachs verbessert werden." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Die Beschleunigung, mit der die Füllung der Stützstruktur gedruckt wird." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Die Beschleunigung, mit der die mittleren Raft-Schichten gedruckt werden." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Die Beschleunigung, mit der die Außenwände gedruckt werden." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Die Beschleunigung, mit der der Einzugsturm gedruckt wird." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Die Beschleunigung, mit der das Raft gedruckt wird." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Die Beschleunigung, mit der die Böden der Stützstruktur gedruckt wird. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Die Beschleunigung, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Beschleunigung kann die Qualität der Überhänge verbessert werden." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Die Beschleunigung, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Beschleunigung der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Beschleunigung zu drucken." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Die Beschleunigung, mit der die Stützstruktur gedruckt wird." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Die Beschleunigung, mit der die oberen Raft-Schichten gedruckt werden." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Die Beschleunigung, mit der die inneren Wände der Oberfläche gedruckt werden." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Die Beschleunigung, mit der die äußersten Wände der Oberfläche gedruckt werden." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Die Beschleunigung, mit der die Wände gedruckt werden." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Die Beschleunigung, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Die Beschleunigung, mit der die oberen/unteren Schichten gedruckt werden." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Die Beschleunigung, mit der Bewegungen durchgeführt werden." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Die Materialmenge relativ zu einer normalen Außenhautlinie, um während des Glättens zu extrudieren. Indem die Düse gefüllt bleibt, können einige Spalten in der oberen Schicht gefüllt werden, allerdings führt zu viel davon zu einer übermäßigen Extrudierung und Markierungen seitlich der Oberfläche." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden als Prozentwert der Füllungslinienbreite. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Das Ausmaß des Überlappens zwischen der Füllung und den Wänden. Ein leichtes Überlappen ermöglicht es den Wänden, eine solide Verbindung mit der Füllung herzustellen." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Der Wert für den Einzug beim Umstellen der Extruder: 0 einstellen, um keinen Einzug zu erhalten. Dies sollte generell mit der Länge der Heizzone übereinstimmen." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Der Winkel zwischen der horizontalen Planfläche und dem konischen Teil direkt über der Düsenspitze." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Der Winkel eines Pfeilerdachs. Ein höherer Wert hat spitze Pfeilerdächer zur Folge, ein niedrigerer Wert führt zu flacheren Pfeilerdächern." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Dies bezeichnet den Winkel des Überhangs der für die Form erstellten Außenwände. 0 Grad ergibt eine vertikale Außenhaut der Form, während 90 Grad dazu führt, dass die Außenseite des Modells der Modellkontur folgt." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "Dies beschreibt den Winkel der Astdurchmesser, da sie stufenweise zum Boden hin dicker werden. Ein Winkel von 0 lässt die Äste über die gesamte Länge hinweg eine gleiche Dicke haben. Ein geringer Winkel kann die Stabilität der Baumstützstruktur erhöhen." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Der Neigungswinkel der konischen Stützstruktur. Bei 0 Grad ist er vertikal und bei 90 Grad horizontal. Kleinere Winkel machen die Stützstruktur stabiler, aber benötigen mehr Material. Negative Winkel machen die Basis der Stützstruktur breiter als die Spitze." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Die durchschnittliche Dichte der Punkte, die auf jedes Polygon einer Schicht aufgebracht werden. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine geringe Dichte in einer Reduzierung der Auflösung resultiert." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Der durchschnittliche Abstand zwischen den willkürlich auf jedes Liniensegment aufgebrachten Punkten. Beachten Sie, dass die Originalpunkte des Polygons verworfen werden, sodass eine hohe Glättung in einer Reduzierung der Auflösung resultiert. Dieser Wert muss größer sein als die Hälfte der Dicke der ungleichmäßigen Außenhaut." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Die Marke des verwendeten Materials." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Die voreingestellte Beschleunigung der Druckkopfbewegung." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Die für den Druck verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur eines Materials sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Die für die erhitzte Druckplatte verwendete Standardtemperatur. Dies sollte die „Basis“-Temperatur einer Druckplatte sein. Alle anderen Drucktemperaturen sollten anhand dieses Wertes einen Versatz verwenden" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Die Dichte der Stützstrukturböden wird eingestellt. Ein höherer Wert führt zu einer besseren Haftung der Stützstruktur oben am Modell." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Die Dichte der Stützstrukturdächer wird eingestellt. Ein höherer Wert führt zu besseren Überhängen, aber die Stützstrukturen sind schwieriger zu entfernen." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der zweiten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Die Dichte der dritten Brücken-Außenhautschicht. Werte unter 100 erhöhen die Spalten zwischen den Außenhautlinien." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Die Tiefe (Y-Richtung) des druckbaren Bereichs." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Der Durchmesser eines speziellen Pfeilers." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Dies beschreibt den Durchmesser der dünnsten Äste der Baumstützstruktur. Dickere Äste sind stabiler. Äste zur Basis hin werden dicker als diese sein." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Dies bezeichnet den Durchmesser an der Spitze von Ästen in der Baumstützstruktur." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Der Durchmesser des Rades für den Transport des Materials in den Feeder." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Durchmesser der breitesten Äste der Baumstützstruktur. Ein dickerer Stamm ist stabiler, ein dünnerer Stamm nimmt weniger Platz auf dem Druckbett ein." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Der Höhenunterscheid der nächsten Schichthöhe im Vergleich zur vorherigen." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Der Abstand zwischen den Glättungslinien." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Teilen, wenn diese bei Bewegungen umgangen werden." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Basisschicht. Große Abstände erleichtern das Entfernen des Raft vom Druckbett." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Der Abstand zwischen den Raft-Linien im Raft-Mittelbereich. Der Abstand im Mittelbereich sollte recht groß sein, dennoch muss dieser dicht genug sein, um die Raft-Oberflächenschichten stützen zu können." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Der Abstand zwischen den Raft-Linien der Raft-Oberflächenschichten. Der Abstand sollte der Linienbreite entsprechen, damit die Oberfläche stabil ist." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Der Abstand zwischen den Floßlinien für die einzigartige Prime-Turm-Floßschicht. Ein großer Abstand erleichtert das Entfernen des Floßes von der Bauplatte." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Der Abstand von der Begrenzung zwischen Modellen, der eine ineinandergreifende Struktur erzeugt, gemessen in Zellen. Eine zu geringe Zellenanzahl führt zu mangelnder Haftung." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Der Abstand vom Model zur äußersten Brim-Linie. Ein größeres Brim-Element verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Der Abstand von der Außenseite eines Modells, in dem keine ineinandergreifenden Strukturen erzeugt werden, gemessen in Zellen." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Die Distanz von der Düsenspitze, in der Wärme von der Düse zum Filament geleitet wird." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Die Distanz, um die die unteren Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und an den Wänden auf der darunter liegenden Schicht haften. Niedrigere Werte reduzieren den Materialverbrauch." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Die Distanz, um die die Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den angrenzenden Schichten besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Die Distanz, um die die oberen Außenhäute in die Füllung expandiert werden. Höhere Werte lassen die Außenhaut besser am Füllmuster und die Wände an den Schichten darüber besser an der Außenhaut haften. Niedrigere Werte reduzieren den Materialverbrauch." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Die Strecke, die der Kopf durch Vorwärts- und Rückwärtsbewegung über die Bürste hinweg fährt." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Die Endpunkte von Füllungslinien werden gekürzt, um Material zu sparen. Bei dieser Einstellung handelt es sich um den Winkel des Überhangs der Endpunkte von diesen Linien." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Die zusätzliche Geschwindigkeit mit der die Düse während der Extrusion abkühlt. Der gleiche Wert wird verwendet, um Aufheizgeschwindigkeit anzugeben, die verloren geht wenn während der Extrusion aufgeheizt wird." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Das für das Drucken der ersten Schicht der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der ersten Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützstruktur der Böden verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Füllung der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der mittleren Schicht des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Dächer und Böden der Stützstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützdachstruktur verwendete Extruder-Element. Dieses wird für die Mehrfach-Extrusion benutzt." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck von Skirt oder Brim verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Das für das Drucken von Skirt/Brim/Raft verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Das für das Drucken der Stützstruktur verwendete Extruder-Element. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der obersten Schicht(en) des Rafts verwendet wird. Dies wird bei der Mehrfachextrusion verwendet." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Die für das Drucken der Füllung verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Die für das Drucken der Innenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Die für das Drucken der Außenwände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Die für das Drucken der oberen und unteren Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Die für das Drucken der obersten Außenhaut verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Die für das Drucken der Wände verwendete Extruder-Einheit. Diese wird für die Mehrfach-Extrusion benutzt." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Die Drehzahl des Lüfters für die Raft-Basisschicht." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Die Drehzahl des Lüfters für die mittlere Raft-Schicht." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Die Drehzahl des Lüfters für das Raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Die Drehzahl des Lüfters für die obere Raft-Schicht." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Füllung des Drucks bestimmen." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Die Dateiposition eines Bildes, von dem die Helligkeitswerte die minimale Dichte an der entsprechenden Position in der Stützstruktur bestimmen." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Die ersten Schichten werden langsamer als der Rest des Modells gedruckt, damit sie besser am Druckbett haften und um die Wahrscheinlichkeit eines erfolgreichen Drucks zu erhöhen. Die Geschwindigkeit wird während des Druckens dieser Schichten schrittweise erhöht." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Die Lücke zwischen der letzten Raft-Schicht und der ersten Schicht des Modells. Nur die erste Schicht wird entsprechend dieses Wertes angehoben, um die Bindung zwischen der Raft-Schicht und dem Modell zu reduzieren. Dies macht es leichter, das Raft abzuziehen." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Die Höhe (Z-Richtung) des druckbaren Bereichs." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Bezeichnet die Höhe über horizontalen Teilen Ihres Modell, in der die Form gedruckt wird." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Die Höhe, auf der die Lüfter mit Normaldrehzahl laufen. In den Schichten darunter wird die Lüfterdrehzahl schrittweise von der anfänglichen Lüfterdrehzahl bis zur Normaldrehzahl angehoben." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem Brückensystem (X- und Y-Achsen)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Der Höhenunterschied zwischen der Düsenspitze und dem untersten Bereich des Druckkopfes." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs nach Extruder-Wechsel." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Der Höhenunterschied bei Ausführung eines Z-Sprungs." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Die Dicke jeder Schicht in mm. Bei höheren Werten werden schnellere Drucke mit niedrigerer Auflösung hergestellt, bei niedrigeren Werten langsamere Drucke mit höherer Auflösung." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Die Höhe der Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Die Höhe der Stützstruktur-Füllung einer bestimmten Dichte vor dem Umschalten auf die halbe Dichte." + +msgctxt "interlocking_beam_layer_count description" +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 "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." + +msgctxt "interlocking_orientation description" +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 "Die Höhe der Balken in der ineinandergreifenden Struktur, gemessen in der Anzahl der Schichten. Eine geringe Anzahl an Schichten ist stärker, aber anfälliger für Mängel." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Die Dicke der ersten Schicht in mm. Eine dicke erste Schicht erleichtert die Haftung am Druckbett." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Die Höhe der Prime-Turm-Basis. Eine Erhöhung dieses Wertes führt zu einem stabileren Prime-Turm, da die Basis breiter wird. Ist dieser Wert zu niedrig, hat der Prime-Turm keine stabile Basis." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Die Höhe der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen. Auf Null einstellen, um das Stufenverhalten zu deaktivieren." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Der horizontale Abstand zwischen der ersten Brim-Linie und der Kontur der ersten Schicht des Drucks. Eine kleine Spalte kann das Entfernen des Brims vereinfachen, wobei trotzdem alle thermischen Vorteile genutzt werden können." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Der horizontale Abstand zwischen dem Skirt und der ersten Schicht des Drucks." +"Es handelt sich dabei um den Mindestabstand. Ab diesem Abstand werden mehrere Skirt-Linien in äußerer Richtung angebracht." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Um Druckzeit zu sparen, werden die Füllungslinien begradigt. Dies ist der maximal zulässige Winkel des Überhangs über die Länge der Füllung." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Das Füllmuster wird um diese Distanz entlang der X-Achse verschoben." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Das Füllmuster wird um diese Distanz entlang der Y-Achse verschoben." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Der Innendurchmesser der Düse. Verwenden Sie diese Einstellung, wenn Sie eine Düse einer Nicht-Standardgröße verwenden." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Die Ruckfunktion, mit der die unteren Raft-Schichten gedruckt werden." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Die Ruckfunktion, mit der die mittleren Raft-Schichten gedruckt werden." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Die Ruckfunktion, mit der das Raft gedruckt wird." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Die Ruckfunktion, mit der die oberen Raft-Schichten gedruckt werden." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden unteren Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der unteren Außenhaut an abgeschrägten Flächen des Modells unterstützen." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der Außenhaut oben/unten an abgeschrägten Flächen des Modells unterstützen." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Dies bezeichnet die größte Breite der zu entfernenden oberen Außenhautbereiche. Jeder Außenhautbereich, der kleiner als dieser Wert ist, verschwindet. Dies kann bei der Beschränkung der benötigten Zeit und Materialmenge für das Drucken der oberen Außenhaut an abgeschrägten Flächen des Modells unterstützen." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Die Schicht, bei der die Lüfter mit Normaldrehzahl laufen. Wenn Normaldrehzahl des Lüfters bei Höhe eingestellt ist, wird dieser Wert berechnet und auf eine ganze Zahl auf- oder abgerundet." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Die Schichtzeit, die den Grenzwert zwischen Normaldrehzahl und Maximaldrehzahl des Lüfters darstellt. Für Schichten, die langsamer als diese Zeit gedruckt werden, läuft der Lüfter auf Normaldrehzahl. Für schnellere Schichten steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Die Länge des Materials, das während der Einzugsbewegung eingezogen wird." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Der Größenfaktor, der für die Neigung der Prime-Turm-Basis verwendet wird. Wenn Sie diesen Wert erhöhen, wird die Basis schlanker. Wenn Sie ihn verringern, wird die Basis dicker." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Das Material der im Drucker eingebauten Druckplatte." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Die max. zulässige Höhendifferenz von der Basisschichthöhe." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Der maximale Winkel, den ein Teil im Sickerschutz haben kann. 0 Grad ist vertikal und 90 Grad ist horizontal. Ein kleinerer Winkel führt zu weniger ausgefallenen Sickerschützen, jedoch mehr Material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Der maximale Winkel von Überhängen, nachdem sie druckbar gemacht wurden. Bei einem Wert von 0° werden alle Überhänge durch ein Teil des Modells ersetzt, das mit der Druckplatte verbunden ist, 90° führt zu keiner Änderung des Modells." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Dies bezeichnet den maximalen Winkel der Äste, die um das Modell herum entstehen. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Winkel, um mehr Reichweite zu erhalten." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Die maximale Fläche eines Lochs im Sockel des Modells, das mittels „Überhang drucken“ entfernt werden soll. Löcher mit kleinerer Fläche werden beibehalten. Beim Wert 0 mm² werden alle Löcher in der Modellbasis gefüllt." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Die maximal zulässige Abweichung bei Reduzierung der maximalen Auflösung. Wenn Sie diesen Wert erhöhen, wird der Druck ungenauer, der G-Code wird jedoch kleiner. Die maximale Abweichung ist eine Grenze für die maximale Auflösung. Wenn die beiden Werte sich widersprechen, wird stets die maximale Abweichung eingehalten." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Der Maximalabstand zwischen Stützstrukturen in der X- und Y-Richtung. Wenn der Abstand einzelner Strukturen zueinander diesen Wert unterschreitet, werden diese Strukturen miteinander kombiniert und bilden eine Struktur." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Die maximale Strecke (in mm), die das Filament bewegt werden kann, um Änderungen der Durchflussrate zu kompensieren." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Die maximale zulässige Abweichung für Extrusionsflächen beim Entfernen von Zwischenpunkten aus einer Geraden. Ein Zwischenpunkt kann als Änderungspunkt für die Linienstärke in einer langen Geraden dienen. Wenn dieser entfernt wird, führt es dazu, dass die Linie eine einheitliche Stärke hat und folglich ein wenig Extrusionsfläche verloren geht (oder hinzugefügt wird). Wenn Sie diesen Wert erhöhen, können Sie eine leichte Unter- (oder Über-) Extrusion zwischen geraden, parallelen Wänden feststellen, da mehr dazwischenliegende Änderungspunkte für die Linienstärke entfernt werden können. Ihr Druck wird weniger genau sein, aber der g-Code wird kleiner sein." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Druckens für die erste Schicht." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung des Druckkopfes." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung während des Glättens." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der alle Innenwände gedruckt werden." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung gedruckt wird." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Böden der Stützstruktur gedruckt werden." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Füllung der Stützstruktur gedruckt wird." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Außenwände gedruckt werden." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der der Einzugsturm gedruckt wird." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer und Böden der Stützstruktur gedruckt werden." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Dächer der Stützstruktur gedruckt werden." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der Skirt und Brim gedruckt werden." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Stützstruktur gedruckt wird." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die äußersten Oberflächenwände gedruckt werden." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Die maximale instantane Geschwindigkeitsänderung, mit der die inneren Oberflächenwände gedruckt werden." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Wände gedruckt werden." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen Schichten der Außenhaut gedruckt werden." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die oberen/unteren Schichten gedruckt werden." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung, mit der die Fahrtbewegung ausgeführt wird." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Die maximale Länge der Zweige, die über die Luft gedruckt werden dürfen." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Die Maximaldrehzahl für den Motor der X-Richtung." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Die Maximaldrehzahl für den Motor der Y-Richtung." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Die Maximaldrehzahl für den Motor der Z-Richtung." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Die Maximalgeschwindigkeit des Filaments." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Die maximale Breite der Stufen der treppenförmigen Unterlage für die Stützstruktur des Modells. Ein niedriger Wert kann das Entfernen der Stützstruktur erschweren, ein zu hoher Wert kann jedoch zu instabilen Stützstrukturen führen." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Der Mindestabstand zwischen der Außenseite der Form und der Außenseite des Modells." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Die Mindestgeschwindigkeit für die Bewegung des Druckkopfes." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Die Mindesttemperatur während des Aufheizens auf die Drucktemperatur, bei welcher der Druck bereits starten kann." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Die Mindestzeit, die ein Extruder inaktiv sein muss, bevor die Düse abkühlt. Nur wenn der Extruder über diese Zeit hinaus nicht verwendet wurde, kann er auf die Standby-Temperatur abkühlen." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden Objekte komplett gefüllt, bei 90° wird keine Füllung ausgeführt." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Der Mindestwinkel für Überhänge, für welche eine Stützstruktur zugefügt wird. Bei einem Wert von 0° werden alle Überhänge gestützt, bei 90° wird kein Überhang gestützt." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Der Mindestbewegungsabstand, damit ein Einzug erfolgt. Dadurch kommt es zu weniger Einzügen in einem kleinen Gebiet." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Die Mindestlänge für das Skirt- oder Brim-Element. Wenn diese Mindestlänge nicht durch die Anzahl der Skirt- oder Brim-Linien erreicht wird, werden weitere Skirt- oder Brim-Linien hinzugefügt, bis diese Mindestlänge erreicht wird. Hinweis: Wenn die Linienzahl auf 0 eingestellt wird, wird dies ignoriert." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Die minimale Linienbreite für Polylinienwände mit Lücken in der mittleren Linie. Diese Einstellung legt fest, bei welcher Stärke im Modell ein Übergang vom Druck zweier Wandlinien zum Druck zweier Außenwände und einer einzigen zentralen Wand in der Mitte erfolgt. Eine höhere minimale ungeradzahlige Wandlinienstärke führt zu einer höheren maximalen ungeradzahligen Wandlinienstärke. Die maximale ungerade Wandlinienbreite wird berechnet als 2 x Minimale Wandlinienbreite." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Die Mindestlinienstärke für normale polygonale Wände. Diese Einstellung legt fest, bei welcher Stärke des Modells vom Druck einer einzelnen dünnen Wandlinie auf den Druck zweier Wandlinien umgeschaltet wird. Eine höhere minimale geradzahlige Wandlinienstärke führt zu einer höheren maximalen geradzahligen Wandlinienstärke. Die maximale geradzahlige Wandlinienstärke wird berechnet als Außenwandlinienstärke + 0,5 x minimale geradzahlige Wandlinienstärke." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Die Mindestdruckgeschwindigkeit, trotz Verlangsamung aufgrund der Mindestzeit für Schicht. Wenn der Drucker zu langsam arbeitet, sinkt der Druck in der Düse zu stark ab und dies führt zu einer schlechten Druckqualität." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Die Mindestgröße eines Linienabschnitts nach dem Slicen. Wenn Sie diesen Wert erhöhen, führt dies zu einer niedrigeren Auslösung des Mesh. Damit kann der Drucker die erforderliche Geschwindigkeit für die Verarbeitung des G-Codes beibehalten; außerdem wird die Slice-Geschwindigkeit erhöht, indem Details des Mesh entfernt werden, die ohnehin nicht verarbeitet werden können." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Die maximale Größe eines Bewegungsliniensegments nach dem Slicen. Wenn Sie diesen Wert erhöhen, weisen die Fahrtbewegungen weniger glatte Kanten aus. Das ermöglicht dem Drucker, die für die Verarbeitung eines G-Codes erforderliche Geschwindigkeit aufrechtzuerhalten, allerdings kann das Modell damit auch weniger akkurat werden." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Die Mindestneigung des Bereichs zur Erstellung einer Stützstufe. Bei niedrigeren Werten lassen sich die Stützstrukturen an flachen Neigungen leichter entfernen. Zu niedrige Werte können allerdings zu widersprüchlichen Ergebnissen an anderen Teilen des Modells führen." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Die Mindestzeit, die für eine Schicht aufgewendet wird. Hierdurch wird der Drucker verlangsamt, um mindestens die hier eingestellte Zeit für eine Schicht aufzuwenden. Dadurch kann das gedruckte Material angemessen abkühlen, bevor die folgende Schicht gedruckt wird. Die Schichten können dennoch weniger als die Mindestzeit für eine Schicht erfordern, wenn die Funktion Druckkopf anheben deaktiviert ist und die Mindestgeschwindigkeit andernfalls verletzt würde." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Das Mindestvolumen für jede Schicht des Einzugsturms, um ausreichend Material zu spülen." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Dies bezeichnet die maximale Vergrößerung des Durchmessers eines Astes, der mit dem Modell verbunden werden muss, durch die Zusammenführung mit Ästen, die die Druckplatte erreichen könnten. Die Erhöhung dieses Wertes verkürzt die Druckzeit, vergrößert jedoch die Stützstruktur, die auf dem Modell ruht." + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Die Bezeichnung Ihres 3D-Druckermodells." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Der Düsen-ID für eine Extruder-Einheit, z. B. „AA 0,4“ und „BB 0,8“." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Teile. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Die Düse vermeidet bei der Bewegung bereits gedruckte Stützstrukturen. Diese Option ist nur verfügbar, wenn Combing aktiviert ist." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der unteren Schichten. Wenn diese anhand der unteren Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Die Anzahl der Konturlinien, die um das Linienmodell in der untersten Schicht des Rafts gedruckt werden sollen." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster in den mittleren Schichten des Floßes gedruckt werden." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster in den oberen Lagen des Floßes gedruckt werden sollen." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Die Anzahl der Konturen, die um das lineare Muster des Floßes gedruckt werden." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Die Anzahl der zusätzlichen Schichten, die die Außenhautkanten stützen." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der ersten Schichten, die auf die Druckplatte aufgetragen werden. Wenn diese anhand der unteren Dicke berechnet werden, wird der Wert auf eine ganze Zahl auf- oder abgerundet." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Die Anzahl der Schichten zwischen dem Boden und der Oberfläche des Rafts. Aus diesen besteht der größte Teil des Rafts. Eine Erhöhung dieses Wertes führt zu einem dickeren und stabileren Raft." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Die Anzahl der Linien für das Brim-Element. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, es wird dadurch aber auch der verwendbare Druckbereich verkleinert." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Die Anzahl der Linien für die Brim-Stützstruktur. Eine größere Anzahl von Brim-Linien verbessert die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Die Anzahl der Oberflächenschichten auf der zweiten Raft-Schicht. Dabei handelt es sich um komplett gefüllte Schichten, auf denen das Modell ruht. Bei der Verwendung von 2 Schichten entsteht eine glattere Oberfläche als bei einer Schicht." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der oberen Schichten. Wenn diese anhand der oberen Dicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Die Anzahl der obersten Außenhautschichten. Üblicherweise reicht eine einzige oberste Schicht aus, um höherwertige Oberflächen zu generieren." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Füllung umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen der Stützstruktur-Schnittstellenboden umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen das Stützstruktur-Schnittstellendach umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Die Anzahl der Wände, mit denen die Stützstruktur-Schnittstelle umgeben wird. Das Hinzufügen einer Wand kann den Druck der Stützstruktur zuverlässiger machen und Überhänge besser unterstützen. Es erhöht jedoch die Druckzeit und den Materialverbrauch." + +msgctxt "wall_distribution_count description" +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 "Die Anzahl der Wände, gezählt von der Mitte aus, über welche die Variation verteilt werden soll. Niedrigere Werte führen dazu, dass sich die Außenwände in ihrer Stärke nicht verändern." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Die Anzahl der Wände. Wenn diese anhand der Wanddicke berechnet wird, wird der Wert auf eine ganze Zahl auf- oder abgerundet." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Der Außendurchmesser der Düsenspitze." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Das Muster des Füllungsmaterials des Drucks. Die Linien- und Zickzack-Füllung wechselt die Richtung auf abwechselnden Schichten, was die Materialkosten reduziert. Die Gitter-, Dreieck-, Tri-Hexagon-, Kubus-, Oktett-, Viertelkubus-, Kreuz- und konzentrischen Muster werden in jeder Schicht vollständig gedruckt. Die Füllung in Form von Kreiseln, Würfeln, Viertelwürfeln und Achten wechselt mit jeder Schicht, um eine gleichmäßigere Verteilung der Stärke in jeder Richtung zu erreichen. Bei der Blitz-Füllung wird versucht, die Füllung zu minimieren, indem nur die Decke des Objekts unterstützt wird." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Das Muster der Stützstruktur des Drucks. Die verschiedenen verfügbaren Optionen führen zu einer stabilen oder zu einer leicht entfernbaren Stützstruktur." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Das Muster der obersten Schichten." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Das Muster der oberen/unteren Schichten." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Das Muster am Boden des Drucks der ersten Schicht." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Das Muster, das für die Glättung der Oberflächen verwendet wird." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Das Muster, mit dem die Unterseiten der Stützstruktur gedruckt werden." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Das Muster, mit dem die Schnittstelle der Stützstruktur mit dem Modell gedruckt wird." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Das Muster, mit dem die Dächer der Stützstruktur gedruckt werden." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Die Position in der Nähe der Stelle, an der die einzelnen Teile einer Ebene gedruckt werden sollen." + +msgctxt "support_tree_angle_slow description" +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 "Dies bezeichnet den bevorzugten Winkel der Äste, wenn eine Vermeidung des Modells nicht notwendig ist. Verwenden Sie einen geringeren Winkel, um sie vertikaler und stabiler zu gestalten. Verwenden Sie einen stärkeren Astwinkel, um sie schneller zusammenzuführen." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Hierdurch wird die bevorzugte Platzierung der Stützstrukturen festgelegt. Wenn Strukturen nicht an der gewünschten Stelle platziert werden können, werden sie anderswo positioniert, möglicherweise sogar auf dem Modell." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Die maximale unmittelbare Geschwindigkeitsänderung für die erste Schicht." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Die Form der Druckplatte ohne Berücksichtigung nicht druckbarer Bereiche." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Die Form des Druckkopfes. Dies sind die Koordinaten relativ zur Position des Druckkopfs; meist ist dies die Position des ersten Extruders. Die Abmessungen links und vor dem Druckkopf müssen negative Koordinaten sein." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Die Größe der Taschen bei Überkreuzung im 3D-Quermuster bei Höhen, in denen sich das Muster selbst berührt." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Das kleinste Volumen, das ein Extrusionsweg haben sollte, damit Coasting möglich ist. Bei kürzeren Extrusionswegen wurde ein geringerer Druck in der Bowden-Röhre aufgebaut und daher wird das Coasting-Volumen linear skaliert. Dieser Wert sollte immer größer sein als das Coasting-Volumen." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby abkühlt." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Die Geschwindigkeit (°C/Sek.), mit der die Düse durchschnittlich bei normalen Drucktemperaturen und im Standby aufheizt." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Die Geschwindigkeit, mit der alle Innenwände gedruckt werden. Wenn die Innenwand schneller als die Außenwand gedruckt wird, wird die Druckzeit reduziert. Es wird empfohlen, diese Geschwindigkeit zwischen der Geschwindigkeit für die Außenwand und der Füllgeschwindigkeit einzustellen." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Die Geschwindigkeit, mit der die Brücken-Außenhautbereiche gedruckt werden." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Die Geschwindigkeit, mit der die Füllung gedruckt wird." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Die Geschwindigkeit, mit der gedruckt wird." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Basisschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Die Geschwindigkeit, mit der die Brückenwände gedruckt werden." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Die Drehzahl, mit der die Lüfter zu Druckbeginn drehen. In den nachfolgenden Schichten wird die Lüfterdrehzahl schrittweise bis zu der Schicht gesteigert, die der Normaldrehzahl in der Höhe entspricht." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Die Drehzahl, mit der die Lüfter laufen, bevor der Grenzwert erreicht wird. Wenn eine Schicht schneller als der Grenzwert gedruckt wird, steigt die Lüfterdrehzahl schrittweise zur Maximaldrehzahl des Lüfters an." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Die Drehzahl, mit der die Lüfter bei der Mindestzeit für Schicht laufen. Die Lüfterdrehzahl wird schrittweise von der Normaldrehzahl bis zur Maximaldrehzahl des Lüfters angehoben, wenn der Grenzwert erreicht wird." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung zurückgeschoben wird." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung vorbereitet wird." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgeschoben wird." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und zurückgeschoben wird." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen und während einer Einzugsbewegung für Abwischen zurückgeschoben wird." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Die Geschwindigkeit, mit der das Filament während eines Düsenwechseleinzugs zurückgezogen wird." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung eingezogen wird." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Die Geschwindigkeit, mit der das Filament während einer Einzugsbewegung für Abwischen eingezogen wird." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Die Geschwindigkeit, mit der das Filament zurückgezogen wird. Eine höhere Rückzugsgeschwindigkeit funktioniert besser, allerdings kann eine sehr hohe Rückzugsgeschwindigkeit zu einem Schleifen des Filaments führen." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Die Geschwindigkeit, mit der die Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Haftung des Stützdachs Ihres Modells verbessert werden." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Die Geschwindigkeit, mit der die Füllung der Stützstruktur gedruckt wird. Durch das Drucken der Füllung bei einer geringeren Geschwindigkeit, kann die Stabilität verbessert werden." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Die Geschwindigkeit, mit der die Raft-Mittelschicht gedruckt wird. Diese sollte relativ niedrig sein, da zu diesem Zeitpunkt ein großes Materialvolumen aus der Düse kommt." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Die Geschwindigkeit, mit der die Außenwände gedruckt werden. Durch das Drucken der Außenwand bei einer niedrigeren Geschwindigkeit wird eine bessere Endqualität der Außenhaut erreicht. Wenn allerdings zwischen der Geschwindigkeit für die Innenwand und jener für die Außenwand ein zu großer Unterschied besteht, wird die Qualität negativ beeinträchtigt." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Die Geschwindigkeit, mit der der Einzugsturm gedruckt wird. Das Drucken des Einzugsturms bei einer geringeren Geschwindigkeit kann zu einem stabileren Ergebnis führen, wenn die Haftung zwischen den verschiedenen Filamenten nicht optimal ist." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Die Drehzahl, mit der die Druckerlüfter laufen." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Die Geschwindigkeit, mit der das Raft gedruckt wird." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Die Geschwindigkeit, mit der die Dächer und Böden der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Die Geschwindigkeit, mit der die Dächer der Stützstruktur gedruckt werden. Durch das Drucken bei einer geringeren Geschwindigkeit kann die Qualität der Überhänge verbessert werden." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Die Geschwindigkeit, mit der die Skirt- und Brim-Elemente gedruckt werden. Normalerweise wird dafür die Geschwindigkeit der Basisschicht verwendet. In machen Fällen kann es jedoch vorteilhaft sein, das Skirt- oder Brim-Element mit einer anderen Geschwindigkeit zu drucken." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Die Geschwindigkeit, mit der die Stützstruktur gedruckt wird. Durch das Drucken der Stützstruktur bei höheren Geschwindigkeiten kann die Gesamtdruckzeit deutlich verringert werden. Die Oberflächenqualität der Stützstruktur ist nicht wichtig, da diese nach dem Drucken entfernt wird." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Die Geschwindigkeit, mit der die oberen Schichten des Raft gedruckt werden. Diese sollte etwas geringer sein, damit die Düse langsam angrenzende Oberflächenlinien glätten kann." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Die Geschwindigkeit, mit der die inneren Wände der Oberfläche gedruckt werden." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Die Geschwindigkeit, mit der die äußersten Wände der Oberfläche gedruckt werden." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Die Geschwindigkeit, mit der bei Z-Sprüngen die vertikale Bewegung (Z-Achse) erfolgt. Diese liegt in der Regel unterhalb der Druckgeschwindigkeit, da die Bewegung von Druckbett oder Brücke schwieriger ist." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Die Geschwindigkeit, mit der die Wände gedruckt werden." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Die Geschwindigkeit, mit der über die Oberfläche gegangen wird." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Geschwindigkeit, mit der das Filament eingezogen werden muss, damit es sauber abgebrochen werden kann." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Die Geschwindigkeit, mit der die Oberflächen der Außenhaut-Schichten gedruckt werden." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Die Geschwindigkeit, mit der die oberen/unteren Schichten gedruckt werden." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Die Geschwindigkeit, mit der Bewegungen durchgeführt werden." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Die Geschwindigkeit, mit der die Bewegung während des Coasting erfolgt, in Relation zur Geschwindigkeit des Extrusionswegs. Ein Wert leicht unter 100 % wird empfohlen, da während der Coasting-Bewegung der Druck in den Bowden-Röhren abfällt." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "Die Geschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung auf der Bauplatte zu verbessern. Hat keinen Einfluss auf die Haftstrukturen des Druckbetts selbst, wie Krempe und Raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Die Druckgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um die Haftung an der Druckplatte zu verbessern." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Die Bewegungsgeschwindigkeit für die erste Schicht. Ein niedrigerer Wert wird empfohlen, um das Wegziehen zuvor gedruckter Teile von der Druckplatte zu vermeiden. Der Wert dieser Einstellung kann automatisch aus dem Verhältnis zwischen Bewegungsgeschwindigkeit und Druckgeschwindigkeit errechnet werden." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Die Temperatur, bei der das Filament für eine saubere Bruchstelle gebrochen wird." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Die Temperatur der Druckumgebung. Beträgt der Wert 0, wird die Druckraumtemperatur nicht angepasst." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Die Temperatur der Düse, wenn eine andere Düse aktuell für das Drucken verwendet wird." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Die Temperatur, bei der das Abkühlen bereits beginnen kann, bevor der Druck beendet wird." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "Die Temperatur, die für den Druck der ersten Schicht verwendet wird." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Die Temperatur, die für das Drucken verwendet wird." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Die Temperatur, auf die das Druckbett für die erste Schicht erhitzt wird. Beträgt dieser Wert 0, wird das Druckbett für die erste Schicht nicht beheizt." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Die Temperatur, die für das beheizte Druckbett verwendet wird. Beträgt dieser Wert 0, wird das Bett nicht beheizt." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Die Temperatur, die zum Spülen des Materials verwendet wird, sollte ungefähr der höchstmöglichen Drucktemperatur entsprechen." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Die Dicke der unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der unteren Schichten." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Die Stärke der zusätzlichen Füllung, die die Außenhautkanten stützt." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Die Dicke der Schnittstelle der Stützstruktur, wo sie das Modell unten und oben berührt." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Die Dicke der Stützböden. Dies steuert die Anzahl der dichten Schichten, die oben an einem Modell gedruckt werden, auf dem die Stützstruktur aufsitzt." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Die Dicke des Stützdachs. Dies steuert die Menge an dichten Schichten oben an der Stützstruktur, auf der das Modell aufsitzt." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Die Dicke der oberen Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen Schichten." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Die Dicke der oberen/unteren Schichten des Drucks. Dieser Wert geteilt durch die Schichtdicke bestimmt die Anzahl der oberen/unteren Schichten." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Die Dicke der Wände in horizontaler Richtung. Dieser Wert geteilt durch die Wandliniendicke bestimmt die Anzahl der Wände." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Die Dicke pro Schicht des Füllmaterials. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Die Dicke pro Schicht des Füllmaterials der Stützstruktur. Dieser Wert sollte immer ein Vielfaches der Schichtdicke sein und wird sonst auf- oder abgerundet." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Der Typ des zu generierenden G-Codes." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Die Art des verwendeten Materials." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Die Menge, die anderweitig abgesondert wird. Dieser Wert sollte im Allgemeinen in der Nähe vom Düsendurchmesser hoch drei liegen." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Die Breite (X-Richtung) des druckbaren Bereichs." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Die Breite des unter der Stützstruktur zu druckenden Brims. Ein größeres Brim erhöht die Haftung am Druckbett, jedoch erhöht sich hierdurch der Materialverbrauch." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Die Breite der Balken in der ineinandergreifenden Struktur." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Die Breite des Prime-Turm-Randes/Basis. Eine größere Basis verbessert die Haftung auf der Bauplatte, verringert jedoch auch den effektiven Druckbereich." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Die Breite des Einzugsturms." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Die Breite der Zitterbewegung. Es wird empfohlen, diese niedriger als der Breite der äußeren Wand einzustellen, da die inneren Wände unverändert bleiben." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Das Fenster, in dem die maximale Anzahl von Einzügen durchgeführt wird. Dieser Wert sollte etwa der Größe des Einzugsabstands entsprechen, sodass die effektive Häufigkeit, mit der ein Einzug dieselbe Stelle des Materials passiert, begrenzt wird." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Die X-Koordinate der Position des Einzugsturms." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Die Y-Koordinate der Position des Einzugsturms." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Die Szene verfügt über Stütznetze. Diese Einstellung wird von Cura gesteuert." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Damit wird der Abstand für das unmittelbare Coasting des Extruders vor Beginn einer Brückenwand gesteuert. Ein Coasting vor Brückenstart kann den Druck in der Düse reduzieren und eine flachere Brücke produzieren." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Kontur des Floßbodens abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Umriss des Floßes entfernt, die kleiner als ein solcher Kreis sind." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenecken in der Floßmitte abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Diese Einstellung steuert, wie stark die Innenkanten des Raft-Umrisses gerundet werden. Die Innenkanten werden zu einem Halbkreis mit einem Radius entsprechend des hier definierten Werts gerundet. Diese Einstellung entfernt außerdem Löcher im Raft-Umriss, die kleiner als ein solcher Kreis sind." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Mit dieser Einstellung legen Sie fest, wie stark die Innenecken des oberen Umrisses des Floßes abgerundet werden. Die Innenecken werden zu einem Halbkreis mit einem Radius abgerundet, der dem hier angegebenen Wert entspricht. Mit dieser Einstellung werden auch Löcher im Floßumriss entfernt, die kleiner als ein solcher Kreis sind." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Diese Einstellung limitiert die Anzahl an Einzügen, die innerhalb des Fensters „Minimaler Extrusionsabstand“ auftritt. Weitere Einzüge innerhalb dieses Fensters werden ignoriert. Durch diese Funktion wird vermieden, dass das gleiche Stück Filament wiederholt eingezogen wird, da es in diesem Fall abgeflacht werden oder es zu Schleifen kommen kann." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Es wird rund um das Modell eine Wand erstellt, die (heiße) Luft festhält und vor externen Luftströmen schützt. Dies ist besonders nützlich bei Materialien, die sich leicht verbiegen." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Astspitzendurchmesser" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in XY-Richtung (horizontal) skaliert." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Um die Schrumpfung des Materials beim Abkühlen auszugleichen, wird das Modell mit diesem Faktor in Z-Richtung (vertikal) skaliert." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Um die Schrumpfung des Materials beim Abkühlen zu kompensieren, wird das Modell mit diesem Faktor skaliert." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Obere Schichten" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Expansionsdistanz Außenhaut oben" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Breite für das Entfernen der Außenhaut oben" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Beschleunigung der inneren Oberfläche der Wand" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Ruck der äußersten Oberflächenwand" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Geschwindigkeit der inneren Oberfläche der Wand" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluss der inneren Oberflächenwand(en)" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Beschleunigung der äußeren Oberfläche der Wand" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluss der äußersten Oberflächenwand" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Ruck der inneren Oberflächenwand" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Geschwindigkeit der äußeren Oberfläche der Wand" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Beschleunigung Oberfläche Außenhaut" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Oberfläche Außenhaut Extruder" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluss Oberfläche Außenhaut" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Justierung der Oberfläche Außenhaut" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Oberfläche Außenhaut Schichten" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Linienrichtungen der Oberfläche Außenhaut" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Oberfläche Außenhaut Linienbreite" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Oberfläche Außenhaut Muster" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Oberfläche Außenhaut Geschwindigkeit" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Obere Dicke" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Die Außenhaut von Ober- und/oder Unterseiten Ihres Objekts, deren Winkel größer als dieser Wert sind, werden nicht expandiert. Dadurch wird vermieden, dass die schmalen Außenhautbereiche, die entstehen, wenn die Modelloberfläche eine nahezu vertikale Neigung aufweist, expandiert werden. Ein Winkel von 0° ist horizontal und führt dazu, dass ein solcher Außenhautbereich nicht expandiert wird; ein Winkel von 90° ist vertikal und führt dazu, dass die gesamte Außenhaut expandiert wird." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Oben/Unten" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Oben/Unten" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Beschleunigung Oben/Unten" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Oben/Unten" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluss oben/unten" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Ruckfunktion obere/untere Schicht" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Richtungen der oberen/unteren Linie" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Breite der oberen/unteren Linie" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Unteres/oberes Muster" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Geschwindigkeit obere/untere Schicht" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Obere/untere Dicke" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Druckbett berühren" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pfeilerdurchmesser" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Winkel des Pfeilerdachs" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Transformationsmatrix, die beim Laden aus der Datei auf das Modell angewandt wird." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Es werden Stützstrukturen platziert. Die Platzierung kann auf „Druckbett berühren“ oder „Überall“ eingestellt werden. Wenn „Überall“ eingestellt wird, werden die Stützstrukturen auch auf dem Modell gedruckt." +msgctxt "travel label" +msgid "Travel" +msgstr "Bewegungen" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Beschleunigung Bewegung" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Umgehungsabstand Bewegung" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Ruckfunktion Bewegung" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegungsgeschwindigkeit" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Behandelt das Modell nur als Oberfläche, Volumen oder Volumen mit losen Oberflächen. Der Normaldruck-Modus druckt nur umschlossene Volumen. „Oberfläche“ druckt eine einzelne Wand und verfolgt die Mesh-Oberfläche ohne Füllung und ohne obere/untere Außenhaut. „Beide“ druckt umschlossene Volumen wie üblich und alle verbleibenden Polygone als Oberflächen." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Tree" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexagon" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Dreiecke" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Stammdurchmesser" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Überlappende Volumen vereinen" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Wände ohne Stützstruktur, die kürzer als dieser Wert sind, werden mit normalen Wandeinstellungen gedruckt. Längere Wände ohne Stützstruktur werden mithilfe der Brückenwandeinstellungen gedruckt." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Anpassschichten verwenden" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Verwendung von Pfeilern" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Verwenden Sie eine separate Beschleunigungsrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Beschleunigungswert der gedruckten Linie an der Zielposition verwendet." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Verwenden Sie eine separate Ruckrate für Bewegungen. Wenn diese Option deaktiviert ist, wird für Bewegungen der Ruckfunktionswert der gedruckten Linie an der Zielposition verwendet." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Verwenden Sie die relative Extrusion anstelle der absoluten Extrusion. Die Verwendung relativer E-Schritte erleichtert die Nachbearbeitung des G-Code. Diese Option wird jedoch nicht von allen Druckern unterstützt und kann geringfügige Abweichungen bei der Menge des abgesetzten Materials im Vergleich zu absoluten E-Schritten zur Folge haben. Ungeachtet dieser Einstellung wird der Extrusionsmodus stets auf absolut gesetzt, bevor ein G-Code-Skript ausgegeben wird." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Es werden spezielle Pfeiler verwendet, um kleine Überhänge zu stützen. Diese Pfeiler haben einen größeren Durchmesser als der von ihnen gestützte Bereich. In der Nähe des Überhangs verkleinert sich der Durchmesser der Pfeiler, was zur Bildung eines Dachs führt." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Verwenden Sie dieses Mesh, um die Füllung anderer Meshes zu ändern, mit denen es überlappt. Dabei werden Füllungsbereiche anderer Meshes mit Regionen für dieses Mesh ersetzt. Es wird empfohlen, nur eine Wand und keine obere/untere Außenhaut für dieses Mesh zu drucken." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Dieses Netz wird verwendet, um festzulegen, welche Bereiche gestützt werden sollen. Dies kann verwendet werden, um eine Stützstruktur zu errichten." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Dieses Netz wird verwendet, um festzulegen, welcher Teil des Modells als Überhang erkannt werden soll. Dies kann verwendet werden, um eine unerwünschte Stützstruktur zu entfernen." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Benutzerdefiniert" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Schrumpfungskompensation für vertikalen Skalierungsfaktor" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Vertikale Toleranz der geschnittenen (Slicing) Schichten. Die Konturen einer Schicht werden normalerweise erzeugt, indem ein Querschnitt durch die Mitte der Höhe jeder Schicht (Mitte) vorgenommen wird. Alternativ kann jede Schicht die Bereiche aufweisen, die über die gesamte Dicke der Schicht (Exklusiv) in das Volumen fallen, oder eine Schicht weist die Bereiche auf, die innerhalb der Schicht (Inklusiv) irgendwo hineinfallen. Inklusiv ermöglicht die meisten Details, Exklusiv die beste Passform und Mitte entspricht der ursprünglichen Fläche am ehesten." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Warten auf Aufheizen der Druckplatte" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Warten auf Aufheizen der Düse" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Beschleunigung Wand" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Anzahl verteilter Wände" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extruder für Wand" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wandfluss" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Ruckfunktion Wand" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Anzahl der Wandlinien" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Breite der Wandlinien" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandreihenfolge" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandgeschwindigkeit" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddicke" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Wandübergangslänge" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Wandübergangsfilter Abstand" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Wandübergangsfilter Rand" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Schwellenwinkel für Wandübergang" + +msgctxt "shell label" +msgid "Walls" +msgstr "Wände" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Wände, die über diesen Winkel hinaus hängen, werden mithilfe der Einstellungen für Winkel für überhängende Wände gedruckt. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt. Überhänge, die von Stützstrukturen gestützt werden, werden ebenfalls nicht als Überhang behandelt." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Wenn diese Option aktiviert ist, werden die Werkzeugpfade für Drucker mit Planern für fließende Bewegungen korrigiert. Kleine Bewegungen, die von der allgemeinen Werkzeugpfadrichtung abweichen, werden geglättet, um Fließbewegungen zu verbessern." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Bei Aktivierung wird die Reihenfolge, in der die Fülllinien gedruckt werden, optimiert, um die gefahrene Distanz zu reduzieren. Diese erzielte Reduzierung der Bewegung ist sehr stark von dem zu slicenden Modell, dem Füllmuster, der Dichte usw. abhängig. Beachten Sie, dass die Dauer für das Slicen bei einigen Modellen mit vielen kleinen Füllbereichen erheblich länger ausfallen kann." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Bei Aktivierung wird die Lüfterdrehzahl für die Druckkühlung für die Außenhautbereiche direkt über der Stützstruktur geändert." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Bei Aktivierung sind die Z-Naht-Koordinaten relativ zur Mitte der jeweiligen Teile. Bei Deaktivierung definieren die Koordinaten eine absolute Position auf dem Druckbett." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Bei Werten größer als Null verwenden die Combing-Fahrbewegungen, die weiter als über diese Distanz erfolgen, die Einzugsfunktion. Beim Wert Null gibt es keine Maximalstellung, und die Combing-Fahrbewegungen verwenden die Einzugsfunktion nicht." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Bei Werten größer als Null wird die Horizontalloch-Erweiterung schrittweise auf kleine Löcher angewendet (kleine Löcher werden stärker erweitert). Beim Wert Null wird die Horizontalloch-Erweiterung auf alle Löcher angewendet. Löcher, die größer als der maximale Durchmesser der Horizontalloch-Erweiterung sind, werden nicht erweitert." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Bei einem Wert größer als Null ist die Horizontalloch-Erweiterung der Versatz, der auf alle Löcher in jeder Schicht angewendet wird. Positive Werte vergrößern die Löcher, negative Werte verringern die Lochgröße. Wenn diese Einstellung aktiviert ist, kann sie mit „Maximaler Durchmesser der Horizontalloch-Erweiterung“ weiter angepasst werden." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken von Brücken-Außenhautbereichen wird mit diesem Wert multipliziert." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken von Brückenwänden wird mit diesem Wert multipliziert." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken der zweiten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Die extrudierte Materialmenge beim Drucken der dritten Brücken-Außenhautschicht wird mit diesem Wert multipliziert." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Wenn die Mindestgeschwindigkeit aufgrund der Mindestzeit für Schicht erreicht wird, wird der Druckkopf vom Druck angehoben und die zusätzliche Zeit, bis die Mindestzeit für Schicht erreicht ist, gewartet." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Wenn das Modell kleine, nur wenige Schichten hohe vertikale Lücken aufweist, sind diese normalerweise von einer Außenhaut bedeckt. Aktivieren Sie diese Einstellung, damit bei sehr kleinen Lücken keine Außenhaut gedruckt wird. Dies verkürzt die zum Drucken und Slicen benötigte Zeit, aber die Füllung bleibt der Luft ausgesetzt." + +msgctxt "wall_transition_angle description" +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 "Legt fest, ab welchem Winkel Übergänge zwischen einer geraden und einer ungeraden Anzahl von Wänden erstellt werden. Eine Keilform mit einem größeren Winkel als in dieser Einstellung erhält keine Übergänge und es werden keine Wände in der Mitte gedruckt, um den verbleibenden Raum zu füllen. Wenn diese Einstellung verringert wird, reduziert dies die Anzahl und Länge dieser Mittelwände, kann jedoch Lücken oder zu starke Extrudierungen hinterlassen." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Wenn beim Übergang zwischen verschiedenen Wänden das Teil dünner wird, wird ein bestimmter Raum zugewiesen, in dem sich die Wandlinien teilen bzw. verbinden." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Beim Abwischen wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse während der Bewegungen den Druckkörper trifft und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Nach dem Einzug wird das Druckbett gesenkt, um einen Abstand zwischen Düse und Druck herzustellen. Das verhindert, dass die Düse den Druck während der Bewegungen anschlägt und verringert die Möglichkeit, dass der Druck vom Druckbett heruntergestoßen wird." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Definiert, ob die X/Y-Distanz der Stützstruktur die Z-Distanz der Stützstruktur aufhebt oder umgekehrt. Wenn X/Y Z aufhebt, kann die X/Y-Distanz die Stützstruktur vom Modell wegschieben und damit die tatsächliche Z-Distanz zum Überhang beeinflussen. Diese Einstellung kann deaktiviert werden, indem die X/Y-Distanz um die Überhänge nicht angewendet wird." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Definiert, ob die X/Y-Koordinaten der Nullposition des Druckers in der Mitte des druckbaren Bereichs stehen." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Definiert, ob der Endanschlag der X-Achse in positiver Richtung (hohe X-Koordinate) oder negativer Richtung (niedrige X-Koordinate) liegt." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Definiert, ob der Endanschlag der Y-Achse in positiver Richtung (hohe Y-Koordinate) oder negativer Richtung (niedrige Y-Koordinate) liegt." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Definiert, ob der Endanschlag der Z-Achse in positiver Richtung (hohe Z-Koordinate) oder negativer Richtung (niedrige Z-Koordinate) liegt." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Gibt an, ob die Extruder sich ein Heizelement teilen oder jeweils über ein eigenes verfügen." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Gibt an, ob die Extruder gemeinsam eine Düse nutzen oder jeweils über eine eigene verfügen. In der Einstellung „true“ ist zu erwarten, dass das GCode-Skript „printer-start“ alle Extruder ordnungsgemäß in einem bekannten und untereinander kompatiblen Anfangszustand anordnet (Rückzugstellung; entweder Null oder mit einem nicht zurückgezogenen Filament); in diesem Fall wird die anfängliche Rückzugstellung für jeden Extruder durch den Parameter „machine_extruders_shared_nozzle_initial_retraction“ beschrieben." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Option für vorhandene beheizte Druckplatte." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Zeigt an, ob das Gerät die Temperatur im Druckraum stabilisieren kann." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Ermöglicht das Zentrieren des Objekts in der Mitte eines Druckbetts (0,0) anstelle der Verwendung eines Koordinatensystems, in dem das Objekt gespeichert war." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Für die Temperatursteuerung von Cura. Schalten Sie diese Funktion aus, um die Düsentemperatur außerhalb von Cura zu steuern." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Option zum Einfügen von Befehlen für die Druckplattentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Druckplattentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Option zum Einfügen von Befehlen für die Düsentemperatur am Start des Gcodes. Wenn der start_gcode bereits Befehle für die Düsentemperatur enthält, deaktiviert das Cura Programm diese Einstellung automatisch." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Option für das Einfügen eines G-Codes für das Abwischen der Düse zwischen den Schichten (max. einer pro Schicht). Die Aktivierung dieser Einstellung könnte das Einzugsverhalten beim Schichtenwechsel beeinflussen. Verwenden Sie bitte die Einstellungen für Abwischen bei Einzug, um das Einziehen bei Schichten zu steuern, bei denen das Skript für das Abwischen aktiv wird." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Druckplattentemperatur erreicht wurde." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Diese Funktion legt fest, ob das Filament vor dem Drucken mit einem Tropfen eingezogen wird. Wenn diese Funktion aktiviert ist, stellt der Extruder vor dem Drucken an der Düse Material bereit. Der Brim- oder Skirt-Druck kann ebenfalls als Einzug wirken; in diesem Fall kann das Ausschalten dieser Funktion Zeit einsparen." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Es wird festgelegt, ob eine Schicht für alle Modelle gleichzeitig gedruckt werden soll oder ob zuerst ein Modell fertig gedruckt wird, bevor der Druck eines weiteren begonnen wird. Der „Nacheinandermodus“ ist möglich, wenn a) nur ein Extruder aktiviert ist und b) alle Modelle voneinander getrennt sind, sodass sich der gesamte Druckkopf zwischen allen Modellen bewegen kann und alle Modelle niedriger sind als der Abstand zwischen der Düse und den X/Y-Achsen." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Zeigt optional die verschiedenen Varianten dieses Geräts an, die in separaten json-Dateien beschrieben werden." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Definiert, ob Firmware-Einzugsbefehle (G10/G11) anstelle der E-Eigenschaft in G1-Befehlen verwendet wird, um das Material einzuziehen." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Option zur Eingabe eines Befehls beim Start, um zu warten, bis die Düsentemperatur erreicht wurde." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Die Breite einer einzelnen Fülllinie." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Die Breite einer einzelnen Stützdach- oder Bodenlinie." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Die Breite einer einzelnen Linie der oberen Druckbereiche." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Die Breite einer einzelnen Linie. Generell sollte die Breite jeder Linie der Breite der Düse entsprechen. Eine leichte Reduzierung dieses Werts kann jedoch zu besseren Drucken führen." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Die Linienbreite eines einzelnen Einzugsturms." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Die Breite einer einzelnen Skirt- oder Brim-Linie." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Die Breite einer Linienbreite eines einzelnen Bodens." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Die Breite einer einzelnen Stützdachlinie." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Die Breite einer einzelnen Stützstrukturlinie." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Die Breite einer einzelnen oberen/unteren Linie." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Die Breite einer einzelnen Wandlinie für alle Wandlinien, außer der äußersten." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Die Breite einer einzelnen Wandlinie." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Die Breite der Linien in der Raft-Basisschicht. Dabei sollte es sich um dicke Linien handeln, da diese besser an der Druckplatte haften." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Die Breite der Linien im Raft-Mittelbereich. Wenn die zweite Schicht mehr extrudiert, haften die Linien besser an der Druckplatte." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Die Breite der Linien in der Raft-Oberfläche. Dünne Linien sorgen dafür, dass die Raft-Oberfläche glatter wird." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Die Breite der äußersten Wandlinie. Indem dieser Wert reduziert wird, können höhere Detaillierungsgrade erreicht werden." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Breite der Wand, die dünne Merkmale (entsprechend der Mindest-Merkmalgröße) des Modells ersetzen wird. Wenn die Mindeststärke der Wandlinie dünner ist als die Stärke des Merkmals, wird die Wand so dick wie das Merkmal selbst." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-Position für Bürste - Abwischen" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprunghöhe - Abwischen" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Wipe-Düse am Einzugsturm inaktiv" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Abstand Wischbewegung" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Düse zwischen den Schichten abwischen" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Abwischen pausieren" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Wiederholungszähler - Abwischen" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Einzugsabstand für Abwischen" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Abwischen bei Einzug aktivieren" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Zusätzliche Zurückschiebemenge nach Einzug für Abwischen" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vorbereitungszeit für Abwischen beim Einzug" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Einzugsgeschwindigkeit (Einzug) für Abwischen" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Einzugsgeschwindigkeit für Abwischen" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Z-Sprung beim Abwischen" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Z-Sprung Höhe - Abwischen" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Innerhalb der Füllung" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Mit aktivem Werkzeug schreiben, nach dem temporäre Befehle an das inaktive Werkzeug übermittelt wurden. Erforderlich für Dual-Extruder-Druck mit Smoothie oder anderer Firmware mit modalen Werkzeugbefehlen." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-Endanschlag in positiver Richtung" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "X-Position, an der das Skript für Abwischen startet." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y hebt Z auf" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-Endanschlag in positiver Richtung" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-Endanschlag in positiver Richtung" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-Sprung nach Extruder-Wechsel" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z-Sprung Höhe nach Extruder-Wechsel" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z-Sprung Höhe" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-Sprung nur über gedruckten Teilen" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Sprunghöhe Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-Sprung beim Einziehen" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Justierung der Z-Naht" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position der Z-Naht" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Realitvwert der Z-Naht" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-Naht X" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-Naht Y" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z hebt X/Y auf" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" + +msgctxt "travel description" +msgid "travel" +msgstr "Bewegungen" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "Ob die Kühlventilatoren während eines Düsenwechsels aktiviert werden sollen. Dies kann helfen, das Auslaufen zu reduzieren, indem die Düse schneller gekühlt wird:
  • Unverändert: Lassen Sie die Ventilatoren wie zuvor
  • Nur letzter Extruder: Schalten Sie den Ventilator des zuletzt verwendeten Extruders ein, aber die anderen aus (falls vorhanden). Dies ist nützlich, wenn Sie völlig separate Extruder haben.
  • Alle Ventilatoren: Schalten Sie alle Ventilatoren während des Düsenwechsels ein. Dies ist nützlich, wenn Sie einen einzelnen Kühllüfter oder mehrere Lüfter haben, die nahe beieinander stehen.
" + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Alle Lüfter" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Kühlung während des Extruderwechsels" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Verwalten Sie die räumliche Beziehung zwischen der Z-Naht der Stützstruktur und dem eigentlichen 3D-Modell. Diese Steuerung ist entscheidend, da sie es Benutzern ermöglicht, die nahtlose Entfernung von Stützstrukturen nach dem Drucken sicherzustellen, ohne Schäden zu verursachen oder Spuren auf dem gedruckten Modell zu hinterlassen." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Min. Z-Naht-Abstand vom Modell" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Multiplikator für die Füllung der ersten Schichten der Stütze. Eine Erhöhung dieses Wertes kann die Haftung des Bettes verbessern." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Nur letzter Extruder" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Platzieren Sie die Z-Naht auf einem Polygonscheitelpunkt. Wenn Sie dies ausschalten, können Sie die Naht auch zwischen Scheitelpunkten platzieren. (Beachten Sie, dass dies nicht die Beschränkungen für die Platzierung der Naht auf einem nicht unterstützten Überhang aufhebt)." + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Mindeststärke der Schale des Prime Tower" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Raft-Basisfluss" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Raft-Basis-Füllüberlappung" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Raft-Basis-Füllüberlappungsprozentsatz" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Raft-Fluss" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Raft-Schnittstellenfluss" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Raft-Schnittstellen-Füllüberlappung" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Raft-Schnittstellen-Füllüberlappungsprozentsatz" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Raft-Schnittstellen-Z-Versatz" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Raft-Oberflächenfluss" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Raft-Oberflächen-Füllüberlappung" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Raft-Oberflächen-Füllüberlappungsprozentsatz" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Raft-Oberflächen-Z-Versatz" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Winkel überhängender Nahtwand" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Stützen-Fülldichtemultiplikator-Anfangsschicht" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Stützen-Z-Naht vom Modell weg" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie während des Drucks der Raftbasis extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie während des Drucks der Raft-Oberfläche extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie beim Bedrucken des Rafts extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Die Materialmenge, die im Vergleich zu einer normalen Extrusionslinie während des Drucks der Floßoberfläche extrudiert wird. Ein erhöhter Durchfluss kann die Haftung und die strukturelle Festigkeit des Rafts verbessern." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden des Raftbodens, als Prozentsatz der Breite der Fülllinie. Eine geringe Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden des Raftbodens. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden der Raft-Schnittstelle, in Prozent der Breite der Füllungslinie. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden an der Raft-Schnittstelle. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden der Raft-Oberfläche als Prozentsatz der Fülllinienbreite. Eine leichte Überlappung einen festen Anschluss der Wände an die Füllung." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Der Überlappungsgrad zwischen der Füllung und den Wänden an der Raft-Schnittstelle. Eine leichte Überlappung ermöglicht einen festen Anschluss der Wände an die Füllung." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "Der Abstand zwischen dem Modell und seiner Stützstruktur an der Z-Achsen-Naht." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "Die Mindestdicke der Prime-Tower-Hülle. Sie können sie erhöhen, um den Prime-Tower stärker zu machen." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Versuchen Sie, Nähte an Wänden zu vermeiden, die mehr als diesen Winkel überhängen. Wenn der Wert 90 beträgt, werden keine Wände als überhängend behandelt." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Unverändert" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Beim Drucken der ersten Schicht der Raft-Schnittstelle verschieben Sie um diesen Versatz, um die Haftung zwischen Basis und Schnittstelle anzupassen. Ein negativer Versatz sollte die Haftung verbessern." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Beim Drucken der ersten Schicht der Raft-Oberfläche verschieben Sie um diesen Versatz, um die Haftung zwischen Schnittstelle und Oberfläche anzupassen. Ein negativer Versatz sollte die Haftung verbessern." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Z-Naht auf Scheitelpunkt" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Fügen Sie zusätzliche Linien in das Füllmuster ein, um darüber liegende Schichten zu stützen. Diese Option verhindert Löcher oder Kunststoffklumpen, die manchmal bei komplex geformten Schichten auftreten, weil die darunter liegende Füllung die darüber liegende Schicht nicht richtig stützt. „Walls\" (Wände) unterstützt nur die Umrisse der Schicht, während „Walls and Lines\" (Wände und Linien) auch die Enden der Linien unterstützt, aus denen die Schicht besteht." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Gebläsegeschwindigkeit in der Höhe aufbauen" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Gebläsegeschwindigkeit in der Schicht aufbauen" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Volumen-Gebläsezahl aufbauen" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Bestimmt die Länge jedes Schritts bei der Änderung des Flusses beim Extrudieren entlang der Kappnaht. Ein kleinerer Abstand führt zu einem präziseren, aber auch komplexeren G-Code." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Bestimmt die Länge der Kappnaht, einer Nahtart, die die Z-Naht weniger sichtbar machen sollte. Muss höher als 0 sein, um wirksam zu sein." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Zusätzliche Fülllinien zur Unterstützung von Schichten" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Sukzessiver Durchfluss aktiviert" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Keine" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Beschleunigung der Außenwand" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Verlangsamung der Außenwand" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Endgeschwindigkeitsverhältnis der Außenwand" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Geschwindigkeitsaufteilung der Außenwand" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Anfangsgeschwindigkeitsverhältnis der Außenwand" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Durchflussdauer zurücksetzen" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Kappnahtlänge" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Kappnaht-Starthöhe" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Kappnaht-Schrittlänge" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Die Höhe, auf der sich die Lüfter bei normaler Lüftergeschwindigkeit drehen. Bei den Schichten darunter erhöht sich die Lüftergeschwindigkeit allmählich von der anfänglichen Lüftergeschwindigkeit bis zur normalen Lüftergeschwindigkeit." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "Die Schicht, bei der sich die Lüfter des Druckers mit voller Lüftergeschwindigkeit drehen. Dieser Wert wird berechnet und auf eine ganze Zahl gerundet." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "Die Nummer des Lüfters, der das Druckvolumen kühlt. Wenn dieser Wert auf 0 gesetzt ist, bedeutet dies, dass es keinen Lüfter für das Druckvolumen gibt" + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "Das Verhältnis der ausgewählten Schichthöhe, bei der die Kappnaht beginnt. Eine niedrigere Zahl führt zu einer größeren Nahthöhe. Muss niedriger als 100 sein, um wirksam zu sein." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Dies ist die Beschleunigung, mit der die Höchstgeschwindigkeit beim Drucken einer Außenwand erreicht wird." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Dies ist die Verlangsamung, mit der der Druck einer Außenwand beendet wird." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Dies ist die maximale Länge eines Extrusionspfads beim Aufteilen eines längeren Pfads, um die Beschleunigung/Verlangsamung der Außenwand anzuwenden. Ein kleinerer Abstand erzeugt einen präziseren, aber auch ausführlicheren G-Code." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Dies ist das Verhältnis der Höchstgeschwindigkeit zum Ende beim Drucken einer Außenwand." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Dies ist das Verhältnis der Höchstgeschwindigkeit zu Beginn des Drucks einer Außenwand." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Nur Wände" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Wände und Linien" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Wände, die über diesen Winkel hinaus überhängen, werden mit den Einstellungen für überhängende Wände gedruckt. Bei einem Wert von 90 werden keine Wände als überhängend behandelt. Ein Überhang, der von einer Stütze gestützt wird, wird ebenfalls nicht als Überhang behandelt. Darüber hinaus wird auch jede Linie, die weniger als halb überhängt, nicht als Überhang behandelt." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Eine Liste ganzzahliger Linienrichtungen, die verwendet werden, wenn die unteren Oberflächenschichten die Linien oder das Zickzackmuster verwenden. Die Elemente aus der Liste werden nacheinander verwendet, wenn die Schichten fortschreiten, und wenn das Ende der Liste erreicht ist, beginnt es wieder am Anfang. Die Listenelemente sind durch Kommas getrennt und die gesamte Liste ist in eckigen Klammern enthalten. Standardmäßig ist eine leere Liste vorhanden, was bedeutet, dass die herkömmlichen Standardwinkel (45 und 135 Grad) verwendet werden." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Untere Oberfläche Innenwand Beschleunigung" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Bodenfläche Innenwand Ruck" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Bodenfläche Innenwand Geschwindigkeit" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Bodenfläche Innenwand/Innenwände Durchfluss" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Bodenfläche Außenwand Beschleunigung" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Bodenfläche Außenwand Durchfluss" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Bodenfläche Außenwand Ruck" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Bodenfläche Außenwand Geschwindigkeit" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Bodenfläche Skin Beschleunigung" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Bodenfläche Skin Extruder" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Bodenfläche Skin Durchfluss" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Bodenfläche Skin Ruck" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Bodenfläche Skin Schichten" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Untere Oberfläche Skin Line Richtungen" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Untere Oberfläche Skin Line Breite" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Untere Oberfläche Skin Muster" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Untere Oberfläche Skin Geschwindigkeit" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Konzentrischer" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Extruder" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Flusskompensation an den Wandlinien der unteren Oberfläche für alle Wandlinien außer der äußersten." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Flusskompensation an den Linien der Bereiche am unteren Rand des Drucks." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Flusskompensation an der äußersten Wandlinie der unteren Oberfläche." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Inside Travel Abstand vermeiden" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Linien" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Minimale Schichtzeit mit Überhang" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Minimale Überhangsegmentlänge" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Monotone Bodenflächenreihenfolge" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Verzögerung am Ende der Außenwand" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Beschleunigung für den Start der Außenwand" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Geschwindigkeiten überhängender Wände" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Überhängende Wände werden mit einem Prozentsatz ihrer normalen Druckgeschwindigkeit gedruckt. Sie können mehrere Werte angeben, sodass noch mehr überhängende Wände noch langsamer gedruckt werden, z. B. durch die Einstellung [75, 50, 25]" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Druckvorschubfaktor" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Druckkern" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Drucken Sie die unteren Oberflächenlinien in einer Reihenfolge, die bewirkt, dass sie sich immer mit benachbarten Linien in einer einzigen Richtung überlappen. Dies dauert etwas länger, lässt aber flache Oberflächen gleichmäßiger aussehen." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "Start GCode ist zuerst erforderlich" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "Die Beschleunigung, mit der die unteren Oberflächenschichten gedruckt werden." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "Die Beschleunigung, mit der die Innenwände der unteren Oberfläche gedruckt werden." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "Die Beschleunigung, mit der die äußersten Wände der Bodenfläche gedruckt werden." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "Die Abmessungen des Druckkopfes, der zur Bestimmung des „sicheren Modellabstands\" beim Drucken von „One at a Time\" verwendet wird. Diese Zahlen beziehen sich auf die Mittellinie der ersten Extruderdüse. Links von der Düse befindet sich „X Min\" und muss negativ sein. Die Rückseite der Düse ist „Y Min\" und muss negativ sein. X Max (rechts) und Y Max (vorne) sind positive Zahlen. Die Gantry-Höhe ist die Abmessung von der Bauplatte bis zum X-Gantry-Träger." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "Der Abstand zwischen der Düse und den bereits gedruckten Außenwänden bei der Bewegung innerhalb eines Modells." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "Der Extruderzug, der für den Druck der untersten Haut verwendet wird. Dieser wird bei der Multiextrusion verwendet." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "Die maximale momentane Geschwindigkeitsänderung, mit der die unteren Skin-Schichten gedruckt werden." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "Die maximale momentane Geschwindigkeitsänderung, mit der die Innenwände der Bodenfläche gedruckt werden." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "Die maximale momentane Geschwindigkeitsänderung, mit der die äußersten Wände der Bodenfläche gedruckt werden." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Die Mindestzeit, die in einer Schicht verbracht wird, die überhängende Extrusionen enthält. Dadurch wird der Drucker gezwungen, langsamer zu werden, um mindestens die hier eingestellte Zeit in einer Schicht zu verbringen. Dadurch kann das gedruckte Material vor dem Drucken der nächsten Schicht richtig abkühlen. Schichten können immer noch kürzer als die minimale Schichtzeit dauern, wenn der Lift Head deaktiviert ist und die Mindestgeschwindigkeit sonst verletzt würde." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "Die Anzahl der untersten Skin-Schichten. Normalerweise reicht nur eine unterste Schicht aus, um eine höhere Qualität der unteren Oberflächen zu erzielen." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "Das Muster der untersten Schichten." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "Die Geschwindigkeit, mit der die unteren Skin-Schichten gedruckt werden." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "Die Geschwindigkeit, mit der die Innenwände der unteren Oberfläche gedruckt werden." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "Die Geschwindigkeit, mit der die äußerste Wand der unteren Oberfläche gedruckt wird." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Diese Einstellung steuert, ob der Start-G-Code immer der erste G-Code sein muss. Ohne diese Option kann anderer G-Code, wie z. B. ein T0, vor dem Start-G-Code eingefügt werden." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Tuning-Faktor für Druckvorschub, der die Extrusion mit der Bewegung synchronisieren soll" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Beim Versuch, die minimale Schichtzeit für überhängende Schichten anzuwenden, wird sie nur angewendet, wenn mindestens eine aufeinanderfolgende überhängende Extrusionsbewegung länger als dieser Wert ist." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Breite einer einzelnen Zeile der Bereiche am unteren Rand des Drucks." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zickzack" diff --git a/resources/i18n/de_DE/gradual_flow_settings.def.json.po b/resources/i18n/de_DE/gradual_flow_settings.def.json.po deleted file mode 100644 index 59cd3825c1..0000000000 --- a/resources/i18n/de_DE/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: de_DE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Sukzessiver Durchfluss aktiviert" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Aktivieren Sie sukzessive Durchflussänderungen. Wenn diese Option aktiviert ist, wird der Durchfluss sukzessiv auf den angestrebten Durchfluss erhöht/verringert. Dies ist nützlich für Drucker mit einem Bowdenschlauch, bei denen der Durchfluss nicht sofort geändert wird, wenn der Extrudermotor startet/stoppt." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale Beschleunigung bei sukzessivem Durchfluss" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale Beschleunigung für sukzessive Durchflussänderungen" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale Durchflussbeschleunigung bei der Anfangsschicht" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Mindestgeschwindigkeit für sukzessive Durchflussänderungen bei der Anfangsschicht" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Umfang des Diskretisierungsvorgangs bei sukzessivem Durchfluss" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Dauer jedes Schritts bei der sukzessiven Durchflusssänderung" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Durchflussdauer zurücksetzen" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Für jede Verfahrbewegung, die länger als dieser Wert ist, wird der Materialfluss auf den Sollwegfluss zurückgesetzt." diff --git a/resources/i18n/es_ES/cura.po b/resources/i18n/es_ES/cura.po index 1895ad9bfb..a5aac3a1a4 100644 --- a/resources/i18n/es_ES/cura.po +++ b/resources/i18n/es_ES/cura.po @@ -170,6 +170,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Archivo 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Lector de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Escritor de 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "El complemento del Escritor de 3MF está dañado." @@ -245,6 +253,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Archivo AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Lector de AMF" + msgctxt "@label" msgid "Abort" msgstr "Cancelar" @@ -281,6 +293,10 @@ msgctxt "@button" msgid "Accept" msgstr "Aceptar" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." + msgctxt "@label" msgid "Account synced" msgstr "Cuenta sincronizada" @@ -421,6 +437,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir el envío de datos anónimos" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite cargar y visualizar archivos GCode." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Preguntar siempre" @@ -577,6 +597,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Realizar copia de seguridad y restablecer configuración" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Realice una copia de seguridad de su configuración y restáurela." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Realice copias de seguridad y sincronice los ajustes y complementos de sus materiales" @@ -749,6 +773,14 @@ msgctxt "@label" msgid "Checking..." msgstr "Comprobando..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Busca actualizaciones de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." @@ -829,6 +861,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Archivo GCode comprimido" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lector de GCode comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Escritor de GCode comprimido" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Cambios de configuración" @@ -901,6 +941,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Conectado mediante cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulte en la Comunidad UltiMaker." @@ -1036,6 +1080,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Cree proyectos de impresión en Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Creando copia de seguridad..." @@ -1048,10 +1096,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Copias de seguridad de Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Copias de seguridad de Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil de cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lector de perfiles de Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Escritor de perfiles de Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Archivo 3MF del proyecto de Cura" @@ -1081,6 +1141,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versión de Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Backend de CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "Flujo gradual de CuraEngine" + msgctxt "@label" msgid "Currency:" msgstr "Moneda:" @@ -1365,6 +1437,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Habilitado" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "Finalizar GCode" @@ -1453,6 +1529,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Amplíe UltiMaker Cura con complementos y perfiles de materiales." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" + msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -1601,6 +1681,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Actualización del firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Buscador de actualizaciones de firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Actualizador de firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "No se puede actualizar el firmware porque la conexión con la impresora no permite actualizaciones de firmware." @@ -1700,6 +1788,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Archivo GCode" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lector de perfiles GCode" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lector de GCode" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Escritor de GCode" + msgctxt "@label" msgid "G-code flavor" msgstr "Tipo de GCode" @@ -1848,6 +1948,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Si la impresora no aparece en la lista, lea la guía de solución de problemas de impresión y red" +msgctxt "name" +msgid "Image Reader" +msgstr "Lector de imágenes" + msgctxt "@action:button" msgid "Import" msgstr "Importar" @@ -2132,6 +2236,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista del lado izquierdo" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lector de perfiles antiguos de Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe a los desarrolladores de que algo no funciona bien." @@ -2212,6 +2320,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Registros" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Se ha perdido la conexión con la impresora" @@ -2220,6 +2332,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Ajustes de la máquina" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Acción Ajustes de la máquina" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Máquinas" @@ -2236,6 +2352,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Archivo de impresión Makerbot" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Escritor de archivos de impresión Makerbot" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter no pudo guardar en la ruta designada." @@ -2292,6 +2412,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gestionar los complementos y los perfiles de materiales de UltiMaker Cura aquí. Asegúrese de mantener los complementos actualizados y hacer una copia de seguridad de su configuración regularmente." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestiona las conexiones de red de las impresoras UltiMaker conectadas." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" @@ -2304,6 +2432,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2320,6 +2452,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Color del material" +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfiles de material" + msgctxt "@label" msgid "Material Type" msgstr "Tipo de material" @@ -2364,6 +2500,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modo" +msgctxt "name" +msgid "Model Checker" +msgstr "Comprobador de modelos" + msgctxt "@info:title" msgid "Model Errors" msgstr "Errores de modelo" @@ -2380,6 +2520,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Supervisar" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de supervisión" + msgctxt "@action:button" msgid "Monitor print" msgstr "Supervisar la impresión" @@ -2821,6 +2965,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Ajustes por modelo" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Herramienta de ajustes por modelo" + msgid "Perspective" msgstr "Perspectiva" @@ -2946,6 +3094,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Posprocesamiento" +msgctxt "name" +msgid "Post Processing" +msgstr "Posprocesamiento" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Complemento de posprocesamiento" @@ -2962,6 +3114,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparación" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparando..." @@ -2982,6 +3138,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Vista previa" +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de vista previa" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre auxiliar" @@ -3226,6 +3386,106 @@ msgctxt "@label" msgid "Properties" msgstr "Propiedades" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Proporciona opciones a la máquina para actualizar el firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Proporciona una fase de supervisión en Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Proporciona una vista de malla sólida normal." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Proporciona una fase de preparación en Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Proporciona una fase de vista previa en Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Permite leer y escribir perfiles de material basados en XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Proporciona asistencia para exportar perfiles de Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Proporciona asistencia para la importación de perfiles de Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Proporciona asistencia para leer archivos 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Proporciona asistencia para leer archivos AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Proporciona asistencia para leer archivos X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Proporciona asistencia para leer archivos 3D." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Permite escribir archivos 3MF y UCP." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Proporciona soporte para escribir paquetes de formato MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite la escritura de paquetes de formato Ultimaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Proporciona los ajustes por modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Proporciona la vista de rayos X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Proporciona la vista previa de los datos de las capas cortadas." + msgctxt "@label" msgid "PyQt version" msgstr "Versión PyQt" @@ -3262,6 +3522,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Salir de %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lee GCode de un archivo comprimido." + msgctxt "@button" msgid "Recommended" msgstr "Recomendado" @@ -3314,6 +3578,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unidad extraíble" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Complemento de dispositivo de salida de unidad extraíble" + msgctxt "@action:button" msgid "Remove" msgstr "Eliminar" @@ -3594,6 +3862,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviando materiales a la impresora" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Registro de Sentry" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicación en serie" @@ -3802,6 +4074,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Inicie sesión en la plataforma UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Vista de simulación" + msgctxt "@tooltip" msgid "Skin" msgstr "Forro" @@ -3830,6 +4106,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Segmentar automáticamente al cambiar los ajustes." +msgctxt "name" +msgid "Slice info" +msgstr "Info de la segmentación" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Error en el corte" @@ -3846,6 +4126,10 @@ msgctxt "@label" msgid "Solid" msgstr "Sólido" +msgctxt "name" +msgid "Solid View" +msgstr "Vista de sólidos" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista de sólidos" @@ -3940,6 +4224,10 @@ msgctxt "@label" msgid "Strength" msgstr "Resistencia" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "El material se ha exportado correctamente a %1" @@ -3984,6 +4272,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Bloqueador de soporte" +msgctxt "name" +msgid "Support Eraser" +msgstr "Borrador de soporte" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Relleno de soporte" @@ -4501,6 +4793,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Se ha intentado restaurar una copia de seguridad de Cura sin tener los datos o metadatos adecuados." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lector Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Solución de problemas" @@ -4521,10 +4817,22 @@ msgctxt "@label" msgid "Type" msgstr "Tipo" +msgctxt "name" +msgid "UFP Reader" +msgstr "Lector de UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Escritor de UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impresión USB" +msgctxt "name" +msgid "USB printing" +msgstr "Impresión USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Cuenta de UltiMaker" @@ -4541,6 +4849,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Paquete de formato UltiMaker" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Conexión en red de UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Paquete verificado por UltiMaker" @@ -4549,6 +4861,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Complemento verificado por UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acciones de la máquina UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Impresoras UltiMaker" @@ -4561,6 +4877,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "No se puede añadir el perfil." @@ -4734,6 +5054,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Actualizando..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Actualiza las configuraciones de Cura 5.6 a Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Cargar firmware personalizado" @@ -4770,6 +5198,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Valor" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Actualización de la versión 2.1 a la 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Actualización de la versión 2.2 a la 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Actualización de la versión 2.5 a la 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Actualización de la versión 2.6 a la 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Actualización de la versión 2.7 a la 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Actualización de la versión 3.0 a la 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Actualización de la versión 3.2 a la 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Actualización de la versión 3.3 a la 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Actualización de la versión 3.4 a la 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Actualización de la versión 3.5 a la 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Actualización de la versión 4.0 a la 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Actualización de la versión 4.1 a la 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Actualización de la versión 4.11 a 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Actualización de la versión 4.3 a la 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Actualización de la versión 4.2 a la 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Actualización de la versión 4.3 a la 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Actualización de la versión 4.4 a la 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Actualización de la versión 4.5 a la 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Actualización de la versión 4.6.0 a la 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Actualización de la versión 4.6.2 a la 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Actualización de la versión 4.7 a la 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Actualización de la versión 4.8 a la 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Actualización de la versión 4.9 a la 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Actualización de la versión 5.2 a la 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Actualización de versión 5.3 a 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Actualización de versión 5.4 a 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Actualización de la versión 5.6 a la 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impresoras en Digital Factory" @@ -4886,6 +5422,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Anchura (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Escribe GCode en un archivo comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Escribe GCode en un archivo." + msgctxt "@label" msgid "X (Width)" msgstr "X (anchura)" @@ -4898,6 +5442,10 @@ msgctxt "@label" msgid "X min" msgstr "X mín" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista de rayos X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista de rayos X" @@ -4910,6 +5458,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Archivo X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lector de X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (profundidad)" @@ -5055,554 +5607,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Error al descargar los complementos {}" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestiona las conexiones de red con las impresoras en red UltiMaker." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Conexión en red de UltiMaker" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Proporciona asistencia para la importación de perfiles de archivos GCode." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lector de perfiles GCode" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Proporciona una vista de malla sólida normal." - -msgctxt "name" -msgid "Solid View" -msgstr "Vista de sólidos" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento de CuraEngine para suavizar gradualmente el flujo con el fin de limitar los saltos de flujo elevados" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "Flujo gradual de CuraEngine" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Proporciona asistencia para leer archivos 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lector de 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Acepta GCode y lo envía a una impresora. El complemento también puede actualizar el firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impresión USB" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Busca actualizaciones de firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Buscador de actualizaciones de firmware" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestiona las extensiones de la aplicación y permite navegar por las extensiones desde el sitio web de UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Realice una copia de seguridad de su configuración y restáurela." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Copias de seguridad de Cura" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permite cambiar los ajustes de la máquina (como el volumen de impresión, el tamaño de la tobera, etc.)." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Acción Ajustes de la máquina" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Actualiza la configuración de Cura 2.5 a Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Actualización de la versión 2.5 a la 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Actualiza la configuración de Cura 4.7 a Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Actualización de la versión 4.7 a la 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Actualiza la configuración de Cura 4.4 a Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Actualización de la versión 4.4 a la 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Actualiza la configuración de Cura 3.0 a Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Actualización de la versión 3.0 a la 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Actualiza la configuración de Cura 4.11 a Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Actualización de la versión 4.11 a 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Actualiza la configuración de Cura 4.1 a Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Actualización de la versión 4.1 a la 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Actualiza la configuración de Cura 2.6 a Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Actualización de la versión 2.6 a la 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Actualiza la configuración de Cura 4.6.0 a Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Actualización de la versión 4.6.0 a la 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Actualiza la configuración de Cura 3.3 a Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Actualización de la versión 3.3 a la 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Actualiza la configuración de Cura 4.8 a Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Actualización de la versión 4.8 a la 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Actualiza la configuración de Cura 4.5 a Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Actualización de la versión 4.5 a la 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Actualiza la configuración de Cura 4.2 a Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Actualización de la versión 4.2 a la 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Actualiza la configuración de Cura 3.2 a Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Actualización de la versión 3.2 a la 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Actualiza la configuración de Cura 4.3 a Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinación no recomendada. Cargue el núcleo BB a la ranura 1 (izquierda) para que sea más fiable." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Actualización de la versión 4.3 a la 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Actualiza las configuraciones de Cura 5.6 a Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "\"Printfile\" de bocetos de \"Markerbot\"" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Actualización de la versión 5.6 a la 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Buscar impresora" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Actualiza las configuraciones de Cura 2.1 a Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Este es un archivo de proyectos Cura Universal. ¿Quiere abrirlo como Proyecto Cura Universal o importar los modelos a partir de él?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Actualización de la versión 2.1 a la 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportar paquete para asistencia técnica" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Actualiza las configuraciones de Cura 5.3 a Cura 5.4." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "No se han podido enviar los datos del modelo al motor. Vuelva a intentarlo o póngase en contacto con el servicio de asistencia." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Actualización de versión 5.3 a 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Imposible enviar los datos del modelo al motor. Intente utilizar un modelo menos detallado o reduzca el número de instancias." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Actualiza la configuración de Cura 4.9 a Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Actualiza las configuraciones de Cura 5.8 a Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Actualización de la versión 4.9 a la 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Actualiza la configuración de Cura 2.7 a Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Actualización de la versión 5.8 a 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Actualización de la versión 2.7 a la 3.0" +msgid "3DConnexion mouses" +msgstr "Ratones de conexión 3D" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Actualiza la configuración de Cura 3.5 a Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Siempre trabaja con ratones 3D dentro de Cura." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Actualización de la versión 3.5 a la 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Duración del cambio del extrusor" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Actualiza la configuración de Cura 5.2 a Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "G-code de prearranque de extrusor" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Actualización de la versión 5.2 a la 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Girar eje Y de la herramienta manual del modelo (precisa de reinicio)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Actualiza la configuración de Cura 4.0 a Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Licencia para %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Actualización de la versión 4.0 a la 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Archivo de impresión Replicator+ Makerbot" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Actualiza las configuraciones de Cura 4.13 a Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "¿Debería girarse el eje Y de la herramienta manual de conversión? Esto solo afectará a la coordenada Y del modelo; todos los demás ajustes, como por ejemplo los ajustes de Printhead de máquina, no se verán afectados y funcionarán como antes." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Actualización de la versión 4.3 a la 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Actualiza las configuraciones de Cura 3.4 a Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Actualización de la versión 3.4 a la 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Actualiza la configuración de Cura 2.2 a Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "Primero debe ir el GCode de inicio" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Actualización de la versión 2.2 a la 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Esta configuración no está disponible porque hay una falta de coincidencia y otro problema con el tipo de núcleo %1. Visite la página de asistencia para comprobar qué núcleos admite este tipo de impresora con relación a nuevas partes." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Actualiza la configuración de Cura 4.6.2 a Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Configuraciones de actualizaciones de Cura 5.9 a Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Actualización de la versión 4.6.2 a la 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Actualización de la versión 5.9 a 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Actualiza las configuraciones de Cura 5.4 a Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Actualización de versión 5.4 a 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite cargar y visualizar archivos GCode." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lector de GCode" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y máx ( '+' hacia delante)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envía información anónima de la segmentación. Se puede desactivar en las preferencias." - -msgctxt "name" -msgid "Slice info" -msgstr "Info de la segmentación" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Proporciona asistencia para la conexión directa y la escritura de la unidad extraíble." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Complemento de dispositivo de salida de unidad extraíble" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una malla de borrado que impide la impresión de soportes en determinados lugares" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Borrador de soporte" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Comprueba las configuraciones de los modelos y la impresión en busca de posibles problemas de impresión y da consejos." - -msgctxt "name" -msgid "Model Checker" -msgstr "Comprobador de modelos" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Proporciona una fase de preparación en Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparación" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Proporciona la vista previa de los datos de las capas cortadas." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vista de simulación" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Proporciona asistencia para leer archivos AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lector de AMF" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Proporciona la vista de rayos X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista de rayos X" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Proporciona opciones a la máquina para actualizar el firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Actualizador de firmware" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Proporciona asistencia para la importación de perfiles de versiones anteriores de Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lector de perfiles antiguos de Cura" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensión que permite el posprocesamiento de las secuencias de comandos creadas por los usuarios" - -msgctxt "name" -msgid "Post Processing" -msgstr "Posprocesamiento" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinados eventos para que puedan utilizarse en el informe del accidente" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Registro de Sentry" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Proporciona soporte para escribir paquetes de formato MakerBot." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Escritor de archivos de impresión Makerbot" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Proporciona asistencia para la importación de perfiles de Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lector de perfiles de Cura" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Proporciona soporte para la lectura de paquetes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Lector de UFP" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Habilita la capacidad de generar geometría imprimible a partir de archivos de imagen 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lector de imágenes" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Proporciona el vínculo para el backend de segmentación de CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Backend de CuraEngine" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Escribe GCode en un archivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Escritor de GCode comprimido" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Proporciona las acciones de la máquina de las máquinas Ultimaker (como un asistente para la nivelación de la plataforma, la selección de actualizaciones, etc.)." - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acciones de la máquina UltiMaker" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lee GCode de un archivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lector de GCode comprimido" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Proporciona una fase de vista previa en Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de vista previa" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se conecta a la biblioteca digital, por lo que Cura puede abrir y guardar archivos en ella." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Proporciona asistencia para exportar perfiles de Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Escritor de perfiles de Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Proporciona asistencia para leer archivos X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lector de X3D" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Proporciona asistencia para leer archivos 3D." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lector Trimesh" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Proporciona una fase de supervisión en Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de supervisión" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Proporciona los ajustes por modelo." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Herramienta de ajustes por modelo" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Permite leer y escribir perfiles de material basados en XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfiles de material" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Permite escribir archivos 3MF y UCP." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Escritor de 3MF" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite la escritura de paquetes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Escritor de UFP" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Escribe GCode en un archivo." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Escritor de GCode" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y mín ( '+' hacia atrás)" diff --git a/resources/i18n/es_ES/fdmextruder.def.json.po b/resources/i18n/es_ES/fdmextruder.def.json.po index a8ea1ca255..4e259a01bf 100644 --- a/resources/i18n/es_ES/fdmextruder.def.json.po +++ b/resources/i18n/es_ES/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Diámetro" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilador de refrigeración de impresión del extrusor" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "GCode final del extrusor" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Finalizar GCode para ejecutarlo al cambiar desde este extrusor." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Duración del código G de fin del extrusor" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "El tiempo que tarda en ejecutarse el código G final, cuando se sale de este extrusor." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posición final absoluta del extrusor" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posición de fin del extrusor sobre el eje X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posición de fin del extrusor sobre el eje Y" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Posición de preparación del extrusor sobre el eje Z" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilador de refrigeración de impresión del extrusor" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "GCode inicial del extrusor" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Duración del código G de inicio del extrusor" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "El tiempo que tardará en ejecutarse el código G de inicio, al cambiar a este extrusor." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posición de inicio absoluta del extrusor" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Posición de inicio del extrusor sobre el eje X" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Posición de inicio del extrusor sobre el eje Y" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "La posición final del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "El extrusor se coloca en la posición de inicio absoluta según la última ubicación conocida del cabezal." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Id. de la tobera" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Posición de inicio del extrusor sobre el eje X" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Posición de inicio del extrusor sobre el eje Y" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desplazamiento de la tobera sobre el eje X" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Coordenada X del desplazamiento de la tobera." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Desplazamiento de la tobera sobre el eje Y" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Iniciar GCode para ejecutarlo al cambiar a este extrusor." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir. Se emplea en la extrusión múltiple." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Número del ventilador de refrigeración de impresión asociado al extrusor. Modifique el valor predeterminado 0 solo cuando disponga de un ventilador de refrigeración de impresión diferente para cada extrusor." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "El tiempo que tarda en ejecutarse el código G final, cuando se sale de este extrusor." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "El tiempo que tardará en ejecutarse el código G de inicio, al cambiar a este extrusor." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Coordenada X de la posición de fin cuando se apaga el extrusor." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Coordenada X del desplazamiento de la tobera." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Coordenada X de la posición de inicio cuando se enciende el extrusor." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Coordenada Y de la posición de fin cuando se apaga el extrusor." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Coordenada Y del desplazamiento de la tobera." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Coordenada Y de la posición de inicio cuando se enciende el extrusor." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longitud de la boquilla" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La diferencia de altura entre la punta de la boquilla y la parte más baja del cabezal de impresión." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Duración del cambio del extrusor" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "G-code de prearranque de extrusor" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "Prearrancar g-code para ejecutar antes de cambiar a este extrusor." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Cuando se use una configuración multiherramienta, este valor es el tiempo de cambio de herramienta en segundos. Se añadirá este valor al tiempo estimado en base al número de cambios que ocurran." diff --git a/resources/i18n/es_ES/fdmprinter.def.json.po b/resources/i18n/es_ES/fdmprinter.def.json.po index af94274b3b..fd1a7f6b55 100644 --- a/resources/i18n/es_ES/fdmprinter.def.json.po +++ b/resources/i18n/es_ES/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" +msgstr "Cómo generar la torre de imprimación:
  • Normal: cree un cubo en el que los materiales secundarios estén imprimados
  • Intercalada: cree una torre de imprimación lo más dispersa posible. Esto ahorrará tiempo y filamento, pero solo es posible si los materiales utilizados se adhieren entre sí
" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Ajustes específicos de la máquina" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de máquina" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Nombre del modelo de la impresora 3D." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar versiones de la máquina" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Iniciar GCode" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Finalizar GCode" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -" -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID del material" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID del material. Este valor se define de forma automática." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Tipo de material" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "El tipo de material utilizado." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Marca del material" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "La marca del material utilizado." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diámetro" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar a que la placa de impresión se caliente" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar a la que la tobera se caliente" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir temperaturas del material" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir temperatura de la placa de impresión" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ancho de la máquina" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ancho (dimensión sobre el eje X) del área de impresión." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidad de la máquina" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura de la máquina" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Altura (dimensión sobre el eje Z) del área de impresión." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma de la placa de impresión" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangular" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material de placa de impresión" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Material de la placa de impresión colocado en la impresora." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidrio" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminio" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tiene una placa de impresión caliente" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Indica si la máquina tiene una placa de impresión caliente." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tiene estabilización de temperatura del volumen de impresión" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Escriba siempre la herramienta activa" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie u otro firmware con comandos de herramientas modales." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "El origen está centrado" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de extrusores" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores habilitados" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diámetro exterior de la tobera" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Diámetro exterior de la punta de la tobera." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longitud de la tobera" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ángulo de la tobera" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longitud de la zona térmica" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Habilitar control de temperatura de la tobera" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidad de calentamiento" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidad de enfriamiento" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Temperatura mínima en modo de espera" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Tipo de GCode" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Tipo de GCode que se va a generar." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retracción de firmware" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Utilizar o no los comandos de retracción de firmware (G10/G11) en lugar de utilizar la propiedad E en comandos G1 para retraer el material." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Calentador compartido de extrusores" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Los extrusores comparten la tobera" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retracción inicial de tobera compartida" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas no permitidas" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas no permitidas para la tobera" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono del cabezal de la máquina y del ventilador" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura del puente" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Id. de la tobera" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diámetro de la tobera" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desplazamiento con extrusor" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posición de preparación del extrusor sobre el eje Z" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posición de preparación absoluta del extrusor" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidad máxima sobre el eje X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Velocidad máxima del motor de la dirección X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidad máxima sobre el eje Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Velocidad máxima del motor de la dirección Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidad máxima sobre el eje Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Velocidad máxima del motor de la dirección Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidad máxima E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Velocidad máxima del filamento." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleración máxima sobre el eje X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Aceleración máxima del motor de la dirección X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleración máxima de Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Aceleración máxima del motor de la dirección Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleración máxima de Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Aceleración máxima del motor de la dirección Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleración máxima del filamento" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Aceleración máxima del motor del filamento." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleración predeterminada" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Impulso X-Y predeterminado" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Impulso predeterminado para el movimiento en el plano horizontal." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Impulso Z predeterminado" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Impulso predeterminado del motor de la dirección Z." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Impulso de filamento predeterminado" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Impulso predeterminado del motor del filamento." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pasos por milímetro (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pasos por milímetro (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pasos por milímetro (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pasos por milímetro (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Tope de X en dirección positiva" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Tope de Y en dirección positiva" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Tope de Z en dirección positiva" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidad de alimentación mínima" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Velocidad mínima de movimiento del cabezal de impresión." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diámetro de la rueda del alimentador" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "El diámetro de la rueda que dirige el material hacia el alimentador." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Escale la velocidad del ventilador a 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Calidad" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altura de capa" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altura de capa inicial" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ancho de línea" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ancho de línea de pared" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ancho de una sola línea de pared." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ancho de línea de la pared exterior" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ancho de línea de pared(es) interna(s)" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ancho de línea superior/inferior" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ancho de una sola línea superior/inferior." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ancho de línea de relleno" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ancho de una sola línea de relleno." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ancho de línea de falda/borde" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ancho de una sola línea de falda o borde." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ancho de línea de soporte" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ancho de una sola línea de estructura de soporte." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ancho de línea de interfaz de soporte" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ancho de una sola línea de techo o suelo de soporte." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ancho de línea del techo de soporte" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ancho de una sola línea de techo de soporte." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ancho de línea del suelo de soporte" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ancho de una sola línea de suelo de soporte." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ancho de línea de la torre auxiliar" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ancho de una sola línea de la torre auxiliar." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ancho de línea de la capa inicial" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma." - -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -msgctxt "shell description" -msgid "Shell" -msgstr "Perímetro" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor de pared" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor de pared exterior" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor de pared interior" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Grosor de la pared" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Recuento de líneas de pared" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longitud de transición de la pared" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Recuento de distribución de pared" - -msgctxt "wall_distribution_count description" -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 "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ángulo de umbral de transición de pared" - -msgctxt "wall_transition_angle description" -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 "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distancia del filtro de transición a la pared" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margen del filtro de transición de pared" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distancia de pasada de la pared exterior" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Entrante en la pared exterior" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimizar el orden de impresión de paredes" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Orden de paredes" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina el orden de impresión de las paredes. Empezar imprimiendo las paredes exteriores ayuda a la precisión dimensional, ya que evita que los defectos de las paredes interiores se propaguen al exterior. Sin embargo, si las imprime más tarde, podrá apilarlas mejor cuando se impriman los voladizos. Cuando hay una cantidad impar de paredes interiores totales, la «última línea central» siempre se imprime en último lugar." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Del interior al exterior" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Del exterior al interior" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar pared adicional" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral uniforme" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral impar" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir paredes finas" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamaño mínimo de la característica" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Ancho mínimo de la línea perimetral delgada" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansión horizontal" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansión horizontal de la capa inicial" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansión horizontal de orificios" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diámetro máximo de la expansión horizontal de los orificios" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alineación de costuras en Z" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Especificada por el usuario" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Más corta" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatoria" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Esquina más pronunciada" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posición de costura en Z" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior izquierda" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Posterior" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior derecha" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Derecha" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Delantera derecha" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Delantera" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Delantera izquierda" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Izquierda" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X de la costura Z" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y de la costura Z" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferencia de esquina de costura" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Ninguno" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar costura" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Mostrar costura" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar o mostrar costura" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Costura inteligente" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Costuras relativas en Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior o inferior" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior o inferior" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor de la superficie superior del forro" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Capas de la superficie superior del forro" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ancho de línea de la superficie superior del forro" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ancho de una sola línea de las áreas superiores de la impresión." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patrón de la superficie superior del forro" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "El patrón de las capas de nivel superior." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Orden monotónica de la superficie superior" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direcciones de línea de la superficie superior del forro" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor superior/inferior" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Grosor superior/inferior" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Grosor superior" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Capas superiores" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Grosor inferior" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Capas inferiores" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Capas inferiores iniciales" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patrón superior/inferior" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Patrón de las capas superiores/inferiores." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Patrón inferior de la capa inicial" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Conectar polígonos superiores/inferiores" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Orden monotónica superior e inferior" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direcciones de línea superior/inferior" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Anchura superior/​inferior pequeña" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Zonas pequeñas superiores/inferiores en superficie" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sin forro en huecos en Z" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Recuento de paredes adicionales de forro" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Habilitar alisado" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Planchar solo la capa superior" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Patrón de alisado" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "El patrón que se usará para el alisado de las superficies superiores." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Orden de planchado monotónico" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Espaciado de líneas del alisado" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distancia entre las líneas del alisado." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flujo de alisado" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserción de alisado" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Un borde alrededor de un modelo puede tocar a otro modelo donde no lo desee. Esto elimina todo el borde dentro de esta distancia de los modelos sin borde." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Distancia que debe guardarse desde el borde del modelo. Si se alisa hasta el borde de la malla, puede quedar un borde irregular." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidad de alisado" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocidad a la que pasa por encima de la superficie superior." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea si las capas de la superficie superior del forro utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleración del alisado" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea si las capas superiores e inferiores utilizan líneas o el patrón en zigzag. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados)." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "La aceleración a la que se produce el alisado." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Impulso de alisado" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Cambio en la velocidad instantánea máxima durante el alisado." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Porcentaje de superposición del forro" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Superposición del forro" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Anchura de retirada del forro" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Anchura de retirada del forro superior" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Anchura de retirada del forro inferior" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distancia de expansión del forro" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distancia de expansión del forro superior" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distancia de expansión del forro inferior" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ángulo máximo de expansión del forro" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Anchura de expansión mínima del forro" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Las áreas de forro más estrechas que este valor no se expanden. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical." - -msgctxt "infill label" -msgid "Infill" -msgstr "Relleno" - -msgctxt "infill description" -msgid "Infill" -msgstr "Relleno" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor del relleno" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidad de relleno" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta la densidad del relleno de la impresión." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distancia de línea de relleno" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Patrón de relleno" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisión cúbica" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Cúbico bitruncado" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Rayos" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Conectar líneas de relleno" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Conectar polígonos de relleno" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direcciones de línea de relleno" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Una lista de los valores enteros de las direcciones de línea. Los elementos de esta lista se utilizan de forma secuencial a medida que las capas se utilizan y, cuando se alcanza el final, la lista vuelve a comenzar desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía que utiliza los ángulos predeterminados típicos (45 y 135 grados para las líneas y los patrones en zigzag y 45 grados para el resto de patrones)." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Desplazamiento del relleno sobre el eje X" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Lista de polígonos con áreas en las que la tobera no tiene permitido entrar." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Lista de polígonos con áreas que el cabezal de impresión no tiene permitido introducir." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Desplazamiento del relleno sobre el eje Y" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posición de preparación absoluta del extrusor" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Comienzo de relleno aleatorio" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variación máxima de las capas de adaptación" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Tamaño de la topografía de las capas de adaptación" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de línea de relleno" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamaño de pasos de variación de las capas de adaptación" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Recuento de líneas de pared adicional" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Agregar paredes adicionales alrededor del área de relleno. Estas paredes pueden hacer que las líneas del forro superior/inferior se aflojen menos, lo que significa que necesitaría menos capas de forro superior/inferior para obtener la misma calidad utilizando algo más de material." "Puede utilizar esta función junto a la de Conectar polígonos de relleno para conectar todo el relleno en una única trayectoria de extrusión sin necesidad de desplazamientos ni retracciones si se configura correctamente." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Perímetro de la subdivisión cúbica" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Porcentaje de superposición del relleno" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Superposición del relleno" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distancia de pasada de relleno" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Grosor de la capa de relleno" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Pasos de relleno necesarios" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura necesaria de los pasos de relleno" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Relleno antes que las paredes" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de relleno mínima" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "No genere áreas con un relleno inferior a este (utilice forro)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Soporte de relleno" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ángulo de voladizo de relleno" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espesor de soporte de los bordes del forro" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "El grosor del relleno extra que soporta los bordes del forro." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Capas de soporte de los bordes del forro" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "El número de capas de relleno que soportan los bordes del forro." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ángulo de sujeción de relleno de rayos" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ángulo del voladizo de relleno de rayos" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ángulo de recorte de relleno de rayos" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ángulo de enderezamiento de rayos" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura de impresión predeterminada" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura de volumen de impresión" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de impresión" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Temperatura de la impresión." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura de impresión de la capa inicial" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "La temperatura utilizada para imprimir la primera capa." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impresión inicial" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impresión final" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador de la velocidad de enfriamiento de la extrusión" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura predeterminada de la placa de impresión" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura de la placa de impresión" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura de la placa de impresión en la capa inicial" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adherencia" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Tendencia de adherencia" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendencia de adherencia de la superficie." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro, como un porcentaje de los anchos de las líneas del forro y la pared más profunda. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier porcentaje superior al 50 % ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energía de la superficie" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste la cantidad de superposición entre las paredes y (los extremos de) las líneas centrales del forro. Una ligera superposición permite que las paredes estén firmemente unidas al forro. Tenga en cuenta que, con un mismo ancho de la línea del forro y la pared, cualquier valor superior a la mitad del ancho de la pared ya puede provocar que cualquier forro sobrepase la pared, debido a que en ese punto la posición de la tobera del extrusor del forro ya puede sobrepasar la mitad de la pared." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energía de la superficie." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala para la compensación de la contracción" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala horizontal para la compensación de la contracción" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Factor de escala vertical para la compensación de la contracción" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material cristalino" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Velocidad de retracción antirrezumado" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidad de retracción antirrezumado" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posición retraída de preparación de rotura" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidad de retracción de preparación de rotura" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparación de rotura" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posición retraída de rotura" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidad de retracción de rotura" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de rotura" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Temperatura a la que se rompe el filamento de forma limpia." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidad de purga de descarga" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "La velocidad de cebado del material después de cambiar a otro material." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longitud de purga de descarga" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidad de purga del extremo del filamento" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longitud de purga del extremo del filamento" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duración máxima de estacionamiento" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Factor de desplazamiento sin carga" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Un factor que indica cuánto se comprime el filamento entre el alimentador y la cámara de la boquilla. Se utiliza para determinar cuán lejos debe avanzar el material para cambiar el filamento." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flujo" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flujo de pared" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensación de flujo en líneas de pared." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flujo de pared exterior" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensación de flujo en la línea de pared más externa." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flujo de pared o paredes interiores" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flujo de la pared exterior de la superficie superior" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flujo de la pared interior de la superficie superior" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flujo superior o inferior" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensación de flujo en las líneas superiores o inferiores." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flujo de forro de superficie superior" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flujo de relleno" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensación de flujo en líneas de relleno." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flujo de falda/borde" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensación de flujo en líneas de falda o borde." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flujo de soporte" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensación de flujo en líneas de estructura de soporte." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flujo de interfaz de soporte" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensación de flujo en líneas de techo o suelo de soporte." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flujo de techo de soporte" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensación de flujo en líneas de techo de soporte." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flujo de suelo de soporte" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensación de flujo en líneas de suelo de soporte." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flujo de la torre auxiliar" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensación de flujo en líneas de la torre auxiliar." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flujo de capa inicial" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Flujo de pared interior de la capa inicial" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa." - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Flujo de pared exterior de la capa inicial" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensación de flujo en la línea de pared más externa de la primera capa." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Flujo inferior de la capa inicial" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensación de flujo en las líneas inferiores de la primera capa" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura en modo de espera" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Es material de soporte" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Este material se utiliza normalmente como material de soporte durante la impresión." - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidad" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidad" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidad de impresión" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Velocidad a la que se realiza la impresión." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidad de relleno" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Velocidad a la que se imprime el relleno." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidad de pared" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Velocidad a la que se imprimen las paredes." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidad de pared exterior" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidad de pared interior" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidad de la pared externa de la superficie superior" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidad de la pared interna de la superficie superior" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidad de la superficie superior del forro" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidad superior/inferior" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Velocidad a la que se imprimen las capas superiores/inferiores." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidad de soporte" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidad de relleno del soporte" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidad de interfaz del soporte" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidad del techo del soporte" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidad del suelo del soporte" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidad de la torre auxiliar" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidad de desplazamiento" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidad de capa inicial" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidad de impresión de la capa inicial" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidad de desplazamiento de la capa inicial" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidad de falda/borde" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidad del salto en Z" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de capas más lentas" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporción de ecualización de flujo" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activar control de aceleración" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Habilitar aceleración de desplazamiento" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleración de la impresión" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Aceleración a la que se realiza la impresión." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleración del relleno" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Aceleración a la que se imprime el relleno." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleración de la pared" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Aceleración a la que se imprimen las paredes." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleración de pared exterior" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Aceleración a la que se imprimen las paredes exteriores." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleración de pared interior" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Aceleración a la que se imprimen las paredes interiores." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleración de la superficie externa superior de la pared" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleración de la superficie interna superior de la pared" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleración de la superficie superior del forro" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleración superior/inferior" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores/inferiores." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleración de soporte" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Aceleración a la que se imprime la estructura de soporte." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleración de relleno de soporte" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Aceleración a la que se imprime el relleno de soporte." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleración de interfaz de soporte" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleración del techo del soporte" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleración del suelo del soporte" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleración de la torre auxiliar" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Aceleración a la que se imprime la torre auxiliar." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleración de desplazamiento" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Aceleración a la que se realizan los movimientos de desplazamiento." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleración de la capa inicial" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Aceleración de la capa inicial." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleración de impresión de la capa inicial" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Aceleración durante la impresión de la capa inicial." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleración de desplazamiento de la capa inicial" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleración de falda/borde" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activar control de impulso" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Activar impulso de desplazamiento" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Impulso de impresión" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Impulso de relleno" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Impulso de pared" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Impulso de pared exterior" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Impulso de pared interior" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Sacudida de la pared interior de la superficie superior" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Sacudida de la pared exterior más externa de la superficie superior" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Impulso de la superficie superior del forro" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Impulso superior/inferior" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Impulso de soporte" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Impulso de relleno de soporte" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Impulso de interfaz de soporte" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Impulso del techo del soporte" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Impulso del suelo del soporte" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Impulso de la torre auxiliar" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Impulso de desplazamiento" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Impulso de capa inicial" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Impulso de impresión de capa inicial" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Impulso de desplazamiento de capa inicial" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Impulso de falda/borde" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde." - -msgctxt "travel label" -msgid "Travel" -msgstr "Desplazamiento" - -msgctxt "travel description" -msgid "travel" -msgstr "desplazamiento" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Habilitar la retracción" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retracción en el cambio de capa" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distancia de retracción" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Longitud del material retraído durante un movimiento de retracción." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidad de retracción" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidad de retracción" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Desplazamiento mínimo de retracción" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Recuento máximo de retracciones" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Ventana de distancia mínima de extrusión" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo Peinada" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Apagado" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Todo" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "No en la superficie exterior" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "No en el forro" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Sobre el relleno" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distancia de peinada máxima sin retracción" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retracción antes de la pared exterior" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Retraer siempre al desplazarse para empezar una pared exterior." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar partes impresas al desplazarse" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar soportes al desplazarse" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distancia para evitar al desplazarse" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X de inicio de capa" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y de inicio de capa" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto en Z en la retracción" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto en Z solo en las partes impresas" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura del salto en Z" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto en Z tras cambio de extrusor" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Salto en Z tras altura de cambio de extrusor" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refrigeración" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refrigeración" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activar refrigeración de impresión" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidad del ventilador" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidad normal del ventilador" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidad máxima del ventilador" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Umbral de velocidad normal/máxima del ventilador" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidad inicial del ventilador" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocidad normal del ventilador a altura" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocidad normal del ventilador por capa" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tiempo mínimo de capa" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidad mínima" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Levantar el cabezal" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de impresión de capas pequeñas" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa." - -msgctxt "support label" -msgid "Support" -msgstr "Soporte" - -msgctxt "support description" -msgid "Support" -msgstr "Soporte" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generar soporte" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor del soporte" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor del relleno de soporte" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor del soporte de la primera capa" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de la interfaz de soporte" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor del techo del soporte" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor del suelo del soporte" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estructura de soporte" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árbol" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ángulo máximo de la rama" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diámetro de la rama" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diámetro del tronco" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ángulo del diámetro de la rama" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocación del soporte" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Tocando la placa de impresión" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "En todos sitios" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ángulo de rama preferido" - -msgctxt "support_tree_angle_slow description" -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 "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento del diámetro para el modelo" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura mínima para el modelo" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diámetro de la capa inicial" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidad de la rama" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diámetro de la punta" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Alcance límite de la rama" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Espaciado óptimo de ramas" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Una recomendación de la distancia a la que pueden situarse las ramas de los puntos que sostienen. Las ramas pueden infringir este valor para llegar a su destino (placa de impresión o una pieza plana del modelo). Reducir este valor hará que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferencia de apoyo" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "En la placa de impresión, cuando sea posible" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sobre el modelo, en caso de que sea necesario" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ángulo de voladizo del soporte" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patrón del soporte" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Giroide" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Recuento de líneas de pared del soporte" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Recuento de líneas de pared de la interfaz de soporte" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Recuento de líneas de pared del techo de soporte" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Recuento de líneas de pared de la base de soporte" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Conectar líneas del soporte" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Conectar zigzags del soporte" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidad del soporte" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distancia de línea del soporte" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distancia de línea del soporte de la capa inicial" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Dirección de línea de relleno de soporte" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se usa el ángulo predeterminado de 0 grados." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Habilitar borde de soporte" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ancho del borde de soporte" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Recuento de líneas del borde de soporte" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distancia en Z del soporte" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distancia superior del soporte" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distancia desde la parte superior del soporte a la impresión." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distancia inferior del soporte" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distancia X/Y del soporte" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridad de las distancias del soporte" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y sobre Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z sobre X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distancia X/Y mínima del soporte" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura del escalón de la escalera del soporte" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Ancho máximo del escalón de la escalera del soporte" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distancia de unión del soporte" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansión horizontal del soporte" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Grosor de la capa de relleno de soporte" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Escalones de relleno de soporte" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura necesaria de los escalones de relleno de soporte" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área del soporte mínima" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Tamaño del área mínima para los polígonos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Habilitar interfaz del soporte" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Habilitar techo del soporte" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Habilitar suelo del soporte" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Grosor de la interfaz del soporte" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Grosor del techo del soporte" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Grosor del suelo del soporte" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidad de la interfaz de soporte" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta la densidad del relleno de la impresión." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Ajusta la densidad de los techos y suelos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidad del techo del soporte" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta la densidad de la estructura de soporte utilizada para generar las puntas de las ramas. Un valor más alto da como resultado mejores voladizos, pero los soportes son más difíciles de eliminar. Utilice el techo de soporte para valores muy altos o asegúrese de que la densidad del soporte sea igual de alta en la parte superior." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta la densidad de la estructura del soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distancia de línea del techo del soporte" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta el diámetro del filamento utilizado. Este valor debe coincidir con el diámetro del filamento utilizado." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidad del suelo del soporte" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distancia de línea del suelo de soporte" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patrón de la interfaz de soporte" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patrón del techo del soporte" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Patrón con el que se imprimen los techos del soporte." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patrón del suelo del soporte" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Patrón con el que se imprimen los suelos del soporte." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Líneas" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Rejilla" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triángulos" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concéntrico" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área de la interfaz de soporte mínima" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área de los techos del soporte mínima" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área de los suelos del soporte mínima" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansión horizontal de la interfaz de soporte" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansión horizontal de los techos del soporte" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Cantidad de desplazamiento aplicado a los techos del soporte." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansión horizontal de los suelos de soporte" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridad de la interfaz de soporte" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Soporte preferido" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interfaz preferida" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Líneas de soporte preferidas" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Líneas de interfaz preferidas" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambos se solapan" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direcciones de línea de interfaz de soporte" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direcciones de línea del techo de soporte" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direcciones de línea del suelo de soporte" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Una lista de los valores enteros de las direcciones de línea que se van a utilizar. Los elementos de la lista se usan secuencialmente a medida que avanzan las capas y cuando se alcanza el final de la lista, comienza de nuevo desde el principio. Los elementos de la lista están separados por comas y toda la lista aparece entre corchetes. El valor predeterminado es una lista vacía, lo que significa que se utilizan los ángulos estándar (que varían entre 45 y 135 grados si las interfaces son bastante gruesas o de 90 grados en otro caso)." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Alteración de velocidad del ventilador" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidad del ventilador para forro con soporte" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Usar torres" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diámetro de la torre" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Diámetro de una torre especial." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diámetro máximo soportado por la torre" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ángulo del techo de la torre" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malla de soporte desplegable" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La escena tiene mallas de soporte" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adherencia de la placa de impresión" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adherencia" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activar gotas de cebado" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posición de preparación del extrusor sobre el eje X" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posición de preparación del extrusor sobre el eje Y" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo adherencia de la placa de impresión" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Falda" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Borde" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Balsa" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Ninguno" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor de adherencia de la placa de impresión" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor de falda o borde" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor base de la balsa" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la primera capa de la balsa. Se emplea en la extrusión múltiple." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor medio de la balsa" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la capa media de la balsa. Se emplea en la extrusión múltiple." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusor superior de la balsa" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Recuento de líneas de falda" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura de la falda" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distancia de falda" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distancia horizontal entre la falda y la primera capa de la impresión." -"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longitud mínima de falda/borde" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ancho del borde" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Recuento de líneas de borde" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Número de líneas utilizadas para un borde. Más líneas de borde mejoran la adhesión a la plataforma de impresión, pero también reducen el área de impresión efectiva." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distancia del borde" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Sustituir soporte por borde" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Ubicación del borde" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Imprima un borde en el exterior del modelo, en el interior o en ambos. Dependiendo del modelo, esto ayuda a reducir la cantidad de borde que tendrá que retirar después, al tiempo que garantiza una correcta adherencia de la cama." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Solo exterior" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Solo interior" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "En todas partes" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Borde, evitar margen" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Un borde alrededor de un modelo puede tocar a otro modelo donde no lo desee. Esto elimina todo el borde dentro de esta distancia de los modelos sin borde." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Borde inteligente" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margen adicional de la balsa" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Margen extra de base de balsa" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la base de balsa está activada, esta es el área de balsa extra alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más fuerte, aunque utilizará más material y dejará menos superficie para su impresión." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Margen extra medio de la balsa" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si el medio de la balsa está activado, esta es el área adicional de la balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Margen extra de la parte superior de la balsa" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la parte superior de la balsa está activada, esta es el área extra de balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Quitar las esquinas internas de la balsa" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Retirar las esquinas interiores de la base de la balsa" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Retire las esquinas interiores de la base de la balsa, lo que hará que esta se vuelva convexa." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Retirar las esquinas interiores centrales de la balsa" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Retire las esquinas interiores de la parte central de la balsa, lo que hará que esta se vuelva convexa." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Retire las esquinas interiores de la parte superior de la balsa" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Retire las esquinas interiores de la parte superior de la balsa, lo que hará que esta se vuelva convexa." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavizado de la balsa" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Suavizado de la base de la balsa" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno de la base de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Suavizado medio de la balsa" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno medio de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Suavizado de la parte superior de la balsa" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno superior de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Cámara de aire de la balsa" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Superposición de las capas iniciales en Z" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Haga que la primera y la segunda capa del modelo se solapen en la dirección Z para compensar el filamento perdido en el entrehierro. Todos los modelos situados por encima de la primera capa del modelo se desplazarán hacia abajo en esta medida.\nCabe señalar que a veces la segunda capa se imprime por debajo de la capa inicial debido a este ajuste. Este es el comportamiento previsto." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Grosor de la base de la balsa" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ancho de la línea base de la balsa" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacio de la línea base de la balsa" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Capas medias de la balsa" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Grosor intermedio de la balsa" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Grosor de la capa intermedia de la balsa." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ancho de la línea intermedia de la balsa" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaciado intermedio de la balsa" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Capas superiores de la balsa" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Grosor de las capas superiores de la balsa" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Grosor de capa de las capas superiores de la balsa." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ancho de las líneas superiores de la balsa" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaciado superior de la balsa" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Orden monotónico de la superficie superior de la balsa" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Imprima las líneas de la superficie superior de la balsa en un orden que haga que siempre se solapen con las líneas adyacentes en una sola dirección. Esto lleva algo más de tiempo de impresión, pero hace que la superficie tenga un aspecto más homogéneo, lo que también se aprecia en la superficie inferior del modelo." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Número de paredes de la balsa" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "El número de contornos a imprimir alrededor del patrón lineal de la balsa." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Recuento de paredes base de balsa" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Número de paredes intermedias de la balsa" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas medias de la balsa." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Número de paredes superiores de la balsa" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas superiores de la balsa." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidad de impresión de la balsa" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Velocidad a la que se imprime la balsa." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidad de impresión de la base de la balsa" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidad de impresión de la balsa intermedia" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidad de impresión de la balsa superior" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleración de impresión de la balsa" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Aceleración a la que se imprime la balsa." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleración de la impresión de la base de la balsa" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Aceleración a la que se imprime la capa base de la balsa." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleración de la impresión de la balsa intermedia" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleración de la impresión de la balsa superior" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Impulso de impresión de la balsa" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Impulso con el que se imprime la balsa." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Impulso de impresión de base de la balsa" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Impulso con el que se imprime la capa base de la balsa." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Impulso de impresión de balsa intermedia" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Impulso con el que se imprime la capa intermedia de la balsa." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Impulso de impresión de balsa superior" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Impulso con el que se imprimen las capas superiores de la balsa." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidad del ventilador de la balsa" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Velocidad del ventilador para la balsa." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidad del ventilador de la base de la balsa" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Velocidad del ventilador para la capa base de la balsa." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidad del ventilador de balsa intermedia" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Velocidad del ventilador para la capa intermedia de la balsa." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidad del ventilador de balsa superior" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Velocidad del ventilador para las capas superiores de la balsa." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Extrusión doble" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Ajustes utilizados en la impresión con varios extrusores." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activar la torre auxiliar" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Tipo de torre de imprimación" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" -msgstr "Cómo generar la torre de imprimación:
  • Normal: cree un cubo en el que los materiales secundarios estén imprimados
  • Intercalada: cree una torre de imprimación lo más dispersa posible. Esto ahorrará tiempo y filamento, pero solo es posible si los materiales utilizados se adhieren entre sí
" - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Intercalada" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamaño de la torre auxiliar" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Anchura de la torre auxiliar." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volumen mínimo de la torre auxiliar" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Distancia máxima de puenteo de la torre de imprimación" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "Longitud máxima de las ramas que pueden imprimirse en el aire." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posición de la torre auxiliar sobre el eje X" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Coordenada X de la posición de la torre auxiliar." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posición de la torre auxiliar sobre el eje Y" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Coordenada Y de la posición de la torre auxiliar." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpiar tobera inactiva de la torre auxiliar" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta la colocación de las estructuras del soporte. La colocación se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte también se imprimirán en el modelo." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Tras imprimir la torre auxiliar con una tobera, limpie el material rezumado de la otra tobera de la torre auxiliar." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base de la torre de cebado" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Cuando la máquina cambia de un extrusor a otro, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Esto impide que el material rezumado quede fuera de la impresión." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Tamaño de la base de la torre de cebado" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altura de la base de la torre de cebado" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Pendiente de la Base de la Torre de Cebado" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espaciado de las líneas del raft de la torre de cebado" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activar placa de rezumado" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ángulo de la placa de rezumado" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distancia de la placa de rezumado" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distancia de retracción del cambio de tobera" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidad de retracción del cambio de tobera" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidad de retracción del cambio de tobera" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidad de cebado del cambio de tobera" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Volumen de cebado adicional tras cambio de tobera" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Material adicional que debe cebarse tras el cambio de tobera." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correcciones de malla" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Consiga las mallas más adecuadas para la impresión 3D." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Volúmenes de superposiciones de uniones" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Eliminar todos los agujeros" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Cosido amplio" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantener caras desconectadas" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Superponer mallas combinadas" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Eliminar el cruce de mallas" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar la retirada de las mallas" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Eliminar primeras capas vacías" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolución máxima" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolución de desplazamiento máximo" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desviación máxima" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desviación máxima del área de extrusión" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Activar movimiento fluido" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Cambio de distancia del movimiento fluido" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Pequeña distancia del movimiento fluido" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ángulo de movimiento fluido" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos especiales" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas no tradicionales de imprimir sus modelos." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Secuencia de impresión" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Todo" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Todos a la vez" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "De uno en uno" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Establecer secuencia de impresión manualmente" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todos los ajustes que influyen en la resolución de la impresión. Estos ajustes tienen una gran repercusión en la calidad (y en el tiempo de impresión)." msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Le permite ordenar la lista de objetos para establecer manualmente la secuencia de impresión. El primer objeto de la lista se imprimirá primero." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Malla de relleno" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar pared adicional" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rango de procesamiento de la malla" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Cortar malla" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Ancho de molde mínimo" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura del techo del molde" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ángulo del molde" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malla de soporte" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malla antivoladizo" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superficie" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Espiralizar el contorno exterior" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Contornos espiralizados suaves" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusión relativa" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Características que aún no se han desarrollado por completo." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerancia de segmentación" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Media" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusiva" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimización del desplazamiento del relleno" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de flujo y temperatura" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferencia mínima de polígono" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Generar estructura entrelazada" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Ancho del haz entrelazado" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "El ancho de los haces de la estructura entrelazada." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientación de estructura entrelazada" - -msgctxt "interlocking_orientation description" -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 "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Recuento de capas de haz entrelazado" - -msgctxt "interlocking_beam_layer_count description" -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 "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidad del entrelazado" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Distancia a los límites de entrelazado" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Descomponer el soporte en pedazos" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamaño de los pedazos de soporte" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Recuento de líneas de pedazos del soporte" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Habilitar parabrisas" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distancia X/Y del parabrisas" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitación del parabrisas" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Completo" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura del parabrisas" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Convertir voladizo en imprimible" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ángulo máximo del modelo" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima del agujero en voladizo" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Habilitar depósito por inercia" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volumen de depósito por inercia" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volumen mínimo antes del depósito por inercia" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidad de depósito por inercia" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamaño de las bolsas 3D en cruces" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagen de densidad de relleno cruzada" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagen de densidad de relleno cruzada para soporte" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activar soporte cónico" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ángulo del soporte cónico" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Anchura mínima del soporte cónico" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Forro difuso" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Forro difuso exterior únicamente" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Use solo los contornos de las piezas, no los orificios de las piezas." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Grosor del forro difuso" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidad del forro difuso" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distancia de punto del forro difuso" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Factor de compensación del caudal" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento en un segundo de extrusión." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar capas de adaptación" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Las capas de adaptación calculan las alturas de las capas dependiendo de la forma del modelo." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variación máxima de las capas de adaptación" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamaño de pasos de variación de las capas de adaptación" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Tamaño de la topografía de las capas de adaptación" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes de las capas." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ángulo de voladizo de pared" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidad de voladizo de pared" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Habilitar ajustes del puente" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longitud mínima de la pared del puente" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Las paredes no compatibles menores que este valor se imprimirán utilizando los ajustes de pared habituales. Las paredes no compatibles mayores se imprimirán utilizando los ajustes de pared de puente." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Umbral del soporte del forro del puente" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidad máxima de relleno de puente escaso" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Depósito por inercia de la pared del puente" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidad de pared del puente" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Velocidad a la que se imprimen las paredes del puente." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flujo de pared del puente" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidad de forro del puente" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Velocidad a la que se imprimen las áreas de forro del puente." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flujo de forro del puente" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidad de forro del puente" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidad del ventilador del puente" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Puente con varias capas" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidad del segundo forro del puente" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flujo del segundo forro del puente" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidad del segundo forro del puente" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidad del ventilador del segundo forro del puente" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidad del tercer forro del puente" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flujo del tercer forro del puente" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidad del tercer forro del puente" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidad del ventilador del tercer forro del puente" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpiar tobera entre capas" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volumen de material entre limpiezas" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Habilitación de retracción de limpieza" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distancia de retracción de limpieza" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Cantidad de cebado adicional de retracción de limpieza" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidad de retracción de limpieza" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidad de retracción en retracción de limpieza" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidad de cebado de retracción de limpieza" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausar limpieza" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa después de no haber retracción." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Limpiar salto en Z" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Siempre que se limpia, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Limpiar altura del salto en Z" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Diferencia de altura cuando se realiza un salto en Z." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Limpiar velocidad de salto" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidad para mover el eje Z durante el salto." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Limpiar posición X de cepillo" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Ubicación X donde se iniciará la secuencia de limpieza." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Recuento de repeticiones de limpieza" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de movimientos de la tobera a lo largo del cepillo." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distancia de movimiento de limpieza" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamaño máximo de agujero pequeño" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longitud máxima de pequeñas partes" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidad de pequeñas partes" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidad de la capa inicial de partes pequeñas" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Las pequeñas partes de la primera capa se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar la retirada de las mallas" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Le permite alternar las direcciones de las paredes entre capas o insertos. Útil para materiales que pueden acumular tensión, como para imprimir en metal." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar las paredes exteriores" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminio" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Escriba siempre la herramienta activa" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Informe del proceso de impresión" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Retraer siempre al desplazarse para empezar una pared exterior." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Informes de eventos que se salen de los umbrales establecidos" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden compensar agujeros demasiado grandes; los valores negativos pueden compensar agujeros demasiado pequeños." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Activar informe de proceso de impresión" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de la primera capa. Un valor negativo puede compensar el aplastamiento de la primera capa, lo que se conoce como «pie de elefante»." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Habilite la generación de informes de procesos de impresión para establecer valores umbral para la posible detección de fallos." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Cantidad de desplazamiento aplicado a todos los polígonos de cada capa. Los valores positivos pueden suavizar las áreas del soporte y producir un soporte más robusto." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Advertencia de caudal" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Cantidad de desplazamiento aplicado a los suelos del soporte." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Límite del aviso de caudal para la detección." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Cantidad de desplazamiento aplicado a los techos del soporte." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Límite de caudal" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Cantidad de desplazamiento aplicado a los polígonos de la interfaz de soporte." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Límite en la anomalía de caudal para la detección." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Cantidad para retraer el filamento para que no rezume durante la secuencia de limpieza." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Advertencia de temperatura de impresión" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Un suplemento al radio desde el centro de cada cubo cuyo fin es comprobar el contorno del modelo para decidir si este cubo debería subdividirse. Cuanto mayor sea su valor, más grueso será el perímetro de cubos pequeños junto al contorno del modelo." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Límite en la advertencia de temperatura de impresión para la detección." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malla antivoladizo" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Límite de temperatura de impresión" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Velocidad de retracción antirrezumado" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Límite de anomalía de temperatura de impresión para la detección." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidad de retracción antirrezumado" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Advertencia de temperatura de volumen de construcción" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplicar el desplazamiento del extrusor al sistema de coordenadas. Influye en todos los extrusores." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Límite de la advertencia de temperatura de volumen de construcción para la detección." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "En las ubicaciones donde se tocan los modelos, genere una estructura de haz entrelazado. Esto mejora la adhesión entre los modelos, especialmente de aquellos impresos en materiales diferentes." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar partes impresas al desplazarse" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar soportes al desplazarse" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Posterior" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior izquierda" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior derecha" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambos se solapan" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Capas inferiores" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Patrón inferior de la capa inicial" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distancia de expansión del forro inferior" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Anchura de retirada del forro inferior" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Grosor inferior" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidad de la rama" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diámetro de la rama" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ángulo del diámetro de la rama" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posición retraída de preparación de rotura" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidad de retracción de preparación de rotura" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparación de rotura" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posición retraída de rotura" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidad de retracción de rotura" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de rotura" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Descomponer el soporte en pedazos" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidad del ventilador del puente" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Puente con varias capas" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidad del segundo forro del puente" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidad del ventilador del segundo forro del puente" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flujo del segundo forro del puente" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidad del segundo forro del puente" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidad de forro del puente" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flujo de forro del puente" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidad de forro del puente" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Umbral del soporte del forro del puente" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidad máxima de relleno de puente escaso" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidad del tercer forro del puente" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidad del ventilador del tercer forro del puente" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flujo del tercer forro del puente" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidad del tercer forro del puente" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Depósito por inercia de la pared del puente" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flujo de pared del puente" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidad de pared del puente" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Borde" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Borde, evitar margen" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distancia del borde" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Recuento de líneas de borde" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Ubicación del borde" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Sustituir soporte por borde" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ancho del borde" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adherencia de la placa de impresión" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor de adherencia de la placa de impresión" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo adherencia de la placa de impresión" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material de placa de impresión" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma de la placa de impresión" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura de la placa de impresión" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura de la placa de impresión en la capa inicial" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura de volumen de impresión" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Límite de temperatura del volumen de acumulación" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Límite de detección de anomalías en la temperatura del volumen de producción." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Advertencia de temperatura de volumen de construcción" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Ajustes de la línea de comandos" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Al habilitar esta configuración, tu torre de cebado tendrá un borde, incluso si el modelo no lo tiene. Si quieres una base más robusta para una torre alta, puedes aumentar la altura de la base." msgctxt "center_object label" msgid "Center Object" msgstr "Centrar objeto" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Cambiar la geometría del modelo impreso de modo que se necesite un soporte mínimo. Los voladizos descendentes se convertirán en voladizos llanos y las áreas inclinadas caerán para ser más verticales." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Elige entre las técnicas disponibles para generar soporte. El soporte \"Normal\" crea una estructura de soporte directamente debajo de las partes en voladizo y lleva estas áreas hacia abajo. El soporte en \"Árbol\" crea ramas en las áreas en voladizo que sostienen el modelo al final de estas ramas y permite que las ramas se arrastren alrededor del modelo para sostenerlo tanto como sea posible en la placa de impresión." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidad de depósito por inercia" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volumen de depósito por inercia" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Depósito por inercia sustituye la última parte de una trayectoria de extrusión por una trayectoria de desplazamiento. El material rezumado se utiliza para imprimir la última parte de la trayectoria de extrusión con el fin de reducir el encordado." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo Peinada" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "La opción de peinada mantiene la tobera dentro de las áreas ya impresas al desplazarse. Esto ocasiona movimientos de desplazamiento ligeramente más largos, pero reduce la necesidad de realizar retracciones. Si se desactiva la opción de peinada, el material se retraerá y la tobera se moverá en línea recta hasta el siguiente punto. Otra posibilidad es evitar la peinada en áreas de forro superiores/inferiores o peinar solo en el relleno." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Ajustes de la línea de comandos" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ángulo del soporte cónico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Anchura mínima del soporte cónico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Conectar líneas de relleno" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Conectar polígonos de relleno" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Conectar líneas del soporte" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Conectar zigzags del soporte" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Conectar polígonos superiores/inferiores" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Conectar las trayectorias de polígonos cuando están próximas entre sí. Habilitar esta opción reduce considerablemente el tiempo de desplazamiento en los patrones de relleno que constan de varios polígonos cerrados." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Conectar los zigzags. Esto aumentará la resistencia de la estructura del soporte de zigzag." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Unión de los extremos de las líneas de soporte. Al habilitar este ajuste, puede conseguir que el soporte sea más sólido y reducir la infraextrusión, pero se necesitará más material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Conectar los extremos donde los patrones de relleno se juntan con la pared interior usando una línea que siga la forma de esta. Habilitar este ajuste puede lograr que el relleno se adhiera mejor a las paredes y se reduzca el efecto del relleno sobre la calidad de las superficies verticales. Deshabilitar este ajuste reduce la cantidad de material utilizado." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Conecta las trayectorias de forro superior/inferior cuando están próximas entre sí. Al habilitar este ajuste, en el patrón concéntrico se reduce considerablemente el tiempo de desplazamiento, pero las conexiones pueden producirse en mitad del relleno, con lo que bajaría la calidad de la superficie superior." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controlar si las esquinas del contorno del modelo influyen en la posición de la costura. «Ninguno» significa que las esquinas no influyen en la posición de la costura. «Ocultar costura» significa que es probable que la costura se realice en una esquina interior. «Mostrar costura» significa que es probable que la costura se realice en una esquina exterior. «Ocultar o mostrar costura» significa que es probable que la costura se realice en una esquina interior o exterior. «Costura inteligente» permite realizar la costura en ambas esquinas, pero opta con más frecuencia por las esquinas interiores, si resulta oportuno." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Multiplicar cada línea de relleno. Las líneas adicionales no se cruzan entre sí, sino que se evitan entre ellas. Esto consigue un relleno más rígido, pero incrementa el tiempo de impresión y el uso de material." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidad de enfriamiento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refrigeración" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refrigeración" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamaño de las bolsas 3D en cruces" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagen de densidad de relleno cruzada para soporte" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagen de densidad de relleno cruzada" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material cristalino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisión cúbica" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Perímetro de la subdivisión cúbica" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Cortar malla" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Datos que vinculan el flujo de materiales (en 3 mm por segundo) a la temperatura (grados centígrados)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleración predeterminada" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura predeterminada de la placa de impresión" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Impulso de filamento predeterminado" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura de impresión predeterminada" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Impulso X-Y predeterminado" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Impulso Z predeterminado" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Impulso predeterminado para el movimiento en el plano horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Impulso predeterminado del motor de la dirección Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Impulso predeterminado del motor del filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detección de puentes y modificación de los ajustes de velocidad de impresión, flujo y ventilador durante la impresión de puentes." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina el orden de impresión de las paredes. Empezar imprimiendo las paredes exteriores ayuda a la precisión dimensional, ya que evita que los defectos de las paredes interiores se propaguen al exterior. Sin embargo, si las imprime más tarde, podrá apilarlas mejor cuando se impriman los voladizos. Cuando hay una cantidad impar de paredes interiores totales, la «última línea central» siempre se imprime en último lugar." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina la prioridad de esta malla al tener en cuenta varias mallas de relleno superpuestas. Las áreas en las que se superponen varias mallas de relleno tomarán la configuración de la malla con el rango más alto. Una malla de relleno con un rango superior modificará el relleno de las mallas de relleno con un rango inferior y mallas normales." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar algo por encima de ella. Medido en el ángulo dado el espesor de una capa." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina cuándo una capa de relleno de rayos tiene que soportar el modelo que está por encima. Medido en el ángulo dado el espesor." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diámetro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento del diámetro para el modelo" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diámetro que cada rama trata de alcanzar al llegar a la placa de impresión. Mejora la adherencia a la plataforma." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Opciones diferentes que ayudan a mejorar tanto la extrusión como la adherencia a la placa de impresión. El borde agrega una zona plana de una sola capa alrededor de la base del modelo para impedir que se deforme. La balsa agrega una rejilla gruesa con un techo por debajo del modelo. La falda es una línea impresa alrededor del modelo, pero que no está conectada al modelo." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas no permitidas" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distancia entre las líneas de relleno impresas. Este ajuste se calcula por la densidad del relleno y el ancho de la línea de relleno." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distancia entre las líneas de estructuras del soporte de la capa inicial impresas. Este ajuste se calcula por la densidad del soporte." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distancia entre las líneas de suelo de soporte impresas. Este ajuste se calcula por la densidad del suelo del soporte pero se puede ajustar de forma independiente." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distancia entre las líneas de techo de soporte impresas. Este ajuste se calcula por la densidad del techo del soporte pero se puede ajustar de forma independiente." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distancia entre las líneas de estructuras del soporte impresas. Este ajuste se calcula por la densidad del soporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distancia de la impresión hasta la parte inferior del soporte. Ten en cuenta que esto se redondea al siguiente altura de capa." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distancia desde la parte superior del soporte a la impresión." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distancia desde la parte superior/inferior de la estructura de soporte hasta la impresión. Este espacio proporciona la holgura necesaria para remover los soportes después de imprimir el modelo. La capa de soporte más cercana al modelo podría ser una fracción de las capas regulares." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distancia de un desplazamiento insertado después de cada línea de relleno, para que el relleno se adhiera mejor a las paredes. Esta opción es similar a la superposición del relleno, pero sin extrusión y solo en un extremo de la línea de relleno." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distancia de un movimiento de desplazamiento insertado tras la pared exterior con el fin de ocultar mejor la costura sobre el eje Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distancia entre el parabrisas y la impresión, en las direcciones X/Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distancia entre la placa de rezumado y la impresión, en las direcciones X/Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distancia de la estructura de soporte desde el voladizo en las direcciones X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distancia de la estructura del soporte desde la impresión en las direcciones X/Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Los puntos de distancia se desplazan para suavizar la trayectoria" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "No genere áreas con un relleno inferior a este (utilice forro)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura del parabrisas" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitación del parabrisas" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distancia X/Y del parabrisas" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malla de soporte desplegable" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Extrusión doble" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activar control de aceleración" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Habilitar ajustes del puente" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Habilitar depósito por inercia" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activar soporte cónico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Habilitar parabrisas" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Activar movimiento fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Habilitar alisado" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activar control de impulso" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Habilitar control de temperatura de la tobera" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activar placa de rezumado" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activar gotas de cebado" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activar la torre auxiliar" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activar refrigeración de impresión" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Activar informe de proceso de impresión" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Habilitar la retracción" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Habilitar borde de soporte" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Habilitar suelo del soporte" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Habilitar interfaz del soporte" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Habilitar techo del soporte" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Habilitar aceleración de desplazamiento" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activar impulso de desplazamiento" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Activar la placa de rezumado exterior. Esto crea un perímetro alrededor del modelo que suele limpiar una segunda tobera si se encuentra a la misma altura que la primera." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Habilite la generación de informes de procesos de impresión para establecer valores umbral para la posible detección de fallos." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Permite que las zonas pequeñas (hasta \"Ancho superior/inferior pequeño\") de la capa más superficial (expuestas al aire) se rellenen con paredes en lugar de con el patrón predeterminado." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar el impulso del cabezal de impresión cuando la velocidad del eje X o Y cambia. Aumentar el impulso puede reducir el tiempo de impresión a costa de la calidad de impresión." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite ajustar la aceleración del cabezal de impresión. Aumentar las aceleraciones puede reducir el tiempo de impresión a costa de la calidad de impresión." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Habilita ventiladores de refrigeración mientras se imprime. Los ventiladores mejoran la calidad de la impresión en capas con menores tiempos de capas y puentes o voladizos." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Finalizar GCode" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longitud de purga del extremo del filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidad de purga del extremo del filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Aplica la impresión de un borde alrededor del modelo, aunque en esa posición debiera estar el soporte. Sustituye algunas áreas de la primera capa de soporte por áreas de borde." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "En todas partes" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "En todos sitios" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusiva" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Mostrar costura" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Cosido amplio" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Cosido amplio intenta coser los agujeros abiertos en la malla cerrando el agujero con polígonos que se tocan. Esta opción puede agregar una gran cantidad de tiempo de procesamiento." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Recuento de líneas de pared adicional" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Recuento de paredes adicionales de forro" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Material adicional que debe cebarse tras el cambio de tobera." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posición de preparación del extrusor sobre el eje X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posición de preparación del extrusor sobre el eje Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posición de preparación del extrusor sobre el eje Z" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Calentador compartido de extrusores" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Los extrusores comparten la tobera" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador de la velocidad de enfriamiento de la extrusión" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Factor de corrección del ancho de extrusión basado en la velocidad. Al 0 % de velocidad de movimiento se mantiene constante a la velocidad de impresión. Al 100 % de velocidad de movimiento se ajusta para mantener el flujo constante (en mm³/s), es decir, las líneas cuyo ancho es la mitad del ancho normal se imprimen el doble de rápido y las líneas que tienen el doble de ancho se imprimen a la mitad de la velocidad. Un valor superior al 100 % puede ayudar a compensar la mayor presión necesaria para extruir líneas anchas." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidad del ventilador" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Alteración de velocidad del ventilador" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Los contornos de las partes que sean más cortos que esta longitud se imprimen utilizando la función Velocidad de pequeñas partes." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Características que aún no se han desarrollado por completo." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diámetro de la rueda del alimentador" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impresión final" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retracción de firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor del soporte de la primera capa" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flujo" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporción de ecualización de flujo" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Límite de caudal" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Factor de compensación del caudal" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Desplazamiento de extrusión máximo del factor de compensación del caudal" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de flujo y temperatura" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Advertencia de caudal" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensación de flujo de la primera capa: la cantidad de material extruido de la capa inicial se multiplica por este valor." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensación de flujo en las líneas inferiores de la primera capa" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensación de flujo en líneas de relleno." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensación de flujo en líneas de techo o suelo de soporte." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensación de flujo en líneas de las áreas superiores de la impresión." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensación de flujo en líneas de la torre auxiliar." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensación de flujo en líneas de falda o borde." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensación de flujo en líneas de suelo de soporte." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensación de flujo en líneas de techo de soporte." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensación de flujo en líneas de estructura de soporte." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensación de flujo en la línea de pared más externa de la primera capa." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensación de flujo en la línea de pared más externa." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensación de flujo en la línea de la pared exterior más externa de la superficie superior." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en las líneas de pared de la superficie superior para todas las líneas de pared excepto la más externa." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensación de flujo en las líneas superiores o inferiores." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensación de caudal en líneas de pared para todas, excepto la más exterior, pero solo para la primera capa." + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensación de flujo en líneas de pared para todas las líneas excepto la más externa." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensación de flujo en líneas de pared." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensación de flujo: la cantidad de material extruido se multiplica por este valor." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ángulo de movimiento fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Cambio de distancia del movimiento fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Pequeña distancia del movimiento fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longitud de purga de descarga" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidad de purga de descarga" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estructuras delgadas, aproximadamente una o dos veces el tamaño de la boquilla, los anchos de línea deben cambiarse para que coincidan con el grosor del modelo. Esta configuración controla el ancho de línea mínimo permitido para las paredes. Los anchos de línea mínimos también determinan de forma inherente los anchos de línea máximos, ya que la transición de N a N + 1 paredes se realiza con un grosor geométrico donde N paredes son anchas y N + 1 paredes son estrechas. La línea perimetral más ancha posible es el doble del ancho mínimo de la línea perimetral." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Delantera" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Delantera izquierda" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Delantera derecha" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Completo" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Forro difuso" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidad del forro difuso" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Forro difuso exterior únicamente" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distancia de punto del forro difuso" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Grosor del forro difuso" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Tipo de GCode" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Los comandos de GCode que se ejecutarán justo al final separados por -" +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Los comandos de GCode que se ejecutarán justo al inicio separados por - " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID del material. Este valor se define de forma automática." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura del puente" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generar estructura entrelazada" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generar soporte" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genera un borde dentro de las zonas de relleno del soporte de la primera capa. Este borde se imprime por debajo del soporte y no a su alrededor. Si habilita esta configuración aumentará la adhesión del soporte a la placa de impresión." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Genera una gruesa interfaz entre el modelo y el soporte. De esta forma, se crea un forro en la parte superior del soporte, donde se imprime el modelo, y en la parte inferior del soporte, donde se apoya el modelo." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genere una placa densa de material entre la parte inferior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genere una placa densa de material entre la parte superior del soporte y el modelo. Esto creará un forro entre el modelo y el soporte." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Generar estructuras para soportar piezas del modelo que tengan voladizos. Sin estas estructuras, estas piezas se romperían durante la impresión." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidrio" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Pasar por la superficie superior una vez más, pero esta vez extruyendo muy poco material, para derretir la capa superior del plástico y crear una superficie más lisa. La presión de la cámara en la boquilla se mantiene alta para que los pliegues de la superficie se llenen de material." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura necesaria de los pasos de relleno" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Pasos de relleno necesarios" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura necesaria de los escalones de relleno de soporte" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Escalones de relleno de soporte" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduzca gradualmente a esta temperatura cuando imprima a velocidades bajas debido al tiempo mínimo de capa." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Rejilla" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar las paredes exteriores" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Giroide" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tiene estabilización de temperatura del volumen de impresión" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tiene una placa de impresión caliente" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidad de calentamiento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longitud de la zona térmica" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limitación de la altura del parabrisas. Por encima de esta altura, no se imprimirá ningún parabrisas." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar costura" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar o mostrar costura" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansión horizontal de orificios" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diámetro máximo de la expansión horizontal de los orificios" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Los agujeros y contornos de las piezas con un diámetro menor que estos se imprimen utilizando la función Velocidad de pequeñas partes." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansión horizontal" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala horizontal para la compensación de la contracción" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Hasta dónde puede estirarse el filamento antes de que se rompa mientras se calienta." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Hasta dónde tiene que retraerse el material antes de detener el rezumado." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "La distancia para mover el filamento con el fin de compensar los cambios en el caudal, como porcentaje de la distancia a la que se movería el filamento en un segundo de extrusión." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Hasta dónde debe retraerse el filamento para que se rompa limpiamente." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Con qué velocidad debe retraerse el filamento justo antes de romperse en una retracción." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Con qué velocidad tiene que retraerse el material durante un cambio de filamento para evitar el rezumado." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "La velocidad de cebado del material después de sustituir una bobina vacía por una bobina nueva del mismo material." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "La velocidad de cebado del material después de cambiar a otro material." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "La cantidad de tiempo que el material puede mantenerse seco de forma segura." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Número de pasos que tiene que dar el motor para abarcar un milímetro de movimiento en la dirección Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "El número de pasos en un motor paso a paso que mueve la rueda de alimentación en incrementos de 1 milímetro alrededor de su circunferencia." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "La cantidad de material que se va a utilizará para purgar el material que había antes en la tobera (en longitud del filamento) al sustituir una bobina vacía por una bobina nueva del mismo material." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "La cantidad de material que se va a utilizar para purgar el material que había antes en la tobera (en longitud del filamento) cuando se cambia a otro material." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La cantidad de filamento de cada extrusor que se supone que se ha retirado de la punta de la tobera compartida al final de la secuencia de comandos gcode de inicio de la impresora; el valor debe ser igual o mayor que la longitud de la parte común de los conductos de la tobera." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Cómo interactuarán la interfaz y el soporte en caso de superposición. Actualmente, solo implantado para techos de soporte." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Qué altura debe tener una rama si se coloca sobre el modelo. Evita la formación de pequeñas gotas de soporte. Esta configuración se ignora cuando una rama está aguantando un techo de soporte." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Si un área de forro es compatible con un porcentaje inferior de su área, se imprime utilizando los ajustes de puente. De lo contrario, se imprimirá utilizando los ajustes de forro habituales." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Si un segmento de la trayectoria de la herramienta se desvía más de este ángulo del movimiento general, se suaviza." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Si esta opción está habilitada, la segunda y tercera capa por encima del aire se imprimen utilizando los siguientes ajustes. De lo contrario, estas capas se imprimen utilizando los ajustes habituales." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Si planea pasar de un lado a otro entre diferentes números de pared en rápida sucesión, no realice ninguna transición. Elimine las transiciones si están más cerca que esta distancia." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la base de balsa está activada, esta es el área de balsa extra alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más fuerte, aunque utilizará más material y dejará menos superficie para su impresión." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la balsa está habilitada, esta es el área adicional de la balsa alrededor del modelo que también tiene una balsa. El aumento de este margen creará una balsa más resistente mientras que usará más material y dejará menos área para la impresión." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si el medio de la balsa está activado, esta es el área adicional de la balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la parte superior de la balsa está activada, esta es el área extra de balsa alrededor del modelo al que también se le da una balsa. Si aumenta este margen, creará una balsa más resistente, aunque utilizará más material y dejará menos superficie para su impresión." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignora la geometría interna que surge de los volúmenes de superposición dentro de una malla e imprime los volúmenes como si fuera uno. Esto puede hacer que desaparezcan cavidades internas que no se hayan previsto." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir temperatura de la placa de impresión" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir temperaturas del material" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" + +msgctxt "infill description" +msgid "Infill" +msgstr "Relleno" + +msgctxt "infill label" +msgid "Infill" +msgstr "Relleno" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleración del relleno" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Relleno antes que las paredes" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidad de relleno" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor del relleno" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flujo de relleno" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Impulso de relleno" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Grosor de la capa de relleno" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direcciones de línea de relleno" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distancia de línea de relleno" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de línea de relleno" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ancho de línea de relleno" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Malla de relleno" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ángulo de voladizo de relleno" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Superposición del relleno" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Porcentaje de superposición del relleno" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Patrón de relleno" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidad de relleno" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Soporte de relleno" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimización del desplazamiento del relleno" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distancia de pasada de relleno" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Desplazamiento del relleno sobre el eje X" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Desplazamiento del relleno sobre el eje Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Capas inferiores iniciales" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidad inicial del ventilador" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleración de la capa inicial" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flujo inferior de la capa inicial" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diámetro de la capa inicial" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flujo de capa inicial" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altura de capa inicial" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansión horizontal de la capa inicial" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flujo de pared interior de la capa inicial" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Impulso de capa inicial" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ancho de línea de la capa inicial" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flujo de pared exterior de la capa inicial" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleración de impresión de la capa inicial" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Impulso de impresión de capa inicial" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidad de impresión de la capa inicial" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidad de capa inicial" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distancia de línea del soporte de la capa inicial" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleración de desplazamiento de la capa inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Impulso de desplazamiento de capa inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidad de desplazamiento de la capa inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Superposición de las capas iniciales en Z" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impresión inicial" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleración de pared interior" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor de pared interior" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Impulso de pared interior" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidad de pared interior" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flujo de pared o paredes interiores" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ancho de línea de pared(es) interna(s)" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Entrante aplicado a la trayectoria de la pared exterior. Si la pared exterior es más pequeña que la tobera y se imprime a continuación de las paredes interiores, utilice este valor de desplazamiento para hacer que el agujero de la tobera se superponga a las paredes interiores del modelo en lugar de a las exteriores." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Solo interior" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Del interior al exterior" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Líneas de interfaz preferidas" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interfaz preferida" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalada" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Recuento de capas de haz entrelazado" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ancho del haz entrelazado" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distancia a los límites de entrelazado" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidad del entrelazado" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientación de estructura entrelazada" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Planchar solo la capa superior" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleración del alisado" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flujo de alisado" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserción de alisado" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Impulso de alisado" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Espaciado de líneas del alisado" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Patrón de alisado" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidad de alisado" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "El origen está centrado" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Es material de soporte" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "¿Es este el tipo de material que se desprende limpiamente cuando se calienta (cristalino) o el que produce largas cadenas de polímeros entrelazadas (no cristalino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Este material se utiliza normalmente como material de soporte durante la impresión." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Use solo los contornos de las piezas, no los orificios de las piezas." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantener caras desconectadas" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altura de capa" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X de inicio de capa" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y de inicio de capa" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Grosor de la capa base de la balsa. Esta debe ser una capa gruesa que se adhiera firmemente a la placa de impresión de la impresora." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Grosor de la capa intermedia de la balsa." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Grosor de capa de las capas superiores de la balsa." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Omitir una conexión entre líneas de soporte una vez cada N milímetros a fin de lograr que la estructura de soporte resulte más fácil de descomponer." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Izquierda" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Levantar el cabezal" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Rayos" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ángulo del voladizo de relleno de rayos" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ángulo de recorte de relleno de rayos" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ángulo de enderezamiento de rayos" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ángulo de sujeción de relleno de rayos" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Alcance límite de la rama" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limite la distancia que debe recorrer cada rama desde el punto que soporta. Esto puede hacer que el soporte sea más resistente, pero aumentará la cantidad de ramas (y, con ello, el uso de material y el tiempo de impresión)" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Límite de la advertencia de temperatura de volumen de construcción para la detección." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Límite de detección de anomalías en la temperatura del volumen de producción." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Límite de anomalía de temperatura de impresión para la detección." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Límite en la advertencia de temperatura de impresión para la detección." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Límite en la anomalía de caudal para la detección." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Límite del aviso de caudal para la detección." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limite el volumen de esta malla a lo que está dentro de otras mallas. Puede usar esto para hacer que determinadas áreas de una malla se impriman con ajustes diferentes y con un extrusor totalmente diferente." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ancho de línea" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidad de la máquina" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono del cabezal de la máquina y del ventilador" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura de la máquina" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de máquina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ancho de la máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Ajustes específicos de la máquina" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Convertir voladizo en imprimible" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Hace que las mallas que se tocan las unas a las otras se superpongan ligeramente. Esto mejora la conexión entre ellas." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Hace que las áreas de soporte sean más pequeñas en la parte inferior que en el voladizo." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Disponga un soporte en todas partes por debajo de la malla de soporte, para que no haya voladizo en la malla de soporte." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "La posición de preparación del extrusor se considera absoluta, en lugar de relativa a la última ubicación conocida del cabezal." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Haga que la primera y la segunda capa del modelo se solapen en la dirección Z para compensar el filamento perdido en el entrehierro. Todos los modelos situados por encima de la primera capa del modelo se desplazarán hacia abajo en esta medida." +"Cabe señalar que a veces la segunda capa se imprime por debajo de la capa inicial debido a este ajuste. Este es el comportamiento previsto." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Consiga las mallas más adecuadas para la impresión 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca del material" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID del material" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo de material" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volumen de material entre limpiezas" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distancia de peinada máxima sin retracción" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleración máxima sobre el eje X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleración máxima de Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleración máxima de Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ángulo máximo de la rama" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desviación máxima" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desviación máxima del área de extrusión" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidad máxima del ventilador" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleración máxima del filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ángulo máximo del modelo" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima del agujero en voladizo" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duración máxima de estacionamiento" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolución máxima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Recuento máximo de retracciones" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ángulo máximo de expansión del forro" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidad máxima E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidad máxima sobre el eje X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidad máxima sobre el eje Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidad máxima sobre el eje Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diámetro máximo soportado por la torre" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolución de desplazamiento máximo" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Aceleración máxima del motor de la dirección X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Aceleración máxima del motor de la dirección Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Aceleración máxima del motor de la dirección Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Aceleración máxima del motor del filamento." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "La máxima densidad de relleno que se considera escasa. El forro sobre el relleno escaso se considera sin soporte y, por lo tanto, se puede tratar como un forro de puente." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Diámetro máximo en las direcciones X/Y de una pequeña área que debe ser soportada por una torre de soporte especializada." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Material máximo que puede extruirse antes de que se inicie otra limpieza de la tobera. Si este valor es inferior al volumen de material necesario en una capa, el ajuste no tiene efecto en esa capa, es decir, se limita a una limpieza por capa." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Superponer mallas combinadas" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correcciones de malla" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posición X en la malla" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desplazamiento aplicado al objeto en la dirección x." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posición Y en la malla" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desplazamiento aplicado al objeto en la dirección y." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posición Z en la malla" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rango de procesamiento de la malla" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matriz de rotación de la malla" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Media" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Ancho de molde mínimo" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Temperatura mínima en modo de espera" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longitud mínima de la pared del puente" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral uniforme" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Ventana de distancia mínima de extrusión" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamaño mínimo de la característica" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidad de alimentación mínima" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura mínima para el modelo" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de relleno mínima" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tiempo mínimo de capa" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral impar" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferencia mínima de polígono" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Anchura de expansión mínima del forro" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidad mínima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área del soporte mínima" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área de los suelos del soporte mínima" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área de la interfaz de soporte mínima" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área de los techos del soporte mínima" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distancia X/Y mínima del soporte" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral delgada" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volumen mínimo antes del depósito por inercia" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Ancho mínimo de la línea perimetral" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamaño del área mínima para los polígonos de la interfaz de soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Tamaño del área mínima para los polígonos del soporte. No se generarán polígonos que posean un área de menor tamaño que este valor." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamaño del área mínima para los suelos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamaño del área mínima para los techos del soporte. Los polígonos que posean un área de menor tamaño que este valor se imprimirán como soporte normal." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Espesor mínimo de características delgadas. Las características del modelo que sean más delgadas que este valor no se imprimirán, mientras que las características más gruesas que el tamaño mínimo de la característica se estirarán hasta el ancho mínimo de la línea perimetral." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Ancho mínimo al que se reduce la base del área de soporte cónico. Las anchuras pequeñas pueden producir estructuras de soporte inestables." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ángulo del molde" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura del techo del molde" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Orden de planchado monotónico" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Orden monotónico de la superficie superior de la balsa" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Orden monotónica de la superficie superior" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Orden monotónica superior e inferior" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Líneas de falda múltiples sirven para preparar la extrusión mejor para modelos pequeños. Con un ajuste de 0 se desactivará la falda." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador del ancho de la línea de la primera capa. Si esta se aumenta, se puede mejorar la adherencia a la plataforma." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Factor de desplazamiento sin carga" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sin forro en huecos en Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas no tradicionales de imprimir sus modelos." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Ninguno" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Ninguno" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalmente, Cura intenta coser los pequeños agujeros de la malla y eliminar las partes de una capa con grandes agujeros. Al habilitar esta opción, se mantienen aquellas partes que no puedan coserse. Esta opción se debe utilizar como una opción de último recurso cuando todo lo demás falla para producir un GCode adecuado." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "No en el forro" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "No en la superficie exterior" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ángulo de la tobera" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diámetro de la tobera" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas no permitidas para la tobera" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Id. de la tobera" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longitud de la tobera" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Volumen de cebado adicional tras cambio de tobera" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidad de cebado del cambio de tobera" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidad de retracción del cambio de tobera" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distancia de retracción del cambio de tobera" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidad de retracción del cambio de tobera" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de extrusores" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores habilitados" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de capas más lentas" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Número de trenes extrusores habilitados y configurados en el software de forma automática" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de trenes extrusores. Un tren extrusor está formado por un alimentador, un tubo guía y una tobera." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de movimientos de la tobera a lo largo del cepillo." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Número de veces necesarias para reducir a la mitad la densidad del relleno de soporte a medida que se aleja de las superficies superiores. Las zonas más próximas a las superficies superiores tienen una densidad mayor, hasta alcanzar la densidad de relleno de soporte." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Apagado" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desplazamiento aplicado al objeto en la dirección x." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desplazamiento aplicado al objeto en la dirección y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Desplazamiento aplicado al objeto sobre el eje Z. Permite efectuar la operación antes conocida como «Object Sink»." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desplazamiento con extrusor" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "En la placa de impresión, cuando sea posible" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sobre el modelo, en caso de que sea necesario" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "De uno en uno" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Realizar un salto en Z solo al desplazarse por las partes impresas que no puede evitar el movimiento horizontal de la opción Evitar partes impresas al desplazarse." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Planchar únicamente la última capa de la malla. De este modo se ahorra tiempo si las capas inferiores no requieren un acabado superficial suave." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ángulo de la placa de rezumado" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distancia de la placa de rezumado" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Espaciado óptimo de ramas" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimizar el orden de impresión de paredes" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimizar el orden en el que se imprimen las paredes a fin de reducir el número de retracciones y la distancia recorrida. La mayoría de los componentes se beneficiarán si este ajuste está habilitado pero, en algunos casos, se puede tardar más, por lo que deben compararse las previsiones de tiempo de impresión con y sin optimización. La primera capa no está optimizada al elegir el borde como el tipo de adhesión de la placa de impresión." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diámetro exterior de la tobera" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleración de pared exterior" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor de pared exterior" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flujo de pared exterior" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Entrante en la pared exterior" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Impulso de pared exterior" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ancho de línea de la pared exterior" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidad de pared exterior" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distancia de pasada de la pared exterior" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Las paredes exteriores de diferentes islas en la misma capa se imprimen en secuencia. Cuando está habilitado, la cantidad de cambios de flujo se limita porque las paredes se imprimen de a una a la vez; cuando está deshabilitado, se reduce el número de desplazamientos entre islas porque las paredes en las mismas islas se agrupan." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Solo exterior" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Del exterior al interior" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ángulo de voladizo de pared" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidad de voladizo de pared" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Los voladizos de pared se imprimirán a este porcentaje de su velocidad de impresión normal." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa después de no haber retracción." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Porcentaje de velocidad del ventilador que se emplea en la impresión de las paredes y el forro del puente." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la segunda capa del forro del puente." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Porcentaje para la velocidad de ventilador que se utiliza al imprimir las áreas del forro que se encuentran inmediatamente encima del soporte. Si utiliza una velocidad alta para el ventilador, será más fácil retirar el soporte." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Velocidad del ventilador en porcentaje que se utiliza para imprimir la tercera capa del forro del puente." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Se filtran los polígonos en capas segmentadas que tienen una circunferencia más pequeña que esta. Los valores más pequeños suponen una resolución de malla mayor a costa de un tiempo de segmentación. Está indicado, sobre todo, para impresoras SLA y modelos 3D muy pequeños con muchos detalles." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ángulo de rama preferido" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Evite la transición de ida y vuelta entre una pared extra y una menos. Este margen amplía el rango de anchos de línea después de [Ancho mínimo de línea perimetral - Margen, 2 * Ancho mínimo de línea perimetral + Margen]. Aumentar este margen reduce el número de transiciones, lo que reduce el número de arranques y paradas de la extrusión y el tiempo de recorrido. No obstante, las grandes variaciones en el ancho de la línea pueden provocar problemas de subextrusión o sobreextrusión." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleración de la torre auxiliar" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base de la torre de cebado" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura de la base de la torre de cebado" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamaño de la base de la torre de cebado" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pendiente de la Base de la Torre de Cebado" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flujo de la torre auxiliar" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Impulso de la torre auxiliar" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ancho de línea de la torre auxiliar" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distancia máxima de puenteo de la torre de imprimación" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volumen mínimo de la torre auxiliar" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaciado de las líneas del raft de la torre de cebado" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamaño de la torre auxiliar" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidad de la torre auxiliar" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo de torre de imprimación" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posición de la torre auxiliar sobre el eje X" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posición de la torre auxiliar sobre el eje Y" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleración de la impresión" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Impulso de impresión" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Informe del proceso de impresión" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Secuencia de impresión" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidad de impresión" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir paredes finas" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprima un borde en el exterior del modelo, en el interior o en ambos. Dependiendo del modelo, esto ayuda a reducir la cantidad de borde que tendrá que retirar después, al tiempo que garantiza una correcta adherencia de la cama." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimir una torre junto a la impresión que sirve para preparar el material tras cada cambio de tobera." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimir estructuras de relleno solo cuando se deban soportar las partes superiores del modelo. Habilitar esto reduce el tiempo de impresión y el uso de material, pero ocasiona que la resistencia del objeto no sea uniforme." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de planchado de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimir modelos como un molde que se pueden fundir para obtener un modelo que se parezca a los modelos de la placa de impresión." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprime las piezas del modelo que son horizontalmente más finas que el tamaño de la tobera." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprima las líneas de la superficie superior de la balsa en un orden que haga que siempre se solapen con las líneas adyacentes en una sola dirección. Esto lleva algo más de tiempo de impresión, pero hace que la superficie tenga un aspecto más homogéneo, lo que también se aprecia en la superficie inferior del modelo." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidad de impresión que se utiliza para imprimir la segunda capa del forro del puente." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidad de impresión que se utiliza para imprimir la tercera capa del forro del puente." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Límite de temperatura de impresión" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Advertencia de temperatura de impresión" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime el relleno antes de imprimir las paredes. Si se imprimen primero las paredes, estas serán más precisas, pero los voladizos se imprimirán peor. Si se imprime primero el relleno las paredes serán más resistentes, pero el patrón de relleno a veces se nota a través de la superficie." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas de la superficie superior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime colocando las líneas superior e inferior de modo que siempre se superpongan a las líneas adyacentes en una dirección. Esto lleva un poco más de tiempo de impresión, pero hace que las superficies planas tengan un aspecto más consistente." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de impresión" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura de impresión de la capa inicial" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "La impresión de la línea más interna de la falda con varias capas facilita su eliminación." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime una pared adicional cada dos capas. De este modo el relleno se queda atrapado entre estas paredes adicionales, lo que da como resultado impresiones más sólidas." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Calidad" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Cúbico bitruncado" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Balsa" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Cámara de aire de la balsa" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margen extra de base de balsa" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor base de la balsa" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidad del ventilador de la base de la balsa" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacio de la línea base de la balsa" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ancho de la línea base de la balsa" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleración de la impresión de la base de la balsa" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Impulso de impresión de base de la balsa" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidad de impresión de la base de la balsa" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Suavizado de la base de la balsa" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Grosor de la base de la balsa" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Recuento de paredes base de balsa" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margen adicional de la balsa" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidad del ventilador de la balsa" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margen extra medio de la balsa" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor medio de la balsa" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidad del ventilador de balsa intermedia" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Capas medias de la balsa" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ancho de la línea intermedia de la balsa" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleración de la impresión de la balsa intermedia" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Impulso de impresión de balsa intermedia" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidad de impresión de la balsa intermedia" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Suavizado medio de la balsa" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaciado intermedio de la balsa" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Grosor intermedio de la balsa" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Número de paredes intermedias de la balsa" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleración de impresión de la balsa" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Impulso de impresión de la balsa" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidad de impresión de la balsa" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavizado de la balsa" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margen extra de la parte superior de la balsa" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusor superior de la balsa" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidad del ventilador de balsa superior" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Grosor de las capas superiores de la balsa" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Capas superiores de la balsa" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ancho de las líneas superiores de la balsa" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleración de la impresión de la balsa superior" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Impulso de impresión de balsa superior" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidad de impresión de la balsa superior" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Suavizado de la parte superior de la balsa" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaciado superior de la balsa" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Número de paredes superiores de la balsa" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Número de paredes de la balsa" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatoria" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Comienzo de relleno aleatorio" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Determine qué línea de relleno se imprime primero. Esto evita que un segmento se convierta en el más fuerte, pero a expensas de un movimiento adicional." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Fluctúa aleatoriamente durante la impresión de la pared exterior, de modo que la superficie tiene un aspecto desigual y difuso." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangular" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidad normal del ventilador" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocidad normal del ventilador a altura" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocidad normal del ventilador por capa" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Umbral de velocidad normal/máxima del ventilador" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusión relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Eliminar todos los agujeros" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Eliminar primeras capas vacías" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Eliminar el cruce de mallas" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Retirar las esquinas interiores de la base de la balsa" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Quitar las esquinas internas de la balsa" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Retirar las esquinas interiores centrales de la balsa" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Retire las esquinas interiores de la parte superior de la balsa" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Eliminar las zonas en las que se superponen varias mallas. Puede utilizarse esta opción cuando se superponen objetos combinados de dos materiales." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Eliminar (si las hubiera) las capas vacías por debajo de la primera capa impresa. Deshabilitar este ajuste puede hacer que aparezcan primeras capas vacías si el ajuste de tolerancia de segmentación está establecido en Exclusiva o Medio." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la base de la balsa, lo que hará que esta se vuelva convexa." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la parte central de la balsa, lo que hará que esta se vuelva convexa." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Retire las esquinas interiores de la parte superior de la balsa, lo que hará que esta se vuelva convexa." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Le permite eliminar las esquinas internas de la balsa, haciéndola convexa." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Elimina los agujeros en cada capa y mantiene solo la forma exterior. Esto ignorará cualquier geometría interna invisible. Sin embargo, también ignora los agujeros de la capa que pueden verse desde arriba o desde abajo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Reemplaza la parte más externa del patrón superior/inferior con un número de líneas concéntricas. Mediante el uso de una o dos líneas mejora los techos que comienzan en el material de relleno." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Informes de eventos que se salen de los umbrales establecidos" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferencia de apoyo" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retracción antes de la pared exterior" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retracción en el cambio de capa" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrae el filamento cuando la tobera se mueve sobre un área no impresa." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Retrae el filamento cuando la tobera se mueve a la siguiente capa." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distancia de retracción" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Desplazamiento mínimo de retracción" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidad de retracción" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidad de retracción" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Derecha" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Escale la velocidad del ventilador a 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Escale la velocidad del ventilador para que esté entre 0 y 1 en lugar de entre 0 y 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala para la compensación de la contracción" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La escena tiene mallas de soporte" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferencia de esquina de costura" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Establecer secuencia de impresión manualmente" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Establece la altura del parabrisas. Seleccione esta opción para imprimir el parabrisas a la altura completa del modelo o a una altura limitada." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Ajustes utilizados en la impresión con varios extrusores." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Ajustes que únicamente se utilizan si CuraEngine no se ejecuta desde la interfaz de Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retracción inicial de tobera compartida" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Esquina más pronunciada" + +msgctxt "shell description" +msgid "Shell" +msgstr "Perímetro" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Más corta" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar versiones de la máquina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Capas de soporte de los bordes del forro" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espesor de soporte de los bordes del forro" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distancia de expansión del forro" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Superposición del forro" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Porcentaje de superposición del forro" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Anchura de retirada del forro" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Las áreas de forro más estrechas que este valor no se expanden. Esto evita la expansión de las áreas de forro estrechas que se crean cuando la superficie del modelo tiene una inclinación casi vertical." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Omitir una de cada N líneas de conexión para que la estructura de soporte se descomponga fácilmente." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Omitir algunas conexiones de línea de soporte para que la estructura de soporte sea más fácil de descomponer. Este ajuste es aplicable al patrón de relleno del soporte en zigzag." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Falda" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distancia de falda" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura de la falda" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Recuento de líneas de falda" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleración de falda/borde" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor de falda o borde" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flujo de falda/borde" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Impulso de falda/borde" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ancho de línea de falda/borde" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longitud mínima de falda/borde" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidad de falda/borde" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerancia de segmentación" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidad de la capa inicial de partes pequeñas" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longitud máxima de pequeñas partes" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidad de pequeñas partes" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamaño máximo de agujero pequeño" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de impresión de capas pequeñas" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Zonas pequeñas superiores/inferiores en superficie" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Anchura superior/​inferior pequeña" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Las pequeñas partes de la primera capa se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Las pequeñas partes se imprimirán a este porcentaje de su velocidad de impresión normal. Una impresión más lenta puede mejorar la adhesión y la precisión." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Las zonas pequeñas superiores/inferiores se rellenan con paredes en lugar de con el patrón predeterminado superior/inferior. Esto ayuda a evitar movimientos bruscos. Está desactivado para la capa superior (expuesta al aire) por defecto. (Consulte: \"Zonas pequeñas superiores/inferiores en superficie\")." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Borde inteligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Costura inteligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Contornos espiralizados suaves" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suaviza los contornos espiralizados para reducir la visibilidad de la costura Z (la costura Z debería ser apenas visible en la impresora pero seguirá siendo visible en la vista de capas). Tenga en cuenta que la suavización tenderá a desdibujar detalles finos de la superficie." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento, lo cual se puede corregir aquí." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Algunos materiales pueden rezumar durante el movimiento de un desplazamiento de limpieza, lo cual se puede corregir aquí." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos especiales" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidad" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidad" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidad para mover el eje Z durante el salto." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Espiralizar el contorno exterior" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "La opción de espiralizar suaviza el movimiento en Z del borde exterior. Esto creará un incremento en Z constante durante toda la impresión. Esta función convierte un modelo sólido en una impresión de una sola pared con una parte inferior sólida. Esta función solo se debería habilitar cuando cada capa contenga una única pieza." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura en modo de espera" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Iniciar GCode" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Punto de partida de cada trayectoria en una capa. Cuando las trayectorias en capas consecutivas comienzan en el mismo punto, puede aparecer una costura vertical en la impresión. Cuando se alinean cerca de una ubicación especificada por el usuario, es más fácil eliminar la costura. Si se colocan aleatoriamente, las inexactitudes del inicio de las trayectorias se notarán menos. Si se toma la trayectoria más corta, la impresión será más rápida." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pasos por milímetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pasos por milímetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pasos por milímetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pasos por milímetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Soporte" + +msgctxt "support label" +msgid "Support" +msgstr "Soporte" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleración de soporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distancia inferior del soporte" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Recuento de líneas de pared de la base de soporte" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Recuento de líneas del borde de soporte" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ancho del borde de soporte" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Recuento de líneas de pedazos del soporte" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamaño de los pedazos de soporte" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidad del soporte" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridad de las distancias del soporte" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor del soporte" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleración del suelo del soporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidad del suelo del soporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor del suelo del soporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flujo de suelo de soporte" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansión horizontal de los suelos de soporte" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Impulso del suelo del soporte" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direcciones de línea del suelo de soporte" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distancia de línea del suelo de soporte" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ancho de línea del suelo de soporte" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patrón del suelo del soporte" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidad del suelo del soporte" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Grosor del suelo del soporte" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flujo de soporte" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansión horizontal del soporte" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleración de relleno de soporte" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor del relleno de soporte" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Impulso de relleno de soporte" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Grosor de la capa de relleno de soporte" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Dirección de línea de relleno de soporte" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidad de relleno del soporte" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleración de interfaz de soporte" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidad de la interfaz de soporte" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de la interfaz de soporte" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flujo de interfaz de soporte" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansión horizontal de la interfaz de soporte" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Impulso de interfaz de soporte" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direcciones de línea de interfaz de soporte" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ancho de línea de interfaz de soporte" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patrón de la interfaz de soporte" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridad de la interfaz de soporte" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidad de interfaz del soporte" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Grosor de la interfaz del soporte" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Recuento de líneas de pared de la interfaz de soporte" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Impulso de soporte" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distancia de unión del soporte" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distancia de línea del soporte" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ancho de línea de soporte" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malla de soporte" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ángulo de voladizo del soporte" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patrón del soporte" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocación del soporte" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleración del techo del soporte" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidad del techo del soporte" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor del techo del soporte" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flujo de techo de soporte" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansión horizontal de los techos del soporte" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Impulso del techo del soporte" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direcciones de línea del techo de soporte" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distancia de línea del techo del soporte" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ancho de línea del techo de soporte" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patrón del techo del soporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidad del techo del soporte" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Grosor del techo del soporte" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Recuento de líneas de pared del techo de soporte" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidad de soporte" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura del escalón de la escalera del soporte" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Ancho máximo del escalón de la escalera del soporte" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ángulo de pendiente mínimo del escalón de la escalera de soporte" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estructura de soporte" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distancia superior del soporte" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Recuento de líneas de pared del soporte" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distancia X/Y del soporte" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distancia en Z del soporte" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Líneas de soporte preferidas" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Soporte preferido" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidad del ventilador para forro con soporte" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energía de la superficie" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superficie" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendencia de adherencia de la superficie." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energía de la superficie." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Intercambie el orden de impresión de las líneas más internas y del segundo borde más interno. De ese modo se mejora la eliminación del borde." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Cambiar la malla a la que pertenecerán los volúmenes que se cruzan en cada capa, de forma que las mallas superpuestas se entrelacen. Desactivar esta opción dará lugar a que una de las mallas reciba todo el volumen de la superposición y que este se elimine de las demás mallas." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distancia horizontal objetivo entre dos capas adyacentes. Si se reduce este ajuste, se tendrán que utilizar capas más finas para acercar más los bordes de las capas." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordenada X de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Coordenada X de la posición cerca de donde se comienza a imprimir cada parte en una capa." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada X de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordenada Y de la posición cerca de donde se encuentra la pieza para comenzar a imprimir cada capa." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Coordenada Y de la posición cerca de donde se comienza a imprimir cada parte en una capa." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Y de la posición en la que la tobera se coloca al inicio de la impresión." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Coordenada Z de la posición en la que la tobera queda preparada al inicio de la impresión." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Aceleración durante la impresión de la capa inicial." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Aceleración de la capa inicial." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Aceleración de los movimientos de desplazamiento de la capa inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Aceleración a la que se imprimen las paredes interiores." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Aceleración a la que se imprime el relleno." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "La aceleración a la que se produce el alisado." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Aceleración a la que se realiza la impresión." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Aceleración a la que se imprime la capa base de la balsa." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Aceleración a la que se imprimen los suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la adhesión de soporte en la parte superior del modelo." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Aceleración a la que se imprime el relleno de soporte." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Aceleración a la que se imprime la capa intermedia de la balsa." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Aceleración a la que se imprimen las paredes exteriores." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Aceleración a la que se imprime la torre auxiliar." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Aceleración a la que se imprime la balsa." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Aceleración a la que se imprimen los techos y suelos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Aceleración a la que se imprimen los techos del soporte. Imprimirlos a una aceleración inferior puede mejorar la calidad del voladizo." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Aceleración a la que se imprimen la falda y el borde. Normalmente, esto se hace a la aceleración de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una aceleración diferente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Aceleración a la que se imprime la estructura de soporte." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores de la balsa." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "La aceleración con la que se imprimen las paredes internas de la superficie superior." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "La aceleración con la que se imprimen las paredes más externas de la superficie superior." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Aceleración a la que se imprimen las paredes." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Aceleración a la que se imprimen las capas de la superficie superior del forro." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Aceleración a la que se imprimen las capas superiores/inferiores." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Aceleración a la que se realizan los movimientos de desplazamiento." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Cantidad de material (relativa a la línea del forro normal) que se extruye durante el alisado. Dejar la tobera llena permite rellenar algunas grietas de la superficie, pero llenarla demasiado puede provocar la sobrextrusión y afectar a la superficie." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes son un porcentaje del ancho de la línea de relleno. Una ligera superposición permite que las paredes estén firmemente unidas al relleno." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Cantidad de superposición entre el relleno y las paredes. Una ligera superposición permite que las paredes conecten firmemente con el relleno." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Distancia de la retracción al cambiar los extrusores. Utilice el valor 0 para que no haya retracción. Por norma general, este valor debe ser igual a la longitud de la zona de calentamiento." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Ángulo entre el plano horizontal y la parte cónica que hay justo encima de la punta de la tobera." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Ángulo del techo superior de una torre. Un valor más alto da como resultado techos de torre en punta, un valor más bajo da como resultado techos de torre planos." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Ángulo del voladizo de las paredes exteriores creado para el molde. 0º hará el perímetro exterior del molde vertical, mientras que 90º hará el exterior del modelo seguido del contorno del modelo." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "El ángulo del diámetro de las ramas es gradualmente más alto según se acercan a la base. Un ángulo de 0 ocasionará que las ramas tengan un grosor uniforme en toda su longitud. Un poco de ángulo puede aumentar la estabilidad del soporte en árbol." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Ángulo de inclinación del soporte cónico. Donde 0 grados es vertical y 90 grados es horizontal. Cuanto más pequeños son los ángulos, más robusto es el soporte, pero consta de más material. Los ángulos negativos hacen que la base del soporte sea más ancha que la parte superior." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Densidad media de los puntos introducidos en cada polígono en una capa. Tenga en cuenta que los puntos originales del polígono se descartan, así que una baja densidad produce una reducción de la resolución." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Distancia media entre los puntos aleatorios introducidos en cada segmento de línea. Tenga en cuenta que los puntos originales del polígono se descartan, así que un suavizado alto produce una reducción de la resolución. Este valor debe ser mayor que la mitad del grosor del forro difuso." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marca del material utilizado." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Aceleración predeterminada del movimiento del cabezal de impresión." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La temperatura predeterminada que se utiliza para imprimir. Debería ser la temperatura básica del material. Las demás temperaturas de impresión deberían calcularse a partir de este valor" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "La temperatura predeterminada que se utiliza en placa de impresión caliente. Debería ser la temperatura básica de una placa de impresión. Las demás temperaturas de impresión deberían calcularse a partir de este valor" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Densidad de los suelos de la estructura de soporte. Un valor superior da como resultado una mejor adhesión del soporte en la parte superior del modelo." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Densidad de los techos de la estructura de soporte. Un valor superior da como resultado mejores voladizos pero los soportes son más difíciles de retirar." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la segunda capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densidad de la tercera capa de forro del puente. Un valor inferior a 100 aumentará los huecos entre las líneas del forro." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Profundidad (dimensión sobre el eje Y) del área de impresión." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Diámetro de una torre especial." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "El diámetro de las ramas más finas del soporte en árbol. Cuanto más gruesas sean las ramas, más robustas serán. Las ramas que estén cerca de la base serán más gruesas que esto." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "El diámetro de la parte superior de la punta de las ramas de soporte en árbol." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "El diámetro de la rueda que dirige el material hacia el alimentador." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "El diámetro de las ramas más anchas del soporte en árbol. Un tronco más grueso es más resistente, pero uno más delgado ocupa menos espacio en la placa de impresión." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "La diferencia de altura de la siguiente altura de capa en comparación con la anterior." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distancia entre las líneas del alisado." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Distancia entre la tobera y las partes ya impresas, cuando se evita durante movimientos de desplazamiento." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Distancia entre las líneas de balsa para la capa base de la balsa. Un amplio espaciado facilita la retirada de la balsa de la placa de impresión." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Distancia entre las líneas de la balsa para la capa intermedia de la balsa. La espaciado del centro debería ser bastante amplio, pero lo suficientemente denso como para soportar las capas superiores de la balsa." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Distancia entre las líneas de la balsa para las capas superiores de la balsa. La separación debe ser igual a la ancho de línea para producir una superficie sólida." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distancia entre las líneas del raft para la capa única del raft de la torre de cebado. Un espaciado amplio facilita la eliminación del raft de la placa de construcción." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "La distancia del límite entre los modelos para generar una estructura entrelazada, medida en celdas. Un número demasiado bajo de celdas provocará una adhesión deficiente." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Distancia desde el modelo hasta la línea del borde exterior. Un borde mayor mejora la adhesión a la plataforma de impresión, pero también reduce el área de impresión efectiva." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "La distancia desde el exterior de un modelo en el que no se generarán estructuras entrelazadas, medida en celdas." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distancia desde la punta de la tobera que transfiere calor al filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "La distancia a la que los forros inferiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que el forro se adhiera mejor a las paredes de la capa inferior. Los valores inferiores ahorran material." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "La distancia a la que los forros se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de las capas vecinas se adhieran mejor al forro. Los valores inferiores ahorran material." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "La distancia a la que los forros superiores se expanden en el relleno. Los valores superiores hacen que el forro se adhiera mejor al patrón de relleno y que las paredes de la capa superior se adhieran mejor al forro. Los valores inferiores ahorran material." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distancia para mover el cabezal hacia adelante y hacia atrás a lo largo del cepillo." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Los extremos de las líneas de relleno se acortan para ahorrar material. Esta configuración es el ángulo de voladizo de los extremos de estas líneas." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Velocidad adicional a la que se enfría la tobera durante la extrusión. El mismo valor se utiliza para indicar la velocidad de calentamiento perdido cuando se calienta durante la extrusión." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la primera capa del relleno de soporte. Se emplea en la extrusión múltiple." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la primera capa de la balsa. Se emplea en la extrusión múltiple." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los suelos del soporte. Se emplea en la extrusión múltiple." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el relleno del soporte. Se emplea en la extrusión múltiple." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la capa media de la balsa. Se emplea en la extrusión múltiple." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los techos y suelos del soporte. Se emplea en la extrusión múltiple." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir los techos del soporte. Se emplea en la extrusión múltiple." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la falda o el borde. Se emplea en la extrusión múltiple." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la falda/borde/balsa. Se emplea en la extrusión múltiple." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el soporte. Se emplea en la extrusión múltiple." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la capa o capas superiores de la balsa. Se emplea en la extrusión múltiple." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el relleno. Se emplea en la extrusión múltiple." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir las paredes interiores. Se emplea en la extrusión múltiple." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir la pared exterior. Se emplea en la extrusión múltiple." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el forro superior e inferior. Se emplea en la extrusión múltiple." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir el nivel superior del forro. Se emplea en la extrusión múltiple." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "El tren extrusor que se utiliza para imprimir paredes. Se emplea en la extrusión múltiple." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Velocidad del ventilador para la capa base de la balsa." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Velocidad del ventilador para la capa intermedia de la balsa." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Velocidad del ventilador para la balsa." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Velocidad del ventilador para las capas superiores de la balsa." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente en el relleno de la impresión." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "La ubicación del archivo de una imagen de la que los valores de brillo determinan la densidad mínima en la ubicación correspondiente del soporte." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Las primeras capas se imprimen más lentamente que el resto del modelo para obtener una mejor adhesión a la placa de impresión y mejorar la tasa de éxito global de las impresiones. La velocidad aumenta gradualmente en estas capas." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Hueco entre la capa final de la balsa y la primera capa del modelo. Solo la primera capa se eleva según este valor para reducir la unión entre la capa de la balsa y el modelo y que sea más fácil despegar la balsa." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Altura (dimensión sobre el eje Z) del área de impresión." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Altura por encima de las piezas horizontales del modelo del que imprimir el molde." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Altura a la que giran los ventiladores en la velocidad normal del ventilador. En las capas más bajas, la velocidad del ventilador aumenta gradualmente desde la velocidad inicial del ventilador hasta la velocidad normal del ventilador." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Diferencia de altura entre la punta de la tobera y el sistema del puente (ejes X e Y)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Diferencia de altura entre la punta de la tobera y la parte más baja del cabezal de impresión." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Diferencia de altura cuando se realiza un salto en Z después de un cambio de extrusor." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Diferencia de altura cuando se realiza un salto en Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Altura de cada capa en mm. Los valores más altos producen impresiones más rápidas con una menor resolución, los valores más bajos producen impresiones más lentas con una mayor resolución." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Altura de un relleno de determinada densidad antes de cambiar a la mitad de la densidad." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Altura del relleno de soporte de una determinada densidad antes de cambiar a la mitad de la densidad." + +msgctxt "interlocking_beam_layer_count description" +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 "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." + +msgctxt "interlocking_orientation description" +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 "La altura de los haces de la estructura entrelazada, medida en número de capas. Cuantas menos capas, mayor resistencia, pero más susceptible a los defectos." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Altura de capa inicial en mm. Una capa inicial más gruesa se adhiere a la placa de impresión con mayor facilidad." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "La altura de la base de la torre de cebado. Aumentar este valor resultará en una torre de cebado más robusta porque la base será más ancha. Si esta configuración es demasiado baja, la torre de cebado no tendrá una base resistente." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Altura de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables. Configúrelo en cero para desactivar el comportamiento de escalera." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "La distancia horizontal entre la primera línea de borde y el contorno de la primera capa de la impresión. Un pequeño orificio puede facilitar la eliminación del borde al tiempo que proporciona ventajas térmicas." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "La distancia horizontal entre la falda y la primera capa de la impresión." +"Se trata de la distancia mínima. Múltiples líneas de falda se extenderán hacia el exterior a partir de esta distancia." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Las líneas de relleno se simplifican para ahorrar tiempo al imprimir. Este es el ángulo máximo permitido del voladizo sobre la longitud de la línea de relleno." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "El patrón de relleno se mueve esta distancia a lo largo del eje Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Diámetro interior de la tobera. Cambie este ajuste cuando utilice un tamaño de tobera no estándar." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Impulso con el que se imprime la capa base de la balsa." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Impulso con el que se imprime la capa intermedia de la balsa." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Impulso con el que se imprime la balsa." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Impulso con el que se imprimen las capas superiores de la balsa." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas inferiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro inferior en las superficies inclinadas del modelo." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior/inferior en las superficies inclinadas del modelo." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Anchura máxima de las áreas superiores de forro que se deben retirar. Todas las áreas de forro inferiores a este valor desaparecerán. Esto puede contribuir a limitar el tiempo y el material empleados en imprimir el forro superior en las superficies inclinadas del modelo." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Capa en la que los ventiladores giran a velocidad normal del ventilador. Si la velocidad normal del ventilador a altura está establecida, este valor se calcula y redondea a un número entero." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Tiempo de capa que establece el umbral entre la velocidad normal y la máxima del ventilador. Las capas que se imprimen más despacio que este tiempo utilizan la velocidad de ventilador regular. Para las capas más rápidas el ventilador aumenta la velocidad gradualmente hacia la velocidad máxima del ventilador." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Longitud del material retraído durante un movimiento de retracción." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "El factor de magnitud utilizado para la pendiente de la base de la torre de cebado. Si aumentas este valor, la base se volverá más delgada. Si lo disminuyes, la base se volverá más gruesa." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Material de la placa de impresión colocado en la impresora." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "La diferencia de altura máxima permitida en comparación con la altura de la capa base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Ángulo de separación máximo de la placa de rezumado. Un valor 0° significa vertical y un valor de 90°, horizontal. Un ángulo más pequeño resultará en menos placas de rezumado con errores, pero más material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Ángulo máximo de los voladizos una vez que se han hecho imprimibles. Un valor de 0º hace que todos los voladizos sean reemplazados por una pieza del modelo conectada a la placa de impresión y un valor de 90º no cambiará el modelo." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "El ángulo máximo de las ramas mientras crecen alrededor del modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para abarcar más." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "El área máxima de un agujero en la base del modelo antes de que se elimine mediante la herramienta Convertir voladizo en imprimible. Se conservarán los agujeros más pequeños. Con un valor de 0 mm² se rellenan todos los agujeros de la base del modelo." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "La desviación máxima permitida al reducir la resolución en el ajuste de la resolución máxima. Si se aumenta el valor, la impresión será menos precisa pero el GCode será más pequeño. La desviación máxima es un límite para la resolución máxima, por lo que si las dos entran en conflicto, la desviación máxima siempre tendrá prioridad." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Distancia máxima entre las estructuras del soporte en las direcciones X/Y. Cuando las estructuras separadas están más cerca entre sí que este valor, se combinan en una." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "La distancia máxima en mm para mover el filamento con el fin de compensar los cambios en el caudal." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "La desviación máxima del área de extrusión permitida al eliminar puntos intermedios de una línea recta. Un punto intermedio puede actuar como un punto de cambio de ancho en una línea recta larga. Por lo tanto, si se elimina, la línea tendrá un ancho uniforme y, como resultado, perderá (o ganará) área de extrusión. En caso de incremento, es posible que observe una extrusión leve por debajo (o por encima) entre paredes paralelas rectas, ya que será posible eliminar múltiples puntos de cambio de ancho intermedio. La impresión será menos precisa, pero el GCode será más pequeño." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Cambio en la velocidad instantánea máxima durante la impresión de la capa inicial." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Cambio en la velocidad instantánea máxima del cabezal de impresión." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Cambio en la velocidad instantánea máxima durante el alisado." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes interiores." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los suelos del soporte." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime el relleno de soporte." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes exteriores." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la torre auxiliar." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos y suelos del soporte." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen los techos del soporte." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen la falta y el borde." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la estructura de soporte." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes exteriores más externas de la superficie superior." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "El cambio máximo de velocidad instantánea con el que se imprimen las paredes interiores de la superficie superior." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las paredes." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprime la capa de la superficie superior del forro." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Cambio en la velocidad instantánea máxima a la que se imprimen las capas superiores/inferiores." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Cambio en la velocidad instantánea máxima a la que realizan los movimientos de desplazamiento." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Longitud máxima de las ramas que pueden imprimirse en el aire." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Velocidad máxima del motor de la dirección X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Velocidad máxima del motor de la dirección Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Velocidad máxima del motor de la dirección Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Velocidad máxima del filamento." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Ancho máximo de los escalones de la parte inferior de la escalera del soporte que descansa sobre el modelo. Un valor más bajo hace que el soporte sea difícil de retirar pero valores demasiado altos pueden producir estructuras del soporte inestables." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Distancia mínima entre la parte exterior del molde y la parte exterior del modelo." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Velocidad mínima de movimiento del cabezal de impresión." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La temperatura mínima durante el calentamiento hasta alcanzar la temperatura de impresión a la cual puede comenzar la impresión." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Tiempo mínimo que un extrusor debe permanecer inactivo antes de que la tobera se enfríe. Para que pueda enfriarse hasta alcanzar la temperatura en modo de espera, el extrusor deberá permanecer inactivo durante un tiempo superior al establecido." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "El ángulo mínimo de los voladizos internos para los que se agrega relleno. A partir de un valor de 0 º todos los objetos estarán totalmente rellenos, a 90 º no se proporcionará ningún relleno." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Ángulo mínimo de los voladizos para los que se agrega soporte. A partir de un valor de 0º todos los voladizos tendrán soporte, a 90º no se proporcionará ningún soporte." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Distancia mínima de desplazamiento necesario para que no se produzca retracción alguna. Esto ayuda a conseguir un menor número de retracciones en un área pequeña." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "La longitud mínima de la falda o el borde. Si el número de líneas de falda o borde no alcanza esta longitud, se agregarán más líneas de falda o borde hasta alcanzar esta longitud mínima. Nota: Si el número de líneas está establecido en 0, esto se ignora." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "La anchura mínima de línea para las paredes tipo polilínea para rellenar el hueco de la línea central. Este parámetro determina a partir de qué grosor de modelo pasamos de imprimir dos líneas de pared a imprimir dos paredes exteriores y una sola pared central en el medio. Un ancho mínimo más alto de la línea de pared impar conduce a un ancho máximo más alto de la línea de pared par. El ancho máximo de línea de pared impar se calcula como el doble del ancho mínimo de línea de pared par." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "El ancho de línea mínimo para paredes poligonales normales. Este ajuste determina a qué espesor de modelo pasamos de imprimir una sola línea de perímetro delgada a imprimir dos líneas de perímetro. Un ancho mínimo más alto de la línea perimetral par conduce a un ancho máximo más alto de la línea perimetral impar. El ancho máximo de la línea perimetral par se calcula como el ancho de la línea perimetral exterior + 0,5 * el ancho mínimo de la línea perimetral impar." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Velocidad de impresión mínima, a pesar de ir más despacio debido al tiempo mínimo de capa. Cuando la impresora vaya demasiado despacio, la presión de la tobera puede ser demasiado baja y resultar en una impresión de mala calidad." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "El tamaño mínimo de un segmento de línea tras la segmentación. Si se aumenta, la resolución de la malla será menor. Esto puede permitir a la impresora mantener la velocidad que necesita para procesar GCode y aumentará la velocidad de segmentación al eliminar detalles de la malla que, de todas formas, no puede procesar." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "El tamaño mínimo de un segmento de línea de desplazamiento tras la segmentación. Si se aumenta, los movimientos de desplazamiento tendrán esquinas menos suavizadas. Esto puede le permite a la impresora mantener la velocidad que necesita para procesar GCode pero puede ocasionar que evitar el modelo sea menos preciso." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pendiente mínima de la zona para un efecto del escalón de la escalera de soporte. Los valores más bajos deberían facilitar la extracción del soporte en pendientes poco profundas, pero los valores muy bajos pueden dar resultados realmente contradictorios en otras partes del modelo." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Tiempo mínimo empleado en una capa. Esto fuerza a la impresora a ir más despacio, para emplear al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Es posible que el tiempo para cada capa sea inferior al tiempo mínimo si se desactiva Levantar el cabezal o si la velocidad mínima se ve modificada de otro modo." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "El volumen mínimo de cada capa de la torre auxiliar que permite purgar suficiente material." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "El diámetro máximo de una rama que debe conectarse al modelo puede aumentar al fusionarse con ramas que podrían llegar a la placa de impresión. Al aumentarlo, se reduce el tiempo de impresión, pero el área de soporte que descansa sobre el modelo aumenta" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Nombre del modelo de la impresora 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Id. de la tobera de un tren extrusor, como \"AA 0.4\" y \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "La tobera evita las partes ya impresas al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "La tobera evita los soportes ya impresos al desplazarse. Esta opción solo está disponible cuando se ha activado la opción de peinada." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Número de capas inferiores. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "El número de contornos que se imprimirán alrededor del patrón lineal en la capa base de la balsa." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas medias de la balsa." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal en las capas superiores de la balsa." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "El número de contornos a imprimir alrededor del patrón lineal de la balsa." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "El número de capas de relleno que soportan los bordes del forro." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "El número de capas inferiores iniciales, desde la capa de impresión hacia arriba. Al calcularlo por el grosor inferior, este valor se redondea a un número entero." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "El número de capas entre la base y la superficie de la balsa. Estas comprenden el espesor principal de la balsa. Al aumentar este número se crea una balsa más gruesa y resistente." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Número de líneas utilizadas para un borde. Más líneas de borde mejoran la adhesión a la plataforma de impresión, pero también reducen el área de impresión efectiva." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Número de líneas utilizadas para el borde de soporte. Más líneas de borde mejoran la adhesión a la placa de impresión, pero requieren material adicional." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Número de capas superiores encima de la segunda capa de la balsa. Estas son las capas en las que se asienta el modelo. Dos capas producen una superficie superior más lisa que una." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Número de capas superiores. Al calcularlo por el grosor superior, este valor se redondea a un número entero." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "El número de capas del nivel superior del forro. Normalmente es suficiente con una sola capa para generar superficies superiores con mayor calidad." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que el soporte rodea el relleno. Añadir una pared puede hacer que la impresión de soporte sea más fiable y pueda soportar mejor los voladizos pero aumenta el tiempo de impresión y el material utilizado." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear el suelo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear el techo de la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "El número de paredes con las que rodear la interfaz de soporte. Añadir una pared puede hacer que la copia impresa del soporte sea más fiable y pueda sostener mejor los voladizos, pero aumentará el tiempo de impresión y el material utilizado." + +msgctxt "wall_distribution_count description" +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 "El número de paredes, contadas desde el centro, en las que se distribuirá la variación. Los valores más bajos indican que el ancho de las paredes externas no cambia." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Número de paredes. Al calcularlo por el grosor de las paredes, este valor se redondea a un número entero." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Diámetro exterior de la punta de la tobera." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Patrón del material de relleno de la impresión. El método de llenado en línea y en zigzag cambia de dirección en capas alternas para reducir los costes de material. Los patrones de rejilla, triángulo, trihexágono, cubo, octaédrico, cubo bitruncado, transversal y concéntrico se imprimen en todas las capas por completo. Los rellenos de giroide, cúbico, cúbico bitruncado y octaédrico se alternan en cada capa para lograr una distribución más uniforme de la fuerza en todas las direcciones. El relleno de rayos intenta minimizar el relleno apoyando solo la parte superior del objeto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Patrón de las estructuras del soporte de la impresión. Las diferentes opciones disponibles dan como resultado un soporte robusto o fácil de retirar." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "El patrón de las capas de nivel superior." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Patrón de las capas superiores/inferiores." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "El patrón que aparece en la parte inferior de la impresión de la primera capa." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "El patrón que se usará para el alisado de las superficies superiores." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Patrón con el que se imprimen los suelos del soporte." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Patrón con el que se imprime la interfaz de soporte con el modelo." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Patrón con el que se imprimen los techos del soporte." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La posición cerca de donde comenzará la impresión de cada parte de una capa." + +msgctxt "support_tree_angle_slow description" +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 "El ángulo para las ramas de preferencia cuando no tienen que evitar el modelo. Utilice un ángulo más pequeño para hacerlas más verticales y más estables. Utilice un ángulo mayor para que las ramas se fusionen más rápido." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "La colocación preferida para las estructuras de soporte. Si las estructuras no se pueden poner en la colocación preferida, se pondrán en otro lugar, incluso si eso significa situarlas sobre el modelo." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Cambio en la velocidad instantánea máxima de la capa inicial." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forma de la placa de impresión sin tener en cuenta las zonas externas al área de impresión." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forma del cabezal de impresión. Estas son las coordenadas relativas a la posición del cabezal de impresión, que generalmente es la posición de su primer extrusor. Las dimensiones de la izquierda y de la parte delantera del cabezal de impresión deben ser coordenadas negativas." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Tamaño de las bolsas en cruces del patrón de cruz 3D en las alturas en las que el patrón coincide consigo mismo." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Menor Volumen que deberá tener una trayectoria de extrusión antes de permitir el depósito por inercia. Para trayectorias de extrusión más pequeñas, se acumula menos presión en el tubo guía y, por tanto, el volumen depositado por inercia se escala linealmente. Este valor debe ser siempre mayor que el Volumen de depósito por inercia." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidad (°C/s) de enfriamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Velocidad (°C/s) de calentamiento de la tobera calculada como una media a partir de las temperaturas de impresión habituales y la temperatura en modo de espera." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Velocidad a la que se imprimen todas las paredes interiores. Imprimir la pared interior más rápido que la exterior reduce el tiempo de impresión. Ajustar este valor entre la velocidad de la pared exterior y la velocidad a la que se imprime el relleno puede ir bien." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Velocidad a la que se imprimen las áreas de forro del puente." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Velocidad a la que se imprime el relleno." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Velocidad a la que se realiza la impresión." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa de base de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Velocidad a la que se imprimen las paredes del puente." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Velocidad a la que giran los ventiladores al comienzo de la impresión. En las capas posteriores, la velocidad del ventilador aumenta gradualmente hasta la capa correspondiente a la velocidad normal del ventilador a altura." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Velocidad a la que giran los ventiladores antes de alcanzar el umbral. Cuando una capa se imprime más rápido que el umbral, la velocidad del ventilador se inclina gradualmente hacia la velocidad máxima del ventilador." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Velocidad a la que giran los ventiladores en el tiempo mínimo de capa. La velocidad del ventilador aumenta gradualmente entre la velocidad normal y máxima del ventilador cuando se alcanza el umbral." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Velocidad a la que se prepara el filamento durante un movimiento de retracción de limpieza." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Velocidad a la que se retrae el filamento y se prepara durante un movimiento de retracción de limpieza." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Velocidad a la que se retrae el filamento durante una retracción del cambio de tobera." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Velocidad a la que se retrae el filamento durante un movimiento de retracción de limpieza." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Velocidad de retracción del filamento. Se recomienda una velocidad de retracción alta, pero si es demasiado alta, podría hacer que el filamento se aplaste." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Velocidad a la que se imprimen los suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la adhesión del soporte en la parte superior del modelo." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Velocidad a la que se rellena el soporte. Imprimir el relleno a una velocidad inferior mejora la estabilidad." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Velocidad a la que se imprime la capa intermedia de la balsa. Esta debe imprimirse con bastante lentitud, ya que el volumen de material que sale de la tobera es bastante alto." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Velocidad a la que se imprimen las paredes exteriores. Imprimir la pared exterior a una velocidad inferior mejora la calidad final del forro. Sin embargo, una gran diferencia entre la velocidad de la pared interior y de la pared exterior afectará negativamente a la calidad." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Velocidad a la que se imprime la torre auxiliar. Imprimir la torre auxiliar a una velocidad inferior puede conseguir más estabilidad si la adherencia entre los diferentes filamentos es insuficiente." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Velocidad a la que giran los ventiladores de refrigeración de impresión." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Velocidad a la que se imprime la balsa." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocidad a la que se imprimen los techos y suelos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocidad a la que se imprimen los techos del soporte. Imprimirlos a una velocidad inferior puede mejorar la calidad del voladizo." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Velocidad a la que se imprimen la falda y el borde. Normalmente, esto se hace a la velocidad de la capa inicial, pero a veces es posible que se prefiera imprimir la falda o el borde a una velocidad diferente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Velocidad a la que se imprime la estructura de soporte. Imprimir el soporte a una mayor velocidad puede reducir considerablemente el tiempo de impresión. La calidad de superficie de la estructura de soporte no es importante, ya que se elimina después de la impresión." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Velocidad a la que se imprimen las capas superiores de la balsa. Estas deben imprimirse un poco más lento para permitir que la tobera pueda suavizar lentamente las líneas superficiales adyacentes." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocidad a la que se imprimen las paredes internas de la superficie superior." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocidad con la que se imprimen las paredes más externas de la superficie superior." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Velocidad a la que se realiza el movimiento vertical en la dirección Z para los saltos en Z. Suele ser inferior a la velocidad de impresión porque la placa de impresión o el puente de la máquina es más difícil de desplazar." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Velocidad a la que se imprimen las paredes." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocidad a la que pasa por encima de la superficie superior." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Velocidad a la que debe retraerse el filamento para que se rompa limpiamente." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Velocidad a la que se imprimen las capas de la superficie superior del forro." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Velocidad a la que se imprimen las capas superiores/inferiores." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Velocidad a la que tienen lugar los movimientos de desplazamiento." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Velocidad a la que se desplaza durante el depósito por inercia con relación a la velocidad de la trayectoria de extrusión. Se recomienda un valor ligeramente por debajo del 100%, ya que la presión en el tubo guía disminuye durante el movimiento depósito por inercia." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La velocidad de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión. No influye en las estructuras de adhesión de la placa de impresión en sí, como el borde y la balsa." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para mejorar la adherencia a la placa de impresión." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Velocidad de impresión de la capa inicial. Se recomienda un valor más bajo para evitar que las partes ya impresas se separen de la placa de impresión. El valor de este ajuste se puede calcular automáticamente a partir del ratio entre la velocidad de desplazamiento y la velocidad de impresión." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Temperatura a la que se rompe el filamento de forma limpia." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La temperatura del entorno de impresión. Si el valor es 0, la temperatura de volumen de impresión no se ajustará." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Temperatura de la tobera cuando otra se está utilizando en la impresión." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La temperatura a la que se puede empezar a enfriar justo antes de finalizar la impresión." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "La temperatura utilizada para imprimir la primera capa." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Temperatura de la impresión." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Temperatura de la placa de impresión una vez caliente en la primera capa. Si el valor es 0, la placa de impresión no se calentará en la primera capa." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "La temperatura utilizada para la placa de impresión caliente. Si el valor es 0, la placa de impresión no se calentará." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La temperatura utilizada para purgar el material. Debería ser aproximadamente igual a la temperatura de impresión más alta posible." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Grosor de las capas inferiores en la impresión. Este valor dividido por la altura de capa define el número de capas inferiores." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "El grosor del relleno extra que soporta los bordes del forro." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Grosor de la interfaz del soporte donde toca con el modelo, ya sea en la parte superior o inferior." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Grosor de los suelos del soporte. Este valor controla el número de capas densas que se imprimen en las partes superiores de un modelo, donde apoya el soporte." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Grosor de los techos del soporte. Este valor controla el número de capas densas en la parte superior del soporte, donde apoya el modelo." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Grosor de las capas superiores en la impresión. Este valor dividido por la altura de capa define el número de capas superiores." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Grosor de las capas superiores/inferiores en la impresión. Este valor dividido por la altura de la capa define el número de capas superiores/inferiores." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Grosor de las paredes en dirección horizontal. Este valor dividido por el ancho de la línea de pared define el número de paredes." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Grosor por capa de material de relleno. Este valor siempre debe ser un múltiplo de la altura de la capa y, de lo contrario, se redondea." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Grosor por capa de material de relleno de soporte. Este valor siempre debe ser un múltiplo de la altura de la capa; de lo contrario, se redondea." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Tipo de GCode que se va a generar." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "El tipo de material utilizado." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volumen que de otro modo rezumaría. Este valor generalmente debería ser próximo al cubicaje del diámetro de la tobera." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ancho (dimensión sobre el eje X) del área de impresión." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Anchura del borde de impresión que se imprime por debajo del soporte. Una anchura de soporte amplia mejora la adhesión a la placa de impresión, pero requieren material adicional." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "El ancho de los haces de la estructura entrelazada." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "El ancho del borde/base de la torre de cebado. Una base más grande mejora la adhesión a la placa de construcción, pero también reduce el área efectiva de impresión." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Anchura de la torre auxiliar." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Ancho dentro de la cual se fluctúa. Se recomienda mantener este valor por debajo del ancho de la pared exterior, ya que las paredes interiores permanecen inalteradas." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Ventana en la que se aplica el recuento máximo de retracciones. Este valor debe ser aproximadamente el mismo que la distancia de retracción, lo que limita efectivamente el número de veces que una retracción pasa por el mismo parche de material." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Coordenada X de la posición de la torre auxiliar." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Coordenada Y de la posición de la torre auxiliar." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Hay mallas de soporte presentes en la escena. Esta configuración está controlada por Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Controla la distancia del depósito por inercia del extrusor justo antes de empezar un puente. Un depósito por inercia antes del inicio del puente puede reducir la presión en la tobera y dar como resultado un puente más horizontal." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno de la base de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno medio de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla la medida en que se redondean las esquinas interiores en el contorno de la balsa. Las esquinas hacia el interior se redondean en semicírculo con un radio equivalente al valor aquí indicado. Este ajuste también elimina los orificios del contorno de la balsa que sean más pequeños que dicho círculo." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Este ajuste controla cuánto se redondean las esquinas interiores en el contorno superior de la balsa. Las esquinas interiores se redondean a un semicírculo con un radio igual al valor dado aquí. Este ajuste también elimina los huecos en el contorno de la balsa que sean más pequeños que dicho círculo." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Este ajuste limita el número de retracciones que ocurren dentro de la ventana de distancia mínima de extrusión. Dentro de esta ventana se ignorarán las demás retracciones. Esto evita retraer repetidamente el mismo trozo de filamento, ya que esto podría aplanar el filamento y causar problemas de desmenuzamiento." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Esto creará una pared alrededor del modelo que atrapa el aire (caliente) y lo protege contra flujos de aire exterior. Es especialmente útil para materiales que se deforman fácilmente." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diámetro de la punta" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección XY (horizontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar la contracción del material al enfriarse, el modelo se escala con este factor en la dirección Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar la contracción del material a medida que se enfría, el modelo se escala con este factor." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Capas superiores" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distancia de expansión del forro superior" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Anchura de retirada del forro superior" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleración de la superficie interna superior de la pared" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Sacudida de la pared exterior más externa de la superficie superior" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidad de la pared interna de la superficie superior" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flujo de la pared interior de la superficie superior" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleración de la superficie externa superior de la pared" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flujo de la pared exterior de la superficie superior" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Sacudida de la pared interior de la superficie superior" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidad de la pared externa de la superficie superior" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleración de la superficie superior del forro" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor de la superficie superior del forro" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flujo de forro de superficie superior" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Impulso de la superficie superior del forro" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Capas de la superficie superior del forro" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direcciones de línea de la superficie superior del forro" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ancho de línea de la superficie superior del forro" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patrón de la superficie superior del forro" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidad de la superficie superior del forro" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Grosor superior" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "El revestimiento superior e inferior no se expandirá cuando las superficies superior e inferior del objeto tengan un ángulo mayor que este valor. Esto evita la expansión de las pequeñas áreas de revestimiento que se crean cuando la superficie del modelo tiene una pendiente casi vertical. Un ángulo de 0° es horizontal y no provoca la extensión de ningún revestimiento exterior, mientras que un ángulo de 90 ° es vertical y provoca la extensión de todo el revestimiento exterior." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior o inferior" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior o inferior" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleración superior/inferior" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor superior/inferior" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flujo superior o inferior" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Impulso superior/inferior" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direcciones de línea superior/inferior" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ancho de línea superior/inferior" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patrón superior/inferior" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidad superior/inferior" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Grosor superior/inferior" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Tocando la placa de impresión" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diámetro de la torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ángulo del techo de la torre" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformación que se aplicará al modelo cuando se cargue desde el archivo." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta la colocacin de las estructuras del soporte. La colocacin se puede establecer tocando la placa de impresión o en todas partes. Cuando se establece en todas partes, las estructuras del soporte tambin se imprimirn en el modelo." +msgctxt "travel label" +msgid "Travel" +msgstr "Desplazamiento" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleración de desplazamiento" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distancia para evitar al desplazarse" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Impulso de desplazamiento" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidad de desplazamiento" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar el modelo como una superficie solo, un volumen o volúmenes con superficies sueltas. El modo de impresión normal solo imprime volúmenes cerrados. «Superficie» imprime una sola pared trazando la superficie de la malla sin relleno ni forro superior/inferior. «Ambos» imprime volúmenes cerrados de la forma habitual y cualquier polígono restante como superficies." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árbol" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triángulos" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diámetro del tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Volúmenes de superposiciones de uniones" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Las paredes no compatibles menores que este valor se imprimirán utilizando los ajustes de pared habituales. Las paredes no compatibles mayores se imprimirán utilizando los ajustes de pared de puente." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar capas de adaptación" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Usar torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilice una tasa de aceleración independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de aceleración de la línea impresa en su destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilice una tasa de impulso independiente para los movimientos de desplazamiento. Si está deshabilitada, los movimientos de desplazamiento utilizarán el valor de impulso de la línea impresa en su destino." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizar la extrusión relativa en lugar de la extrusión absoluta. El uso de pasos de extrusión relativos permite un procesamiento posterior más sencillo del GCode. Sin embargo, no es compatible con todas las impresoras y puede causar ligeras desviaciones en la cantidad de material depositado si se compara con los pasos de extrusión absolutos. Con independencia de este ajuste, el modo de extrusión se ajustará siempre en absoluto antes de la salida de cualquier secuencia GCode." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Usa torres especializadas como soporte de pequeñas áreas de voladizo. Estas torres tienen un diámetro mayor que la región que soportan. El diámetro de las torres disminuye cerca del voladizo, formando un techo." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilice esta malla para modificar el relleno de otras mallas con las que se superpone. Reemplaza las zonas de relleno de otras mallas con zonas de esta malla. Se sugiere imprimir una pared y no un forro superior/inferior para esta malla." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilice esta malla para especificar las áreas de soporte. Esta opción puede utilizarse para generar estructuras de soporte." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilice esta malla para especificar los lugares del modelo en los que no debería detectarse ningún voladizo. Esta opción puede utilizarse para eliminar estructuras de soporte no deseadas." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Especificada por el usuario" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Factor de escala vertical para la compensación de la contracción" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerancia vertical en las capas cortadas. Los contornos de una capa se generan normalmente pasando las secciones entrecruzadas a través del medio de cada espesor de capa (Media). Alternativamente, cada capa puede tener áreas ubicadas dentro del volumen a través de todo el grosor de la capa (Exclusiva) o una capa puede tener áreas ubicadas dentro en cualquier lugar de la capa (Inclusiva). La opción Inclusiva permite conservar la mayoría de los detalles, la opción Exclusiva permite obtener una adaptación óptima y la opción Media permite permanecer cerca de la superficie original." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar a que la placa de impresión se caliente" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar a la que la tobera se caliente" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleración de la pared" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Recuento de distribución de pared" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor de pared" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flujo de pared" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Impulso de pared" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Recuento de líneas de pared" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ancho de línea de pared" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Orden de paredes" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidad de pared" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Grosor de la pared" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longitud de transición de la pared" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distancia del filtro de transición a la pared" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margen del filtro de transición de pared" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ángulo de umbral de transición de pared" + +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Las paredes con un ángulo de voladizo mayor que este se imprimirán con los ajustes de voladizo de pared. Cuando el valor sea 90, no se aplicará la condición de voladizo a la pared. El voladizo que se apoya en el soporte tampoco se tratará como voladizo." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Cuando está activado, las trayectorias de las herramientas se corrigen para impresoras con planificadores de movimiento suave. Los pequeños movimientos que se desvían de la dirección general de la trayectoria de la herramienta se suavizan para mejorar los movimientos fluidos." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Cuando está habilitado, se optimiza el orden en el que se imprimen las líneas de relleno para reducir la distancia de desplazamiento. La reducción del tiempo de desplazamiento obtenido depende en gran parte del modelo que se está fragmentando, el patrón de relleno, la densidad, etc. Tenga en cuenta que, para algunos modelos que tienen pequeñas áreas de relleno, el tiempo para fragmentar el modelo se puede aumentar en gran medida." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Al habilitar esta opción, la velocidad del ventilador de enfriamiento de impresión cambia para las áreas de forro que se encuentran inmediatamente encima del soporte." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Cuando se habilita, las coordenadas de la costura en z son relativas al centro de cada pieza. De lo contrario, las coordenadas definen una posición absoluta en la placa de impresión." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Si es mayor que cero, los movimientos de desplazamiento de peinada que sean superiores a esta distancia utilizarán retracción. Si se establece como cero, no hay un máximo y los movimientos de peinada no utilizarán la retracción." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Cuando es mayor que cero, la expansión horizontal de los orificios se aplica gradualmente en orificios pequeños (los orificios pequeños se expanden más). Cuando se establezca en cero, la expansión horizontal de los orificios se aplicará a todos ellos. Los orificios mayores que el diámetro máximo de expansión horizontal de los orificios no se expanden." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Cuando es mayor que cero, la Expansión horizontal de agujeros es la cantidad de desplazamiento aplicada a todos los agujeros de cada capa. Los valores positivos aumentan el tamaño de los agujeros y los negativos lo reducen. Cuando esta configuración está activada, se puede ajustar aún más con el Diámetro máximo de expansión horizontal de agujeros." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprimen las áreas de forro del puente; la cantidad de material extruido se multiplica por este valor." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprimen las paredes del puente; la cantidad de material extruido se multiplica por este valor." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprime la segunda capa del forro del puente; la cantidad de material extruido se multiplica por este valor." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Cuando se imprime la tercera capa del forro del puente; la cantidad de material extruido se multiplica por este valor." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Cuando se alcanza la velocidad mínima debido al tiempo mínimo de capa, levante el cabezal de la impresión y espere el tiempo adicional hasta que se alcance el tiempo mínimo de capa." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Cuando el modelo tiene pequeños huecos verticales de solo unas pocas capas, normalmente suele haber forro alrededor de ellas en el espacio estrecho. Active este ajuste para no generar forro si el hueco vertical es muy pequeño. Esto mejora el tiempo de impresión y de segmentación, pero deja el relleno expuesto al aire." + +msgctxt "wall_transition_angle description" +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 "Cuándo crear transiciones entre números de pared pares e impares. Una forma de cuña con un ángulo mayor que esta configuración no tiene transacciones y no se imprimirán paredes en el centro para rellenar el espacio restante. Reducir esta configuración reduce el número y la longitud de estas paredes centrales, pero puede dejar espacios o sobreextrusión." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Cuando se pasa de un número de paredes a otro a medida que la pieza se hace más delgada, se asigna una determinada cantidad de espacio para dividir o unir las líneas de contorno." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Siempre que se limpia, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante los movimientos de desplazamiento, reduciendo las posibilidades de golpear la impresión desde la placa de impresión." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Siempre que se realiza una retracción, la placa de impresión se baja para crear holgura entre la tobera y la impresión. Impide que la tobera golpee la impresión durante movimientos de desplazamiento, reduciendo las posibilidades de alcanzar la impresión de la placa de impresión." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Elija si quiere que la distancia X/Y del soporte prevalezca sobre la distancia Z del soporte o viceversa. Si X/Y prevalece sobre Z, la distancia X/Y puede separar el soporte del modelo, lo que afectaría a la distancia Z real con respecto al voladizo. Esta opción puede desactivarse si la distancia X/Y no se aplica a los voladizos." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Indica si las coordenadas X/Y de la posición inicial del cabezal de impresión se encuentran en el centro del área de impresión." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Si el tope del eje X se encuentra en la dirección positiva (coordenada X hacia arriba) o negativa (coordenada X hacia abajo)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Si el tope del eje Y se encuentra en la dirección positiva (coordenada Y hacia arriba) o negativa (coordenada Y hacia abajo)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Si el tope del eje Z se encuentra en la dirección positiva (coordenada Z hacia arriba) o negativa (coordenada Z hacia abajo)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Si los extrusores comparten un único calentador en lugar de que cada extrusor tenga el suyo propio." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Indica si los extrusores comparten una única tobera en lugar de que cada uno tenga la suya propia. Cuando se establece en true, se espera que la secuencia de comandos gcode de inicio de la impresora establezca todos los extrusores en un estado de retracción inicial conocido y mutuamente compatible (ninguno o un solo filamento que no se retrae); en este caso, el estado de retracción inicial se describe, por extrusor, mediante el parámetro \"machine_extruders_shared_nozzle_initial_retraction\"." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Indica si la máquina tiene una placa de impresión caliente." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Si la máquina puede estabilizar la temperatura del volumen de impresión." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Centrar o no el objeto en el centro de la plataforma de impresión (0, 0), en vez de utilizar el sistema de coordenadas con el que se guardó el objeto." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Para controlar la temperatura desde Cura. Si va a controlar la temperatura de la tobera desde fuera de Cura, desactive esta opción." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Elija si desea incluir comandos de temperatura de la placa de impresión al iniciar el Gcode. Si start_gcode ya contiene comandos de temperatura de la placa de impresión, la interfaz de Cura desactivará este ajuste de forma automática." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Elija si desea incluir comandos de temperatura de la tobera al inicio del Gcode. Si start_gcode ya contiene comandos de temperatura de la tobera, la interfaz de Cura desactivará este ajuste de forma automática." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Posibilidad de incluir GCode de limpieza de tobera entre capas (máximo 1 por capa). Habilitar este ajuste puede influir en el comportamiento de retracción en el cambio de capa. Utilice los ajustes de retracción de limpieza para controlar la retracción en las capas donde la secuencia de limpieza estará en curso." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Elija si desea escribir un comando para esperar a que la temperatura de la placa de impresión se alcance al inicio." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Si cebar el filamento con una gota antes de imprimir. Al activar este ajuste se garantiza que el extrusor tendrá material listo en la tobera antes de imprimir. La impresión de borde o falda puede actuar como cebado también, en este caso ahorrará tiempo al desactivar este ajuste." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Con esta opción se decide si imprimir todos los modelos al mismo tiempo capa por capa o esperar a terminar un modelo antes de pasar al siguiente. El modo de uno en uno solo es posible si todos los modelos están lo suficientemente separados para que el cabezal de impresión pase entre ellos y todos estén a menos de la distancia entre la boquilla y los ejes X/Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Elija si desea mostrar las diferentes versiones de esta máquina, las cuales están descritas en archivos .json independientes." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Utilizar o no los comandos de retracción de firmware (G10/G11) en lugar de utilizar la propiedad E en comandos G1 para retraer el material." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Elija si desea esperar a que la temperatura de la tobera se alcance al inicio." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ancho de una sola línea de relleno." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ancho de una sola línea de techo o suelo de soporte." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ancho de una sola línea de las áreas superiores de la impresión." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Ancho de una única línea. Generalmente, el ancho de cada línea se debería corresponder con el ancho de la tobera. Sin embargo, reducir este valor ligeramente podría producir mejores impresiones." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ancho de una sola línea de la torre auxiliar." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ancho de una sola línea de falda o borde." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ancho de una sola línea de suelo de soporte." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ancho de una sola línea de techo de soporte." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ancho de una sola línea de estructura de soporte." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ancho de una sola línea superior/inferior." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ancho de una sola línea de pared para todas las líneas de pared excepto la más externa." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ancho de una sola línea de pared." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ancho de las líneas de la capa base de la balsa. Estas deben ser líneas gruesas para facilitar la adherencia a la placa e impresión." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Ancho de las líneas de la capa intermedia de la balsa. Haciendo la segunda capa con mayor extrusión las líneas se adhieren a la placa de impresión." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ancho de las líneas de la superficie superior de la balsa. Estas pueden ser líneas finas para que la parte superior de la balsa sea lisa." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Ancho de la línea de pared más externa. Reduciendo este valor se puede imprimir con un mayor nivel de detalle." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Ancho de la pared que reemplazará las características delgadas (según el tamaño mínimo de la característica) del modelo. Si el ancho mínimo de la línea perimetral es más delgado que el grosor de la característica, la pared se volverá tan gruesa como la propia característica." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Limpiar posición X de cepillo" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Limpiar velocidad de salto" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpiar tobera inactiva de la torre auxiliar" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distancia de movimiento de limpieza" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpiar tobera entre capas" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausar limpieza" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Recuento de repeticiones de limpieza" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distancia de retracción de limpieza" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Habilitación de retracción de limpieza" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Cantidad de cebado adicional de retracción de limpieza" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidad de cebado de retracción de limpieza" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidad de retracción en retracción de limpieza" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidad de retracción de limpieza" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Limpiar salto en Z" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Limpiar altura del salto en Z" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Sobre el relleno" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escriba la herramienta activa después de enviar comandos temporales a la herramienta inactiva. Requerido para la impresión de extrusión dual con Smoothie u otro firmware con comandos de herramientas modales." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Tope de X en dirección positiva" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Ubicación X donde se iniciará la secuencia de limpieza." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y sobre Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Tope de Y en dirección positiva" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Tope de Z en dirección positiva" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto en Z tras cambio de extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Salto en Z tras altura de cambio de extrusor" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura del salto en Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto en Z solo en las partes impresas" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidad del salto en Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto en Z en la retracción" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alineación de costuras en Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posición de costura en Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Costuras relativas en Z" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X de la costura Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y de la costura Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z sobre X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "travel description" +msgid "travel" +msgstr "desplazamiento" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "Si se activan los ventiladores de refrigeración durante un cambio de boquilla. Esto puede contribuir a que se rebaje lo que rezuma al refrigerar la boquilla más rápido:
  • Sin cambios: mantenga los ventiladores como estaban anteriormente
  • Solo el último extrusor: encienda el ventilador del último extrusor usado, pero apague los demás (si los hay). Esto es útil si tiene extrusores completamente separados.
  • Todos los ventiladores: encienda todos los ventiladores durante el cambio de boquilla. Esto es útil si tiene un solo ventilador de refrigeración o varios ventiladores que estén juntos entre ellos.
" + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Todos los ventiladores" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Refrigeración durante el cambio de extrusor" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Administre la relación espacial entre la juntura z de la estructura de apoyo y el modelo 3D real. Este control es esencial, ya que permite a los usuarios asegurar que la extracción de las estructuras de apoyo después de la impresión sea impecable, sin causar daños ni dejar marcas en el modelo impreso." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Distancia de juntura Z mínima del modelo" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Multiplicador para el relleno en las capas iniciales del apoyo. Aumentar esto puede ayudar a que se adhiera la capa." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Solo el último extrusor" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Coloque la juntura z en un vértice de polígono. Si se apaga esto, la juntura se puede colocar también entre vértices. (Tenga en cuenta que esto no hará que se anulen las restricciones sobre la colocación de la juntura en una cobertura sin apoyo)." + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Grosor mínimo de la carcasa de la torre principal" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Movimiento de la base del conjunto" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Superposición del relleno de la base del conjunto" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Porcentaje de superposición del relleno de la base del conjunto" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Movimiento del conjunto" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Movimiento de la interfaz del conjunto" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Superposición del relleno de la interfaz del conjunto" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Porcentaje de superposición del relleno de la interfaz del conjunto" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Intervalo Z de la interfaz del conjunto" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Movimiento de la superficie del conjunto" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Superposición del relleno de la superficie del conjunto" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Porcentaje de superposición del relleno de la superficie del conjunto" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Intervalo Z de la superficie del conjunto" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Ángulo de las paredes que sobresale de las junturas" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Capa inicial de multiplicador de densidad de relleno de apoyo" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Juntura Z de apoyo fuera del modelo" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La cantidad de material, con relación a una línea de extrusión normal, para extraer durante la impresión de la base del conjunto. Tener mayor movimiento puede mejorar la adhesión y la resistencia estructural del conjunto." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La cantidad de material, con relación a una línea de extrusión normal, para extraer durante la impresión de la interfaz del conjunto. Tener mayor movimiento puede mejorar la adhesión y la resistencia estructural del conjunto." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La cantidad de material, con relación a una línea de extrusión normal, para extraer durante la impresión del conjunto. Tener mayor movimiento puede mejorar la adhesión y la resistencia estructural del conjunto." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La cantidad de material, con relación a una línea de extrusión normal, para extraer durante la impresión de la superficie del conjunto. Tener mayor movimiento puede mejorar la adhesión y la resistencia estructural del conjunto." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes de la base del conjunto, como porcentaje de la anchura de la línea del relleno. Una superposición delgada permite que las paredes se unan con firmeza al relleno." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes de la base del conjunto. Una superposición delgada permite que las paredes se unan con firmeza al relleno." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes de la interfaz del conjunto, como porcentaje de la anchura de la línea del relleno. Una superposición delgada permite que las paredes se unan con firmeza al relleno." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes de la interfaz del conjunto. Una superposición delgada permite que las paredes se unan con firmeza al relleno." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes de la superficie del conjunto, como porcentaje de la anchura de la línea del relleno. Una superposición delgada permite que las paredes se unan con firmeza al relleno." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La cantidad de superposición entre el relleno y las paredes de la superficie del conjunto. Una superposición delgada permite que las paredes se unan con firmeza al relleno." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "La distancia entre el modelo y su estructura de apoyo en la juntura del eje z." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "El grosor mínimo de la carcasa de la torre principal. Puede aumentarla para hacer que la torre principal sea más fuerte." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Intente evitar que las junturas de las paredes sobresalgan más que este ángulo. Cuando el valor sea 90, ninguna pared se considerará como que sobresale." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Sin cambiar" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Cuando se imprima la primera capa de la interfaz del conjunto, convierta por este intervalo para personalizar la adhesión entre la base y la interfaz. Un intervalo negativo debería mejorar la adhesión." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Cuando se imprima la primera capa de la superficie del conjunto, convierta por este intervalo para personalizar la adhesión entre la interfaz y la superficie. Un intervalo negativo debería mejorar la adhesión." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Juntura Z en el vértice" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Añade líneas adicionales en el patrón de relleno para soportar las pieles de arriba. Esta opción evita los agujeros o las manchas de plástico que a veces aparecen en las pieles de formas complejas, debido a que el relleno de abajo no soporta correctamente la capa de piel que se está imprimiendo arriba. \"Muros\" soporta solo los contornos de la piel, mientras que \"Muros y líneas\" soporta también los extremos de las líneas que componen la piel." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Construir velocidad del ventilador en altura" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Construir velocidad de abanico en capa" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Número del ventilador de volumen de construcción" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Determina la longitud de cada paso en el cambio de flujo al extruir a lo largo de la costura de la bufanda. Una distancia menor dará como resultado un código G más preciso pero también más complejo." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Determina la longitud de la costura de la bufanda, un tipo de costura que debería hacer menos visible la costura Z. Debe ser superior a 0 para ser eficaz." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duración de cada intervalo en el cambio de flujo gradual" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilite cambios de flujo gradual. Al habilitarse, el flujo se incrementa/decrementa gradualmente hasta el flujo objetivo. Esto es útil para impresoras con tubo bowden en las que el flujo no cambia inmediatamente cuando el motor extrusor arranca o se detiene." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Líneas de relleno adicionales para soportar las pieles" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo material se restablece al flujo objetivo de las trayectorias" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamaño del intervalo para discretización de flujo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flujo gradual habilitado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Flujo gradual de aceleración máxima" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleración máxima de flujo de capa inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleración máxima para cambios graduales de flujo" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidad mínima para cambios graduales de flujo en la primera capa" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Ninguno" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Aceleración de la pared exterior" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Desaceleración de la pared exterior" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Relación de velocidad final de la pared exterior" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Distancia de división de la velocidad de la pared exterior" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Relación de velocidad inicial de la pared exterior" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Restablecer duración de flujo" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Longitud de la costura de la bufanda" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Altura de inicio de la costura de la bufanda" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Longitud del paso de la costura de la bufanda" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "La altura a la que giran los ventiladores a velocidad de ventilador normal. En las capas inferiores, la velocidad de los ventiladores aumenta gradualmente desde la velocidad inicial de los ventiladores hasta la velocidad normal de los ventiladores." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "La capa en la que los ventiladores de la construcción giran a la velocidad máxima del ventilador. Este valor se calcula y redondea a un número entero." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "El número del ventilador que enfría el volumen de construcción. Si este valor es 0, significa que no hay ventilador de volumen de construcción." + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "La relación de la altura de capa seleccionada en la que comenzará la costura de la bufanda. Un número menor dará como resultado una mayor altura de la costura. Debe ser inferior a 100 para ser efectivo." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Esta es la aceleración con la que alcanzar la velocidad máxima al imprimir una pared exterior." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Esta es la deceleración con la que finalizar la impresión de una pared exterior." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Esta es la longitud máxima de una trayectoria de extrusión cuando se divide una trayectoria más larga para aplicar la aceleración/desaceleración de la pared exterior. Una distancia menor creará un código G más preciso, pero también más prolijo." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Esta es la relación de la velocidad máxima con la que se debe terminar al imprimir una pared exterior." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Esta es la relación de la velocidad máxima con la que se debe empezar al imprimir una pared exterior." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Solo muros" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Muros y líneas" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Los muros que sobresalgan más de este ángulo se imprimirán utilizando la configuración de muros en voladizo. Cuando el valor es 90, ningún muro se tratará como saliente. Los salientes que se apoyen en soportes tampoco se tratarán como salientes. Además, cualquier línea que tenga menos de la mitad de saliente tampoco se tratará como saliente." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista de direcciones de líneas de números enteros para usar cuando las capas del tejido de la superficie de abajo usen el diseño de líneas o zig zag. Los elementos de la lista se usan de manera secuencial a medida que las capas avanzan y, cuando se alcanza el final de la lista, comienza de nuevo en el inicio. Los artículos de la lista están separados por comas y la lista completa se incluye entre corchetes. Por defecto es una lista vacía, lo que significa que usa los ángulos por defecto tradicionales (45 y 135 grados)." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Aceleración del panel interior de la superficie de abajo" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Estremecimiento del panel interior de la superficie de abajo" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Velocidad del panel interior de la superficie de abajo" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Movimiento del/de los panel(es) interior(es) de la superficie de abajo" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Aceleración del panel exterior de la superficie de abajo" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Movimiento del panel exterior de la superficie de abajo" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Estremecimiento del panel exterior de la superficie de abajo" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Velocidad del panel exterior de la superficie de abajo" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Aceleración del tejido de la superficie de abajo" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Extrusor del tejido de la superficie de abajo" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Movimiento del tejido de la superficie de abajo" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Estremecimiento del tejido de la superficie de abajo" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Capas del tejido de la superficie de abajo" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Direcciones de la línea del tejido de la superficie de abajo" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Anchura de la línea del tejido de la superficie de abajo" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Diseño del tejido de la superficie de abajo" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Velocidad del tejido de la superficie de abajo" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Concéntrico" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Extrusor" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Compensación de movimiento en las líneas del panel de la superficie de abajo para todas las líneas del panel excepto la más exterior." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Compensación del movimiento en las líneas de las áreas en la parte de abajo de la impresora." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Compensación del movimiento en la línea del panel más exterior de la superficie de abajo." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Grifo+Guepardo" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Distancia para eludir el desplazamiento dentro" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Líneas" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Tiempo mínimo de capa con colgante" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Longitud mínima del segmento colgante" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Orden de superficie de abajo monótona" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Desaceleración final del panel exterior" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Desaceleración inicial del panel exterior" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Velocidades del panel colgante" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Los paneles colgantes se imprimirán en un porcentaje de su velocidad de impresión normal. Puede especificar varios valores para que se impriman aún más paneles colgantes incluso más despacio; p. ej., estableciendo [75, 50, 25]" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Factor de avance de presión" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Núcleo de impresión" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir líneas de la superficie de abajo en un orden que haga que siempre se superpongan con las líneas adyacentes en una sola dirección. Esto toma un poco más de tiempo en imprimirse, no obstante, hace que las superficies planas tengan un aspecto más uniforme." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "Primero debe ir el GCode de inicio" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "La aceleración con la que se imprimen las capas del tejido de la superficie de abajo." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "La aceleración con la que se imprimen los paneles interiores de la superficie de abajo." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "La aceleración con la que se imprimen los paneles más exteriores de la superficie de abajo." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "Las dimensiones del cabezal de la impresora usadas para definir la 'distancia de modelo segura' cuando se imprime 'de uno en uno'. Estos números se relacionan con la línea central de la primera boquilla del extrusor. La parte izquierda de la boquilla es 'X Mín' y debe ser negativa. La parte de atrás de la boquilla es 'Y Mín' y debe ser negativa. X Máx (derecha) e Y Máx (parte delantera) son números positivos. La altura de la grúa es la medida desde la placa de la estructura hasta el rodillo de la grúa X." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "La distancia entre la boquilla y los paneles exteriores ya impresos cuando se desplaza dentro de un modelo." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "El tren de extrusor usado para imprimir el tejido más abajo. Esto se usa en multiextrusión." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "El cambio de velocidad instantánea máximo con el que se imprimen las capas del tejido de la superficie de abajo." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "El cambio de velocidad instantánea máximo con el que se imprimen los paneles interiores de la superficie de abajo." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "El cambio de velocidad instantánea máximo con el que se imprimen los paneles más exteriores de la superficie de abajo." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "El tiempo mínimo invertido en una capa que contenga extrusiones colgantes. Esto fuerza a la impresora a ir más lenta, para invertir al menos el tiempo establecido aquí en una capa. Esto permite que el material impreso se enfríe adecuadamente antes de imprimir la siguiente capa. Aún así, las capas tomarán menos tiempo del tiempo de capa mínimo si el cabezal del elevador está desactivado y si la velocidad mínima no se cumpliera de cualquier otra forma." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "El número de las capas de tejido de más abajo. Normalmente, solo una capa de más abajo es suficiente para generar una mayor calidad en las superficies de abajo." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "El diseño de las capas de más abajo." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "La velocidad a la que se imprimen las capas del tejido de la superficie de abajo." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "La velocidad a la que se imprimen los paneles interiores de la superficie de abajo." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "La velocidad a la que se imprime el panel más exterior de la superficie de abajo." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Este ajuste verifica si el gcode de inicio está forzado a ser siempre el primer g-code. Sin esta opción, otros g-code, como un T0, pueden insertarse antes del g-code de inicio. " + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Factor de sintonización para avance de presión, que está previsto para que sincronice la extrusión con el movimiento" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Cuando se intente aplicar el tiempo de capa mínimo específico para las capas colgantes, solo se aplicará si al menos un movimiento de extrusión colgante consecutiva es más prolongado que este valor." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Anchura de una sola línea de las áreas en la parte de abajo de la impresora." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig zag" diff --git a/resources/i18n/es_ES/gradual_flow_settings.def.json.po b/resources/i18n/es_ES/gradual_flow_settings.def.json.po deleted file mode 100644 index a71e3b01cc..0000000000 --- a/resources/i18n/es_ES/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: es_ES\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flujo gradual habilitado" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilite cambios de flujo gradual. Al habilitarse, el flujo se incrementa/decrementa gradualmente hasta el flujo objetivo. Esto es útil para impresoras con tubo bowden en las que el flujo no cambia inmediatamente cuando el motor extrusor arranca o se detiene." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Flujo gradual de aceleración máxima" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleración máxima para cambios graduales de flujo" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleración máxima de flujo de capa inicial" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidad mínima para cambios graduales de flujo en la primera capa" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamaño del intervalo para discretización de flujo gradual" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duración de cada intervalo en el cambio de flujo gradual" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Restablecer duración de flujo" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cualquier movimiento de desplazamiento superior a este valor, el flujo material se restablece al flujo objetivo de las trayectorias" diff --git a/resources/i18n/fdmextruder.def.json.pot b/resources/i18n/fdmextruder.def.json.pot index a5ad7842c9..a38aaea8b4 100644 --- a/resources/i18n/fdmextruder.def.json.pot +++ b/resources/i18n/fdmextruder.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -40,6 +40,14 @@ msgctxt "extruder_prime_pos_z description" msgid "The Z coordinate of the position where the nozzle primes at the start of printing." msgstr "" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "" + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "" + msgctxt "machine_extruder_cooling_fan_number label" msgid "Extruder Print Cooling Fan" msgstr "" @@ -88,6 +96,14 @@ msgctxt "machine_extruder_end_pos_y description" msgid "The y-coordinate of the ending position when turning the extruder off." msgstr "" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "" @@ -128,6 +144,14 @@ msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "" + msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "" diff --git a/resources/i18n/fdmprinter.def.json.pot b/resources/i18n/fdmprinter.def.json.pot index 3a9c03d6f8..071e743789 100644 --- a/resources/i18n/fdmprinter.def.json.pot +++ b/resources/i18n/fdmprinter.def.json.pot @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: Uranium json setting files\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE\n" @@ -24,6 +24,14 @@ msgctxt "machine_settings description" msgid "Machine specific settings" msgstr "" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "" + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "" + msgctxt "machine_name label" msgid "Machine Type" msgstr "" @@ -232,14 +240,6 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "" - msgctxt "machine_nozzle_expansion_angle label" msgid "Nozzle Angle" msgstr "" @@ -316,6 +316,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "" + msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "" @@ -385,7 +389,7 @@ msgid "Machine Head & Fan Polygon" msgstr "" msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." msgstr "" msgctxt "gantry_height label" @@ -420,6 +424,14 @@ msgctxt "machine_use_extruder_offset_to_offset_coords description" msgid "Apply the extruder offset to the coordinate system. Affects all extruders." msgstr "" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "" + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "" + msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "" @@ -612,6 +624,14 @@ msgctxt "machine_scale_fan_speed_zero_to_one description" msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." msgstr "" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + msgctxt "resolution label" msgid "Quality" msgstr "" @@ -980,6 +1000,14 @@ msgctxt "z_seam_type option sharpest_corner" msgid "Sharpest Corner" msgstr "" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "" @@ -1140,6 +1168,66 @@ msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "" +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "" + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "" + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "" + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "" + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "" + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "" + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "" + msgctxt "top_bottom_extruder_nr label" msgid "Top/Bottom Extruder" msgstr "" @@ -1724,6 +1812,26 @@ msgctxt "skin_edge_support_layers description" msgid "The number of infill layers that supports skin edges." msgstr "" +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "" + msgctxt "lightning_infill_support_angle label" msgid "Lightning Infill Support Angle" msgstr "" @@ -2052,6 +2160,22 @@ msgctxt "wall_x_material_flow_roofing description" msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." msgstr "" +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "" + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "skin_material_flow label" msgid "Top/Bottom Flow" msgstr "" @@ -2068,6 +2192,14 @@ msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "" +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "" + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "" + msgctxt "infill_material_flow label" msgid "Infill Flow" msgstr "" @@ -2172,6 +2304,46 @@ msgctxt "material_is_support_material description" msgid "Is this material typically used as a support material during printing." msgstr "" +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "" + msgctxt "speed label" msgid "Speed" msgstr "" @@ -2236,6 +2408,22 @@ msgctxt "speed_wall_x_roofing description" msgid "The speed at which the top surface inner walls are printed." msgstr "" +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "" + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "" + msgctxt "speed_roofing label" msgid "Top Surface Skin Speed" msgstr "" @@ -2244,6 +2432,14 @@ msgctxt "speed_roofing description" msgid "The speed at which top surface skin layers are printed." msgstr "" +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "" + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "" + msgctxt "speed_topbottom label" msgid "Top/Bottom Speed" msgstr "" @@ -2436,6 +2632,22 @@ msgctxt "acceleration_wall_x_roofing description" msgid "The acceleration with which the top surface inner walls are printed." msgstr "" +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "" + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "" + msgctxt "acceleration_roofing label" msgid "Top Surface Skin Acceleration" msgstr "" @@ -2444,6 +2656,14 @@ msgctxt "acceleration_roofing description" msgid "The acceleration with which top surface skin layers are printed." msgstr "" +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "" + msgctxt "acceleration_topbottom label" msgid "Top/Bottom Acceleration" msgstr "" @@ -2612,6 +2832,22 @@ msgctxt "jerk_wall_x_roofing description" msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." msgstr "" +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "" + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "" + msgctxt "jerk_roofing label" msgid "Top Surface Skin Jerk" msgstr "" @@ -2620,6 +2856,14 @@ msgctxt "jerk_roofing description" msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." msgstr "" +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "" + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "" + msgctxt "jerk_topbottom label" msgid "Top/Bottom Jerk" msgstr "" @@ -2840,6 +3084,14 @@ msgctxt "retraction_combing_max_distance description" msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." msgstr "" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "" + msgctxt "travel_retract_before_outer_wall label" msgid "Retract Before Outer Wall" msgstr "" @@ -2944,6 +3196,22 @@ msgctxt "cool_fan_enabled description" msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." msgstr "" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "" + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "" + msgctxt "cool_fan_speed label" msgid "Fan Speed" msgstr "" @@ -3008,6 +3276,22 @@ msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "" + msgctxt "cool_min_speed label" msgid "Minimum Speed" msgstr "" @@ -3032,6 +3316,26 @@ msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "" + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "" + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "" + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "" + msgctxt "support label" msgid "Support" msgstr "" @@ -3144,6 +3448,22 @@ msgctxt "support_tree_branch_diameter_angle description" 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 tree support." msgstr "" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "" + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "" + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "" + msgctxt "support_type label" msgid "Support Placement" msgstr "" @@ -3356,6 +3676,14 @@ msgctxt "support_initial_layer_line_distance description" msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." msgstr "" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "" + msgctxt "support_infill_angles label" msgid "Support Infill Line Directions" msgstr "" @@ -4184,6 +4512,22 @@ msgctxt "raft_base_line_spacing description" msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." msgstr "" +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "raft_interface_layers label" msgid "Raft Middle Layers" msgstr "" @@ -4216,6 +4560,30 @@ msgctxt "raft_interface_line_spacing description" msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." msgstr "" +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "raft_surface_layers label" msgid "Raft Top Layers" msgstr "" @@ -4248,6 +4616,14 @@ msgctxt "raft_surface_line_spacing description" msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." msgstr "" +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "" + msgctxt "raft_surface_monotonic label" msgid "Monotonic Raft Top Surface Order" msgstr "" @@ -4256,6 +4632,22 @@ msgctxt "raft_surface_monotonic description" msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." msgstr "" +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "raft_wall_count label" msgid "Raft Wall Count" msgstr "" @@ -4416,6 +4808,38 @@ msgctxt "raft_surface_fan_speed description" msgid "The fan speed for the top raft layers." msgstr "" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + msgctxt "dual label" msgid "Dual Extrusion" msgstr "" @@ -4472,6 +4896,14 @@ msgctxt "prime_tower_max_bridging_distance description" msgid "The maximum length of the branches which may be printed over the air." msgstr "" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "" + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "" + msgctxt "prime_tower_position_x label" msgid "Prime Tower X Position" msgstr "" @@ -4600,6 +5032,54 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "" +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "" + +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "" + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "" + +msgctxt "interlocking_orientation description" +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 "" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "" + +msgctxt "interlocking_beam_layer_count description" +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 "" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "" + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "" + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "" + msgctxt "meshfix label" msgid "Mesh Fixes" msgstr "" @@ -4936,54 +5416,6 @@ msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "" -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "" - -msgctxt "interlocking_orientation description" -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 "" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "" - -msgctxt "interlocking_beam_layer_count description" -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 "" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "" - msgctxt "support_skip_some_zags label" msgid "Break Up Support In Chunks" msgstr "" @@ -5245,15 +5677,23 @@ msgid "Overhanging Wall Angle" msgstr "" msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." msgstr "" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" msgstr "" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" msgstr "" msgctxt "bridge_settings_enabled label" @@ -5584,6 +6024,70 @@ msgctxt "group_outer_walls description" msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." msgstr "" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "" + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "" + msgctxt "ppr label" msgid "Print Process Reporting" msgstr "" @@ -5696,3 +6200,11 @@ msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "" diff --git a/resources/i18n/fi_FI/cura.po b/resources/i18n/fi_FI/cura.po index f8a0313836..f43f4f80b7 100644 --- a/resources/i18n/fi_FI/cura.po +++ b/resources/i18n/fi_FI/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" "PO-Revision-Date: 2022-07-15 10:53+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -18,6 +18,10 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 3.1.1\n" +msgctxt "@title:label" +msgid " " +msgstr "" + #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" @@ -174,6 +178,10 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "" + msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-tiedosto" @@ -458,6 +466,10 @@ msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "Mahdollistaa GCode-tiedostojen lataamisen ja näyttämisen." +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Kysy aina" @@ -498,10 +510,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Sovelluskehys" - msgctxt "@title:column" msgid "Applies on" msgstr "" @@ -680,10 +688,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "C/C++ -sidontakirjasto" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "" @@ -847,6 +851,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "Värimalli" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "" + msgctxt "@info" msgid "Compare and save." msgstr "" @@ -855,10 +863,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "Yhteensopivuustila" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "" @@ -1184,14 +1188,6 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine-taustaosa" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - msgctxt "@label" msgid "Currency:" msgstr "Valuutta:" @@ -1252,10 +1248,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Data Interchange Format" - msgctxt "@button" msgid "Decline" msgstr "" @@ -1316,10 +1308,6 @@ msgctxt "@label" msgid "Density" msgstr "Tiheys" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "Syvyys (mm)" @@ -1542,6 +1530,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Vie materiaali" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "" + msgctxt "@title:window" msgid "Export Profile" msgstr "Profiilin vienti" @@ -1583,6 +1575,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "Suulake %1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "" @@ -1591,6 +1587,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "" @@ -1780,6 +1780,10 @@ msgctxt "@label" msgid "First available" msgstr "" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "" + msgctxt "@label:listbox" msgid "Flow" msgstr "" @@ -1796,10 +1800,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -msgctxt "@label" -msgid "Font" -msgstr "Fontti" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "Laita paperinpala kussakin positiossa suuttimen alle ja säädä tulostusalustan korkeus. Tulostusalustan korkeus on oikea, kun suuttimen kärki juuri ja juuri osuu paperiin." @@ -1855,10 +1855,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "" @@ -1871,14 +1867,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF-kuva" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "GUI-kehys" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "GUI-kehyksen sidonnat" - msgctxt "@label" msgid "Gantry Height" msgstr "" @@ -1891,10 +1879,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Muodosta rakenteita, jotka tukevat mallin ulokkeita sisältäviä osia. Ilman tukirakenteita kyseiset osat luhistuvat tulostuksen aikana." -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "" - msgctxt "@label:category menu label" msgid "Generic" msgstr "" @@ -1915,10 +1899,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "Yleiset asetukset" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Graafinen käyttöliittymä" - msgctxt "@label" msgid "Grid Placement" msgstr "" @@ -2164,10 +2144,6 @@ msgctxt "@label" msgid "Interface" msgstr "Käyttöliittymä" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Prosessien välinen tietoliikennekirjasto" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "" @@ -2196,10 +2172,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "JPG-kuva" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "" - msgctxt "@label" msgid "Job Name" msgstr "Työn nimi" @@ -2300,6 +2272,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "Tasaa alusta" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Vaaleampi on korkeampi" @@ -2316,10 +2292,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "" @@ -2408,6 +2380,14 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "" @@ -2985,10 +2965,6 @@ msgctxt "@header" msgid "Package details" msgstr "" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-coden jäsennys" @@ -3140,14 +3116,6 @@ msgctxt "@button" msgid "Plugins" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Monikulmion leikkauskirjasto" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "" @@ -3421,10 +3389,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Ohjelmointikieli" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3553,18 +3517,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "" - msgctxt "@label" msgid "Qt version" msgstr "" @@ -3746,10 +3698,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Poista laite turvallisesti" @@ -3841,6 +3789,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "" + msgctxt "@info" msgid "Search in the browser" msgstr "" @@ -3933,10 +3885,6 @@ msgctxt "name" msgid "Sentry Logger" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Sarjatietoliikennekirjasto" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Aseta aktiiviseksi suulakepuristimeksi" @@ -4045,6 +3993,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -4073,10 +4025,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Näytä sähköinen &dokumentaatio" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "" - msgctxt "@label:checkbox" msgid "Show all" msgstr "Näytä kaikki" @@ -4285,6 +4233,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "@label" msgid "Start the slicing process" msgstr "" @@ -4366,34 +4318,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Nopeamman laskennan tukikirjasto" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "STL-tiedostojen käsittelyn tukikirjasto" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Tieteellisen laskennan tukikirjasto" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "" - msgctxt "@action:button" msgid "Sync" msgstr "" @@ -4710,8 +4634,12 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" msgstr "" msgctxt "@text:window" @@ -5005,6 +4933,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "" + msgctxt "@info:title" msgid "Unable to slice" msgstr "Viipalointi ei onnistu" @@ -5073,10 +5009,6 @@ msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "" - msgctxt "@label" msgid "Unknown" msgstr "Tuntematon" @@ -5266,6 +5198,14 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Lataa mukautettu laiteohjelmisto" @@ -5290,14 +5230,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "" - msgctxt "@title:column" msgid "Value" msgstr "" @@ -5410,6 +5342,14 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5572,12 +5512,12 @@ msgid "Y (Depth)" msgstr "Y (syvyys)" msgctxt "@label" -msgid "Y max" -msgstr "Y enint" +msgid "Y max ( '+' towards front)" +msgstr "" msgctxt "@label" -msgid "Y min" -msgstr "Y väh" +msgid "Y min ( '-' towards back)" +msgstr "" msgctxt "@info" msgid "Yes" @@ -5660,10 +5600,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "Z (korkeus)" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "ZeroConf-etsintäkirjasto" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Zoomaa hiiren suuntaan" @@ -5721,10 +5657,86 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "Sovelluskehys" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "C/C++ -sidontakirjasto" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "Data Interchange Format" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Ota reunuksen tai pohjaristikon tulostus käyttöön. Tämä lisää kappaleen ympärille tai alle tasaisen alueen, joka on helppo leikata pois myöhemmin." +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "Fontti" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "GUI-kehys" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "GUI-kehyksen sidonnat" + +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "Graafinen käyttöliittymä" + +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "Prosessien välinen tietoliikennekirjasto" + +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "Suuttimen koko" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "Monikulmion leikkauskirjasto" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "Ohjelmointikieli" + #~ msgctxt "description" #~ msgid "Provides support for writing 3MF files." #~ msgstr "Tukee 3MF-tiedostojen kirjoittamista." + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "Sarjatietoliikennekirjasto" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "Nopeamman laskennan tukikirjasto" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "Tukikirjasto 3MF-tiedostojen käsittelyyn" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "STL-tiedostojen käsittelyn tukikirjasto" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "Tieteellisen laskennan tukikirjasto" + +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y enint" + +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y väh" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "ZeroConf-etsintäkirjasto" diff --git a/resources/i18n/fi_FI/fdmextruder.def.json.po b/resources/i18n/fi_FI/fdmextruder.def.json.po index fe680ec53b..fcf0ab54a8 100644 --- a/resources/i18n/fi_FI/fdmextruder.def.json.po +++ b/resources/i18n/fi_FI/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -40,6 +40,10 @@ msgctxt "extruder_nr label" msgid "Extruder" msgstr "Suulake" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Suulakkeen lopetus-GCode" @@ -60,6 +64,10 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Suulakkeen lopetussijainti Y" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Suulakkeen esitäytön X-sijainti" @@ -128,6 +136,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Suuttimen tunnus" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Suuttimen X-siirtymä" @@ -136,6 +148,10 @@ msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Suuttimen Y-siirtymä" +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "" @@ -156,6 +172,10 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "" + msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Suuttimen sisähalkaisija. Muuta tätä asetusta, kun käytössä on muu kuin vakiokokoinen suutin." @@ -200,6 +220,10 @@ msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Aloitussijainnin Y-koordinaatti suulaketta käynnistettäessä." +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "" + #~ msgctxt "machine_extruder_end_code description" #~ msgid "End g-code to execute whenever turning the extruder off." #~ msgstr "Lopetus-GCode, joka suoritetaan, kun suulake poistetaan käytöstä." diff --git a/resources/i18n/fi_FI/fdmprinter.def.json.po b/resources/i18n/fi_FI/fdmprinter.def.json.po index 2c63a641f5..c0b1935519 100644 --- a/resources/i18n/fi_FI/fdmprinter.def.json.po +++ b/resources/i18n/fi_FI/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2022-07-15 11:17+0200\n" "Last-Translator: Bothof \n" "Language-Team: Finnish\n" @@ -20,6 +20,10 @@ msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" msgstr "" +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "" + msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" @@ -32,6 +36,10 @@ msgctxt "material_no_load_move_factor description" msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." msgstr "" +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "" + msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "Luettelo käytettävistä linjojen kokonaislukusuunnista, kun yläpinnan pintakalvokerroksilla käytetään linja- tai siksak-kuviota. Tämän luettelon elementtejä käytetään järjestyksessä kerrosten edetessä, ja kun luettelon loppu saavutetaan, aloitetaan taas alusta. Luettelon kohteet on erotettu pilkuilla, ja koko luettelo on hakasulkeiden sisällä. Oletusarvo on tyhjä luettelo, jolloin käytetään perinteisiä oletuskulmia (45 ja 135 astetta)." @@ -92,6 +100,10 @@ msgctxt "adaptive_layer_height_enabled description" msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "" +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "" + msgctxt "infill_wall_line_count description" msgid "" "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" @@ -154,6 +166,10 @@ msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Kaikki kerralla" +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "" + msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Kaikki tulostuksen resoluutioon vaikuttavat asetukset. Näillä asetuksilla on suuri vaikutus laatuun (ja tulostusaikaan)." @@ -290,6 +306,74 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "Alapintakalvon poistoleveys" +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "" + msgctxt "bottom_thickness label" msgid "Bottom Thickness" msgstr "Alaosan paksuus" @@ -434,6 +518,14 @@ msgctxt "brim_width label" msgid "Brim Width" msgstr "Reunuksen leveys" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "" + msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" msgstr "Alustan tarttuvuus" @@ -474,6 +566,10 @@ msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" msgstr "" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -514,6 +610,10 @@ msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "Komentorivin asetukset" +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "" + msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Samankeskinen" @@ -618,6 +718,10 @@ msgctxt "cooling label" msgid "Cooling" msgstr "Jäähdytys" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "" + msgctxt "infill_pattern option cross" msgid "Cross" msgstr "Risti" @@ -706,6 +810,14 @@ msgctxt "bridge_settings_enabled description" msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "" +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "" + msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "" @@ -830,6 +942,10 @@ msgctxt "dual label" msgid "Dual Extrusion" msgstr "Kaksoispursotus" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + msgctxt "machine_shape option elliptic" msgid "Elliptic" msgstr "Soikea" @@ -922,6 +1038,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Ottaa ulkoisen tihkusuojuksen käyttöön. Tämä luo mallin ympärille kuoren, joka pyyhkii todennäköisesti toisen suuttimen, jos se on samalla korkeudella kuin ensimmäinen suutin." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." msgstr "" @@ -986,6 +1106,10 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "Laaja silmukointi yrittää peittää avonaisia reikiä verkosta sulkemalla reiän toisiaan koskettavilla monikulmioilla. Tämä vaihtoehto voi kuluttaa paljon prosessointiaikaa." +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "" + msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" msgstr "" @@ -998,6 +1122,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "" +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Suulakkeen esitäytön X-sijainti" @@ -1094,6 +1222,10 @@ msgctxt "skin_material_flow_layer_0 description" msgid "Flow compensation on bottom lines of the first layer" msgstr "" +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "infill_material_flow description" msgid "Flow compensation on infill lines." msgstr "" @@ -1102,6 +1234,10 @@ msgctxt "support_interface_material_flow description" msgid "Flow compensation on lines of support roof or floor." msgstr "" +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "" @@ -1126,6 +1262,10 @@ msgctxt "support_material_flow description" msgid "Flow compensation on support structure lines." msgstr "" +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "" + msgctxt "wall_0_material_flow_layer_0 description" msgid "Flow compensation on the outermost wall line of the first layer." msgstr "" @@ -1182,6 +1322,10 @@ msgctxt "material_flush_purge_speed label" msgid "Flush Purge Speed" msgstr "" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" @@ -1298,6 +1442,18 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "Asteittainen tuen täyttöarvo" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "" @@ -1326,6 +1482,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "" + msgctxt "group_outer_walls label" msgid "Group Outer Walls" msgstr "Ryhmittele ulkoseinät" @@ -1690,6 +1850,10 @@ msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" msgstr "Tulostuslämpötila alussa" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" msgstr "Sisäseinämän kiihtyvyys" @@ -1726,6 +1890,10 @@ msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "" + msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" msgstr "" @@ -1914,6 +2082,10 @@ msgctxt "line_width label" msgid "Line Width" msgstr "Linjan leveys" +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "" + msgctxt "infill_pattern option lines" msgid "Lines" msgstr "Linjat" @@ -2012,6 +2184,10 @@ msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "" + msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" @@ -2128,6 +2304,10 @@ msgctxt "meshfix_maximum_travel_resolution label" msgid "Maximum Travel Resolution" msgstr "" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + msgctxt "machine_max_acceleration_x description" msgid "Maximum acceleration for the motor of the X-direction" msgstr "X-suunnan moottorin maksimikiihtyvyys" @@ -2188,6 +2368,10 @@ msgctxt "slicing_tolerance option middle" msgid "Middle" msgstr "" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "" + msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "Muotin vähimmäisleveys" @@ -2228,10 +2412,18 @@ msgctxt "cool_min_layer_time label" msgid "Minimum Layer Time" msgstr "Kerroksen minimiaika" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "" + msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "" + msgctxt "minimum_polygon_circumference label" msgid "Minimum Polygon Circumference" msgstr "" @@ -2292,6 +2484,10 @@ msgctxt "minimum_roof_area description" msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." msgstr "" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + msgctxt "min_feature_size description" 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 Line Width." msgstr "" @@ -2312,6 +2508,10 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "Muotin katon korkeus" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "" + msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" @@ -2332,6 +2532,10 @@ msgctxt "skirt_line_count description" msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." msgstr "Useammat helmalinjat auttavat pursotuksen esitäytössä pienillä malleilla. Helma poistetaan käytöstä, jos arvoksi asetetaan 0." +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "" + msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "Ensimmäisen kerroksen linjaleveyden kerroin. Sen suurentaminen voi parantaa tarttuvuutta pöytään." @@ -2352,6 +2556,10 @@ msgctxt "adhesion_type option none" msgid "None" msgstr "Ei mikään" +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "" + msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "Ei mitään" @@ -2396,10 +2604,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Suuttimen tunnus" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "" - msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "" @@ -2488,6 +2692,10 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Yksi kerrallaan" +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "" + msgctxt "retraction_hop_only_when_collides description" msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." msgstr "Suorita Z-hyppy vain siirryttäessä sellaisten tulostettujen osien yli, jota ei voi välttää vaakaliikkeellä toiminnolla ”Vältä tulostettuja osia siirtoliikkeen yhteydessä”." @@ -2524,6 +2732,14 @@ msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "Ulkoseinämän kiihtyvyys" +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "" + msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "Ulkoseinämän suulake" @@ -2548,6 +2764,18 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Ulkoseinämänopeus" +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "" + msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Ulkoseinämän täyttöliikkeen etäisyys" @@ -2568,12 +2796,12 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" msgstr "" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" msgstr "" msgctxt "wipe_pause description" @@ -2596,6 +2824,10 @@ msgctxt "bridge_fan_speed_3 description" msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "" +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "" + msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "" @@ -2604,6 +2836,10 @@ msgctxt "support_tree_angle_slow label" msgid "Preferred Branch Angle" msgstr "" +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "" + msgctxt "wall_transition_filter_deviation description" msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." msgstr "" @@ -2644,6 +2880,10 @@ msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" msgstr "" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Esitäyttötornin minimiainemäärä" @@ -2676,6 +2916,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Tulostuksen kiihtyvyys" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Tulostuksen nykäisy" @@ -2704,6 +2948,10 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Tulosta tulosteen viereen torni, jolla materiaali esitäytetään aina suuttimen vaihdon jälkeen." +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + msgctxt "infill_support_enabled description" msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." msgstr "" @@ -2796,6 +3044,18 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "Pohjaristikon pohjan tuulettimen nopeus" +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "" + msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" msgstr "" @@ -2836,6 +3096,26 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Pohjaristikon tuulettimen nopeus" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "" + msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" msgstr "" @@ -2900,6 +3180,22 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Pohjaristikon tasoitus" +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "" + msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" msgstr "" @@ -3064,6 +3360,10 @@ msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" msgstr "" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -3128,6 +3428,18 @@ msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" msgstr "" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "" + msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" msgstr "" @@ -3136,6 +3448,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Saumakulmien asetus" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "" + msgctxt "user_defined_print_order_enabled label" msgid "Set Print Sequence Manually" msgstr "Aseta tulostusjärjestys manuaalisesti" @@ -3352,6 +3668,10 @@ msgctxt "machine_start_gcode label" msgid "Start G-code" msgstr "" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "z_seam_type description" msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." msgstr "Kerroksen kunkin reitin aloituskohta. Kun peräkkäisissä kerroksissa olevat reitit alkavat samasta kohdasta, tulosteessa saattaa näkyä pystysauma. Kun nämä kohdistetaan lähelle käyttäjän määrittämää kohtaa, sauma on helpompi poistaa. Satunnaisesti sijoittuneina reitin aloituskohdan epätarkkuudet ovat vähemmän silmiinpistäviä. Lyhintä reittiä käyttäen tulostus on nopeampaa." @@ -3480,6 +3800,10 @@ msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" msgstr "Tuen täytön kiihtyvyys" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "" + msgctxt "support_infill_extruder_nr label" msgid "Support Infill Extruder" msgstr "Tuen täytön suulake" @@ -3672,6 +3996,10 @@ msgctxt "support_z_distance label" msgid "Support Z Distance" msgstr "Tuen Z-etäisyys" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "" + msgctxt "support_interface_priority option support_lines_overwrite_interface_area" msgid "Support lines preferred" msgstr "" @@ -3764,6 +4092,10 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Kiihtyvyys, jolla kaikki sisäseinämät tulostetaan." +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "" + msgctxt "acceleration_infill description" msgid "The acceleration with which infill is printed." msgstr "Kiihtyvyys, jolla täyttö tulostetaan." @@ -3780,6 +4112,14 @@ msgctxt "raft_base_acceleration description" msgid "The acceleration with which the base raft layer is printed." msgstr "Kiihtyvyys, jolla pohjaristikon pohjakerros tulostetaan." +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_support_bottom description" msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." msgstr "Kiihtyvyys, jolla tuen lattiat tulostetaan. Niiden tulostus hitaammalla kiihtyvyydellä voi parantaa mallin yläosan tuen kiinnittymistä." @@ -3848,6 +4188,22 @@ msgctxt "acceleration_travel description" msgid "The acceleration with which travel moves are made." msgstr "Kiihtyvyys, jolla siirtoliikkeet tehdään." +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." msgstr "Silityksen aikana pursotettavan materiaalin määrä suhteessa normaaliin pintakalvon linjaan. Suuttimen pitäminen täytettynä auttaa joidenkin yläpinnan halkeamien täyttämisessä, mutta liiallinen määrä johtaa ylipursotukseen ja täpliin pinnan sivulla." @@ -3856,6 +4212,30 @@ msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." msgstr "" +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "Limityksen määrä täytön ja seinämien välillä. Pienellä limityksellä seinämät liittyvät tukevasti täyttöön." @@ -3956,10 +4336,22 @@ msgctxt "adaptive_layer_height_variation_step description" msgid "The difference in height of the next layer height compared to the previous one." msgstr "" +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "" + msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." msgstr "Silityslinjojen välinen etäisyys." +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "" + msgctxt "travel_avoid_distance description" msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "Suuttimen ja aiemmin tulostetun osan välinen etäisyys siirtoliikkeiden yhteydessä." @@ -4068,6 +4460,10 @@ msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "Täytön tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "" + msgctxt "wall_x_extruder_nr description" msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "Sisäseinämien tulostukseen käytettävä suulakeryhmä. Tätä käytetään monipursotuksessa." @@ -4128,6 +4524,10 @@ msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." msgstr "Mallin vaakasuuntaisten osien yläpuolinen korkeus, jonka mukaan muotti tulostetaan." +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "" + msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." msgstr "Korkeus, jolla tuulettimet pyörivät normaalilla nopeudella. Alemmilla kerroksilla tuulettimen nopeus kasvaa asteittain tuulettimen nopeudesta alussa normaaliin tuulettimen nopeuteen." @@ -4136,10 +4536,6 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Suuttimen kärjen ja korokejärjestelmän (X- ja Y-akselit) välinen korkeusero." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Suuttimen kärjen ja tulostuspään alimman osan välinen korkeusero." - msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." msgstr "" @@ -4238,6 +4634,10 @@ msgctxt "top_skin_preshrink description" msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." msgstr "Suurin poistettavien yläpintakalvoalueiden leveys. Kaikki tätä arvoa pienemmät pintakalvoalueet poistuvat. Tästä voi olla apua mallin kaltevien pintojen yläpintakalvon tulostukseen käytettävän ajan ja materiaalin rajoittamisessa." +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "" + msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." msgstr "Kerros, jolla tuulettimet pyörivät normaalilla nopeudella. Jos normaali tuulettimen nopeus korkeudella on asetettu, tämä arvo lasketaan ja pyöristetään kokonaislukuun." @@ -4310,10 +4710,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Kaikkien sisäseinämien tulostuksen nopeuden hetkellinen maksimimuutos." +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "" + msgctxt "jerk_infill description" msgid "The maximum instantaneous velocity change with which infill is printed." msgstr "Täytön tulostuksen nopeuden hetkellinen maksimimuutos." +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "Tuen lattioiden tulostuksen nopeuden hetkellinen maksimimuutos." @@ -4450,6 +4862,14 @@ msgctxt "support_bottom_stair_step_min_slope description" msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." msgstr "" +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "" + msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "Kerrokseen käytetty minimiaika. Tämä pakottaa tulostimen hidastamaan ja käyttämään vähintään tässä määritellyn ajan yhdellä kerroksella. Näin tulostettu materiaali saa jäähtyä kunnolla ennen seuraavan kerroksen tulostamista. Kerrosten tulostus saattaa silti tapahtua minimikerrosnopeutta nopeammin, jos tulostuspään nosto ei ole käytössä ja jos miniminopeuden käyttäminen edellyttää tätä." @@ -4482,6 +4902,10 @@ msgctxt "bottom_layers description" msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "Alakerrosten lukumäärä. Kun se lasketaan alaosan paksuudesta, arvo pyöristetään kokonaislukuun." +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "" + msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" @@ -4518,6 +4942,10 @@ msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." msgstr "" +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "" + msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "Pohjaristikon toisen kerroksen päällä olevien pintakerrosten lukumäärä. Ne ovat täysin täytettyjä kerroksia, joilla malli lepää. Kaksi kerrosta tuottaa sileämmän pinnan kuin yksi kerros." @@ -4558,6 +4986,10 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "Suuttimen kärjen ulkoläpimitta." +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "" + msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "" @@ -4610,14 +5042,14 @@ msgctxt "jerk_layer_0 description" msgid "The print maximum instantaneous velocity change for the initial layer." msgstr "Alkukerroksen tulostuksen nopeuden hetkellinen maksimimuutos." +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "" + msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." msgstr "Alustan muoto ottamatta huomioon alueita, joihin ei voi tulostaa." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "" - msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "Taskujen koko nelisuuntaisissa risteyksissä risti 3D -kuviossa korkeuksissa, joissa kuvio koskettaa itseään." @@ -4638,6 +5070,10 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Nopeus, jolla kaikki sisäseinämät tulostetaan. Sisäseinämän tulostus ulkoseinämää nopeammin lyhentää tulostusaikaa. Tämä arvo kannattaa asettaa ulkoseinämän nopeuden ja täyttönopeuden väliin." +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "" + msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." msgstr "" @@ -4654,6 +5090,14 @@ msgctxt "raft_base_speed description" msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Nopeus, jolla pohjaristikon pohjakerros tulostetaan. Tämä tulisi tulostaa melko hitaasti, sillä suuttimesta tulevan materiaalin määrä on varsin suuri." +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "" + msgctxt "bridge_wall_speed description" msgid "The speed at which the bridge walls are printed." msgstr "" @@ -4938,6 +5382,26 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "" +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "" + msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" @@ -4954,6 +5418,10 @@ msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Tämä asetus rajoittaa pursotuksen minimietäisyyden ikkunassa tapahtuvien takaisinvetojen lukumäärää. Muut tämän ikkunan takaisinvedot jätetään huomiotta. Tällä vältetään toistuvat takaisinvedot samalla tulostuslangan osalla, sillä tällöin lanka voi litistyä ja aiheuttaa hiertymisongelmia." @@ -5182,10 +5650,22 @@ msgctxt "support_tree_max_diameter label" msgid "Trunk Diameter" msgstr "" +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "" + msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "" + msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" msgstr "Yhdistä limittyvät ainemäärät" @@ -5310,8 +5790,16 @@ msgctxt "shell label" msgid "Walls" msgstr "" +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "" + msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." msgstr "" msgctxt "meshfix_fluid_motion_enabled description" @@ -5350,6 +5838,14 @@ msgctxt "bridge_wall_material_flow description" msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "" +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "" + msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "" @@ -5374,6 +5870,10 @@ msgctxt "wall_transition_length description" 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 lines." msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "" + msgctxt "wipe_hop_enable description" msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." msgstr "" @@ -5470,6 +5970,10 @@ msgctxt "support_interface_line_width description" msgid "Width of a single line of support roof or floor." msgstr "Tukikaton tai -lattian yhden linjan leveys." +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." msgstr "Tulosteen yläosan alueiden yhden linjan leveys." @@ -5646,6 +6150,10 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Z-sauman kohdistus" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "" @@ -5666,6 +6174,10 @@ msgctxt "support_xy_overrides_z option z_overrides_xy" msgid "Z overrides X/Y" msgstr "Z kumoaa X/Y:n" +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + msgctxt "infill_pattern option zigzag" msgid "Zig Zag" msgstr "Siksak" @@ -5718,6 +6230,10 @@ msgstr "siirtoliike" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "Mallin ensimmäisen ja toisen kerroksen limitys Z-suunnassa, millä kompensoidaan ilmaraossa menetettyä tulostuslankaa. Kaikki ensimmäisen mallin kerroksen yläpuolella olevat mallit siirtyvät alas tämän määrän." +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "Suuttimen koko" + #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Tulostaa reunuksen vain mallin ulkopuolelle. Tämä vähentää myöhemmin poistettavan reunuksen määrää, mutta se ei juurikaan vähennä pöydän tarttuvuutta." @@ -5726,6 +6242,10 @@ msgstr "siirtoliike" #~ msgid "Support Interface Resolution" #~ msgstr "Tukiliittymän resoluutio" +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "Suuttimen kärjen ja tulostuspään alimman osan välinen korkeusero." + #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "Kun tarkistat tuen päällä ja alla olevaa mallia, toimi annetun korkeuden mukaisesti. Pienemmillä arvoilla viipalointi tapahtuu hitaammin, ja korkeammat arvot saattavat aiheuttaa normaalin tuen tulostumisen paikkoihin, joissa olisi pitänyt olla tukiliittymä." diff --git a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po b/resources/i18n/fi_FI/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4..0000000000 --- a/resources/i18n/fi_FI/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/fr_FR/cura.po b/resources/i18n/fr_FR/cura.po index a8c8c77bc2..64bb8cd87d 100644 --- a/resources/i18n/fr_FR/cura.po +++ b/resources/i18n/fr_FR/cura.po @@ -168,6 +168,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Fichier 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Lecteur 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Générateur 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Le plugin 3MF Writer est corrompu." @@ -243,6 +251,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Fichier AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Lecteur AMF" + msgctxt "@label" msgid "Abort" msgstr "Abandonner" @@ -279,6 +291,10 @@ msgctxt "@button" msgid "Accept" msgstr "Accepter" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." + msgctxt "@label" msgid "Account synced" msgstr "Compte synchronisé" @@ -419,6 +435,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Autoriser l'envoi de données anonymes" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permet le chargement et l'affichage de fichiers G-Code." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Toujours me demander" @@ -575,6 +595,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Sauvegarder et réinitialiser la configuration" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Sauvegardez et restaurez votre configuration." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Sauvegardez et synchronisez vos paramètres de matériaux et vos plugins" @@ -747,6 +771,14 @@ msgctxt "@label" msgid "Checking..." msgstr "Vérification en cours..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Vérifie les mises à jour du firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Choisit entre les stratégies de support disponibles. Le support « Normal » créé une structure de support directement sous les zones en porte-à-faux et fait descendre les supports directement vers le bas. Le support « Arborescent » génère une structure de branches depuis le plateau tout autour du modèle qui vont supporter les portes-à-faux sans toucher le modèle ailleur que les zones supportées." @@ -827,6 +859,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Fichier G-Code compressé" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lecteur G-Code compressé" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Générateur de G-Code compressé" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Modifications de configuration" @@ -899,6 +939,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Connecté via le cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consultez la communauté UltiMaker." @@ -921,7 +965,7 @@ msgstr "Copier dans le presse-papier" msgctxt "@action:menu" msgid "Copy value to all extruders" -msgstr "Copier la valeur vers toutes les extrudeuses" +msgstr "Copier la valeur vers tous les extrudeurs" msgctxt "@label" msgid "Cost per Meter" @@ -1034,6 +1078,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Créez des projets d'impression dans Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Création de votre sauvegarde..." @@ -1046,10 +1094,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Sauvegardes Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Sauvegardes Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profil Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lecteur de profil Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Générateur de profil Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Projet Cura fichier 3MF" @@ -1079,6 +1139,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Version Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Système CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Devise:" @@ -1363,6 +1435,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Activé" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "G-Code de fin" @@ -1451,6 +1527,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Étendez UltiMaker Cura avec des plugins et des profils de matériaux." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" + msgctxt "@label" msgid "Extruder" msgstr "Extrudeuse" @@ -1599,6 +1679,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Mise à jour du firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Vérificateur des mises à jour du firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Programme de mise à jour du firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Échec de la mise à jour du firmware, car cette fonctionnalité n'est pas prise en charge par la connexion avec l'imprimante." @@ -1698,6 +1786,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Fichier GCode" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lecteur de profil G-Code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lecteur G-Code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Générateur de G-Code" + msgctxt "@label" msgid "G-code flavor" msgstr "Parfum G-Code" @@ -1846,6 +1946,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Si votre imprimante n'apparaît pas dans la liste, lisez le guide de dépannage de l'impression en réseau" +msgctxt "name" +msgid "Image Reader" +msgstr "Lecteur d'images" + msgctxt "@action:button" msgid "Import" msgstr "Importer" @@ -2130,6 +2234,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vue gauche" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lecteur de profil Cura antérieur" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informez les développeurs en cas de problème." @@ -2210,6 +2318,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Journaux" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Connexion avec l'imprimante perdue" @@ -2218,6 +2330,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Paramètres de la machine" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Action Paramètres de la machine" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Machines" @@ -2234,6 +2350,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Fichier d'impression Makerbot" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Écrivain de fichier d'impression Makerbot" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter n'a pas pu sauvegarder dans le chemin désigné." @@ -2290,6 +2410,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gérez vos plug-ins Ultimaker Cura et vos profils matériaux ici. Assurez-vous de maintenir vos plug-ins à jour et de sauvegarder régulièrement votre configuration." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gère les connexions réseau vers les imprimantes UltiMaker en réseau." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabricant" @@ -2302,6 +2430,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marketplace" +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + msgctxt "@action:label" msgid "Material" msgstr "Matériau" @@ -2318,6 +2450,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Couleur du matériau" +msgctxt "name" +msgid "Material Profiles" +msgstr "Profils matériels" + msgctxt "@label" msgid "Material Type" msgstr "Type de matériau" @@ -2362,6 +2498,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Mode" +msgctxt "name" +msgid "Model Checker" +msgstr "Contrôleur de modèle" + msgctxt "@info:title" msgid "Model Errors" msgstr "Erreurs du modèle" @@ -2378,6 +2518,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Surveiller" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Étape de surveillance" + msgctxt "@action:button" msgid "Monitor print" msgstr "Surveiller l'impression" @@ -2819,6 +2963,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Paramètres par modèle" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Outil de paramètres par modèle" + msgid "Perspective" msgstr "Perspective" @@ -2889,7 +3037,7 @@ msgctxt "@info:status" msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" msgstr "Veuillez vérifier les paramètres et si vos modèles:" "- S'intègrent dans le volume de fabrication" -"- Sont affectés à une extrudeuse activée" +"- Sont affectés à un extrudeur activé" "- N sont pas tous définis comme des mailles de modificateur" msgctxt "@label" @@ -2944,6 +3092,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-traitement" +msgctxt "name" +msgid "Post Processing" +msgstr "Post-traitement" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plugin de post-traitement" @@ -2960,6 +3112,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Préparer" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Étape de préparation" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Préparation..." @@ -2980,9 +3136,13 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Aperçu" +msgctxt "name" +msgid "Preview Stage" +msgstr "Étape de prévisualisation" + msgctxt "@tooltip" msgid "Prime Tower" -msgstr "Tour d'amorçage" +msgstr "Tour primaire" msgctxt "@action:button" msgid "Print" @@ -3224,6 +3384,106 @@ msgctxt "@label" msgid "Properties" msgstr "Propriétés" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fournit une étape de surveillance dans Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Affiche une vue en maille solide normale." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fournit une étape de préparation dans Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fournit une étape de prévisualisation dans Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fournit la prise en charge de l'exportation de profils Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fournit la prise en charge de l'importation de profils Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fournit la prise en charge de la lecture de fichiers AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fournit la prise en charge de la lecture de fichiers X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Prise en charge de l'écriture des fichiers 3MF et UCP." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fournit un support pour l'écriture de paquets de format MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permet l'écriture de fichiers UltiMaker Format Package." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fournit les paramètres par modèle." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permet la vue Rayon-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fournit l'aperçu des données du slice." + msgctxt "@label" msgid "PyQt version" msgstr "Version PyQt" @@ -3260,6 +3520,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Quitter %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lit le G-Code à partir d'une archive compressée." + msgctxt "@button" msgid "Recommended" msgstr "Recommandé" @@ -3312,6 +3576,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Lecteur amovible" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin de périphérique de sortie sur disque amovible" + msgctxt "@action:button" msgid "Remove" msgstr "Supprimer" @@ -3592,13 +3860,17 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Envoi de matériaux à l'imprimante" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Journal d'événements dans Sentry" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Bibliothèque de communication série" msgctxt "@action:inmenu" msgid "Set as Active Extruder" -msgstr "Définir comme extrudeuse active" +msgstr "Définir comme extrudeur actif" msgctxt "@title:column" msgid "Setting" @@ -3800,6 +4072,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Connectez-vous à la plateforme UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Vue simulation" + msgctxt "@tooltip" msgid "Skin" msgstr "Couche extérieure" @@ -3828,6 +4104,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Découper automatiquement si les paramètres sont modifiés." +msgctxt "name" +msgid "Slice info" +msgstr "Information sur le découpage" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Échec de la découpe" @@ -3844,6 +4124,10 @@ msgctxt "@label" msgid "Solid" msgstr "Solide" +msgctxt "name" +msgid "Solid View" +msgstr "Vue solide" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vue solide" @@ -3938,6 +4222,10 @@ msgctxt "@label" msgid "Strength" msgstr "Résistance" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Matériau exporté avec succès vers %1" @@ -3982,6 +4270,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Blocage des supports" +msgctxt "name" +msgid "Support Eraser" +msgstr "Effaceur de support" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Remplissage du support" @@ -3992,7 +4284,7 @@ msgstr "Interface du support" msgctxt "@action:label" msgid "Support Type" -msgstr "Type de prise en charge" +msgstr "Structure du support" msgctxt "@label Description for application dependency" msgid "Support library for faster math" @@ -4114,11 +4406,11 @@ msgstr "L'imprimante cloud est hors ligne. Veuillez vérifier si l'imprimante es msgctxt "@tooltip" msgid "The colour of the material in this extruder." -msgstr "Couleur du matériau dans cet extrudeuse." +msgstr "Couleur du matériau dans cet extrudeur." msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." -msgstr "La configuration de cet extrudeuse n'est pas autorisée et interdit la découpe." +msgstr "La configuration de cet extrudeur n'est pas autorisée et interdit la découpe." msgctxt "@label" msgid "The configurations are not available because the printer is disconnected." @@ -4192,7 +4484,7 @@ msgstr "Les zones surlignées indiquent que des surfaces manquent ou sont étran msgctxt "@tooltip" msgid "The material in this extruder." -msgstr "Matériau dans cet extrudeuse." +msgstr "Matériau dans cet extrudeur." msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." @@ -4208,7 +4500,7 @@ msgstr "Le nouveau diamètre de filament est réglé sur %1 mm, ce qui n'est pa msgctxt "@tooltip" msgid "The nozzle inserted in this extruder." -msgstr "Buse insérée dans cet extrudeuse." +msgstr "Buse insérée dans cet extrudeur." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." @@ -4303,7 +4595,7 @@ msgstr "Il n'y a pas de travaux d'impression dans la file d'attente. Découpez e msgctxt "@tooltip" msgid "There are no profiles matching the configuration of this extruder." -msgstr "Aucun profil ne correspond à la configuration de cet extrudeuse." +msgstr "Aucun profil ne correspond à la configuration de cet extrudeur." msgctxt "@info:status" msgid "There is no active printer yet." @@ -4413,7 +4705,7 @@ msgstr "Ce paramètre n'est pas utilisé car tous les paramètres qu'il influenc msgctxt "@label" msgid "This setting is resolved from conflicting extruder-specific values:" -msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeuse :" +msgstr "Ce paramètre est résolu à partir de valeurs conflictuelles spécifiques à l'extrudeur :" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." @@ -4499,6 +4791,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "A essayé de restaurer une sauvegarde Cura sans disposer de données ou de métadonnées appropriées." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Lecteur de Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Dépannage" @@ -4519,10 +4815,22 @@ msgctxt "@label" msgid "Type" msgstr "Type" +msgctxt "name" +msgid "UFP Reader" +msgstr "Lecteur UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Générateur UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impression par USB" +msgctxt "name" +msgid "USB printing" +msgstr "Impression par USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Compte UltiMaker" @@ -4539,6 +4847,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connexion réseau UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Package UltiMaker vérifié" @@ -4547,6 +4859,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plugin UltiMaker vérifié" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Actions de la machine UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Imprimante UltiMaker" @@ -4559,6 +4875,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossible d'ajouter le profil." @@ -4594,7 +4914,7 @@ msgstr "Impossible de découper" msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." -msgstr "Impossible de découper car la tour d'amorçage ou la (les) position(s) d'amorçage ne sont pas valides." +msgstr "Impossible de couper car la tour primaire ou la (les) position(s) d'amorçage ne sont pas valides." msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." @@ -4732,6 +5052,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Mise à jour..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Met à jour les configurations de Cura 5.6 à Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Charger le firmware personnalisé" @@ -4768,6 +5196,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Valeur" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Mise à niveau vers 2.1 vers 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Mise à niveau de 2.2 vers 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Mise à niveau de 2.5 vers 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Mise à niveau de 2.6 vers 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Mise à niveau de version, de 2.7 vers 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Mise à niveau de version, de 3.0 vers 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Mise à niveau de 3.2 vers 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Mise à niveau de 3.3 vers 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Mise à niveau de 3.4 vers 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Mise à niveau de 3.5 vers 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Mise à niveau de 4.0 vers 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Mise à jour de 4.1 vers 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Mise à niveau de la version 4.11 vers la version 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Mise à niveau de la version 4.13 vers la version 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Mise à jour de 4.2 vers 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Mise à niveau de 4.3 vers 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Mise à niveau de 4.4 vers 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Mise à niveau de 4.5 vers 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Mise à niveau de 4.6.0 vers 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Mise à niveau de 4.6.2 vers 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Mise à niveau de 4.7 vers 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Mise à niveau de 4.8 vers 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Mise à niveau de 4.9 vers 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Mise à niveau de 5.2 vers 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Mise à niveau de la version 5.3 vers 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Mise à niveau de la version 5.4 vers 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Mise à jour de la version 5.6 à 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Afficher les imprimantes dans Digital Factory" @@ -4884,6 +5420,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Largeur (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Enregistre le G-Code dans une archive compressée." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Enregistre le G-Code dans un fichier." + msgctxt "@label" msgid "X (Width)" msgstr "X (Largeur)" @@ -4896,6 +5440,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vue Rayon-X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Visualisation par rayons X" @@ -4908,6 +5456,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Fichier X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lecteur X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondeur)" @@ -5054,554 +5606,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Échec de téléchargement des plugins {}" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gère les connexions réseau aux imprimantes UltiMaker en réseau." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Connexion réseau UltiMaker" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fournit la prise en charge de l'importation de profils à partir de fichiers g-code." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lecteur de profil G-Code" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Affiche une vue en maille solide normale." - -msgctxt "name" -msgid "Solid View" -msgstr "Vue solide" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine permettant de lisser progressivement le débit afin de limiter les sauts lorsque le débit est élevé" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fournit la prise en charge de la lecture de fichiers 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lecteur 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accepte les G-Code et les envoie à une imprimante. Ce plugin peut aussi mettre à jour le firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impression par USB" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Vérifie les mises à jour du firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Vérificateur des mises à jour du firmware" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gère les extensions de l'application et permet de parcourir les extensions à partir du site Web UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Sauvegardez et restaurez votre configuration." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Sauvegardes Cura" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Permet de modifier les paramètres de la machine (tels que volume d'impression, taille de buse, etc.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Action Paramètres de la machine" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Configurations des mises à niveau de Cura 2.5 vers Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Mise à niveau de 2.5 vers 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Mises à niveau des configurations de Cura 4.7 vers Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Mise à niveau de 4.7 vers 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Configurations des mises à niveau de Cura 4.4 vers Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Mise à niveau de 4.4 vers 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Met à niveau les configurations, de Cura 3.0 vers Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Mise à niveau de version, de 3.0 vers 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Mises à niveau des configurations de Cura 4.11 vers Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Mise à niveau de la version 4.11 vers la version 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Configurations des mises à jour de Cura 4.1 vers Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Mise à jour de 4.1 vers 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Configurations des mises à niveau de Cura 2.6 vers Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Mise à niveau de 2.6 vers 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Mises à niveau des configurations de Cura 4.6.0 vers Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Mise à niveau de 4.6.0 vers 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Configurations des mises à niveau de Cura 3.3 vers Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Mise à niveau de 3.3 vers 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Mises à niveau des configurations de Cura 4.8 vers Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Mise à niveau de 4.8 vers 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Mises à niveau des configurations de Cura 4.5 vers Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Mise à niveau de 4.5 vers 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Configurations des mises à jour de Cura 4.2 vers Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Mise à jour de 4.2 vers 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Configurations des mises à niveau de Cura 3.2 vers Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Mise à niveau de 3.2 vers 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurations des mises à niveau de Cura 4.3 vers Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinaison non recommandée. Chargez le noyau BB dans l'emplacement 1 (gauche) pour une meilleure fiabilité." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Mise à niveau de 4.3 vers 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Met à jour les configurations de Cura 5.6 à Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Fichier d'impression Makerbot Sketch" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Mise à jour de la version 5.6 à 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Rechercher l'imprimante" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Configurations des mises à niveau de Cura 2.1 vers Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Il s'agit d'un fichier de projet Cura Universal. Souhaitez-vous l'ouvrir en tant que projet Cura Universal ou importer les modèles qu'il contient ?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Mise à niveau vers 2.1 vers 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Paquet d'exportation pour l'assistance technique" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurations des mises à niveau de Cura 5.3 vers Cura 5.4." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Impossible d'envoyer les données du modèle au moteur. Veuillez réessayer ou contacter le service d'assistance." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Mise à niveau de la version 5.3 vers 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Impossible d'envoyer les données du modèle au moteur. Veuillez essayer d'utiliser un modèle moins détaillé ou de réduire le nombre d'instances." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Mises à niveau des configurations de Cura 4.9 vers Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Met à jour les configurations de Cura 5.8 vers Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Mise à niveau de 4.9 vers 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Met à niveau les configurations, de Cura 2.7 vers Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Mise à jour de la version 5.8 à 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Mise à niveau de version, de 2.7 vers 3.0" +msgid "3DConnexion mouses" +msgstr "Souris 3DConnexion" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Configurations des mises à niveau de Cura 3.5 vers Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Permet de travailler avec des souris 3D dans Cura." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Mise à niveau de 3.5 vers 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Durée du changement de l’extrudeuse" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Mises à niveau des configurations de Cura 5.2 vers Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "Prestart G-code de l’extrudeuse" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Mise à niveau de 5.2 vers 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Retourner l’axe Y du manche de l’outil du modèle (redémarrage nécessaire)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Configurations des mises à niveau de Cura 4.0 vers Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Licence de %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Mise à niveau de 4.0 vers 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ Fichier d'impression" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Mises à niveau des configurations de Cura 4.13 vers Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "L’axe Y de la poignée de translation doit-il être retourné ? Une telle action n’affecte que la coordonnée Y du modèle. Tous les autres paramètres, tels que les paramètres de la tête d’impression de la machine, ne sont pas affectés et se comportent comme d'habitude." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Mise à niveau de la version 4.13 vers la version 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Configurations des mises à niveau de Cura 3.4 vers Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Mise à niveau de 3.4 vers 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Configurations des mises à niveau de Cura 2.2 vers Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "Il faut commencer par le Start GCode" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Mise à niveau de 2.2 vers 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Cette configuration n’est pas disponible en raison d’une incompatibilité ou d’un autre problème avec le type de noyau %1. Veuillez consulter la page d'assistance pour vérifier quels sont les noyaux pris en charge par ce type d’imprimante en ce qui concerne les nouvelles tranches." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Mises à niveau des configurations de Cura 4.6.2 vers Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Mise à jour des configurations de Cura 5.9 vers Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Mise à niveau de 4.6.2 vers 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Mise à jour de la version 5.9 vers 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurations des mises à niveau de Cura 5.4 vers Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Mise à niveau de la version 5.4 vers 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permet le chargement et l'affichage de fichiers G-Code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lecteur G-Code" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y max ('+' vers l’avant)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envoie des informations anonymes sur le découpage. Peut être désactivé dans les préférences." - -msgctxt "name" -msgid "Slice info" -msgstr "Information sur le découpage" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Permet le branchement hot-plug et l'écriture sur lecteur amovible." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin de périphérique de sortie sur disque amovible" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crée un maillage effaceur pour bloquer l'impression du support en certains endroits" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Effaceur de support" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Vérifie les modèles et la configuration de l'impression pour déceler d'éventuels problèmes d'impression et donne des suggestions." - -msgctxt "name" -msgid "Model Checker" -msgstr "Contrôleur de modèle" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fournit une étape de préparation dans Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Étape de préparation" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fournit l'aperçu des données du slice." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vue simulation" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fournit la prise en charge de la lecture de fichiers AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lecteur AMF" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permet la vue Rayon-X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vue Rayon-X" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fournit à une machine des actions permettant la mise à jour du firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Programme de mise à jour du firmware" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fournit la prise en charge de l'importation de profils à partir de versions Cura antérieures." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lecteur de profil Cura antérieur" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extension qui permet le post-traitement des scripts créés par l'utilisateur" - -msgctxt "name" -msgid "Post Processing" -msgstr "Post-traitement" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Enregistre certains événements afin qu'ils puissent être utilisés par le rapporteur d'incident" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Journal d'événements dans Sentry" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Fournit un support pour l'écriture de paquets de format MakerBot." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Écrivain de fichier d'impression Makerbot" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fournit la prise en charge de l'importation de profils Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lecteur de profil Cura" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fournit un support pour la lecture des paquets de format UltiMaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Lecteur UFP" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permet de générer une géométrie imprimable à partir de fichiers d'image 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lecteur d'images" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fournit le lien vers l'arrière du système de découpage CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Système CuraEngine" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Enregistre le G-Code dans une archive compressée." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Générateur de G-Code compressé" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fournit les actions de la machine pour les machines UltiMaker (telles que l'assistant de calibration du plateau, sélection des mises à niveau, etc.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Actions de la machine UltiMaker" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lit le G-Code à partir d'une archive compressée." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lecteur G-Code compressé" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fournit une étape de prévisualisation dans Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Étape de prévisualisation" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Se connecte à la Digital Library, permettant à Cura d'ouvrir des fichiers à partir de cette dernière et d'y enregistrer des fichiers." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fournit la prise en charge de l'exportation de profils Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Générateur de profil Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fournit la prise en charge de la lecture de fichiers X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lecteur X3D" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fournit la prise en charge de la lecture de fichiers modèle 3D." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Lecteur de Trimesh" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fournit une étape de surveillance dans Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Étape de surveillance" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fournit les paramètres par modèle." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Outil de paramètres par modèle" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilité de lire et d'écrire des profils matériels basés sur XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Profils matériels" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Prise en charge de l'écriture des fichiers 3MF et UCP." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Générateur 3MF" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permet l'écriture de fichiers UltiMaker Format Package." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Générateur UFP" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Enregistre le G-Code dans un fichier." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Générateur de G-Code" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y min ('-' vers l’arrière)" diff --git a/resources/i18n/fr_FR/fdmextruder.def.json.po b/resources/i18n/fr_FR/fdmextruder.def.json.po index c4b5ae47cf..ccb053765c 100644 --- a/resources/i18n/fr_FR/fdmextruder.def.json.po +++ b/resources/i18n/fr_FR/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Diamètre" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrudeuse" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Extrudeuse G-Code de fin" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Fin du G-Code à exécuter lors de l'abandon de l'extrudeuse." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Durée du G-Code de fin d'extrudeuse" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "Temps nécessaire à l'exécution du G-Code de fin d'extrudeuse, lors de l'arrêt de cette extrudeuse." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Extrudeuse Position de fin absolue" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Extrudeuse Position de fin X" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extrudeuse Position de fin Y" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Extrudeuse Position d'amorçage Z" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventilateur de refroidissement d'impression de l'extrudeuse" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Extrudeuse G-Code de démarrage" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Durée du G-Code de démarrage de l'extrudeuse" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "Le temps qu'il faut pour exécuter le g-code de démarrage, lorsque l'on passe à cette extrudeuse." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Extrudeuse Position de départ absolue" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Extrudeuse Position de départ X" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Extrudeuse Position de départ Y" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position de fin de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Rendre la position de départ de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID buse" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Extrudeuse Position de départ X" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Extrudeuse Position de départ Y" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Buse Décalage X" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Les coordonnées X du décalage de la buse." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Buse Décalage Y" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Démarrer le G-Code à exécuter lors du passage à cette extrudeuse." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression. Cela est utilisé en multi-extrusion." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Numéro du ventilateur de refroidissement d'impression associé à cette extrudeuse. Ne modifiez cette valeur par rapport à la valeur par défaut 0 que si vous utilisez un ventilateur de refroidissement d'impression différent pour chaque extrudeuse." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Temps nécessaire à l'exécution du G-Code de fin d'extrudeuse, lors de l'arrêt de cette extrudeuse." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Le temps qu'il faut pour exécuter le g-code de démarrage, lorsque l'on passe à cette extrudeuse." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Les coordonnées X de la position de fin lors de l'arrêt de l'extrudeuse." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Les coordonnées X du décalage de la buse." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Les coordonnées X de la position de départ lors de la mise en marche de l'extrudeuse." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Les coordonnées Y de la position de fin lors de l'arrêt de l'extrudeuse." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Les coordonnées Y du décalage de la buse." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Les coordonnées Y de la position de départ lors de la mise en marche de l'extrudeuse." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longueur de la buse" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Différence de hauteur entre l'extrémité de la buse et la partie la plus basse de la tête d'impression." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Durée du changement de l’extrudeuse" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "Prestart G-code de l’extrudeuse" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "Prestart g-code à exécuter avant de passer à cette extrudeuse." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Lors de l’utilisation d’une configuration multioutils, cette valeur correspond au temps de changement d’outil en secondes. Cette valeur sera ajoutée au temps estimé en fonction du nombre de changements effectués." diff --git a/resources/i18n/fr_FR/fdmprinter.def.json.po b/resources/i18n/fr_FR/fdmprinter.def.json.po index 1dce5a0818..49d335ecd0 100644 --- a/resources/i18n/fr_FR/fdmprinter.def.json.po +++ b/resources/i18n/fr_FR/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n>1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" +msgstr "Comment générer la tour d'amorçage :
  • Normale : créer un pot dans lequel les matériaux secondaires sont amorcés
  • Entrelacée : créez une tour d'amorçage aussi peu dense que possible. Vous économiserez ainsi du temps et du filament, mais cette opération n'est possible que si les matériaux utilisés adhèrent les uns aux autres
" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Paramètres spécifiques de la machine" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type de machine" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Le nom du modèle de votre imprimante 3D." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Afficher les variantes de la machine" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Afficher ou non les différentes variantes de cette machine qui sont décrites dans des fichiers json séparés." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Code de démarrage" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Commandes G-Code à exécuter au tout début, séparées par " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-Code de fin" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Commandes G-Code à exécuter tout à la fin, séparées par " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID matériau" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID du matériau. Cela est configuré automatiquement." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Type de matériau" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "Le type de matériau utilisé." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Marque du matériau" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "La marque du matériau utilisé." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diamètre" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendre le chauffage du plateau" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Insérer ou non une commande pour attendre que la température du plateau soit atteinte au démarrage." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendre le chauffage de la buse" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Attendre ou non que la température de la buse soit atteinte au démarrage." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Inclure les températures du matériau" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Inclure ou non les commandes de température de la buse au début du gcode. Si le gcode_démarrage contient déjà les commandes de température de la buse, l'interface Cura désactive automatiquement ce paramètre." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Inclure la température du plateau" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Inclure ou non les commandes de température du plateau au début du gcode. Si le gcode_démarrage contient déjà les commandes de température du plateau, l'interface Cura désactive automatiquement ce paramètre." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largeur de la machine" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La largeur (sens X) de la zone imprimable." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondeur de la machine" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondeur (sens Y) de la zone imprimable." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Hauteur de la machine" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "La hauteur (sens Z) de la zone imprimable." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forme du plateau" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forme du plateau sans prendre les zones non imprimables en compte." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rectangulaire" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elliptique" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Matériau du plateau" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Matériau du plateau installé sur l'imprimante." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Verre" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "A un plateau chauffé" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Si la machine a un plateau chauffé présent." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Est dotée de la stabilisation de la température du volume d'impression" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Si la machine est capable de stabiliser la température du volume d'impression." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Toujours écrire l'outil actif" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Écrivez l'outil actif après avoir envoyé des commandes temporaires à l'outil inactif. Requis pour l'impression à double extrusion avec Smoothie ou un autre micrologiciel avec des commandes d'outils modaux." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Est l'origine du centre" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Si les coordonnées X/Y de la position zéro de l'imprimante se situent au centre de la zone imprimable." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Nombre d'extrudeuses" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Nombre de trains d'extrudeuse. Un train d'extrudeuse est la combinaison d'un chargeur, d'un tube bowden et d'une buse." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Nombre d'extrudeuses activées" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Nombre de trains d'extrusion activés ; automatiquement défini dans le logiciel" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diamètre extérieur de la buse" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Le diamètre extérieur de la pointe de la buse." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Longueur de la buse" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "La différence de hauteur entre la pointe de la buse et la partie la plus basse de la tête d'impression." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angle de la buse" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "L'angle entre le plan horizontal et la partie conique juste au-dessus de la pointe de la buse." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Longueur de la zone chauffée" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Distance depuis la pointe du bec d'impression sur laquelle la chaleur du bec d'impression est transférée au filament." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Permettre le contrôle de la température de la buse" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Contrôler ou non la température depuis Cura. Désactivez cette option pour contrôler la température de la buse depuis une source autre que Cura." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Vitesse de chauffage" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La vitesse (°C/s) à laquelle la buse chauffe, sur une moyenne de la plage de températures d'impression normales et la température en veille." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Vitesse de refroidissement" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La vitesse (°C/s) à laquelle la buse refroidit, sur une moyenne de la plage de températures d'impression normales et la température en veille." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Durée minimale température de veille" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "La durée minimale pendant laquelle une extrudeuse doit être inactive avant que la buse ait refroidi. Ce n'est que si une extrudeuse n'est pas utilisée pendant une durée supérieure à celle-ci qu'elle pourra refroidir jusqu'à la température de veille." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Parfum G-Code" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Type de G-Code à générer." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrique)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Rétraction du firmware" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "S'il faut utiliser les commandes de rétraction du firmware (G10 / G11) au lieu d'utiliser la propriété E dans les commandes G1 pour rétracter le matériau." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Les extrudeuses partagent le chauffage" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Si les extrudeuses partagent un seul chauffage au lieu que chaque extrudeuse ait son propre chauffage." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Les extrudeuses partagent la buse" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Lorsque les extrudeuses partagent une seule buse au lieu que chaque extrudeuse ait sa propre buse. Lorsqu'il est défini à true, le script gcode de démarrage de l'imprimante doit configurer correctement toutes les extrudeuses dans un état de rétraction initial connu et mutuellement compatible (zéro ou un filament non rétracté) ; dans ce cas, l'état de rétraction initial est décrit, par extrudeuse, par le paramètre 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Rétraction initiale de la buse partagée" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La quantité de filament de chaque extrudeuse qui est supposée avoir été rétractée de l'extrémité de la buse partagée à la fin du script gcode de démarrage de l'imprimante ; la valeur doit être égale ou supérieure à la longueur de la partie commune des conduits de la buse." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Zones interdites" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Zones interdites au bec d'impression" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Une liste de polygones comportant les zones dans lesquelles le bec n'a pas le droit de pénétrer." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polygone de la tête de la machine et du ventilateur" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de sa premiere extrudeuse. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Hauteur du portique" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID buse" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diamètre de la buse" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Décalage avec extrudeuse" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Extrudeuse Position d'amorçage Z" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Position d'amorçage absolue de l'extrudeuse" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Vitesse maximale X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "La vitesse maximale pour le moteur du sens X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Vitesse maximale Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "La vitesse maximale pour le moteur du sens Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Vitesse maximale Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "La vitesse maximale pour le moteur du sens Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Vitesse maximale E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "La vitesse maximale du filament." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accélération maximale X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Accélération maximale pour le moteur du sens X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accélération maximale Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Accélération maximale pour le moteur du sens Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accélération maximale Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Accélération maximale pour le moteur du sens Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accélération maximale du filament" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Accélération maximale pour le moteur du filament." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accélération par défaut" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "L'accélération par défaut du mouvement de la tête d'impression." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Saccade X-Y par défaut" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Saccade par défaut pour le mouvement sur le plan horizontal." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Saccade Z par défaut" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Saccade par défaut pour le moteur du sens Z." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Saccade par défaut du filament" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Saccade par défaut pour le moteur du filament." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Pas par millimètre (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction X." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Pas par millimètre (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Y." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Pas par millimètre (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Z." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Pas par millimètre (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Butée X en sens positif" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Détermine si la butée de l'axe X est en sens positif (haute coordonnée X) ou négatif (basse coordonnée X)." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Butée Y en sens positif" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Détermine si la butée de l'axe Y est en sens positif (haute coordonnée Y) ou négatif (basse coordonnée Y)." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Butée Z en sens positif" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Détermine si la butée de l'axe Z est en sens positif (haute coordonnée Z) ou négatif (basse coordonnée Z)." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Taux d'alimentation minimal" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "La vitesse minimale de mouvement de la tête d'impression." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diamètre de roue du chargeur" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Diamètre de la roue qui entraîne le matériau dans le chargeur." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Mise à l'échelle de la vitesse du ventilateur à 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Mettez à l'échelle la vitesse du ventilateur de 0 à 1 au lieu de 0 à 256." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualité" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Hauteur de la couche" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "La hauteur de chaque couche en mm. Des valeurs plus élevées créent des impressions plus rapides dans une résolution moindre, tandis que des valeurs plus basses entraînent des impressions plus lentes dans une résolution plus élevée." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hauteur de la couche initiale" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Largeur de ligne" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Largeur d'une ligne. Généralement, la largeur de chaque ligne doit correspondre à la largeur de la buse. Toutefois, le fait de diminuer légèrement cette valeur peut fournir de meilleures impressions." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Largeur de ligne de la paroi" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Largeur d'une seule ligne de la paroi." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Largeur de ligne de la paroi externe" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Largeur de la ligne la plus à l'extérieur de la paroi. Le fait de réduire cette valeur permet d'imprimer des niveaux plus élevés de détails." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Largeur d'une seule ligne de la paroi pour toutes les lignes de paroi, à l’exception de la ligne la plus externe." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Largeur de la ligne du dessus/dessous" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Largeur d'une seule ligne du dessus/dessous." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Largeur de ligne de remplissage" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Largeur d'une seule ligne de remplissage." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Largeur des lignes de jupe/bordure" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Largeur d'une seule ligne de jupe ou de bordure." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Largeur de ligne de support" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Largeur d'une seule ligne de support." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Largeur de ligne d'interface de support" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Largeur d'une seule ligne de plafond ou de bas de support." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Largeur de ligne de plafond de support" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Largeur d'une seule ligne de plafond de support." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Largeur de ligne de bas de support" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Largeur d'une seule ligne de bas de support." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Largeur de ligne de la tour d'amorçage" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Largeur d'une seule ligne de tour d'amorçage." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Largeur de ligne couche initiale" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicateur de la largeur de la ligne sur la première couche. Augmenter le multiplicateur peut améliorer l'adhésion au plateau." - -msgctxt "shell label" -msgid "Walls" -msgstr "Parois" - -msgctxt "shell description" -msgid "Shell" -msgstr "Coque" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrudeuse de paroi" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois. Cela est utilisé en multi-extrusion." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrudeuse de paroi externe" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois externes. Cela est utilisé en multi-extrusion." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrudeuse de paroi interne" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression des parois internes. Cela est utilisé en multi-extrusion." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Épaisseur de la paroi" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Épaisseur des parois en sens horizontal. Cette valeur divisée par la largeur de la ligne de la paroi définit le nombre de parois." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Nombre de lignes de la paroi" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Le nombre de parois. Lorsqu'elle est calculée par l'épaisseur de la paroi, cette valeur est arrondie à un nombre entier." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Longueur de transition de la paroi" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Lorsque l'on passe d'un nombre de parois à un autre, au fur et à mesure que la pièce s'amincit, un certain espace est alloué pour diviser ou joindre les lignes de parois." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Nombre de distributions des parois" - -msgctxt "wall_distribution_count description" -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 "Le nombre de parois, comptées à partir du centre, sur lesquelles la variation doit être répartie. Les valeurs inférieures signifient que les parois extérieures ne changent pas en termes de largeur." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angle du seuil de transition de la paroi" - -msgctxt "wall_transition_angle description" -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 "Quand créer des transitions entre un nombre uniforme et impair de parois. Une forme de coin dont l'angle est supérieur à ce paramètre n'aura pas de transitions et aucune paroi ne sera imprimée au centre pour remplir l'espace restant. En réduisant ce paramètre, on réduit le nombre et la longueur de ces parois centrales, mais on risque de laisser des trous ou sur-extruder." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distance du filtre de transition des parois" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Marge du filtre de transition des parois" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Empêchez la transition d'avant en arrière entre une paroi supplémentaire et une paroi en moins. Cette marge étend la gamme des largeurs de ligne qui suivent à [Largeur minimale de la ligne de paroi - marge, 2 * Largeur minimale de la ligne de paroi + marge]. L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit le nombre de démarrages/arrêts d'extrusion et le temps de trajet. Cependant, une grande variation de la largeur de la ligne peut entraîner des problèmes de sous-extrusion ou de sur-extrusion." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distance d'essuyage paroi extérieure" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distance d'un déplacement inséré après la paroi extérieure, pour mieux masquer la jointure en Z." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Insert de paroi externe" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Optimiser l'ordre d'impression des parois" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation. La première couche n'est pas optimisée lorsque le type d'adhérence au plateau est défini sur bordure." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordre des parois" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Détermine l'ordre dans lequel les parois sont imprimées. L'impression des parois extérieures plus tôt permet une précision dimensionnelle car les défauts des parois intérieures ne peuvent pas se propager à l'extérieur. Cependant, le fait de les imprimer plus tard leur permet de mieux s'empiler lorsque les saillies sont imprimées. Lorsqu'il y a une quantité totale inégale de parois intérieures, la « dernière ligne centrale » est toujours imprimée en dernier." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De l'intérieur vers l'extérieur" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De l'extérieur vers l'intérieur" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alterner les parois supplémentaires" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprime une paroi supplémentaire une couche sur deux. Ainsi, le remplissage est pris entre ces parois supplémentaires pour créer des impressions plus solides." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi uniforme" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Largeur de ligne minimale pour les parois polygonales normales. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi impaire" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Largeur de ligne minimale pour les parois de polyligne de remplissage de l'espace de ligne médiane. Ce paramètre détermine à partir de quelle épaisseur de modèle 3D nous passons de l'impression de deux lignes de parois à l'impression de deux parois extérieures et d'une seule paroi centrale au milieu. Une largeur de ligne de paroi impaire minimale plus élevée conduit à une largeur de ligne de paroi paire plus élevée. La largeur maximale de la ligne de paroi impaire représente 2 fois la largeur minimale de la ligne de paroi paire." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimer parois fines" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Taille minimale des entités" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Épaisseur minimale des entités fines. Les entités de modèle qui sont plus fines que cette valeur ne seront pas imprimées, tandis que les entités plus épaisses que la taille d'entité minimale seront élargies à la largeur minimale de la ligne de paroi." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Largeur minimale de la ligne de paroi fine" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "La largeur de la paroi qui remplacera les entités fines (selon la taille minimale des entités) du modèle. Si la largeur minimale de la ligne de paroi est plus fine que l'épaisseur de l'entité, la paroi deviendra aussi épaisse que l'entité elle-même." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansion horizontale" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Le décalage appliqué à tous les polygones dans chaque couche. Une valeur positive peut compenser les trous trop gros ; une valeur négative peut compenser les trous trop petits." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansion horizontale de la couche initiale" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Le décalage appliqué à tous les polygones dans la première couche. Une valeur négative peut compenser l'écrasement de la première couche, appelé « patte d'éléphant »." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansion horizontale des trous" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Lorsqu'elle est supérieure à zéro, l'expansion horizontale du trou correspond à la quantité de décalage appliquée à la totalité des trous de chaque couche. Les valeurs positives augmentent la taille des trous, les valeurs négatives réduisent la taille des trous. Lorsque ce paramètre est activé, il peut être ajusté davantage avec le diamètre maximum d'expansion horizontale du trou." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diamètre maximal de l'expansion horizontale des trous" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Lorsque le diamètre est supérieur à zéro, l'expansion horizontale des trous est progressivement appliquée aux petits trous (ces derniers sont élargis). Lorsque le diamètre est défini sur zéro, l'expansion horizontale des trous est appliquée à tous les trous. Les trous dont le diamètre est supérieur au diamètre maximal défini pour l'expansion horizontale des trous ne sont pas élargis." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alignement de la jointure en Z" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Point de départ de chaque voie dans une couche. Quand les voies dans les couches consécutives démarrent au même endroit, une jointure verticale peut apparaître sur l'impression. En alignant les points de départ près d'un emplacement défini par l'utilisateur, la jointure sera plus facile à faire disparaître. Lorsqu'elles sont disposées de manière aléatoire, les imprécisions de départ des voies seront moins visibles. En choisissant la voie la plus courte, l'impression se fera plus rapidement." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Utilisateur spécifié" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Plus court" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aléatoire" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angle le plus aigu" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Position de la jointure en Z" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La position près de laquelle démarre l'impression de chaque partie dans une couche." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Arrière gauche" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Arrière" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Arrière droit" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Droite" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avant droit" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avant" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avant gauche" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Gauche" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X Jointure en Z" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Coordonnée X de la position près de laquelle démarrer l'impression de chaque partie dans une couche." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y Jointure en Z" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Coordonnée Y de la position près de laquelle démarrer l'impression de chaque partie dans une couche." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Préférence de jointure d'angle" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Vérifie si les angles du contour du modèle influencent l'emplacement de la jointure. « Aucune » signifie que les angles n'ont aucune influence sur l'emplacement de la jointure. « Masquer la jointure » génère le positionnement de la jointure sur un angle intérieur. « Exposer la jointure » génère le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer la jointure » génère le positionnement de la jointure sur un angle intérieur ou extérieur. « Jointure intelligente » autorise les angles intérieurs et extérieurs, mais choisit plus fréquemment les angles intérieurs, le cas échéant." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Aucun" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Masquer jointure" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Exposer jointure" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Masquer ou exposer jointure" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Masquage intelligent" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatif à la jointure en Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Si cette option est activée, les coordonnées de la jointure z sont relatives au centre de chaque partie. Si elle est désactivée, les coordonnées définissent une position absolue sur le plateau." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Haut / bas" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Haut / bas" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrudeuse de couche extérieure de la surface supérieure" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure supérieure. Cela est utilisé en multi-extrusion." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Couches extérieures de la surface supérieure" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Nombre de couches extérieures supérieures. En général, une seule couche supérieure est suffisante pour générer des surfaces supérieures de qualité." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Largeur de ligne de couche extérieure de la surface supérieure" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Largeur d'une seule ligne de la zone en haut de l'impression." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Motif de couche extérieure de surface supérieure" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Le motif des couches supérieures." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordre monotone de la surface supérieure" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Sens de lignes de couche extérieure de surface supérieure" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches extérieures de la surface supérieure utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrudeuse du dessus/dessous" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure du haut et du bas. Cela est utilisé en multi-extrusion." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Épaisseur du dessus/dessous" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "L’épaisseur des couches du dessus/dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus/dessous." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Épaisseur du dessus" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "L’épaisseur des couches du dessus dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Couches supérieures" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches supérieures. Lorsqu'elle est calculée par l'épaisseur du dessus, cette valeur est arrondie à un nombre entier." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Épaisseur du dessous" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "L’épaisseur des couches du dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessous." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Couches inférieures" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches inférieures. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Couches inférieures initiales" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Le nombre de couches inférieures initiales à partir du haut du plateau. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Motif du dessus/dessous" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Le motif des couches du dessus/dessous." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Couche initiale du motif du dessous" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Motif au bas de l'impression sur la première couche." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Relier les polygones supérieurs / inférieurs" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordre monotone dessus / dessous" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Sens de la ligne du dessus / dessous" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches du haut / bas utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Petite largeur du dessus/dessous" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Les petites zones haut/bas sont remplies avec des parois au lieu du motif haut/bas par défaut. Cela permet d'éviter les mouvements saccadés. Par défaut, l'option est désactivée pour la couche supérieure (exposée à l'air) (voir « Petit Haut/Bas sur la surface »)." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Petit Haut/Bas sur la surface" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Aucune couche dans les trous en Z" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Lorsque le modèle comporte de petits trous verticaux de quelques couches seulement, il doit normalement y avoir une couche autour de celles-ci dans l'espace étroit. Activez ce paramètre pour ne pas générer de couche si le trou vertical est très petit. Cela améliore le temps d'impression et le temps de découpage, mais laisse techniquement le remplissage exposé à l'air." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Nombre supplémentaire de parois extérieures" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Activer l'étirage" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Allez au-dessus de la surface une fois supplémentaire, mais en extrudant très peu de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse. La pression dans la chambre de la buse est maintenue élevée afin que les plis de la surface soient remplis de matériau." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "N'étirer que la couche supérieure" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Motif d'étirage" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Le motif à utiliser pour étirer les surfaces supérieures." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordre d'étirage monotone" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Interligne de l'étirage" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "La distance entre les lignes d'étirage." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flux d'étirage" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "La quantité de matériau, relative à une ligne de couche extérieure normale, à extruder pendant l'étirage. Le fait de garder la buse pleine aide à remplir certaines des crevasses de la surface supérieure ; mais si la quantité est trop importante, cela entraînera une surextrusion et l'apparition de coupures sur le côté de la surface." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Insert d'étirage" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Une bordure autour d'un modèle peut toucher un autre modèle à un endroit où vous ne le souhaitez pas. Cette fonction supprime toutes les bordures à cette distance des modèles sans bordure." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Distance à garder à partir des bords du modèle. Étirer jusqu'au bord de la maille peut entraîner l'apparition d'un bord denté sur votre impression." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Vitesse d'étirage" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Un facteur indiquant la quantité de filament compressée entre le chargeur et la chambre de la buse ; utilisé pour déterminer jusqu'où faire avancer le matériau pour changer de filament." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "La vitesse à laquelle passer sur la surface supérieure." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches extérieures de la surface supérieure utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accélération d'étirage" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser lorsque les couches du haut / bas utilisent le motif en lignes ou en zig zag. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés)." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L'accélération selon laquelle l'étirage est effectué." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que l'angle par défaut est utilisé (0 degré)." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Saccade d'étirage" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Le changement instantané maximal de vitesse lors de l'étirage." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Pourcentage de chevauchement de la couche extérieure" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure, en pourcentage de la largeur des lignes de la couche extérieure et de la paroi intérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, un pourcentage supérieur à 50 % peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Chevauchement de la couche extérieure" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, une valeur supérieure à la moitié de la largeur de la paroi peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure/inférieure sur les surfaces obliques du modèle." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure supérieure" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure supérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure sur les surfaces obliques du modèle." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largeur de retrait de la couche extérieure inférieure" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "La plus grande largeur des zones de la couche extérieure inférieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure inférieure sur les surfaces obliques du modèle." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois des couches voisines. Des valeurs faibles économisent la quantité de matériau utilisé." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure supérieure" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures supérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche supérieure. Des valeurs faibles économisent la quantité de matériau utilisé." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distance d'expansion de la couche extérieure inférieure" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "La distance à laquelle les couches extérieures inférieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche inférieure. Des valeurs faibles économisent la quantité de matériau utilisé." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angle maximum de la couche extérieure pour l'expansion" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Les couches extérieures supérieures / inférieures des surfaces supérieures et / ou inférieures de votre objet possédant un angle supérieur à ce paramètre ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale. Un angle de 0° est horizontal et évitera l'extension des couches ; un angle de 90° est vertical et entraînera l'extension de toutes les couches." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largeur minimum de la couche extérieure pour l'expansion" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Les zones de couche extérieure plus étroites que cette valeur ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale." - -msgctxt "infill label" -msgid "Infill" -msgstr "Remplissage" - -msgctxt "infill description" -msgid "Infill" -msgstr "Remplissage" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrudeuse de remplissage" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse utilisé pour l'impression du remplissage. Cela est utilisé en multi-extrusion." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densité du remplissage" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Adapte la densité de remplissage de l'impression." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distance d'écartement de ligne de remplissage" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Distance entre les lignes de remplissage imprimées. Ce paramètre est calculé par la densité du remplissage et la largeur de ligne de remplissage." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Motif de remplissage" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grille" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Trihexagonal" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubique" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivision cubique" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octaédrique" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quart cubique" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Entrecroisé 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Éclair" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Relier les lignes de remplissage" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Relier les polygones de remplissage" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Relier les voies de remplissage lorsqu'elles sont côte à côte. Pour les motifs de remplissage composés de plusieurs polygones fermés, ce paramètre permet de réduire considérablement le temps de parcours." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Sens de ligne de remplissage" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles traditionnels par défaut seront utilisés (45 et 135 degrés pour les motifs en lignes et en zig zag et 45 degrés pour tout autre motif)." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Remplissage Décalage X" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Une liste de polygones comportant les zones dans lesquelles le bec n'a pas le droit de pénétrer." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Le motif de remplissage est décalé de cette distance sur l'axe X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Une liste de polygones comportant les zones dans lesquelles la tête d'impression n'a pas le droit de pénétrer." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Remplissage Décalage Y" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Position d'amorçage absolue de l'extrudeuse" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Randomiser le démarrage du remplissage" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variation maximale des couches adaptatives" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Randomisez la ligne de remplissage qui est imprimée en premier. Cela empêche un segment de devenir plus fort, mais cela se fait au prix d'un déplacement supplémentaire." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Taille de la topographie des couches adaptatives" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicateur de ligne de remplissage" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Taille des étapes de variation des couches adaptatives" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Convertir chaque ligne de remplissage en ce nombre de lignes. Les lignes supplémentaires ne se croisent pas entre elles, mais s'évitent mutuellement. Cela rend le remplissage plus rigide, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Nombre de parois de remplissage supplémentaire" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Cette option calcule la hauteur des couches en fonction de la forme du modèle." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Ajoutez des parois supplémentaires autour de la zone de remplissage. De telles parois peuvent réduire l'affaissement des lignes de couche extérieure supérieure / inférieure, réduisant le nombre de couches extérieures supérieures / inférieures nécessaires pour obtenir la même qualité, au prix d'un peu de matériau supplémentaire." "Configurée correctement, cette fonctionnalité peut être combinée avec « Relier les polygones de remplissage » pour relier tous les remplissages en un seul mouvement d'extrusion sans avoir besoin de déplacements ou de rétractions." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Coque de la subdivision cubique" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Une addition au rayon à partir du centre de chaque cube pour vérifier la bordure du modèle, afin de décider si ce cube doit être subdivisé. Des valeurs plus importantes entraînent une coque plus épaisse de petits cubes à proximité de la bordure du modèle." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Pourcentage de chevauchement du remplissage" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Le degré de chevauchement entre le remplissage et les parois exprimé en pourcentage de la largeur de ligne de remplissage. Un chevauchement faible permet aux parois de se connecter fermement au remplissage." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Chevauchement du remplissage" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Le degré de chevauchement entre le remplissage et les parois. Un léger chevauchement permet de lier fermement les parois au remplissage." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distance de remplissage" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Distance de déplacement à insérer après chaque ligne de remplissage, pour s'assurer que le remplissage collera mieux aux parois externes. Cette option est similaire au chevauchement du remplissage, mais sans extrusion et seulement à l'une des deux extrémités de la ligne de remplissage." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "L'épaisseur par couche de matériau de remplissage. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Étapes de remplissage progressif" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Nombre de fois pour réduire la densité de remplissage de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité du remplissage." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Hauteur de l'étape de remplissage progressif" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "La hauteur de remplissage d'une densité donnée avant de passer à la moitié de la densité." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Imprimer le remplissage avant les parois" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Zone de remplissage minimum" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Ne pas générer de zones de remplissage plus petites que cela (utiliser plutôt une couche extérieure)" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Support de remplissage" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimer les structures de remplissage uniquement là où le haut du modèle doit être supporté, ce qui permet de réduire le temps d'impression et l'utilisation de matériau, mais conduit à une résistance uniforme de l'objet." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angle de porte-à-faux de remplissage" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Angle minimal des porte-à-faux internes pour lesquels le remplissage est ajouté. À une valeur de 0°, les objets sont totalement remplis, 90° ne fournira aucun remplissage." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Épaisseur de soutien des bords de la couche" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "L'épaisseur du remplissage supplémentaire qui soutient les bords de la couche." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Couches de soutien des bords de la couche extérieure" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angle de support du remplissage éclair" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angle de saillie du remplissage éclair" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angle d'élagage du remplissage éclair" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angle de redressement du remplissage éclair" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." - -msgctxt "material label" -msgid "Material" -msgstr "Matériau" - -msgctxt "material description" -msgid "Material" -msgstr "Matériau" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Température d’impression par défaut" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La température par défaut utilisée pour l'impression. Il doit s'agir de la température de « base » d'un matériau. Toutes les autres températures d'impression doivent utiliser des décalages basés sur cette valeur" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Température du volume d'impression" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La température de l'environnement d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Température d’impression" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Température utilisée pour l'impression." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Température d’impression couche initiale" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "La température utilisée pour l'impression de la première couche." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Température d’impression initiale" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La température minimale pendant le chauffage jusqu'à la température d'impression à laquelle l'impression peut démarrer." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Température d’impression finale" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La température à laquelle le refroidissement commence juste avant la fin de l'impression." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificateur de vitesse de refroidissement de l'extrusion" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "La vitesse supplémentaire à laquelle la buse refroidit pendant l'extrusion. La même valeur est utilisée pour indiquer la perte de vitesse de chauffage pendant l'extrusion." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Température du plateau par défaut" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Température par défaut utilisée pour le plateau chauffant. Il doit s'agir de la température de « base » d'un plateau. Toutes les autres températures d'impression sont définies en fonction de cette valeur" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Température du plateau" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Température utilisée pour le plateau de fabrication chauffé. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Température du plateau couche initiale" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Température utilisée pour le plateau de fabrication chauffé à la première couche. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé lors de la première couche." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adhérence" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Tendance à l'adhérence" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendance à l'adhérence de la surface." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure, en pourcentage de la largeur des lignes de la couche extérieure et de la paroi intérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, un pourcentage supérieur à 50 % peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Énergie de la surface" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuster le degré de chevauchement entre les parois et les (extrémités des) lignes centrales de la couche extérieure. Un chevauchement léger permet de relier fermement les parois à la couche extérieure. Notez que, si la largeur de la couche extérieure est égale à celle de la ligne de la paroi, une valeur supérieure à la moitié de la largeur de la paroi peut déjà faire dépasser la couche extérieure de la paroi, car dans ce cas la position de la buse de l'extrudeuse peut déjà atteindre le milieu de la paroi." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Énergie de la surface." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Mise à l'échelle du facteur de compensation de contraction" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Pour compenser la contraction du matériau lors de son refroidissement, le modèle est mis à l'échelle avec ce facteur." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction XY (horizontalement)." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensation du rétrécissement du facteur d'échelle verticale" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction Z (verticalement)." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Matériau cristallin" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Position anti-suintage rétractée" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Jusqu'où le matériau doit être rétracté avant qu'il cesse de suinter." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Vitesse de rétraction de l'anti-suintage" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "À quelle vitesse le matériau doit-il être rétracté lors d'un changement de filament pour empêcher le suintage." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Préparation de rupture Position rétractée" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Jusqu'où le filament peut être étiré avant qu'il ne se casse, pendant qu'il est chauffé." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Vitesse de rétraction de préparation de rupture" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "La vitesse à laquelle le filament doit être rétracté juste avant de le briser dans une rétraction." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Température de préparation de rupture" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La température utilisée pour purger le matériau devrait être à peu près égale à la température d'impression la plus élevée possible." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Position rétractée de rupture" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Jusqu'où rétracter le filament afin de le casser proprement." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Vitesse de rétraction de rupture" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "La vitesse à laquelle rétracter le filament afin de le rompre proprement." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Température de rupture" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "La température à laquelle le filament est cassé pour une rupture propre." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Vitesse de purge d'insertion" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "La vitesse d'amorçage du matériau après le passage à un autre matériau." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Longueur de la purge d'insertion" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du passage à un autre matériau." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Vitesse de purge de l'extrémité du filament" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "La vitesse d'amorçage du matériau après le remplacement d'une bobine vide par une nouvelle bobine du même matériau." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Longueur de purge de l'extrémité du filament" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du remplacement d'une bobine vide par une nouvelle bobine du même matériau." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durée maximum du stationnement" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "La durée pendant laquelle le matériau peut être conservé à l'abri de la sécheresse." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Facteur de déplacement sans chargement" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Un facteur indiquant la quantité de filament compressée entre le chargeur et la chambre de la buse ; utilisé pour déterminer jusqu'où faire avancer le matériau pour changer de filament." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Débit" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Débit de paroi" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensation de débit sur les lignes de la paroi." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Débit de paroi externe" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensation de débit sur la ligne de la paroi la plus à l'extérieur." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Débit de paroi(s) interne(s)" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Débit de la paroi externe de la surface supérieure" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Débit des parois internes de la surface supérieure" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Débit du dessus/dessous" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensation de débit sur les lignes du dessus/dessous." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Débit de la surface du dessus" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensation de débit sur les lignes des zones en haut de l'impression." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Débit de remplissage" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensation de débit sur les lignes de remplissage." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Débit de la jupe/bordure" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensation de débit sur les lignes de jupe ou bordure." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Débit du support" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensation de débit sur les lignes de support." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Débit de l'interface de support" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensation de débit sur les lignes de plafond ou de bas de support." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Débit du plafond de support" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensation de débit sur les lignes du plafond de support." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Débit du bas de support" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensation de débit sur les lignes de bas de support." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Débit de la tour d'amorçage" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensation de débit sur les lignes de la tour d'amorçage." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Débit de la couche initiale" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensation du débit pour la couche initiale : la quantité de matériau extrudée sur la couche initiale est multipliée par cette valeur." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Débit de la paroi intérieure de la couche initiale" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensation de débit sur les lignes de paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus plus externe, mais uniquement pour la première couche" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Débit de la paroi extérieure de la couche initiale" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensation de débit sur la ligne de paroi la plus externe de la première couche." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Débit inférieur de la couche initiale" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensation de débit sur les lignes inférieures de la première couche" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Température de veille" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "La température de la buse lorsqu'une autre buse est actuellement utilisée pour l'impression." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Matériau de support" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Ce paramètre permet-il d'indiquer si un matériau est généralement utilisé comme matériau de support pendant l'impression." - -msgctxt "speed label" -msgid "Speed" -msgstr "Vitesse" - -msgctxt "speed description" -msgid "Speed" -msgstr "Vitesse" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Vitesse d’impression" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "La vitesse à laquelle l'impression s'effectue." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vitesse de remplissage" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "La vitesse à laquelle le remplissage est imprimé." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Vitesse d'impression de la paroi" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "La vitesse à laquelle les parois sont imprimées." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "La vitesse à laquelle les parois externes sont imprimées. L’impression de la paroi externe à une vitesse inférieure améliore la qualité finale de la coque. Néanmoins, si la différence entre la vitesse de la paroi interne et la vitesse de la paroi externe est importante, la qualité finale sera réduite." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Vitesse d'impression de la paroi interne" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Vitesse d'impression des parois internes de la surface supérieure" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Vitesse de la couche extérieure de la surface supérieure" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "La vitesse à laquelle les couches extérieures de la surface supérieure sont imprimées." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Vitesse d'impression du dessus/dessous" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "La vitesse à laquelle les couches du dessus/dessous sont imprimées." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Vitesse d'impression des supports" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "La vitesse à laquelle les supports sont imprimés. Imprimer les supports à une vitesse supérieure peut fortement accélérer l’impression. Par ailleurs, la qualité de la structure des supports n’a généralement pas beaucoup d’importance du fait qu'elle est retirée après l'impression." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vitesse d'impression du remplissage de support" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "La vitesse à laquelle le remplissage de support est imprimé. L'impression du remplissage à une vitesse plus faible permet de renforcer la stabilité." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vitesse d'impression de l'interface de support" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "La vitesse à laquelle les plafonds et bas de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Vitesse d'impression des plafonds de support" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "La vitesse à laquelle les plafonds de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Vitesse d'impression des bas de support" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "La vitesse à laquelle le bas de support est imprimé. L'impression à une vitesse plus faible permet de renforcer l'adhésion du support au-dessus de votre modèle." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Vitesse de la tour d'amorçage" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "La vitesse à laquelle la tour d'amorçage est imprimée. L'impression plus lente de la tour d'amorçage peut la rendre plus stable lorsque l'adhérence entre les différents filaments est sous-optimale." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Vitesse de déplacement" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "La vitesse à laquelle les déplacements s'effectuent." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Vitesse de la couche initiale" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau de fabrication. N'affecte pas les structures d'adhérence au plateau, comme la bordure et le radeau." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Vitesse d’impression de la couche initiale" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "La vitesse d'impression de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Vitesse de déplacement de la couche initiale" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Vitesse des mouvements de déplacement dans la couche initiale. Une valeur plus faible est recommandée pour éviter que les pièces déjà imprimées ne s'écartent du plateau. La valeur de ce paramètre peut être calculée automatiquement à partir du ratio entre la vitesse des mouvements et la vitesse d'impression." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Vitesse d'impression de la jupe/bordure" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "La vitesse à laquelle la jupe et la bordure sont imprimées. Normalement, cette vitesse est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une vitesse différente." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Vitesse du décalage en Z" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "La vitesse à laquelle le mouvement vertical en Z est effectué pour des décalages en Z. Cette vitesse est généralement inférieure à la vitesse d'impression car le plateau ou le portique de la machine est plus difficile à déplacer." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Nombre de couches plus lentes" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Les premières couches sont imprimées plus lentement que le reste du modèle afin d’obtenir une meilleure adhérence au plateau et d’améliorer le taux de réussite global des impressions. La vitesse augmente graduellement à chacune de ces couches." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapport d'égalisation des débits" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Facteur de correction de la largeur d'extrusion en fonction de la vitesse. À 0 %, la vitesse de mouvement reste constante à la vitesse d'impression. À 100 %, la vitesse de mouvement est ajustée de sorte que le débit (en mm³/s) reste constant, c'est-à-dire que les lignes à la moitié de la largeur de ligne normale sont imprimées deux fois plus vite et que les lignes à la moitié de la largeur sont imprimées aussi vite. Une valeur supérieure à 100 % peut aider à compenser la pression plus élevée requise pour extruder les lignes larges." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Activer le contrôle d'accélération" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Active le réglage de l'accélération de la tête d'impression. Augmenter les accélérations peut réduire la durée d'impression au détriment de la qualité d'impression." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Activer l'accélération des déplacements" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilisez un taux d'accélération distinct pour les déplacements. Si cette option est désactivée, les déplacements utiliseront la même accélération que celle de la ligne imprimée à l'emplacement cible." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accélération de l'impression" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L'accélération selon laquelle l'impression s'effectue." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accélération de remplissage" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L'accélération selon laquelle le remplissage est imprimé." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accélération de la paroi" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "L'accélération selon laquelle les parois sont imprimées." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accélération de la paroi externe" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "L'accélération selon laquelle les parois externes sont imprimées." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accélération de la paroi intérieure" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accélération de la paroi externe de la surface supérieure" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accélération des parois internes de la surface supérieure" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accélération de couche extérieure de surface supérieure" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "La vitesse à laquelle les couches extérieures de surface supérieure sont imprimées." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accélération du dessus/dessous" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus/dessous sont imprimées." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accélération du support" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "L'accélération selon laquelle la structure de support est imprimée." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accélération de remplissage du support" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "L'accélération selon laquelle le remplissage de support est imprimé." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accélération de l'interface du support" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accélération des plafonds de support" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "L'accélération selon laquelle les plafonds de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accélération des bas de support" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "L'accélération selon laquelle les bas de support sont imprimés. Les imprimer avec une accélération plus faible renforce l'adhésion du support au-dessus du modèle." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accélération de la tour d'amorçage" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "L'accélération selon laquelle la tour d'amorçage est imprimée." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accélération de déplacement" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "L'accélération selon laquelle les déplacements s'effectuent." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accélération de la couche initiale" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "L'accélération pour la couche initiale." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accélération de l'impression de la couche initiale" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "L'accélération durant l'impression de la couche initiale." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accélération de déplacement de la couche initiale" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "L'accélération pour les déplacements dans la couche initiale." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accélération de la jupe/bordure" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "L'accélération selon laquelle la jupe et la bordure sont imprimées. Normalement, cette accélération est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une accélération différente." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Activer le contrôle de saccade" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Active le réglage de la saccade de la tête d'impression lorsque la vitesse sur l'axe X ou Y change. Augmenter les saccades peut réduire la durée d'impression au détriment de la qualité d'impression." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Activer les saccades de déplacement" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilisez un taux de saccades différent pour les déplacements. Si cette option est désactivée, les déplacements utiliseront les mêmes saccades que celles de la ligne imprimée à l'emplacement cible." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Imprimer en saccade" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Le changement instantané maximal de vitesse de la tête d'impression." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Saccade de remplissage" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage est imprimé." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Saccade de paroi" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois sont imprimées." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Saccade de paroi externe" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois externes sont imprimées." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Saccade de paroi intérieure" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Saccade de la paroi externe de la surface supérieure" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Saccade des parois internes de la surface supérieure" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Saccade de couches extérieures de la surface supérieure" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les couches extérieures de surface supérieure sont imprimées." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Saccade du dessus/dessous" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les couches du dessus/dessous sont imprimées." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Saccade des supports" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la structure de support est imprimée." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Saccade de remplissage du support" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage de support est imprimé." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Saccade de l'interface de support" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Saccade des plafonds de support" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds de support sont imprimés." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Saccade des bas de support" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel les bas de support sont imprimés." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Saccade de la tour d'amorçage" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la tour d'amorçage est imprimée." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Saccade de déplacement" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Saccade de la couche initiale" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Le changement instantané maximal de vitesse pour la couche initiale." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Saccade d’impression de la couche initiale" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Le changement instantané maximal de vitesse durant l'impression de la couche initiale." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Saccade de déplacement de la couche initiale" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "L'accélération pour les déplacements dans la couche initiale." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Saccade de la jupe/bordure" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Le changement instantané maximal de vitesse selon lequel la jupe et la bordure sont imprimées." - -msgctxt "travel label" -msgid "Travel" -msgstr "Déplacement" - -msgctxt "travel description" -msgid "travel" -msgstr "déplacement" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Activer la rétraction" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Rétracter au changement de couche" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Rétracter le filament quand le bec se déplace vers la prochaine couche." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distance de rétraction" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "La longueur de matériau rétracté pendant une rétraction." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Vitesse de rétraction" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant une rétraction." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Vitesse de rétraction" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Vitesse de rétraction d'amorçage" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "La vitesse à laquelle le filament est préparé pendant une rétraction." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Volume supplémentaire à l'amorçage" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Du matériau peut suinter pendant un déplacement, ce qui peut être compensé ici." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Déplacement minimal de rétraction" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "La distance minimale de déplacement nécessaire pour qu’une rétraction ait lieu. Cela permet d’éviter qu’un grand nombre de rétractions ne se produisent sur une petite portion." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Nombre maximal de rétractions" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalle de distance minimale d'extrusion" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "L'intervalle dans lequel le nombre maximal de rétractions est incrémenté. Cette valeur doit être du même ordre de grandeur que la distance de rétraction, limitant ainsi le nombre de mouvements de rétraction sur une même portion de matériau." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Mode de détours" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Les détours maintiennent la buse dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et la buse se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous ou d'effectuer les détours uniquement dans le remplissage." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Désactivé" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tout" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Pas sur la surface extérieure" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Pas dans la couche extérieure" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "À l'intérieur du remplissage" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distance de détour max. sans rétraction" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Rétracter avant la paroi externe" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Toujours rétracter lors du déplacement pour commencer une paroi externe." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Éviter les pièces imprimées lors du déplacement" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "La buse contourne les pièces déjà imprimées lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Éviter les supports lors du déplacement" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "La buse contourne les supports déjà imprimés lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distance d'évitement du déplacement" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "La distance entre la buse et les pièces déjà imprimées lors du contournement pendant les déplacements." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X début couche" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordonnée X de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y début couche" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Coordonnée Y de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Décalage en Z lors d’une rétraction" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "À chaque rétraction, le plateau est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Décalage en Z uniquement sur les pièces imprimées" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Appliquer un décalage en Z uniquement lors du mouvement au-dessus de pièces imprimées qui ne peuvent être évitées par le mouvement horizontal, via Éviter les pièces imprimées lors du déplacement." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hauteur du décalage en Z" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Décalage en Z après changement d'extrudeuse" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Une fois que la machine est passée d'une extrudeuse à l'autre, le plateau s'abaisse pour créer un dégagement entre la buse et l'impression. Cela évite que la buse ne ressorte avec du matériau suintant sur l'extérieur d'une impression." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Décalage en Z après changement de hauteur d'extrudeuse" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z après changement d'extrudeuse." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Refroidissement" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Refroidissement" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Activer le refroidissement de l'impression" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Active les ventilateurs de refroidissement de l'impression pendant l'impression. Les ventilateurs améliorent la qualité de l'impression sur les couches présentant des durées de couche courtes et des ponts / porte-à-faux." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Vitesse du ventilateur" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "La vitesse à laquelle les ventilateurs de refroidissement de l'impression tournent." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Vitesse régulière du ventilateur" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "La vitesse à laquelle les ventilateurs tournent avant d'atteindre la limite. Lorsqu'une couche s'imprime plus rapidement que la limite, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Vitesse maximale du ventilateur" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "La vitesse à laquelle les ventilateurs tournent sur la durée minimale d'une couche. La vitesse du ventilateur augmente progressivement entre la vitesse régulière du ventilateur et la vitesse maximale lorsque la limite est atteinte." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limite de vitesse régulière/maximale du ventilateur" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "La durée de couche qui définit la limite entre la vitesse régulière et la vitesse maximale du ventilateur. Les couches qui s'impriment moins vite que cette durée utilisent la vitesse régulière du ventilateur. Pour les couches plus rapides, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Vitesse des ventilateurs initiale" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Vitesse à laquelle les ventilateurs tournent au début de l'impression. Pour les couches suivantes, la vitesse des ventilateurs augmente progressivement jusqu'à la couche qui correspond à la vitesse régulière des ventilateurs en hauteur." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Vitesse régulière du ventilateur à la hauteur" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse régulière. Pour les couches situées en-dessous, la vitesse des ventilateurs augmente progressivement de la vitesse des ventilateurs initiale jusqu'à la vitesse régulière." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Vitesse régulière du ventilateur à la couche" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "La couche à laquelle les ventilateurs tournent à la vitesse régulière. Si la vitesse régulière du ventilateur à la hauteur est définie, cette valeur est calculée et arrondie à un nombre entier." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Durée minimale d’une couche" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Temps minimum passé sur une couche. Cela force l'imprimante à ralentir afin de passer au minimum la durée définie ici sur une couche. Cela permet au matériau imprimé de refroidir correctement avant l'impression de la couche suivante. Les couches peuvent néanmoins prendre moins de temps que le temps de couche minimum si « Lift Head  » (Relever Tête) est désactivé et si la vitesse minimum serait autrement non respectée." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Vitesse minimale" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "La vitesse minimale d'impression, malgré le ralentissement dû à la durée minimale d'une couche. Si l'imprimante devait trop ralentir, la pression au niveau de la buse serait trop faible, ce qui résulterait en une mauvaise qualité d'impression." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Relever la tête" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Lorsque la vitesse minimale est atteinte à cause de la durée minimale d'une couche, relève la tête de l'impression et attend que la durée supplémentaire jusqu'à la durée minimale d'une couche soit atteinte." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Température d'impression en cas de petite couche" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Réduisez progressivement à cette température lors de l'impression à des vitesses réduites en raison de la durée minimale d’une couche." - -msgctxt "support label" -msgid "Support" -msgstr "Supports" - -msgctxt "support description" -msgid "Support" -msgstr "Supports" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Générer les supports" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrudeuse de support" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrudeuse de remplissage du support" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression du remplissage du support. Cela est utilisé en multi-extrusion." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrudeuse de support de la première couche" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche de remplissage du support. Cela est utilisé en multi-extrusion." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrudeuse de l'interface du support" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds et bas du support. Cela est utilisé en multi-extrusion." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrudeuse des plafonds de support" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds du support. Cela est utilisé en multi-extrusion." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrudeuse des bas de support" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression des bas du support. Cela est utilisé en multi-extrusion." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Structure du support" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Choisit entre les techniques disponibles pour générer un support. Le support « Normal » créer une structure de support directement sous les pièces en porte-à-faux et fait descendre ces zones directement vers le bas. Le support « Arborescent » crée des branches vers les zones en porte-à-faux qui supportent le modèle à l'extrémité de ces branches et permet aux branches de ramper autour du modèle afin de les supporter le plus possible sur le plateau de fabrication." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Arborescence" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Angle maximal des branches" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Il s'agit de l'angle maximal des branches imprimées autour du modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, vous obtiendrez une plus grande portée." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diamètre des branches" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Diamètre des branches les plus minces du support arborescent. Plus les branches sont épaisses, plus elles sont robustes ; les branches proches de la base seront plus épaisses que cette valeur." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diamètre du tronc" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Le diamètre des branches les plus larges du support arborescent. Un tronc plus épais est plus robuste ; un tronc plus fin prend moins de place sur le plateau de fabrication." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Angle de diamètre des branches" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "Angle du diamètre des branches au fur et à mesure qu'elles s'épaississent lorsqu'elles sont proches du fond. Avec un angle de 0°, les branches auront une épaisseur uniforme sur toute leur longueur. Donner un peu d'angle permet d'augmenter la stabilité du support arborescent." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Positionnement des supports" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "En contact avec le plateau" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Partout" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Angle des branches souhaité" - -msgctxt "support_tree_angle_slow description" -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 "Ce paramètre détermine l'angle souhaité pour les branches, lorsqu'elles n'ont pas à contourner le modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, les branches fusionneront plus rapidement." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Augmentation du diamètre des branches rattachées au modèle" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Le diamètre maximal d'une branche rattachée au modèle peut augmenter lorsqu'elle fusionne avec des branches pouvant atteindre le plateau. Le fait d'augmenter ce diamètre réduit le temps d'impression, mais agrandit la surface du support sur laquelle repose le modèle." - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Hauteur minimale par rapport au modèle" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Il s'agit de la hauteur minimale que doit atteindre une branche si elle est rattachée au modèle. Ce paramètre empêche la formation de petites gouttes de support. Il est ignoré lorsqu'une branche soutient un plafond de support." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diamètre de la couche initiale" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Il s'agit du diamètre que chaque branche essaie d'atteindre au niveau du plateau. Ce paramètre améliore l'adhérence au plateau." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densité des branches" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ce paramètre ajuste la densité de la structure de support utilisée pour générer les extrémités des branches. Une valeur plus élevée permet d'obtenir de meilleurs porte-à-faux, mais les supports seront plus difficiles à retirer. Utilisez un plafond de support en cas de valeurs très élevées ou veillez à ce que la densité du support soit tout aussi élevée aux extrémités." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diamètre des extrémités" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Il s'agit du diamètre des extrémités des branches du support arborescent." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitation de la portée des branches" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Portée optimale des branches" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Il s'agit de la distance recommandée à laquelle les branches peuvent s'éloigner des points qu'elles soutiennent. Les branches peuvent ne pas respecter cette valeur pour atteindre leur emplacement cible (plateau ou partie plate du modèle). L'abaissement de cette valeur rendra le support plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Préférence d'emplacement" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Il s'agit de l'emplacement souhaité pour les structures de support. Si les structures ne peuvent pas être placées à l'endroit souhaité, elles seront placées ailleurs, quitte à ce que ce soit sur le modèle." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Sur le plateau si possible" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sur le modèle si nécessaire" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angle de porte-à-faux de support" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "L'angle minimal des porte-à-faux pour lesquels un support est ajouté. À une valeur de 0 °, tous les porte-à-faux sont soutenus, tandis qu'à 90 °, aucun support ne sera créé." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Motif du support" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Le motif des supports de l'impression. Les différentes options disponibles résultent en des supports difficiles ou faciles à retirer." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grille" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Entrecroisé" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Nombre de lignes de la paroi du support" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Nombre de lignes de parois de l'interface du support" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Nombre de lignes de parois du toit du support" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Nombre de parois avec lesquelles entourer le toit de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Nombre de lignes de parois inférieures du support" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Le nombre de parois avec lesquelles entourer la surface inférieure de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Relier les lignes de support" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Relie les extrémités des lignes de support. L'activation de ce paramètre peut rendre votre support plus robuste et réduire la sous-extrusion, mais cela demandera d'utiliser plus de matériau." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Relier les zigzags de support" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Relie les zigzags. Cela augmente la solidité des supports en zigzag." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densité du support" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajuste la densité du support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distance d'écartement de ligne du support" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distance d'écartement de ligne du support de la couche initiale" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distance entre les lignes de la structure de support de la couche initiale imprimée. Ce paramètre est calculé en fonction de la densité du support." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direction de ligne de remplissage du support" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que l'angle par défaut est utilisé (0 degré)." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Activer la bordure du support" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Générer un bord à l'intérieur des zones de remplissage du support de la première couche. Cette bordure est imprimée sous le support et non autour de celui-ci, ce qui augmente l'adhérence du support au plateau." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largeur de la bordure du support" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Nombre de lignes de la bordure du support" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation du nombre de lignes de bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distance Z des supports" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distance entre le haut/bas de la structure de support et l'impression. Cet écart permet de retirer les supports après l'impression du modèle. La couche de support la plus haute sous le modèle pourrait être une fraction des couches régulières." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distance supérieure des supports" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Distance entre l’impression et le haut des supports." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distance inférieure des supports" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distance de l'impression au bas du support. Notez que cela est arrondi à la hauteur de couche suivante." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distance X/Y des supports" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Distance entre le support et l'impression dans les directions X/Y." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorité de distance des supports" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Si la Distance X/Y des supports annule la Distance Z des supports ou inversement. Lorsque X/Y annule Z, la distance X/Y peut écarter le support du modèle, influençant ainsi la distance Z réelle par rapport au porte-à-faux. Nous pouvons désactiver cela en n'appliquant pas la distance X/Y autour des porte-à-faux." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y annule Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z annule X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distance X/Y minimale des supports" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Distance entre la structure de support et le porte-à-faux dans les directions X/Y." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Hauteur de la marche de support" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "La hauteur de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables. Définir la valeur sur zéro pour désactiver le comportement en forme d'escalier." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largeur maximale de la marche de support" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "La largeur maximale de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Angle de pente minimum de la marche de support" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pente minimum de la zone pour un effet de marche de support. Des valeurs basses devraient faciliter l'enlèvement du support sur les pentes peu superficielles ; des valeurs très basses peuvent donner des résultats vraiment contre-intuitifs sur d'autres pièces du modèle." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distance de jointement des supports" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "La distance maximale entre les supports dans les directions X/Y. Lorsque des modèle séparés sont plus rapprochés que cette valeur, ils fusionnent." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansion horizontale des supports" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Le décalage appliqué à tous les polygones pour chaque couche. Une valeur positive peut lisser les zones de support et rendre le support plus solide." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Épaisseur de la couche de remplissage de support" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "L'épaisseur par couche de matériau de remplissage de support. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Étapes de remplissage graduel du support" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Nombre de fois pour réduire la densité de remplissage du support de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité de remplissage du support." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Hauteur d'étape de remplissage graduel du support" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "La hauteur de remplissage de support d'une densité donnée avant de passer à la moitié de la densité." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Surface minimale de support" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Taille minimale de la surface des polygones de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Activer l'interface de support" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Générer une interface dense entre le modèle et le support. Cela créera une couche sur le dessus du support sur lequel le modèle est imprimé et sur le dessous du support sur lequel le modèle repose." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Activer les plafonds de support" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Générer une plaque dense de matériau entre le plafond du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Activer les bas de support" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Générer une plaque dense de matériau entre le bas du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Épaisseur de l'interface de support" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "L'épaisseur de l'interface du support à l'endroit auquel il touche le modèle, sur le dessous ou le dessus." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Épaisseur du plafond de support" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "L'épaisseur des plafonds de support. Cela contrôle la quantité de couches denses sur le dessus du support sur lequel le modèle repose." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Épaisseur du bas de support" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densité de l'interface de support" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Adapte la densité de remplissage de l'impression." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Ajuste la densité des plafonds et bas de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densité du plafond de support" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ce paramètre ajuste la densité de la structure de support utilisée pour générer les extrémités des branches. Une valeur plus élevée permet d'obtenir de meilleurs porte-à-faux, mais les supports seront plus difficiles à retirer. Utilisez un plafond de support en cas de valeurs très élevées ou veillez à ce que la densité du support soit tout aussi élevée aux extrémités." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "La densité des plafonds de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajuste la densité du support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distance d'écartement de ligne du plafond de support" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajuste le diamètre du filament utilisé. Faites correspondre cette valeur au diamètre du filament utilisé." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distance entre les lignes du plafond de support imprimées. Ce paramètre est calculé par la densité du plafond de support mais peut également être défini séparément." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densité du bas de support" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "La densité des bas de la structure de support. Une valeur plus élevée résulte en une meilleure adhésion du support au-dessus du modèle." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distance d'écartement de ligne de bas de support" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distance entre les lignes du bas de support imprimées. Ce paramètre est calculé par la densité du bas de support mais peut également être défini séparément." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Motif de l'interface de support" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Le motif selon lequel l'interface du support avec le modèle est imprimée." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grille" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Motif du plafond de support" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Le motif d'impression pour les plafonds de support." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grille" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Motif du bas de support" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Le motif d'impression pour les bas de support." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lignes" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grille" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangles" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrique" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Surface minimale de l'interface de support" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Taille minimale de la surface des polygones d'interface de support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Surface minimale du plafond de support" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Taille minimale de la surface des plafonds du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Surface minimale du bas de support" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Taille minimale de la surface des bas du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansion horizontale de l'interface de support" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantité de décalage appliquée aux polygones de l'interface de support." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansion horizontale du plafond de support" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantité de décalage appliqué aux plafonds du support." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansion horizontale du bas de support" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantité de décalage appliqué aux bas du support." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Priorité de l'interface de support" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Ce paramètre détermine la façon dont l'interface de support et le support interagissent en cas de chevauchement. Il n'est actuellement disponible que pour le plafond de support." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Priorité au support" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Priorité à l'interface" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Priorité aux lignes de support" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Priorité aux lignes d'interface" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Chevauchement" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direction de ligne d'interface du support" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direction de la ligne de plafond de support" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direction de la ligne de bas de support" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Une liste de sens de ligne (exprimés en nombres entiers) à utiliser. Les éléments de la liste sont utilisés de manière séquentielle à mesure de l'avancement des couches. La liste reprend depuis le début lorsque la fin est atteinte. Les éléments de la liste sont séparés par des virgules et la liste entière est encadrée entre crochets. La valeur par défaut est une liste vide, ce qui signifie que les angles par défaut sont utilisés (alternative entre 45 et 135 degrés si les interfaces sont assez épaisses ou 90 degrés)." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Annulation de la vitesse du ventilateur" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Lorsque cette fonction est activée, la vitesse du ventilateur de refroidissement de l'impression est modifiée pour les régions de la couche extérieure situées immédiatement au-dessus du support." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Vitesse du ventilateur de couche extérieure supportée" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Pourcentage de la vitesse du ventilateur à utiliser lors de l'impression des zones de couche extérieure situées immédiatement au-dessus du support. Une vitesse de ventilateur élevée facilite le retrait du support." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilisation de tours" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilise des tours spéciales pour soutenir de petites zones en porte-à-faux. Le diamètre de ces tours est plus large que la zone qu’elles soutiennent. Près du porte-à-faux, le diamètre des tours diminue pour former un toit." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diamètre de la tour" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Le diamètre d’une tour spéciale." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diamètre maximal supporté par la tour" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Le diamètre maximal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angle du toit de la tour" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "L'angle du toit d'une tour. Une valeur plus élevée entraîne des toits de tour pointus, tandis qu'une valeur plus basse résulte en des toits plats." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maillage de support descendant" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Inclure du support à tout emplacement sous le maillage de support, de sorte à ce qu'il n'y ait pas de porte-à-faux dans le maillage de support." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scène comporte un maillage de support" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adhérence du plateau" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adhérence" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Activer la goutte de préparation" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extrudeuse Position d'amorçage X" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extrudeuse Position d'amorçage Y" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type d'adhérence du plateau" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Différentes options qui permettent d'améliorer la préparation de votre extrusion et l'adhérence au plateau. La bordure ajoute une zone plate d'une seule couche autour de la base de votre modèle, afin de l'empêcher de se redresser. Le radeau ajoute une grille épaisse avec un toit sous le modèle. La jupe est une ligne imprimée autour du modèle mais qui n'est pas rattachée au modèle." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Jupe" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Bordure" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radeau" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Aucun" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrudeuse d'adhérence du plateau" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe/la bordure/du radeau. Cela est utilisé en multi-extrusion." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrudeuse de la jupe/bordure" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrudeuse de la base du raft" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrudeuse du milieu du radeau" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrudeuse du haut du radeau" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Le train d'extrudeuse à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Nombre de lignes de la jupe" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Une jupe à plusieurs lignes vous aide à mieux préparer votre extrusion pour les petits modèles. Définissez celle valeur sur 0 pour désactiver la jupe." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Hauteur de la jupe" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "La jupe est plus facile à retirer lorsque sa ligne la plus intérieure est imprimée en plusieurs couches." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distance de la jupe" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "La distance horizontale entre la jupe et la première couche de l’impression." -"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Longueur minimale de la jupe/bordure" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "La longueur minimale de la jupe ou bordure. Si cette longueur n’est pas atteinte par toutes les lignes de jupe ou de bordure ensemble, d’autres lignes de jupe ou de bordure seront ajoutées afin d’atteindre la longueur minimale. Veuillez noter que si le nombre de lignes est défini sur 0, cette option est ignorée." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largeur de la bordure" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extérieur. Une bordure plus large renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Nombre de lignes de la bordure" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Le nombre de lignes utilisées pour une bordure. Un plus grand nombre de lignes de bordure renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distance de la bordure" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "La distance horizontale entre la première ligne de bordure et le contour de la première couche de l'impression. Un petit trou peut faciliter l'enlèvement de la bordure tout en offrant des avantages thermiques." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "La bordure remplace le support" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Emplacement de la bordure" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Imprimez unr bordure à l'extérieur du modèle, à l'intérieur, ou les deux. En fonction du modèle, cette option permet de réduire la quantité de bordure que vous devez retirer par la suite, tout en garantissant une bonne adhérence au plateau." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "À l'extérieur seulement" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "À l'intérieur seulement" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Partout" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Marge d'évitement de la bordure" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Une bordure autour d'un modèle peut toucher un autre modèle à un endroit où vous ne le souhaitez pas. Cette fonction supprime toutes les bordures à cette distance des modèles sans bordure." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Bordure intelligente" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Ce paramètre inverse l'ordre d'impression de la ligne de bordure la plus intérieure et de la deuxième ligne de bordure la plus intérieure. La bordure est ainsi plus facile à retirer." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Marge supplémentaire du radeau" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Marge supplémentaire de la base du radeau" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la base du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Marge supplémentaire du milieu du radeau" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si le milieu du radeau est activé, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Marge supplémentaire de la partie supérieure du radeau" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Si la partie supérieure du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui se voit également attribuer un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Supprimer les coins intérieurs du radeau" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Enlever les coins intérieurs de la base du radeau" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Enlevez les coins intérieurs de la base du radeau, ce qui donnera au radeau une forme convexe." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Enlever les coins intérieurs du milieu du radeau" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Enlevez les coins intérieurs de la partie centrale du radeau, ce qui donnera une forme convexe au radeau." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Enlever les coins intérieurs de la partie supérieure du radeau" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Enlevez les coins intérieurs de la partie supérieure du radeau, ce qui donnera une forme convexe au radeau." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Lissage de radeau" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Lissage de la base du radeau" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour de la base du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Lissage du milieu du radeau" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour central du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Lissage de la partie supérieure du radeau" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Lame d'air du radeau" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "L’espace entre la dernière couche du radeau et la première couche du modèle. Seule la première couche est surélevée de cette quantité d’espace pour réduire l’adhérence entre la couche du radeau et le modèle. Cela facilite le décollage du radeau." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Chevauchement Z de la couche initiale" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Faites en sorte que la première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser la perte de filament dans l'entrefer. Tous les modèles situés au-dessus de la première couche du modèle seront décalés vers le bas de cette valeur.\nOn peut noter que la deuxième couche est parfois imprimée en dessous de la couche initiale à cause de ce paramètre. Il s'agit d'un comportement voulu." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Épaisseur de la base du radeau" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Largeur de la ligne de base du radeau" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espacement des lignes de base du radeau" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Couches du milieu du radeau" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Nombre de couches entre la base et la surface du radeau. Elles comprennent l'épaisseur principale du radeau. En l'augmentant, on obtient un radeau plus épais et plus solide." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Épaisseur intermédiaire du radeau" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Épaisseur de la couche intermédiaire du radeau." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Largeur de la ligne intermédiaire du radeau" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Largeur des lignes de la couche intermédiaire du radeau. Une plus grande extrusion de la deuxième couche renforce l'adhérence des lignes au plateau." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Interligne intermédiaire du radeau" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Couches supérieures du radeau" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Épaisseur de la couche supérieure du radeau" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Épaisseur des couches supérieures du radeau." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Largeur de la ligne supérieure du radeau" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Interligne supérieur du radeau" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Ordre monotone de la surface supérieure du radeau" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Imprimez les lignes de la surface supérieure du radeau dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cette méthode prend un peu plus de temps à imprimer, mais donne à la surface un aspect plus homogène, ce qui est également visible sur la surface inférieure du modèle." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Nombre de parois du radeau" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "Nombre de contours à imprimer autour du motif linéaire du radeau." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Nombre de parois à la base du radeau" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Nombre de parois du milieu du radeau" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches intermédiaires du radeau." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Nombre de parois supérieures du radeau" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches supérieures du radeau." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Vitesse d’impression du radeau" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "La vitesse à laquelle le radeau est imprimé." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Vitesse d’impression de la base du radeau" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Vitesse d’impression du milieu du radeau" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Vitesse d’impression du dessus du radeau" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accélération de l'impression du radeau" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "L'accélération selon laquelle le radeau est imprimé." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accélération de l'impression de la base du radeau" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accélération de l'impression du milieu du radeau" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accélération de l'impression du dessus du radeau" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Saccade d’impression du radeau" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "La saccade selon laquelle le radeau est imprimé." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Saccade d’impression de la base du radeau" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Saccade d’impression du milieu du radeau" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Saccade d’impression du dessus du radeau" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Vitesse du ventilateur pendant le radeau" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "La vitesse du ventilateur pour le radeau." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Vitesse du ventilateur pour la base du radeau" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "La vitesse du ventilateur pour la couche de base du radeau." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Vitesse du ventilateur pour le milieu du radeau" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Vitesse du ventilateur pour le dessus du radeau" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Double extrusion" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Activer la tour d'amorçage" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Type de tour d'amorçage" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" -msgstr "Comment générer la tour d'amorçage :
  • Normale : créer un pot dans lequel les matériaux secondaires sont amorcés
  • Entrelacée : créez une tour d'amorçage aussi peu dense que possible. Vous économiserez ainsi du temps et du filament, mais cette opération n'est possible que si les matériaux utilisés adhèrent les uns aux autres
" - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normale" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Entrelacée" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Taille de la tour d'amorçage" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "La largeur de la tour d'amorçage." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimum de la tour d'amorçage" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Distance maximale de porte-à-faux de la tour d'amorçage" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "Longueur maximale des branches pouvant être imprimées dans le vide." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Position X de la tour d'amorçage" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Les coordonnées X de la position de la tour d'amorçage." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Position Y de la tour d'amorçage" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Les coordonnées Y de la position de la tour d'amorçage." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Essuyer le bec d'impression inactif sur la tour d'amorçage" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Après l'impression de la tour d'amorçage à l'aide d'une buse, nettoyer le matériau qui suinte de l'autre buse sur la tour d'amorçage." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base de la tour d'amorçage" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Une fois que la machine est passée d'une extrudeuse à l'autre, le plateau s'abaisse pour créer un dégagement entre la buse et l'impression. Cela évite que la buse ne ressorte avec du matériau suintant sur l'extérieur d'une impression." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Taille de la base de la tour d'amorçage" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La largeur du bord/de la base de la tour d'amorçage. Une base plus large améliore l'adhésion au plateau, mais réduit également la zone d'impression effective." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Hauteur de la base de la tour d'amorçage" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Augmenter cette valeur rendra la tour d'amorçage plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour d'amorçage n'aura pas une base solide." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Pente de la base de la tour d'amorçage" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour d'amorçage. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espacement des lignes de radeau de la tour d'amorçage" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour d'amorçage. Un espacement large permet un retrait facile du radeau du plateau" - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Activer le bouclier de suintage" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angle du bouclier de suintage" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "L'angle maximal qu'une partie du bouclier de suintage peut adopter. Zéro degré est vertical et 90 degrés est horizontal. Un angle plus petit entraîne moins d'échecs au niveau des boucliers de suintage, mais utilise plus de matériaux." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distance du bouclier de suintage" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Distance entre le bouclier de suintage et l'impression dans les directions X/Y." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distance de rétraction de changement de buse" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Degré de rétraction lors de la commutation d'extrudeuses. Une valeur de 0 signifie qu'il n'y aura aucune rétraction. En général, cette valeur doit être équivalente à la longueur de la zone de chauffe." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Vitesse de rétraction de changement de buse" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "La vitesse à laquelle le filament est rétracté. Une vitesse de rétraction plus élevée fonctionne mieux, mais une vitesse de rétraction très élevée peut causer l'écrasement du filament." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Vitesse de rétraction de changement de buse" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction de changement de buse." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Vitesse d'amorçage de changement de buse" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "La vitesse à laquelle le filament est poussé vers l'arrière après une rétraction de changement de buse." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Matériel supplémentaire à amorcer après le changement de buse." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Corrections" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendez les mailles plus adaptées à l'impression 3D." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Joindre les volumes se chevauchant" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Supprimer tous les trous" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Supprime les trous dans chacune des couches et conserve uniquement la forme extérieure. Tous les détails internes invisibles seront ignorés. Il en va de même pour les trous qui pourraient être visibles depuis le dessus ou le dessous de la pièce." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Raccommodage" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en tentant de fermer le trou avec des intersections entre polygones existants. Cette option peut induire beaucoup de temps de calcul." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Conserver les faces disjointes" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normalement, Cura essaye de raccommoder les petits trous dans le maillage et supprime les parties des couches contenant de gros trous. Activer cette option pousse Cura à garder les parties qui ne peuvent être raccommodées. Cette option doit être utilisée en dernier recours quand tout le reste échoue à produire un G-Code correct." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Chevauchement des mailles fusionnées" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faire de sorte que les maillages qui se touchent se chevauchent légèrement. Cela permet aux maillages de mieux adhérer les uns aux autres." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Supprimer l'intersection des mailles" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alterner le retrait des maillages" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Passe aux volumes d'intersection de maille qui appartiennent à chaque couche, de manière à ce que les mailles qui se chevauchent soient entrelacées. Si vous désactivez ce paramètre, l'une des mailles obtiendra tout le volume dans le chevauchement tandis qu'il est retiré des autres mailles." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Supprimer les premières couches vides" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Résolution maximum" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Taille minimum d'un segment de ligne après découpage. Si vous augmentez cette valeur, la maille aura une résolution plus faible. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code et augmentera la vitesse de découpe en enlevant des détails de la maille que l'imprimante ne peut pas traiter de toute manière." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Résolution de déplacement maximum" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Taille minimale d'un segment de ligne de déplacement après la découpe. Si vous augmentez cette valeur, les mouvements de déplacement auront des coins moins lisses. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code, mais cela peut réduire la précision de l'évitement du modèle." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Écart maximum" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "L'écart maximum autorisé lors de la réduction de la résolution pour le paramètre Résolution maximum. Si vous augmentez cette valeur, l'impression sera moins précise, mais le G-Code sera plus petit. L'écart maximum est une limite pour la résolution maximum. Donc si les deux entrent en conflit, l'Écart maximum restera valable." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Écart maximal de la surface d'extrusion" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "L'écart maximal de la surface d'extrusion autorisé lors de la suppression des points intermédiaires d'une ligne droite. Un point intermédiaire peut servir de point de changement de largeur dans une longue ligne droite. Par conséquent, s'il est supprimé, la ligne aura une largeur uniforme et, par conséquent, cela engendrera la perte (ou le gain) d'un peu de surface d'extrusion. Si vous augmentez cette valeur, vous pourrez constater une légère sous-extrusion (ou sur-extrusion) entre les parois parallèles droites car davantage de points intermédiaires de changement de largeur pourront être supprimés. Votre impression sera moins précise, mais le G-code sera plus petit." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Activer le mouvement fluide" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distance de décalage du mouvement fluide" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Les points de distance sont décalés pour lisser le chemin" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Faible distance de décalage du mouvement fluide" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Les points de distance sont décalés pour lisser le chemin" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Angle de mouvement fluide" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Si un segment du parcours d'outil s'écarte d'une valeur supérieure à cet angle par rapport au mouvement général, il est lissé." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modes spéciaux" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Des moyens non traditionnels d'imprimer vos modèles." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Séquence d'impression" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Imprime tous les modèles en même temps, couche par couche, ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si a) une seule extrudeuse est activée et si b) tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tout" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Tout en même temps" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Un à la fois" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Définir la séquence d'impression manuellement" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Tous les paramètres qui influent sur la résolution de l'impression. Ces paramètres ont un impact conséquent sur la qualité (et la durée d'impression)." msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Permet d'ordonner la liste d'objets pour définir manuellement la séquence d'impression. Le premier objet de la liste sera imprimé en premier." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maille de remplissage" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alterner les parois supplémentaires" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utiliser cette maille pour modifier le remplissage d'autres mailles qu'elle chevauche. Remplace les régions de remplissage d'autres mailles par des régions de cette maille. Il est conseillé d'imprimer uniquement une Paroi et pas de Couche du dessus/dessous pour cette maille." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rang de traitement du maillage" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Détermine la priorité de cette maille lorsque plusieurs chevauchements de mailles de remplissage sont pris en considération. Les zones comportant plusieurs chevauchements de mailles de remplissage prendront en compte les paramètres du maillage ayant l'ordre le plus élevé. Une maille de remplissage possédant un ordre plus élevé modifiera le remplissage des mailles de remplissage ayant un ordre plus bas et des mailles normales." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Maille de coupe" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Moule" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprimer les modèles comme moule, qui peut être coulé afin d'obtenir un modèle ressemblant à ceux présents sur le plateau." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largeur minimale de moule" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Hauteur du plafond de moule" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour laquelle imprimer le moule." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angle du moule" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "L'angle de porte-à-faux des parois externes créées pour le moule. La valeur 0° rendra la coque externe du moule verticale, alors que 90° fera que l'extérieur du modèle suive les contours du modèle." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Maillage de support" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utiliser ce maillage pour spécifier des zones de support. Cela peut être utilisé pour générer une structure de support." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maillage anti-surplomb" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utiliser cette maille pour préciser à quel endroit aucune partie du modèle doit être détectée comme porte-à-faux. Cette option peut être utilisée pour supprimer la structure de support non souhaitée." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Mode de surface" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Traite le modèle comme surface seule, un volume ou des volumes avec des surfaces seules. Le mode d'impression normal imprime uniquement des volumes fermés. « Surface » imprime une paroi seule autour de la surface de la maille, sans remplissage ni couche du dessus/dessous. « Les deux » imprime des volumes fermés comme en mode normal et les polygones restants comme surfaces." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Surface" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Les deux" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiraliser le contour extérieur" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Cette fonction ajuste le déplacement en Z sur le bord extérieur. Cela va créer une augmentation stable de Z sur toute l’impression. Cette fonction transforme un modèle solide en une impression à paroi unique avec une base solide. Cette fonctionnalité doit être activée seulement lorsque chaque couche contient uniquement une seule partie." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Lisser les contours spiralisés" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Lisser les contours spiralisés pour réduire la visibilité de la jointure en Z (la jointure en Z doit être à peine visible sur l'impression mais sera toujours visible dans la vue en couches). Veuillez remarquer que le lissage aura tendance à estomper les détails très fins de la surface." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusion relative" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utiliser l'extrusion relative au lieu de l'extrusion absolue. L'utilisation de pas E relatifs facilite le post-traitement du G-Code. Toutefois, cela n'est pas pris en charge par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, par rapport à l'utilisation des pas E absolus. Indépendamment de ce paramètre, le mode d'extrusion sera défini par défaut comme absolu avant qu'un quelconque script de G-Code soit produit." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Expérimental" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Des fonctionnalités qui n'ont pas encore été complètement développées." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolérance à la découpe" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolérance verticale dans les couches découpées. Les contours d'une couche sont normalement générés en faisant passer les sections entrecroisées au milieu de chaque épaisseur de couche (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute l'épaisseur de la couche (Exclusif) ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Inclusif permet de conserver le plus de détails ; l'option Exclusif permet d'obtenir une adaptation optimale ; l'option Milieu permet de rester proche de la surface d'origine." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Milieu" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusif" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusif" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimisation du déplacement de remplissage" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Lorsque cette option est activée, l'ordre dans lequel les lignes de remplissage sont imprimées est optimisé pour réduire la distance parcourue. La réduction du temps de parcours dépend en grande partie du modèle à découper, du type de remplissage, de la densité, etc. Remarque : pour certains modèles possédant beaucoup de petites zones de remplissage, le temps de découpe du modèle peut en être considérablement augmenté." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Graphique de la température du flux" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonférence minimale du polygone" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Les polygones en couches tranchées dont la circonférence est inférieure à cette valeur seront filtrés. Des valeurs élevées permettent d'obtenir un maillage de meilleure résolution mais augmentent le temps de découpe. Cette option est principalement destinée aux imprimantes SLA haute résolution et aux modèles 3D de très petite taille avec beaucoup de détails." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Générer une structure de connexion" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largeur des attaches de connexion" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "La largeur des attaches de la structure de connexion." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientation de la structure de connexion" - -msgctxt "interlocking_orientation description" -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 "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Nombre de couches des attaches de connexion" - -msgctxt "interlocking_beam_layer_count description" -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 "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profondeur de connexion" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Limite de distance entre les modèles 3D à partir de laquelle générer une structure de connexion, mesurée en cellules. Un nombre de cellules trop bas entraînera une mauvaise adhérence." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Distance limite de connexion" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Distance depuis l'extérieur d'un modèle 3D à partir de laquelle les structures de connexion ne seront pas générées, mesurée en cellules." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Démantèlement du support en morceaux" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Ignorer certaines connexions de ligne du support pour rendre la structure de support plus facile à casser. Ce paramètre s'applique au motif de remplissage du support en zigzag." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Taille de morceaux du support" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Ignorer une connexion entre lignes du support tous les N millimètres, pour rendre la structure de support plus facile à casser." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Comptage des lignes de morceaux du support" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Activer le bouclier" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Cela créera une paroi autour du modèle qui retient l'air (chaud) et protège contre les courants d'air. Particulièrement utile pour les matériaux qui se soulèvent facilement." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distance X/Y du bouclier" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Distance entre la pièce et le bouclier dans les directions X et Y." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite du bouclier" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Pleine hauteur" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitée" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hauteur du bouclier" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Hauteur limite du bouclier. Au-delà de cette hauteur, aucun bouclier ne sera imprimé." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendre le porte-à-faux imprimable" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Change la géométrie du modèle imprimé de manière à nécessiter un support minimal. Les porte-à-faux abrupts deviendront des porte-à-faux minces. Les zones en porte-à-faux descendront pour devenir plus verticales." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Angle maximal du modèle" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "L'angle maximal des porte-à-faux après qu'ils aient été rendus imprimables. À une valeur de 0°, tous les porte-à-faux sont remplacés par une pièce de modèle rattachée au plateau, tandis que 90° ne changera en rien le modèle." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Surface maximale du trou en porte-à-faux" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Zone maximale d'un trou dans la base du modèle avant d'être retirée par l'outil Rendre le porte-à-faux imprimable. Les trous plus petits seront conservés. Une valeur de 0 mm² remplira tous les trous dans la base des modèles." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Activer la roue libre" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "L'option « roue libre » remplace la dernière partie d'un mouvement d'extrusion par un mouvement de déplacement. Le matériau qui suinte de la buse est alors utilisé pour imprimer la dernière partie du tracé du mouvement d'extrusion, ce qui réduit le stringing." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume en roue libre" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimal avant roue libre" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Le plus petit volume qu'un mouvement d'extrusion doit entraîner avant d'autoriser la roue libre. Pour les petits mouvements d'extrusion, une pression moindre s'est formée dans le tube bowden, de sorte que le volume déposable en roue libre est alors réduit linéairement. Cette valeur doit toujours être supérieure au volume en roue libre." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Vitesse de roue libre" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Vitesse de déplacement pendant une roue libre, par rapport à la vitesse de déplacement pendant l'extrusion. Une valeur légèrement inférieure à 100 % est conseillée car, lors du mouvement en roue libre, la pression dans le tube bowden chute." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Taille de poches entrecroisées 3D" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "La taille de poches aux croisements à quatre branches dans le motif entrecroisé 3D, à des hauteurs où le motif se touche lui-même." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Image de densité du remplissage croisé" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le remplissage de l'impression." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Image de densité du remplissage croisé pour le support" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le support." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Activer les supports coniques" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angle des supports coniques" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Angle d'inclinaison des supports coniques. Un angle de 0 degré est vertical tandis qu'un angle de 90 degrés est horizontal. Les petits angles rendent le support plus solide mais utilisent plus de matière. Les angles négatifs rendent la base du support plus large que le sommet." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largeur minimale des supports coniques" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Largeur minimale à laquelle la base du support conique est réduite. Des largeurs étroites peuvent entraîner des supports instables." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Surfaces floues" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Produit une agitation aléatoire lors de l'impression de la paroi extérieure, ce qui lui donne une apparence rugueuse et floue." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Couche floue à l'extérieur uniquement" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "N'agitez que les contours des pièces et non les trous des pièces." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Épaisseur de la couche floue" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Largeur autorisée pour l'agitation aléatoire. Il est conseillé de garder cette valeur inférieure à l'épaisseur de la paroi extérieure, ainsi, les parois intérieures ne seront pas altérées." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densité de la couche floue" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Densité moyenne de points ajoutée à chaque polygone sur une couche. Notez que les points originaux du polygone ne seront plus pris en compte, une faible densité résultant alors en une diminution de la résolution." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distance entre les points de la couche floue" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Décalage d'extrusion max. pour compensation du débit" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "La distance maximale en mm pour déplacer le filament afin de compenser les variations du débit." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Facteur de compensation du débit" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "La distance de déplacement du filament pour compenser les variations du débit, en pourcentage de la distance de déplacement du filament en une seconde d'extrusion." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utiliser des couches adaptatives" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Cette option calcule la hauteur des couches en fonction de la forme du modèle." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variation maximale des couches adaptatives" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Hauteur maximale autorisée par rapport à la couche de base." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Taille des étapes de variation des couches adaptatives" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Différence de hauteur de la couche suivante par rapport à la précédente." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Taille de la topographie des couches adaptatives" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distance horizontale cible entre deux couches adjacentes. La réduction de ce paramètre entraîne l'utilisation de couches plus fines pour rapprocher les bords des couches." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angle de parois en porte-à-faux" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Vitesse de paroi en porte-à-faux" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Les parois en porte-à-faux seront imprimées à ce pourcentage de leur vitesse d'impression normale." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Activer les paramètres du pont" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et les paramètres du ventilateur pendant l'impression des ponts." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Longueur minimale de la paroi du pont" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Les parois non supportées dont la longueur est inférieure à cette valeur seront imprimées selon les paramètres de parois normaux, tandis que celles dont la longueur est supérieure à cette valeur seront imprimées selon les paramètres de parois du pont." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limite de support de la couche extérieure du pont" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Si une région de couche extérieure est supportée pour une valeur inférieure à ce pourcentage de sa surface, elle sera imprimée selon les paramètres du pont. Sinon, elle sera imprimée selon les paramètres normaux de la couche extérieure." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densité maximale du remplissage mince du pont" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densité maximale du remplissage considéré comme étant mince. La couche sur le remplissage mince est considérée comme non soutenue et peut donc être traitée comme une couche du pont." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Roue libre pour paroi du pont" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Vitesse de paroi du pont" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Vitesse à laquelle les parois de pont sont imprimées." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Débit de paroi du pont" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression des parois de pont, la quantité de matériau extrudé est multipliée par cette valeur." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Vitesse de la couche extérieure du pont" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Vitesse à laquelle les régions de la couche extérieure du pont sont imprimées." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Débit de la couche extérieure du pont" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression des régions de la couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densité de la couche extérieure du pont" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Vitesse du ventilateur du pont" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression des parois et de la couche extérieure du pont." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Le pont possède plusieurs couches" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Si cette option est activée, les deuxième et troisième couches au-dessus de la zone d'air seront imprimées selon les paramètres suivants. Sinon, ces couches seront imprimées selon les paramètres normaux." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Vitesse de la deuxième couche extérieure du pont" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Débit de la deuxième couche extérieure du pont" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression de la deuxième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densité de la deuxième couche extérieure du pont" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la deuxième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Vitesse du ventilateur de la deuxième couche extérieure du pont" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la deuxième couche extérieure du pont." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Vitesse de la troisième couche extérieure du pont" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Débit de la troisième couche extérieure du pont" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Lors de l'impression de la troisième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densité de la troisième couche extérieure du pont" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Densité de la troisième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Vitesse du ventilateur de la troisième couche extérieure du pont" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la troisième couche extérieure du pont." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Essuyer la buse entre les couches" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Inclure ou non le G-Code d'essuyage de la buse entre les couches (maximum 1 par couche). L'activation de ce paramètre peut influencer le comportement de la rétraction lors du changement de couche. Veuillez utiliser les paramètres de rétraction d'essuyage pour contrôler la rétraction aux couches où le script d'essuyage sera exécuté." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de matériau entre les essuyages" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé. Si cette valeur est inférieure au volume de matériau nécessaire dans une couche, le paramètre n'a aucun effet dans cette couche, c'est-à-dire qu'il est limité à un essuyage par couche." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Activation de la rétraction d'essuyage" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distance de rétraction d'essuyage" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "La distance de rétraction du filament afin qu'il ne suinte pas pendant la séquence d'essuyage." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Degré supplémentaire de rétraction d'essuyage d'amorçage" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Du matériau peut suinter pendant un déplacement d'essuyage, ce qui peut être compensé ici." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Vitesse de rétraction d'essuyage" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant un déplacement de rétraction d'essuyage." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Vitesse de rétraction d'essuyage" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacement de rétraction d'essuyage." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Vitesse primaire de rétraction d'essuyage" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "La vitesse à laquelle le filament est préparé pendant un déplacement de rétraction d'essuyage." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pause d'essuyage" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pause après l'irrétraction." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Décalage en Z de l'essuyage" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Lors de l'essuyage, le plateau de fabrication est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau de fabrication." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Hauteur du décalage en Z d'essuyage" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Vitesse du décalage d'essuyage" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Vitesse de déplacement de l'axe Z pendant le décalage." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Position X de la brosse d'essuyage" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Emplacement X où le script d'essuyage démarrera." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Nombre de répétitions d'essuyage" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Le nombre de déplacements de la buse à travers la brosse." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distance de déplacement d'essuyage" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distance de déplacement de la tête d'avant en arrière à travers la brosse." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Taille maximale des petits trous" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Les trous et les contours des pièces dont le diamètre est inférieur à celui-ci seront imprimés en utilisant l'option Vitesse de petite structure." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Longueur max de petite structure" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Les contours des structures dont le diamètre est inférieur à cette longueur seront imprimés en utilisant l'option Vitesse de petite structure." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Vitesse de petite structure" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Vitesse de la couche initiale de petite structure" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Les petites structures sur la première couche seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alterner le retrait des maillages" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Alternez les directions des parois, une couche et un insert sur deux. Utile pour les matériaux qui peuvent accumuler des contraintes, comme pour l'impression de métal." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Regrouper les parois extérieures" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Toujours écrire l'outil actif" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Rapport sur le processus d'impression" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Toujours rétracter lors du déplacement pour commencer une paroi externe." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Rapport sur les événements qui dépassent les seuils fixés" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Le décalage appliqué à tous les polygones dans chaque couche. Une valeur positive peut compenser les trous trop gros ; une valeur négative peut compenser les trous trop petits." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Activer le rapport sur le processus d'impression" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Le décalage appliqué à tous les polygones dans la première couche. Une valeur négative peut compenser l'écrasement de la première couche, appelé « patte d'éléphant »." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Activez le rapport sur le processus d'impression pour définir des valeurs seuils en vue d'une éventuelle détection d'erreur." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Le décalage appliqué à tous les polygones pour chaque couche. Une valeur positive peut lisser les zones de support et rendre le support plus solide." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Avertissement de débit" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantité de décalage appliqué aux bas du support." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Limite de l'avertissement de débit pour la détection." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantité de décalage appliqué aux plafonds du support." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Limite de débit" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantité de décalage appliquée aux polygones de l'interface de support." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Limite de l'anomalie de débit pour la détection." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "La distance de rétraction du filament afin qu'il ne suinte pas pendant la séquence d'essuyage." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Avertissement de température d'impression" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Une addition au rayon à partir du centre de chaque cube pour vérifier la bordure du modèle, afin de décider si ce cube doit être subdivisé. Des valeurs plus importantes entraînent une coque plus épaisse de petits cubes à proximité de la bordure du modèle." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Limite de l'avertissement de température d'impression pour la détection." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maillage anti-surplomb" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Limite de la température d'impression" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Position anti-suintage rétractée" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Limite de l'anomalie de la température d'impression pour la détection." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Vitesse de rétraction de l'anti-suintage" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Avertissement de la température du volume de construction" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Appliquez le décalage de l'extrudeuse au système de coordonnées. Affecte toutes les extrudeuses." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Limite de l'avertissement de la température du volume de construction pour la détection." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Aux endroits où les modèles 3D se touchent, générez une structure d'attaches de connexion. Cette fonctionnalité améliore l'adhérence entre les modèles 3D, en particulier ceux imprimés avec des matériaux différents." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Éviter les pièces imprimées lors du déplacement" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Éviter les supports lors du déplacement" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Arrière" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Arrière gauche" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Arrière droit" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Les deux" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Chevauchement" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Couches inférieures" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Couche initiale du motif du dessous" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure inférieure" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure inférieure" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Épaisseur du dessous" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densité des branches" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diamètre des branches" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Angle de diamètre des branches" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Préparation de rupture Position rétractée" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Vitesse de rétraction de préparation de rupture" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Température de préparation de rupture" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Position rétractée de rupture" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Vitesse de rétraction de rupture" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Température de rupture" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Démantèlement du support en morceaux" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Vitesse du ventilateur du pont" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Le pont possède plusieurs couches" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densité de la deuxième couche extérieure du pont" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Vitesse du ventilateur de la deuxième couche extérieure du pont" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Débit de la deuxième couche extérieure du pont" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Vitesse de la deuxième couche extérieure du pont" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densité de la couche extérieure du pont" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Débit de la couche extérieure du pont" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Vitesse de la couche extérieure du pont" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limite de support de la couche extérieure du pont" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densité maximale du remplissage mince du pont" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densité de la troisième couche extérieure du pont" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Vitesse du ventilateur de la troisième couche extérieure du pont" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Débit de la troisième couche extérieure du pont" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Vitesse de la troisième couche extérieure du pont" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Roue libre pour paroi du pont" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Débit de paroi du pont" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Vitesse de paroi du pont" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Bordure" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Marge d'évitement de la bordure" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distance de la bordure" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Nombre de lignes de la bordure" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Emplacement de la bordure" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "La bordure remplace le support" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largeur de la bordure" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adhérence du plateau" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrudeuse d'adhérence du plateau" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type d'adhérence du plateau" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Matériau du plateau" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forme du plateau" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Température du plateau" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Température du plateau couche initiale" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Température du volume d'impression" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Limite de la température du volume de construction" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Anomalie de détection de la limite de température du volume de construction." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Avertissement de la température du volume de construction" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Paramètres de ligne de commande" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Paramètres qui sont utilisés uniquement si CuraEngine n'est pas invoqué depuis l'interface Cura." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "En activant ce paramètre, votre tour d'amorçage aura un bord même si le modèle n'en a pas. Si vous souhaitez une base plus solide pour une tour élevée, vous pouvez augmenter la hauteur de la base." msgctxt "center_object label" msgid "Center Object" msgstr "Centrer l'objet" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "S'il faut centrer l'objet au milieu du plateau d'impression (0,0) au lieu d'utiliser le système de coordonnées dans lequel l'objet a été enregistré." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Change la géométrie du modèle imprimé de manière à nécessiter un support minimal. Les porte-à-faux abrupts deviendront des porte-à-faux minces. Les zones en porte-à-faux descendront pour devenir plus verticales." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Choisit entre les techniques disponibles pour générer un support. Le support « Normal » créer une structure de support directement sous les pièces en porte-à-faux et fait descendre ces zones directement vers le bas. Le support « Arborescent » crée des branches vers les zones en porte-à-faux qui supportent le modèle à l'extrémité de ces branches et permet aux branches de ramper autour du modèle afin de les supporter le plus possible sur le plateau de fabrication." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Vitesse de roue libre" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume en roue libre" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "L'option « roue libre » remplace la dernière partie d'un mouvement d'extrusion par un mouvement de déplacement. Le matériau qui suinte de la buse est alors utilisé pour imprimer la dernière partie du tracé du mouvement d'extrusion, ce qui réduit le stringing." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Mode de détours" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Les détours maintiennent la buse dans les zones déjà imprimées lors des déplacements. Cela résulte en des déplacements légèrement plus longs mais réduit le recours aux rétractions. Si les détours sont désactivés, le matériau se rétractera et la buse se déplacera en ligne droite jusqu'au point suivant. Il est également possible d'éviter les détours sur les zones de la couche du dessus / dessous ou d'effectuer les détours uniquement dans le remplissage." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Paramètres de ligne de commande" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angle des supports coniques" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largeur minimale des supports coniques" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Relier les lignes de remplissage" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Relier les polygones de remplissage" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Relier les lignes de support" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Relier les zigzags de support" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Relier les polygones supérieurs / inférieurs" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Relier les voies de remplissage lorsqu'elles sont côte à côte. Pour les motifs de remplissage composés de plusieurs polygones fermés, ce paramètre permet de réduire considérablement le temps de parcours." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Relie les zigzags. Cela augmente la solidité des supports en zigzag." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Relie les extrémités des lignes de support. L'activation de ce paramètre peut rendre votre support plus robuste et réduire la sous-extrusion, mais cela demandera d'utiliser plus de matériau." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Relie les extrémités où le motif de remplissage touche la paroi interne, à l'aide d'une ligne épousant la forme de la paroi interne. Activer ce paramètre peut faire mieux coller le remplissage aux parois, et réduit les effets du remplissage sur la qualité des surfaces verticales. Désactiver ce paramètre diminue la quantité de matière utilisée." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Relier les voies de couche extérieure supérieures / inférieures lorsqu'elles sont côte à côte. Pour le motif concentrique, ce paramètre réduit considérablement le temps de parcours, mais comme les liens peuvent se trouver à mi-chemin sur le remplissage, cette fonctionnalité peut réduire la qualité de la surface supérieure." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Vérifie si les angles du contour du modèle influencent l'emplacement de la jointure. « Aucune » signifie que les angles n'ont aucune influence sur l'emplacement de la jointure. « Masquer la jointure » génère le positionnement de la jointure sur un angle intérieur. « Exposer la jointure » génère le positionnement de la jointure sur un angle extérieur. « Masquer ou exposer la jointure » génère le positionnement de la jointure sur un angle intérieur ou extérieur. « Jointure intelligente » autorise les angles intérieurs et extérieurs, mais choisit plus fréquemment les angles intérieurs, le cas échéant." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Convertir chaque ligne de remplissage en ce nombre de lignes. Les lignes supplémentaires ne se croisent pas entre elles, mais s'évitent mutuellement. Cela rend le remplissage plus rigide, mais augmente le temps d'impression et la quantité de matériau utilisé." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Vitesse de refroidissement" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Refroidissement" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Refroidissement" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Entrecroisé" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Entrecroisé 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Taille de poches entrecroisées 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Image de densité du remplissage croisé pour le support" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Image de densité du remplissage croisé" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Matériau cristallin" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubique" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivision cubique" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Coque de la subdivision cubique" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Maille de coupe" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Données reliant le flux de matériau (en mm3 par seconde) à la température (degrés Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accélération par défaut" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Température du plateau par défaut" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Saccade par défaut du filament" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Température d’impression par défaut" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Saccade X-Y par défaut" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Saccade Z par défaut" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Saccade par défaut pour le mouvement sur le plan horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Saccade par défaut pour le moteur du sens Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Saccade par défaut pour le moteur du filament." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Détecter les ponts et modifier la vitesse d'impression, le débit et les paramètres du ventilateur pendant l'impression des ponts." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Détermine l'ordre dans lequel les parois sont imprimées. L'impression des parois extérieures plus tôt permet une précision dimensionnelle car les défauts des parois intérieures ne peuvent pas se propager à l'extérieur. Cependant, le fait de les imprimer plus tard leur permet de mieux s'empiler lorsque les saillies sont imprimées. Lorsqu'il y a une quantité totale inégale de parois intérieures, la « dernière ligne centrale » est toujours imprimée en dernier." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Détermine la priorité de cette maille lorsque plusieurs chevauchements de mailles de remplissage sont pris en considération. Les zones comportant plusieurs chevauchements de mailles de remplissage prendront en compte les paramètres du maillage ayant l'ordre le plus élevé. Une maille de remplissage possédant un ordre plus élevé modifiera le remplissage des mailles de remplissage ayant un ordre plus bas et des mailles normales." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir tout ce qui se trouve au-dessus. Mesuré dans l'angle au vu de l'épaisseur d'une couche." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Détermine quand une couche de remplissage éclair doit soutenir le modèle au-dessus. Mesuré dans l'angle au vu de l'épaisseur." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diamètre" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Augmentation du diamètre des branches rattachées au modèle" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Il s'agit du diamètre que chaque branche essaie d'atteindre au niveau du plateau. Ce paramètre améliore l'adhérence au plateau." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Différentes options qui permettent d'améliorer la préparation de votre extrusion et l'adhérence au plateau. La bordure ajoute une zone plate d'une seule couche autour de la base de votre modèle, afin de l'empêcher de se redresser. Le radeau ajoute une grille épaisse avec un toit sous le modèle. La jupe est une ligne imprimée autour du modèle mais qui n'est pas rattachée au modèle." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Zones interdites" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Distance entre les lignes de remplissage imprimées. Ce paramètre est calculé par la densité du remplissage et la largeur de ligne de remplissage." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distance entre les lignes de la structure de support de la couche initiale imprimée. Ce paramètre est calculé en fonction de la densité du support." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distance entre les lignes du bas de support imprimées. Ce paramètre est calculé par la densité du bas de support mais peut également être défini séparément." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distance entre les lignes du plafond de support imprimées. Ce paramètre est calculé par la densité du plafond de support mais peut également être défini séparément." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Distance entre les lignes de support imprimées. Ce paramètre est calculé par la densité du support." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distance de l'impression au bas du support. Notez que cela est arrondi à la hauteur de couche suivante." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Distance entre l’impression et le haut des supports." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distance entre le haut/bas de la structure de support et l'impression. Cet écart permet de retirer les supports après l'impression du modèle. La couche de support la plus haute sous le modèle pourrait être une fraction des couches régulières." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Distance de déplacement à insérer après chaque ligne de remplissage, pour s'assurer que le remplissage collera mieux aux parois externes. Cette option est similaire au chevauchement du remplissage, mais sans extrusion et seulement à l'une des deux extrémités de la ligne de remplissage." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distance d'un déplacement inséré après la paroi extérieure, pour mieux masquer la jointure en Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Distance entre la pièce et le bouclier dans les directions X et Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Distance entre le bouclier de suintage et l'impression dans les directions X/Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Distance entre la structure de support et le porte-à-faux dans les directions X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Distance entre le support et l'impression dans les directions X/Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Les points de distance sont décalés pour lisser le chemin" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Les points de distance sont décalés pour lisser le chemin" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Ne pas générer de zones de remplissage plus petites que cela (utiliser plutôt une couche extérieure)" + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hauteur du bouclier" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite du bouclier" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distance X/Y du bouclier" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maillage de support descendant" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Double extrusion" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elliptique" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Activer le contrôle d'accélération" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Activer les paramètres du pont" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Activer la roue libre" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Activer les supports coniques" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Activer le bouclier" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Activer le mouvement fluide" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Activer l'étirage" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Activer le contrôle de saccade" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Permettre le contrôle de la température de la buse" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Activer le bouclier de suintage" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Activer la goutte de préparation" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Activer la tour d'amorçage" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Activer le refroidissement de l'impression" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Activer le rapport sur le processus d'impression" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Activer la rétraction" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Activer la bordure du support" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Activer les bas de support" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Activer l'interface de support" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Activer les plafonds de support" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Activer l'accélération des déplacements" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Activer les saccades de déplacement" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Activer le bouclier de suintage extérieur. Cela créera une coque autour du modèle qui est susceptible d'essuyer une deuxième buse si celle-ci est à la même hauteur que la première buse." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Activez le rapport sur le processus d'impression pour définir des valeurs seuils en vue d'une éventuelle détection d'erreur." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Permet aux petites zones (jusqu'à « Petite largeur Haut/Bas ») de la couche supérieure (exposée à l'air) d'être remplies avec des parois au lieu du motif par défaut." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Active le réglage de la saccade de la tête d'impression lorsque la vitesse sur l'axe X ou Y change. Augmenter les saccades peut réduire la durée d'impression au détriment de la qualité d'impression." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Active le réglage de l'accélération de la tête d'impression. Augmenter les accélérations peut réduire la durée d'impression au détriment de la qualité d'impression." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Active les ventilateurs de refroidissement de l'impression pendant l'impression. Les ventilateurs améliorent la qualité de l'impression sur les couches présentant des durées de couche courtes et des ponts / porte-à-faux." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-Code de fin" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Longueur de purge de l'extrémité du filament" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Vitesse de purge de l'extrémité du filament" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Appliquer la bordure à imprimer autour du modèle même si cet espace aurait autrement dû être occupé par le support, en remplaçant certaines régions de la première couche de support par des régions de la bordure." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Partout" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Partout" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusif" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Expérimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Exposer jointure" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Raccommodage" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Le raccommodage consiste en la suppression des trous dans le maillage en tentant de fermer le trou avec des intersections entre polygones existants. Cette option peut induire beaucoup de temps de calcul." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Nombre de parois de remplissage supplémentaire" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Nombre supplémentaire de parois extérieures" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Matériel supplémentaire à amorcer après le changement de buse." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extrudeuse Position d'amorçage X" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extrudeuse Position d'amorçage Y" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Extrudeuse Position d'amorçage Z" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Les extrudeurs partagent le chauffage" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Les extrudeuses partagent la buse" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificateur de vitesse de refroidissement de l'extrusion" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Facteur de correction de la largeur d'extrusion en fonction de la vitesse. À 0 %, la vitesse de mouvement reste constante à la vitesse d'impression. À 100 %, la vitesse de mouvement est ajustée de sorte que le débit (en mm³/s) reste constant, c'est-à-dire que les lignes à la moitié de la largeur de ligne normale sont imprimées deux fois plus vite et que les lignes à la moitié de la largeur sont imprimées aussi vite. Une valeur supérieure à 100 % peut aider à compenser la pression plus élevée requise pour extruder les lignes larges." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Vitesse du ventilateur" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Annulation de la vitesse du ventilateur" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Les contours des structures dont le diamètre est inférieur à cette longueur seront imprimés en utilisant l'option Vitesse de petite structure." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Des fonctionnalités qui n'ont pas encore été complètement développées." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diamètre de roue du chargeur" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Température d’impression finale" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Rétraction du firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrudeuse de support de la première couche" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Débit" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapport d'égalisation des débits" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de débit" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Facteur de compensation du débit" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Décalage d'extrusion max. pour compensation du débit" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Graphique de la température du flux" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Avertissement de débit" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensation du débit pour la couche initiale : la quantité de matériau extrudée sur la couche initiale est multipliée par cette valeur." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensation de débit sur les lignes inférieures de la première couche" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensation de débit sur les lignes de remplissage." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensation de débit sur les lignes de plafond ou de bas de support." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensation de débit sur les lignes des zones en haut de l'impression." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensation de débit sur les lignes de la tour d'amorçage." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensation de débit sur les lignes de jupe ou bordure." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensation de débit sur les lignes de bas de support." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensation de débit sur les lignes du plafond de support." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensation de débit sur les lignes de support." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensation de débit sur la ligne de paroi la plus externe de la première couche." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensation de débit sur la ligne de la paroi la plus à l'extérieur." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensation de flux sur la ligne de paroi la plus externe de la surface supérieure." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensation du flux sur les lignes de paroi de la surface supérieure pour toutes les lignes de paroi sauf la plus externe." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensation de débit sur les lignes du dessus/dessous." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensation de débit sur les lignes de paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus plus externe, mais uniquement pour la première couche" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensation de débit sur les lignes de la paroi pour toutes les lignes de paroi, à l'exception de la ligne la plus externe." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensation de débit sur les lignes de la paroi." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensation du débit : la quantité de matériau extrudée est multipliée par cette valeur." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Angle de mouvement fluide" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distance de décalage du mouvement fluide" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Faible distance de décalage du mouvement fluide" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Longueur de la purge d'insertion" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Vitesse de purge d'insertion" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Pour les structures fines dont la taille correspond à une ou deux fois celle de la buse, il faut modifier la largeur des lignes pour respecter l'épaisseur du modèle. Ce paramètre contrôle la largeur de ligne minimale autorisée pour les parois. Les largeurs de lignes minimales déterminent également les largeurs de lignes maximales, puisque nous passons de N à N+1 parois à une certaine épaisseur géométrique où les N parois sont larges et les N+1 parois sont étroites. La ligne de paroi la plus large possible est égale à deux fois la largeur minimale de la ligne de paroi." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avant" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avant gauche" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avant droit" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Pleine hauteur" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Surfaces floues" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densité de la couche floue" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Couche floue à l'extérieur uniquement" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distance entre les points de la couche floue" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Épaisseur de la couche floue" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Parfum G-Code" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Commandes G-Code à exécuter tout à la fin, séparées par " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Commandes G-Code à exécuter au tout début, séparées par " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID du matériau. Cela est configuré automatiquement." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Hauteur du portique" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Générer une structure de connexion" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Générer les supports" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Générer un bord à l'intérieur des zones de remplissage du support de la première couche. Cette bordure est imprimée sous le support et non autour de celui-ci, ce qui augmente l'adhérence du support au plateau." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Générer une interface dense entre le modèle et le support. Cela créera une couche sur le dessus du support sur lequel le modèle est imprimé et sur le dessous du support sur lequel le modèle repose." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Générer une plaque dense de matériau entre le bas du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Générer une plaque dense de matériau entre le plafond du support et le modèle. Cela créera une couche extérieure entre le modèle et le support." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Générer des structures pour soutenir les parties du modèle qui possèdent des porte-à-faux. Sans ces structures, ces parties s'effondreront durant l'impression." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Verre" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Allez au-dessus de la surface une fois supplémentaire, mais en extrudant très peu de matériau. Cela signifie de faire fondre le plastique en haut un peu plus, pour créer une surface lisse. La pression dans la chambre de la buse est maintenue élevée afin que les plis de la surface soient remplis de matériau." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Hauteur de l'étape de remplissage progressif" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Étapes de remplissage progressif" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Hauteur d'étape de remplissage graduel du support" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Étapes de remplissage graduel du support" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Réduisez progressivement à cette température lors de l'impression à des vitesses réduites en raison de la durée minimale d’une couche." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grille" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grille" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grille" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grille" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grille" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Regrouper les parois extérieures" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Est dotée de la stabilisation de la température du volume d'impression" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "A un plateau chauffé" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Vitesse de chauffage" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Longueur de la zone chauffée" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Hauteur limite du bouclier. Au-delà de cette hauteur, aucun bouclier ne sera imprimé." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Masquer jointure" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Masquer ou exposer jointure" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansion horizontale des trous" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diamètre maximal de l'expansion horizontale des trous" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Les trous et les contours des pièces dont le diamètre est inférieur à celui-ci seront imprimés en utilisant l'option Vitesse de petite structure." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansion horizontale" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle horizontale" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Jusqu'où le filament peut être étiré avant qu'il ne se casse, pendant qu'il est chauffé." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Jusqu'où le matériau doit être rétracté avant qu'il cesse de suinter." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "La distance de déplacement du filament pour compenser les variations du débit, en pourcentage de la distance de déplacement du filament en une seconde d'extrusion." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Jusqu'où rétracter le filament afin de le casser proprement." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "La vitesse à laquelle le filament doit être rétracté juste avant de le briser dans une rétraction." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "À quelle vitesse le matériau doit-il être rétracté lors d'un changement de filament pour empêcher le suintage." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "La vitesse d'amorçage du matériau après le remplacement d'une bobine vide par une nouvelle bobine du même matériau." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "La vitesse d'amorçage du matériau après le passage à un autre matériau." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "La durée pendant laquelle le matériau peut être conservé à l'abri de la sécheresse." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Nombre de pas du moteur pas à pas correspondant à un mouvement d'un millimètre dans la direction Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Nombre de pas des moteurs pas à pas correspondant au déplacement de la roue du chargeur d'un millimètre sur sa circonférence." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du remplacement d'une bobine vide par une nouvelle bobine du même matériau." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "La quantité de matériau à utiliser pour purger le matériau précédent de la buse (en longueur de filament) lors du passage à un autre matériau." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La quantité de filament de chaque extrudeuse qui est supposée avoir été rétractée de l'extrémité de la buse partagée à la fin du script gcode de démarrage de l'imprimante ; la valeur doit être égale ou supérieure à la longueur de la partie commune des conduits de la buse." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Ce paramètre détermine la façon dont l'interface de support et le support interagissent en cas de chevauchement. Il n'est actuellement disponible que pour le plafond de support." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Il s'agit de la hauteur minimale que doit atteindre une branche si elle est rattachée au modèle. Ce paramètre empêche la formation de petites gouttes de support. Il est ignoré lorsqu'une branche soutient un plafond de support." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Si une région de couche extérieure est supportée pour une valeur inférieure à ce pourcentage de sa surface, elle sera imprimée selon les paramètres du pont. Sinon, elle sera imprimée selon les paramètres normaux de la couche extérieure." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Si un segment du parcours d'outil s'écarte d'une valeur supérieure à cet angle par rapport au mouvement général, il est lissé." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Si cette option est activée, les deuxième et troisième couches au-dessus de la zone d'air seront imprimées selon les paramètres suivants. Sinon, ces couches seront imprimées selon les paramètres normaux." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "S'il s'agit d'une transition d'avant en arrière entre différents nombres de parois en succession rapide, ne faites pas du tout la transition. Supprimez les transitions si elles sont plus proches les unes des autres que cette distance." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la base du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si vous avez appliqué un radeau, alors il s’agit de l’espace de radeau supplémentaire autour du modèle qui dispose déjà d’un radeau. L’augmentation de cette marge va créer un radeau plus solide, mais requiert davantage de matériau et laisse moins de place pour votre impression." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si le milieu du radeau est activé, il s'agit de la zone de radeau supplémentaire autour du modèle qui reçoit également un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Si la partie supérieure du radeau est activée, il s'agit de la zone de radeau supplémentaire autour du modèle qui se voit également attribuer un radeau. En augmentant cette marge, vous créerez un radeau plus solide tout en utilisant plus de matériau et en laissant moins de surface pour votre impression." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignorer la géométrie interne pouvant découler de volumes se chevauchant à l'intérieur d'un maillage et imprimer les volumes comme un seul. Cela peut entraîner la disparition des cavités internes accidentelles." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Inclure la température du plateau" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Inclure les températures du matériau" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusif" + +msgctxt "infill description" +msgid "Infill" +msgstr "Remplissage" + +msgctxt "infill label" +msgid "Infill" +msgstr "Remplissage" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accélération de remplissage" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Imprimer le remplissage avant les parois" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densité du remplissage" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrudeuse de remplissage" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Débit de remplissage" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Saccade de remplissage" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Sens de ligne de remplissage" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distance d'écartement de ligne de remplissage" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicateur de ligne de remplissage" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Largeur de ligne de remplissage" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maille de remplissage" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angle de porte-à-faux de remplissage" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Chevauchement du remplissage" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Pourcentage de chevauchement du remplissage" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Motif de remplissage" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vitesse de remplissage" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Support de remplissage" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimisation du déplacement de remplissage" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distance de remplissage" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Remplissage Décalage X" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Remplissage Décalage Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Couches inférieures initiales" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Vitesse des ventilateurs initiale" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accélération de la couche initiale" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Débit inférieur de la couche initiale" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diamètre de la couche initiale" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Débit de la couche initiale" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hauteur de la couche initiale" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansion horizontale de la couche initiale" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Débit de la paroi intérieure de la couche initiale" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Saccade de la couche initiale" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Largeur de ligne couche initiale" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Débit de la paroi extérieure de la couche initiale" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accélération de l'impression de la couche initiale" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Saccade d’impression de la couche initiale" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Vitesse d’impression de la couche initiale" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Vitesse de la couche initiale" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distance d'écartement de ligne du support de la couche initiale" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accélération de déplacement de la couche initiale" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Saccade de déplacement de la couche initiale" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Vitesse de déplacement de la couche initiale" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Chevauchement Z de la couche initiale" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Température d’impression initiale" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accélération de la paroi intérieure" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrudeuse de paroi interne" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Saccade de paroi intérieure" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Vitesse d'impression de la paroi interne" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Débit de paroi(s) interne(s)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Largeur de ligne de la (des) paroi(s) interne(s)" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Insert appliqué sur le passage de la paroi externe. Si la paroi externe est plus petite que la buse et imprimée après les parois intérieures, utiliser ce décalage pour que le trou dans la buse chevauche les parois internes et non l'extérieur du modèle." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "À l'intérieur seulement" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De l'intérieur vers l'extérieur" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Priorité aux lignes d'interface" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Priorité à l'interface" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Entrelacée" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Nombre de couches des attaches de connexion" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largeur des attaches de connexion" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Distance limite de connexion" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondeur de connexion" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientation de la structure de connexion" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "N'étirer que la couche supérieure" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accélération d'étirage" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flux d'étirage" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Insert d'étirage" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Saccade d'étirage" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Interligne de l'étirage" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Motif d'étirage" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Vitesse d'étirage" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Est l'origine du centre" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Matériau de support" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Ce matériau se casse-t-il proprement lorsqu'il est chauffé (cristallin) ou est-ce le type qui produit de longues chaînes polymères entrelacées (non cristallines) ?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Ce paramètre permet-il d'indiquer si un matériau est généralement utilisé comme matériau de support pendant l'impression." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "N'agitez que les contours des pièces et non les trous des pièces." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Conserver les faces disjointes" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Hauteur de la couche" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X début couche" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y début couche" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Épaisseur de la couche de base du radeau. Cette couche doit être épaisse et adhérer fermement au plateau." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Épaisseur de la couche intermédiaire du radeau." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Épaisseur des couches supérieures du radeau." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Ignorer une connexion entre lignes du support tous les N millimètres, pour rendre la structure de support plus facile à casser." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Gauche" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Relever la tête" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Éclair" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angle de saillie du remplissage éclair" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angle d'élagage du remplissage éclair" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angle de redressement du remplissage éclair" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angle de support du remplissage éclair" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitation de la portée des branches" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Ce paramètre limite la distance parcourue par chaque branche à partir du point qu'elle soutient. Le support peut ainsi être plus solide, mais le nombre de branches augmentera (tout comme la quantité de matériau utilisée et le temps d'impression)" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite de l'avertissement de la température du volume de construction pour la détection." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Anomalie de détection de la limite de température du volume de construction." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite de l'anomalie de la température d'impression pour la détection." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite de l'avertissement de température d'impression pour la détection." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite de l'anomalie de débit pour la détection." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite de l'avertissement de débit pour la détection." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limiter le volume de ce maillage à celui des autres maillages. Cette option permet de faire en sorte que certaines zones d'un maillage s'impriment avec des paramètres différents et avec une extrudeuse entièrement différente." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitée" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Largeur de ligne" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondeur de la machine" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polygone de la tête de la machine et du ventilateur" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Hauteur de la machine" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type de machine" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largeur de la machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Paramètres spécifiques de la machine" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendre le porte-à-faux imprimable" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faire de sorte que les maillages qui se touchent se chevauchent légèrement. Cela permet aux maillages de mieux adhérer les uns aux autres." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Rendre les aires de support plus petites en bas qu'au niveau du porte-à-faux à supporter." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Inclure du support à tout emplacement sous le maillage de support, de sorte à ce qu'il n'y ait pas de porte-à-faux dans le maillage de support." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Rendre la position d'amorçage de l'extrudeuse absolue plutôt que relative à la dernière position connue de la tête." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Faites en sorte que la première et la deuxième couche du modèle se chevauchent dans la direction Z pour compenser la perte de filament dans l'entrefer. Tous les modèles situés au-dessus de la première couche du modèle seront décalés vers le bas de cette valeur." +"On peut noter que la deuxième couche est parfois imprimée en dessous de la couche initiale à cause de ce paramètre. Il s'agit d'un comportement voulu." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendez les mailles plus adaptées à l'impression 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrique)" + +msgctxt "material description" +msgid "Material" +msgstr "Matériau" + +msgctxt "material label" +msgid "Material" +msgstr "Matériau" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marque du matériau" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID matériau" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Type de matériau" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de matériau entre les essuyages" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distance de détour max. sans rétraction" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accélération maximale X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accélération maximale Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accélération maximale Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Angle maximal des branches" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Écart maximum" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Écart maximal de la surface d'extrusion" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Vitesse maximale du ventilateur" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accélération maximale du filament" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Angle maximal du modèle" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Surface maximale du trou en porte-à-faux" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durée maximum du stationnement" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Résolution maximum" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Nombre maximal de rétractions" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angle maximum de la couche extérieure pour l'expansion" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Vitesse maximale E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Vitesse maximale X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Vitesse maximale Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Vitesse maximale Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diamètre maximal supporté par la tour" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Résolution de déplacement maximum" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Accélération maximale pour le moteur du sens X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Accélération maximale pour le moteur du sens Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Accélération maximale pour le moteur du sens Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Accélération maximale pour le moteur du filament." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densité maximale du remplissage considéré comme étant mince. La couche sur le remplissage mince est considérée comme non soutenue et peut donc être traitée comme une couche du pont." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Le diamètre maximal sur les axes X/Y d’une petite zone qui doit être soutenue par une tour de soutien spéciale." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Le volume maximum de matériau qui peut être extrudé avant qu'un autre essuyage de buse ne soit lancé. Si cette valeur est inférieure au volume de matériau nécessaire dans une couche, le paramètre n'a aucun effet dans cette couche, c'est-à-dire qu'il est limité à un essuyage par couche." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Chevauchement des mailles fusionnées" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Corrections" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Position X de la maille" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset appliqué à l'objet dans la direction X." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Position Y de la maille" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset appliqué à l'objet dans la direction Y." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Position Z de la maille" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Décalage appliqué à l'objet dans le sens z. Cela vous permet d'exécuter ce que l'on appelait « Affaissement de l'objet »." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rang de traitement du maillage" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrice de rotation de la maille" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Milieu" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largeur minimale de moule" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Durée minimale température de veille" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Longueur minimale de la paroi du pont" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi uniforme" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalle de distance minimale d'extrusion" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Taille minimale des entités" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Taux d'alimentation minimal" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Hauteur minimale par rapport au modèle" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Zone de remplissage minimum" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Durée minimale d’une couche" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi impaire" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonférence minimale du polygone" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largeur minimum de la couche extérieure pour l'expansion" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Vitesse minimale" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Surface minimale de support" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Surface minimale du bas de support" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Surface minimale de l'interface de support" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Surface minimale du plafond de support" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distance X/Y minimale des supports" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi fine" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimal avant roue libre" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Largeur minimale de la ligne de paroi" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Taille minimale de la surface des polygones d'interface de support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Taille minimale de la surface des polygones de support : les polygones dont la surface est inférieure à cette valeur ne seront pas générés." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Taille minimale de la surface des bas du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Taille minimale de la surface des plafonds du support. Les polygones dont la surface est inférieure à cette valeur ne seront pas imprimés comme support normal." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Épaisseur minimale des entités fines. Les entités de modèle qui sont plus fines que cette valeur ne seront pas imprimées, tandis que les entités plus épaisses que la taille d'entité minimale seront élargies à la largeur minimale de la ligne de paroi." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Largeur minimale à laquelle la base du support conique est réduite. Des largeurs étroites peuvent entraîner des supports instables." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Moule" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angle du moule" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Hauteur du plafond de moule" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordre d'étirage monotone" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordre monotone de la surface supérieure du radeau" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordre monotone de la surface supérieure" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordre monotone dessus / dessous" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Une jupe à plusieurs lignes vous aide à mieux préparer votre extrusion pour les petits modèles. Définissez celle valeur sur 0 pour désactiver la jupe." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicateur de la largeur de la ligne sur la première couche. Augmenter le multiplicateur peut améliorer l'adhésion au plateau." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Facteur de déplacement sans chargement" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Aucune couche dans les trous en Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Des moyens non traditionnels d'imprimer vos modèles." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Aucun" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Aucun" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normale" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normalement, Cura essaye de raccommoder les petits trous dans le maillage et supprime les parties des couches contenant de gros trous. Activer cette option pousse Cura à garder les parties qui ne peuvent être raccommodées. Cette option doit être utilisée en dernier recours quand tout le reste échoue à produire un G-Code correct." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Pas dans la couche extérieure" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Pas sur la surface extérieure" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angle de la buse" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diamètre de la buse" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Zones interdites au bec d'impression" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID buse" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Longueur de la buse" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Montant de l'amorce supplémentaire lors d'un changement de buse" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Vitesse d'amorçage de changement de buse" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Vitesse de rétraction de changement de buse" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distance de rétraction de changement de buse" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Vitesse de rétraction de changement de buse" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Nombre d'extrudeuses" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Nombre d'extrudeuses activées" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Nombre de couches plus lentes" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Nombre de trains d'extrusion activés ; automatiquement défini dans le logiciel" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Nombre de trains d'extrudeuse. Un train d'extrudeuse est la combinaison d'un chargeur, d'un tube bowden et d'une buse." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Le nombre de déplacements de la buse à travers la brosse." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Nombre de fois pour réduire la densité de remplissage de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité du remplissage." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Nombre de fois pour réduire la densité de remplissage du support de moitié en poursuivant sous les surfaces du dessus. Les zones qui sont plus proches des surfaces du dessus possèdent une densité plus élevée, jusqu'à la Densité de remplissage du support." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octaédrique" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Désactivé" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset appliqué à l'objet dans la direction X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset appliqué à l'objet dans la direction Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Décalage appliqué à l'objet dans le sens z. Cela vous permet d'exécuter ce que l'on appelait « Affaissement de l'objet »." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Décalage avec extrudeuse" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Sur le plateau si possible" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sur le modèle si nécessaire" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Un à la fois" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Appliquer un décalage en Z uniquement lors du mouvement au-dessus de pièces imprimées qui ne peuvent être évitées par le mouvement horizontal, via Éviter les pièces imprimées lors du déplacement." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "N'exécute un étirage que sur l'ultime couche du maillage. Ceci économise du temps si les couches inférieures ne nécessitent pas de fini lisse de surface." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angle du bouclier de suintage" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distance du bouclier de suintage" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Portée optimale des branches" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Optimiser l'ordre d'impression des parois" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimiser l'ordre dans lequel des parois sont imprimées de manière à réduire le nombre de retraits et les distances parcourues. La plupart des pièces bénéficieront de cette possibilité, mais certaines peuvent en fait prendre plus de temps à l'impression ; veuillez dès lors comparer les estimations de durée d'impression avec et sans optimisation. La première couche n'est pas optimisée lorsque le type d'adhérence au plateau est défini sur bordure." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diamètre extérieur de la buse" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accélération de la paroi externe" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrudeuse de paroi externe" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Débit de paroi externe" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Insert de paroi externe" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Saccade de paroi externe" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Largeur de ligne de la paroi externe" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distance d'essuyage paroi extérieure" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Les parois extérieures de différentes îles de la même couche sont imprimées séquentiellement. Lorsque ce paramètre est activé, le nombre de changements de débit est limité car les parois sont imprimées une par une ; lorsqu'il est désactivé, le nombre de déplacements entre les îles est réduit car les parois des mêmes îles sont regroupées." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "À l'extérieur seulement" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De l'extérieur vers l'intérieur" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angle de parois en porte-à-faux" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Vitesse de paroi en porte-à-faux" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Les parois en porte-à-faux seront imprimées à ce pourcentage de leur vitesse d'impression normale." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pause après l'irrétraction." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression des parois et de la couche extérieure du pont." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la deuxième couche extérieure du pont." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Pourcentage de la vitesse du ventilateur à utiliser lors de l'impression des zones de couche extérieure situées immédiatement au-dessus du support. Une vitesse de ventilateur élevée facilite le retrait du support." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Vitesse du ventilateur en pourcentage à utiliser pour l'impression de la troisième couche extérieure du pont." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Les polygones en couches tranchées dont la circonférence est inférieure à cette valeur seront filtrés. Des valeurs élevées permettent d'obtenir un maillage de meilleure résolution mais augmentent le temps de découpe. Cette option est principalement destinée aux imprimantes SLA haute résolution et aux modèles 3D de très petite taille avec beaucoup de détails." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Angle des branches souhaité" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Empêchez la transition d'avant en arrière entre une paroi supplémentaire et une paroi en moins. Cette marge étend la gamme des largeurs de ligne qui suivent à [Largeur minimale de la ligne de paroi - marge, 2 * Largeur minimale de la ligne de paroi + marge]. L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit le nombre de démarrages/arrêts d'extrusion et le temps de trajet. Cependant, une grande variation de la largeur de la ligne peut entraîner des problèmes de sous-extrusion ou de sur-extrusion." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accélération de la tour d'amorçage" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base de la tour d'amorçage" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Hauteur de la base de la tour d'amorçage" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Taille de la base de la tour d'amorçage" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pente de la base de la tour d'amorçage" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Débit de la tour d'amorçage" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Saccade de la tour d'amorçage" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Largeur de ligne de la tour d'amorçage" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distance maximale de porte-à-faux de la tour d'amorçage" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimum de la tour d'amorçage" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espacement des lignes de radeau de la tour d'amorçage" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Taille de la tour d'amorçage" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Vitesse de la tour d'amorçage" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Type de tour d'amorçage" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Position X de la tour d'amorçage" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Position Y de la tour d'amorçage" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accélération de l'impression" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Imprimer en saccade" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Rapport sur le processus d'impression" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Séquence d'impression" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Vitesse d’impression" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimer parois fines" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprimez unr bordure à l'extérieur du modèle, à l'intérieur, ou les deux. En fonction du modèle, cette option permet de réduire la quantité de bordure que vous devez retirer par la suite, tout en garantissant une bonne adhérence au plateau." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprimer une tour à côté de l'impression qui sert à amorcer le matériau après chaque changement de buse." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimer les structures de remplissage uniquement là où le haut du modèle doit être supporté, ce qui permet de réduire le temps d'impression et l'utilisation de matériau, mais conduit à une résistance uniforme de l'objet." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes d'étirage dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprimer les modèles comme moule, qui peut être coulé afin d'obtenir un modèle ressemblant à ceux présents sur le plateau." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprimer les parties du modèle qui sont horizontalement plus fines que la taille de la buse." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprimez les lignes de la surface supérieure du radeau dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cette méthode prend un peu plus de temps à imprimer, mais donne à la surface un aspect plus homogène, ce qui est également visible sur la surface inférieure du modèle." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Vitesse d'impression à utiliser lors de l'impression de la deuxième couche extérieure du pont." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Vitesse d'impression à utiliser lors de l'impression de la troisième couche extérieure du pont." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite de la température d'impression" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Avertissement de température d'impression" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime le remplissage avant d'imprimer les parois. Imprimer les parois d'abord permet d'obtenir des parois plus précises, mais les porte-à-faux s'impriment plus mal. Imprimer le remplissage d'abord entraîne des parois plus résistantes, mais le motif de remplissage se verra parfois à travers la surface." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes de la surface supérieure dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes supérieures et inférieures dans un ordre tel qu'elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cela prend un peu plus de temps à imprimer, mais les surfaces planes ont l'air plus cohérentes." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Température d’impression" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Température d’impression couche initiale" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "La jupe est plus facile à retirer lorsque sa ligne la plus intérieure est imprimée en plusieurs couches." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprime une paroi supplémentaire une couche sur deux. Ainsi, le remplissage est pris entre ces parois supplémentaires pour créer des impressions plus solides." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualité" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quart cubique" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radeau" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Lame d'air du radeau" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Marge supplémentaire de la base du radeau" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrudeur de la base du raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Vitesse du ventilateur pour la base du radeau" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espacement des lignes de base du radeau" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Largeur de la ligne de base du radeau" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accélération de l'impression de la base du radeau" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Saccade d’impression de la base du radeau" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Vitesse d’impression de la base du radeau" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Lissage de la base du radeau" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Épaisseur de la base du radeau" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Nombre de parois à la base du radeau" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Marge supplémentaire du radeau" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Vitesse du ventilateur pendant le radeau" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Marge supplémentaire du milieu du radeau" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrudeur du milieu du radeau" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Vitesse du ventilateur pour le milieu du radeau" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Couches du milieu du radeau" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Largeur de la ligne intermédiaire du radeau" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accélération de l'impression du milieu du radeau" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Saccade d’impression du milieu du radeau" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Vitesse d’impression du milieu du radeau" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Lissage du milieu du radeau" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Interligne intermédiaire du radeau" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Épaisseur intermédiaire du radeau" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Nombre de parois du milieu du radeau" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accélération de l'impression du radeau" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Saccade d’impression du radeau" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Vitesse d’impression du radeau" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Lissage de radeau" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Marge supplémentaire de la partie supérieure du radeau" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrudeur du haut du radeau" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Vitesse du ventilateur pour le dessus du radeau" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Épaisseur de la couche supérieure du radeau" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Couches supérieures du radeau" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Largeur de la ligne supérieure du radeau" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accélération de l'impression du dessus du radeau" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Saccade d’impression du dessus du radeau" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Vitesse d’impression du dessus du radeau" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Lissage de la partie supérieure du radeau" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Interligne supérieur du radeau" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Nombre de parois supérieures du radeau" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Nombre de parois du radeau" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aléatoire" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Randomiser le démarrage du remplissage" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Randomisez la ligne de remplissage qui est imprimée en premier. Cela empêche un segment de devenir plus fort, mais cela se fait au prix d'un déplacement supplémentaire." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Produit une agitation aléatoire lors de l'impression de la paroi extérieure, ce qui lui donne une apparence rugueuse et floue." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rectangulaire" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Vitesse régulière du ventilateur" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Vitesse régulière du ventilateur à la hauteur" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Vitesse régulière du ventilateur à la couche" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limite de vitesse régulière/maximale du ventilateur" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusion relative" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Supprimer tous les trous" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Supprimer les premières couches vides" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Supprimer l'intersection des mailles" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Enlever les coins intérieurs de la base du radeau" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Supprimer les coins intérieurs du radeau" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Enlever les coins intérieurs du milieu du radeau" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Enlever les coins intérieurs de la partie supérieure du radeau" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Supprime les zones sur lesquelles plusieurs mailles se chevauchent. Cette option peut être utilisée si des objets à matériau double fusionné se chevauchent." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Supprimer les couches vides sous la première couche imprimée si elles sont présentes. Le fait de désactiver ce paramètre peut entraîner l'apparition de premières couches vides si le paramètre Tolérance à la découpe est défini sur Exclusif ou Milieu." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la base du radeau, ce qui donnera au radeau une forme convexe." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la partie centrale du radeau, ce qui donnera une forme convexe au radeau." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Enlevez les coins intérieurs de la partie supérieure du radeau, ce qui donnera une forme convexe au radeau." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Supprimez les coins intérieurs du radeau afin de le rendre convexe." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Supprime les trous dans chacune des couches et conserve uniquement la forme extérieure. Tous les détails internes invisibles seront ignorés. Il en va de même pour les trous qui pourraient être visibles depuis le dessus ou le dessous de la pièce." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Remplace la partie la plus externe du motif du dessus/dessous par un certain nombre de lignes concentriques. Le fait d'utiliser une ou deux lignes améliore les plafonds qui commencent sur du matériau de remplissage." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Rapport sur les événements qui dépassent les seuils fixés" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Préférence d'emplacement" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Rétracter avant la paroi externe" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Rétracter au changement de couche" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Rétracte le filament quand la buse se déplace vers une zone non imprimée." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Rétracter le filament quand le bec se déplace vers la prochaine couche." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distance de rétraction" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Volume supplémentaire à l'amorçage" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Déplacement minimal de rétraction" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Vitesse de rétraction d'amorçage" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Vitesse de rétraction" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Vitesse de rétraction" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Droite" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Mise à l'échelle de la vitesse du ventilateur à 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Mettez à l'échelle la vitesse du ventilateur de 0 à 1 au lieu de 0 à 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Mise à l'échelle du facteur de compensation de contraction" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scène comporte un maillage de support" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Préférence de jointure d'angle" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Définir la séquence d'impression manuellement" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Définit la hauteur du bouclier. Choisissez d'imprimer le bouclier à la pleine hauteur du modèle ou à une hauteur limitée." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Paramètres utilisés pour imprimer avec plusieurs extrudeuses." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Paramètres qui sont utilisés uniquement si CuraEngine n'est pas invoqué depuis l'interface Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Rétraction initiale de la buse partagée" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angle le plus aigu" + +msgctxt "shell description" +msgid "Shell" +msgstr "Coque" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Plus court" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Afficher les variantes de la machine" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Couches de soutien des bords de la couche extérieure" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Épaisseur de soutien des bords de la couche" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Chevauchement de la couche extérieure" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Pourcentage de chevauchement de la couche extérieure" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Les zones de couche extérieure plus étroites que cette valeur ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ignorer une ligne de connexion sur N pour rendre la structure de support plus facile à casser." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Ignorer certaines connexions de ligne du support pour rendre la structure de support plus facile à casser. Ce paramètre s'applique au motif de remplissage du support en zigzag." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Jupe" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distance de la jupe" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Hauteur de la jupe" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Nombre de lignes de la jupe" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accélération de la jupe/bordure" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrudeur de la jupe/bordure" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Débit de la jupe/bordure" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Saccade de la jupe/bordure" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Largeur des lignes de jupe/bordure" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Longueur minimale de la jupe/bordure" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Vitesse d'impression de la jupe/bordure" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolérance à la découpe" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Vitesse de la couche initiale de petite structure" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Longueur max de petite structure" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Vitesse de petite structure" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Taille maximale des petits trous" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Température d'impression en cas de petite couche" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Petit Haut/Bas sur la surface" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Petite largeur du dessus/dessous" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Les petites structures sur la première couche seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Les petites structures seront imprimées à ce pourcentage de la vitesse d'impression normale. Une impression plus lente peut aider à l'adhésion et à la précision." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Les petites zones haut/bas sont remplies avec des parois au lieu du motif haut/bas par défaut. Cela permet d'éviter les mouvements saccadés. Par défaut, l'option est désactivée pour la couche supérieure (exposée à l'air) (voir « Petit Haut/Bas sur la surface »)." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Bordure intelligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Masquage intelligent" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Lisser les contours spiralisés" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Lisser les contours spiralisés pour réduire la visibilité de la jointure en Z (la jointure en Z doit être à peine visible sur l'impression mais sera toujours visible dans la vue en couches). Veuillez remarquer que le lissage aura tendance à estomper les détails très fins de la surface." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Du matériau peut suinter pendant un déplacement, ce qui peut être compensé ici." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Du matériau peut suinter pendant un déplacement d'essuyage, ce qui peut être compensé ici." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modes spéciaux" + +msgctxt "speed description" +msgid "Speed" +msgstr "Vitesse" + +msgctxt "speed label" +msgid "Speed" +msgstr "Vitesse" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Vitesse de déplacement de l'axe Z pendant le décalage." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiraliser le contour extérieur" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Cette fonction ajuste le déplacement en Z sur le bord extérieur. Cela va créer une augmentation stable de Z sur toute l’impression. Cette fonction transforme un modèle solide en une impression à paroi unique avec une base solide. Cette fonctionnalité doit être activée seulement lorsque chaque couche contient uniquement une seule partie." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Température de veille" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-Code de démarrage" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Point de départ de chaque voie dans une couche. Quand les voies dans les couches consécutives démarrent au même endroit, une jointure verticale peut apparaître sur l'impression. En alignant les points de départ près d'un emplacement défini par l'utilisateur, la jointure sera plus facile à faire disparaître. Lorsqu'elles sont disposées de manière aléatoire, les imprécisions de départ des voies seront moins visibles. En choisissant la voie la plus courte, l'impression se fera plus rapidement." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Pas par millimètre (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Pas par millimètre (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Pas par millimètre (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Pas par millimètre (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Supports" + +msgctxt "support label" +msgid "Support" +msgstr "Supports" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accélération du support" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distance inférieure des supports" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Nombre de lignes de parois inférieures du support" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Nombre de lignes de la bordure du support" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largeur de la bordure du support" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Comptage des lignes de morceaux du support" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Taille de morceaux du support" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densité du support" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorité de distance des supports" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrudeuse de support" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accélération des bas de support" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densité du bas de support" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrudeuse des bas de support" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Débit du bas de support" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansion horizontale du bas de support" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Saccade des bas de support" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direction de la ligne de bas de support" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distance d'écartement de ligne de bas de support" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Largeur de ligne de bas de support" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Motif du bas de support" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Vitesse d'impression des bas de support" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Épaisseur du bas de support" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Débit du support" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansion horizontale des supports" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accélération de remplissage du support" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrudeuse de remplissage du support" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Saccade de remplissage du support" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Épaisseur de la couche de remplissage de support" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direction de ligne de remplissage du support" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vitesse d'impression du remplissage de support" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accélération de l'interface du support" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densité de l'interface de support" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrudeuse de l'interface du support" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Débit de l'interface de support" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansion horizontale de l'interface de support" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Saccade de l'interface de support" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direction de ligne d'interface du support" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Largeur de ligne d'interface de support" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Motif de l'interface de support" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Priorité de l'interface de support" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vitesse d'impression de l'interface de support" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Épaisseur de l'interface de support" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Nombre de lignes de parois de l'interface du support" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Saccade des supports" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distance de jointement des supports" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distance d'écartement de ligne du support" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Largeur de ligne de support" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Maillage de support" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angle de porte-à-faux de support" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Motif du support" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Positionnement des supports" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accélération des plafonds de support" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densité du plafond de support" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrudeuse des plafonds de support" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Débit du plafond de support" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansion horizontale du plafond de support" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Saccade des plafonds de support" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direction de la ligne de plafond de support" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distance d'écartement de ligne du plafond de support" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Largeur de ligne de plafond de support" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Motif du plafond de support" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Vitesse d'impression des plafonds de support" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Épaisseur du plafond de support" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Nombre de lignes de parois du toit du support" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Vitesse d'impression des supports" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Hauteur de la marche de support" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largeur maximale de la marche de support" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Angle de pente minimum de la marche de support" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Structure du support" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distance supérieure des supports" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Nombre de lignes de la paroi du support" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distance X/Y des supports" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distance Z des supports" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Priorité aux lignes de support" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Priorité au support" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Vitesse du ventilateur de couche extérieure supportée" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Surface" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Énergie de la surface" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Mode de surface" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendance à l'adhérence de la surface." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Énergie de la surface." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Ce paramètre inverse l'ordre d'impression de la ligne de bordure la plus intérieure et de la deuxième ligne de bordure la plus intérieure. La bordure est ainsi plus facile à retirer." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Passe aux volumes d'intersection de maille qui appartiennent à chaque couche, de manière à ce que les mailles qui se chevauchent soient entrelacées. Si vous désactivez ce paramètre, l'une des mailles obtiendra tout le volume dans le chevauchement tandis qu'il est retiré des autres mailles." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distance horizontale cible entre deux couches adjacentes. La réduction de ce paramètre entraîne l'utilisation de couches plus fines pour rapprocher les bords des couches." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordonnée X de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Coordonnée X de la position près de laquelle démarrer l'impression de chaque partie dans une couche." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées X de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Coordonnée Y de la position près de laquelle trouver la partie pour démarrer l'impression de chaque couche." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Coordonnée Y de la position près de laquelle démarrer l'impression de chaque partie dans une couche." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Y de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Les coordonnées Z de la position à laquelle la buse s'amorce au début de l'impression." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "L'accélération durant l'impression de la couche initiale." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "L'accélération pour la couche initiale." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "L'accélération pour les déplacements dans la couche initiale." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "L'accélération pour les déplacements dans la couche initiale." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "L'accélération selon laquelle toutes les parois intérieures sont imprimées." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L'accélération selon laquelle le remplissage est imprimé." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L'accélération selon laquelle l'étirage est effectué." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L'accélération selon laquelle l'impression s'effectue." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "L'accélération selon laquelle la couche de base du radeau est imprimée." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "L'accélération selon laquelle les bas de support sont imprimés. Les imprimer avec une accélération plus faible renforce l'adhésion du support au-dessus du modèle." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "L'accélération selon laquelle le remplissage de support est imprimé." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "L'accélération selon laquelle la couche du milieu du radeau est imprimée." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "L'accélération selon laquelle les parois externes sont imprimées." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "L'accélération selon laquelle la tour d'amorçage est imprimée." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "L'accélération selon laquelle le radeau est imprimé." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "L'accélération selon laquelle les plafonds et bas de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "L'accélération selon laquelle les plafonds de support sont imprimés. Les imprimer avec une accélération plus faible améliore la qualité des porte-à-faux." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "L'accélération selon laquelle la jupe et la bordure sont imprimées. Normalement, cette accélération est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une accélération différente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "L'accélération selon laquelle la structure de support est imprimée." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus du radeau sont imprimées." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accélération avec laquelle les parois internes de la surface supérieure sont imprimées." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accélération avec laquelle la paroi externe de la surface supérieure est imprimée." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "L'accélération selon laquelle les parois sont imprimées." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "La vitesse à laquelle les couches extérieures de surface supérieure sont imprimées." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "L'accélération selon laquelle les couches du dessus/dessous sont imprimées." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "L'accélération selon laquelle les déplacements s'effectuent." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "La quantité de matériau, relative à une ligne de couche extérieure normale, à extruder pendant l'étirage. Le fait de garder la buse pleine aide à remplir certaines des crevasses de la surface supérieure ; mais si la quantité est trop importante, cela entraînera une surextrusion et l'apparition de coupures sur le côté de la surface." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois exprimé en pourcentage de la largeur de ligne de remplissage. Un chevauchement faible permet aux parois de se connecter fermement au remplissage." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois. Un léger chevauchement permet de lier fermement les parois au remplissage." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Degré de rétraction lors de la commutation d'extrudeuses. Une valeur de 0 signifie qu'il n'y aura aucune rétraction. En général, cette valeur doit être équivalente à la longueur de la zone de chauffe." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "L'angle entre le plan horizontal et la partie conique juste au-dessus de la pointe de la buse." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "L'angle du toit d'une tour. Une valeur plus élevée entraîne des toits de tour pointus, tandis qu'une valeur plus basse résulte en des toits plats." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "L'angle de porte-à-faux des parois externes créées pour le moule. La valeur 0° rendra la coque externe du moule verticale, alors que 90° fera que l'extérieur du modèle suive les contours du modèle." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "Angle du diamètre des branches au fur et à mesure qu'elles s'épaississent lorsqu'elles sont proches du fond. Avec un angle de 0°, les branches auront une épaisseur uniforme sur toute leur longueur. Donner un peu d'angle permet d'augmenter la stabilité du support arborescent." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Angle d'inclinaison des supports coniques. Un angle de 0 degré est vertical tandis qu'un angle de 90 degrés est horizontal. Les petits angles rendent le support plus solide mais utilisent plus de matière. Les angles négatifs rendent la base du support plus large que le sommet." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Densité moyenne de points ajoutée à chaque polygone sur une couche. Notez que les points originaux du polygone ne seront plus pris en compte, une faible densité résultant alors en une diminution de la résolution." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Distance moyenne entre les points ajoutés aléatoirement sur chaque segment de ligne. Il faut noter que les points originaux du polygone ne sont plus pris en compte donc un fort lissage conduira à une diminution de la résolution. Cette valeur doit être supérieure à la moitié de l'épaisseur de la couche floue." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marque du matériau utilisé." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "L'accélération par défaut du mouvement de la tête d'impression." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La température par défaut utilisée pour l'impression. Il doit s'agir de la température de « base » d'un matériau. Toutes les autres températures d'impression doivent utiliser des décalages basés sur cette valeur" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Température par défaut utilisée pour le plateau chauffant. Il doit s'agir de la température de « base » d'un plateau. Toutes les autres températures d'impression sont définies en fonction de cette valeur" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "La densité des bas de la structure de support. Une valeur plus élevée résulte en une meilleure adhésion du support au-dessus du modèle." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "La densité des plafonds de la structure de support. Une valeur plus élevée résulte en de meilleurs porte-à-faux, mais les supports sont plus difficiles à enlever." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la deuxième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Densité de la troisième couche extérieure du pont. Des valeurs inférieures à 100 augmenteront les écarts entre les lignes de la couche extérieure." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondeur (sens Y) de la zone imprimable." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Le diamètre d’une tour spéciale." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Diamètre des branches les plus minces du support arborescent. Plus les branches sont épaisses, plus elles sont robustes ; les branches proches de la base seront plus épaisses que cette valeur." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Il s'agit du diamètre des extrémités des branches du support arborescent." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Diamètre de la roue qui entraîne le matériau dans le chargeur." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Le diamètre des branches les plus larges du support arborescent. Un tronc plus épais est plus robuste ; un tronc plus fin prend moins de place sur le plateau de fabrication." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Différence de hauteur de la couche suivante par rapport à la précédente." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "La distance entre les lignes d'étirage." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "La distance entre la buse et les pièces déjà imprimées lors du contournement pendant les déplacements." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes du radeau pour la couche de base de celui-ci. Un interligne large facilite le retrait du radeau du plateau." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "La distance entre les lignes du radeau pour la couche intermédiaire de celui-ci. L'espace intermédiaire doit être assez large et suffisamment dense pour supporter les couches supérieures du radeau." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "La distance entre les lignes du radeau pour les couches supérieures de celui-ci. Cet espace doit être égal à la largeur de ligne afin de créer une surface solide." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distance entre les lignes de radeau pour la couche de radeau unique de la tour d'amorçage. Un espacement large permet un retrait facile du radeau du plateau" + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Limite de distance entre les modèles 3D à partir de laquelle générer une structure de connexion, mesurée en cellules. Un nombre de cellules trop bas entraînera une mauvaise adhérence." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La distance entre le modèle et la ligne de bordure la plus à l'extérieur. Une bordure plus large renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Distance depuis l'extérieur d'un modèle 3D à partir de laquelle les structures de connexion ne seront pas générées, mesurée en cellules." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Distance depuis la pointe du bec d'impression sur laquelle la chaleur du bec d'impression est transférée au filament." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures inférieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche inférieure. Des valeurs faibles économisent la quantité de matériau utilisé." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois des couches voisines. Des valeurs faibles économisent la quantité de matériau utilisé." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "La distance à laquelle les couches extérieures supérieures s'étendent à l'intérieur du remplissage. Des valeurs élevées lient mieux la couche extérieure au motif de remplissage et font mieux adhérer à cette couche les parois de la couche supérieure. Des valeurs faibles économisent la quantité de matériau utilisé." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distance de déplacement de la tête d'avant en arrière à travers la brosse." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Les extrémités des lignes de remplissage sont raccourcies pour économiser du matériau. Ce paramètre est l'angle de saillie des extrémités de ces lignes." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "La vitesse supplémentaire à laquelle la buse refroidit pendant l'extrusion. La même valeur est utilisée pour indiquer la perte de vitesse de chauffage pendant l'extrusion." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la première couche de remplissage du support. Cela est utilisé en multi-extrusion." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeur à utiliser pour l'impression de la première couche du radeau. Cela est utilisé en multi-extrusion." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des bas du support. Cela est utilisé en multi-extrusion." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression du remplissage du support. Cela est utilisé en multi-extrusion." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeur à utiliser pour imprimer la couche intermédiaire du radeau. Cela est utilisé en multi-extrusion." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds et bas du support. Cela est utilisé en multi-extrusion." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression des plafonds du support. Cela est utilisé en multi-extrusion." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Le train d'extrudeur à utiliser pour l'impression de la jupe ou de la bordure. Cela est utilisé en multi-extrusion." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression de la jupe/la bordure/du radeau. Cela est utilisé en multi-extrusion." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse à utiliser pour l'impression du support. Cela est utilisé en multi-extrusion." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Le train d'extrudeur à utiliser pour imprimer la ou les couches du haut du radeau. Cela est utilisé en multi-extrusion." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression du remplissage. Cela est utilisé en multi-extrusion." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois internes. Cela est utilisé en multi-extrusion." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois externes. Cela est utilisé en multi-extrusion." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure du haut et du bas. Cela est utilisé en multi-extrusion." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression de la couche extérieure supérieure. Cela est utilisé en multi-extrusion." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Le train d'extrudeuse utilisé pour l'impression des parois. Cela est utilisé en multi-extrusion." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "La vitesse du ventilateur pour la couche de base du radeau." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "La vitesse du ventilateur pour la couche du milieu du radeau." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "La vitesse du ventilateur pour le radeau." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "La vitesse du ventilateur pour les couches du dessus du radeau." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le remplissage de l'impression." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Emplacement du fichier d'une image dont les valeurs de luminosité déterminent la densité minimale à l'emplacement correspondant dans le support." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Les premières couches sont imprimées plus lentement que le reste du modèle afin d’obtenir une meilleure adhérence au plateau et d’améliorer le taux de réussite global des impressions. La vitesse augmente graduellement à chacune de ces couches." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "L’espace entre la dernière couche du radeau et la première couche du modèle. Seule la première couche est surélevée de cette quantité d’espace pour réduire l’adhérence entre la couche du radeau et le modèle. Cela facilite le décollage du radeau." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "La hauteur (sens Z) de la zone imprimable." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "La hauteur au-dessus des parties horizontales dans votre modèle pour laquelle imprimer le moule." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse régulière. Pour les couches situées en-dessous, la vitesse des ventilateurs augmente progressivement de la vitesse des ventilateurs initiale jusqu'à la vitesse régulière." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "La différence de hauteur entre la pointe de la buse et le système de portique (axes X et Y)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La différence de hauteur entre la pointe de la buse et la partie la plus basse de la tête d'impression." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z après changement d'extrudeuse." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "La différence de hauteur lors de la réalisation d'un décalage en Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "La hauteur de chaque couche en mm. Des valeurs plus élevées créent des impressions plus rapides dans une résolution moindre, tandis que des valeurs plus basses entraînent des impressions plus lentes dans une résolution plus élevée." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "La hauteur de remplissage d'une densité donnée avant de passer à la moitié de la densité." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "La hauteur de remplissage de support d'une densité donnée avant de passer à la moitié de la densité." + +msgctxt "interlocking_beam_layer_count description" +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 "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." + +msgctxt "interlocking_orientation description" +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 "La hauteur des attaches de la structure de connexion, mesurée en nombre de couches. Des couches moins nombreuses seront plus solides, mais davantage sujettes à des imperfections." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "La hauteur de la couche initiale en mm. Une couche initiale plus épaisse adhère plus facilement au plateau." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Augmenter cette valeur rendra la tour d'amorçage plus robuste car la base sera plus large. Si ce paramètre est trop bas, la tour d'amorçage n'aura pas une base solide." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "La hauteur de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables. Définir la valeur sur zéro pour désactiver le comportement en forme d'escalier." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "La distance horizontale entre la première ligne de bordure et le contour de la première couche de l'impression. Un petit trou peut faciliter l'enlèvement de la bordure tout en offrant des avantages thermiques." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "La distance horizontale entre la jupe et la première couche de l’impression." +"Il s’agit de la distance minimale séparant la jupe de l’objet. Si la jupe a d’autres lignes, celles-ci s’étendront vers l’extérieur." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Les lignes de remplissage sont redressées pour gagner du temps d'impression. Il s'agit de l'angle maximal de saillie autorisé sur la longueur de la ligne de remplissage." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Le motif de remplissage est décalé de cette distance sur l'axe X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Le motif de remplissage est décalé de cette distance sur l'axe Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Le diamètre intérieur de la buse. Modifiez ce paramètre si vous utilisez une taille de buse non standard." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "La saccade selon laquelle la couche de base du radeau est imprimée." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "La saccade selon laquelle la couche du milieu du radeau est imprimée." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "La saccade selon laquelle le radeau est imprimé." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "La saccade selon laquelle les couches du dessus du radeau sont imprimées." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure inférieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure inférieure sur les surfaces obliques du modèle." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure/inférieure sur les surfaces obliques du modèle." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "La plus grande largeur des zones de la couche extérieure supérieure à faire disparaître. Toute zone de la couche extérieure plus étroite que cette valeur disparaîtra. Ceci peut aider à limiter le temps et la quantité de matière utilisés pour imprimer la couche extérieure supérieure sur les surfaces obliques du modèle." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "La couche à laquelle les ventilateurs tournent à la vitesse régulière. Si la vitesse régulière du ventilateur à la hauteur est définie, cette valeur est calculée et arrondie à un nombre entier." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "La durée de couche qui définit la limite entre la vitesse régulière et la vitesse maximale du ventilateur. Les couches qui s'impriment moins vite que cette durée utilisent la vitesse régulière du ventilateur. Pour les couches plus rapides, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "La longueur de matériau rétracté pendant une rétraction." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Le facteur de magnitude utilisé pour la pente de la base de la tour d'amorçage. Si vous augmentez cette valeur, la base deviendra plus mince. Si vous la diminuez, la base deviendra plus épaisse." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Matériau du plateau installé sur l'imprimante." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Hauteur maximale autorisée par rapport à la couche de base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "L'angle maximal qu'une partie du bouclier de suintage peut adopter. Zéro degré est vertical et 90 degrés est horizontal. Un angle plus petit entraîne moins d'échecs au niveau des boucliers de suintage, mais utilise plus de matériaux." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "L'angle maximal des porte-à-faux après qu'ils aient été rendus imprimables. À une valeur de 0°, tous les porte-à-faux sont remplacés par une pièce de modèle rattachée au plateau, tandis que 90° ne changera en rien le modèle." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Il s'agit de l'angle maximal des branches imprimées autour du modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, vous obtiendrez une plus grande portée." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Zone maximale d'un trou dans la base du modèle avant d'être retirée par l'outil Rendre le porte-à-faux imprimable. Les trous plus petits seront conservés. Une valeur de 0 mm² remplira tous les trous dans la base des modèles." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "L'écart maximum autorisé lors de la réduction de la résolution pour le paramètre Résolution maximum. Si vous augmentez cette valeur, l'impression sera moins précise, mais le G-Code sera plus petit. L'écart maximum est une limite pour la résolution maximum. Donc si les deux entrent en conflit, l'Écart maximum restera valable." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "La distance maximale entre les supports dans les directions X/Y. Lorsque des modèle séparés sont plus rapprochés que cette valeur, ils fusionnent." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "La distance maximale en mm pour déplacer le filament afin de compenser les variations du débit." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "L'écart maximal de la surface d'extrusion autorisé lors de la suppression des points intermédiaires d'une ligne droite. Un point intermédiaire peut servir de point de changement de largeur dans une longue ligne droite. Par conséquent, s'il est supprimé, la ligne aura une largeur uniforme et, par conséquent, cela engendrera la perte (ou le gain) d'un peu de surface d'extrusion. Si vous augmentez cette valeur, vous pourrez constater une légère sous-extrusion (ou sur-extrusion) entre les parois parallèles droites car davantage de points intermédiaires de changement de largeur pourront être supprimés. Votre impression sera moins précise, mais le G-code sera plus petit." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Le changement instantané maximal de vitesse durant l'impression de la couche initiale." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Le changement instantané maximal de vitesse de la tête d'impression." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Le changement instantané maximal de vitesse lors de l'étirage." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures sont imprimées." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage est imprimé." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les bas de support sont imprimés." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel le remplissage de support est imprimé." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois externes sont imprimées." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la tour d'amorçage est imprimée." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds et bas sont imprimés." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les plafonds de support sont imprimés." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la jupe et la bordure sont imprimées." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la structure de support est imprimée." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois intérieures de la surface supérieure sont imprimées." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel la paroi extérieure de la surface supérieure est imprimée." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les parois sont imprimées." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les couches extérieures de surface supérieure sont imprimées." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Le changement instantané maximal de vitesse selon lequel les couches du dessus/dessous sont imprimées." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Le changement instantané maximal de vitesse selon lequel les déplacements s'effectuent." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Longueur maximale des branches pouvant être imprimées dans le vide." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "La vitesse maximale pour le moteur du sens X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "La vitesse maximale pour le moteur du sens Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "La vitesse maximale pour le moteur du sens Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "La vitesse maximale du filament." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "La largeur maximale de la marche du support en forme d'escalier reposant sur le modèle. Une valeur faible rend le support plus difficile à enlever, mais des valeurs trop élevées peuvent entraîner des supports instables." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "La distance minimale entre l'extérieur du moule et l'extérieur du modèle." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "La vitesse minimale de mouvement de la tête d'impression." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La température minimale pendant le chauffage jusqu'à la température d'impression à laquelle l'impression peut démarrer." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "La durée minimale pendant laquelle une extrudeuse doit être inactive avant que la buse ait refroidi. Ce n'est que si une extrudeuse n'est pas utilisée pendant une durée supérieure à celle-ci qu'elle pourra refroidir jusqu'à la température de veille." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Angle minimal des porte-à-faux internes pour lesquels le remplissage est ajouté. À une valeur de 0°, les objets sont totalement remplis, 90° ne fournira aucun remplissage." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "L'angle minimal des porte-à-faux pour lesquels un support est ajouté. À une valeur de 0 °, tous les porte-à-faux sont soutenus, tandis qu'à 90 °, aucun support ne sera créé." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "La distance minimale de déplacement nécessaire pour qu’une rétraction ait lieu. Cela permet d’éviter qu’un grand nombre de rétractions ne se produisent sur une petite portion." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "La longueur minimale de la jupe ou bordure. Si cette longueur n’est pas atteinte par toutes les lignes de jupe ou de bordure ensemble, d’autres lignes de jupe ou de bordure seront ajoutées afin d’atteindre la longueur minimale. Veuillez noter que si le nombre de lignes est défini sur 0, cette option est ignorée." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Largeur de ligne minimale pour les parois de polyligne de remplissage de l'espace de ligne médiane. Ce paramètre détermine à partir de quelle épaisseur de modèle 3D nous passons de l'impression de deux lignes de parois à l'impression de deux parois extérieures et d'une seule paroi centrale au milieu. Une largeur de ligne de paroi impaire minimale plus élevée conduit à une largeur de ligne de paroi paire plus élevée. La largeur maximale de la ligne de paroi impaire représente 2 fois la largeur minimale de la ligne de paroi paire." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Largeur de ligne minimale pour les murs polygonaux normaux. Ce paramètre détermine à quelle épaisseur de modèle nous passons de l'impression d'une seule ligne de paroi fine à l'impression de deux lignes de paroi. Une largeur minimale de ligne de paroi paire plus élevée entraîne une largeur maximale de ligne de paroi impaire plus élevée. La largeur maximale de la ligne de paroi paire est calculée comme suit : largeur de la ligne de paroi extérieure + 0,5 * largeur minimale de la ligne de paroi impaire." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "La vitesse minimale d'impression, malgré le ralentissement dû à la durée minimale d'une couche. Si l'imprimante devait trop ralentir, la pression au niveau de la buse serait trop faible, ce qui résulterait en une mauvaise qualité d'impression." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Taille minimum d'un segment de ligne après découpage. Si vous augmentez cette valeur, la maille aura une résolution plus faible. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code et augmentera la vitesse de découpe en enlevant des détails de la maille que l'imprimante ne peut pas traiter de toute manière." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Taille minimale d'un segment de ligne de déplacement après la découpe. Si vous augmentez cette valeur, les mouvements de déplacement auront des coins moins lisses. Cela peut permettre à l'imprimante de suivre la vitesse à laquelle elle doit traiter le G-Code, mais cela peut réduire la précision de l'évitement du modèle." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pente minimum de la zone pour un effet de marche de support. Des valeurs basses devraient faciliter l'enlèvement du support sur les pentes peu superficielles ; des valeurs très basses peuvent donner des résultats vraiment contre-intuitifs sur d'autres pièces du modèle." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Temps minimum passé sur une couche. Cela force l'imprimante à ralentir afin de passer au minimum la durée définie ici sur une couche. Cela permet au matériau imprimé de refroidir correctement avant l'impression de la couche suivante. Les couches peuvent néanmoins prendre moins de temps que le temps de couche minimum si « Lift Head  » (Relever Tête) est désactivé et si la vitesse minimum serait autrement non respectée." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Le volume minimum pour chaque touche de la tour d'amorçage afin de purger suffisamment de matériau." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Le diamètre maximal d'une branche rattachée au modèle peut augmenter lorsqu'elle fusionne avec des branches pouvant atteindre le plateau. Le fait d'augmenter ce diamètre réduit le temps d'impression, mais agrandit la surface du support sur laquelle repose le modèle." + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Le nom du modèle de votre imprimante 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID buse pour un train d'extrudeuse, comme « AA 0.4 » et « BB 0.8 »." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "La buse contourne les pièces déjà imprimées lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "La buse contourne les supports déjà imprimés lorsqu'elle se déplace. Cette option est disponible uniquement lorsque les détours sont activés." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches inférieures. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans la couche de base du radeau." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches intermédiaires du radeau." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Le nombre de contours à imprimer autour du motif linéaire dans les couches supérieures du radeau." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Nombre de contours à imprimer autour du motif linéaire du radeau." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Le nombre de couches de remplissage qui soutient les bords de la couche." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches inférieures initiales à partir du haut du plateau. Lorsqu'elle est calculée par l'épaisseur du dessous, cette valeur est arrondie à un nombre entier." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Nombre de couches entre la base et la surface du radeau. Elles comprennent l'épaisseur principale du radeau. En l'augmentant, on obtient un radeau plus épais et plus solide." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Le nombre de lignes utilisées pour une bordure. Un plus grand nombre de lignes de bordure renforce l'adhérence au plateau mais réduit également la zone d'impression réelle." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Nombre de lignes utilisées pour la bordure du support. L'augmentation du nombre de lignes de bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Nombre de couches de surface au-dessus de la deuxième couche du radeau. Il s’agit des couches entièrement remplies sur lesquelles le modèle est posé. En général, deux couches offrent une surface plus lisse qu'une seule." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Le nombre de couches supérieures. Lorsqu'elle est calculée par l'épaisseur du dessus, cette valeur est arrondie à un nombre entier." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Nombre de couches extérieures supérieures. En général, une seule couche supérieure est suffisante pour générer des surfaces supérieures de qualité." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois qui entourent le remplissage de support. L'ajout d'une paroi peut rendre l'impression de support plus fiable et mieux supporter les porte-à-faux, mais augmente le temps d'impression et la quantité de matériau nécessaire." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Le nombre de parois avec lesquelles entourer la surface inférieure de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois avec lesquelles entourer le toit de l'interface du support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Nombre de parois avec lesquelles entourer la surface de support. L'ajout d'une paroi rend l'impression du support plus fiable et permet de mieux soutenir les saillies, mais augmente le temps d'impression et la quantité de matériau utilisé." + +msgctxt "wall_distribution_count description" +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 "Le nombre de parois, comptées à partir du centre, sur lesquelles la variation doit être répartie. Les valeurs inférieures signifient que les parois extérieures ne changent pas en termes de largeur." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Le nombre de parois. Lorsqu'elle est calculée par l'épaisseur de la paroi, cette valeur est arrondie à un nombre entier." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Le diamètre extérieur de la pointe de la buse." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Le motif du matériau de remplissage de l'impression. La ligne et le remplissage en zigzag changent de sens à chaque alternance de couche, réduisant ainsi les coûts matériels. Les motifs en grille, en triangle, tri-hexagonaux, cubiques, octaédriques, quart cubiques, entrecroisés et concentriques sont entièrement imprimés sur chaque couche. Les remplissages gyroïdes, cubiques, quart cubiques et octaédriques changent à chaque couche afin d'offrir une répartition plus égale de la solidité dans chaque direction. Le remplissage éclair tente de minimiser le remplissage, en ne supportant que le plafond de l'objet." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Le motif des supports de l'impression. Les différentes options disponibles résultent en des supports difficiles ou faciles à retirer." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Le motif des couches supérieures." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Le motif des couches du dessus/dessous." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Motif au bas de l'impression sur la première couche." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Le motif à utiliser pour étirer les surfaces supérieures." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Le motif d'impression pour les bas de support." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Le motif selon lequel l'interface du support avec le modèle est imprimée." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Le motif d'impression pour les plafonds de support." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La position près de laquelle démarre l'impression de chaque partie dans une couche." + +msgctxt "support_tree_angle_slow description" +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 "Ce paramètre détermine l'angle souhaité pour les branches, lorsqu'elles n'ont pas à contourner le modèle. Si vous utilisez un angle faible, les branches seront plus verticales et plus stables. Si vous utilisez un angle élevé, les branches fusionneront plus rapidement." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Il s'agit de l'emplacement souhaité pour les structures de support. Si les structures ne peuvent pas être placées à l'endroit souhaité, elles seront placées ailleurs, quitte à ce que ce soit sur le modèle." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Le changement instantané maximal de vitesse pour la couche initiale." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forme du plateau sans prendre les zones non imprimables en compte." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forme de la tête d'impression. Ce sont des coordonnées par rapport à la position de la tête d'impression, qui est généralement la position de son premier extrudeur. Les dimensions à gauche et devant la tête d'impression doivent être des coordonnées négatives." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "La taille de poches aux croisements à quatre branches dans le motif entrecroisé 3D, à des hauteurs où le motif se touche lui-même." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Le plus petit volume qu'un mouvement d'extrusion doit entraîner avant d'autoriser la roue libre. Pour les petits mouvements d'extrusion, une pression moindre s'est formée dans le tube bowden, de sorte que le volume déposable en roue libre est alors réduit linéairement. Cette valeur doit toujours être supérieure au volume en roue libre." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La vitesse (°C/s) à laquelle la buse refroidit, sur une moyenne de la plage de températures d'impression normales et la température en veille." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La vitesse (°C/s) à laquelle la buse chauffe, sur une moyenne de la plage de températures d'impression normales et la température en veille." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "La vitesse à laquelle toutes les parois internes seront imprimées. L’impression de la paroi interne à une vitesse supérieure réduira le temps d'impression global. Il est bon de définir cette vitesse entre celle de l'impression de la paroi externe et du remplissage." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Vitesse à laquelle les régions de la couche extérieure du pont sont imprimées." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "La vitesse à laquelle le remplissage est imprimé." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "La vitesse à laquelle l'impression s'effectue." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche de base du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Vitesse à laquelle les parois de pont sont imprimées." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Vitesse à laquelle les ventilateurs tournent au début de l'impression. Pour les couches suivantes, la vitesse des ventilateurs augmente progressivement jusqu'à la couche qui correspond à la vitesse régulière des ventilateurs en hauteur." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "La vitesse à laquelle les ventilateurs tournent avant d'atteindre la limite. Lorsqu'une couche s'imprime plus rapidement que la limite, la vitesse du ventilateur augmente progressivement jusqu'à atteindre la vitesse maximale." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "La vitesse à laquelle les ventilateurs tournent sur la durée minimale d'une couche. La vitesse du ventilateur augmente progressivement entre la vitesse régulière du ventilateur et la vitesse maximale lorsque la limite est atteinte." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "La vitesse à laquelle le filament est préparé pendant une rétraction." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est préparé pendant un déplacement de rétraction d'essuyage." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "La vitesse à laquelle le filament est poussé vers l'arrière après une rétraction de changement de buse." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant une rétraction." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est rétracté et préparé pendant un déplacement de rétraction d'essuyage." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction de changement de buse." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "La vitesse à laquelle le filament est rétracté pendant une rétraction." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "La vitesse à laquelle le filament est rétracté pendant un déplacement de rétraction d'essuyage." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "La vitesse à laquelle le filament est rétracté. Une vitesse de rétraction plus élevée fonctionne mieux, mais une vitesse de rétraction très élevée peut causer l'écrasement du filament." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "La vitesse à laquelle le bas de support est imprimé. L'impression à une vitesse plus faible permet de renforcer l'adhésion du support au-dessus de votre modèle." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "La vitesse à laquelle le remplissage de support est imprimé. L'impression du remplissage à une vitesse plus faible permet de renforcer la stabilité." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "La vitesse à laquelle la couche du milieu du radeau est imprimée. Cette couche doit être imprimée suffisamment lentement du fait que la quantité de matériau sortant de la buse est assez importante." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "La vitesse à laquelle les parois externes sont imprimées. L’impression de la paroi externe à une vitesse inférieure améliore la qualité finale de la coque. Néanmoins, si la différence entre la vitesse de la paroi interne et la vitesse de la paroi externe est importante, la qualité finale sera réduite." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "La vitesse à laquelle la tour d'amorçage est imprimée. L'impression plus lente de la tour d'amorçage peut la rendre plus stable lorsque l'adhérence entre les différents filaments est sous-optimale." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "La vitesse à laquelle les ventilateurs de refroidissement de l'impression tournent." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "La vitesse à laquelle le radeau est imprimé." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "La vitesse à laquelle les plafonds et bas de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "La vitesse à laquelle les plafonds de support sont imprimés. Les imprimer à de plus faibles vitesses améliore la qualité des porte-à-faux." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "La vitesse à laquelle la jupe et la bordure sont imprimées. Normalement, cette vitesse est celle de la couche initiale, mais il est parfois nécessaire d’imprimer la jupe ou la bordure à une vitesse différente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "La vitesse à laquelle les supports sont imprimés. Imprimer les supports à une vitesse supérieure peut fortement accélérer l’impression. Par ailleurs, la qualité de la structure des supports n’a généralement pas beaucoup d’importance du fait qu'elle est retirée après l'impression." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Vitesse à laquelle les couches du dessus du radeau sont imprimées. Elles doivent être imprimées légèrement plus lentement afin que la buse puisse lentement lisser les lignes de surface adjacentes." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La vitesse à laquelle les parois internes de la surface supérieure sont imprimées." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La vitesse à laquelle la paroi externe de la surface supérieure est imprimée." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "La vitesse à laquelle le mouvement vertical en Z est effectué pour des décalages en Z. Cette vitesse est généralement inférieure à la vitesse d'impression car le plateau ou le portique de la machine est plus difficile à déplacer." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "La vitesse à laquelle les parois sont imprimées." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "La vitesse à laquelle passer sur la surface supérieure." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "La vitesse à laquelle rétracter le filament afin de le rompre proprement." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "La vitesse à laquelle les couches extérieures de la surface supérieure sont imprimées." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "La vitesse à laquelle les couches du dessus/dessous sont imprimées." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "La vitesse à laquelle les déplacements s'effectuent." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Vitesse de déplacement pendant une roue libre, par rapport à la vitesse de déplacement pendant l'extrusion. Une valeur légèrement inférieure à 100 % est conseillée car, lors du mouvement en roue libre, la pression dans le tube bowden chute." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La vitesse de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau de fabrication. N'affecte pas les structures d'adhérence au plateau, comme la bordure et le radeau." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "La vitesse d'impression de la couche initiale. Une valeur plus faible est recommandée pour améliorer l'adhérence au plateau." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Vitesse des mouvements de déplacement dans la couche initiale. Une valeur plus faible est recommandée pour éviter que les pièces déjà imprimées ne s'écartent du plateau. La valeur de ce paramètre peut être calculée automatiquement à partir du ratio entre la vitesse des mouvements et la vitesse d'impression." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "La température à laquelle le filament est cassé pour une rupture propre." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La température de l'environnement d'impression. Si cette valeur est 0, la température du volume d'impression ne sera pas ajustée." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "La température de la buse lorsqu'une autre buse est actuellement utilisée pour l'impression." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La température à laquelle le refroidissement commence juste avant la fin de l'impression." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "La température utilisée pour l'impression de la première couche." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Température utilisée pour l'impression." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Température utilisée pour le plateau de fabrication chauffé à la première couche. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé lors de la première couche." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Température utilisée pour le plateau de fabrication chauffé. Si elle est définie sur 0, le plateau de fabrication ne sera pas chauffé." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La température utilisée pour purger le matériau devrait être à peu près égale à la température d'impression la plus élevée possible." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "L’épaisseur des couches du dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessous." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "L'épaisseur du remplissage supplémentaire qui soutient les bords de la couche." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "L'épaisseur de l'interface du support à l'endroit auquel il touche le modèle, sur le dessous ou le dessus." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "L'épaisseur des bas de support. Cela contrôle le nombre de couches denses imprimées sur le dessus des endroits d'un modèle sur lequel le support repose." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "L'épaisseur des plafonds de support. Cela contrôle la quantité de couches denses sur le dessus du support sur lequel le modèle repose." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "L’épaisseur des couches du dessus dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "L’épaisseur des couches du dessus/dessous dans l'impression. Cette valeur divisée par la hauteur de la couche définit le nombre de couches du dessus/dessous." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Épaisseur des parois en sens horizontal. Cette valeur divisée par la largeur de la ligne de la paroi définit le nombre de parois." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "L'épaisseur par couche de matériau de remplissage. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "L'épaisseur par couche de matériau de remplissage de support. Cette valeur doit toujours être un multiple de la hauteur de la couche et arrondie." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Type de G-Code à générer." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Le type de matériau utilisé." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Volume de matière qui devrait suinter de la buse. Cette valeur doit généralement rester proche du diamètre de la buse au cube." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La largeur (sens X) de la zone imprimable." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Largeur de la bordure à imprimer sous le support. Une plus grande bordure améliore l'adhérence au plateau, mais demande un peu de matériau supplémentaire." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La largeur des attaches de la structure de connexion." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La largeur du bord/de la base de la tour d'amorçage. Une base plus large améliore l'adhésion au plateau, mais réduit également la zone d'impression effective." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "La largeur de la tour d'amorçage." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Largeur autorisée pour l'agitation aléatoire. Il est conseillé de garder cette valeur inférieure à l'épaisseur de la paroi extérieure, ainsi, les parois intérieures ne seront pas altérées." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "L'intervalle dans lequel le nombre maximal de rétractions est incrémenté. Cette valeur doit être du même ordre de grandeur que la distance de rétraction, limitant ainsi le nombre de mouvements de rétraction sur une même portion de matériau." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Les coordonnées X de la position de la tour d'amorçage." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Les coordonnées Y de la position de la tour d'amorçage." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Un maillage de support est présent sur la scène. Ce paramètre est contrôlé par Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Ce paramètre contrôle la distance que l'extrudeuse doit parcourir en roue libre immédiatement avant le début d'une paroi de pont. L'utilisation de la roue libre avant le début du pont permet de réduire la pression à l'intérieur de la buse et d'obtenir un pont plus plat." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour de la base du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour central du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre définit combien d'angles intérieurs sont arrondis dans le contour de radeau. Les angles internes sont arrondis en un demi-cercle avec un rayon égal à la valeur indiquée ici. Ce paramètre élimine également les cavités dans le contour de radeau qui sont d'une taille inférieure à ce cercle." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Ce paramètre détermine le degré d'arrondi des coins intérieurs du contour du radeau. Les coins intérieurs sont arrondis à un demi-cercle dont le rayon est égal à la valeur donnée ici. Ce paramètre supprime également les trous dans le contour du radeau qui sont plus petits qu'un tel cercle." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Ce paramètre limite le nombre de rétractions dans l'intervalle de distance minimal d'extrusion. Les rétractions qui dépassent cette valeur seront ignorées. Cela évite les rétractions répétitives sur le même morceau de filament, car cela risque de l’aplatir et de générer des problèmes d’écrasement." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Cela créera une paroi autour du modèle qui retient l'air (chaud) et protège contre les courants d'air. Particulièrement utile pour les matériaux qui se soulèvent facilement." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diamètre des extrémités" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction XY (horizontalement)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Pour compenser le rétrécissement du matériau lors du refroidissement, le modèle sera mis à l'échelle avec ce facteur dans la direction Z (verticalement)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Pour compenser la contraction du matériau lors de son refroidissement, le modèle est mis à l'échelle avec ce facteur." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Couches supérieures" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distance d'expansion de la couche extérieure supérieure" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largeur de retrait de la couche extérieure supérieure" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accélération des parois internes de la surface supérieure" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Saccade des parois internes de la surface supérieure" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Vitesse d'impression des parois internes de la surface supérieure" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Débit des parois internes de la surface supérieure" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accélération de la paroi externe de la surface supérieure" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Débit de la paroi externe de la surface supérieure" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Saccade de la paroi externe de la surface supérieure" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Vitesse d'impression de la paroi externe de la surface supérieure" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accélération de couche extérieure de surface supérieure" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrudeuse de couche extérieure de la surface supérieure" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Débit de la surface du dessus" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Saccade de couches extérieures de la surface supérieure" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Couches extérieures de la surface supérieure" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Sens de lignes de couche extérieure de surface supérieure" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Largeur de ligne de couche extérieure de la surface supérieure" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Motif de couche extérieure de surface supérieure" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Vitesse de la couche extérieure de la surface supérieure" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Épaisseur du dessus" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Les couches extérieures supérieures / inférieures des surfaces supérieures et / ou inférieures de votre objet possédant un angle supérieur à ce paramètre ne seront pas étendues. Cela permet d'éviter d'étendre les zones de couche extérieure étroites qui sont créées lorsque la surface du modèle possède une pente proche de la verticale. Un angle de 0° est horizontal et évitera l'extension des couches ; un angle de 90° est vertical et entraînera l'extension de toutes les couches." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Haut / bas" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Haut / bas" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accélération du dessus/dessous" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrudeuse du dessus/dessous" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Débit du dessus/dessous" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Saccade du dessus/dessous" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Sens de la ligne du dessus / dessous" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Largeur de la ligne du dessus/dessous" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Motif du dessus/dessous" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Vitesse d'impression du dessus/dessous" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Épaisseur du dessus/dessous" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "En contact avec le plateau" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diamètre de la tour" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angle du toit de la tour" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice de transformation à appliquer au modèle lors de son chargement depuis le fichier." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajuste le positionnement des supports. Le positionnement peut être défini pour toucher le plateau ou n'importe où. Lorsqu'il est défini sur n'importe où, les supports seront également imprimés sur le modèle." +msgctxt "travel label" +msgid "Travel" +msgstr "Déplacement" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accélération de déplacement" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distance d'évitement du déplacement" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Saccade de déplacement" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Vitesse de déplacement" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Traite le modèle comme surface seule, un volume ou des volumes avec des surfaces seules. Le mode d'impression normal imprime uniquement des volumes fermés. « Surface » imprime une paroi seule autour de la surface de la maille, sans remplissage ni couche du dessus/dessous. « Les deux » imprime des volumes fermés comme en mode normal et les polygones restants comme surfaces." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Arborescence" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Trihexagonal" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangles" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diamètre du tronc" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Joindre les volumes se chevauchant" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Les parois non supportées dont la longueur est inférieure à cette valeur seront imprimées selon les paramètres de parois normaux, tandis que celles dont la longueur est supérieure à cette valeur seront imprimées selon les paramètres de parois du pont." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utiliser des couches adaptatives" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilisation de tours" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilisez un taux d'accélération distinct pour les déplacements. Si cette option est désactivée, les déplacements utiliseront la même accélération que celle de la ligne imprimée à l'emplacement cible." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilisez un taux de saccades différent pour les déplacements. Si cette option est désactivée, les déplacements utiliseront les mêmes saccades que celles de la ligne imprimée à l'emplacement cible." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utiliser l'extrusion relative au lieu de l'extrusion absolue. L'utilisation de pas E relatifs facilite le post-traitement du G-Code. Toutefois, cela n'est pas pris en charge par toutes les imprimantes et peut occasionner de très légers écarts dans la quantité de matériau déposé, par rapport à l'utilisation des pas E absolus. Indépendamment de ce paramètre, le mode d'extrusion sera défini par défaut comme absolu avant qu'un quelconque script de G-Code soit produit." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilise des tours spéciales pour soutenir de petites zones en porte-à-faux. Le diamètre de ces tours est plus large que la zone qu’elles soutiennent. Près du porte-à-faux, le diamètre des tours diminue pour former un toit." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utiliser cette maille pour modifier le remplissage d'autres mailles qu'elle chevauche. Remplace les régions de remplissage d'autres mailles par des régions de cette maille. Il est conseillé d'imprimer uniquement une Paroi et pas de Couche du dessus/dessous pour cette maille." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utiliser ce maillage pour spécifier des zones de support. Cela peut être utilisé pour générer une structure de support." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utiliser cette maille pour préciser à quel endroit aucune partie du modèle doit être détectée comme porte-à-faux. Cette option peut être utilisée pour supprimer la structure de support non souhaitée." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Utilisateur spécifié" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensation du rétrécissement du facteur d'échelle verticale" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolérance verticale dans les couches découpées. Les contours d'une couche sont normalement générés en faisant passer les sections entrecroisées au milieu de chaque épaisseur de couche (Milieu). Alternativement, chaque couche peut posséder des zones situées à l'intérieur du volume à travers toute l'épaisseur de la couche (Exclusif) ou une couche peut avoir des zones situées à l'intérieur à tout endroit dans la couche (Inclusif). L'option Inclusif permet de conserver le plus de détails ; l'option Exclusif permet d'obtenir une adaptation optimale ; l'option Milieu permet de rester proche de la surface d'origine." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendre le chauffage du plateau" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendre le chauffage de la buse" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accélération de la paroi" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Nombre de distributions des parois" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrudeuse de paroi" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Débit de paroi" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Saccade de paroi" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Nombre de lignes de la paroi" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Largeur de ligne de la paroi" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordre des parois" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Vitesse d'impression de la paroi" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Épaisseur de la paroi" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Longueur de transition de la paroi" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distance du filtre de transition des parois" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Marge du filtre de transition des parois" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angle du seuil de transition de la paroi" + +msgctxt "shell label" +msgid "Walls" +msgstr "Parois" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Les parois ayant un angle supérieur à cette valeur seront imprimées en utilisant les paramètres de parois en porte-à-faux. Si la valeur est 90, aucune paroi ne sera considérée comme étant en porte-à-faux. La saillie soutenue par le support ne sera pas non plus considérée comme étant en porte-à-faux." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Lorsqu'ils sont activés, les parcours d'outils sont corrigés pour les imprimantes dotées de planificateurs de mouvements fluides. Les petits mouvements qui s'écartent de la direction générale de la trajectoire de l'outil sont lissés pour optimiser la fluidité des mouvements." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Lorsque cette option est activée, l'ordre dans lequel les lignes de remplissage sont imprimées est optimisé pour réduire la distance parcourue. La réduction du temps de parcours dépend en grande partie du modèle à découper, du type de remplissage, de la densité, etc. Remarque : pour certains modèles possédant beaucoup de petites zones de remplissage, le temps de découpe du modèle peut en être considérablement augmenté." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Lorsque cette fonction est activée, la vitesse du ventilateur de refroidissement de l'impression est modifiée pour les régions de la couche extérieure situées immédiatement au-dessus du support." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Si cette option est activée, les coordonnées de la jointure z sont relatives au centre de chaque partie. Si elle est désactivée, les coordonnées définissent une position absolue sur le plateau." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Lorsque cette distance est supérieure à zéro, les déplacements de détour qui sont plus longs que cette distance utiliseront la rétraction. Si elle est définie sur zéro, il n'y a pas de maximum et les mouvements de détour n'utiliseront pas la rétraction." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Lorsque le diamètre est supérieur à zéro, l'expansion horizontale des trous est progressivement appliquée aux petits trous (ces derniers sont élargis). Lorsque le diamètre est défini sur zéro, l'expansion horizontale des trous est appliquée à tous les trous. Les trous dont le diamètre est supérieur au diamètre maximal défini pour l'expansion horizontale des trous ne sont pas élargis." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Lorsqu'elle est supérieure à zéro, l'expansion horizontale du trou correspond à la quantité de décalage appliquée à la totalité des trous de chaque couche. Les valeurs positives augmentent la taille des trous, les valeurs négatives réduisent la taille des trous. Lorsque ce paramètre est activé, il peut être ajusté davantage avec le diamètre maximum d'expansion horizontale du trou." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression des régions de la couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression des parois de pont, la quantité de matériau extrudé est multipliée par cette valeur." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression de la deuxième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Lors de l'impression de la troisième couche extérieure du pont, la quantité de matériau extrudé est multipliée par cette valeur." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Lorsque la vitesse minimale est atteinte à cause de la durée minimale d'une couche, relève la tête de l'impression et attend que la durée supplémentaire jusqu'à la durée minimale d'une couche soit atteinte." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Lorsque le modèle comporte de petits trous verticaux de quelques couches seulement, il doit normalement y avoir une couche autour de celles-ci dans l'espace étroit. Activez ce paramètre pour ne pas générer de couche si le trou vertical est très petit. Cela améliore le temps d'impression et le temps de découpage, mais laisse techniquement le remplissage exposé à l'air." + +msgctxt "wall_transition_angle description" +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 "Quand créer des transitions entre un nombre uniforme et impair de parois. Une forme de coin dont l'angle est supérieur à ce paramètre n'aura pas de transitions et aucune paroi ne sera imprimée au centre pour remplir l'espace restant. En réduisant ce paramètre, on réduit le nombre et la longueur de ces parois centrales, mais on risque de laisser des trous ou sur-extruder." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Lorsque l'on passe d'un nombre de parois à un autre, au fur et à mesure que la pièce s'amincit, un certain espace est alloué pour diviser ou joindre les lignes de parois." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Lors de l'essuyage, le plateau de fabrication est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau de fabrication." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "À chaque rétraction, le plateau est abaissé pour créer un espace entre la buse et l'impression. Cela évite que la buse ne touche l'impression pendant les déplacements, réduisant ainsi le risque de heurter l'impression à partir du plateau." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Si la Distance X/Y des supports annule la Distance Z des supports ou inversement. Lorsque X/Y annule Z, la distance X/Y peut écarter le support du modèle, influençant ainsi la distance Z réelle par rapport au porte-à-faux. Nous pouvons désactiver cela en n'appliquant pas la distance X/Y autour des porte-à-faux." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Si les coordonnées X/Y de la position zéro de l'imprimante se situent au centre de la zone imprimable." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Détermine si la butée de l'axe X est en sens positif (haute coordonnée X) ou négatif (basse coordonnée X)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Détermine si la butée de l'axe Y est en sens positif (haute coordonnée Y) ou négatif (basse coordonnée Y)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Détermine si la butée de l'axe Z est en sens positif (haute coordonnée Z) ou négatif (basse coordonnée Z)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Si les extrudeurs partagent un seul chauffage au lieu que chaque extrudeur ait son propre chauffage." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Lorsque les extrudeuses partagent une seule buse au lieu que chaque extrudeuse ait sa propre buse. Lorsqu'il est défini à true, le script gcode de démarrage de l'imprimante doit configurer correctement toutes les extrudeuses dans un état de rétraction initial connu et mutuellement compatible (zéro ou un filament non rétracté) ; dans ce cas, l'état de rétraction initial est décrit, par extrudeuse, par le paramètre 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Si la machine a un plateau chauffé présent." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Si la machine est capable de stabiliser la température du volume d'impression." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "S'il faut centrer l'objet au milieu du plateau d'impression (0,0) au lieu d'utiliser le système de coordonnées dans lequel l'objet a été enregistré." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Contrôler ou non la température depuis Cura. Désactivez cette option pour contrôler la température de la buse depuis une source autre que Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Inclure ou non les commandes de température du plateau au début du gcode. Si le gcode_démarrage contient déjà les commandes de température du plateau, l'interface Cura désactive automatiquement ce paramètre." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Inclure ou non les commandes de température de la buse au début du gcode. Si le gcode_démarrage contient déjà les commandes de température de la buse, l'interface Cura désactive automatiquement ce paramètre." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Inclure ou non le G-Code d'essuyage de la buse entre les couches (maximum 1 par couche). L'activation de ce paramètre peut influencer le comportement de la rétraction lors du changement de couche. Veuillez utiliser les paramètres de rétraction d'essuyage pour contrôler la rétraction aux couches où le script d'essuyage sera exécuté." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Insérer ou non une commande pour attendre que la température du plateau soit atteinte au démarrage." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Préparer les filaments avec une goutte avant l'impression. Ce paramètre permet d'assurer que l'extrudeuse disposera de matériau prêt au niveau de la buse avant l'impression. La jupe/bordure d'impression peut également servir de préparation, auquel cas le fait de laisser ce paramètre désactivé permet de gagner un peu de temps." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Imprime tous les modèles en même temps, couche par couche, ou attend la fin d'un modèle pour en commencer un autre. Le mode « Un modèle à la fois » est disponible seulement si a) un seul extrudeur est activé et si b) tous les modèles sont suffisamment éloignés pour que la tête puisse passer entre eux et qu'ils sont tous inférieurs à la distance entre la buse et les axes X/Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Afficher ou non les différentes variantes de cette machine qui sont décrites dans des fichiers json séparés." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "S'il faut utiliser les commandes de rétraction du firmware (G10 / G11) au lieu d'utiliser la propriété E dans les commandes G1 pour rétracter le matériau." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Attendre ou non que la température de la buse soit atteinte au démarrage." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Largeur d'une seule ligne de remplissage." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Largeur d'une seule ligne de plafond ou de bas de support." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Largeur d'une seule ligne de la zone en haut de l'impression." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Largeur d'une ligne. Généralement, la largeur de chaque ligne doit correspondre à la largeur de la buse. Toutefois, le fait de diminuer légèrement cette valeur peut fournir de meilleures impressions." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Largeur d'une seule ligne de tour d'amorçage." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Largeur d'une seule ligne de jupe ou de bordure." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Largeur d'une seule ligne de bas de support." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Largeur d'une seule ligne de plafond de support." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Largeur d'une seule ligne de support." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Largeur d'une seule ligne du dessus/dessous." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Largeur d'une seule ligne de la paroi pour toutes les lignes de paroi, à l’exception de la ligne la plus externe." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Largeur d'une seule ligne de la paroi." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Largeur des lignes de la couche de base du radeau. Elles doivent être épaisses pour permettre l’adhérence au plateau." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Largeur des lignes de la couche intermédiaire du radeau. Une plus grande extrusion de la deuxième couche renforce l'adhérence des lignes au plateau." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Largeur des lignes de la surface supérieure du radeau. Elles doivent être fines pour rendre le dessus du radeau lisse." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Largeur de la ligne la plus à l'extérieur de la paroi. Le fait de réduire cette valeur permet d'imprimer des niveaux plus élevés de détails." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "La largeur de la paroi qui remplacera les entités fines (selon la taille minimale des entités) du modèle. Si la largeur minimale de la ligne de paroi est plus fine que l'épaisseur de l'entité, la paroi deviendra aussi épaisse que l'entité elle-même." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Position X de la brosse d'essuyage" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Vitesse du décalage d'essuyage" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Essuyer le bec d'impression inactif sur la tour d'amorçage" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distance de déplacement d'essuyage" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Essuyer la buse entre les couches" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pause d'essuyage" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Nombre de répétitions d'essuyage" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distance de rétraction d'essuyage" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Activation de la rétraction d'essuyage" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Degré supplémentaire de rétraction d'essuyage d'amorçage" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Vitesse primaire de rétraction d'essuyage" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Vitesse de rétraction d'essuyage" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Vitesse de rétraction d'essuyage" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Décalage en Z de l'essuyage" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Hauteur du décalage en Z d'essuyage" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "À l'intérieur du remplissage" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Écrivez l'outil actif après avoir envoyé des commandes temporaires à l'outil inactif. Requis pour l'impression à double extrusion avec Smoothie ou un autre micrologiciel avec des commandes d'outils modaux." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Butée X en sens positif" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Emplacement X où le script d'essuyage démarrera." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y annule Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Butée Y en sens positif" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Butée Z en sens positif" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Décalage en Z après changement d'extrudeuse" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Décalage en Z après changement de hauteur d'extrudeuse" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hauteur du décalage en Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Décalage en Z uniquement sur les pièces imprimées" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Vitesse du décalage en Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Décalage en Z lors d’une rétraction" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alignement de la jointure en Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Position de la jointure en Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatif à la jointure en Z" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X Jointure en Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y Jointure en Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z annule X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "travel description" +msgid "travel" +msgstr "déplacement" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "Permet d'activer ou non les ventilateurs de refroidissement lors d'un changement de buse. Cette option peut aider à réduire le suintement en refroidissant la buse plus rapidement :
  • Inchangé : garder les ventilateurs tels qu'ils étaient auparavant
  • Seulement dernier extrudeur : allumer le ventilateur du dernier extrudeur utilisé, mais éteindre les autres (s'il y en a). Cette option est utile si tu as des extrudeuses complètement séparées.
  • Tous les ventilateurs : cette option est utile si vous avez un seul ventilateur de refroidissement, ou plusieurs ventilateurs qui restent proches les uns des autres.
" + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Tous les ventilateurs" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Refroidissement lors de la commutation de l'extrudeuse" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Gérez la relation spatiale entre le joint en Z de la structure de support et le modèle 3D réel. Ce contrôle est essentiel, car il permet aux utilisateurs d'assurer le retrait transparent des structures de support après l'impression, sans endommager le modèle imprimé ni y laisser de marques." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Distance min. du joint Z par rapport au modèle" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Multiplicateur pour le remplissage des couches initiales du support. L'augmentation de ce facteur peut contribuer à l'adhérence du lit." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Seulement pour la dernière extrudeuse" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Placz la couture en Z sur un sommet du polygone. Si vous désactivez cette option, vous pouvez également placer la couture entre les sommets. (Gardez à l'esprit que cela n'annule pas les restrictions imposées au placement de la couture sur un surplomb non supporté.)" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Épaisseur minimale de l'enveloppe de la tour d'amorçage" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Débit de base du radeau" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Recouvrement du remplissage de la base du radier" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Pourcentage de chevauchement du remplissage de la base du radier" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Débit du radier" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Débit de l'interface du radier" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Recouvrement de l'interface du radier" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Pourcentage de chevauchement de l'interface du radier" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Décalage Z de l'interface du radeau" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Écoulement de la surface du radier" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Chevauchement du remplissage de la surface du radier" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Pourcentage du remplissage de la surface du radier" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Décalage Z de la surface du radier" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Angle du mur en surplomb du joint" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Couche initiale du multiplicateur de densité du support de remplissage" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Joint Z du support à l'opposé du modèle" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantité de matériau, par rapport à une ligne d'extrusion normale, à extruder pendant l'impression de la base du radeau. L'augmentation du débit peut améliorer l'adhérence et la solidité structurelle de l'empilement." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantité de matériau, par rapport à une ligne d'extrusion normale, à extruder pendant l'impression de l'interface du radeau. L'augmentation du débit peut améliorer l'adhérence et la résistance structurelle du radeau." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantité de matériau, par rapport à une ligne d'extrusion normale, à extruder lors de l'impression du chevron. L'augmentation du débit peut améliorer l'adhérence et la résistance structurelle du chevron." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantité de matériau, par rapport à une ligne d'extrusion normale, à extruder pendant l'impression de la surface du radeau. L'augmentation du débit peut améliorer l'adhérence et la résistance structurelle du chevron." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantité de chevauchement entre le remplissage et les parois de la base du radeau, en pourcentage de la largeur de la ligne de remplissage. Un léger chevauchement permet aux parois de se raccorder fermement au remplissage." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Le degré de chevauchement entre le remplissage et les parois de la base du radier. Un léger chevauchement permet aux murs de se raccorder fermement au remplissage." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantité de chevauchement entre le remplissage et les murs de l'interface du radier, en pourcentage de la largeur de la ligne de remplissage. Un léger chevauchement permet aux murs de se raccorder fermement au remplissage." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantité de chevauchement entre le remplissage et les murs de l'interface du radier. Un léger chevauchement permet aux murs de se raccorder fermement au remplissage." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantité de chevauchement entre le remplissage et les parois de la surface du radier, en pourcentage de la largeur de la ligne de remplissage. Un léger chevauchement permet aux murs de se raccorder fermement au remplissage." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantité de chevauchement entre le remplissage et les murs de la surface du radier. Un léger chevauchement permet aux murs de se raccorder fermement au remplissage." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "La distance entre le modèle et sa structure de support au niveau de la couture de l'axe z." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "L'épaisseur minimale de la coque de l'échafaudage principal. Vous pouvez l'augmenter pour rendre l'échafaudage plus solide." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Essayez d'éviter les coutures sur les murs qui dépassent cet angle. Lorsque la valeur est de 90, aucun mur ne sera traité comme étant en surplomb." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Inchangé" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Lors de l'impression de la première couche de l'interface du radeau, ce décalage permet de personnaliser l'adhérence entre la base et l'interface. Un décalage négatif devrait améliorer l'adhérence." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Lors de l'impression de la première couche de la surface du radeau, il faut tenir compte de ce décalage pour personnaliser l'adhérence entre l'interface et la surface. Un décalage négatif devrait améliorer l'adhérence." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Joint en Z sur le sommet" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Ajoutez des lignes supplémentaires dans le motif de remplissage pour soutenir les peaux situées au-dessus. Cette option permet d'éviter les trous ou les bulles de plastique qui apparaissent parfois dans les peaux de forme complexe, parce que le remplissage en dessous ne soutient pas correctement la couche de peau imprimée au-dessus. L'option \"Murs\" ne prend en charge que les contours de la peau, tandis que l'option \"Murs et lignes\" prend également en charge les extrémités des lignes qui composent la peau." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Construire la vitesse du ventilateur en hauteur" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Vitesse du ventilateur de construction à la couche" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Numéro du ventilateur de volume de construction" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Détermine la longueur de chaque étape du changement de flux lors de l'extrusion le long de la couture du foulard. Une distance plus petite se traduira par un code G plus précis mais aussi plus complexe." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Détermine la longueur du joint d'écharpe, un type de joint qui devrait rendre le joint Z moins visible. La valeur doit être supérieure à 0 pour être efficace." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durée de chaque pas dans la variation progressive du débit" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Activer les variations de débit progressives. Lorsque cette option est activée, le débit est augmenté ou réduit progressivement jusqu'au débit souhaité. Cette option est utile pour les imprimantes avec un tube bowden où le débit n'est pas modifié immédiatement lorsque le moteur de l'extrudeur démarre ou s'arrête." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Lignes de remplissage supplémentaires pour soutenir les peaux" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Pour tout déplacement supérieur à cette valeur, le débit de matière est réinitialisé au débit souhaité pour les trajectoires" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Taille de pas de la discrétisation du débit progressif" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Débit progressif activé" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accélération progressive jusqu'au débit max" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accélération maximale du débit lors de la première couche" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accélération maximale pour les variations de débit progressives" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Vitesse minimale pour les variations de débit progressives pour la première couche" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Aucune" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Accélération du mur extérieur" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Décélération du mur extérieur" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Rapport de vitesse de fin de mur extérieur" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Distance de division de la vitesse de mur extérieur" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Rapport de vitesse de départ du mur extérieur" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Réinitialiser la durée du débit" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Longueur de la couture de l'écharpe" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Hauteur de départ de la couture de l'écharpe" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Longueur du pas de couture de l'écharpe" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Hauteur à laquelle les ventilateurs tournent à la vitesse normale. Dans les couches inférieures, la vitesse du ventilateur passe progressivement de la vitesse initiale à la vitesse normale." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "La couche à laquelle les ventilateurs de construction tournent à pleine vitesse. Cette valeur est calculée et arrondie à un nombre entier." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "Le numéro du ventilateur qui refroidit le volume de construction. S'il est fixé à 0, cela signifie qu'il n'y a pas de ventilateur de volume de construction." + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "Le ratio de la hauteur de couche sélectionnée à laquelle la couture de l'écharpe commencera. Un nombre inférieur entraînera une plus grande hauteur de couture. Il doit être inférieur à 100 pour être efficace." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Il s'agit de l'accélération permettant d'atteindre la vitesse maximale lors de l'impression d'un mur extérieur." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Il s'agit de la décélération permettant de terminer l'impression d'un mur extérieur." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Il s'agit de la longueur maximale d'un chemin d'extrusion lors de la division d'un chemin plus long pour appliquer l'accélération/décélération du mur extérieur. Une distance plus petite créera un code G plus précis mais aussi plus verbeux." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Il s'agit du ratio de la vitesse maximale à laquelle il faut terminer lors de l'impression d'un mur extérieur." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Il s'agit du rapport entre la vitesse maximale et la vitesse de départ lors de l'impression d'un mur extérieur." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Murs uniquement" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Murs et lignes" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Les murs qui dépassent de plus de cet angle seront imprimés en utilisant les paramètres des murs en surplomb. Lorsque la valeur est de 90, aucun mur n'est traité comme étant en surplomb. Les surplombs qui sont soutenus par un support ne seront pas non plus traités comme des surplombs. En outre, toute ligne dont le surplomb est inférieur à la moitié ne sera pas non plus traitée comme un surplomb." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Une liste de directions de lignes entières à utiliser lorsque les couches de peau de la surface inférieure utilisent les lignes ou le motif en zigzag. Les éléments de la liste sont utilisés séquentiellement au fur et à mesure de la progression des couches et, lorsque la fin de la liste est atteinte, elle recommence au début. Les éléments de la liste sont séparés par des virgules et la liste entière est contenue entre crochets. Par défaut, la liste est vide, ce qui signifie que l’on utilise les angles traditionnels par défaut (45 et 135 degrés)." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Accélération de la surface inférieure de la paroi intérieure" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Jerk de la surface inférieure de la paroi intérieure" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Vitesse de la surface inférieure de la paroi intérieure" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Flux de la surface inférieure de la paroi ou des parois intérieure(s)" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Accélération de la surface inférieure de la paroi extérieure" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Flux de la surface inférieure de la paroi extérieure" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Jerk de la surface inférieure de la paroi extérieure" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Vitesse de la surface inférieure de la paroi extérieure" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Accélération de la peau de la surface inférieure" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Extrudeuse à peau de la surface inférieure" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Flux de la peau de la surface inférieure" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Jerk de la peau de la surface inférieure" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Couches de peau de la surface inférieure" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Orientations des lignes de la peau de la surface inférieure" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Largeur des lignes de peau de la surface inférieure" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Motif de la peau de la surface inférieure" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Vitesse de la peau de la surface inférieure" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Concentrique" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Extrudeuse" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Compensation du flux sur les lignes de paroi de la surface inférieure pour toutes les lignes de paroi à l’exception de la plus extérieure." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Compensation de flux sur les lignes des zones de la partie inférieure de l’impression." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Compensation du flux sur la ligne de paroi extérieure de la surface inférieure." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Distance à éviter à l’intérieur d’un voyage" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Lignes" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Temps de pose minimum en surplomb" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Longueur minimale du segment en surplomb" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Ordre monotone de la surface inférieure" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Décélération de l'extrémité de la paroi extérieure" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Accélération du démarrage de la paroi extérieure" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Vitesses des parois en surplomb" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Les parois en surplomb seront imprimées selon un pourcentage de leur vitesse d’impression normale. Vous pouvez spécifier plusieurs valeurs, de manière à ce que davantage de parois en surplomb soient imprimées encore plus lentement, par exemple en définissant [75, 50, 25]" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Facteur d’avance de pression" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Print Core" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimez les lignes de la surface inférieure dans un ordre tel qu’elles se chevauchent toujours avec les lignes adjacentes dans une seule direction. Cette méthode prend un peu plus de temps pour imprimer, mais elle donne aux surfaces planes un aspect plus cohérent." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "Il faut commencer par le Start GCode" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "L’accélération avec laquelle les couches de peau de la surface inférieure sont imprimées." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "L’accélération avec laquelle les parois intérieures de la surface inférieure sont imprimées." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "L’accélération avec laquelle les parois extérieures de la surface inférieure sont imprimées." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "Les dimensions de la tête d’impression utilisées pour déterminer la « distance de sécurité du modèle » lors de l’impression « une à la fois ». Ces valeurs se rapportent à l’axe de la première buse de l’extrudeuse. La gauche de la buse correspond à « X Min » et doit être négative. L’arrière de la buse correspond à « Y Min » et doit avoir une valeur négative. X Max (droite) et Y Max (avant) sont des valeurs positives. La hauteur du portique est la dimension entre la plaque de construction et la poutre X du portique." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "La distance entre la buse et les parois extérieures déjà imprimées lorsqu'elle se déplace à l'intérieur d'un modèle." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "Le train d’extrusion est utilisé pour l’impression de la peau la plus inférieure. Il est utilisé dans le cadre de la multi-extrusion." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "La variation de vitesse instantanée maximale avec laquelle les couches de peau de la surface inférieure sont imprimées." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "La variation de vitesse instantanée maximale avec laquelle les parois intérieures de la surface inférieure sont imprimées." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "La variation de vitesse instantanée maximale avec laquelle les parois extérieures de la surface inférieure sont imprimées." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Le temps minimum passé dans une couche qui contient des extrusions en surplomb. Cette valeur oblige l’imprimante à ralentir, afin de passer au moins le temps défini ici dans une couche. Ainsi, le matériau imprimé peut refroidir correctement avant l’impression de la couche suivante. Les couches peuvent prendre moins de temps que le temps minimal si la Tête de levage (Lift Head) est désactivée et si la vitesse minimale n’est pas respectée." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "Le nombre de couches de peau les plus inférieures. En général, une seule couche inférieure est suffisante pour générer des surfaces inférieures de meilleure qualité." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "Le motif des couches inférieures." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "La vitesse à laquelle les couches de peau de la surface inférieure sont imprimées." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "La vitesse à laquelle les parois intérieures de la surface inférieure sont imprimées." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "La vitesse à laquelle la paroi extérieure de la surface inférieure est imprimée." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Ce paramètre détermine si le start g-code doit toujours être le premier g-code. Sans cette option, d’autres g-codes, tels qu’un T0, peuvent être insérés avant le start g-code." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Facteur de réglage de l’avance de pression, qui vise à synchroniser l’extrusion avec le mouvement" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Lorsque vous essayez d’appliquer le temps de couche minimum spécifique pour les couches en surplomb, il ne sera appliqué que si au moins un mouvement d’extrusion consécutif en surplomb est plus long que cette valeur." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Largeur d’une seule ligne des zones situées au bas de l’impression." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig-zag" diff --git a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po b/resources/i18n/fr_FR/gradual_flow_settings.def.json.po deleted file mode 100644 index 47ee220041..0000000000 --- a/resources/i18n/fr_FR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: fr_FR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n>1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Débit progressif activé" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Activer les variations de débit progressives. Lorsque cette option est activée, le débit est augmenté ou réduit progressivement jusqu'au débit souhaité. Cette option est utile pour les imprimantes avec un tube bowden où le débit n'est pas modifié immédiatement lorsque le moteur de l'extrudeur démarre ou s'arrête." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accélération progressive jusqu'au débit max" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accélération maximale pour les variations de débit progressives" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accélération maximale du débit lors de la première couche" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Vitesse minimale pour les variations de débit progressives pour la première couche" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Taille de pas de la discrétisation du débit progressif" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durée de chaque pas dans la variation progressive du débit" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Réinitialiser la durée du débit" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Pour tout déplacement supérieur à cette valeur, le débit de matière est réinitialisé au débit souhaité pour les trajectoires" diff --git a/resources/i18n/gradual_flow_settings.def.json.pot b/resources/i18n/gradual_flow_settings.def.json.pot deleted file mode 100644 index 7d9afba68f..0000000000 --- a/resources/i18n/gradual_flow_settings.def.json.pot +++ /dev/null @@ -1,58 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - - - - - - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - diff --git a/resources/i18n/hu_HU/cura.po b/resources/i18n/hu_HU/cura.po index c3b1de85aa..a0022fa0cc 100644 --- a/resources/i18n/hu_HU/cura.po +++ b/resources/i18n/hu_HU/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" "PO-Revision-Date: 2020-03-24 09:36+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: ATI-SZOFT\n" @@ -18,6 +18,10 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Poedit 2.2.4\n" +msgctxt "@title:label" +msgid " " +msgstr "" + #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" @@ -174,6 +178,10 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "" + msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF fájl" @@ -470,6 +478,10 @@ msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "Lehetővé teszi a G-kód fájlok betöltését és megjelenítését." +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Mindig kérdezz" @@ -510,10 +522,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Alkalmazás keretrendszer" - msgctxt "@title:column" msgid "Applies on" msgstr "" @@ -692,10 +700,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "C/C++ függőségek könyvtár" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA digitális eszközcsere" @@ -859,6 +863,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "Szín séma" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "" + msgctxt "@info" msgid "Compare and save." msgstr "" @@ -867,10 +875,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "Kompatibilis mód" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "" @@ -1194,14 +1198,6 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine motor" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - msgctxt "@label" msgid "Currency:" msgstr "Pénznem:" @@ -1262,10 +1258,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "Adatok elküldve" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Adat csere formátum" - msgctxt "@button" msgid "Decline" msgstr "" @@ -1326,10 +1318,6 @@ msgctxt "@label" msgid "Density" msgstr "Sűrűség" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "Mélység (mm)" @@ -1552,6 +1540,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Alapanyag export" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "" + msgctxt "@title:window" msgid "Export Profile" msgstr "Profil exportálás" @@ -1593,6 +1585,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "Extruder %1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Extruder G-kód zárás" @@ -1601,6 +1597,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Extruder G-kód kezdés" @@ -1790,6 +1790,10 @@ msgctxt "@label" msgid "First available" msgstr "Az első elérhető" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "" + msgctxt "@label:listbox" msgid "Flow" msgstr "" @@ -1806,10 +1810,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -msgctxt "@label" -msgid "Font" -msgstr "Betűtípus" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "Minden helyzetben helyezzen be egy darab papírt (A4) a fúvóka alá, és állítsa be a fej magasságát.A nyomtató tálca magassága akkor megfelelő, ha a papírt kissé megfogja a fúvóka vége." @@ -1865,10 +1865,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "G-kód illesztés" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "G-kód generátor" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "A GCodeGzWriter nem támogatja a nem szöveges módot." @@ -1881,14 +1877,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF kép" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "GUI keretrendszer" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "GUI keretrendszer függőségek" - msgctxt "@label" msgid "Gantry Height" msgstr "Szán magasság" @@ -1901,10 +1889,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "A támasz létrehozása segíti a modell kinyúló részeinek hibátlan nyomatását. Támasz nélkül, ezek a részek összeomlanak, és nem lehetséges a hibátlan nyomtatás." -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "" - msgctxt "@label:category menu label" msgid "Generic" msgstr "Generikus" @@ -1925,10 +1909,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "Általános beállítások" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Grafikai felhasználói interfész" - msgctxt "@label" msgid "Grid Placement" msgstr "" @@ -2174,10 +2154,6 @@ msgctxt "@label" msgid "Interface" msgstr "Interfész" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Folyamatközi kommunikációs könyvtár" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "Hibás IP cím" @@ -2206,10 +2182,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "JPG kép" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "" - msgctxt "@label" msgid "Job Name" msgstr "Feladat név" @@ -2310,6 +2282,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "Tárgyasztal szint" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "A világosabb a magasabb" @@ -2326,10 +2302,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Linux kereszt-disztribúciós alkalmazás telepítése" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "Töltsd be %3 -at %1 anyagként. (Ez nem felülbírálható)." @@ -2418,6 +2390,14 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "" @@ -2995,10 +2975,6 @@ msgctxt "@header" msgid "Package details" msgstr "" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-kód elemzés" @@ -3154,14 +3130,6 @@ msgctxt "@button" msgid "Plugins" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Poligon daraboló könyvtár" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Utólagos műveletek" @@ -3435,10 +3403,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Programozási nyelv" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3567,18 +3531,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "PyQt verzió" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "" - msgctxt "@label" msgid "Qt version" msgstr "Qt verzió" @@ -3760,10 +3712,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Hardver biztonságos eltávolítása" @@ -3855,6 +3803,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "" + msgctxt "@info" msgid "Search in the browser" msgstr "" @@ -3947,10 +3899,6 @@ msgctxt "name" msgid "Sentry Logger" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Soros kommunikációs könyvtár" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Beállítva aktív extruderként" @@ -4059,6 +4007,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -4087,10 +4039,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Online &Dokumentumok megjelenítése" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "" - msgctxt "@label:checkbox" msgid "Show all" msgstr "Mindent mutat" @@ -4299,6 +4247,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "G-kód kezdés" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "@label" msgid "Start the slicing process" msgstr "Szeletelés indítása" @@ -4380,34 +4332,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Támogató könyvtár a gyorsabb matematikához" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Támogató könyvtár a fájl metaadatokhoz és továbbításához" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Támogató könyvtár az STL fájlok kezeléséhez" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Támogató könyvtár a háromszög hálók kezeléséhez" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Támogató könyvtár a tudományos számítások számára" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "" - msgctxt "@action:button" msgid "Sync" msgstr "" @@ -4724,8 +4648,12 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Ez a konfiguráció nem érhető el, mert a(z) %1 nem azonosítható. Kérjük, látogasson el a %2 webhelyre a megfelelő anyagprofil letöltéséhez." +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" msgstr "" msgctxt "@text:window" @@ -5019,6 +4947,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "" + msgctxt "@info:title" msgid "Unable to slice" msgstr "Nem lehet szeletelni" @@ -5087,10 +5023,6 @@ msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "" - msgctxt "@label" msgid "Unknown" msgstr "Ismeretlen" @@ -5280,6 +5212,14 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Egyedi firmware feltöltése" @@ -5304,14 +5244,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "Felhasználói Szerződés" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "" - msgctxt "@title:column" msgid "Value" msgstr "" @@ -5424,6 +5356,14 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5586,12 +5526,12 @@ msgid "Y (Depth)" msgstr "Y (Mélység)" msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Y max ( '+' towards front)" +msgstr "" msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Y min ( '-' towards back)" +msgstr "" msgctxt "@info" msgid "Yes" @@ -5674,10 +5614,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "Z (Magasság)" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "ZeroConf felderítő könyvtár" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Nagyítás az egér mozgás irányában" @@ -5735,6 +5671,18 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "Alkalmazás keretrendszer" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "C/C++ függőségek könyvtár" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "Adat csere formátum" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Engedélyezze a peremet, vagy az aláúsztatást. Ez létre fog hozni a test szélén illetve az alján egy olyan részt, ami segíti a letapadást, viszont nyomtatás után ezek könnyen eltávolíthatóak a testről." @@ -5743,10 +5691,90 @@ msgstr "" #~ msgid "Error writing 3mf file." #~ msgstr "Hiba a 3mf fájl írásakor." +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "Betűtípus" + +#~ msgctxt "@label Description for application component" +#~ msgid "G-code generator" +#~ msgstr "G-kód generátor" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "GUI keretrendszer" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "GUI keretrendszer függőségek" + +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "Grafikai felhasználói interfész" + +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "Folyamatközi kommunikációs könyvtár" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Linux cross-distribution application deployment" +#~ msgstr "Linux kereszt-disztribúciós alkalmazás telepítése" + +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "Fúvóka méret" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "Poligon daraboló könyvtár" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "Programozási nyelv" + #~ msgctxt "description" #~ msgid "Provides support for writing 3MF files." #~ msgstr "Támogatást nyújt a 3MF fájlok írásához." +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "Soros kommunikációs könyvtár" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Szimuláció nézet" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "Támogató könyvtár a gyorsabb matematikához" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for file metadata and streaming" +#~ msgstr "Támogató könyvtár a fájl metaadatokhoz és továbbításához" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "Támogató könyvtár a 3MF fájlok kezeléséhez" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "Támogató könyvtár az STL fájlok kezeléséhez" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling triangular meshes" +#~ msgstr "Támogató könyvtár a háromszög hálók kezeléséhez" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "Támogató könyvtár a tudományos számítások számára" + +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y max" + +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y min" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "ZeroConf felderítő könyvtár" diff --git a/resources/i18n/hu_HU/fdmextruder.def.json.po b/resources/i18n/hu_HU/fdmextruder.def.json.po index c6ed075997..39c05a8a58 100644 --- a/resources/i18n/hu_HU/fdmextruder.def.json.po +++ b/resources/i18n/hu_HU/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2020-03-24 09:27+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -41,6 +41,10 @@ msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Záró G-Code az extruderhez" @@ -61,6 +65,10 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Extruder Y végállása" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Az Extruder Elsődleges X Pozíciója" @@ -129,6 +137,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Fúvóka ID" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Fúvóka X eltolás" @@ -137,6 +149,10 @@ msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Fúvóka Y eltolás" +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Ez a kezdeti g-code akkor kerül végrehajtásra, ha az extruder bekapcsol." @@ -157,6 +173,10 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "A nyomtatáshoz extruder szerelvényt használ. Több extrudernél használatos." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "" + msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "A fúvóka belső átmérője. Akkor változtasd meg ezt az értéket, ha nem szabványos méretű fúvókát használsz." @@ -200,3 +220,7 @@ msgstr "A fúvóka eltolásának mértéke az Y koordináta irányában." msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "A kezdeti Y koordináta, mikor az extrudert bekapcsoljuk." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "" diff --git a/resources/i18n/hu_HU/fdmprinter.def.json.po b/resources/i18n/hu_HU/fdmprinter.def.json.po index 8fb0801e5d..87c0ba11d2 100644 --- a/resources/i18n/hu_HU/fdmprinter.def.json.po +++ b/resources/i18n/hu_HU/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2020-03-24 09:43+0100\n" "Last-Translator: Nagy Attila \n" "Language-Team: AT-VLOG\n" @@ -21,6 +21,10 @@ msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" msgstr "" +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "" + msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" @@ -33,6 +37,10 @@ msgctxt "material_no_load_move_factor description" msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." msgstr "" +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "" + msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "Azon egész vonalirányok listája, amelyeket akkor kell használni, amikor a felső felületi rétegek vonal, vagy cikcakk mintáját használjuk.A lista elemeit egymás után használjuk a rétegek előre haladtával, és amikor a végére ér, előlről kezdi. A lista elemit vesszővel választjuk el, és a teljes lista szögletes zárójelben van. Az alapértelmezett lista üres ami azt is jelenti, hogy az alapértelmezett 45 és 135 fokos szögeket hasznájuk." @@ -93,6 +101,10 @@ msgctxt "adaptive_layer_height_enabled description" msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "Az adaptív rétegek kiszámítják a szükséges rétegmagasságokat a modell alakjától függően." +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "" + msgctxt "infill_wall_line_count description" msgid "" "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" @@ -157,6 +169,10 @@ msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Egyidőben" +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "" + msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Az összes beállítás, ami befolyásolja a nyomtatvány felbontását és minőségét. Ezekek a beállítások hatással vannak a minőségre és a nyomtatási sebességre." @@ -293,6 +309,74 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "Alsó kéreg eltávolítási szélesség" +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "" + msgctxt "bottom_thickness label" msgid "Bottom Thickness" msgstr "Alsó vastagság" @@ -437,6 +521,14 @@ msgctxt "brim_width label" msgid "Brim Width" msgstr "Perem szélesség" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "" + msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" msgstr "Tárgyasztal tapadás" @@ -477,6 +569,10 @@ msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" msgstr "" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -517,6 +613,10 @@ msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "Parancssor beállításai" +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "" + msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Körkörös" @@ -621,6 +721,10 @@ msgctxt "cooling label" msgid "Cooling" msgstr "Hűtés" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "" + msgctxt "infill_pattern option cross" msgid "Cross" msgstr "Kereszt" @@ -709,6 +813,14 @@ msgctxt "bridge_settings_enabled description" msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "Érzékelje a hidakat, és módosítsa a nyomtatási sebességet, az adagolást és a ventilátorbeállításokat, a nyomtatásuk idejére." +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "" + msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "" @@ -833,6 +945,10 @@ msgctxt "dual label" msgid "Dual Extrusion" msgstr "Duál extrudálás" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + msgctxt "machine_shape option elliptic" msgid "Elliptic" msgstr "Elliptikus (kör)" @@ -925,6 +1041,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Engedélyezi a szivárgáspajzsot. Ez létrehoz egy héjat a modell körül, úgy, hogy az nem ér a modellhez, azonban a fej visszaálláskor, az esetlegesen fúvókából kicsöppenő anyagmaradványokat 'letörli' ebben a héjban." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." msgstr "" @@ -989,6 +1109,10 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "A kiterjedt felfűzés megkísérli felfűzni a nyílt lyukakat a hálóban úgy, hogy a lyukakat érintő poligonokat bezárja. Ez a funkció jelentősen növelheti a feldolgozási időt." +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "" + msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" msgstr "Extra kitöltési falszám" @@ -1001,6 +1125,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Egy extra anyagmennyiség, amivel több anyagot tol vissza a fejbe fúvókaváltás után." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Extruder kezdő X helyzet" @@ -1097,6 +1225,10 @@ msgctxt "skin_material_flow_layer_0 description" msgid "Flow compensation on bottom lines of the first layer" msgstr "" +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "infill_material_flow description" msgid "Flow compensation on infill lines." msgstr "Áramláskompenzálás a kitöltés nyomtatásánál." @@ -1105,6 +1237,10 @@ msgctxt "support_interface_material_flow description" msgid "Flow compensation on lines of support roof or floor." msgstr "Áramláskompenzálás a támasz alsó/felső rétegének nyomtatásánál." +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "Áramláskompenzálás a felső kéreg réteg nyomtatásánál." @@ -1129,6 +1265,10 @@ msgctxt "support_material_flow description" msgid "Flow compensation on support structure lines." msgstr "Áramláskompenzálás a támasz nyomtatásánál." +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "" + msgctxt "wall_0_material_flow_layer_0 description" msgid "Flow compensation on the outermost wall line of the first layer." msgstr "" @@ -1185,6 +1325,10 @@ msgctxt "material_flush_purge_speed label" msgid "Flush Purge Speed" msgstr "" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" @@ -1305,6 +1449,18 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "Fokozatos támasz kitöltési lépések" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "" @@ -1333,6 +1489,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "" + msgctxt "group_outer_walls label" msgid "Group Outer Walls" msgstr "Külső falak csoportosítása" @@ -1697,6 +1857,10 @@ msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" msgstr "Kezdeti nyomtatási hőmérséklet" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" msgstr "Belső fal gyorsulás" @@ -1733,6 +1897,10 @@ msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "" + msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" msgstr "" @@ -1921,6 +2089,10 @@ msgctxt "line_width label" msgid "Line Width" msgstr "Vonalvastagság" +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "" + msgctxt "infill_pattern option lines" msgid "Lines" msgstr "Vonalak" @@ -2019,6 +2191,10 @@ msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "" + msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" @@ -2135,6 +2311,10 @@ msgctxt "meshfix_maximum_travel_resolution label" msgid "Maximum Travel Resolution" msgstr "Maximális utazási felbontás" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + msgctxt "machine_max_acceleration_x description" msgid "Maximum acceleration for the motor of the X-direction" msgstr "Maximális gyorsulás az X tengelyen" @@ -2195,6 +2375,10 @@ msgctxt "slicing_tolerance option middle" msgid "Middle" msgstr "Középső" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "" + msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "Minimális formaszélesség" @@ -2235,10 +2419,18 @@ msgctxt "cool_min_layer_time label" msgid "Minimum Layer Time" msgstr "Minimális rétegidő" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "" + msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "" + msgctxt "minimum_polygon_circumference label" msgid "Minimum Polygon Circumference" msgstr "Minimális sokszög kerület" @@ -2299,6 +2491,10 @@ msgctxt "minimum_roof_area description" msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." msgstr "" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + msgctxt "min_feature_size description" 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 Line Width." msgstr "" @@ -2319,6 +2515,10 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "Forma fedél magasság" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "" + msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" @@ -2339,6 +2539,10 @@ msgctxt "skirt_line_count description" msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." msgstr "A szoknyavonalak számának növelése, kisméretű tárgyak esetén segíthet az extruderben a megvelelő olvadókamra nyomás előállításában.Ha az érték 0, akkor a szoknya letiltódik." +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "" + msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "Az első réteg vonalszélességének szorzója. Ennek a növelésével javíthatjuk a tapadást a tárgyasztalhoz." @@ -2359,6 +2563,10 @@ msgctxt "adhesion_type option none" msgid "None" msgstr "Nincs" +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "" + msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "Nincs" @@ -2403,10 +2611,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Fúvóka ID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Fúvóka hossza" - msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Fúvókaváltási extra visszatolt anyag" @@ -2495,6 +2699,10 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Egyesével" +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "" + msgctxt "retraction_hop_only_when_collides description" msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." msgstr "Csak akkor végez Z emelést, ha olyan nyomtatott részek felett mozog, amiket vízszintes mozgással nem lehet elkerülni." @@ -2531,6 +2739,14 @@ msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "Külső fal gyorsulás" +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "" + msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "Külső fali extruder" @@ -2555,6 +2771,18 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Külső fal sebesség" +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "" + msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Külső fal tisztítási távolság" @@ -2575,13 +2803,13 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "Falkinyúlások szöge" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Falkinyúlás sebessége" +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "A kinyúló falak a normál nyomtatási sebesség százalékos arányában adjuk meg." +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "" msgctxt "wipe_pause description" msgid "Pause after the unretract." @@ -2603,6 +2831,10 @@ msgctxt "bridge_fan_speed_3 description" msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "A harmadik hídréteg nyomtatásakor használt ventillátor sebesség százalékos értékben megadva." +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "" + msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "A szeletelt rétegekben lévő sokszögeket, amelyek kerülete kisebb, mint ez az összeg, kiszűrjük. Az alacsonyabb értékek magasabb felbontású hálóhoz vezetnek a szeletelési idő költségén. Elsősorban nagy felbontású SLA nyomtatókhoz és nagyon apró, sok részlettel rendelkező 3D modellekhez készült." @@ -2611,6 +2843,10 @@ msgctxt "support_tree_angle_slow label" msgid "Preferred Branch Angle" msgstr "" +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "" + msgctxt "wall_transition_filter_deviation description" msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." msgstr "" @@ -2651,6 +2887,10 @@ msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" msgstr "" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Előtorony minimális térfogat" @@ -2683,6 +2923,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Nyomtatási gyorsulás" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Nyomtatás löket" @@ -2711,6 +2955,10 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Nyomtasson egy tornyot a nyomtatandó tárgy mellett, amely abban segít, hogy a fejben lévő anyagváltást végre tudja hajtani. Kinyomtatja az előtoronyba a fejben marad előző alapanyag maradványokat, így már kitisztult fúvókával tudja a nyomtatást folytatni a nyomtatandó testen." +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + msgctxt "infill_support_enabled description" msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." msgstr "Csak ott nyomtasson kitöltő szerkezeteket, ahol a felső modellrésznek szüksége van alátámasztásra. Ennek az engedélyezése csökkenti a nyomtatási időt, illetve az anyagszükségletet, azonban a tárgyak belső szilárdsága egyenetlen lehet." @@ -2803,6 +3051,18 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "Tutajalap hűtés" +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "" + msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" msgstr "Tutajalap-vonalak közötti távolság" @@ -2843,6 +3103,26 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Tutaj hűtés" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "" + msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" msgstr "" @@ -2907,6 +3187,22 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Tutaj simítás" +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "" + msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" msgstr "" @@ -3071,6 +3367,10 @@ msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" msgstr "" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -3135,6 +3435,18 @@ msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" msgstr "" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "" + msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" msgstr "" @@ -3143,6 +3455,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Sarok varrat preferálás" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "" + msgctxt "user_defined_print_order_enabled label" msgid "Set Print Sequence Manually" msgstr "Nyomtatási sorrend kézi beállítása" @@ -3359,6 +3675,10 @@ msgctxt "machine_start_gcode label" msgid "Start G-code" msgstr "Induló g-kód" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "z_seam_type description" msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." msgstr "Az egyes rétegekben az egyes útvonalak kiindulási pontja. Ha az egymást követő rétegek útvonalai ugyanabban a pontban kezdődnek, egy ún. függőleges varrat jelenik meg a nyomtatvány felületén. Ha a felhasználó ezt egy megadott helyhez igazítja, a varratot egyszerűbben el tudja távolítani.Van lehetőség arra is, hogy a kezdőpontok véletlenszerűen helyezkedjenek el, így azok kevésbé lesznek észrevehetők. Ha a legrövidebb utat választja, a nyomtatási folyamat gyorsabb lesz." @@ -3487,6 +3807,10 @@ msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" msgstr "Támasz kitöltés gyorsulás" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "" + msgctxt "support_infill_extruder_nr label" msgid "Support Infill Extruder" msgstr "Támasz kitöltés extruder" @@ -3679,6 +4003,10 @@ msgctxt "support_z_distance label" msgid "Support Z Distance" msgstr "Támasz Z távolság" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "" + msgctxt "support_interface_priority option support_lines_overwrite_interface_area" msgid "Support lines preferred" msgstr "" @@ -3771,6 +4099,10 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "A belső falak nyomtatása alatt használt gyorsulás." +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "" + msgctxt "acceleration_infill description" msgid "The acceleration with which infill is printed." msgstr "A kitöltés nyomtatása alatt használt gyorsulási érték." @@ -3787,6 +4119,14 @@ msgctxt "raft_base_acceleration description" msgid "The acceleration with which the base raft layer is printed." msgstr "A tutajalap nyomtatásához kapcsolódó gyorsulási érték." +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_support_bottom description" msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." msgstr "A támaszok legalsó rétegeinek nyomtatása alatt használt gyorsulás.Ha alacsonyabb gyorsulást választ, akkor segíti a támasz tapadását a modellek tetején." @@ -3855,6 +4195,22 @@ msgctxt "acceleration_travel description" msgid "The acceleration with which travel moves are made." msgstr "A fej utaztatása során használt gyorsulás." +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." msgstr "A vasalás során használt adagolási mennyiség. Ez segít megtartani a nyomást az olvadókamrában, ami elősegíti a felületi hézagok kitöltését.A beállításkor figyelembe kell venni, hogy a nyomás ne legyen túl nagy, mivel ez túlzott anyagáramláshoz vezethet, és elmosódásokat hozhat létre a felületen." @@ -3863,6 +4219,30 @@ msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." msgstr "Az átfedés százalékos mértéke a kitöltés és a falak között.Meghatározása a kitöltés vonalszélességének százalékában történik.Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kitöltéshez." +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "Az átfedés mértéke a kitöltés és a falak között. Az enyhe átfedés lehetővé teszi, hogy a falak szorosan kapcsolódjanak a kitöltéshez." @@ -3963,10 +4343,22 @@ msgctxt "adaptive_layer_height_variation_step description" msgid "The difference in height of the next layer height compared to the previous one." msgstr "A következő réteg magasságának különbsége az előzőhöz képest." +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "" + msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." msgstr "A vasalási vonalak közötti távolság." +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "" + msgctxt "travel_avoid_distance description" msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "A fúvóka és a már kinyomtatott részek közötti távolság, ha kerülő útvonalakat használunk." @@ -4075,6 +4467,10 @@ msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "Az az extruder szerelvény, ami a kitöltést nyomtatja. Ez csak multi-extruderes nyomtatóknál használható." +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "" + msgctxt "wall_x_extruder_nr description" msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "Az az extruder, amit a belső falak nyomtatásához használunk.Ezt csak multi extruder esetén használhatjuk." @@ -4135,6 +4531,10 @@ msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." msgstr "A modell vízszintes részeinek feletti magasság, amelyet formaként nyomtatunk." +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "" + msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." msgstr "Az a magasság, ahol a ventillátorok a normál hűtési sebességgel forognak.Az alacsonyabb rétegekben a hűtés még kissebb, és fokozatosan növekedik a sebessége a normál szintig, ahogy eléri ezt a magasságot." @@ -4143,10 +4543,6 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "A fúvóka csúcsa és az állványzat közötti magasságkülönbség (A keresztező X és/vagy az Y tengely állványzata)" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "A fúvóka csúcsa és a nyomtatófej legalacsonyabb része (fűtőblokk) közötti magasságkülönbség." - msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." msgstr "Az a magasságkülönbség, amit a Z emeléskor emelkedik a tengely extruder váltás után." @@ -4247,6 +4643,10 @@ msgctxt "top_skin_preshrink description" msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." msgstr "Az eltávolítandó felső kéreg felület legnagyobb szélessége. Az ettől kissebb felületek el fognak tűnni. Ez segíthet korlátozni a modell ferde felületeinek felső részének nyomtatásához felhasznált időt és anyagot." +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "" + msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." msgstr "Az a réteg, ahol a ventillátor eléri a normál hűtési sebességet.Ha a normál hűtési magasság be van állítva, akkor ezt a rétegszámot kiszámítja a szoftver." @@ -4319,10 +4719,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a belső falak nyomtatása alatt." +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "" + msgctxt "jerk_infill description" msgid "The maximum instantaneous velocity change with which infill is printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a kitöltés nyomtatása alatt." +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "A maximális pillanatnyi sebességváltozás változtatása a támaszok alsó felületének nyomtatása alatt." @@ -4459,6 +4871,14 @@ msgctxt "support_bottom_stair_step_min_slope description" msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." msgstr "" +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "" + msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "Egy adott réteg nyomtatásában eltöltött idő. Ha a réteg nagyon kicsi, akkor ez arra készteti a nyomtatót, hogy lelassuljon annyira, hogy a réteg nyomtatási ideje ezt az időtartamot elérje. Ez azért szükséges, hogy az adott réteg le tudjon hűlni annyira, hogy a következő réteg megfelelően tudjon ráépülni. A réteg nyomtatási ideje lehet ettől az értéktől rövidebb, ha a fejemelés le van tiltva, vagy ha a minimális sebesség ettől eltérő értéket ad meg." @@ -4491,6 +4911,10 @@ msgctxt "bottom_layers description" msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "Az alsó rétegek száma. Az alsó vastagság alapján számítva ezt az értéket egész számra kerekíti." +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "" + msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" @@ -4527,6 +4951,10 @@ msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." msgstr "A támasz alá nyomtatandó peremvonalak száma. Több perem vonal javítja a tálcához való tapadást, viszon extra anyagfelhasználást is jelent." +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "" + msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "Ez a szám a tutaj felső rétegeinek száma. Ezek teljesen kitöltött rétegek amiken a modellek nyugszanak. 2 réteg használata sokkal simább első réteget fog eredményezni a modellen, mint ha 1 lenne." @@ -4567,6 +4995,10 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "A fúvóka hegyének külső átmérője." +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "" + msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "" @@ -4619,14 +5051,14 @@ msgctxt "jerk_layer_0 description" msgid "The print maximum instantaneous velocity change for the initial layer." msgstr "A maximális pillanatnyi sebességváltozás változtatása a kezdő rétegen." +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "" + msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." msgstr "A tárgyasztal alakja anélkül, hogy a ténylegesen nem használható területeket figyelembe vennénk." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "" - msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "Azoknak a kialakuló üregeknek a mérete, amik akkor jönnek létre, mikor a kereszt 3D mintában egy adott magasságnál a minta önmagát érinti." @@ -4647,6 +5079,10 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Az a sebesség, amivel a belső falak nyomatásra kerülnek.A belső falak nyomtatási sebességének növelése csökkenti a nyomtatási időt.A javasolt sebességnek a külső falak, és a kitöltés nyomtatási sebessége közötti értékeket adjunk meg." +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "" + msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." msgstr "A hidak felszíni rétegeinek nyomtatási sebessége." @@ -4663,6 +5099,14 @@ msgctxt "raft_base_speed description" msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "A tutajalap nyomtatási sebessége. Ezt meglehetősen lassan kell nyomtatni, mivel a fúvókából kifolyó anyag mennyisége meglehetősen nagy." +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "" + msgctxt "bridge_wall_speed description" msgid "The speed at which the bridge walls are printed." msgstr "Hidak falainak nyomtatási sebessége." @@ -4947,6 +5391,26 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Ez határozza meg, hogy a fejnek a szélekhez képest mennyi a távolsága a hídfal megkezdése előtt. A híd nyomtatásának megkezdése előtt az olvadókamra nyomást csökkentheti, ami így vízszintesebb hídhoz vezethez." +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "" + msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" @@ -4963,6 +5427,10 @@ msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Ez a beállítás korlátozza a minimális extrudálási távolság ablakon belüli visszahúzódások számát. Az ablakon belüli további visszahúzódásokat figyelmen kívül hagyjuk. Ezzel elkerülhető, hogy ugyanazon a szálpozicióban többször visszahúzódjon, mivel ez a nyomtatószálat ellapíthatja, eldarálhatja az extruder adagolókeréknél és ez elakadási problémákat okozhat." @@ -5191,10 +5659,22 @@ msgctxt "support_tree_max_diameter label" msgid "Trunk Diameter" msgstr "" +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "" + msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "" + msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" msgstr "Szintátfedések egyesítése" @@ -5319,8 +5799,16 @@ msgctxt "shell label" msgid "Walls" msgstr "" +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "" + msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." msgstr "" msgctxt "meshfix_fluid_motion_enabled description" @@ -5359,6 +5847,14 @@ msgctxt "bridge_wall_material_flow description" msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "A hídfalak nyomtatásakor az extrudált anyag mennyiségét meg kell szorozni ezzel az értékkel." +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "" + msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "A második hídréteg nyomtatásakor az extrudált anyag mennyiségét megszorozzuk ezzel az értékkel." @@ -5383,6 +5879,10 @@ msgctxt "wall_transition_length description" 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 lines." msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "" + msgctxt "wipe_hop_enable description" msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." msgstr "" @@ -5479,6 +5979,10 @@ msgctxt "support_interface_line_width description" msgid "Width of a single line of support roof or floor." msgstr "A padló vagy a tető egyetlen vonalszélessége." +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." msgstr "A nyomtatás tetjén lévő területek egyetlen sorának szélessége." @@ -5655,6 +6159,10 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Z varrat igazítás" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "Z varrat helyzet" @@ -5675,6 +6183,10 @@ msgctxt "support_xy_overrides_z option z_overrides_xy" msgid "Z overrides X/Y" msgstr "Z felülbírálás X/Y-ra" +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + msgctxt "infill_pattern option zigzag" msgid "Zig Zag" msgstr "Cikcakk" @@ -5727,14 +6239,34 @@ msgstr "fej átpozícionálás" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "A modell első és második rétege között átfedést hoz létre Z irányban.Ez képes kompenzálni azt a hibát, ami az első rétegben keletkezett. Ezt a hibát az okozza, hogy a tutaj légrésben az első réteg benyúlik, így nem alakul ki a tökéletes első réteg.Az első réteg feletti összes rész magasságát érinti ez a beállítás." +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle Length" +#~ msgstr "Fúvóka hossza" + +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "Fúvóka méret" + #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Csak a modell külső falaihoz nyomtat Peremet. Ez csökkenti a perem nyomtatási költségét, és nem szükséges a belső részeken eltávolítani majd azt, továbbá a test letapadását nem csökkenti jelentősen." +#~ msgctxt "wall_overhang_speed_factor label" +#~ msgid "Overhanging Wall Speed" +#~ msgstr "Falkinyúlás sebessége" + +#~ msgctxt "wall_overhang_speed_factor description" +#~ msgid "Overhanging walls will be printed at this percentage of their normal print speed." +#~ msgstr "A kinyúló falak a normál nyomtatási sebesség százalékos arányában adjuk meg." + #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" #~ msgstr "Interfész felosztás" +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "A fúvóka csúcsa és a nyomtatófej legalacsonyabb része (fűtőblokk) közötti magasságkülönbség." + #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "Amikor a szeletelő ellenőrzi, hogy hol tart a támasz a modell alatt vagy fölött, szükség esetén a megadott magasságú lépéseket teszi meg. Az alacsonyabb értékek lassabb szeleteést okoznak, míg a magasabb érték a normál támasz kinyomtatását eredményezhetik olyan helyeken, ahol támasz interfészt kellene nyomtatni." diff --git a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po b/resources/i18n/hu_HU/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4..0000000000 --- a/resources/i18n/hu_HU/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/it_IT/cura.po b/resources/i18n/it_IT/cura.po index d95f15080c..6306342c16 100644 --- a/resources/i18n/it_IT/cura.po +++ b/resources/i18n/it_IT/cura.po @@ -170,6 +170,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "File 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Lettore 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Writer 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Plug-in Writer 3MF danneggiato." @@ -245,6 +253,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "File AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Lettore 3MF" + msgctxt "@label" msgid "Abort" msgstr "Interrompi" @@ -281,6 +293,10 @@ msgctxt "@button" msgid "Accept" msgstr "Accetto" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." + msgctxt "@label" msgid "Account synced" msgstr "Account sincronizzato" @@ -421,6 +437,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Consenti l'invio di dati anonimi" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Consente il caricamento e la visualizzazione dei file codice G." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Chiedi sempre" @@ -577,6 +597,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e reset configurazione" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Effettua il backup o ripristina la configurazione." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Esegui il backup e la sincronizzazione delle impostazioni materiale e dei plugin" @@ -749,6 +773,14 @@ msgctxt "@label" msgid "Checking..." msgstr "Verifica in corso..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controlla disponibilità di aggiornamenti firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e suggerimenti." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." @@ -829,6 +861,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "File G-Code compresso" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lettore codice G compresso" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Writer codice G compresso" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Modifiche configurazione" @@ -901,6 +941,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Collegato tramite cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulta la community di UltiMaker." @@ -1036,6 +1080,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crea progetti di stampa in Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Creazione del backup in corso..." @@ -1048,10 +1096,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Backup Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Backup Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Profilo Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Lettore profilo Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Writer profilo Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "File 3MF Progetto Cura" @@ -1081,6 +1141,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versione Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1365,6 +1437,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Abilitato" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "Codice G fine" @@ -1453,6 +1529,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Estendi UltiMaker Cura con plugin e profili del materiale." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Estensione che consente la post-elaborazione degli script creati da utente" + msgctxt "@label" msgid "Extruder" msgstr "Estrusore" @@ -1601,6 +1681,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Aggiornamento del firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Controllo aggiornamento firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aggiornamento firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Impossibile aggiornare il firmware: il collegamento con la stampante non supporta l’aggiornamento del firmware." @@ -1700,6 +1788,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "File G-Code" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Lettore profilo codice G" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Lettore codice G" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Writer codice G" + msgctxt "@label" msgid "G-code flavor" msgstr "Versione codice G" @@ -1848,6 +1948,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Se la stampante non è nell’elenco, leggere la guida alla risoluzione dei problemi per la stampa in rete" +msgctxt "name" +msgid "Image Reader" +msgstr "Lettore di immagine" + msgctxt "@action:button" msgid "Import" msgstr "Importa" @@ -2132,6 +2236,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista sinistra" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lettore legacy profilo Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informa gli sviluppatori che si è verificato un errore." @@ -2212,6 +2320,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Registri" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Persa connessione con la stampante" @@ -2220,6 +2332,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Impostazioni macchina" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Azione Impostazioni macchina" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Macchine" @@ -2236,6 +2352,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "File di Stampa Makerbot" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Scrittore di File di Stampa Makerbot" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter non è riuscito a salvare nel percorso designato." @@ -2292,6 +2412,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Gestisci i plugin UltiMaker Cura e i profili del materiale qui. Accertarsi di mantenere i plugin aggiornati e di eseguire regolarmente il backup dell'impostazione." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gestisce le connessioni di rete alle stampanti UltiMaker in rete." + msgctxt "@label" msgid "Manufacturer" msgstr "Produttore" @@ -2304,6 +2432,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mercato" +msgctxt "name" +msgid "Marketplace" +msgstr "Mercato" + msgctxt "@action:label" msgid "Material" msgstr "Materiale" @@ -2320,6 +2452,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Colore materiale" +msgctxt "name" +msgid "Material Profiles" +msgstr "Profili del materiale" + msgctxt "@label" msgid "Material Type" msgstr "Tipo di materiale" @@ -2364,6 +2500,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modalità" +msgctxt "name" +msgid "Model Checker" +msgstr "Controllo modello" + msgctxt "@info:title" msgid "Model Errors" msgstr "Errori modello" @@ -2380,6 +2520,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controlla" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase di controllo" + msgctxt "@action:button" msgid "Monitor print" msgstr "Monitora stampa" @@ -2821,6 +2965,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Impostazioni per modello" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Utilità impostazioni per modello" + msgid "Perspective" msgstr "Prospettiva" @@ -2946,6 +3094,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Post-elaborazione" +msgctxt "name" +msgid "Post Processing" +msgstr "Post-elaborazione" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in di post-elaborazione" @@ -2962,6 +3114,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Prepara" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase di preparazione" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Preparazione in corso..." @@ -2982,6 +3138,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Anteprima" +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase di anteprima" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre di innesco" @@ -3226,6 +3386,106 @@ msgctxt "@label" msgid "Properties" msgstr "Proprietà" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornisce una fase di controllo in Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Fornisce una normale visualizzazione a griglia compatta." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornisce una fase di preparazione in Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornisce una fase di anteprima in Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Fornisce supporto per l'esportazione dei profili Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornisce supporto per l'importazione dei profili Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Fornisce supporto per l'importazione di profili da file G-Code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornisce il supporto per la lettura di file 3MF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornisce il supporto per la lettura di file X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornisce supporto per la lettura dei file modello." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Fornisce il supporto per la scrittura di file 3MF e UCP." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fornisce supporto per la scrittura di pacchetti nel formato MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornisce le impostazioni per modello." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Fornisce la vista a raggi X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." + msgctxt "@label" msgid "PyQt version" msgstr "Versione PyQt" @@ -3256,12 +3516,16 @@ msgstr "Coda piena" msgctxt "@label" msgid "Queued" -msgstr "Accodato" +msgstr "Coda di stampa" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Chiudere %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Legge il codice G da un archivio compresso." + msgctxt "@button" msgid "Recommended" msgstr "Consigliata" @@ -3314,6 +3578,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Unità rimovibile" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plugin dispositivo di output unità rimovibile" + msgctxt "@action:button" msgid "Remove" msgstr "Rimuovi" @@ -3472,7 +3740,7 @@ msgstr "Salva il progetto" msgctxt "@text" msgid "Save the .umm file on a USB stick." -msgstr "Salva il file .umm su una chiavetta USB." +msgstr "Salvare il file .umm su una chiavetta USB." msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" @@ -3594,6 +3862,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Invio dei materiali alla stampante" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Logger sentinella" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Libreria di comunicazione seriale" @@ -3802,6 +4074,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Accedi alla piattaforma UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Vista simulazione" + msgctxt "@tooltip" msgid "Skin" msgstr "Rivestimento esterno" @@ -3830,6 +4106,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seziona automaticamente alla modifica delle impostazioni." +msgctxt "name" +msgid "Slice info" +msgstr "Informazioni su sezionamento" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Sezionamento non riuscito" @@ -3846,6 +4126,10 @@ msgctxt "@label" msgid "Solid" msgstr "Solido" +msgctxt "name" +msgid "Solid View" +msgstr "Visualizzazione compatta" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Visualizzazione compatta" @@ -3940,6 +4224,10 @@ msgctxt "@label" msgid "Strength" msgstr "Resistenza" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Invia informazioni su sezionamento anonime Può essere disabilitato tramite le preferenze." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiale esportato correttamente su %1" @@ -3984,6 +4272,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Blocco supporto" +msgctxt "name" +msgid "Support Eraser" +msgstr "Cancellazione supporto" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Riempimento del supporto" @@ -4214,9 +4506,9 @@ msgstr "L’ugello inserito in questo estrusore." msgctxt "@label" msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "Il modello del materiale di riempimento della stampa:\n\n" -"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine.\n\n" -"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale.\n\n" +msgstr "La configurazione del materiale di riempimento della stampa:" +"Per stampe rapide di modelli non funzionali scegli linea, zig zag o riempimento fulmine." +"Per le parti funzionali non soggette a forti sollecitazioni, si consiglia griglia o triangolo o tri-esagonale." "Per le stampe 3D funzionali che richiedono un'elevata resistenza in più direzioni utilizzare cubico, suddivisione cubica, quarto cubico, ottetto e giroide." msgctxt "@info:tooltip" @@ -4501,6 +4793,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentativo di ripristinare un backup di Cura senza dati o metadati appropriati." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Reader" + msgctxt "@button" msgid "Troubleshooting" msgstr "Ricerca e riparazione dei guasti" @@ -4521,10 +4817,22 @@ msgctxt "@label" msgid "Type" msgstr "Tipo" +msgctxt "name" +msgid "UFP Reader" +msgstr "Lettore UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Writer UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Stampa USB" +msgctxt "name" +msgid "USB printing" +msgstr "Stampa USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Account UltiMaker" @@ -4541,6 +4849,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Pacchetto formato UltiMaker" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Connessione di rete UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Pacchetto verificato UltiMaker" @@ -4549,6 +4861,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plug-in verificato UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Azioni della macchina UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Stampante UltiMaker" @@ -4561,6 +4877,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Impossibile aggiungere il profilo." @@ -4734,6 +5054,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Aggiornamento in corso..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Aggiorna le configurazioni da Cura 5.6 a Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carica il firmware personalizzato" @@ -4770,6 +5198,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Valore" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Aggiornamento della versione da 2.1 a 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Aggiornamento della versione da 2.2 a 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Aggiornamento della versione da 2.5 a 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Aggiornamento della versione da 2.6 a 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Aggiornamento della versione da 2.7 a 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Aggiornamento della versione da 3.0 a 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Aggiornamento della versione da 3.2 a 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Aggiornamento della versione da 3.3 a 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Aggiornamento della versione da 3.4 a 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Aggiornamento della versione da 3.5 a 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Aggiornamento della versione da 4.0 a 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Aggiornamento della versione da 4.1 a 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Aggiornamento della versione da 4.11 a 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Aggiornamento della versione da 4.13 a 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Aggiornamento della versione da 4.2 a 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Aggiornamento della versione da 4.3 a 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Aggiornamento della versione da 4.4 a 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Aggiornamento della versione da 4.5 a 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Aggiornamento versione da 4.6.2 a 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Aggiornamento della versione da 4.7 a 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Aggiornamento della versione da 4.8 a 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Aggiornamento della versione da 4.9 a 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Aggiornamento della versione da 5.2 a 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Aggiornamento versione da 5.3 a 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Aggiornamento versione da 5.4 a 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Aggiornamento della versione 5.6 a 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualizza le stampanti in Digital Factory" @@ -4886,6 +5422,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Larghezza (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Scrive il codice G in un archivio compresso." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Scrive il codice G in un file." + msgctxt "@label" msgid "X (Width)" msgstr "X (Larghezza)" @@ -4898,6 +5442,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista ai raggi X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista ai raggi X" @@ -4910,6 +5458,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "File X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Lettore X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profondità)" @@ -4934,7 +5486,7 @@ msgstr "Si stanno per rimuovere tutte le stampanti da Cura. Questa azione non pu msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Si sta per rimuovere la stampante {0} da Cura. Questa azione non può essere annullata.\nContinuare?" +msgstr[0] "Si sta per rimuovere {0} stampante da Cura. Questa azione non può essere annullata.\nContinuare?" msgstr[1] "Si stanno per rimuovere {0} stampanti da Cura. Questa azione non può essere annullata.\nContinuare?" msgctxt "@info:status" @@ -5056,554 +5608,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Impossibile scaricare i plugin {}" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gestisce le connessioni di rete per le stampanti interconnesse UltiMaker." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Connessione di rete UltiMaker" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Fornisce supporto per l'importazione di profili da file G-Code." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Lettore profilo codice G" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Fornisce una normale visualizzazione a griglia compatta." - -msgctxt "name" -msgid "Solid View" -msgstr "Visualizzazione compatta" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plugin CuraEngine per risistemare gradualmente il flusso e limitare balzi a flusso elevato" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Lettore 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Accetta i G-Code e li invia ad una stampante. I plugin possono anche aggiornare il firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Stampa USB" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controlla disponibilità di aggiornamenti firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Controllo aggiornamento firmware" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Gestisce le estensioni per l'applicazione e consente di ricercare le estensioni nel sito Web UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Mercato" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Effettua il backup o ripristina la configurazione." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Backup Cura" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Fornisce un modo per modificare le impostazioni della macchina (come il volume di stampa, la dimensione ugello, ecc.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Azione Impostazioni macchina" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Aggiorna le configurazioni da Cura 2.5 a Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Aggiornamento della versione da 2.5 a 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Aggiorna le configurazioni da Cura 4.7 a Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Aggiornamento della versione da 4.7 a 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Aggiorna le configurazioni da Cura 4.4 a Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Aggiornamento della versione da 4.4 a 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Aggiorna le configurazioni da Cura 3.0 a Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Aggiornamento della versione da 3.0 a 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Aggiorna le configurazioni da Cura 4.11 a Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Aggiornamento della versione da 4.11 a 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Aggiorna le configurazioni da Cura 4.1 a Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Aggiornamento della versione da 4.1 a 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Aggiorna le configurazioni da Cura 2.6 a Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Aggiornamento della versione da 2.6 a 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Aggiorna le configurazioni da Cura 4.6.0 a Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Aggiornamento versione da 4.6.0 a 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Aggiorna le configurazioni da Cura 3.3 a Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Aggiornamento della versione da 3.3 a 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Aggiorna le configurazioni da Cura 4.8 a Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Aggiornamento della versione da 4.8 a 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Aggiorna le configurazioni da Cura 4.5 a Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Aggiornamento della versione da 4.5 a 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Aggiorna le configurazioni da Cura 4.2 a Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Aggiornamento della versione da 4.2 a 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Aggiorna le configurazioni da Cura 3.2 a Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Aggiornamento della versione da 3.2 a 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinazione sconsigliata. Monta il BB core nello slot 1 (a sinistra) per una maggiore affidabilità." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Aggiornamento della versione da 4.3 a 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Aggiorna le configurazioni da Cura 5.6 a Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "File di stampa Makerbot Sketch" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Aggiornamento della versione 5.6 a 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Cerca stampante" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Aggiorna le configurazioni da Cura 2.1 a Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Questo è un file di progetto di Cura Universal. Desideri aprirlo come Cura Universal Project o importarne i modelli?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Aggiornamento della versione da 2.1 a 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Esportare il pacchetto per l'assistenza tecnica" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Configurazioni aggiornamenti da Cura 5.3 a Cura 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Impossibile inviare i dati del modello al motore. Riprovare o contattare l'assistenza." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Aggiornamento versione da 5.3 a 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Impossibile inviare i dati del modello al motore. Provare a utilizzare un modello meno dettagliato o a ridurre il numero di istanze." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Aggiorna le configurazioni da Cura 4.9 a Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Aggiorna le configurazioni da Cura 5.8 a Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Aggiornamento della versione da 4.9 a 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Aggiorna le configurazioni da Cura 2.7 a Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Aggiornamento della versione 5.8 alla 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Aggiornamento della versione da 2.7 a 3.0" +msgid "3DConnexion mouses" +msgstr "Mouse 3DConnexion" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Aggiorna le configurazioni da Cura 3.5 a Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Permette l'utilizzo di mouse 3D in Cura." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Aggiornamento della versione da 3.5 a 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Durata cambio estrusore" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Aggiorna le configurazioni da Cura 5.2 a Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "Codice G della fase preparatoria dell'estrusore" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Aggiornamento della versione da 5.2 a 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Ribalta l'asse Y dei controlli di manipolazione del modello (riavvio necessario)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Aggiorna le configurazioni da Cura 4.0 a Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Licenza per %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Aggiornamento della versione da 4.0 a 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator + File di stampa" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Aggiorna le configurazioni da Cura 4.3 a Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Desideri ribaltare l'asse Y dei controlli di manipolazione per la traslazione? Questo avrà effetto solo sulle coordinate Y del modello, tutte le altre impostazioni come quelle relative alla testina di stampa del macchinario resteranno invariate e opereranno come in precedenza." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Aggiornamento della versione da 4.13 a 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Aggiorna le configurazioni da Cura 3.4 a Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Aggiornamento della versione da 3.4 a 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Aggiorna le configurazioni da Cura 2.2 a Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "Il Codice G iniziale deve essere per primo" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Aggiornamento della versione da 2.2 a 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Questa configurazione non è disponibile in quanto è stato riscontrato un disallineamento o un altro problema con il core tipo %1. Visita la pagina dell'assistenza per verificare che tipologie di core questo tipo di stampante supporta in relazione ai nuovi slice." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Aggiorna le configurazioni da Cura 4.6.2 a Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Aggiorna le configurazioni da Cura 5.9 a Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Aggiornamento versione da 4.6.2 a 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Aggiornamento versione da 5.9 a 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Configurazioni aggiornamenti da Cura 5.4 a Cura 5.5" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Aggiornamento versione da 5.4 a 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Consente il caricamento e la visualizzazione dei file codice G." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Lettore codice G" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y max (il \"+\" verso il fronte)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Invia informazioni anonime su sezionamento Può essere disabilitato tramite le preferenze." - -msgctxt "name" -msgid "Slice info" -msgstr "Informazioni su sezionamento" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornisce il collegamento a caldo dell'unità rimovibile e il supporto per la scrittura." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plugin dispositivo di output unità rimovibile" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Crea una maglia di cancellazione per bloccare la stampa del supporto in alcune posizioni" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Cancellazione supporto" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Controlla i modelli e la configurazione di stampa per eventuali problematiche di stampa e dai alcuni suggerimenti." - -msgctxt "name" -msgid "Model Checker" -msgstr "Controllo modello" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornisce una fase di preparazione in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase di preparazione" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Fornisce l'anteprima dei dati dei livelli suddivisi in sezioni." - -msgctxt "name" -msgid "Simulation View" -msgstr "Vista simulazione" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornisce il supporto per la lettura di file 3MF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Lettore 3MF" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Fornisce la vista a raggi X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista ai raggi X" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Fornisce azioni macchina per l’aggiornamento del firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aggiornamento firmware" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Fornisce supporto per l'importazione di profili dalle versioni legacy Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lettore legacy profilo Cura" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Estensione che consente la post-elaborazione degli script creati da utente" - -msgctxt "name" -msgid "Post Processing" -msgstr "Post-elaborazione" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Registra determinati eventi in modo che possano essere utilizzati dal segnalatore dei crash" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Logger sentinella" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Fornisce supporto per la scrittura di pacchetti nel formato MakerBot." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Scrittore di File di Stampa Makerbot" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornisce supporto per l'importazione dei profili Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Lettore profilo Cura" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornisce il supporto per la lettura di pacchetti formato UltiMaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Lettore UFP" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Abilita la possibilità di generare geometria stampabile da file immagine 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Lettore di immagine" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornisce il collegamento al back-end di sezionamento CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end CuraEngine" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Scrive il codice G in un archivio compresso." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Writer codice G compresso" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Fornisce azioni macchina per le macchine UltiMaker (come la procedura guidata di livellamento del piano di stampa, la selezione degli aggiornamenti, ecc.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Azioni della macchina UltiMaker" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Legge il codice G da un archivio compresso." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lettore codice G compresso" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornisce una fase di anteprima in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase di anteprima" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Si collega alla Digital Library, consentendo a Cura di aprire file e salvare file in Digital Library." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Fornisce supporto per l'esportazione dei profili Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Writer profilo Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornisce il supporto per la lettura di file X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Lettore X3D" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornisce supporto per la lettura dei file modello." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Reader" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornisce una fase di controllo in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase di controllo" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornisce le impostazioni per modello." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Utilità impostazioni per modello" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Offre la possibilità di leggere e scrivere profili di materiali basati su XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Profili del materiale" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Fornisce il supporto per la scrittura di file 3MF e UCP." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Writer 3MF" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Fornisce il supporto per la scrittura di pacchetti formato UltiMaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Writer UFP" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Scrive il codice G in un file." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Writer codice G" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y mi (il \"-\" verso il retro)" diff --git a/resources/i18n/it_IT/fdmextruder.def.json.po b/resources/i18n/it_IT/fdmextruder.def.json.po index 65cf3564ed..e2062da9fd 100644 --- a/resources/i18n/it_IT/fdmextruder.def.json.po +++ b/resources/i18n/it_IT/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Diametro" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Fine codice G da eseguire quando si passa a questo estrusore." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Estrusore" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventola di raffreddamento stampa estrusore" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Codice G fine estrusore" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Fine codice G da eseguire quando si passa a questo estrusore." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Durata del G-code di fine dell'estrusore" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "Il tempo necessario per eseguire il G-code di fine, quando ci si allontana da questo estrusore." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Assoluto posizione fine estrusore" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posizione X fine estrusore" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posizione Y fine estrusore" @@ -101,41 +68,41 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Posizione Z innesco estrusore" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventola di raffreddamento stampa estrusore" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Codice G avvio estrusore" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Durata del G-code di inizio dell'estrusore" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "Il tempo necessario per eseguire il G-code di inizio, quando si passa a questo estrusore." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" -msgstr "Posizione assoluta avvio estrusore" +msgstr "Assoluto posizione avvio estrusore" + +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "X posizione avvio estrusore" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Y posizione avvio estrusore" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di fine estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID ugello" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Posizione X avvio estrusore" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Posizione Y avvio estrusore" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni specifiche della macchina" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Offset X ugello" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "La coordinata y dell’offset dell’ugello." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Offset Y ugello" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Inizio codice G da eseguire quando si passa a questo estrusore." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa. Utilizzato nell’estrusione multipla." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Il numero di ventole di raffreddamento stampa abbinate a questo estrusore. Modificarlo dal valore predefinito 0 solo quando si ha una ventola di raffreddamento diversa per ciascun estrusore." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Il tempo necessario per eseguire il G-code di fine, quando ci si allontana da questo estrusore." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Il tempo necessario per eseguire il G-code di inizio, quando si passa a questo estrusore." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "La coordinata x della posizione di fine allo spegnimento dell’estrusore." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "La coordinata y dell’offset dell’ugello." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "La coordinata x della posizione di partenza all’accensione dell’estrusore." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "La coordinata y della posizione di fine allo spegnimento dell’estrusore." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "La coordinata y dell’offset dell’ugello." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "La coordinata y della posizione di partenza all’accensione dell’estrusore." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lunghezza ugello" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La differenza di altezza tra la punta dell'ugello e la parte più bassa della testina di stampa." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Durata cambio estrusore" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "Codice G della fase preparatoria dell'estrusore" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "Codice G della fase preparatoria da eseguire prima di passare a questo estrusore." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Quando si utilizza una configurazione multi-utensile, questo valore rappresenta il tempo di cambio utensile in secondi. Questo valore verrà aggiunto al tempo stimato in base al numero di cambi che si verificano." diff --git a/resources/i18n/it_IT/fdmprinter.def.json.po b/resources/i18n/it_IT/fdmprinter.def.json.po index 3ea126ad48..14cbd7fb38 100644 --- a/resources/i18n/it_IT/fdmprinter.def.json.po +++ b/resources/i18n/it_IT/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Macchina" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" +msgstr "Come generare la prime tower:
  • Normale: creare un contenitore in cui vengono preparati i materiali secondari
  • Impilata: creare una prime tower più intervallata possibile. Ciò farà risparmiare tempo e filamento, ma è possibile solo se i materiali utilizzati aderiscono tra loro
" -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Impostazioni macchina specifiche" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo di macchina" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Il nome del modello della stampante 3D in uso." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostra varianti macchina" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Codice G avvio" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "I comandi codice G da eseguire all’avvio, separati da " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Codice G fine" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "I comandi codice G da eseguire alla fine, separati da " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID materiale" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Il GUID del materiale. È impostato automaticamente." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Tipo di materiale" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "Il tipo di materiale utilizzato." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Marca del materiale" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "La marca del materiale utilizzato." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diametro" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Attendi il riscaldamento del piano di stampa" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Attendi il riscaldamento dell’ugello" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Includi le temperature del materiale" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Includi temperatura piano di stampa" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Larghezza macchina" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "La larghezza (direzione X) dell’area stampabile." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profondità macchina" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "La profondità (direzione Y) dell’area stampabile." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altezza macchina" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "L’altezza (direzione Z) dell’area stampabile." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma del piano di stampa" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rettangolare" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ellittica" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiale piano di stampa" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Il materiale del piano di stampa installato sulla stampante." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cristallo" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alluminio" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Piano di stampa riscaldato" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Indica se la macchina ha un piano di stampa riscaldato." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Tenere sempre nota dello strumento attivo" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Tenere nota dello strumento attivo dopo l'invio di comandi temporanei allo strumento non attivo. Richiesto per la stampa con doppio estrusore con Smoothie o altro firmware con comandi modali dello strumento." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Origine del centro" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Numero di estrusori" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Numero di estrusori abilitati" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diametro esterno ugello" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Il diametro esterno della punta dell'ugello." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Lunghezza ugello" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Angolo ugello" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lunghezza della zona di riscaldamento" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Abilita controllo temperatura ugello" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocità di riscaldamento" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocità di raffreddamento" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo minimo temperatura di standby" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versione codice G" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Il tipo di codice G da generare." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (volumetrica)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retrazione firmware" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Condivisione del riscaldatore da parte degli estrusori" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Estrusori condividono ugello" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Indica se gli estrusori condividono un singolo ugello piuttosto che avere ognuno il proprio. Se impostato su true, si prevede che lo script gcode di avvio della stampante imposti tutti gli estrusori su uno stato di retrazione iniziale noto e mutuamente compatibile (nessuno o un solo filamento non retratto); in questo caso lo stato di retrazione iniziale è descritto, per estrusore, dal parametro 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retrazione iniziale ugello condivisa" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "La quantità di filamento di ogni estrusore che si presume sia stata retratta dalla punta dell'ugello condiviso al termine dello script gcode di avvio stampante; il valore deve essere uguale o maggiore della lunghezza della parte comune dei condotti dell'ugello." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Aree non consentite" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Aree ugello non consentite" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Poligono testina macchina e ventola" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altezza gantry" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID ugello" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diametro ugello" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset con estrusore" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posizione Z innesco estrusore" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posizione assoluta di innesco estrusore" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocità massima X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Indica la velocità massima del motore per la direzione X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocità massima Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Indica la velocità massima del motore per la direzione Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocità massima Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Indica la velocità massima del motore per la direzione Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocità massima E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Indica la velocità massima del filamento." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Accelerazione massima X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Indica l’accelerazione massima del motore per la direzione X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Accelerazione massima Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Indica l’accelerazione massima del motore per la direzione Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Accelerazione massima Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Indica l’accelerazione massima del motore per la direzione Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Accelerazione massima filamento" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Indica l’accelerazione massima del motore del filamento." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Accelerazione predefinita" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y predefinito" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z predefinito" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Indica il jerk predefinito del motore per la direzione Z." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk filamento predefinito" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Indica il jerk predefinito del motore del filamento." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passi per millimetro (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passi per millimetro (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passi per millimetro (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passi per millimetro (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X in direzione positiva" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y in direzione positiva" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z in direzione positiva" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocità di alimentazione minima" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Indica la velocità di spostamento minima della testina di stampa." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diametro ruota del tirafilo" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Il diametro della ruota che guida il materiale nel tirafilo." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Scala la velocità della ventola a 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualità" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Altezza dello strato" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Altezza dello strato iniziale" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Larghezza della linea" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Larghezza delle linee perimetrali" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Indica la larghezza di una singola linea perimetrale." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Larghezza delle linee della parete esterna" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Larghezza delle linee della parete interna" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Larghezza delle linee superiore/inferiore" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Indica la larghezza di una singola linea superiore/inferiore." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Larghezza delle linee di riempimento" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Indica la larghezza di una singola linea di riempimento." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Larghezza delle linee dello skirt/brim" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Indica la larghezza di una singola linea dello skirt o del brim." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Larghezza delle linee di supporto" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Indica la larghezza di una singola linea di supporto." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Larghezza della linea dell’interfaccia di supporto" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Larghezza delle linee di supporto superiori" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Indica la larghezza di una singola linea di supporto superiore." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Larghezza della linea di supporto inferiore" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Indica la larghezza di una singola linea di supporto inferiore." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Larghezza della linea della torre di innesco" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Indica la larghezza di una singola linea della torre di innesco." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Larghezza linea strato iniziale" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano." - -msgctxt "shell label" -msgid "Walls" -msgstr "Pareti" - -msgctxt "shell description" -msgid "Shell" -msgstr "Guscio" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Estrusore pareti" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Estrusore parete esterna" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Estrusore parete interna" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Spessore delle pareti" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Numero delle linee perimetrali" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lunghezza transizione parete" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Conteggio distribuzione parete" - -msgctxt "wall_distribution_count description" -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 "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Angolo di soglia di transizione parete" - -msgctxt "wall_transition_angle description" -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 "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distanza di filtro transizione parete" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margine filtro di transizione parete" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distanza del riempimento parete esterna" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Inserto parete esterna" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Ottimizzazione sequenza di stampa pareti" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordinamento parete" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Dall'interno all'esterno" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dall'esterno all'interno" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Parete supplementare alternativa" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Larghezza minima della linea perimetrale" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Larghezza minima della linea perimetrale pari" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Larghezza minima della linea perimetrale dispari" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Stampa pareti sottili" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Dimensioni minime della feature" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Larghezza minima della linea perimetrale sottile" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Espansione orizzontale" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Espansione orizzontale dello strato iniziale" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Espansione orizzontale dei fori" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diametro massimo di espansione orizzontale dei fori" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Allineamento delle giunzioni a Z" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Specificato dall’utente" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Il più breve" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Casuale" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Angolo più acuto" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posizione della cucitura in Z" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Indietro a sinistra" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Indietro" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Indietro a destra" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Destra" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Avanti a destra" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Avanti" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Avanti a sinistra" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sinistra" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Giunzione Z X" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Giunzione Z Y" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferenze angolo giunzione" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nessuno" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Nascondi giunzione" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Esponi giunzione" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Nascondi o esponi giunzione" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Occultamento intelligente" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Riferimento giunzione Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superiore / Inferiore" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Estrusore rivestimento superficie superiore" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Strati di rivestimento superficie superiore" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Larghezza linea rivestimento superficie superiore" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Configurazione del rivestimento superficie superiore" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Configurazione degli strati superiori." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordine superficie superiore monotonico" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direzioni linea rivestimento superficie superiore" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Estrusore superiore/inferiore" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Spessore dello strato superiore/inferiore" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Spessore dello strato superiore" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Strati superiori" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Spessore degli strati inferiori" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Strati inferiori" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Layer inferiori iniziali" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato a un numero intero." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Configurazione dello strato superiore/inferiore" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Indica la configurazione degli strati superiori/inferiori." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Strato iniziale configurazione inferiore" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "La configurazione al fondo della stampa sul primo strato." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Collega poligoni superiori/inferiori" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordine superiore/inferiore monotonico" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direzioni delle linee superiori/inferiori" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Larghezza superiore e inferiore delle regioni più piccole" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Piccola area inferiore/superiore sulla superficie" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Nessun rivest. est. negli interstizi a Z" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Numero di pareti di rivestimento esterno supplementari" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Abilita stiratura" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Stiramento del solo strato più elevato" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Configurazione di stiratura" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Configurazione utilizzata per la stiratura della superficie superiore." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrica" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordine di stiratura monotonico" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Spaziatura delle linee di stiratura" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Distanza tra le linee di stiratura." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Flusso di stiratura" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Inserto di stiratura" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Un brim intorno a un modello potrebbe toccarne un altro in un punto non desiderato. Ciò rimuove tutto il brim entro questa distanza dai modelli che ne sono sprovvisti." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Distanza da mantenere dai bordi del modello. La stiratura fino in fondo sino al bordo del reticolo può causare la formazione di un bordo frastagliato nella stampa." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocità di stiratura" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Fattore indicante la quantità di filamento che viene compressa tra l'alimentatore e la camera dell'ugello, usato per stabilire a quale distanza spostare il materiale per un cambio di filamento." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Velocità alla quale passare sopra la superficie superiore." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Un elenco di direzioni linee intere da usare quando gli strati rivestimento superficie superiore utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Accelerazione di stiratura" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Un elenco di direzioni linee intere da usare quando gli strati superiori/inferiori utilizzano le linee o la configurazione zig zag. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi)." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "L’accelerazione con cui viene effettuata la stiratura." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk stiratura" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Percentuale di sovrapposizione del rivestimento esterno" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sovrapposizione del rivestimento esterno" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Larghezza rimozione rivestimento" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Larghezza rimozione rivestimento superiore" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Larghezza rimozione rivestimento inferiore" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distanza prolunga rivestimento esterno" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distanza prolunga rivestimento superiore" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Distanza prolunga rivestimento inferiore" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Angolo massimo rivestimento esterno per prolunga" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Nelle superfici superiore e/o inferiore dell'oggetto con un angolo più grande di questa impostazione, il rivestimento esterno non sarà prolungato. Questo evita il prolungamento delle aree del rivestimento esterno strette che vengono create quando la pendenza della superficie del modello è quasi verticale. Un angolo di 0° è orizzontale e non causa il prolungamento di alcun rivestimento esterno, mentre un angolo di 90° è verticale e causa il prolungamento di tutto il rivestimento esterno." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Larghezza minima rivestimento esterno per prolunga" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Le aree del rivestimento esterno inferiori a questa non vengono prolungate. In tal modo si evita di prolungare le aree del rivestimento esterno strette che vengono create quando la superficie del modello presenta un’inclinazione quasi verticale." - -msgctxt "infill label" -msgid "Infill" -msgstr "Riempimento" - -msgctxt "infill description" -msgid "Infill" -msgstr "Riempimento" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Estrusore riempimento" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densità del riempimento" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Regola la densità del riempimento della stampa." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distanza tra le linee di riempimento" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Configurazione di riempimento" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-esagonale" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cubo" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Suddivisione in cubi" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Ottagonale" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto di cubo" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Incrociata" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Incrociata 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Fulmine" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Collegamento delle linee di riempimento" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Collega poligoni di riempimento" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direzioni delle linee di riempimento" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Un elenco di direzioni linee intere. Gli elementi dall’elenco sono utilizzati in sequenza con il progredire degli strati e, al raggiungimento della fine dell’elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l’intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza i valori angolari predefiniti (45 e 135 gradi per le linee e la configurazione zig zag e 45 gradi per tutte le altre configurazioni)." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Offset X riempimento" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Un elenco di poligoni con aree alle quali l’ugello non può accedere." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Il riempimento si sposta di questa distanza lungo l'asse X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Un elenco di poligoni con aree alle quali la testina di stampa non può accedere." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Offset Y riempimento" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posizione assoluta di innesco estrusore" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Avvio con riempimento casuale" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variazione massima strati adattivi" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Dimensione della topografia dei layer adattivi" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Moltiplicatore delle linee di riempimento" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Dimensione variazione strati adattivi" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Conteggio pareti di riempimento supplementari" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Aggiunge pareti supplementari intorno alla zona di riempimento. Queste pareti possono ridurre l’abbassamento delle linee del rivestimento esterno superiore/inferiore, pertanto saranno necessari meno strati di rivestimento esterno superiore/inferiore per ottenere la stessa qualità al costo del materiale supplementare." "Questa funzione può essere abbinata a Collega poligoni riempimento per collegare tutto il riempimento in un unico percorso di estrusione senza necessità di avanzamenti o arretramenti, se configurata correttamente." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Guscio suddivisione in cubi" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Percentuale di sovrapposizione del riempimento" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sovrapposizione del riempimento" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distanza del riempimento" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Fasi di riempimento graduale" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altezza fasi di riempimento graduale" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Riempimento prima delle pareti" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Area minima riempimento" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supporto riempimento" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Angolo di sbalzo del riempimento" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Spessore del supporto del bordo del rivestimento" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Layer di supporto del bordo del rivestimento" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Angolo di supporto riempimento fulmine" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Angolo di sbalzo riempimento fulmine" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Angolo eliminazione riempimento fulmine" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Angolo di raddrizzatura riempimento fulmine" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." - -msgctxt "material label" -msgid "Material" -msgstr "Materiale" - -msgctxt "material description" -msgid "Material" -msgstr "Materiale" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura di stampa preimpostata" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura volume di stampa" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura di stampa" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Indica la temperatura usata per la stampa." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura di stampa Strato iniziale" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "La temperatura utilizzata per la stampa del primo strato." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura di stampa iniziale" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura di stampa finale" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificatore della velocità di raffreddamento estrusione" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura piano di stampa preimpostata" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura piano di stampa" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura piano di stampa Strato iniziale" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato per il primo strato." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Adesione" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Tendenza di adesione" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Tendenza di adesione superficiale." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno espressa in percentuale delle larghezze delle linee del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore al 50% può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già avere superato la parte centrale della parete." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia superficiale" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Regolare l’entità della sovrapposizione tra le pareti e (i punti finali delle) linee centrali del rivestimento esterno. Una leggera sovrapposizione consente alle pareti di essere saldamente collegate al rivestimento. Si noti che, data una larghezza uguale del rivestimento esterno e della linea perimetrale, qualsiasi percentuale superiore alla metà della parete può già causare il superamento della parete da parte del rivestimento esterno in quanto, in quel punto, la posizione dell’ugello dell’estrusore del rivestimento esterno può già aver superato la parte centrale della parete." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia superficiale." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala per la compensazione della contrazione" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala orizzontale per la compensazione della contrazione" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Fattore di scala verticale per la compensazione della contrazione" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Materiale cristallino" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posizione retratta anti fuoriuscita di materiale" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocità di retrazione anti fuoriuscita del materiale" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posizione di retrazione prima della rottura" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocità di retrazione prima della rottura" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura di preparazione alla rottura" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posizione di retrazione per la rottura" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocità di retrazione per la rottura" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura di rottura" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocità di svuotamento dello scarico" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Lunghezza di svuotamento dello scarico" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocità di svuotamento di fine filamento" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Lunghezza di svuotamento di fine filamento" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) durante la sostituzione di una bobina vuota con una nuova dello stesso materiale." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Durata di posizionamento massima" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fattore di spostamento senza carico" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Fattore indicante la quantità di filamento che viene compressa tra l'alimentatore e la camera dell'ugello, usato per stabilire a quale distanza spostare il materiale per un cambio di filamento." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Flusso" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Flusso della parete" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensazione del flusso sulle linee perimetrali." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Flusso della parete esterna" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensazione del flusso sulla linea perimetrale più esterna." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Flusso pareti interne" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Flusso della parete esterna della superficie superiore" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Flusso della parete interna della superficie superiore" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Flusso superiore/inferiore" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensazione del flusso sulle linee superiore/inferiore." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Flusso rivestimento esterno superficie superiore" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Flusso di riempimento" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensazione del flusso sulle linee di riempimento." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Flusso dello skirt/brim" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensazione del flusso sulle linee dello skirt o del brim." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Flusso del supporto" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensazione del flusso sulle linee di supporto." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Flusso interfaccia di supporto" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Flusso supporto superiore" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensazione del flusso sulle linee di supporto superiore." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Flusso supporto inferiore" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensazione del flusso sulle linee di supporto inferiore." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Flusso torre di innesco" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensazione del flusso sulle linee della torre di innesco." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Flusso dello strato iniziale" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Flusso della parete interna dello strato iniziale" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Flusso della parete esterna dello strato iniziale" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Flusso inferiore dello strato iniziale" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensazione del flusso sulle linee inferiori del primo strato" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura di Standby" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "È un materiale di supporto" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa." - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocità" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocità" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocità di stampa" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Indica la velocità alla quale viene effettuata la stampa." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocità di riempimento" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Indica la velocità alla quale viene stampato il riempimento." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocità di stampa della parete" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocità di stampa della parete interna" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocità di stampa della parete esterna della superficie superiore" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocità di stampa della parete interna della superficie superiore" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocità del rivestimento superficie" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Indica la velocità di stampa degli strati superiori." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocità di stampa delle parti superiore/inferiore" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocità di stampa del supporto" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocità di riempimento del supporto" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocità interfaccia supporto" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocità di stampa della parte superiore (tetto) del supporto" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocità di stampa della parte inferiore del supporto" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocità della torre di innesco" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocità degli spostamenti" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocità di stampa dello strato iniziale" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "La velocità dello strato iniziale. È consigliabile un valore inferiore per migliorare l'adesione al piano di stampa. Non influisce sulle strutture di adesione del piano di stampa stesse, come brim e raft." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocità di stampa strato iniziale" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocità di spostamento dello strato iniziale" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocità dello skirt/brim" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocità di sollevamento Z" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Numero di strati stampati a velocità inferiore" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Rapporto di equalizzazione del flusso" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Abilita controllo accelerazione" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Abilita l'accelerazione spostamenti" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Accelerazione di stampa" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "L’accelerazione con cui avviene la stampa." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Accelerazione riempimento" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "L’accelerazione con cui viene stampato il riempimento." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Accelerazione parete" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Accelerazione parete esterna" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Accelerazione parete interna" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Accelerazione della parete esterna della superficie superiore" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Accelerazione della parete interna della superficie superiore" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Accelerazione del rivestimento superficie superiore" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Accelerazione strato superiore/inferiore" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Accelerazione supporto" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Accelerazione riempimento supporto" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Accelerazione interfaccia supporto" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Accelerazione parte superiore del supporto" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Accelerazione parte inferiore del supporto" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Accelerazione della torre di innesco" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Accelerazione spostamenti" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Accelerazione dello strato iniziale" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Indica l’accelerazione dello strato iniziale." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Accelerazione di stampa strato iniziale" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Indica l’accelerazione durante la stampa dello strato iniziale." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Accelerazione spostamenti dello strato iniziale" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Accelerazione skirt/brim" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Abilita controllo jerk" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Abilita jerk spostamenti" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk stampa" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Indica il cambio della velocità istantanea massima della testina di stampa." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk riempimento" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk parete" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk parete esterna" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk parete interna" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk parete interna della superficie superiore" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk parete esterna della superficie superiore" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk del rivestimento superficie superiore" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk strato superiore/inferiore" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk supporto" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk riempimento supporto" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk interfaccia supporto" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk parte superiore del supporto" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk parte inferiore del supporto" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk della torre di innesco" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk spostamenti" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk dello strato iniziale" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk di stampa strato iniziale" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk spostamenti dello strato iniziale" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk dello skirt/brim" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim." - -msgctxt "travel label" -msgid "Travel" -msgstr "Spostamenti" - -msgctxt "travel description" -msgid "travel" -msgstr "spostamenti" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Abilitazione della retrazione" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrazione al cambio strato" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distanza di retrazione" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocità di retrazione" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocità di retrazione" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocità di innesco dopo la retrazione" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo la retrazione" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Distanza minima di retrazione" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Numero massimo di retrazioni" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Finestra di minima distanza di estrusione" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modalità Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Disinserita" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tutto" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Non su superficie esterna" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Non nel rivestimento" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Nel riempimento" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Massima distanza di combing senza retrazione" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrazione prima della parete esterna" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Arretra sempre quando si sposta per iniziare una parete esterna." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Aggiramento delle parti stampate durante gli spostamenti" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Aggiramento dei supporti durante gli spostamenti" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distanza di aggiramento durante gli spostamenti" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Avvio strato X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Avvio strato Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z Hop durante la retrazione" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z Hop solo su parti stampate" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altezza Z Hop" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z Hop dopo cambio estrusore" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Z Hop dopo cambio altezza estrusore" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Raffreddamento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Raffreddamento" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Abilitazione raffreddamento stampa" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocità della ventola" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocità regolare della ventola" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocità massima della ventola" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Soglia velocità regolare/massima della ventola" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocità iniziale della ventola" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Velocità regolare della ventola in altezza" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Velocità regolare della ventola in corrispondenza dello strato" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo minimo per strato" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocità minima" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Sollevamento della testina" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura di stampa per piccoli strati" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo." - -msgctxt "support label" -msgid "Support" -msgstr "Supporto" - -msgctxt "support description" -msgid "Support" -msgstr "Supporto" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Generazione supporto" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Estrusore del supporto" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Estrusore riempimento del supporto" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Estrusore del supporto primo strato" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Estrusore interfaccia del supporto" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Estrusore parte superiore del supporto" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Estrusore parte inferiore del supporto" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Struttura di supporto" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normale" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Albero" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Angolo massimo dei rami" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diametro del ramo" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diametro del tronco" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Angolo del diametro del ramo" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Posizionamento supporto" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Contatto con il Piano di Stampa" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "In Tutti i Possibili Punti" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Angolo dei rami preferito" - -msgctxt "support_tree_angle_slow description" -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 "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento del diametro sul modello" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altezza minima rispetto al modello" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diametro dello strato iniziale" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densità del ramo" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diametro della punta" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limite di portata dei rami" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Intervallo ottimale dei rami" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Raccomandazione sull'entità della possibile distanza dei rami dai punti che supportano. I rami possono violare questo valore per raggiungere la loro destinazione (piano di stampa o parte piatta del modello). Ridurre questo valore può rendere il supporto più robusto, ma incrementa la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferenza di appoggio" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Sul piano di stampa, quando possibile" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Sul modello, se necessario" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Angolo di sbalzo del supporto" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Configurazione del supporto" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Incrociata" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Numero delle linee perimetrali supporto" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Numero delle linee perimetrali del tetto di supporto" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Numero delle linee perimetrali inferiori di supporto" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Collegamento linee supporto" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Collegamento Zig Zag supporto" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densità del supporto" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distanza tra le linee del supporto" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distanza tra le linee del supporto dello strato iniziale" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direzione delle linee di riempimento supporto" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L’elenco predefinito è vuoto, vale a dire che utilizza l'angolo predefinito di 0 gradi." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Abilitazione brim del supporto" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Larghezza del brim del supporto" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Numero di linee del brim del supporto" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distanza Z supporto" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distanza superiore supporto" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "È la distanza tra la parte superiore del supporto e la stampa." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distanza inferiore supporto" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distanza X/Y supporto" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Priorità distanza supporto" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y esclude Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z esclude X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distanza X/Y supporto minima" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altezza gradini supporto" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Larghezza massima gradino supporto" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Angolo di pendenza minimo gradini supporto" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "La pendenza minima dell'area alla quale ha effetto la creazione dei gradini. Valori bassi dovrebbero semplificare la rimozione del supporto sulle pendenze meno profonde, ma in realtà dei valori bassi possono generare risultati molto irrazionali sulle altre parti del modello." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distanza giunzione supporto" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Espansione orizzontale supporto" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Spessore dello strato di riempimento di supporto" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Fasi di riempimento graduale del supporto" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altezza fasi di riempimento graduale del supporto" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Area minima supporto" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Abilitazione interfaccia supporto" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Abilitazione parte inferiore supporto" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Spessore interfaccia supporto" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Spessore parte superiore (tetto) del supporto" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Spessore parte inferiore del supporto" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densità interfaccia supporto" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Regola la densità del riempimento della stampa." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Regola la densità delle parti superiori e inferiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densità parte superiore (tetto) del supporto" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Consente di regolare la densità della struttura di supporto utilizzata per generare le punte dei rami. Un valore più alto si traduce in sbalzi migliori, ma i supporti saranno più difficili da rimuovere. Usa il tetto del supporto per valori molto alti o assicurati che la densità di supporto sia altrettanto alta nella parte superiore." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Regola la densità della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Regolare il diametro del filamento utilizzato. Abbinare questo valore al diametro del filamento utilizzato." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densità parte inferiore del supporto" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distanza della linea di supporto inferiore" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Configurazione interfaccia supporto" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Configurazione della parte superiore (tetto) del supporto" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Configurazione della parte inferiore del supporto" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linee" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Griglia" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triangoli" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentriche" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zig Zag" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Area minima interfaccia supporto" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Area minima parti superiori supporto" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Area minima parti inferiori supporto" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Espansione orizzontale interfaccia supporto" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Espansione orizzontale parti superiori supporto" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Entità di offset applicato alle parti superiori del supporto." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Espansione orizzontale parti inferiori supporto" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Entità di offset applicato alle parti inferiori del supporto." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Priorità interfaccia di supporto" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Supporto preferito" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interfaccia preferita" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Linee di supporto preferite" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linee di interfaccia preferite" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Entrambi si sovrappongono" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direzioni della linea dell'interfaccia di supporto" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direzioni delle linee di supporto superiori" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direzioni della larghezza della linea di supporto inferiore" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Elenco di direzioni linee intere da utilizzare. Gli elementi dall'elenco sono utilizzati in sequenza con il progredire dei layers e, al raggiungimento della fine dell'elenco, la sequenza ricomincia dall’inizio. Le voci elencate sono separate da virgole e l'intero elenco è racchiuso tra parentesi quadre. L'elenco predefinito è vuoto, vale a dire che utilizza gli angoli predefiniti (alterna tra 45 e 135 gradi se le interfacce sono abbastanza spesse oppure 90 gradi)." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Override velocità della ventola" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocità della ventola del rivestimento esterno supportato" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizzo delle torri" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diametro della torre" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Corrisponde al diametro di una torre speciale." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diametro supportato dalla torre" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Angolazione della parte superiore (tetto) della torre" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Maglia supporto di discesa" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "La scena è dotata di maglie di supporto" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Adesione piano di stampa" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Adesione" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Abilitazione blob di innesco" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posizione X innesco estrusore" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posizione Y innesco estrusore" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Tipo di adesione piano di stampa" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nessuno" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Estrusore adesione piano di stampa" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Estrusore skirt/brim" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Estrusore della base del raft" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa del primo strato del raft. Utilizzato nell’estrusione multipla." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Estrusore intermedio del raft" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa dello strato intermedio del raft. Utilizzato nell’estrusione multipla." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Estrusore superiore del raft" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Numero di linee dello skirt" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altezza dello skirt" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distanza dello skirt" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa." -"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Lunghezza minima dello skirt/brim" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Larghezza del brim" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Numero di linee del brim" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Corrisponde al numero di linee utilizzate per un brim. Più linee brim migliorano l’adesione al piano di stampa, ma con riduzione dell'area di stampa." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distanza del Brim" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Distanza orizzontale tra la linea del primo brim e il profilo del primo layer della stampa. Un piccolo interstizio può semplificare la rimozione del brim e allo stesso tempo fornire dei vantaggi termici." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim in sostituzione del supporto" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Posizione del brim" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Stampa un brim all'esterno, all'interno o in entrambi i punti del modello. A seconda di quest'ultimo, tale scelta consente di ridurre la quantità di brim da rimuovere in seguito, garantendo al contempo una corretta adesione al piano di stampa." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Solo all'esterno" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Solo all'interno" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Ovunque" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Margine per evitare il brim" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Un brim intorno a un modello potrebbe toccarne un altro in un punto non desiderato. Ciò rimuove tutto il brim entro questa distanza dai modelli che ne sono sprovvisti." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Brim smart" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margine extra del raft" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Margine extra della base del raft" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se la base del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno spazio per la stampa." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Margine extra della parte centrale del raft" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se la parte centrale del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Margine extra della parte superiore del raft" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se la parte superiore del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Rimuovi angoli interni raft" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Rimuovere gli angoli interni dalla base del raft" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Rimuovere gli angoli interni dalla base del raft, facendolo diventare convesso." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Rimuovere gli angoli interni dalla parte centrale del raft" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Rimuovere gli angoli interni dalla parte centrale del raft, facendolo diventare convesso." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Rimuovere gli angoli interni dalla parte superiore del raft" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Rimuove gli angoli interni dalla parte superiore del raft, facendolo diventare convesso." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Smoothing raft" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Levigatura della base del raft" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni nel contorno della base del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Levigatura della parte centrale del raft" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte centrale del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Levigatura della parte superiore del raft" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte superiore del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Traferro del raft" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Sovrapposizione Primo Strato" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Il primo e il secondo strato del modello vanno sovrapposti nella direzione Z per compensare il filamento perso nello spazio vuoto. Tutti i modelli al di sopra del primo strato saranno spostati verso il basso da questa quantità.\nSi può notare che a volte il secondo strato viene stampato al di sotto dello strato iniziale a causa di questa impostazione. Si tratta di un comportamento previsto." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Spessore della base del raft" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Larghezza delle linee dello strato di base del raft" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Spaziatura delle linee dello strato di base del raft" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Strati intermedi del raft" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Spessore dello strato intermedio del raft" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "È lo spessore dello strato intermedio del raft." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Larghezza delle linee dello strato intermedio del raft" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Spaziatura dello strato intermedio del raft" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Strati superiori del raft" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Spessore dello strato superiore del raft" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "È lo spessore degli strati superiori del raft." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Larghezza delle linee superiori del raft" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Spaziatura superiore del raft" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Ordine monotono della superficie della parte superiore del raft" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Stampare le linee della superficie della parte superiore del raft in un ordine che fa sì che si sovrappongano sempre alle linee adiacenti in un'unica direzione. Ciò richiede un tempo di stampa leggermente superiore, ma conferisce alla superficie un aspetto più consistente, visibile anche sulla superficie inferiore del modello." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Conteggio delle pareti del raft" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "Il numero di contorni da stampare intorno al modello lineare del raft." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Conteggio parete base del raft" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Conteggio delle pareti della parte centrale del raft" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati centrali del raft." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Conteggio delle parete della parte superiore del raft" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati superiori del raft." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocità di stampa del raft" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Indica la velocità alla quale il raft è stampato." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocità di stampa della base del raft" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocità di stampa raft intermedio" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocità di stampa parte superiore del raft" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Accelerazione di stampa del raft" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Indica l’accelerazione con cui viene stampato il raft." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Accelerazione di stampa della base del raft" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Accelerazione di stampa raft intermedio" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Accelerazione di stampa parte superiore del raft" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk stampa del raft" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Indica il jerk con cui viene stampato il raft." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk di stampa della base del raft" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk di stampa raft intermedio" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk di stampa parte superiore del raft" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocità della ventola per il raft" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Indica la velocità di rotazione della ventola per il raft." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocità della ventola per la base del raft" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocità della ventola per il raft intermedio" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocità della ventola per la parte superiore del raft" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Doppia estrusione" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Abilitazione torre di innesco" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Tipi di prime tower" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
  • Normal: create a bucket in which secondary materials are primed
  • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
" -msgstr "Come generare la prime tower:
  • Normale: creare un contenitore in cui vengono preparati i materiali secondari
  • Impilata: creare una prime tower più intervallata possibile. Ciò farà risparmiare tempo e filamento, ma è possibile solo se i materiali utilizzati aderiscono tra loro
" - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normale" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Impilata" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Dimensioni torre di innesco" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Indica la larghezza della torre di innesco." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume minimo torre di innesco" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Distanza massima tra i rami della prime tower" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "La lunghezza massima dei rami stampabili a mezz'aria." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posizione X torre di innesco" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "Indica la coordinata X della posizione della torre di innesco." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posizione Y torre di innesco" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Indica la coordinata Y della posizione della torre di innesco." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Ugello pulitura inattiva sulla torre di innesco" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Dopo la stampa della torre di innesco con un ugello, pulisce il materiale fuoriuscito dall’altro ugello sulla torre di innesco." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base della Torre di Primerizzazione" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Dopo il passaggio della macchina da un estrusore all’altro, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. In tal modo si previene il rilascio di materiale fuoriuscito dall’ugello sull’esterno di una stampa." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Dimensione della Base della Torre di Primerizzazione" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altezza della Base della Torre di Primerizzazione" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Pendenza della Base della Torre di Primerizzazione" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Interlinea del Radeau della Torre di Primerizzazione" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Abilitazione del riparo materiale fuoriuscito" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Angolo del riparo materiale fuoriuscito" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distanza del riparo materiale fuoriuscito" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distanza di retrazione cambio ugello" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocità di retrazione cambio ugello" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocità di retrazione cambio ugello" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocità innesco cambio ugello" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correzioni delle maglie" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Rendere le maglie più indicate alla stampa 3D." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unione dei volumi in sovrapposizione" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Rimozione di tutti i fori" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Ricucitura completa dei fori" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Mantenimento delle superfici scollegate" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sovrapposizione maglie" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rimuovi intersezione maglie" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Rimozione maglie alternate" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Rimuovere i primi strati vuoti" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Risoluzione massima" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Risoluzione massima di spostamento" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Deviazione massima" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Deviazione massima dell'area di estrusione" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Abilita movimento fluido" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distanza di spostamento del movimento del fluido" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "I punti di distanza vengono spostati per risistemare il percorso" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Breve distanza di movimento del fluido" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "I punti di distanza vengono spostati per risistemare il percorso" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Angolo di movimento del fluido" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modalità speciali" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modi non tradizionali di stampare i modelli." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequenza di stampa" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Indica se stampare tutti i modelli un layer alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità \"uno per volta\" è possibile solo se a) è abilitato solo un estrusore b) tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e che tutti i modelli siano più bassi della distanza tra l'ugello e gli assi X/Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tutto" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Tutti contemporaneamente" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Uno alla volta" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Imposta manualmente la sequenza di stampa" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Indica tutte le impostazioni che influiscono sulla risoluzione della stampa. Queste impostazioni hanno un elevato impatto sulla qualità (e il tempo di stampa)" msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Consente di ordinare l'elenco degli oggetti per impostare manualmente la sequenza di stampa. Il primo oggetto dell'elenco verrà stampato per primo." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Maglia di riempimento" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Parete supplementare alternativa" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificazione dell'elaborazione delle maglie" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina la priorità di questa mesh quando si considera la sovrapposizione multipla delle mesh di riempimento. Per le aree con la sovrapposizione di più mesh di riempimento verranno utilizzate le impostazioni della mesh con la classificazione più alta. Una mesh di riempimento con una classificazione più alta modificherà il riempimento delle mesh di riempimento con una classificazione inferiore e delle mesh normali." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ritaglio maglia" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Stampo" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Larghezza minimo dello stampo" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altezza parte superiore dello stampo" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Angolo stampo" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supporto maglia" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Maglia anti-sovrapposizione" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modalità superficie" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normale" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superficie" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Entrambi" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Stampa del contorno esterno con movimento spiraliforme" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Levigazione dei profili con movimento spiraliforme" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Estrusione relativa" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Sperimentale" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funzionalità che non sono state ancora precisate completamente." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolleranza di sezionamento" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolleranza verticale negli strati sezionati. Di norma i contorni di uno strato vengono generati prendendo le sezioni incrociate fino al centro dello spessore di ciascun livello (intermedie). In alternativa, ogni strato può avere le aree che cadono all'interno del volume per tutto lo spessore dello strato (esclusive) oppure uno strato presenta le aree che rientrano all'interno di qualsiasi punto dello strato (inclusive). Le aree inclusive conservano la maggior parte dei dettagli; le esclusive generano la soluzione migliore, mentre le intermedie restano più vicine alla superficie originale." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Intermedia" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Esclusiva" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusiva" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Ottimizzazione spostamenti riempimento" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafico della temperatura del flusso" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circonferenza minima dei poligoni" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Generazione della struttura a incastro" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Larghezza della trave a incastro" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "La larghezza delle travi della struttura ad incastro." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientamento della struttura ad incastro" - -msgctxt "interlocking_orientation description" -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 "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Conteggio degli strati delle travi ad incastro" - -msgctxt "interlocking_beam_layer_count description" -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 "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profondità di incastro" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Prevenzione incastro dei bordi" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Rottura del supporto in pezzi di grandi dimensioni" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Dimensioni frammento supporto" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Conteggio linee di rottura supporto" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Abilitazione del riparo paravento" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distanza X/Y del riparo paravento" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limitazione del riparo paravento" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Piena altezza" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitazione in altezza" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altezza del riparo paravento" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Rendi stampabile lo sbalzo" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Massimo angolo modello" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Area foro di sbalzo massima" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "L'area massima di un foro nella base del modello prima che venga rimossa da Rendi stampabile lo sbalzo. I fori più piccoli di questo verranno mantenuti. Un valore di 0 mm² riempirà i fori nella base del modello." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Abilitazione della funzione di Coasting" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume di Coasting" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume minimo prima del Coasting" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocità di Coasting" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Dimensioni cavità 3D incrociata" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Immagine di densità del riempimento incrociato" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Immagine di densità del riempimento incrociato per il supporto" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Abilitazione del supporto conico" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Angolo del supporto conico" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Larghezza minima del supporto conico" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rivestimento esterno incoerente (fuzzy)" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Fuzzy Skin solo all'esterno" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Distorce solo i profili delle parti, non i fori di queste." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densità del rivestimento esterno incoerente (fuzzy)" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Offset massimo dell'estrusione di compensazione del flusso" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fattore di compensazione del flusso" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento in un secondo di estrusione." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uso di strati adattivi" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Gli strati adattivi calcolano l’altezza degli strati in base alla forma del modello." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variazione massima strati adattivi" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Dimensione variazione strati adattivi" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "La differenza in altezza dello strato successivo rispetto al precedente." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensione della topografia dei layer adattivi" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Angolo parete di sbalzo" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocità parete di sbalzo" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Abilita impostazioni ponte" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Lunghezza minima parete ponte" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Le pareti non supportate di lunghezza inferiore a questo valore verranno stampate utilizzando le normali impostazioni parete. Le pareti non supportate di lunghezza superiore verranno stampate utilizzando le impostazioni parete ponte." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Soglia di supporto rivestimento esterno ponte" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densità massima del riempimento rado del Bridge" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting parete ponte" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocità di stampa della parete ponte" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Indica la velocità alla quale vengono stampate le pareti ponte." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Flusso della parete ponte" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocità di stampa del rivestimento esterno ponte" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Flusso del rivestimento esterno ponte" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densità del rivestimento esterno ponte" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocità della ventola ponte" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Ponte a strati multipli" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocità di stampa del secondo rivestimento esterno ponte" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Flusso del secondo rivestimento esterno ponte" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densità del secondo rivestimento esterno ponte" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocità di stampa del terzo rivestimento esterno ponte" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Flusso del terzo rivestimento esterno ponte" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densità del terzo rivestimento esterno ponte" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocità della ventola del terzo rivestimento esterno ponte" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Pulitura ugello tra gli strati" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Indica se includere nel G-Code la pulitura ugello tra i layer (massimo 1 per layer). L'attivazione di questa impostazione potrebbe influenzare il comportamento della retrazione al cambio layer. Utilizzare le impostazioni di retrazione per pulitura per controllare la retrazione in corrispondenza dei layer in cui sarà in funzione lo script di pulitura." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume di materiale tra le operazioni di pulitura" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Il massimo volume di materiale che può essere estruso prima di iniziare un'altra operazione di pulitura ugello. Se questo valore è inferiore al volume del materiale richiesto in un layer, l'impostazione non ha effetto in questo layer, vale a dire che si limita a una pulitura per layer." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Retrazione per pulitura abilitata" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distanza di retrazione per pulitura" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Entità di innesco supplementare dopo retrazione per pulitura" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocità di retrazione per pulitura" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocità di retrazione per pulitura" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocità di pulitura retrazione" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa pulitura" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pausa dopo ripristino." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Pulitura Z Hop" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Durante la pulizia, il piano di stampa viene abbassato per creare uno spazio tra l'ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altezza Z Hop pulitura" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocità di sollevamento (Hop) per pulitura" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posizione X spazzolino di pulitura" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Posizione X in cui verrà avviato lo script di pulitura." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Conteggio ripetizioni operazioni di pulitura" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distanza spostamento longitudinale di pulitura" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Dimensione massima foro piccolo" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Lunghezza massima dettagli di piccole dimensioni" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocità dettagli piccole dimensioni" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Rimozione maglie alternate" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6071 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Consente di alternare direzioni parete ogni altro strato o inserto. Utile per materiali che possono accumulare stress, come per la stampa su metallo." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Raggruppa le pareti esterne" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alluminio" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Tenere sempre nota dello strumento attivo" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Resoconto del processo di stampa" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Arretra sempre quando si sposta per iniziare una parete esterna." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Resoconto degli eventi che superano le soglie impostate" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Determina l'entità di offset (o estensione dello strato) applicata a tutti i poligoni su ciascuno strato. I valori positivi possono compensare fori troppo estesi; i valori negativi possono compensare fori troppo piccoli." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Abilita il resoconto del processo di stampa" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "È l'entità di offset (estensione dello strato) applicata a tutti i poligoni di supporto in ciascuno strato. Un valore negativo può compensare lo schiacciamento del primo strato noto come \"zampa di elefante\"." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Abilita il resoconto del processo di stampa per impostare i valori di soglia per il rilevamento di eventuali errori." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "È l'entità di offset (estensione dello strato) applicato a tutti i poligoni di supporto in ciascuno strato. I valori positivi possono appianare le aree di supporto, accrescendone la robustezza." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Avviso sul flusso" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Entità di offset applicato alle parti inferiori del supporto." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Limite per attivare l'avviso sul flusso." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Entità di offset applicato alle parti superiori del supporto." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Limite per il flusso" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Entità di offset applicato ai poligoni di interfaccia del supporto." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Limite per il rilevamento dell'anomalia del flusso." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "L'entità di retrazione del filamento in modo che non fuoriesca durante la sequenza di pulitura." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Avviso sulla temperatura di stampa" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Un aggiunta al raggio dal centro di ciascun cubo per controllare il contorno del modello, per decidere se questo cubo deve essere suddiviso. Valori maggiori comportano un guscio più spesso di cubi piccoli vicino al contorno del modello." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Limite per attivare l'avviso sulla temperatura di stampa." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Maglia anti-sovrapposizione" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Limite per la temperatura di stampa" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posizione retratta anti fuoriuscita di materiale" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Limite per il rilevamento dell'anomalia della temperatura di stampa." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocità di retrazione anti fuoriuscita del materiale" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Avviso sulla temperatura del volume di costruzione" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Applica l’offset estrusore al sistema coordinate. Influisce su tutti gli estrusori." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Limite per attivare l'avviso sulla temperatura del volume di costruzione." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nei punti in cui i modelli si toccano, viene generata una struttura del fascio ad incastro. Questo migliora l'adesione tra i modelli, soprattutto quelli stampati in materiali diversi." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Aggiramento delle parti stampate durante gli spostamenti" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Aggiramento dei supporti durante gli spostamenti" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Indietro" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Indietro a sinistra" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Indietro a destra" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Entrambi" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Entrambi si sovrappongono" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Strati inferiori" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Strato iniziale configurazione inferiore" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Distanza prolunga rivestimento inferiore" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Larghezza rimozione rivestimento inferiore" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Spessore degli strati inferiori" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densità del ramo" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diametro del ramo" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Angolo del diametro del ramo" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posizione di retrazione prima della rottura" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocità di retrazione prima della rottura" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura di preparazione alla rottura" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posizione di retrazione per la rottura" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocità di retrazione per la rottura" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura di rottura" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Rottura del supporto in pezzi di grandi dimensioni" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocità della ventola ponte" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Ponte a strati multipli" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densità del secondo rivestimento esterno ponte" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocità della ventola per il secondo rivestimento esterno ponte" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Flusso del secondo rivestimento esterno ponte" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocità di stampa del secondo rivestimento esterno ponte" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densità del rivestimento esterno ponte" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Flusso del rivestimento esterno ponte" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocità di stampa del rivestimento esterno ponte" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Soglia di supporto rivestimento esterno ponte" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densità massima del riempimento rado del Bridge" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densità del terzo rivestimento esterno ponte" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocità della ventola del terzo rivestimento esterno ponte" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Flusso del terzo rivestimento esterno ponte" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocità di stampa del terzo rivestimento esterno ponte" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting parete ponte" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Flusso della parete ponte" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocità di stampa della parete ponte" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Margine per evitare il brim" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distanza del Brim" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Numero di linee del brim" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Posizione del brim" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim in sostituzione del supporto" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Larghezza del brim" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Adesione piano di stampa" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Estrusore adesione piano di stampa" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Tipo di adesione piano di stampa" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiale piano di stampa" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma del piano di stampa" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura piano di stampa" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura piano di stampa Strato iniziale" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura volume di stampa" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Limite per la temperatura del volume di costruzione" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Limite per il rilevamento dell'anomalia della temperatura del volume di costruzione." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Avviso sulla temperatura del volume di costruzione" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Impostazioni riga di comando" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Attivando questa impostazione, la tua torre di primerizzazione avrà un bordo, anche se il modello non lo prevede. Se desideri una base più robusta per una torre alta, puoi aumentare l'altezza della base." msgctxt "center_object label" msgid "Center Object" msgstr "Centra oggetto" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Cambia la geometria del modello stampato in modo da richiedere un supporto minimo. Sbalzi molto inclinati diventeranno sbalzi poco profondi. Le aree di sbalzo scendono per diventare più verticali." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Scegliere tra le tecniche disponibili per generare il supporto. Il supporto \"normale\" crea una struttura di supporto direttamente sotto le parti di sbalzo e rilascia tali aree direttamente al di sotto. La struttura \"ad albero\" crea delle ramificazioni verso le aree di sbalzo che supportano il modello sulle punte di tali ramificazioni consentendo a queste ultime di avanzare intorno al modello per supportarlo il più possibile dal piano di stampa." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocità di Coasting" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume di Coasting" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Il Coasting sostituisce l'ultima parte di un percorso di estrusione con un percorso di spostamento. Il materiale fuoriuscito viene utilizzato per stampare l'ultimo tratto del percorso di estrusione al fine di ridurre i filamenti." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modalità Combing" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "La funzione Combing tiene l’ugello all’interno delle aree già stampate durante lo spostamento. In tal modo le corse di spostamento sono leggermente più lunghe ma si riduce l’esigenza di effettuare retrazioni. Se questa funzione viene disabilitata, il materiale viene retratto e l’ugello si sposta in linea retta al punto successivo. È anche possibile evitare il combing sopra le aree del rivestimento esterno superiore/inferiore o effettuare il combing solo nel riempimento." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Impostazioni riga di comando" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrica" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentriche" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Angolo del supporto conico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Larghezza minima del supporto conico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Collegamento delle linee di riempimento" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Collega poligoni di riempimento" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Collegamento linee supporto" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Collegamento Zig Zag supporto" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Collega poligoni superiori/inferiori" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Collega i percorsi di riempimento quando corrono uno accanto all’altro. Per le configurazioni di riempimento composte da più poligoni chiusi, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Collega i ZigZag. Questo aumenta la forza della struttura di supporto a zig zag." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Collega le estremità delle linee del supporto. L’abilitazione di questa impostazione consente di ottenere un supporto più robusto e ridurre la sottoestrusione, ma si utilizza più materiale." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Collegare le estremità nel punto in cui il riempimento incontra la parete interna utilizzando una linea che segue la forma della parete interna. L'abilitazione di questa impostazione può far meglio aderire il riempimento alle pareti riducendo nel contempo gli effetti del riempimento sulla qualità delle superfici verticali. La disabilitazione di questa impostazione consente di ridurre la quantità di materiale utilizzato." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Collega i percorsi del rivestimento esterno superiore/inferiore quando corrono uno accanto all’altro. Per le configurazioni concentriche, l’abilitazione di questa impostazione riduce notevolmente il tempo di spostamento, tuttavia poiché i collegamenti possono aver luogo a metà del riempimento, con questa funzione la qualità della superficie superiore potrebbe risultare inferiore." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controlla se gli angoli sul profilo del modello influenzano la posizione della giunzione. Nessuno significa che gli angoli non hanno alcuna influenza sulla posizione della giunzione. Nascondi giunzione favorisce la presenza della giunzione su un angolo interno. Esponi giunzione favorisce la presenza della giunzione su un angolo esterno. Nascondi o esponi giunzione favorisce la presenza della giunzione su un angolo interno o esterno. Smart Hiding consente sia gli angoli interni che quelli esterni ma sceglie con maggiore frequenza gli angoli interni, se opportuno." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converte ogni linea di riempimento in questo numero di linee. Le linee supplementari non si incrociano tra loro, ma si evitano. In tal modo il riempimento risulta più rigido, ma il tempo di stampa e la quantità di materiale aumentano." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocità di raffreddamento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Raffreddamento" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Raffreddamento" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Incrociata" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Incrociata" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Incrociata 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Dimensioni cavità 3D incrociata" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Immagine di densità del riempimento incrociato per il supporto" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Immagine di densità del riempimento incrociato" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Materiale cristallino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cubo" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Suddivisione in cubi" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Guscio suddivisione in cubi" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ritaglio maglia" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Collegamento dei dati di flusso del materiale (in mm3 al secondo) alla temperatura (in °C)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Accelerazione predefinita" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura piano di stampa preimpostata" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk filamento predefinito" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura di stampa preimpostata" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y predefinito" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z predefinito" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Indica il jerk predefinito per lo spostamento sul piano orizzontale." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Indica il jerk predefinito del motore per la direzione Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Indica il jerk predefinito del motore del filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Rileva i ponti e modifica la velocità di stampa, il flusso e le impostazioni ventola durante la stampa dei ponti." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina l'ordine di stampa delle pareti. La stampa anticipata delle pareti esterne migliora la precisione dimensionale poiché i guasti dalle pareti interne non possono propagarsi all'esterno. Se si esegue la stampa in un momento successivo, tuttavia, è possibile impilarle meglio quando vengono stampati gli sbalzi. Quando c'è una quantità irregolare di pareti interne totali, l'ultima riga centrale viene sempre stampata per ultima." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina la priorità di questa mesh quando si considera la sovrapposizione multipla delle mesh di riempimento. Per le aree con la sovrapposizione di più mesh di riempimento verranno utilizzate le impostazioni della mesh con la classificazione più alta. Una mesh di riempimento con una classificazione più alta modificherà il riempimento delle mesh di riempimento con una classificazione inferiore e delle mesh normali." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il materiale sopra di esso. Misurato nell'angolo dato lo stesso di uno strato." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina quando uno strato di riempimento fulmine deve supportare il modello sopra di esso. Misurato nell'angolo dato lo spessore." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diametro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento del diametro sul modello" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diametro che ogni ramo cerca di ottenere quando raggiunge la piastra di costruzione. Migliora l'adesione al piano." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Sono previste diverse opzioni che consentono di migliorare l'applicazione dello strato iniziale dell’estrusione e migliorano l’adesione. Il brim aggiunge un'area piana a singolo strato attorno alla base del modello, per evitare deformazioni. Il raft aggiunge un fitto reticolato con un tetto al di sotto del modello. Lo skirt è una linea stampata attorno al modello, ma non collegata al modello." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Aree non consentite" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Indica la distanza tra le linee di riempimento stampate. Questa impostazione viene calcolata mediante la densità del riempimento e la larghezza della linea di riempimento." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Indica la distanza tra le linee della struttura di supporto dello strato iniziale stampato. Questa impostazione viene calcolata mediante la densità del supporto." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Distanza tra le linee della parte inferiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte inferiore del supporto, ma può essere regolata separatamente." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Distanza tra le linee della parte superiore del supporto stampate. Questa impostazione viene calcolata dalla densità della parte superiore del supporto, ma può essere regolata separatamente." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Indica la distanza tra le linee della struttura di supporto stampata. Questa impostazione viene calcolata mediante la densità del supporto." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distanza dalla stampa alla base del supporto. Notare che viene arrotondata all'altezza del layer successivo." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "È la distanza tra la parte superiore del supporto e la stampa." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distanza dalla parte superiore/inferiore della struttura di supporto alla stampa. Questo spazio permette di rimuovere i supporti dopo la stampa del modello. L'ultimo strato di supporto sotto il modello potrebbe essere una frazione degli strati regolari." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Indica la distanza di uno spostamento inserito dopo ogni linea di riempimento, per determinare una migliore adesione del riempimento alle pareti. Questa opzione è simile alla sovrapposizione del riempimento, ma senza estrusione e solo su una estremità della linea di riempimento." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Distanza di spostamento inserita dopo la parete esterna per nascondere meglio la giunzione Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Indica la distanza del riparo paravento dalla stampa, nelle direzioni X/Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Indica la distanza del riparo materiale fuoriuscito dalla stampa, nelle direzioni X/Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Indica la distanza della struttura di supporto dallo sbalzo, nelle direzioni X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Indica la distanza della struttura di supporto dalla stampa, nelle direzioni X/Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "I punti di distanza vengono spostati per risistemare il percorso" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "I punti di distanza vengono spostati per risistemare il percorso" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Non generare aree di riempimento inferiori a questa (piuttosto usare il rivestimento esterno)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altezza del riparo paravento" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limitazione del riparo paravento" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distanza X/Y del riparo paravento" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Maglia supporto di discesa" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Doppia estrusione" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ellittica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Abilita controllo accelerazione" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Abilita impostazioni ponte" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Abilitazione della funzione di Coasting" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Abilitazione del supporto conico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Abilitazione del riparo paravento" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Abilita movimento fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Abilita stiratura" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Abilita controllo jerk" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Abilita controllo temperatura ugello" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Abilitazione del riparo materiale fuoriuscito" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Abilitazione blob di innesco" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Abilitazione torre di innesco" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Abilitazione raffreddamento stampa" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Abilita il resoconto del processo di stampa" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Abilitazione della retrazione" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Abilitazione brim del supporto" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Abilitazione parte inferiore supporto" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Abilitazione interfaccia supporto" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Abilitazione irrobustimento parte superiore (tetto) del supporto" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Abilita l'accelerazione spostamenti" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Abilita jerk spostamenti" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Abilita il riparo esterno del materiale fuoriuscito. Questo crea un guscio intorno al modello per pulitura con un secondo ugello, se è alla stessa altezza del primo ugello." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Abilita il resoconto del processo di stampa per impostare i valori di soglia per il rilevamento di eventuali errori." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Abilita piccole (fino a \"piccola larghezza superiore/inferiore) aree sul livello più alto (esposto all'aria) per il riempimento con muri invece che con il modello predefinito." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Abilita la regolazione del jerk della testina di stampa quando la velocità nell’asse X o Y cambia. Aumentando il jerk il tempo di stampa si riduce a discapito della qualità di stampa." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Abilita la regolazione dell’accelerazione della testina di stampa. Aumentando le accelerazioni il tempo di stampa si riduce a discapito della qualità di stampa." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Abilita le ventole di raffreddamento durante la stampa. Le ventole migliorano la qualità di stampa sugli strati con tempi per strato più brevi e ponti/sbalzi." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Codice G fine" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Lunghezza di svuotamento di fine filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocità di svuotamento di fine filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Abilita la stampa del brim intorno al modello anche se quello spazio dovrebbe essere occupato dal supporto. Sostituisce alcune zone del primo strato del supporto con zone del brim." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Ovunque" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "In Tutti i Possibili Punti" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Esclusiva" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Sperimentale" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Esponi giunzione" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Ricucitura completa dei fori" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Questa funzione tenta di 'ricucire' i fori aperti nella maglia chiudendo il foro con poligoni a contatto. Questa opzione può richiedere lunghi tempi di elaborazione." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Conteggio pareti di riempimento supplementari" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Numero di pareti di rivestimento esterno supplementari" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Materiale extra per l'innesco dopo il cambio dell'ugello." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posizione X innesco estrusore" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posizione Y innesco estrusore" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posizione Z innesco estrusore" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Condivisione del riscaldatore da parte degli estrusori" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Estrusori condividono ugello" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificatore della velocità di raffreddamento estrusione" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fattore di correzione della velocità basato sulla larghezza di estrusione. A 0% la velocità di movimento viene mantenuta costante alla velocità di stampa. Al 100% la velocità di movimento viene regolata in modo da mantenere costante il flusso (in mm³/s), ovvero le linee la cui larghezza è metà di quella normale vengono stampate due volte più velocemente e le linee larghe il doppio vengono stampate a metà della velocità. Un valore maggiore di 100% può aiutare a compensare la pressione più alta richiesta per estrudere linee larghe." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocità della ventola" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Override velocità della ventola" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Profili di dettagli inferiori a questa lunghezza saranno stampati utilizzando Velocità Dettagli di piccole dimensioni." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funzionalità che non sono state ancora precisate completamente." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diametro ruota del tirafilo" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura di stampa finale" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retrazione firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Estrusore del supporto primo strato" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Flusso" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Rapporto di equalizzazione del flusso" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite per il flusso" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fattore di compensazione del flusso" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Offset massimo dell'estrusione di compensazione del flusso" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafico della temperatura del flusso" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Avviso sul flusso" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Determina la compensazione del flusso per il primo strato: la quantità di materiale estruso sullo strato iniziale viene moltiplicata per questo valore." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensazione del flusso sulle linee inferiori del primo strato" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensazione del flusso sulle linee di riempimento." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensazione del flusso sulle linee di supporto superiore o inferiore." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensazione del flusso sulle linee delle aree nella parte superiore della stampa." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensazione del flusso sulle linee della torre di innesco." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensazione del flusso sulle linee dello skirt o del brim." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensazione del flusso sulle linee di supporto inferiore." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensazione del flusso sulle linee di supporto superiore." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensazione del flusso sulle linee di supporto." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensazione del flusso sulla linea a parete più esterna del primo strato." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensazione del flusso sulla linea perimetrale più esterna." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensazione del flusso sulla linea della parete esterna più esterna della superficie superiore." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee delle pareti della superficie superiore per tutte le linee delle pareti tranne quella più esterna." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensazione del flusso sulle linee superiore/inferiore." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensazione del flusso sulle linee di parete per tutte le linee di parete tranne quella più esterna, ma solo per il primo strato" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee perimetrali per tutte le linee perimetrali tranne quella più esterna." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensazione del flusso sulle linee perimetrali." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Determina la compensazione del flusso: la quantità di materiale estruso viene moltiplicata per questo valore." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Angolo di movimento del fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distanza di spostamento del movimento del fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Breve distanza di movimento del fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Lunghezza di svuotamento dello scarico" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocità di svuotamento dello scarico" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Per strutture sottili, circa una o due volte la dimensione dell'ugello, le larghezze delle linee devono essere modificate per rispettare lo spessore del modello. Questa impostazione controlla la larghezza minima della linea consentita per le pareti. Le larghezze minime delle linee determinano intrinsecamente anche le larghezze massime delle linee, poiché si esegue la transizione da N a N+1 pareti ad uno spessore geometrico in cui le pareti N sono larghe e le pareti N+1 sono strette. La linea perimetrale più larga possible è due volte la larghezza minima della linea perimetrale." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Avanti" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Avanti a sinistra" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Avanti a destra" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Piena altezza" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rivestimento esterno incoerente (fuzzy)" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densità del rivestimento esterno incoerente (fuzzy)" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Fuzzy Skin solo all'esterno" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distanza dei punti del rivestimento incoerente (fuzzy)" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Spessore del rivestimento esterno incoerente (fuzzy)" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versione codice G" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "I comandi codice G da eseguire alla fine, separati da " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "I comandi codice G da eseguire all’avvio, separati da " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Il GUID del materiale. È impostato automaticamente." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altezza gantry" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Generazione della struttura a incastro" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Generazione supporto" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genera un brim entro le zone di riempimento del supporto del primo strato. Questo brim viene stampato al di sotto del supporto, non intorno ad esso. L’abilitazione di questa impostazione aumenta l’adesione del supporto al piano di stampa." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Genera un’interfaccia densa tra il modello e il supporto. Questo crea un rivestimento esterno sulla sommità del supporto su cui viene stampato il modello e al fondo del supporto, dove appoggia sul modello." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genera una spessa lastra di materiale tra la parte inferiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genera una spessa lastra di materiale tra la parte superiore del supporto e il modello. Questo crea un rivestimento tra modello e supporto." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Genera strutture per supportare le parti del modello a sbalzo. Senza queste strutture, queste parti collasserebbero durante la stampa." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cristallo" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Andare ancora una volta sulla superficie superiore, questa volta estrudendo una piccolissima quantità di materiale. Lo scopo è quello di sciogliere ulteriormente la plastica sulla parte superiore, creando una superficie più liscia. La pressione nella camera dell'ugello viene mantenuta elevata, in modo che le grinze nella superficie siano riempite con il materiale." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altezza fasi di riempimento graduale" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Fasi di riempimento graduale" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altezza fasi di riempimento graduale del supporto" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Fasi di riempimento graduale del supporto" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Riduci gradualmente questa temperatura quando si stampa a velocità ridotte a causa del tempo di strato minimo." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Griglia" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Raggruppa le pareti esterne" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "È dotato della stabilizzazione della temperatura del volume di stampa" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Piano di stampa riscaldato" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocità di riscaldamento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lunghezza della zona di riscaldamento" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Indica la limitazione in altezza del riparo paravento. Al di sopra di tale altezza non sarà stampato alcun riparo." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Nascondi giunzione" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Nascondi o esponi giunzione" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Espansione orizzontale dei fori" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diametro massimo di espansione orizzontale dei fori" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "I fori e i profili delle parti con un diametro inferiore a quello indicato verranno stampati utilizzando Velocità Dettagli di piccole dimensioni." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Espansione orizzontale" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala orizzontale per la compensazione della contrazione" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "La lunghezza massima di estensione del filamento prima che si rompa durante il riscaldamento." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "La distanza alla quale deve essere retratto il materiale prima che smetta di fuoriuscire." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Distanza di spostamento del filamento al fine di compensare le modifiche nella velocità di flusso, come percentuale della distanza di spostamento del filamento in un secondo di estrusione." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "La distanza di retrazione del filamento al fine di consentirne la rottura netta." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "La velocità massima di retrazione del filamento prima che si rompa durante questa operazione." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "La velocità a cui deve essere retratto il materiale durante un cambio di filamento per evitare la fuoriuscita di materiale." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Velocità di adescamento del materiale dopo la sostituzione di una bobina vuota con una nuova dello stesso materiale." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Velocità di adescamento del materiale dopo il passaggio a un materiale diverso." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Tempo per il quale è possibile mantenere il materiale all'esterno di un luogo di conservazione asciutto in sicurezza." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "I passi del motore passo-passo in un millimetro di spostamento nella direzione Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Quanti passi dei motori passo-passo causano lo spostamento della ruota del tirafilo di un millimetro attorno alla sua circonferenza." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) durante la sostituzione di una bobina vuota con una nuova dello stesso materiale." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Quantità di materiale da utilizzare per svuotare il materiale precedente dall'ugello (in lunghezza del filamento) quando si passa a un materiale diverso." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "La quantità di filamento di ogni estrusore che si presume sia stata retratta dalla punta dell'ugello condiviso al termine dello script gcode di avvio stampante; il valore deve essere uguale o maggiore della lunghezza della parte comune dei condotti dell'ugello." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Come interagiranno l'interfaccia di supporto e il supporto quando si sovrappongono. Attualmente implementato solo per il tetto di supporto." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Entità dell'altezza di un ramo se è posizionato sul modello. Previene piccoli blob di supporto. Questa impostazione viene ignorata quando un ramo supporta un tetto di supporto." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Se una zona di rivestimento esterno è supportata per meno di questa percentuale della sua area, effettuare la stampa utilizzando le impostazioni ponte. In caso contrario viene stampata utilizzando le normali impostazioni rivestimento esterno." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se un segmento del percorso utensile devia più di questo angolo dal movimento generale, viene risistemato." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se abilitata, il secondo e il terzo strato sopra l’aria vengono stampati utilizzando le seguenti impostazioni. In caso contrario, questi strati vengono stampati utilizzando le impostazioni normali." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se si pensa di eseguire la transizione avanti e indietro tra numeri di pareti differenti in rapida successione, non eseguire alcuna transizione. Rimuovere le transizioni se sono più vicine di questa distanza." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la base del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno spazio per la stampa." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se è abilitata la funzione raft, questo valore indica di quanto il raft fuoriesce rispetto al perimetro esterno del modello. Aumentando questo margine si creerà un raft più robusto, utilizzando però più materiale e lasciando meno spazio per la stampa." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la parte centrale del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se la parte superiore del raft è abilitata, questa è l'area extra attorno al modello a cui viene assegnato un raft. Se si aumenta questo margine si crea un raft più robusto, utilizzando più materiale e lasciando meno area per la stampa." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Questa funzione ignora la geometria interna derivante da volumi in sovrapposizione all’interno di una maglia, stampandoli come un unico volume. Questo può comportare la scomparsa di cavità interne." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Includi temperatura piano di stampa" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Includi le temperature del materiale" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusiva" + +msgctxt "infill description" +msgid "Infill" +msgstr "Riempimento" + +msgctxt "infill label" +msgid "Infill" +msgstr "Riempimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Accelerazione riempimento" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Riempimento prima delle pareti" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densità del riempimento" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Estrusore riempimento" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Flusso di riempimento" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk riempimento" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direzioni delle linee di riempimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distanza tra le linee di riempimento" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Moltiplicatore delle linee di riempimento" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Larghezza delle linee di riempimento" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Maglia di riempimento" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Angolo di sbalzo del riempimento" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sovrapposizione del riempimento" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Percentuale di sovrapposizione del riempimento" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Configurazione di riempimento" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocità di riempimento" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supporto riempimento" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Ottimizzazione spostamenti riempimento" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distanza del riempimento" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Offset X riempimento" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Offset Y riempimento" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Layer inferiori iniziali" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocità iniziale della ventola" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Accelerazione dello strato iniziale" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Flusso inferiore dello strato iniziale" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diametro dello strato iniziale" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Flusso dello strato iniziale" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Altezza dello strato iniziale" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Espansione orizzontale dello strato iniziale" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Flusso della parete interna dello strato iniziale" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk dello strato iniziale" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Larghezza linea strato iniziale" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Flusso della parete esterna dello strato iniziale" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Accelerazione di stampa strato iniziale" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk di stampa strato iniziale" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocità di stampa strato iniziale" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocità di stampa dello strato iniziale" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distanza tra le linee del supporto dello strato iniziale" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Accelerazione spostamenti dello strato iniziale" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk spostamenti dello strato iniziale" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocità di spostamento dello strato iniziale" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Sovrapposizione Primo Strato" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura di stampa iniziale" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Accelerazione parete interna" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Estrusore parete interna" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk parete interna" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocità di stampa della parete interna" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Flusso pareti interne" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Larghezza delle linee della parete interna" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Inserto applicato al percorso della parete esterna. Se la parete esterna è di dimensioni inferiori all’ugello e stampata dopo le pareti interne, utilizzare questo offset per fare in modo che il foro dell’ugello si sovrapponga alle pareti interne anziché all’esterno del modello." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Solo all'interno" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Dall'interno all'esterno" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linee di interfaccia preferite" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interfaccia preferita" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Impilata" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Conteggio degli strati delle travi ad incastro" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Larghezza della trave a incastro" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Prevenzione incastro dei bordi" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profondità di incastro" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientamento della struttura ad incastro" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Stiramento del solo strato più elevato" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Accelerazione di stiratura" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Flusso di stiratura" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Inserto di stiratura" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk stiratura" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Spaziatura delle linee di stiratura" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Configurazione di stiratura" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocità di stiratura" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Origine del centro" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "È un materiale di supporto" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Questo tipo di materiale è quello che si stacca in modo netto quando viene riscaldato (cristallino) oppure è il tipo che produce lunghe catene di polimeri intrecciati (non cristallino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Questo materiale viene normalmente utilizzato come materiale di supporto durante la stampa." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Distorce solo i profili delle parti, non i fori di queste." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Mantenimento delle superfici scollegate" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Altezza dello strato" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Avvio strato X" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Avvio strato Y" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Indica lo spessore dello strato di base del raft. Questo strato deve essere spesso per aderire saldamente al piano di stampa." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "È lo spessore dello strato intermedio del raft." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "È lo spessore degli strati superiori del raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Lasciare un collegamento tra le linee del supporto ogni N millimetri per facilitare la rottura del supporto stesso." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sinistra" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Sollevamento della testina" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Fulmine" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Angolo di sbalzo riempimento fulmine" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Angolo eliminazione riempimento fulmine" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Angolo di raddrizzatura riempimento fulmine" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Angolo di supporto riempimento fulmine" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limite di portata dei rami" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita la distanza di ogni ramo dal punto che supporta. Questo può rendere il supporto più robusto, ma aumenta la quantità di rami (e, di conseguenza, la quantità di materiale/il tempo di stampa)" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite per attivare l'avviso sulla temperatura del volume di costruzione." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia della temperatura del volume di costruzione." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia della temperatura di stampa." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite per attivare l'avviso sulla temperatura di stampa." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite per il rilevamento dell'anomalia del flusso." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite per attivare l'avviso sul flusso." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limita il volume di questa maglia all'interno di altre maglie. Questo può essere utilizzato per stampare talune aree di una maglia con impostazioni diverse e con un diverso estrusore." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitazione in altezza" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Larghezza della linea" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Macchina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profondità macchina" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Poligono testina macchina e ventola" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altezza macchina" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo di macchina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Larghezza macchina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Impostazioni macchina specifiche" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Rendi stampabile lo sbalzo" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Fa sovrapporre leggermente le maglie a contatto tra loro. In tal modo ne migliora l’adesione." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Realizza aree di supporto più piccole nella parte inferiore che in corrispondenza dello sbalzo." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Rappresenta il supporto ovunque sotto la maglia di supporto, in modo che in questa non vi siano punti a sbalzo." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Rende la posizione di innesco estrusore assoluta anziché relativa rispetto all’ultima posizione nota della testina." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Il primo e il secondo strato del modello vanno sovrapposti nella direzione Z per compensare il filamento perso nello spazio vuoto. Tutti i modelli al di sopra del primo strato saranno spostati verso il basso da questa quantità." +"Si può notare che a volte il secondo strato viene stampato al di sotto dello strato iniziale a causa di questa impostazione. Si tratta di un comportamento previsto." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Rendere le maglie più indicate alla stampa 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (volumetrica)" + +msgctxt "material description" +msgid "Material" +msgstr "Materiale" + +msgctxt "material label" +msgid "Material" +msgstr "Materiale" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca del materiale" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID materiale" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo di materiale" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume di materiale tra le operazioni di pulitura" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Massima distanza di combing senza retrazione" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Accelerazione massima X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Accelerazione massima Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Accelerazione massima Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Angolo massimo dei rami" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Deviazione massima" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Deviazione massima dell'area di estrusione" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocità massima della ventola" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Accelerazione massima filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Massimo angolo modello" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Area foro di sbalzo massima" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Durata di posizionamento massima" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Risoluzione massima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Numero massimo di retrazioni" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Angolo massimo rivestimento esterno per prolunga" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocità massima E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocità massima X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocità massima Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocità massima Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diametro supportato dalla torre" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Risoluzione massima di spostamento" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Indica l’accelerazione massima del motore per la direzione X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Indica l’accelerazione massima del motore per la direzione Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Indica l’accelerazione massima del motore per la direzione Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Indica l’accelerazione massima del motore del filamento." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densità massima del riempimento considerato rado. Il rivestimento esterno sul riempimento rado è considerato non supportato; pertanto potrebbe essere trattato come rivestimento esterno ponte." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "È il diametro massimo nelle direzioni X/Y di una piccola area, che deve essere sostenuta da una torre speciale." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Il massimo volume di materiale che può essere estruso prima di iniziare un'altra operazione di pulitura ugello. Se questo valore è inferiore al volume del materiale richiesto in un layer, l'impostazione non ha effetto in questo layer, vale a dire che si limita a una pulitura per layer." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sovrapposizione maglie" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correzioni delle maglie" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posizione maglia X" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Offset applicato all’oggetto per la direzione X." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posizione maglia Y" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Offset applicato all’oggetto per la direzione Y." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posizione maglia Z" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Classificazione dell'elaborazione delle maglie" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrice rotazione maglia" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Intermedia" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Larghezza minimo dello stampo" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo minimo temperatura di standby" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Lunghezza minima parete ponte" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Larghezza minima della linea perimetrale pari" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Finestra di minima distanza di estrusione" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Dimensioni minime della feature" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocità di alimentazione minima" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altezza minima rispetto al modello" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Area minima riempimento" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo minimo per strato" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Larghezza minima della linea perimetrale dispari" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circonferenza minima dei poligoni" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Larghezza minima rivestimento esterno per prolunga" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocità minima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Area minima supporto" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Area minima parti inferiori supporto" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Area minima interfaccia supporto" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Area minima parti superiori supporto" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distanza X/Y supporto minima" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Larghezza minima della linea perimetrale sottile" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume minimo prima del Coasting" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Larghezza minima della linea perimetrale" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Dimensione minima dell'area per i poligoni dell'interfaccia di supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Dimensioni minime area per i poligoni del supporto. I poligoni con un’area inferiore a questo valore non verranno generati." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Dimensione minima dell'area per le parti inferiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Dimensione minima dell'area per le parti superiori del supporto. I poligoni con un'area più piccola rispetto a questo valore saranno stampati come supporto normale." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Spessore minimo di feature sottili. Le feature modello che sono più sottili di questo valore non verranno stampate, mentre le feature più spesse delle dimensioni minime della feature verranno ampliate fino alla larghezza minima della linea perimetrale." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Indica la larghezza minima alla quale viene ridotta la base dell’area del supporto conico. Larghezze minori possono comportare strutture di supporto instabili." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Stampo" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Angolo stampo" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altezza parte superiore dello stampo" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordine di stiratura monotonico" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordine monotono della superficie della parte superiore del raft" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordine superficie superiore monotonico" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordine superiore/inferiore monotonico" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Più linee di skirt contribuiscono a migliorare l'avvio dell'estrusione per modelli di piccole dimensioni. L'impostazione di questo valore a 0 disattiverà la funzione skirt." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Moltiplicatore della larghezza della linea del primo strato Il suo aumento potrebbe migliorare l'adesione al piano." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fattore di spostamento senza carico" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Nessun rivest. est. negli interstizi a Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modi non tradizionali di stampare i modelli." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nessuno" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nessuno" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normale" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normale" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normale" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Di norma Cura cerca di \"ricucire\" piccoli fori nella maglia e di rimuovere le parti di uno strato che presentano grossi fori. Abilitando questa opzione, Cura mantiene quelle parti che non possono essere 'ricucite'. Questa opzione deve essere utilizzata come ultima risorsa quando non sia stato possibile produrre un corretto codice G in nessun altro modo." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Non nel rivestimento" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Non su superficie esterna" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Angolo ugello" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diametro ugello" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Aree ugello non consentite" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID ugello" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lunghezza ugello" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantità di materiale extra della Prime Tower, al cambio ugello" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocità innesco cambio ugello" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocità di retrazione cambio ugello" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distanza di retrazione cambio ugello" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocità di retrazione cambio ugello" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Numero di estrusori" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Numero di estrusori abilitati" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Numero di strati stampati a velocità inferiore" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Numero di treni di estrusori abilitati; impostato automaticamente nel software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Il numero di treni di estrusori. Un treno di estrusori è la combinazione di un alimentatore, un tubo bowden e un ugello." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Numero di passaggi dell'ugello attraverso lo spazzolino." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto degli strati superiori. Le aree più vicine agli strati superiori avranno una densità maggiore, fino alla densità del riempimento." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Indica il numero di volte per dimezzare la densità del riempimento quando si va al di sotto delle superfici superiori. Le aree più vicine alle superfici superiori avranno una densità maggiore, fino alla densità del riempimento." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Ottagonale" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Disinserita" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Offset applicato all’oggetto per la direzione X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Offset applicato all’oggetto per la direzione Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Offset applicato all’oggetto in direzione z. Con questo potrai effettuare quello che veniva denominato 'Object Sink’." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset con estrusore" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Sul piano di stampa, quando possibile" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Sul modello, se necessario" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Uno alla volta" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Esegue solo uno Z Hop quando si sposta sopra le parti stampate che non possono essere evitate mediante uno spostamento orizzontale con Aggiramento delle parti stampate durante lo spostamento." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Effettua lo stiramento solo dell'ultimissimo strato della maglia. È possibile quindi risparmiare tempo se gli strati inferiori non richiedono una finitura con superficie liscia." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Angolo del riparo materiale fuoriuscito" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distanza del riparo materiale fuoriuscito" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Intervallo ottimale dei rami" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Ottimizzazione sequenza di stampa pareti" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Ottimizzare la sequenza di stampa delle pareti in modo da ridurre il numero di retrazioni e la distanza percorsa. L'abilitazione di questa funzione porta vantaggi per la maggior parte dei pezzi; alcuni possono richiedere un maggior tempo di esecuzione; si consiglia di confrontare i tempi di stampa stimati con e senza ottimizzazione. Scegliendo la funzione brim come tipo di adesione del piano di stampa, il primo strato non viene ottimizzato." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diametro esterno ugello" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Accelerazione parete esterna" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Estrusore parete esterna" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Flusso della parete esterna" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Inserto parete esterna" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk parete esterna" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Larghezza delle linee della parete esterna" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distanza del riempimento parete esterna" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Le pareti esterne di diverse isole nello stesso strato vengono stampate in sequenza. Quando abilitata, la quantità di variazione del flusso è limitata perché le pareti vengono stampate un tipo alla volta; quando disabilitata, si riduce il numero di spostamenti tra le isole perché le pareti nello stesso isola sono raggruppate." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Solo all'esterno" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dall'esterno all'interno" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Angolo parete di sbalzo" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocità parete di sbalzo" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Le pareti di sbalzo verranno stampate a questa percentuale della loro normale velocità di stampa." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pausa dopo ripristino." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "La velocità della ventola in percentuale da usare durante la stampa delle pareti e del rivestimento esterno ponte." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "La velocità delle ventola in percentuale da usare per stampare il secondo strato del rivestimento esterno ponte." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Percentuale della velocità della ventola da usare quando si stampano le zone del rivestimento esterno subito sopra il supporto. L’uso di una velocità ventola elevata può facilitare la rimozione del supporto." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "La velocità della ventola in percentuale da usare per stampare il terzo strato del rivestimento esterno ponte." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "I poligoni in strati sezionati con una circonferenza inferiore a questo valore verranno scartati. I valori inferiori generano una maglia con risoluzione superiore al costo del tempo di sezionamento. È dedicata in particolare alle stampanti SLA ad alta risoluzione e a modelli 3D molto piccoli, ricchi di dettagli." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Angolo dei rami preferito" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Impedisce la transizione avanti e indietro tra una parete aggiuntiva e una di meno. Questo margine estende l'intervallo di larghezze linea che segue a [Larghezza minima della linea perimetrale - Margine, 2 * Larghezza minima della linea perimetrale + Margine]. Incrementando questo margine si riduce il numero di transizioni, che riduce il numero di avvii/interruzioni estrusione e durata dello spostamento. Tuttavia, variazioni ampie della larghezza della linea possono portare a problemi di sottoestrusione o sovraestrusione." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Accelerazione della torre di innesco" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base della Torre di Primerizzazione" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altezza della Base della Torre di Primerizzazione" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Dimensione della Base della Torre di Primerizzazione" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Pendenza della Base della Torre di Primerizzazione" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Flusso torre di innesco" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk della torre di innesco" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Larghezza della linea della torre di innesco" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distanza massima tra i rami della prime tower" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume minimo torre di innesco" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Interlinea del Radeau della Torre di Primerizzazione" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Dimensioni torre di innesco" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocità della torre di innesco" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipi di prime tower" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posizione X torre di innesco" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posizione Y torre di innesco" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Accelerazione di stampa" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk stampa" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Resoconto del processo di stampa" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequenza di stampa" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocità di stampa" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Stampa pareti sottili" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Stampa un brim all'esterno, all'interno o in entrambi i punti del modello. A seconda di quest'ultimo, tale scelta consente di ridurre la quantità di brim da rimuovere in seguito, garantendo al contempo una corretta adesione al piano di stampa." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Stampa una torre accanto alla stampa che serve per innescare il materiale dopo ogni cambio ugello." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Stampare le strutture di riempimento solo laddove è necessario supportare le sommità del modello. L'abilitazione di questa funzione riduce il tempo di stampa e l'utilizzo del materiale, ma comporta una disuniforme resistenza dell'oggetto." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee di stiratura in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Stampa i modelli come uno stampo, che può essere fuso per ottenere un modello che assomigli ai modelli sul piano di stampa." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Stampa parti del modello orizzontalmente più sottili delle dimensioni dell'ugello." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Stampare le linee della superficie della parte superiore del raft in un ordine che fa sì che si sovrappongano sempre alle linee adiacenti in un'unica direzione. Ciò richiede un tempo di stampa leggermente superiore, ma conferisce alla superficie un aspetto più consistente, visibile anche sulla superficie inferiore del modello." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "La velocità di stampa da usare per stampare il secondo strato del rivestimento esterno ponte." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "La velocità di stampa da usare per stampare il terzo strato del rivestimento esterno ponte." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite per la temperatura di stampa" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Avviso sulla temperatura di stampa" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Stampa il riempimento prima delle pareti. La stampa preliminare delle pareti può avere come risultato pareti più precise, ma sbalzi di stampa peggiori. La stampa preliminare del riempimento produce pareti più robuste, anche se a volte la configurazione (o pattern) di riempimento potrebbe risultare visibile attraverso la superficie." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superficie superiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa linee superiori/inferiori in un ordine che ne causa sempre la sovrapposizione con le linee adiacenti in un singola direzione. Questa operazione richiede un tempo di stampa leggermente superiore ma rende l'aspetto delle superfici piane più uniforme." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura di stampa" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura di stampa Strato iniziale" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Stampare la linea più interna dello skirt con più strati facilita la rimozione dello skirt stesso." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Stampa una parete supplementare ogni due strati. In questo modo il riempimento rimane catturato tra queste pareti supplementari, creando stampe più resistenti." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualità" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto di cubo" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Traferro del raft" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margine extra della base del raft" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Estrusore della base del raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocità della ventola per la base del raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Spaziatura delle linee dello strato di base del raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Larghezza delle linee dello strato di base del raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Accelerazione di stampa della base del raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk di stampa della base del raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocità di stampa della base del raft" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Levigatura della base del raft" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Spessore della base del raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Conteggio parete base del raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margine extra del raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocità della ventola per il raft" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margine extra della parte centrale del raft" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Estrusore intermedio del raft" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocità della ventola per il raft intermedio" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Strati intermedi del raft" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Larghezza delle linee dello strato intermedio del raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Accelerazione di stampa raft intermedio" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk di stampa raft intermedio" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocità di stampa raft intermedio" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Levigatura della parte centrale del raft" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Spaziatura dello strato intermedio del raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Spessore dello strato intermedio del raft" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Conteggio delle pareti della parte centrale del raft" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Accelerazione di stampa del raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk stampa del raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocità di stampa del raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Smoothing raft" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margine extra della parte superiore del raft" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Estrusore superiore del raft" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocità della ventola per la parte superiore del raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Spessore dello strato superiore del raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Strati superiori del raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Larghezza delle linee superiori del raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Accelerazione di stampa parte superiore del raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk di stampa parte superiore del raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocità di stampa parte superiore del raft" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Levigatura della parte superiore del raft" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Spaziatura superiore del raft" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Conteggio delle parete della parte superiore del raft" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Conteggio delle pareti del raft" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Casuale" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Avvio con riempimento casuale" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Decidere in modo casuale quale sarà la linea di riempimento ad essere stampata per prima. In tal modo si evita che un segmento diventi il più resistente sebbene si esegua uno spostamento aggiuntivo." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Distorsione (jitter) casuale durante la stampa della parete esterna, così che la superficie assume un aspetto ruvido ed incoerente (fuzzy)." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rettangolare" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocità regolare della ventola" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Velocità regolare della ventola in altezza" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Velocità regolare della ventola in corrispondenza dello strato" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Soglia velocità regolare/massima della ventola" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Estrusione relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Rimozione di tutti i fori" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Rimuovere i primi strati vuoti" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rimuovi intersezione maglie" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Rimuovere gli angoli interni dalla base del raft" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Rimuovi angoli interni raft" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Rimuovere gli angoli interni dalla parte centrale del raft" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Rimuovere gli angoli interni dalla parte superiore del raft" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Rimuove le aree in cui maglie multiple si sovrappongono tra loro. Questo può essere usato se oggetti di due materiali uniti si sovrappongono tra loro." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Rimuovere gli strati vuoti sotto il primo strato stampato, se presenti. La disabilitazione di questa impostazione può provocare la presenza di primi strati vuoti, se l'impostazione di Tolleranza di sezionamento è impostata su Esclusiva o Intermedia." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Rimuovere gli angoli interni dalla base del raft, facendolo diventare convesso." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Rimuovere gli angoli interni dalla parte centrale del raft, facendolo diventare convesso." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Rimuove gli angoli interni dalla parte superiore del raft, facendolo diventare convesso." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Consente di rimuovere angoli interni dal raft, facendolo diventare convesso." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Rimuove i fori presenti su ciascuno strato e mantiene soltanto la forma esterna. Questa funzione ignora qualsiasi invisibile geometria interna. Tuttavia, essa ignora allo stesso modo i fori degli strati visibili da sopra o da sotto." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Sostituisce la parte più esterna della configurazione degli strati superiori/inferiori con una serie di linee concentriche. L’utilizzo di una o due linee migliora le parti superiori (tetti) che iniziano sul materiale di riempimento." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Resoconto degli eventi che superano le soglie impostate" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferenza di appoggio" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrazione prima della parete esterna" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrazione al cambio strato" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Ritrae il filamento quando l'ugello si sta muovendo su un'area non stampata." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Ritrae il filamento quando l'ugello si sta muovendo allo strato successivo." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distanza di retrazione" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo la retrazione" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Distanza minima di retrazione" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocità di innesco dopo la retrazione" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocità di retrazione" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocità di retrazione" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Destra" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Scala la velocità della ventola a 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Scalare la velocità della ventola in modo che sia compresa tra 0 e 1 anziché tra 0 e 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala per la compensazione della contrazione" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "La scena è dotata di maglie di supporto" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferenze angolo giunzione" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Imposta manualmente la sequenza di stampa" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Imposta l’altezza del riparo paravento. Scegliere di stampare il riparo paravento all’altezza totale del modello o a un’altezza limitata." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Indica le impostazioni utilizzate per la stampa con estrusori multipli." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Impostazioni utilizzate solo se CuraEngine non è chiamato dalla parte anteriore di Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retrazione iniziale ugello condivisa" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Angolo più acuto" + +msgctxt "shell description" +msgid "Shell" +msgstr "Guscio" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Il più breve" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostra varianti macchina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Layer di supporto del bordo del rivestimento" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Spessore del supporto del bordo del rivestimento" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distanza prolunga rivestimento esterno" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sovrapposizione del rivestimento esterno" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Percentuale di sovrapposizione del rivestimento esterno" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Larghezza rimozione rivestimento" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Le aree del rivestimento esterno inferiori a questa non vengono prolungate. In tal modo si evita di prolungare le aree del rivestimento esterno strette che vengono create quando la superficie del modello presenta un’inclinazione quasi verticale." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Salto di una ogni N linee di collegamento per rendere la struttura del supporto più facile da rompere." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Salto di alcuni collegamenti per rendere la struttura del supporto più facile da rompere. Questa impostazione è applicabile alla configurazione a zig-zag del riempimento del supporto." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distanza dello skirt" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altezza dello skirt" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Numero di linee dello skirt" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Accelerazione skirt/brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Estrusore skirt/brim" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Flusso dello skirt/brim" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk dello skirt/brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Larghezza delle linee dello skirt/brim" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Lunghezza minima dello skirt/brim" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocità dello skirt/brim" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolleranza di sezionamento" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocità layer iniziale per dettagli di piccole dimensioni" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Lunghezza massima dettagli di piccole dimensioni" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocità dettagli piccole dimensioni" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Dimensione massima foro piccolo" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura di stampa per piccoli strati" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Piccola area inferiore/superiore sulla superficie" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Larghezza superiore e inferiore delle regioni più piccole" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "I dettagli di piccole dimensioni sul primo layer saranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "I dettagli di piccole dimensioni verranno stampati a questa percentuale della velocità di stampa normale. Una stampa più lenta può aiutare in termini di adesione e precisione." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Le piccole aree superiori/inferiori vengono riempite con muri invece che con il modello superiore/inferiore predefinito. Questo aiuta a evitare movimenti a singhiozzo. Per impostazione predefinita, questa opzione è disattivata per il livello più alto (esposto all'aria) (vedere \"Piccola area inferiore/superiore sulla superficie\")." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Brim smart" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Occultamento intelligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Levigazione dei profili con movimento spiraliforme" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Leviga i profili con movimento spiraliforme per ridurre la visibilità della giunzione Z (la giunzione Z dovrebbe essere appena visibile sulla stampa, ma rimane visibile nella visualizzazione a strati). Notare che la levigatura tende a rimuovere le bavature fini della superficie." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi durante uno spostamento." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Qui è possibile compensare l’eventuale trafilamento di materiale che può verificarsi nel corso della pulitura durante il movimento." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modalità speciali" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocità" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocità" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocità di spostamento dell'asse z durante il sollevamento (Hop)." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Stampa del contorno esterno con movimento spiraliforme" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Appiattisce il contorno esterno attorno all'asse Z con movimento spiraliforme. Questo crea un aumento costante lungo l'asse Z durante tutto il processo di stampa. Questa caratteristica consente di ottenere un modello pieno in una singola stampata con fondo solido. Questa caratteristica deve essere abilitata solo quando ciascuno strato contiene solo una singola parte." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura di Standby" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Codice G avvio" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Punto di partenza di ogni percorso nell'ambito di uno strato. Quando i percorsi in strati consecutivi iniziano nello stesso punto, sulla stampa può apparire una linea di giunzione verticale. Se si allineano in prossimità di una posizione specificata dall’utente, la linea di giunzione può essere rimossa più facilmente. Se disposti in modo casuale, le imprecisioni in corrispondenza dell'inizio del percorso saranno meno evidenti. Prendendo il percorso più breve la stampa sarà più veloce." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passi per millimetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passi per millimetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passi per millimetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passi per millimetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Supporto" + +msgctxt "support label" +msgid "Support" +msgstr "Supporto" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Accelerazione supporto" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distanza inferiore supporto" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Numero delle linee perimetrali inferiori di supporto" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Numero di linee del brim del supporto" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Larghezza del brim del supporto" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Conteggio linee di rottura supporto" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Dimensioni frammento supporto" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densità del supporto" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Priorità distanza supporto" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Estrusore del supporto" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Accelerazione parte inferiore del supporto" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densità parte inferiore del supporto" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Estrusore parte inferiore del supporto" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Flusso supporto inferiore" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Espansione orizzontale parti inferiori supporto" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk parte inferiore del supporto" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direzioni della larghezza della linea di supporto inferiore" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distanza della linea di supporto inferiore" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Larghezza della linea di supporto inferiore" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Configurazione della parte inferiore del supporto" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocità di stampa della parte inferiore del supporto" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Spessore parte inferiore del supporto" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Flusso del supporto" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Espansione orizzontale supporto" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Accelerazione riempimento supporto" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Estrusore riempimento del supporto" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk riempimento supporto" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Spessore dello strato di riempimento di supporto" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direzione delle linee di riempimento supporto" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocità di riempimento del supporto" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Accelerazione interfaccia supporto" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densità interfaccia supporto" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Estrusore interfaccia del supporto" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Flusso interfaccia di supporto" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Espansione orizzontale interfaccia supporto" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk interfaccia supporto" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direzioni della linea dell'interfaccia di supporto" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Larghezza della linea dell’interfaccia di supporto" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Configurazione interfaccia supporto" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Priorità interfaccia di supporto" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocità interfaccia supporto" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Spessore interfaccia supporto" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Numero delle linee perimetrali dell'interfaccia di supporto" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk supporto" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distanza giunzione supporto" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distanza tra le linee del supporto" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Larghezza delle linee di supporto" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supporto maglia" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Angolo di sbalzo del supporto" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Configurazione del supporto" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Posizionamento supporto" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Accelerazione parte superiore del supporto" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densità parte superiore (tetto) del supporto" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Estrusore parte superiore del supporto" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Flusso supporto superiore" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Espansione orizzontale parti superiori supporto" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk parte superiore del supporto" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direzioni delle linee di supporto superiori" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distanza tra le linee della parte superiore (tetto) del supporto" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Larghezza delle linee di supporto superiori" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Configurazione della parte superiore (tetto) del supporto" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocità di stampa della parte superiore (tetto) del supporto" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Spessore parte superiore (tetto) del supporto" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Numero delle linee perimetrali del tetto di supporto" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocità di stampa del supporto" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altezza gradini supporto" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Larghezza massima gradino supporto" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Angolo di pendenza minimo gradini supporto" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Struttura di supporto" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distanza superiore supporto" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Numero delle linee perimetrali supporto" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distanza X/Y supporto" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distanza Z supporto" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Linee di supporto preferite" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Supporto preferito" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocità della ventola del rivestimento esterno supportato" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superficie" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia superficiale" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modalità superficie" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Tendenza di adesione superficiale." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia superficiale." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Scambia l'ordine di stampa della prima e seconda linea più interna del brim per agevolarne la rimozione." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Selezionare quali volumi di intersezione maglie appartengono a ciascuno strato, in modo che le maglie sovrapposte diventino interconnesse. Disattivando questa funzione una delle maglie ottiene tutto il volume della sovrapposizione, che viene rimosso dalle altre maglie." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distanza orizzontale target tra due layer adiacenti. Riducendo questa impostazione, i layer più sottili verranno utilizzati per avvicinare i margini dei layer." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "La coordinata X della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "La coordinata X della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata X della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "La coordinata Y della posizione in prossimità della quale si trova la parte per avviare la stampa di ciascuno strato." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "La coordinata Y della posizione in prossimità della quale si innesca all’avvio della stampa di ciascuna parte in uno strato." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "La coordinata Y della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Indica la coordinata Z della posizione in cui l’ugello si innesca all’avvio della stampa." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Indica l’accelerazione durante la stampa dello strato iniziale." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Indica l’accelerazione dello strato iniziale." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Indica l’accelerazione degli spostamenti dello strato iniziale." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate tutte le pareti interne." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "L’accelerazione con cui viene stampato il riempimento." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "L’accelerazione con cui viene effettuata la stiratura." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "L’accelerazione con cui avviene la stampa." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato di base del raft." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Accelerazione alla quale vengono stampate le parti inferiori del supporto. La stampa ad una accelerazione inferiore può migliorare l'adesione del supporto nella parte superiore del modello." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Indica l’accelerazione con cui viene stampato il riempimento del supporto." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Indica l’accelerazione con cui viene stampato lo strato intermedio del raft." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti più esterne." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Indica l’accelerazione con cui viene stampata la torre di innesco." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Indica l’accelerazione con cui viene stampato il raft." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Accelerazione alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Accelerazione alla quale vengono stampate le parti superiori del supporto. La loro stampa ad un'accelerazione inferiore può migliorare la qualità dello sbalzo." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Indica l’accelerazione alla quale sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta all’accelerazione dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad un’accelerazione diversa." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Indica l’accelerazione con cui viene stampata la struttura di supporto." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiori del raft." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "L'accelerazione con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Indica l’accelerazione alla quale vengono stampate le pareti." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Indica l'accelerazione alla quale vengono stampati gli strati rivestimento superficie superiore." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Indica l’accelerazione alla quale vengono stampati gli strati superiore/inferiore." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Indica l’accelerazione alla quale vengono effettuati gli spostamenti." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Quantità di materiale, relativo ad una normale linea del rivestimento, da estrudere durante la stiratura. Mantenere l'ugello pieno aiuta a riempire alcune delle fessure presenti sulla superficie superiore, ma una quantità eccessiva comporta un'estrusione eccessiva con conseguente puntinatura sui lati della superficie." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Indica la quantità di sovrapposizione tra il riempimento e le pareti. Una leggera sovrapposizione consente il saldo collegamento delle pareti al riempimento." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Indica il valore di retrazione alla commutazione degli estrusori. Impostato a 0 per nessuna retrazione. Questo valore generalmente dovrebbe essere lo stesso della lunghezza della zona di riscaldamento." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "L’angolo tra il piano orizzontale e la parte conica esattamente sopra la punta dell’ugello." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "L’angolo della parte superiore di una torre. Un valore superiore genera parti superiori appuntite, un valore inferiore, parti superiori piatte." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Angolo dello sbalzo delle pareti esterne creato per il modello. 0° rende il guscio esterno dello stampo verticale, mentre 90° fa in modo che il guscio esterno dello stampo segua il profilo del modello." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "L’angolo del diametro dei rami con il graduale ispessimento verso il fondo. Un angolo pari a 0 genera rami con spessore uniforme sull’intera lunghezza. Un angolo minimo può aumentare la stabilità del supporto ad albero." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "È l'angolo di inclinazione del supporto conico. Con 0 gradi verticale e 90 gradi orizzontale. Angoli inferiori rendono il supporto più robusto, ma richiedono una maggiore quantità di materiale. Angoli negativi rendono la base del supporto più larga rispetto alla parte superiore." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Indica la densità media dei punti introdotti su ciascun poligono in uno strato. Si noti che i punti originali del poligono vengono scartati, perciò una bassa densità si traduce in una riduzione della risoluzione." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Indica la distanza media tra i punti casuali introdotti su ciascun segmento di linea. Si noti che i punti originali del poligono vengono scartati, perciò un elevato livello di regolarità si traduce in una riduzione della risoluzione. Questo valore deve essere superiore alla metà dello spessore del rivestimento incoerente (fuzzy)." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "La marca del materiale utilizzato." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Indica l’accelerazione predefinita del movimento della testina di stampa." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "La temperatura preimpostata utilizzata per la stampa. Deve essere la temperatura “base” di un materiale. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "La temperatura preimpostata utilizzata per il piano di stampa. Deve essere la temperatura “base” di un piano di stampa. Tutte le altre temperature di stampa devono usare scostamenti basati su questo valore" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità dello strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Densità delle parti inferiori della struttura di supporto. Un valore più alto comporta una migliore adesione del supporto alla parte superiore del modello." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Densità delle parti superiori della struttura di supporto. Un valore superiore genera sbalzi migliori, ma i supporti sono più difficili da rimuovere." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità del secondo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "La densità del terzo strato del rivestimento esterno ponte. I valori inferiori a 100 aumentano la distanza tra le linee del rivestimento esterno." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "La profondità (direzione Y) dell’area stampabile." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Corrisponde al diametro di una torre speciale." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Il diametro dei rami più sottili del supporto. I rami più spessi sono più resistenti. I rami verso la base avranno spessore maggiore." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Il diametro della parte superiore della punta dei rami dell'albero di supporto." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Il diametro della ruota che guida il materiale nel tirafilo." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Il diametro dei rami più larghi del supporto dell'albero. Un tronco più spesso è più robusto; un tronco più sottile occupa meno spazio sul piano di stampa." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "La differenza in altezza dello strato successivo rispetto al precedente." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Distanza tra le linee di stiratura." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "La distanza tra l’ugello e le parti già stampate quando si effettua lo spostamento con aggiramento." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Indica la distanza tra le linee che costituiscono lo strato di base del raft. Un'ampia spaziatura favorisce la rimozione del raft dal piano di stampa." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Indica la distanza fra le linee dello strato intermedio del raft. La spaziatura dello strato intermedio deve essere abbastanza ampia, ma al tempo stesso sufficientemente fitta da sostenere gli strati superiori del raft." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Indica la distanza tra le linee che costituiscono la maglia superiore del raft. La distanza deve essere uguale alla larghezza delle linee, in modo tale da ottenere una superficie solida." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "La distanza tra le linee del radeau per l'unico strato di radeau della torre di primerizzazione. Un ampio interlinea facilita la rimozione del radeau dalla piastra di costruzione." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "La distanza dal confine tra i modelli per generare una struttura a incastro, misurata in celle. Un numero troppo basso di celle determina una scarsa adesione." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Indica la distanza tra il modello e la linea di estremità del brim. Un brim di maggiore dimensione aderirà meglio al piano di stampa, ma con riduzione dell'area di stampa." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "La distanza dall'esterno di un modello in cui non verranno generate strutture a incastro, misurate in celle." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "La distanza dalla punta dell’ugello in cui il calore dall’ugello viene trasferito al filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti inferiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato inferiore. Valori minori consentono di risparmiare sul materiale utilizzato." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti degli strati adiacenti. Valori minori consentono di risparmiare sul materiale utilizzato." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Distanza per cui i rivestimenti superiori si estendono nel riempimento. Valori maggiori migliorano l'aderenza del rivestimento al riempimento e consentono una migliore aderenza al rivestimento delle pareti dello strato superiore. Valori minori consentono di risparmiare sul materiale utilizzato." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "La distanza dello spostamento longitudinale eseguito dalla testina attraverso lo spazzolino." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "I punti finali delle linee di riempimento vengono accorciati per risparmiare sul materiale. Questa impostazione è l'angolo di sbalzo dei punti finali di queste linee." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Indica l'incremento di velocità di raffreddamento dell'ugello in fase di estrusione. Lo stesso valore viene usato per indicare la perdita di velocità di riscaldamento durante il riscaldamento in fase di estrusione." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del primo strato del riempimento del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del primo strato del raft. Utilizzato nell’estrusione multipla." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti inferiori del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del riempimento del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello strato intermedio del raft. Utilizzato nell’estrusione multipla." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti superiori e inferiori del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per la stampa delle parti superiori del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello skirt o del brim. Utilizzato nell’estrusione multipla." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa dello skirt/brim/raft. Utilizzato nell’estrusione multipla." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa del supporto. Utilizzato nell’estrusione multipla." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Il treno estrusore utilizzato per la stampa degli strati superiori del raft. Utilizzato nell’estrusione multipla." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il riempimento. Si utilizza nell'estrusione multipla." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare le pareti interne. Si utilizza nell'estrusione multipla." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare la parete esterna. Si utilizza nell'estrusione multipla." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il rivestimento superiore e quello inferiore. Si utilizza nell'estrusione multipla." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare il rivestimento più in alto. Si utilizza nell'estrusione multipla." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Treno estrusore utilizzato per stampare le pareti. Si utilizza nell'estrusione multipla." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Indica la velocità di rotazione della ventola per lo strato di base del raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Indica la velocità di rotazione della ventola per gli strati intermedi del raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Indica la velocità di rotazione della ventola per il raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Indica la velocità di rotazione della ventola per gli strati superiori del raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel riempimento della stampa." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "La posizione del file di un'immagine i cui i valori di luminosità determinano la densità minima nella posizione corrispondente nel supporto." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "I primi strati vengono stampati più lentamente rispetto al resto del modello, per ottenere una migliore adesione al piano di stampa ed ottimizzare nel complesso la percentuale di successo delle stampe. La velocità aumenta gradualmente nel corso di esecuzione degli strati successivi." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "È l'interstizio tra lo strato di raft finale ed il primo strato del modello. Solo il primo strato viene sollevato di questo valore per ridurre l'adesione fra lo strato di raft e il modello. Ciò rende più facile rimuovere il raft." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "L’altezza (direzione Z) dell’area stampabile." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Altezza sopra le parti orizzontali del modello che stampano lo stampo." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Indica l’altezza alla quale la ventola ruota alla velocità regolare. Agli strati stampati a velocità inferiore la velocità della ventola aumenta gradualmente dalla velocità iniziale a quella regolare." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "La differenza di altezza tra la punta dell’ugello e il sistema gantry (assy X e Y)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "La differenza di altezza tra la punta dell’ugello e la parte inferiore della testina di stampa." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "La differenza di altezza durante l'esecuzione di uno Z Hop dopo il cambio dell'estrusore." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "La differenza di altezza durante l’esecuzione di uno Z Hop." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Indica l’altezza di ciascuno strato in mm. Valori più elevati generano stampe più rapide con risoluzione inferiore, valori più bassi generano stampe più lente con risoluzione superiore." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Indica l’altezza di riempimento di una data densità prima di passare a metà densità." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Indica l’altezza di riempimento del supporto di una data densità prima di passare a metà densità." + +msgctxt "interlocking_beam_layer_count description" +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 "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." + +msgctxt "interlocking_orientation description" +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 "L'altezza delle travi della struttura a incastro, misurata in numero di strati. Un numero minore di strati è più forte, ma più soggetto a difetti." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Indica l’altezza dello strato iniziale in mm. Uno strato iniziale più spesso facilita l’adesione al piano di stampa." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "L'altezza della base della torre di primerizzazione. Aumentando questo valore si otterrà una torre di primerizzazione più robusta perché la base sarà più ampia. Se questa impostazione è troppo bassa, la torre di primerizzazione non avrà una base solida." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Altezza dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto. Impostare a zero per disabilitare il profilo a scala." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Distanza orizzontale tra la linea del primo brim e il profilo del primo layer della stampa. Un piccolo interstizio può semplificare la rimozione del brim e allo stesso tempo fornire dei vantaggi termici." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Indica la distanza orizzontale tra lo skirt ed il primo strato della stampa." +"Questa è la distanza minima. Più linee di skirt aumenteranno tale distanza." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Le linee di riempimento vengono raddrizzate per risparmiare sul tempo di stampa. Questo è l'angolo di sbalzo massimo consentito sulla lunghezza della linea di riempimento." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Il riempimento si sposta di questa distanza lungo l'asse X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Il riempimento si sposta di questa distanza lungo l'asse Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Il diametro interno dell’ugello. Modificare questa impostazione quando si utilizza una dimensione ugello non standard." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato di base del raft." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Indica il jerk con cui viene stampato lo strato intermedio del raft." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Indica il jerk con cui viene stampato il raft." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Indica il jerk al quale vengono stampati gli strati superiori del raft." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento inferiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento inferiore sulle superfici inclinate del modello." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore/inferiore sulle superfici inclinate del modello." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Larghezza massima delle aree di rivestimento superiore che è possibile rimuovere. Ogni area di rivestimento più piccola di questo valore verrà eliminata. Questo può aiutare a limitare il tempo e il materiale necessari per la stampa del rivestimento superiore sulle superfici inclinate del modello." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Indica lo strato in corrispondenza del quale la ventola ruota alla velocità regolare. Se è impostata la velocità regolare in altezza, questo valore viene calcolato e arrotondato a un numero intero." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Indica il tempo per strato che definisce la soglia tra la velocità regolare e quella massima della ventola. Gli strati che vengono stampati a una velocità inferiore a questo valore utilizzano una velocità regolare della ventola. Per gli strati stampati più velocemente la velocità della ventola aumenta gradualmente verso la velocità massima della ventola." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "La lunghezza del materiale retratto durante il movimento di retrazione." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Il fattore di magnitudo usato per la pendenza della base della torre di primerizzazione. Aumentando questo valore, la base diventerà più sottile. Diminuendolo, la base diventerà più spessa." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Il materiale del piano di stampa installato sulla stampante." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "La differenza di altezza massima rispetto all’altezza dello strato di base." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "È l'angolazione massima ammessa delle parti nel riparo. Con 0 gradi verticale e 90 gradi orizzontale. Un angolo più piccolo comporta minori ripari non riusciti, ma maggiore materiale." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "L’angolo massimo degli sbalzi dopo essere stati resi stampabili. A un valore di 0° tutti gli sbalzi sono sostituiti da un pezzo del modello collegato al piano di stampa, 90° non cambia il modello in alcun modo." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Angolo massimo dei rami mentre crescono intorno al modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per ottenere una portata maggiore." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "L'area massima di un foro nella base del modello prima che venga rimossa da Rendi stampabile lo sbalzo. I fori più piccoli di questo verranno mantenuti. Un valore di 0 mm² riempirà i fori nella base del modello." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "La deviazione massima consentita quando si riduce la risoluzione per l'impostazione Risoluzione massima. Se si aumenta questo parametro, la stampa sarà meno precisa, ma il g-code sarà più piccolo. Deviazione massima rappresenta il limite per Risoluzione massima; pertanto se le due impostazioni sono in conflitto, verrà considerata vera l'impostazione Deviazione massima." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "La distanza massima tra le strutture di supporto nelle direzioni X/Y. Quando la distanza tra le strutture è inferiore al valore indicato, le strutture convergono in una unica." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Distanza massima in mm di spostamento del filamento per compensare le modifiche nella velocità di flusso." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "La deviazione massima dell'area di estrusione consentita durante la rimozione di punti intermedi da una linea retta. Un punto intermedio può fungere da punto di modifica larghezza in una lunga linea retta. Pertanto, se viene rimosso, la linea avrà una larghezza uniforme e, come risultato, perderà (o guadagnerà) area di estrusione. In caso di incremento si può notare una leggera sotto (o sovra) estrusione tra pareti parallele rette, poiché sarà possibile rimuovere più punti di variazione della larghezza intermedi. La stampa sarà meno precisa, ma il G-Code sarà più piccolo." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Indica il cambio della velocità istantanea massima durante la stampa dello strato iniziale." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Indica il cambio della velocità istantanea massima della testina di stampa." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Indica la variazione della velocità istantanea massima durante la stiratura." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate tutte le pareti interne." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti inferiori." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampato il riempimento del supporto." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti più esterne." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la torre di innesco del supporto." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori e inferiori." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Indica la variazione della velocità istantanea massima con cui vengono stampate le parti superiori." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati lo skirt e il brim." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Indica il cambio della velocità istantanea massima con cui viene stampata la struttura del supporto." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "La massima variazione istantanea di velocità con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampate le pareti." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Indica la variazione di velocità istantanea massima con cui vengono stampati gli strati rivestimento superficie superiore." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono stampati gli strati superiore/inferiore." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Indica il cambio della velocità istantanea massima con cui vengono effettuati gli spostamenti." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "La lunghezza massima dei rami stampabili a mezz'aria." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Indica la velocità massima del motore per la direzione X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Indica la velocità massima del motore per la direzione Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Indica la velocità massima del motore per la direzione Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Indica la velocità massima del filamento." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Larghezza massima dei gradini della parte inferiore del supporto a scala che appoggia sul modello. Un valore inferiore rende il supporto più difficile da rimuovere, ma valori troppo elevati possono rendere instabili le strutture di supporto." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Distanza minima tra l'esterno dello stampo e l'esterno del modello." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Indica la velocità di spostamento minima della testina di stampa." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "La temperatura minima durante il riscaldamento fino alla temperatura alla quale può già iniziare la stampa." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Il tempo minimo in cui un estrusore deve essere inattivo prima che l’ugello si raffreddi. Solo quando un estrusore non è utilizzato per un periodo superiore a questo tempo potrà raffreddarsi alla temperatura di standby." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "L'angolo minimo degli sbalzi interni per il quale viene aggiunto il riempimento. Per un valore corrispondente a 0°, gli oggetti sono completamente riempiti di materiale, per un valore corrispondente a 90° non è previsto riempimento." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Indica l’angolo minimo degli sbalzi per i quali viene aggiunto il supporto. A un valore di 0 ° tutti gli sbalzi vengono supportati, con un valore di 90 ° non sarà fornito alcun supporto." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Determina la distanza minima necessaria affinché avvenga una retrazione. Questo consente di avere un minor numero di retrazioni in piccole aree." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Indica la lunghezza minima dello skirt o del brim. Se tale lunghezza minima non viene raggiunta da tutte le linee skirt o brim insieme, saranno aggiunte più linee di skirt o brim fino a raggiungere la lunghezza minima. Nota: se il valore è impostato a 0, questa funzione viene ignorata." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "La larghezza minima della linea per pareti polilinea di riempimento interstizi linea intermedia. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di due linee perimetrali alla stampa di due pareti esterne e di una singola parete centrale al centro. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea di parete dispari viene calcolata come 2 * Larghezza minima della linea di parete pari." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "La larghezza minima della linea per normali pareti poligonali. Questa impostazione determina lo spessore modello in corrispondenza del quale si passa dalla stampa di una singola linea perimetrale sottile alla stampa di due linee perimetrali. Una larghezza minima della linea perimetrale pari più elevata porta a una larghezza massima della linea perimetrale dispari più elevata. La larghezza massima della linea perimetrale pari viene calcolata come Larghezza della linea perimetrale esterna + 0,5 * Larghezza minima della linea perimetrale dispari." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Indica la velocità minima di stampa, a prescindere dal rallentamento per il tempo minimo per strato. Quando la stampante rallenta eccessivamente, la pressione nell’ugello risulta insufficiente con conseguente scarsa qualità di stampa." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "La dimensione minima di un segmento di linea dopo il sezionamento. Se tale dimensione aumenta, la maglia avrà una risoluzione inferiore. Questo può consentire alla stampante di mantenere la velocità per processare il g-code ed aumenterà la velocità di sezionamento eliminando i dettagli della maglia che non è comunque in grado di processare." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "La dimensione minima di un segmento lineare di spostamento dopo il sezionamento. Aumentando tale dimensione, le corse di spostamento avranno meno angoli arrotondati. La stampante può così mantenere la velocità per processare il g-code, ma si può verificare una riduzione della precisione di aggiramento del modello." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "La pendenza minima dell'area alla quale ha effetto la creazione dei gradini. Valori bassi dovrebbero semplificare la rimozione del supporto sulle pendenze meno profonde, ma in realtà dei valori bassi possono generare risultati molto irrazionali sulle altre parti del modello." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Indica il tempo minimo dedicato a uno strato. Questo forza la stampante a rallentare, per impiegare almeno il tempo impostato qui per uno strato. Questo consente il corretto raffreddamento del materiale stampato prima di procedere alla stampa dello strato successivo. La stampa degli strati potrebbe richiedere un tempo inferiore al minimo se la funzione Sollevamento della testina è disabilitata e se la velocità minima non viene rispettata." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Il volume minimo per ciascuno strato della torre di innesco per scaricare materiale a sufficienza." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Il diametro massimo di un ramo che deve collegarsi al modello può aumentare unendosi ai rami che potrebbero raggiungere il piano di stampa. L'aumento riduce il tempo di stampa, ma aumenta l'area di supporto che poggia sul modello" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Il nome del modello della stampante 3D in uso." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "ID ugello per un treno estrusore, come \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Durante lo spostamento l’ugello evita le parti già stampate. Questa opzione è disponibile solo quando è abilitata la funzione Combing." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Durante lo spostamento l'ugello evita i supporti già stampati. Questa opzione è disponibile solo quando è abilitata la funzione combing." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Indica il numero degli strati inferiori. Quando calcolato mediante lo spessore dello strato inferiore, il valore viene arrotondato a numero intero." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Il numero di contorni da stampare intorno alla configurazione lineare nello strato di base del raft." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati centrali del raft." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare negli strati superiori del raft." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Il numero di contorni da stampare intorno al modello lineare del raft." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Numero di layer di riempimento che supportano i bordi del rivestimento." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Il numero di layer inferiori iniziali, dal piano di stampa verso l'alto. Quando viene calcolato mediante lo spessore inferiore, questo valore viene arrotondato a un numero intero." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Il numero di strati tra la base e la superficie del raft. Questi costituiscono lo spessore principale del raft. L'incremento di questo numero crea un raft più spesso e robusto." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Corrisponde al numero di linee utilizzate per un brim. Più linee brim migliorano l’adesione al piano di stampa, ma con riduzione dell'area di stampa." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Corrisponde al numero di linee utilizzate per il brim del supporto. Più linee brim migliorano l’adesione al piano di stampa, ma utilizzano una maggiore quantità di materiale." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Numero di strati sulla parte superiore del secondo strato del raft. Si tratta di strati completamente riempiti su cui poggia il modello. 2 strati danno come risultato una superficie superiore più levigata rispetto ad 1 solo strato." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Indica il numero degli strati superiori. Quando calcolato mediante lo spessore dello strato superiore, il valore viene arrotondato a numero intero." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Numero degli strati di rivestimento superiori. Solitamente è sufficiente un unico strato di sommità per ottenere superfici superiori di qualità elevata." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti circostanti il riempimento di supporto. L'aggiunta di una parete può rendere la stampa del supporto più affidabile ed in grado di supportare meglio gli sbalzi, ma aumenta il tempo di stampa ed il materiale utilizzato." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare il pavimento dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare il tetto dell'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Il numero di pareti con cui circondare l'interfaccia di supporto. L'aggiunta di una parete può rendere la stampa di supporto più affidabile e può supportare meglio gli sbalzi, ma aumenta il tempo di stampa e il materiale utilizzato." + +msgctxt "wall_distribution_count description" +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 "Il numero di pareti, conteggiate dal centro, su cui occorre distribuire la variazione. Valori più bassi indicano che la larghezza delle pareti esterne non cambia." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Indica il numero delle pareti. Quando calcolato mediante lo spessore della parete, il valore viene arrotondato a numero intero." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Il diametro esterno della punta dell'ugello." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Configurazione del materiale di riempimento della stampa. Il riempimento a linea e a zig zag cambia direzione su strati alternati, riducendo il costo del materiale. Le configurazioni a griglia, a triangolo, tri-esagonali, cubiche, ottagonali, a quarto di cubo, incrociate e concentriche sono stampate completamente su ogni strato. Le configurazioni gyroid, cubiche, a quarto di cubo e ottagonali variano per ciascuno strato per garantire una più uniforme distribuzione della forza in ogni direzione. Il riempimento fulmine cerca di minimizzare il riempimento, supportando solo la parte superiore dell'oggetto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Indica la configurazione delle strutture di supporto della stampa. Le diverse opzioni disponibili generano un supporto robusto o facile da rimuovere." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Configurazione degli strati superiori." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Indica la configurazione degli strati superiori/inferiori." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "La configurazione al fondo della stampa sul primo strato." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Configurazione utilizzata per la stiratura della superficie superiore." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "È la configurazione (o pattern) con cui vengono stampate le parti inferiori del supporto." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "È la configurazione (o pattern) con cui viene stampata l’interfaccia del supporto con il modello." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "È la configurazione (o pattern) con cui vengono stampate le parti superiori del supporto." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "La posizione accanto al punto in cui avviare la stampa di ciascuna parte in uno layer." + +msgctxt "support_tree_angle_slow description" +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 "L'angolo dei rami preferito, quando questi non devono evitare il modello. Usa un angolo inferiore per renderli più verticali e più stabili. Usa un angolo più alto per unire più velocemente i rami." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Il posizionamento preferito delle strutture di supporto. Se le strutture non si possono collocare nella posizione preferita, saranno collocate altrove, anche se ciò significherà posizionarle sul modello." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Indica il cambio della velocità istantanea massima dello strato iniziale." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "La forma del piano di stampa senza tenere conto delle aree non stampabili." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "La forma della testina di stampa. Queste sono le coordinate relative alla posizione della testina di stampa. Questa coincide in genere con la posizione del primo estrusore. Le posizioni a sinistra e davanti alla testina di stampa devono essere coordinate negative." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Dimensioni delle cavità negli incroci a quattro vie nella configurazione 3D incrociata alle altezze a cui la configurazione tocca se stessa." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "È il volume minimo di un percorso di estrusione prima di consentire il coasting. Per percorsi di estrusione inferiori, nel tubo Bowden si è accumulata una pressione inferiore, quindi il volume rilasciato si riduce in modo lineare. Questo valore dovrebbe essere sempre maggiore del volume di Coasting." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La velocità (°C/s) alla quale l’ugello si raffredda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "La velocità (°C/s) alla quale l’ugello si riscalda calcolando la media sulla gamma di temperature di stampa normale e la temperatura di attesa." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Indica la velocità alla quale vengono stampate tutte le pareti interne. La stampa della parete interna eseguita più velocemente di quella della parete esterna consentirà di ridurre il tempo di stampa. Si consiglia di impostare questo parametro ad un valore intermedio tra la velocità della parete esterna e quella di riempimento." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Indica la velocità alla quale vengono stampate le zone di rivestimento esterno del ponte." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Indica la velocità alla quale viene stampato il riempimento." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Indica la velocità alla quale viene effettuata la stampa." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampata la base del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti ponte." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "La velocità di rotazione della ventola all’inizio della stampa. Negli strati successivi la velocità della ventola aumenta gradualmente da zero fino allo strato corrispondente alla velocità regolare in altezza." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Indica la velocità alla quale ruotano le ventole prima di raggiungere la soglia. Quando uno strato viene stampato a una velocità superiore alla soglia, la velocità della ventola tende gradualmente verso la velocità massima della ventola." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Indica la velocità di rotazione della ventola al tempo minimo per strato. La velocità della ventola aumenta gradualmente tra la velocità regolare della ventola e la velocità massima della ventola quando viene raggiunta la soglia." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene preparato durante un movimento di retrazione per pulitura." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Indica la velocità alla quale il filamento viene sospinto indietro dopo la retrazione per cambio ugello." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto e preparato durante un movimento di retrazione per pulitura." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Indica la velocità alla quale il filamento viene retratto durante una retrazione per cambio ugello." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Indica la velocità alla quale il filamento viene retratto durante un movimento di retrazione per pulitura." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Indica la velocità di retrazione del filamento. Una maggiore velocità di retrazione funziona bene, ma una velocità di retrazione eccessiva può portare alla deformazione del filamento." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Velocità alla quale viene stampata la parte inferiore del supporto. La stampa ad una velocità inferiore può migliorare l'adesione del supporto nella parte superiore del modello." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Indica la velocità alla quale viene stampato il riempimento del supporto. La stampa del riempimento a velocità inferiori migliora la stabilità." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Indica la velocità alla quale viene stampato lo strato intermedio del raft. La sua stampa deve avvenire molto lentamente, considerato che il volume di materiale che fuoriesce dall'ugello è piuttosto elevato." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Indica la velocità alla quale vengono stampate le pareti più esterne. La stampa della parete esterna ad una velocità inferiore migliora la qualità finale del rivestimento. Tuttavia, una grande differenza tra la velocità di stampa della parete interna e quella della parete esterna avrà effetti negativi sulla qualità." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Indica la velocità alla quale è stampata la torre di innesco. La stampa della torre di innesco a una velocità inferiore può renderla maggiormente stabile quando l’adesione tra i diversi filamenti non è ottimale." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Indica la velocità di rotazione delle ventole di raffreddamento stampa." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Indica la velocità alla quale il raft è stampato." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocità alla quale vengono stampate le parti superiori e inferiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Velocità alla quale vengono stampate le parti superiori del supporto. La loro stampa a velocità inferiori può migliorare la qualità dello sbalzo." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Indica la velocità a cui sono stampati lo skirt ed il brim. Normalmente questa operazione viene svolta alla velocità di stampa dello strato iniziale, ma a volte è possibile che si desideri stampare lo skirt o il brim ad una velocità diversa." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Indica la velocità alla quale viene stampata la struttura di supporto. La stampa della struttura di supporto a velocità elevate può ridurre considerevolmente i tempi di stampa. La qualità superficiale della struttura di supporto di norma non riveste grande importanza in quanto viene rimossa dopo la stampa." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Indica la velocità alla quale sono stampati gli strati superiori del raft. La stampa di questi strati deve avvenire un po' più lentamente, in modo da consentire all'ugello di levigare lentamente le linee superficiali adiacenti." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "La velocità con cui vengono stampate le pareti interne della superficie superiore." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie superiore." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Velocità alla quale viene eseguito il movimento Z verticale per i sollevamenti in Z. In genere è inferiore alla velocità di stampa, dal momento che il piano o il corpo di stampa della macchina sono più difficili da spostare." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Indica la velocità alla quale vengono stampate le pareti." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Velocità alla quale passare sopra la superficie superiore." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "La velocità alla quale retrarre il filamento al fine di romperlo in modo netto." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Indica la velocità di stampa degli strati superiori." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Indica la velocità alla quale vengono stampati gli strati superiore/inferiore." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Indica la velocità alla quale vengono effettuati gli spostamenti." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "È la velocità a cui eseguire lo spostamento durante il Coasting, rispetto alla velocità del percorso di estrusione. Si consiglia di impostare un valore leggermente al di sotto del 100%, poiché durante il Coasting la pressione nel tubo Bowden scende." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "La velocità dello strato iniziale. È consigliabile un valore inferiore per migliorare l'adesione al piano di stampa. Non influisce sulle strutture di adesione del piano di stampa stesse, come brim e raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Indica la velocità di stampa per lo strato iniziale. Un valore inferiore è consigliabile per migliorare l’adesione al piano di stampa." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Indica la velocità di spostamento per lo strato iniziale. Un valore inferiore è consigliabile per evitare di rimuovere le parti precedentemente stampate dal piano di stampa. Il valore di questa impostazione può essere calcolato automaticamente dal rapporto tra la velocità di spostamento e la velocità di stampa." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "La temperatura a cui il filamento viene rotto, con una rottura netta." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "La temperatura dell'ambiente in cui stampare. Se il valore è 0, la temperatura del volume di stampa non verrà regolata." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Indica la temperatura dell'ugello quando un altro ugello è attualmente in uso per la stampa." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "La temperatura alla quale può già iniziare il raffreddamento prima della fine della stampa." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "La temperatura utilizzata per la stampa del primo strato." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Indica la temperatura usata per la stampa." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Indica la temperatura usata per il piano di stampa riscaldato per il primo strato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato per il primo strato." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Indica la temperatura utilizzata per il piano di stampa riscaldato. Se questo valore è 0, il piano di stampa viene lasciato non riscaldato." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "La temperatura utilizzata per scaricare il materiale. deve essere più o meno uguale alla massima temperatura di stampa possibile." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Indica lo spessore degli strati inferiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati inferiori." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Spessore del riempimento supplementare che supporta i bordi del rivestimento." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Indica lo spessore dell’interfaccia del supporto dove tocca il modello nella parte inferiore o in quella superiore." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Indica lo spessore delle parti inferiori del supporto. Questo controlla il numero di strati fitti stampati sulla sommità dei punti di un modello su cui appoggia un supporto." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Lo spessore delle parti superiori del supporto. Questo controlla la quantità di strati fitti alla sommità del supporto su cui appoggia il modello." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Indica lo spessore degli strati superiori nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Indica lo spessore degli strati superiore/inferiore nella stampa. Questo valore diviso per la l’altezza dello strato definisce il numero degli strati superiori/inferiori." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Spessore delle pareti in direzione orizzontale. Questo valore diviso per la larghezza della linea della parete definisce il numero di pareti." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Indica lo spessore per strato di materiale di riempimento. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Indica lo spessore per strato del materiale di riempimento del supporto. Questo valore deve sempre essere un multiplo dell’altezza dello strato e in caso contrario viene arrotondato." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Il tipo di codice G da generare." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Il tipo di materiale utilizzato." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "È il volume di materiale fuoriuscito. Questo valore deve di norma essere prossimo al diametro dell'ugello al cubo." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "La larghezza (direzione X) dell’area stampabile." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Corrisponde alla larghezza del brim da stampare al di sotto del supporto. Un brim più largo migliora l’adesione al piano di stampa, ma utilizza una maggiore quantità di materiale." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "La larghezza delle travi della struttura ad incastro." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "La larghezza del bordo/base della torre di primerizzazione. Una base più ampia migliora l'aderenza alla piastra di costruzione, ma riduce anche l'area di stampa effettiva." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Indica la larghezza della torre di innesco." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Indica la larghezza entro cui è ammessa la distorsione (jitter). Si consiglia di impostare questo valore ad un livello inferiore rispetto alla larghezza della parete esterna, poiché le pareti interne rimangono inalterate." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "La finestra in cui è impostato il massimo numero di retrazioni. Questo valore deve corrispondere all'incirca alla distanza di retrazione, in modo da limitare effettivamente il numero di volte che una retrazione interessa lo stesso spezzone di materiale." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "Indica la coordinata X della posizione della torre di innesco." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Indica la coordinata Y della posizione della torre di innesco." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Nella scena sono presenti maglie di supporto. Questa impostazione è controllata da Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Questo comanda la distanza che l’estrusore deve percorrere in coasting immediatamente dopo l’inizio di una parete ponte. Il coasting prima dell’inizio del ponte può ridurre la pressione nell’ugello e generare un ponte più piatto." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni nel contorno della base del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte centrale del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla l'entità dell'arrotondamento degli angoli interni sul profilo raft. Gli angoli interni vengono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione elimina inoltre i fori sul profilo raft più piccoli di tale cerchio." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Questa impostazione controlla la quantità di arrotondamento degli angoli interni del contorno della parte superiore del raft. Gli angoli interni sono arrotondati a semicerchio con un raggio pari al valore indicato. Questa impostazione rimuove anche i buchi nel contorno del raft che sono più piccoli di tale cerchio." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Questa impostazione limita il numero di retrazioni previste all'interno della finestra di minima distanza di estrusione. Ulteriori retrazioni nell'ambito di questa finestra saranno ignorate. Questo evita di eseguire ripetute retrazioni sullo stesso pezzo di filamento, onde evitarne l'appiattimento e conseguenti problemi di deformazione." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "In tal modo si creerà una protezione attorno al modello che intrappola l'aria (calda) e lo protegge da flussi d’aria esterna. Particolarmente utile per i materiali soggetti a deformazione." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diametro della punta" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione XY (orizzontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore nella direzione Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Per compensare la contrazione del materiale durante il raffreddamento, il modello sarà scalato con questo fattore." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Strati superiori" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distanza prolunga rivestimento superiore" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Larghezza rimozione rivestimento superiore" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Accelerazione della parete interna della superficie superiore" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk parete esterna della superficie superiore" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocità di stampa della parete interna della superficie superiore" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Flusso della parete interna della superficie superiore" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Accelerazione della parete esterna della superficie superiore" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Flusso della parete esterna della superficie superiore" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk parete interna della superficie superiore" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocità di stampa della parete esterna della superficie superiore" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Accelerazione del rivestimento superficie superiore" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Estrusore rivestimento superficie superiore" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Flusso rivestimento esterno superficie superiore" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk del rivestimento superficie superiore" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Strati di rivestimento superficie superiore" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direzioni linea rivestimento superficie superiore" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Larghezza linea rivestimento superficie superiore" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Configurazione del rivestimento superficie superiore" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocità del rivestimento superficie" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Spessore dello strato superiore" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Nelle superfici superiore e/o inferiore dell'oggetto con un angolo più grande di questa impostazione, il rivestimento esterno non sarà prolungato. Questo evita il prolungamento delle aree del rivestimento esterno strette che vengono create quando la pendenza della superficie del modello è quasi verticale. Un angolo di 0° è orizzontale e non causa il prolungamento di alcun rivestimento esterno, mentre un angolo di 90° è verticale e causa il prolungamento di tutto il rivestimento esterno." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superiore / Inferiore" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Accelerazione strato superiore/inferiore" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Estrusore superiore/inferiore" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Flusso superiore/inferiore" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk strato superiore/inferiore" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direzioni delle linee superiori/inferiori" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Larghezza delle linee superiore/inferiore" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Configurazione dello strato superiore/inferiore" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocità di stampa delle parti superiore/inferiore" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Spessore dello strato superiore/inferiore" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Contatto con il Piano di Stampa" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diametro della torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Angolazione della parte superiore (tetto) della torre" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matrice di rotazione da applicare al modello quando caricato dal file." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Regola il posizionamento delle strutture di supporto. Il posizionamento può essere impostato su contatto con il piano di stampa o in tutti i possibili punti. Quando impostato su tutti i possibili punti, le strutture di supporto verranno anche stampate sul modello." +msgctxt "travel label" +msgid "Travel" +msgstr "Spostamenti" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Accelerazione spostamenti" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distanza di aggiramento durante gli spostamenti" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk spostamenti" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocità degli spostamenti" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Trattare il modello solo come una superficie, un volume o volumi con superfici libere. Il modo di stampa normale stampa solo volumi delimitati. “Superficie” stampa una parete singola tracciando la superficie della maglia senza riempimento e senza rivestimento esterno superiore/inferiore. “Entrambi” stampa i volumi delimitati come normali ed eventuali poligoni rimanenti come superfici." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Albero" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-esagonale" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triangoli" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diametro del tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unione dei volumi in sovrapposizione" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Le pareti non supportate di lunghezza inferiore a questo valore verranno stampate utilizzando le normali impostazioni parete. Le pareti non supportate di lunghezza superiore verranno stampate utilizzando le impostazioni parete ponte." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uso di strati adattivi" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizzo delle torri" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Usa una velocità di accelerazione separata per i movimenti di spostamento. Se disabilitato, i movimenti di spostamento utilizzeranno il valore di accelerazione della linea stampata alla destinazione." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Usa un tasso di jerk separato per i movimenti di spostamento. Se disabilitata, i movimenti di spostamento utilizzeranno il valore di jerk della linea stampata alla destinazione." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizza l'estrusione relativa invece di quella assoluta. L'utilizzo di fasi E relative facilita la post-elaborazione del codice G. Tuttavia, questa impostazione non è supportata da tutte le stampanti e può causare deviazioni molto piccole nella quantità di materiale depositato rispetto alle fasi E assolute. Indipendentemente da questa impostazione, la modalità estrusione sarà sempre impostata su assoluta prima che venga generato uno script in codice G." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilizza speciali torri per il supporto di piccolissime aree di sbalzo. Queste torri hanno un diametro maggiore rispetto a quello dell'area che supportano. In prossimità dello sbalzo il diametro delle torri diminuisce, formando un 'tetto'." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilizzare questa maglia per modificare il riempimento di altre maglie a cui è sovrapposta. Sostituisce le regioni di riempimento di altre maglie con le regioni di questa maglia. Si consiglia di stampare solo una parete e non il rivestimento esterno superiore/inferiore per questa maglia." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilizzare questa maglia per specificare le aree di supporto. Può essere usata per generare una struttura di supporto." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilizzare questa maglia per specificare dove nessuna parte del modello deve essere rilevata come in sovrapposizione. Può essere usato per rimuovere struttura di supporto indesiderata." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Specificato dall’utente" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Fattore di scala verticale per la compensazione della contrazione" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolleranza verticale negli strati sezionati. Di norma i contorni di uno strato vengono generati prendendo le sezioni incrociate fino al centro dello spessore di ciascun livello (intermedie). In alternativa, ogni strato può avere le aree che cadono all'interno del volume per tutto lo spessore dello strato (esclusive) oppure uno strato presenta le aree che rientrano all'interno di qualsiasi punto dello strato (inclusive). Le aree inclusive conservano la maggior parte dei dettagli; le esclusive generano la soluzione migliore, mentre le intermedie restano più vicine alla superficie originale." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Attendi il riscaldamento del piano di stampa" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Attendi il riscaldamento dell’ugello" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Accelerazione parete" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Conteggio distribuzione parete" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Estrusore pareti" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Flusso della parete" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk parete" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Numero delle linee perimetrali" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Larghezza delle linee perimetrali" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordinamento parete" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocità di stampa della parete" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Spessore delle pareti" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lunghezza transizione parete" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distanza di filtro transizione parete" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margine filtro di transizione parete" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Angolo di soglia di transizione parete" + +msgctxt "shell label" +msgid "Walls" +msgstr "Pareti" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Le pareti con uno sbalzo superiore a quest'angolo saranno stampate con le impostazioni per le pareti a sbalzo. Se il valore è 90, nessuna parete sarà trattata come parete a sbalzo. Nemmeno lo sbalzo supportato dal supporto sarà trattato come tale." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Se questa opzione è abilitata, i percorsi utensile vengono corretti per le stampanti con pianificatori del movimento regolare. I piccoli movimenti che deviano dalla direzione del percorso utensile generale vengono risistemati per migliorare i movimenti del fluido." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando abilitato, l’ordine di stampa delle linee di riempimento viene ottimizzato per ridurre la distanza percorsa. La riduzione del tempo di spostamento ottenuta dipende in particolare dal modello sezionato, dalla configurazione di riempimento, dalla densità, ecc. Si noti che, per alcuni modelli che hanno piccole aree di riempimento, il tempo di sezionamento del modello può aumentare notevolmente." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando abilitata, la velocità della ventola di raffreddamento stampa viene modificata per le zone del rivestimento esterno subito sopra il supporto." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Se abilitato, le coordinate della giunzione Z sono riferite al centro di ogni parte. Se disabilitato, le coordinate definiscono una posizione assoluta sul piano di stampa." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Per un valore superiore a zero, le corse di spostamento in modalità combing superiori a tale distanza utilizzeranno la retrazione. Se il valore impostato è zero, non è presente un valore massimo e le corse in modalità combing non utilizzeranno la retrazione." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando è maggiore di zero, l'Espansione orizzontale dei fori viene applicata gradualmente sui fori piccoli (i fori piccoli vengono espansi maggiormente). Quando l'opzione è impostata su zero, l'espansione orizzontale sarà applicata a tutti i fori. I fori più grandi del diametro massimo di espansione orizzontale non saranno espansi." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Se maggiore di zero, l'espansione orizzontale del foro è la quantità di offset applicata a tutti i fori in ciascun livello. I valori positivi aumentano la dimensione dei fori, i valori negativi riducono la dimensione dei fori. Se questa impostazione è abilitata, può essere ulteriormente regolata con l'opzione del diametro max dell'espansione orizzontale del foro." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampano le zone di rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampano le pareti ponte, la quantità di materiale estruso viene moltiplicata per questo valore." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampa il secondo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Quando si stampa il terzo strato del rivestimento esterno ponte, la quantità di materiale estruso viene moltiplicata per questo valore." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando viene raggiunta la velocità minima per il tempo minimo per strato, sollevare la testina dalla stampa e attendere il tempo supplementare fino al raggiungimento del valore per tempo minimo per strato." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando il modello presenta piccoli spazi vuoti verticali composti da un numero ridotto di strati, intorno a questi strati di norma dovrebbe essere presente un rivestimento esterno nell'interstizio. Abilitare questa impostazione per non generare il rivestimento esterno se l'interstizio verticale è molto piccolo. Ciò consente di migliorare il tempo di stampa e il tempo di sezionamento, ma dal punto di vista tecnico lascia il riempimento esposto all'aria." + +msgctxt "wall_transition_angle description" +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 "Quando creare transizioni tra numeri di parete pari e dispari. Una forma a cuneo con un angolo maggiore di questa impostazione non presenta transazioni e nessuna parete verrà stampata al centro per riempire lo spazio rimanente. Riducendo questa impostazione si riduce il numero e la lunghezza di queste pareti centrali, ma potrebbe lasciare spazi vuoti o sovraestrusione." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Quando si esegue la transizione tra numeri di parete diversi poiché la parte diventa più sottile, viene allocata una determinata quantità di spazio per dividere o unire le linee perimetrali." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Durante la pulizia, il piano di stampa viene abbassato per creare uno spazio tra l'ugello e la stampa. Questo impedisce l'urto dell'ugello sulla stampa durante gli spostamenti, riducendo la possibilità di far cadere la stampa dal piano." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Ogniqualvolta avviene una retrazione, il piano di stampa viene abbassato per creare uno spazio tra l’ugello e la stampa. Previene l’urto dell’ugello sulla stampa durante gli spostamenti riducendo la possibilità di far cadere la stampa dal piano." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Indica se la distanza X/Y del supporto esclude la distanza Z del supporto o viceversa. Quando X/Y esclude Z, la distanza X/Y può allontanare il supporto dal modello, influenzando l’effettiva distanza Z allo sbalzo. È possibile disabilitare questa funzione non applicando la distanza X/Y intorno agli sbalzi." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Indica se le coordinate X/Y della posizione zero della stampante sono al centro dell’area stampabile." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Se l’endstop dell’asse X è in direzione positiva (coordinata X alta) o negativa (coordinata X bassa)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Se l’endstop dell’asse Y è in direzione positiva (coordinata Y alta) o negativa (coordinata Y bassa)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Se l’endstop dell’asse Z è in direzione positiva (coordinata Z alta) o negativa (coordinata Z bassa)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Indica se gli estrusori condividono un singolo riscaldatore piuttosto che avere ognuno il proprio." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Indica se gli estrusori condividono un singolo ugello piuttosto che avere ognuno il proprio. Se impostato su true, si prevede che lo script gcode di avvio della stampante imposti tutti gli estrusori su uno stato di retrazione iniziale noto e mutuamente compatibile (nessuno o un solo filamento non retratto); in questo caso lo stato di retrazione iniziale è descritto, per estrusore, dal parametro 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Indica se la macchina ha un piano di stampa riscaldato." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Se la macchina è in grado di stabilizzare la temperatura del volume di stampa." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Per centrare l’oggetto al centro del piano di stampa (0,0) anziché utilizzare il sistema di coordinate in cui l’oggetto è stato salvato." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Per controllare la temperatura da Cura. Disattivare per controllare la temperatura ugello dall’esterno di Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Sceglie se includere comandi temperatura piano di stampa all’avvio del codice G. Quando start_gcode contiene già comandi temperatura piano di stampa la parte anteriore di Cura disabilita automaticamente questa impostazione." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Sceglie se includere comandi temperatura ugello all’avvio del codice G. Quando start_gcode contiene già comandi temperatura ugello la parte anteriore di Cura disabilita automaticamente questa impostazione." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Indica se includere nel G-Code la pulitura ugello tra i layer (massimo 1 per layer). L'attivazione di questa impostazione potrebbe influenzare il comportamento della retrazione al cambio layer. Utilizzare le impostazioni di retrazione per pulitura per controllare la retrazione in corrispondenza dei layer in cui sarà in funzione lo script di pulitura." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Sceglie se inserire un comando per attendere finché la temperatura del piano di stampa non viene raggiunta all’avvio." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Eventuale innesco del filamento con un blob prima della stampa. L'attivazione di questa impostazione garantisce che l'estrusore avrà il materiale pronto all'ugello prima della stampa. Anche la stampa Brim o Skirt può funzionare da innesco, nel qual caso la disabilitazione di questa impostazione consente di risparmiare tempo." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Indica se stampare tutti i modelli un layer alla volta o se attendere di terminare un modello prima di passare al successivo. La modalità \"uno per volta\" è possibile solo se a) è abilitato solo un estrusore b) tutti i modelli sono separati in modo tale che l'intera testina di stampa possa muoversi tra di essi e che tutti i modelli siano più bassi della distanza tra l'ugello e gli assi X/Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Sceglie se mostrare le diverse varianti di questa macchina, descritte in file json a parte." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Specifica se usare comandi di retrazione firmware (G10/G11) anziché utilizzare la proprietà E nei comandi G1 per retrarre il materiale." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Sceglie se attendere finché la temperatura dell’ugello non viene raggiunta all’avvio." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Indica la larghezza di una singola linea di riempimento." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Indica la larghezza di una singola linea di supporto superiore o inferiore." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Larghezza di un singola linea delle aree nella parte superiore della stampa." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Indica la larghezza di una linea singola. In generale, la larghezza di ciascuna linea deve corrispondere alla larghezza dell’ugello. Tuttavia, una lieve riduzione di questo valore potrebbe generare stampe migliori." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Indica la larghezza di una singola linea della torre di innesco." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Indica la larghezza di una singola linea dello skirt o del brim." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Indica la larghezza di una singola linea di supporto inferiore." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Indica la larghezza di una singola linea di supporto superiore." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Indica la larghezza di una singola linea di supporto." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Indica la larghezza di una singola linea superiore/inferiore." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Indica la larghezza di una singola linea della parete per tutte le linee della parete tranne quella più esterna." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Indica la larghezza di una singola linea perimetrale." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Indica la larghezza delle linee dello strato di base del raft. Le linee di questo strato devono essere spesse per favorire l'adesione al piano di stampa." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Indica la larghezza delle linee dello strato intermedio del raft. Una maggiore estrusione del secondo strato provoca l'incollamento delle linee al piano di stampa." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Indica la larghezza delle linee della superficie superiore del raft. Queste possono essere linee sottili atte a levigare la parte superiore del raft." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Indica la larghezza della linea della parete esterna. Riducendo questo valore, è possibile stampare livelli di dettaglio più elevati." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Larghezza della parete che sostituirà feature sottili (in base alle dimensioni minime della feature) del modello. Se la larghezza minima della linea perimetrale è più sottile dello spessore della feature, la parete diventerà spessa come la feature stessa." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posizione X spazzolino di pulitura" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocità di sollevamento (Hop) per pulitura" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Ugello pulitura inattiva sulla torre di innesco" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distanza spostamento longitudinale di pulitura" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Pulitura ugello tra gli strati" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa pulitura" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Conteggio ripetizioni operazioni di pulitura" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distanza di retrazione per pulitura" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Retrazione per pulitura abilitata" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Entità di innesco supplementare dopo retrazione per pulitura" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocità di pulitura retrazione" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocità di retrazione per pulitura" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocità di retrazione per pulitura" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Pulitura Z Hop" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altezza Z Hop pulitura" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Nel riempimento" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Tenere nota dello strumento attivo dopo l'invio di comandi temporanei allo strumento non attivo. Richiesto per la stampa con doppio estrusore con Smoothie o altro firmware con comandi modali dello strumento." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X in direzione positiva" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Posizione X in cui verrà avviato lo script di pulitura." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y esclude Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y in direzione positiva" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z in direzione positiva" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z Hop dopo cambio estrusore" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Z Hop dopo cambio altezza estrusore" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altezza Z Hop" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z Hop solo su parti stampate" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocità di sollevamento Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z Hop durante la retrazione" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Allineamento delle giunzioni a Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posizione della cucitura in Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Riferimento giunzione Z" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Giunzione Z X" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Giunzione Z Y" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z esclude X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" + +msgctxt "travel description" +msgid "travel" +msgstr "spostamenti" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
  • Unchanged: keep the fans as they were previously
  • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
  • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
" +msgstr "Se attivare le ventole di raffreddamento durante il cambio degli ugelli. Questo può aiutare a ridurre la fuoriuscita di liquido raffreddando l'ugello più velocemente:
  • Invariato:mantiene le ventole come prima
  • Solo ultimo estrusore: attiva la ventola dell'ultimo estrusore utilizzato, ma spegne le altre (se presenti). Utile se hai estrusori completamente separati.
  • Tutte le ventole: attiva tutte le ventole durante il cambio degli ugelli. Utile se hai una singola ventola di raffreddamento o più ventole vicine tra loro.
" + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Tutte le ventole" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Raffreddamento durante il cambio dell'estrusore" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Gestisci la relazione spaziale tra la cucitura z della struttura di supporto e il modello 3D effettivo. Questo controllo è fondamentale in quanto consente agli utenti di rimuovere facilmente le strutture di supporto dopo la stampa, senza causare danni o lasciare segni sul modello stampato." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Distanza minima della cucitura z dal modello" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Moltiplicatore per il riempimento degli strati iniziali del supporto. Aumentarlo può aiutare l'adesione al piano." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Solo l'ultimo estrusore" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Posiziona la cucitura z su un vertice del poligono. Disattivando questa opzione è possibile posizionare la cucitura anche nello spazio tra i vertici. (Tieni presente che ciò non annullerà le restrizioni sul posizionamento della cucitura su una sporgenza non supportata.)" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Spessore minimo del guscio della Prime Tower" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Flusso del basamento del raft" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Sovrapposizione del riempimento del basamento del raft" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Percentuale di sovrapposizione del riempimento del basamento del raft" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Flusso del raft" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Flusso dell'interfaccia del raft" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Sovrapposizione del riempimento dell'interfaccia della zattera" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Percentuale di sovrapposizione del riempimento dell'interfaccia della zattera" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Offset Z dell'interfaccia Raft" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Flusso della superficie del raft" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Sovrapposizione del riempimento della superficie del raft" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Percentuale di sovrapposizione del riempimento della superficie del raft" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Offset Z della superficie del raft" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Cucitura sporgente sull'angolo della parete" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Strato iniziale del moltiplicatore di densità del riempimento di supporto" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Supporta la cucitura Z lontano dal modello" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantità di materiale, rispetto a una normale linea di estrusione, da estrudere durante la stampa del basamento del raft. Un flusso maggiore può migliorare l'adesione e la resistenza strutturale del raft." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantità di materiale, relativa a una normale linea di estrusione, da estrudere durante la stampa dell'interfaccia del raft. Un flusso maggiore può migliorare l'adesione e la resistenza strutturale del raft." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantità di materiale, relativa ad una normale linea di estrusione, da estrudere durante la stampa del raft. Un flusso maggiore può migliorare l'adesione e la resistenza strutturale del raft." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "La quantità di materiale, rispetto ad una normale linea di estrusione, da estrudere durante la stampa della superficie del raft. Avere un flusso maggiore può migliorare l'adesione e la resistenza strutturale del raft." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantità di sovrapposizione tra il riempimento e le pareti del basamento del raft, come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente alle pareti di connettersi saldamente al riempimento." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantità di sovrapposizione tra il riempimento e le pareti del basamento del raft. Una leggera sovrapposizione consente alle pareti di connettersi saldamente al riempimento." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantità di sovrapposizione tra il riempimento e le pareti dell'interfaccia del raft, come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente alle pareti di connettersi saldamente al riempimento." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantità di sovrapposizione tra il riempimento e le pareti dell'interfaccia del raft. Una leggera sovrapposizione consente alle pareti di connettersi saldamente al tamponamento." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantità di sovrapposizione tra il riempimento e le pareti della superficie del raft, come percentuale della larghezza della linea di riempimento. Una leggera sovrapposizione consente alle pareti di connettersi saldamente al riempimento." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "La quantità di sovrapposizione tra il riempimento e le pareti della superficie del raft. Una leggera sovrapposizione consente alle pareti di connettersi saldamente al riempimento." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "La distanza tra il modello e la sua struttura di supporto in corrispondenza della cucitura dell'asse z." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "Lo spessore minimo del guscio della prime tower. Puoi aumentarlo per rendere più resistente la prime tower." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Cercare di evitare giunture su pareti che sporgono più di questo angolo. Quando il valore è 90, nessuna parete verrà considerata sporgente." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Invariato" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Quando si stampa il primo strato dell'interfaccia del raft, traslare con questo offset per modificare l'adesione tra il basamento e l'interfaccia. Un offset negativo dovrebbe migliorare l'adesione." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Quando si stampa il primo strato della superficie del raft, traslare con questo offset per modificare l'adesione tra l'interfaccia e la superficie. Un offset negativo dovrebbe migliorare l'adesione." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Cucitura Z sul vertice" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Aggiunge linee supplementari nel modello di riempimento per supportare gli strati sovrastanti. Questa opzione impedisce la formazione di vuoti o bolle di plastica che a volte compaiono nei modelli più complessi a causa del fatto che il riempimento sottostante non supporta correttamente lo strato stampato al di sopra." +"'Pareti' supporta solo i margini dello strato, mentre 'Pareti e linee' supporta anche le estremità delle file che compongono lo strato." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Velocità della ventola di costruzione per altezza " + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Velocità della ventola di costruzione per strato" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Numero ventola volume di stampa" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Determina la lunghezza di ciascun passo nella modifica del flusso durante l'estrusione lungo la cucitura a sciarpa. Una distanza minore determina un codice G più preciso ma anche più complesso." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Determina la lunghezza della cucitura a sciarpa, un tipo di cucitura che dovrebbe rendere la cucitura Z meno visibile. Deve essere superiore a 0 per essere efficace." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Durata di ogni gradino per la variazione graduale del flusso" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Abilitare le variazioni graduali del flusso. Quando abilitate, il flusso viene aumentato/diminuito gradualmente fino al flusso target. Ciò è utile per le stampanti dotate di tubo bowden dove il flusso non viene modificato immediatamente all'avvio/arresto del motore dell'estrusore." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Linee di rinforzo extra per sostenere gli strati superiori" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato su quello target dei percorsi." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Dimensione del gradino di discretizzazione del flusso graduale" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Flusso graduale abilitato" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Accelerazione massima del flusso graduale" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Accelerazione massima del flusso per lo strato iniziale" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Accelerazione massima per le variazioni graduali del flusso" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocità minima per le variazioni graduali del flusso per il primo strato." + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Nessuno" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Accelerazione parete esterna" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Decelerazione parete esterna" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Rapporto di velocità finale parete esterna" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Velocità distanza di divisione della parete esterna" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Rapporto di velocità iniziale parete esterna" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Reimpostare la durata del flusso" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Lunghezza cucitura a sciarpa" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Altezza iniziale cucitura a sciarpa" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Lunghezza passo cucitura a sciarpa" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "L'altezza alla quale le ventole girano a velocità regolare. Nei livelli sottostanti la velocità delle ventole aumenta gradualmente da Velocità iniziale della ventola a Velocità regolare della ventola." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "Lo strato a cui le ventole di costruzione girano alla massima velocità. Questo valore viene calcolato e arrotondato a un numero intero." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "Il numero della ventola che raffredda il volume di stampa. Se è impostato su 0, significa che non è presente alcuna ventola per il volume di stampa." + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "Il rapporto tra l'altezza dello strato selezionato e l'inizio della cucitura a sciarpa. Un numero più basso comporta un'altezza di cucitura maggiore. Per essere efficace, deve essere inferiore a 100." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Si tratta dell'accelerazione con cui si raggiunge la velocità massima quando si stampa una parete esterna." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Si tratta della decelerazione con cui terminare la stampa di una parete esterna." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "È la lunghezza massima di un percorso di estrusione se si divide un percorso più lungo per poter utilizzare l'accelerazione/decelerazione della parete esterna. Una distanza minore crea un codice G più preciso ma anche più laborioso." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Si tratta del rapporto della velocità massima con cui terminare la stampa di una parete esterna." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Questo è il rapporto della velocità massima da cui partire quando si stampa una parete esterna." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Solo pareti" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Pareti e linee" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Le pareti che sporgono più di questo angolo verranno stampate utilizzando le impostazioni per le pareti sporgenti. Con un valore di 90, nessun muro verrà considerato come sporgente. Anche le sporgenze sostenute da un supporto non verranno trattate come tali. Infine, qualsiasi linea che sia meno della metà della sporgenza non verrà gestita come tale." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Una lista di direzioni delle linee rese in numeri interi, da utilizzare quando gli strati della superficie inferiore utilizzano il pattern a linee o a zig zag. Gli elementi della lista vengono usati in sequenza man mano che gli strati progrediscono e al raggiungimento del termine della lista, si ricomincia dall'inizio. Gli elementi della lista sono separati da virgole e l'intera lista è contenuta entro parentesi quadre. Il valore predefinito è un elenco vuoto, il che significa che verranno utilizzati gli angoli predefiniti tradizionali (45 e 135 gradi)" + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Accelerazione delle pareti interne della superficie inferiore" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Jerk delle pareti interne della superficie inferiore" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Velocità delle pareti interne della superficie inferiore" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Flusso della/e parete/i interna/e del layer inferiore" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Accelerazione delle pareti esterne della superficie inferiore" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Flusso delle pareti esterne della superficie inferiore" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Jerk delle pareti esterne della superficie inferiore" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Velocità delle pareti esterne della superficie inferiore" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Accelerazione del rivestimento della superficie inferiore" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Estrusore del rivestimento della superficie inferiore" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Flusso del rivestimento della superficie inferiore" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Jerk del rivestimento della superficie inferiore" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Strati del rivestimento della superficie inferiore" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Direzione linee del rivestimento della superficie inferiore" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Spessore linee del rivestimento della superficie inferiore" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Pattern del rivestimento della superficie inferiore" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Velocità del rivestimento della superficie inferiore" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Concentrico" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Estrusore" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Compensazione del flusso sulle linee delle pareti della superficie inferiore per tutte le linee delle pareti tranne quella più esterna." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Compensazione del flusso sulle linee delle aree della superficie inferiore della stampa." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Compensazione del flusso sulle linee delle pareti più esterne della superficie inferiore" + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Distanza di evitamento per lo spostamento interno" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Linee" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Tempo minimo del strato con sporgenza" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Lunghezza minima del segmento con sporgenza" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Ordine monotono della superficie inferiore" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Decelerazione finale della parete esterna" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Accelerazione iniziale della parete esterna" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Velocità delle pareti in sporgenza" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Le pareti in sporgenza verranno stampate ad una percentuale ridotta della velocità di stampa normale. Puoi specificare valori multipli in modo che le pareti con sporgenza maggiore vengano stampate ancora più lentamente, p.e. impostando [75, 50, 25] " + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Fattore di anticipo della pressione" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Core di stampa" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Stampa le linee della superficie inferiore con un ordine che le fa sovrapporre sempre alle linee adiacenti in un'unica direzione. Questo richiede un tempo di stampa leggermente maggiore, ma rende le superfici piane più uniformi." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "Il Codice G iniziale deve essere per primo" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "L'accelerazione con la quale vengono stampati gli strati di rivestimento della superficie inferiore." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "L'accelerazione con la quale vengono stampate le pareti interne della superficie inferiore." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "L'accelerazione con la quale vengono stampate le pareti più esterne della superficie inferiore." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "Le dimensioni della testina di stampa utilizzate per determinare la 'Distanza di sicurezza del modello' durante la stampa 'Uno alla volta'. Questi numeri si riferiscono alla linea centrale dell'ugello del primo estrusore. La parte sinistra dell'ugello è 'X Min' e deve essere negativa. La parte posteriore dell'ugello è 'Y Min' e deve essere negativa. X Max (destra) e Y Max (fronte) sono numeri positivi. L'altezza del carrello è la distanza calcolata dalla piattaforma di stampa alla guida del carrello X." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "La distanza tra l'ugello e le pareti esterne già stampate durante il movimento all'interno di un modello." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "Il gruppo estrusore utilizzato per stampare il rivestimento più inferiore. Questo viene utilizzato nella stampa multi-estrusore." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "La variazione massima istantanea di velocità con cui vengono stampati gli strati di rivestimento della superficie inferiore." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "La variazione massima istantanea di velocità con cui vengono stampate le pareti interne della superficie inferiore." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "La variazione massima istantanea di velocità con cui vengono stampate le pareti più esterne della superficie inferiore." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Il tempo minimo impiegato in uno strato che contiene estrusioni in sporgenza. Questo costringe la stampante a rallentare, per impiegare almeno il tempo qui impostato in uno strato. Ciò permette al materiale stampato di raffreddarsi adeguatamente prima di stampare lo strato successivo. Gli strati potrebbero comunque richiedere meno del tempo minimo impostato se il Sollevamento della Testa è disabilitato e se altrimenti verrebbe violata la Velocità Minima." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "Il numero di strati di rivestimento più inferiori. Solitamente un solo strato più inferiore è sufficiente per generare superfici inferiori di qualità superiore." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "Il pattern dello strato più inferiore." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "La velocità alla quale i rivestimenti della superficie inferiore vengono stampati." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "La velocità con cui vengono stampate le pareti interne della superficie inferiore." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "La velocità con cui vengono stampate le pareti più esterne della superficie inferiore." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Questa impostazione controlla se il codice G iniziale deve essere forzatamente sempre il primo codice G. Senza questa opzione, altri codici G, come un T0, possono essere inseriti prima del codice G iniziale." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Fattore di regolazione per l'anticipo della pressione, che ha lo scopo di sincronizzare l'estrusione con il movimento" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Quando si cerca di applicare il tempo minimo dello strato specifico per gli strati in sporgenza, questo verrà applicato solo se almeno un movimento consecutivo di estrusione in sporgenza è più lungo di questo valore." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Spessore di una singola linea delle aree della superficie inferiore della stampa." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zig Zag" diff --git a/resources/i18n/it_IT/gradual_flow_settings.def.json.po b/resources/i18n/it_IT/gradual_flow_settings.def.json.po deleted file mode 100644 index 795ac71b6f..0000000000 --- a/resources/i18n/it_IT/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: it_IT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Flusso graduale abilitato" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Abilitare le variazioni graduali del flusso. Quando abilitate, il flusso viene aumentato/diminuito gradualmente fino al flusso target. Ciò è utile per le stampanti dotate di tubo bowden dove il flusso non viene modificato immediatamente all'avvio/arresto del motore dell'estrusore." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Accelerazione massima del flusso graduale" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Accelerazione massima per le variazioni graduali del flusso" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Accelerazione massima del flusso per lo strato iniziale" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocità minima per le variazioni graduali del flusso per il primo strato." - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Dimensione del gradino di discretizzazione del flusso graduale" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Durata di ogni gradino per la variazione graduale del flusso" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Reimpostare la durata del flusso" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Per ogni spostamento del percorso superiore a questo valore, il flusso del materiale viene reimpostato su quello target dei percorsi." diff --git a/resources/i18n/ja_JP/cura.po b/resources/i18n/ja_JP/cura.po index ea4c92c62f..5cc8e60267 100644 --- a/resources/i18n/ja_JP/cura.po +++ b/resources/i18n/ja_JP/cura.po @@ -2,23 +2,28 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" +"PO-Revision-Date: 2025-03-02 04:30+0000\n" +"Last-Translator: h1data \n" +"Language-Team: Japanese \n" "Language: ja_JP\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" +msgctxt "@title:label" +msgid " " +msgstr "" + +#, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" msgstr "%(width).1f x %(depth).1f x %(height).1f mm" msgctxt "@action:label" msgid "%1 & material" -msgstr "%1とフィラメント" +msgstr "%1と材料" msgctxt "@action:label" msgid "%1 out of %2" @@ -44,105 +49,109 @@ msgstr "%1m" msgctxt "@action:inmenu menubar:printer" msgid "&Add Printer..." -msgstr "&プリンターを追加する..." +msgstr "プリンターを追加(&A)..." msgctxt "@action:inmenu menubar:view" msgid "&Camera position" -msgstr "カメラ位置 (&C)" +msgstr "カメラ位置(&C)" msgctxt "@action:inmenu menubar:profile" msgid "&Create profile from current settings/overrides..." -msgstr "&今の設定/無効からプロファイルを作成する..." +msgstr "現在の設定からプロファイルを作成/上書き(&C)..." msgctxt "@action:inmenu menubar:profile" msgid "&Discard current changes" -msgstr "&変更を破棄する" +msgstr "変更を破棄(&D)" msgctxt "@title:menu menubar:toplevel" msgid "&Edit" -msgstr "&編集" +msgstr "編集(&E)" msgctxt "@title:menu menubar:file" msgid "&Export..." -msgstr "エクスポート... (&E)" +msgstr "エクスポート(&E)..." msgctxt "@title:menu menubar:toplevel" msgid "&File" -msgstr "&ファイル" +msgstr "ファイル(&F)" msgctxt "@action:inmenu menubar:edit" msgid "&Group Models" -msgstr "&モデルグループ" +msgstr "モデルをグループ化(&G)" msgctxt "@title:menu menubar:toplevel" msgid "&Help" -msgstr "ヘルプ" +msgstr "ヘルプ(&H)" msgctxt "@title:menu" msgid "&Material" -msgstr "&フィラメント" +msgstr "材料(&M)" msgctxt "@action:inmenu menubar:edit" msgid "&Merge Models" -msgstr "モ&デルの合体" +msgstr "モデルを合体(&M)" msgctxt "@action:inmenu" msgid "&Multiply Model..." -msgstr "&モデルを増倍する..." +msgstr "モデルを複製(&M)..." msgctxt "@action:inmenu menubar:file" msgid "&New Project..." -msgstr "&新しいプロジェクト..." +msgstr "新規プロジェクト(&N)..." msgctxt "@action:inmenu menubar:file" msgid "&Open File(s)..." -msgstr "&ファイルを開く(s)..." +msgstr "ファイルを開く(&O)..." msgctxt "@title:menu menubar:settings" msgid "&Printer" -msgstr "&プリンター" +msgstr "プリンター(&P)" msgctxt "@action:inmenu menubar:file" msgid "&Quit" -msgstr "&やめる" +msgstr "終了(&Q)" msgctxt "@action:inmenu menubar:edit" msgid "&Redo" -msgstr "&やりなおす" +msgstr "やり直し(&R)" msgctxt "@title:menu menubar:file" msgid "&Save Project..." -msgstr "プロジェクトを保存... (&S)" +msgstr "プロジェクトを保存(&S)..." msgctxt "@title:menu menubar:file Don't translate 'Universal Cura Project'" msgid "&Save Universal Cura Project..." -msgstr "Universal Cura Projectを保存..." +msgstr "Universal Cura Projectを保存(&S)..." msgctxt "@title:menu menubar:toplevel" msgid "&Settings" -msgstr "&設定" +msgstr "設定(&S)" msgctxt "@action:inmenu menubar:edit" msgid "&Undo" -msgstr "&取り消す" +msgstr "元に戻す(&U)" msgctxt "@action:inmenu menubar:profile" msgid "&Update profile with current settings/overrides" -msgstr "&現在の設定/無効にプロファイルをアップデートする" +msgstr "現在の設定でプロファイルを更新/上書きする(&U)" msgctxt "@title:menu menubar:toplevel" msgid "&View" -msgstr "&ビュー" +msgstr "表示(&V)" msgctxt "@label" msgid "*You will need to restart the application for these changes to have effect." -msgstr "*これらの変更を有効にするには、アプリケーションを再始動する必要があります。" +msgstr "*これらの変更を有効にするには、アプリケーションを再起動する必要があります。" msgctxt "@text" -msgid "- Add material profiles and plug-ins from the Marketplace\n- Back-up and sync your material profiles and plug-ins\n- Share ideas and get help from 48,000+ users in the UltiMaker community" -msgstr "- マーケットプレースから材料プロファイルとプラグインを追加" -"- 材料プロファイルとプラグインのバックアップと同期" -"- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有してアドバイスをもらう" +msgid "" +"- Add material profiles and plug-ins from the Marketplace\n" +"- Back-up and sync your material profiles and plug-ins\n" +"- Share ideas and get help from 48,000+ users in the UltiMaker community" +msgstr "" +"- マーケットプレイスから材料プロファイルとプラグインを追加\n" +"- 材料プロファイルとプラグインのバックアップと同期\n" +"- UltiMakerコミュニティで48,000人以上のユーザーとアイデアを共有したりアドバイスをもらったりしましょう" msgctxt "@heading" msgid "-- incomplete --" @@ -150,7 +159,7 @@ msgstr "-- 未完了 --" msgctxt "@action:label" msgid "1mm Transmittance (%)" -msgstr "1mm透過率(%)" +msgstr "1mm透過率 (%)" msgctxt "@info:title" msgid "3D Model Assistant" @@ -164,9 +173,21 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "3Dビュー" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "3DConnexionマウス" + msgctxt "@item:inlistbox" msgid "3MF File" -msgstr "3MF ファイル" +msgstr "3MFファイル" + +msgctxt "name" +msgid "3MF Reader" +msgstr "3MFリーダー" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MFリーダー" msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." @@ -188,37 +209,56 @@ msgctxt "@label %i will be replaced with a profile name" msgid "Only user changed settings will be saved in the custom profile.
For materials that support it, the new custom profile will inherit properties from %1." msgstr "ユーザーが変更した設定のみがカスタムプロファイルに保存されます。
その設定に対応する材料の場合、新しいカスタムプロファイルは %1からプロパティを継承します。" +#, python-brace-format msgctxt "@label OpenGL renderer" msgid "
  • OpenGL Renderer: {renderer}
  • " msgstr "
  • OpenGLレンダラー: {renderer}
  • " +#, python-brace-format msgctxt "@label OpenGL vendor" msgid "
  • OpenGL Vendor: {vendor}
  • " msgstr "
  • OpenGLベンダー: {vendor}
  • " +#, python-brace-format msgctxt "@label OpenGL version" msgid "
  • OpenGL Version: {version}
  • " msgstr "
  • OpenGLバージョン: {version}
  • " msgctxt "@label crash message" -msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "

    致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

    " -"

    「レポート送信」ボタンを使用してバグレポートが自動的に当社サーバーに送られるようにしてください

    " +msgid "" +"

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n" +"

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n" +" " +msgstr "" +"

    致命的なエラーが発生しました。問題解決のためこのクラッシュレポートを送信してください

    \n" +"

    「レポート送信」ボタンを使用すると、バグレポートが自動的に当社サーバーに送信されます/p>\n" " " msgctxt "@label crash message" -msgid "

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n

    Backups can be found in the configuration folder.

    \n

    Please send us this Crash Report to fix the problem.

    \n " -msgstr "

    申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

    " -"

    開始時に回復不能のエラーが発生しました。不適切なファイル設定が原因の可能性があります。バックアップを実行してからリセットしてください。

    " -"

    バックアップは、設定フォルダに保存されます。

    " -"

    問題解決のために、このクラッシュ報告をお送りください。

    " +msgid "" +"

    Oops, UltiMaker Cura has encountered something that doesn't seem right.

    \n" +"

    We encountered an unrecoverable error during start up. It was possibly caused by some incorrect configuration files. We suggest to backup and reset your configuration.

    \n" +"

    Backups can be found in the configuration folder.

    \n" +"

    Please send us this Crash Report to fix the problem.

    \n" +" " +msgstr "" +"

    申し訳ありません。UltiMaker Cura で何らかの不具合が生じています。

    \n" +"

    開始時に回復不能のエラーが発生しました。不適切な設定ファイルが原因の可能性があります。バックアップを実行してからリセットしてください。

    \n" +"

    バックアップは、設定フォルダに保存されます。

    \n" +"

    問題解決のために、このクラッシュ報告をお送りください。

    \n" " " +#, python-brace-format msgctxt "@info:status" -msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " -msgstr "

    モデルのサイズまたは材料の設定によっては、適切に印刷しない3Dモデルがあります。:

    " -"

    {model_names}

    " -"

    可能な限り最高の品質および信頼性を得る方法をご覧ください。

    " +msgid "" +"

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n" +"

    {model_names}

    \n" +"

    Find out how to ensure the best possible print quality and reliability.

    \n" +"

    View print quality guide

    " +msgstr "" +"

    モデルのサイズおよび材料の構成により、いくつかの3Dモデルの印刷は最適化されません。:

    \n" +"

    {model_names}

    \n" +"

    可能な限り最高の品質と確実な印刷を実現する方法をご覧ください。

    \n" "

    印字品質ガイドを見る

    " msgctxt "@label" @@ -232,7 +272,7 @@ msgstr[0] "一部のプリンターではクラウド接続は利用できませ msgctxt "@text" msgid "A highly dense and strong part but at a slower print time. Great for functional parts." -msgstr "密度の高い強力な部品ですが,印刷時間は遅くなります。機能部品に最適です。" +msgstr "密度の高い強力な部品ですが、印刷時間が遅くなります。機能部品に最適です。" msgctxt "@message" msgid "A print is still in progress. Cura cannot start another print via USB until the previous print has completed." @@ -240,7 +280,11 @@ msgstr "現在印刷中です。Curaは、前の印刷が完了するまでUSB msgctxt "@item:inlistbox" msgid "AMF File" -msgstr "AMF ファイル" +msgstr "AMFファイル" + +msgctxt "name" +msgid "AMF Reader" +msgstr "AMFリーダー" msgctxt "@label" msgid "Abort" @@ -272,12 +316,16 @@ msgstr "%1について" msgctxt "@action:inmenu menubar:help" msgid "About..." -msgstr "アバウト..." +msgstr "Curaについて..." msgctxt "@button" msgid "Accept" msgstr "承認する" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-codeを承認し、プリンターに送信します。またプラグインはファームウェアをアップデートできます。" + msgctxt "@label" msgid "Account synced" msgstr "アカウント同期" @@ -308,11 +356,11 @@ msgstr "新規追加" msgctxt "@title:window" msgid "Add Printer" -msgstr "プリンターを追加する" +msgstr "プリンターの追加" msgctxt "@button" msgid "Add UltiMaker printer via Digital Factory" -msgstr "Digital FactoryでUltiMakerプリンターを追加する" +msgstr "Digital FactoryでUltiMakerプリンターを追加" msgctxt "@label" msgid "Add a Cloud printer" @@ -320,15 +368,15 @@ msgstr "クラウドプリンターを追加" msgctxt "@label" msgid "Add a networked printer" -msgstr "ネットワークプリンターの追加" +msgstr "ネットワークプリンターを追加" msgctxt "@label" msgid "Add a non-networked printer" -msgstr "非ネットワークプリンターの追加" +msgstr "非ネットワークプリンターを追加" msgctxt "@action" msgid "Add a script" -msgstr "スクリプトを加える" +msgstr "スクリプトを追加" msgctxt "@option:check" msgid "Add icon to system tray *" @@ -336,11 +384,11 @@ msgstr "システムトレイにアイコンを追加 *" msgctxt "@button" msgid "Add local printer" -msgstr "ローカルプリンターの追加" +msgstr "ローカルプリンターを追加" msgctxt "@option:check" msgid "Add machine prefix to job name" -msgstr "プリンターの敬称をジョブネームに加える" +msgstr "プリンターの接頭辞をジョブ名に付与" msgctxt "@text" msgid "Add material settings and plugins from the Marketplace" @@ -348,28 +396,29 @@ msgstr "マーケットプレイスから材料設定とプラグインを追加 msgctxt "@action:inmenu Marketplace is a brand name of UltiMaker's, so don't translate." msgid "Add more materials from Marketplace" -msgstr "Add more materials from Marketplace" +msgstr "マーケットプレイスから更に材料を追加" msgctxt "@button" msgid "Add printer" -msgstr "プリンターの追加" +msgstr "プリンターを追加" msgctxt "@label" msgid "Add printer" -msgstr "プリンターの追加" +msgstr "プリンターを追加" msgctxt "@label" msgid "Add printer by IP" -msgstr "IP でプリンターを追加" +msgstr "IPでプリンターを追加" msgctxt "@label" msgid "Add printer by IP address" -msgstr "IP アドレスでプリンターを追加" +msgstr "IPアドレスでプリンターを追加" msgctxt "@button" msgid "Add printer manually" -msgstr "プリンタを手動で追加する" +msgstr "手動でプリンタを追加" +#, python-brace-format msgctxt "info:status Filled in with printer name and printer model." msgid "Adding printer {name} ({model}) from your account" msgstr "アカウントからプリンター{name}({model})を追加しています" @@ -392,7 +441,7 @@ msgstr "プリントのインフィルの密度を調整します。" msgctxt "support_type description" msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" +msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定できます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" msgctxt "@label Header for list of settings." msgid "Affected By" @@ -408,16 +457,25 @@ msgstr "同意する" msgctxt "@item:inlistbox" msgid "All Files (*)" -msgstr "全てのファイル" +msgstr "全てのファイル (*)" +#, python-brace-format msgctxt "@item:inlistbox" msgid "All Supported Types ({0})" -msgstr "すべてのサポートのタイプ ({0})" +msgstr "サポートされたすべてのタイプ ({0})" msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "匿名データの送信を許可する" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-codeファイルの読み込み、表示を許可する。" + +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "Curaで3Dマウスの利用を許可します。" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "毎回確認する" @@ -444,7 +502,7 @@ msgstr "常に変更した設定を新しいプロファイルに送信する" msgctxt "@info:tooltip" msgid "An model may appear extremely small if its unit is for example in meters rather than millimeters. Should these models be scaled up?" -msgstr "ユニット値がミリメートルではなくメートルの場合、モデルが極端に小さく現れる場合があります。モデルはスケールアップされるべきですか?" +msgstr "単位がミリメートルではなくメートルの場合、モデルが極端に小さくなる場合があります。この場合にモデルを拡大するかどうかを選択します。" msgctxt "@label" msgid "Annealing" @@ -458,17 +516,13 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "匿名のクラッシュレポート" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "アプリケーションフレームワーク" - msgctxt "@title:column" msgid "Applies on" msgstr "適用:" msgctxt "@label" msgid "Apply Extruder offsets to GCode" -msgstr "エクストルーダーのオフセットをGCodeに適用します" +msgstr "エクストルーダーのオフセットをGCodeに適用" msgctxt "@info:title" msgid "Are you ready for cloud printing?" @@ -480,7 +534,7 @@ msgstr "%1 を中止してよろしいですか?" msgctxt "@label" msgid "Are you sure you want to abort the print?" -msgstr "本当にプリントを中止してもいいですか?" +msgstr "本当にプリントを中止してもよろしいですか?" msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to delete %1?" @@ -488,7 +542,7 @@ msgstr "%1 を削除しますか?" msgctxt "@dialog:info" msgid "Are you sure you want to delete this backup? This cannot be undone." -msgstr "このバックアップを削除しますか?これは取り消しできません。" +msgstr "このバックアップを削除しますか?この操作は取り消しできません。" msgctxt "@label %1 is the application name" msgid "Are you sure you want to exit %1?" @@ -498,29 +552,31 @@ msgctxt "@label %1 is the name of a print job." msgid "Are you sure you want to move %1 to the top of the queue?" msgstr "%1 をキューの最上位に移動しますか?" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "Are you sure you want to remove {printer_name} temporarily?" msgstr "{printer_name}を一時的に削除してもよろしいですか?" msgctxt "@info:question" msgid "Are you sure you want to start a new project? This will clear the build plate and any unsaved settings." -msgstr "新しいプロジェクトを開始しますか?この作業では保存していない設定やビルドプレートをクリアします。" +msgstr "新しいプロジェクトを開始しますか?この操作により保存していない設定やビルドプレートがクリアされます。" msgctxt "@label (%1 is object name)" msgid "Are you sure you wish to remove %1? This cannot be undone!" -msgstr "%1を取り外しますか?この作業はやり直しが効きません!" +msgstr "%1を取り外しますか?この操作は取り消しできません。" +#, python-brace-format msgctxt "@label {0} is the name of a printer that's about to be deleted." msgid "Are you sure you wish to remove {0}? This cannot be undone!" msgstr "{0}を取り除いてもよろしいですか?この操作は元に戻せません。" msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models" -msgstr "すべてのモデルをアレンジする" +msgstr "全モデルを再配置" msgctxt "@action:inmenu menubar:edit" msgid "Arrange All Models in a grid" -msgstr "すべてのモデルをグリッドに配置" +msgstr "全モデルを格子状に配置" msgctxt "@action:inmenu menubar:edit" msgid "Arrange Selection" @@ -536,15 +592,15 @@ msgstr "自動バックアップ" msgctxt "@checkbox:description" msgid "Automatically create a backup each day that Cura is started." -msgstr "Cura を起動した日は常にバックアップを自動生成します。" +msgstr "Curaを起動した際、日毎にバックアップを自動生成します。" msgctxt "@option:check" msgid "Automatically drop models to the build plate" -msgstr "自動的にモデルをビルドプレートに落とす" +msgstr "自動でモデルをビルドプレート上に配置" msgctxt "@action:button" msgid "Automatically upgrade Firmware" -msgstr "自動でファームウェアをアップグレード" +msgstr "自動でファームウェアを更新" msgctxt "@label" msgid "Available networked printers" @@ -572,7 +628,11 @@ msgstr "今すぐバックアップする" msgctxt "@action:button" msgid "Backup and Reset Configuration" -msgstr "バックアップとリセットの設定" +msgstr "設定構成のバックアップとリセット" + +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "構成をバックアップしてリストアします。" msgctxt "@text" msgid "Backup and sync your material settings and plugins" @@ -592,11 +652,11 @@ msgstr "バランス" msgctxt "@action:label" msgid "Base (mm)" -msgstr "ベース(mm)" +msgstr "ベース (mm)" msgctxt "@action:inmenu menubar:view" msgid "Bottom View" -msgstr "底面図" +msgstr "ボトムビュー" msgctxt "@label" msgid "Brand" @@ -616,7 +676,7 @@ msgstr "ビルドプレート" msgctxt "@label" msgid "Build plate shape" -msgstr "ビルドプレート形" +msgstr "ビルドプレートの形状" msgctxt "@label" msgid "Bundled Materials" @@ -634,10 +694,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "作成者" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "C/C++ バインディングライブラリー" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" @@ -656,7 +712,7 @@ msgstr "カメラレンダリング:" msgctxt "@action:inmenu menubar:view" msgid "Camera view" -msgstr "カメラビュー" +msgstr "カメラ表示" msgctxt "@info:title" msgid "Can't Find Location" @@ -670,10 +726,12 @@ msgctxt "@label" msgid "Can't connect to your UltiMaker printer?" msgstr "UltiMakerプリンターに接続できませんか?" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Can't import profile from {0} before a printer is added." -msgstr "プリンタを追加する前に、{0}からプロファイルの取り込はできません。" +msgstr "プリンタを追加する前に、{0}からプロファイルのインポートはできません。" +#, python-brace-format msgctxt "@info:status" msgid "Can't open any other file if G-code is loading. Skipped importing {0}" msgstr "G-codeを読み込み中は他のファイルを開くことができません。{0}の取り込みをスキップしました。" @@ -700,7 +758,7 @@ msgstr "G-codeリーダーに注意メッセージ" msgctxt "@action:inmenu" msgid "Ce&nter Model on Platform" -msgstr "プラットホームの中心にモデルを配置" +msgstr "プラットフォームの中心にモデルを配置(&N)" msgctxt "@action:inmenu menubar:edit" msgid "Center Selected" @@ -708,11 +766,11 @@ msgstr "選択内容を中央に移動" msgctxt "@action:button" msgid "Center camera when item is selected" -msgstr "アイテムを選択するとカメラが中心にきます" +msgstr "アイテム選択時カメラを中心に移動" msgctxt "@info:tooltip" msgid "Change active post-processing scripts." -msgstr "処理したアクティブなスクリプトを変更します。" +msgstr "有効なポストプロセッシングスクリプトを変更します。" msgctxt "@label" msgid "Change material %1 from %2 to %3." @@ -732,7 +790,7 @@ msgstr "アカウントにおける変更" msgctxt "@label:textbox" msgid "Check all" -msgstr "全てを調べる" +msgstr "全て選択" msgctxt "@button" msgid "Check for account updates" @@ -740,19 +798,37 @@ msgstr "アカウントの更新を確認" msgctxt "@option:check" msgid "Check for updates on start" -msgstr "スタート時にアップデートあるかどうかのチェック" +msgstr "起動時にアップデートをチェック" msgctxt "@label" msgid "Checking..." msgstr "確認しています..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "ファームウェアアップデートをチェックする。" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" + msgctxt "@label" -msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" +msgid "" +"Chooses between the techniques available to generate support. \n" +"\n" +"\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n" +"\n" +"\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "" +"サポート生成に利用する方式を選択します。\n" +"\n" +"「標準」サポートはサポート構造をオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。\n" +"\n" +"「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" msgctxt "@action:inmenu menubar:edit" msgid "Clear Build Plate" -msgstr "ビルドプレート上のクリア" +msgstr "ビルドプレートをクリア" msgctxt "@option:check" msgid "Clear buildplate before loading model into the single instance" @@ -764,7 +840,7 @@ msgstr "材料アーカイブのエクスポートボタンをクリックしま msgctxt "@action:button" msgid "Close" -msgstr "閉める" +msgstr "閉じる" msgctxt "@title:window %1 is the application name" msgid "Closing %1" @@ -786,17 +862,17 @@ msgctxt "@label" msgid "Color scheme" msgstr "カラースキーム" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "組み合わせは推奨されません。信頼性を高めるため、BBコアをスロット1(左)に装填してください。" + msgctxt "@info" msgid "Compare and save." -msgstr "比較して保存してください。" +msgstr "変更を比較して保存します。" msgctxt "@label" msgid "Compatibility Mode" -msgstr "コンパティビリティモード" - -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Python2および3との互換性" +msgstr "互換モード" msgctxt "@title:label" msgid "Compatible Printers" @@ -804,7 +880,7 @@ msgstr "互換性のあるプリンター" msgctxt "@label" msgid "Compatible material diameter" -msgstr "適合する材料直径" +msgstr "適合する材料の直径" msgctxt "@header" msgid "Compatible printers" @@ -826,6 +902,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "圧縮G-codeファイル" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "圧縮G-codeリーダー" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "圧縮G-codeライター" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "構成の変更" @@ -844,11 +928,11 @@ msgstr "構成" msgctxt "@action:inmenu" msgid "Configure Cura..." -msgstr "Curaを構成する..." +msgstr "Curaの構成..." msgctxt "@info:tooltip" msgid "Configure Per Model Settings" -msgstr "各モデル構成設定" +msgstr "モデル別設定を構成" msgctxt "@action" msgid "Configure group" @@ -856,7 +940,7 @@ msgstr "グループの設定" msgctxt "@action:menu" msgid "Configure setting visibility..." -msgstr "視野のセッティングを構成する..." +msgstr "表示項目設定..." msgctxt "@title:window" msgid "Confirm Diameter Change" @@ -864,7 +948,7 @@ msgstr "直径変更の確認" msgctxt "@title:window" msgid "Confirm Remove" -msgstr "モデルを取り除きました" +msgstr "モデルを削除しました" msgctxt "@action:button" msgid "Connect" @@ -892,12 +976,16 @@ msgstr "キャンセルしたプリンター" msgctxt "@info:status" msgid "Connected via USB" -msgstr "USBにて接続する" +msgstr "USB接続" msgctxt "@info:status" msgid "Connected via cloud" msgstr "クラウド経由で接続" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker Communityをご参照ください。" @@ -920,11 +1008,11 @@ msgstr "クリップボードにコピー" msgctxt "@action:menu" msgid "Copy value to all extruders" -msgstr "すべてのエクストルーダーの値をコピーする" +msgstr "すべてのエクストルーダーに値をコピー" msgctxt "@label" msgid "Cost per Meter" -msgstr "毎メーターコスト" +msgstr "メートルあたりのコスト" msgctxt "@info" msgid "Could not access update information." @@ -938,13 +1026,14 @@ msgctxt "@info:backup_failed" msgid "Could not create archive from user data directory: {}" msgstr "ユーザーデータディレクトリからアーカイブを作成できません: {}" +#, python-brace-format msgctxt "@info:status Don't translate the tag {device}!" msgid "Could not find a file name when trying to write to {device}." msgstr "デバイス{device}に書き出すためのファイル名が見つかりませんでした。" msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not import material %1: %2" -msgstr "%1フィラメントを取り込むことができない: %2" +msgstr "材料%1のインポートに失敗しました: %2" msgctxt "@info:error" msgid "Could not interpret the server's response." @@ -956,7 +1045,7 @@ msgstr "GCodeWriterプラグインを読み込めませんでした。プラグ msgctxt "@info:error" msgid "Could not reach Marketplace." -msgstr "マーケットプレースにアクセスできませんでした。" +msgstr "マーケットプレイスにアクセスできませんでした。" msgctxt "@message" msgid "Could not read response." @@ -966,31 +1055,45 @@ msgctxt "@message:text" msgid "Could not save material archive to {}:" msgstr "材料アーカイブを{}に保存できませんでした:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Could not save to {0}: {1}" msgstr "{0}を保存できませんでした: {1}" +#, python-brace-format msgctxt "@info:status" msgid "Could not save to removable drive {0}: {1}" -msgstr "リムーバブルドライブ{0}に保存することができませんでした: {1}" +msgstr "リムーバブルドライブ{0}に保存できませんでした: {1}" msgctxt "@info:text" msgid "Could not upload the data to the printer." msgstr "データをプリンタにアップロードできませんでした。" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nNo permission to execute process." -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"No permission to execute process." +msgstr "" +"EnginePluginを開始できませんでした:{self._plugin_id}\n" "処理を実行する権限がありません。" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nOperating system is blocking it (antivirus?)" -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Operating system is blocking it (antivirus?)" +msgstr "" +"EnginePluginを開始できませんでした:{self._plugin_id}\n" "OSによりブロックされています(ウイルス対策?)" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Couldn't start EnginePlugin: {self._plugin_id}\nResource is temporarily unavailable" -msgstr "EnginePluginを開始できませんでした:{self._plugin_id}" +msgid "" +"Couldn't start EnginePlugin: {self._plugin_id}\n" +"Resource is temporarily unavailable" +msgstr "" +"EnginePluginを開始できませんでした:{self._plugin_id}\n" "リソースは一時的に利用できません" msgctxt "@title:window" @@ -999,7 +1102,7 @@ msgstr "クラッシュ報告" msgctxt "@title:window" msgid "Create Profile" -msgstr "プロファイルを作る" +msgstr "プロファイルを作成" msgctxt "@text" msgid "Create a free UltiMaker Account" @@ -1015,24 +1118,28 @@ msgstr "サポートが印刷されないボリュームを作成します。" msgctxt "@action:ComboBox Save settings in a new profile" msgid "Create new" -msgstr "新しいものを作成する" +msgstr "新規作成" msgctxt "@action:button" msgid "Create new" -msgstr "新しいものを作成する" +msgstr "新規作成" msgctxt "@button" msgid "Create new" -msgstr "新しいものを作成する" +msgstr "新規作成" msgctxt "@action:tooltip" msgid "Create new profile from current settings/overrides" -msgstr "現在の設定/上書きから新しいプロファイルを作成します" +msgstr "現在の設定と上書きされた値から新しいプロファイルを作成します" msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Libraryでプリントプロジェクトを作成します。" +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "バックアップを作成しています..." @@ -1043,15 +1150,27 @@ msgstr "Cura 15.04 プロファイル" msgctxt "@title:window" msgid "Cura Backups" -msgstr "Cura バックアップ" +msgstr "Curaバックアップ" + +msgctxt "name" +msgid "Cura Backups" +msgstr "Curaバックアップ" msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Curaプロファイル" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Curaプロファイルリーダー" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Curaプロファイルライター" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" -msgstr "Curaが3MF fileを算出します" +msgstr "Curaプロジェクト3MFファイル" msgctxt "@backuplist:label" msgid "Cura Version" @@ -1061,14 +1180,18 @@ msgctxt "@title:window" msgid "Cura can't start" msgstr "Curaを開始できません" +#, python-brace-format msgctxt "@info:status" msgid "Cura has detected material profiles that were not yet installed on the host printer of group {0}." msgstr "Curaはグループ{0}のホストプリンターにまだインストールされていない材料プロフィールを検出しました。" msgctxt "@info:credit" -msgid "Cura is developed by UltiMaker in cooperation with the community.\nCura proudly uses the following open source projects:" -msgstr "CuraはUltiMakerのコミュニティの協力によって開発され、" -"Curaはオープンソースで使えることを誇りに思います:" +msgid "" +"Cura is developed by UltiMaker in cooperation with the community.\n" +"Cura proudly uses the following open source projects:" +msgstr "" +"CuraはUltiMakerおよびコミュニティの協力によって開発されています。\n" +"Curaは以下の素晴らしいオープンソースプロジェクトを使用しています:" msgctxt "@label" msgid "Cura language" @@ -1078,6 +1201,10 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Curaバージョン" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Curaエンジンバックエンド" + msgctxt "@label" msgid "Currency:" msgstr "通貨:" @@ -1104,7 +1231,7 @@ msgstr "カスタム" msgctxt "@label" msgid "Custom Material" -msgstr "カスタムフィラメント" +msgstr "カスタム材料" msgctxt "@label" msgid "Custom profile" @@ -1128,7 +1255,7 @@ msgstr "カット" msgctxt "@item:inlistbox" msgid "Cutting mesh" -msgstr "メッシュ切断" +msgstr "切断メッシュ" msgctxt "@item:inlistbox" msgid "Darker is higher" @@ -1138,10 +1265,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "データを送信しました" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "データインターフェイスフォーマット" - msgctxt "@button" msgid "Decline" msgstr "拒否する" @@ -1168,7 +1291,7 @@ msgstr "プロジェクトファイルを開く際のデフォルト機能" msgctxt "@window:text" msgid "Default behavior when opening a project file: " -msgstr "プロジェクトファイル開く際のデフォルト機能: " +msgstr "プロジェクトファイル読み込み時のデフォルト動作: " msgctxt "@action:button" msgid "Defaults" @@ -1202,13 +1325,9 @@ msgctxt "@label" msgid "Density" msgstr "密度" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "パッケージ管理システム" - msgctxt "@action:label" msgid "Depth (mm)" -msgstr "深さ(mm)" +msgstr "深さ (mm)" msgctxt "@action:label" msgid "Derivative from" @@ -1240,7 +1359,7 @@ msgstr "エクストルーダーを無効にする" msgctxt "@option:discardOrKeep" msgid "Discard and never ask again" -msgstr "取り消し、再度確認しない" +msgstr "取り消して二度と確認しない" msgctxt "@action:button" msgid "Discard changes" @@ -1264,11 +1383,11 @@ msgstr "ディスプレイ名" msgctxt "@option:check" msgid "Display model errors" -msgstr "モデルエラーを表示" +msgstr "モデルのエラーを表示" msgctxt "@option:check" msgid "Display overhang" -msgstr "ディスプレイオーバーハング" +msgstr "オーバーハングを表示" msgctxt "@info:option_text" msgid "Do not show this message again" @@ -1280,7 +1399,7 @@ msgstr "材料パッケージとソフトウェアパッケージをアカウン msgctxt "@action:label" msgid "Don't show project summary on save again" -msgstr "保存中のプロジェクトサマリーを非表示にする" +msgstr "保存時にプロジェクトの概要を表示しない" msgctxt "@action:menu" msgid "Don't show this setting" @@ -1308,7 +1427,7 @@ msgstr "ドラフト" msgctxt "@action:inmenu menubar:edit" msgid "Drop All Models to buildplate" -msgstr "すべてのモデルをビルドプレートにドロップ" +msgstr "全モデルをビルドプレートに下ろす" msgctxt "@action:button" msgid "Duplicate" @@ -1324,7 +1443,7 @@ msgstr "プレビューではバックアップは5つまでに制限されて msgctxt "@title:menu menubar:toplevel" msgid "E&xtensions" -msgstr "拡張子" +msgstr "拡張(&E)" msgctxt "@action:button" msgid "Edit" @@ -1334,13 +1453,15 @@ msgctxt "@action:button" msgid "Eject" msgstr "取り出す" +#, python-brace-format msgctxt "@action" msgid "Eject removable device {0}" msgstr "リムーバブルデバイス{0}を取り出す" +#, python-brace-format msgctxt "@info:status" msgid "Ejected {0}. You can now safely remove the drive." -msgstr "{0}取り出し完了。デバイスを安全に取り外せます。" +msgstr "{0}を取り出しました。デバイスを安全に取り外せます。" msgctxt "@label" msgid "Empty" @@ -1356,15 +1477,19 @@ msgstr "エクストルーダーを有効にする" msgctxt "@label" msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards. Disabling it results in a skirt around object by default." -msgstr "縁またはラフトの印刷を有効にできます。これにより、オブジェクトの周囲または下に平らな部分が追加され、後で簡単に切り取ることができます。無効にすると、デフォルトでオブジェクトの周囲にスカートが形成されます。" +msgstr "ブリムまたはラフトの印刷を有効にできます。これにより、オブジェクトの周囲または下に平らな部分が追加され、後で簡単に切り取ることができます。無効にすると、デフォルトでオブジェクトの周囲にスカートが形成されます。" msgctxt "@label" msgid "Enabled" msgstr "有効" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" + msgctxt "@title:label" msgid "End G-code" -msgstr "G-codeの終了" +msgstr "終了G-code" msgctxt "@label" msgid "End-to-end solution for fused filament 3D printing." @@ -1380,7 +1505,7 @@ msgstr "エンジニアリング" msgctxt "@option:check" msgid "Ensure models are kept apart" -msgstr "モデルの距離が離れているように確認する" +msgstr "モデル同士を離す" msgctxt "@label" msgid "Enter the IP address of your printer on the network." @@ -1408,7 +1533,7 @@ msgstr "全画面表示を終了する" msgctxt "@label" msgid "Experimental" -msgstr "実験" +msgstr "実験的" msgctxt "@action:button" msgid "Export" @@ -1420,7 +1545,11 @@ msgstr "すべての材料を書き出す" msgctxt "@title:window" msgid "Export Material" -msgstr "フィラメントを書き出す" +msgstr "材料をエクスポート" + +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "技術サポート用にパッケージをエクスポート" msgctxt "@title:window" msgid "Export Profile" @@ -1428,7 +1557,7 @@ msgstr "プロファイルを書き出す" msgctxt "@action:inmenu menubar:file" msgid "Export Selection..." -msgstr "選択エクスポート..." +msgstr "選択内容をエクスポート..." msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Export Universal Cura Project" @@ -1442,6 +1571,7 @@ msgctxt "@info:title" msgid "Export succeeded" msgstr "書き出し完了" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Exported profile to {0}" msgstr "{0}にプロファイルを書き出しました" @@ -1450,6 +1580,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "UltiMaker Curaをプラグインと材料プロファイルで拡張します。" +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "ユーザー作成スクリプトによるポストプロセッシングを可能にする拡張" + msgctxt "@label" msgid "Extruder" msgstr "エクストルーダー" @@ -1458,22 +1592,31 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "エクストルーダー%1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "エクストルーダー切り替え時間" + msgctxt "@title:label" msgid "Extruder End G-code" -msgstr "エクストルーダーがG-Codeを終了する" +msgstr "エクストルーダー終了G-Code" msgctxt "@label" msgid "Extruder End G-code duration" msgstr "エクストルーダー終了Gコードの時間" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "エクストルーダー開始前G-Code" + msgctxt "@title:label" msgid "Extruder Start G-code" -msgstr "エクストルーダーがG-Codeを開始する" +msgstr "エクストルーダー開始G-Code" msgctxt "@label" msgid "Extruder Start G-code duration" msgstr "エクストルーダー開始Gコードの時間" +#, python-brace-format msgctxt "@label" msgid "Extruder {0}" msgstr "エクストルーダー {0}" @@ -1488,43 +1631,49 @@ msgstr "失敗" msgctxt "@text:error" msgid "Failed to connect to Digital Factory to sync materials with some of the printers." -msgstr "Digital Factoryに接続して一部のプリンターと材料を同期するのに失敗しました。" +msgstr "一部のプリンターと材料を同期する際、Digital Factoryとの接続に失敗しました。" msgctxt "@text:error" msgid "Failed to connect to Digital Factory." -msgstr "Digital Factoryに接続するのに失敗しました。" +msgstr "Digital Factoryへの接続に失敗しました。" msgctxt "@text:error" msgid "Failed to create archive of materials to sync with printers." -msgstr "材料のアーカイブを作成してプリンターと同期するのに失敗しました。" +msgstr "プリンターと同期する際、材料アーカイブの作成に失敗しました。" +#, python-brace-format msgctxt "@info:status" msgid "Failed to eject {0}. Another program may be using the drive." msgstr "{0}取り出し失敗。他のプログラムがデバイスを使用しているため。" msgctxt "@info:status Don't translate the XML tags and !" msgid "Failed to export material to %1: %2" -msgstr "フィラメントの書き出しに失敗しました %1: %2" +msgstr "材料のエクスポートに失敗しました %1: %2" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Failed to export profile to {0}: {1}" msgstr "{0}にプロファイルを書き出すのに失敗しました: {1}" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to export profile to {0}: Writer plugin reported failure." msgstr "{0}にプロファイルを書き出すことに失敗しました。:ライタープラグイン失敗の報告。" +#, python-brace-format msgctxt "@info:status Don't translate the XML tag !" msgid "Failed to import profile from {0}:" -msgstr "{0}からプロファイルの取り込みに失敗しました:" +msgstr "{0}からプロファイルのインポートに失敗しました:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}:" -msgstr "{0}からプロファイルの取り込に失敗しました:" +msgstr "{0}からプロファイルのインポートに失敗しました:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "Failed to import profile from {0}: {1}" -msgstr "{0}からプロファイルの取り込に失敗しました:{1}" +msgstr "{0}からプロファイルのインポートに失敗しました:{1}" msgctxt "@button" msgid "Failed to load packages:" @@ -1532,12 +1681,13 @@ msgstr "パッケージの読み込みに失敗しました。" msgctxt "@text:error" msgid "Failed to load the archive of materials to sync it with printers." -msgstr "材料のアーカイブを読み込んでプリンターと同期するのに失敗しました。" +msgstr "プリンターと同期する際、材料アーカイブの読み込みに失敗しました。" msgctxt "@message:title" msgid "Failed to save material archive" msgstr "材料アーカイブの保存に失敗しました" +#, python-brace-format msgctxt "@info:status" msgid "Failed writing to specific cloud printer: {0} not in remote clusters." msgstr "特定のクラウドプリンタへの書き込みに失敗しました:{0} はリモートクラスタにありません。" @@ -1564,8 +1714,9 @@ msgstr "すでに存在するファイルです" msgctxt "@info:title" msgid "File Saved" -msgstr "ファイル保存" +msgstr "ファイル保存完了" +#, python-brace-format msgctxt "@info:status" msgid "File {0} does not contain any valid profile." msgstr "ファイル{0}には、正しいプロファイルが含まれていません。" @@ -1598,6 +1749,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "ファームウェアアップデート" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "ファームウェアアップデートチェッカー" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "ファームウェアアップデーター" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "プリンターとの接続はファームウェアのアップデートをサポートしていないため、ファームウェアをアップデートできません。" @@ -1608,7 +1767,7 @@ msgstr "プリンターと接続されていないため、ファームウェア msgctxt "@label" msgid "Firmware is the piece of software running directly on your 3D printer. This firmware controls the step motors, regulates the temperature and ultimately makes your printer work." -msgstr "ファームウェアとは直接お持ちの3Dプリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターとして成すべき点を補います。" +msgstr "ファームウェアとは直接お持ちの3Dプリンターを動かすソフトウェアです。このファームウェアはステップモーターを操作し、温度を管理し、プリンターを動作できるようにします。" msgctxt "@label" msgid "Firmware update completed." @@ -1616,15 +1775,15 @@ msgstr "ファームウェアアップデート完了。" msgctxt "@label" msgid "Firmware update failed due to an communication error." -msgstr "コミュニケーションエラーによりファームウェアアップデート失敗しました。" +msgstr "通信エラーによりファームウェアアップデートが失敗しました。" msgctxt "@label" msgid "Firmware update failed due to an input/output error." -msgstr "インプット/アウトプットエラーによりファームウェアアップデート失敗しました。" +msgstr "入出力エラーによりファームウェアアップデートが失敗しました。" msgctxt "@label" msgid "Firmware update failed due to an unknown error." -msgstr "不特定なエラーの発生によりファームウェアアップデート失敗しました。" +msgstr "不明なエラーの発生によりファームウェアアップデートが失敗しました。" msgctxt "@label" msgid "Firmware update failed due to missing firmware." @@ -1638,6 +1797,10 @@ msgctxt "@label" msgid "First available" msgstr "次の空き" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "モデルツールハンドルのY軸を反転(再起動が必要)" + msgctxt "@label:listbox" msgid "Flow" msgstr "フロー" @@ -1648,16 +1811,12 @@ msgstr "以下の手順に従って、新しい材料プロファイルをプリ msgctxt "@info" msgid "Follow the procedure to add a new printer" -msgstr "新規にプリンターを追加する場合は、以下の手順で行います" +msgstr "新規にプリンターを追加するには、以下の手順で行います" msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "簡単な数ステップの手順に従うことで、すべての材料プロファイルをプリンターと同期できるようになります。" -msgctxt "@label" -msgid "Font" -msgstr "フォント" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "すべてのポジションに。" @@ -1672,7 +1831,7 @@ msgstr "リトフェインの場合、暗いピクセルは、より多くの光 msgctxt "@option:check" msgid "Force layer view compatibility mode (restart required)" -msgstr "レイヤービューコンパティビリティモードを強制する。(再起動が必要)" +msgstr "レイヤービュー互換モードを強制(再起動が必要)" msgid "FreeCAD trackpad" msgstr "FreeCADトラックパッド" @@ -1697,34 +1856,34 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-codeファイル" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-codeプロファイルリーダー" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-codeリーダー" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-codeライター" + msgctxt "@label" msgid "G-code flavor" msgstr "G-codeフレーバー" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "G-codeの生成" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." -msgstr "GCodeGzWriter はテキストモードをサポートしていません。" +msgstr "GCodeGzWriterはテキストモードをサポートしていません。" msgctxt "@error:not supported" msgid "GCodeWriter does not support non-text mode." -msgstr "GCodeWriter は非テキストモードはサポートしていません。" +msgstr "GCodeWriterは非テキストモードはサポートしていません。" msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF画像" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "GUIフレームワーク" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "GUIフレームワークバインディング" - msgctxt "@label" msgid "Gantry Height" msgstr "ガントリーの高さ" @@ -1735,11 +1894,7 @@ msgstr "一般" msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." -msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩壊してしまいます。" - -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Windowsインストーラーの生成" +msgstr "オーバーハングがあるモデルにサポートを生成します。このサポート構造なしでは、プリント中にオーバーハングのパーツが崩れてしまいます。" msgctxt "@label:category menu label" msgid "Generic" @@ -1761,14 +1916,11 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "グローバル設定" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "グラフィックユーザーインターフェイス" - msgctxt "@label" msgid "Grid Placement" -msgstr "グリッドの配置" +msgstr "格子状に配置" +#, python-brace-format msgctxt "@label" msgid "Group #{group_nr}" msgstr "グループ #{group_nr}" @@ -1795,11 +1947,11 @@ msgstr "加熱式ビルドボリューム" msgctxt "@action:label" msgid "Height (mm)" -msgstr "高さ(mm)" +msgstr "高さ (mm)" msgctxt "@label" msgid "Helpers" -msgstr "ヘルプ" +msgstr "補助" msgctxt "@label" msgid "Hide all connected printers" @@ -1819,7 +1971,7 @@ msgstr "モデルの欠けている部分または不要な表面部分を、警 msgctxt "@info:tooltip" msgid "Highlight unsupported areas of the model in red. Without support these areas will not print properly." -msgstr "赤でサポートができないエリアをハイライトしてください。サポートがない場合、正確にプリントができない場合があります。" +msgstr "サポートされないエリアが赤でハイライトされます。この状態でサポートがない場合、正常にプリントされません。" msgctxt "@button" msgid "How to load new material profiles to my printer" @@ -1845,17 +1997,21 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "お持ちのプリンターがリストにない場合、ネットワーク・プリンティング・トラブルシューティング・ガイドを読んでください" +msgctxt "name" +msgid "Image Reader" +msgstr "画像リーダー" + msgctxt "@action:button" msgid "Import" -msgstr "取り込む" +msgstr "インポート" msgctxt "@title:window" msgid "Import Material" -msgstr "フィラメントを取り込む" +msgstr "材料のインポート" msgctxt "@title:window" msgid "Import Profile" -msgstr "プロファイルを取り込む" +msgstr "プロファイルをインポート" msgctxt "@action:button" msgid "Import all as models" @@ -1867,11 +2023,11 @@ msgstr "モデルを取り込む" msgctxt "@label:MonitorStatus" msgid "In maintenance. Please check the printer" -msgstr "メンテナンス。プリンターをチェックしてください" +msgstr "メンテナンス中です。プリンターをチェックしてください" msgctxt "@info" msgid "In order to monitor your print from Cura, please connect the printer." -msgstr "Cura から印刷を監視するには、プリンタを接続してください。" +msgstr "Curaから印刷を監視するには、プリンタを接続してください。" msgctxt "@label" msgid "In order to start using Cura you will need to configure a printer." @@ -1879,7 +2035,7 @@ msgstr "Curaの使用を開始するには、プリンターを設定する必 msgctxt "@button" msgid "In order to use the package you will need to restart Cura" -msgstr "このパッケージを使用するには、Curaを再始動する必要があります" +msgstr "このパッケージを使用するには、Curaを再起動する必要があります" msgctxt "@option:radio" msgid "Include UltiMaker account name" @@ -2005,10 +2161,6 @@ msgctxt "@label" msgid "Interface" msgstr "インターフェイス" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "インタープロセスコミュニケーションライブラリー" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "無効なIPアドレス" @@ -2019,7 +2171,7 @@ msgstr "無効なファイルのURL:" msgctxt "@action:button" msgid "Invert the direction of camera zoom." -msgstr "カメラのズーム方向を反転する。" +msgstr "カメラのズーム方向を反転" msgctxt "@label" msgid "Is printed as support." @@ -2027,7 +2179,7 @@ msgstr "サポートとしてプリントされます。" msgctxt "@text" msgid "It seems like you don't have any compatible printers connected to Digital Factory. Make sure your printer is connected and it's running the latest firmware." -msgstr "互換性のあるプリンターがDigital Factoryに接続されていないようです。プリンターが接続されていて、最新のファームウェアが実行されていることを確認してください。" +msgstr "互換性のあるプリンターがDigital Factoryに接続されていないようです。プリンターが接続されていること、最新のファームウェアが実行されていることを確認してください。" msgctxt "@item:inlistbox" msgid "JPEG Image" @@ -2037,10 +2189,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "JPG画像" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "JSON解析プログラム" - msgctxt "@label" msgid "Job Name" msgstr "ジョブネーム" @@ -2115,7 +2263,7 @@ msgstr "Curaのプリントプロファイルについて詳しくはこちら" msgctxt "@button" msgid "Learn more about adding printers to Cura" -msgstr "Curaへのプリンターの追加方法はこちら" +msgstr "Curaへのプリンター追加方法はこちら" msgctxt "@label" msgid "Learn more about project packages." @@ -2129,6 +2277,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "左ビュー" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "レガシーCuraプロファイルリーダー" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "問題が発生していることを開発者にお知らせください。" @@ -2137,9 +2289,13 @@ msgctxt "@action" msgid "Level build plate" msgstr "ビルドプレートを調整する" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "%1 %2のライセンス" + msgctxt "@item:inlistbox" msgid "Lighter is higher" -msgstr "薄いほうを高く" +msgstr "明るいほうを高く" msgctxt "@label:listbox" msgid "Line Type" @@ -2153,10 +2309,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "線形" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Linux 分散アプリケーションの開発" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "%3 を 材料 %1 にロードします(これは上書きできません)。" @@ -2171,7 +2323,7 @@ msgstr "読み込み中" msgctxt "@action:warning" msgid "Loading a project will clear all models on the build plate." -msgstr "プロジェクトを読み込むとビルドプレート上のすべてのモデルがクリアされます。" +msgstr "プロジェクトを読み込むとビルドプレートにあるすべてのモデルがクリアされます。" msgctxt "@label" msgid "Loading available configurations from the printer..." @@ -2209,6 +2361,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "ログ" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "プリンターへの接続が切断されました" @@ -2217,6 +2373,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "プリンターの設定" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "プリンターの設定アクション" + msgctxt "@backuplist:label" msgid "Machines" msgstr "プリンタ" @@ -2233,6 +2393,18 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbotプリントファイル" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbotプリントファイルライター" + +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ プリントファイル" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Sketchプリントファイル" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriterが指定されたパスに保存できませんでした。" @@ -2243,19 +2415,19 @@ msgstr "MakerbotWriterはテキストモードをサポートしていません msgctxt "@action:inmenu" msgid "Manage Materials..." -msgstr "フィラメントを管理する..." +msgstr "材料の管理..." msgctxt "@action:inmenu menubar:printer" msgid "Manage Pr&inters..." -msgstr "プリンターを管理する..." +msgstr "プリンターの管理(&I)..." msgctxt "@action:inmenu menubar:profile" msgid "Manage Profiles..." -msgstr "プロファイルを管理する..." +msgstr "プロファイルの管理..." msgctxt "@action:inmenu" msgid "Manage Setting Visibility..." -msgstr "視野のセッティングを管理する..." +msgstr "表示項目設定..." msgctxt "@item:inmenu" msgid "Manage backups" @@ -2287,7 +2459,15 @@ msgstr "プリンター管理" msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." -msgstr "UltiMaker Curaのプラグインと材料プロファイルはここで管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。" +msgstr "ここでUltiMaker Curaのプラグインと材料プロファイルを管理します。プラグインを常に最新の状態に保ち、セットアップのバックアップを定期的に取るようにしてください。" + +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "ネットワーク対応Ultimakerプリンターのネットワーク接続を管理します。" msgctxt "@label" msgid "Manufacturer" @@ -2295,11 +2475,15 @@ msgstr "製造元" msgctxt "@action:button" msgid "Marketplace" -msgstr "マーケットプレース" +msgstr "マーケットプレイス" msgctxt "@label" msgid "Marketplace" -msgstr "マーケットプレース" +msgstr "マーケットプレイス" + +msgctxt "name" +msgid "Marketplace" +msgstr "マーケットプレイス" msgctxt "@action:label" msgid "Material" @@ -2307,7 +2491,7 @@ msgstr "材料" msgctxt "@label" msgid "Material" -msgstr "フィラメント" +msgstr "材料" msgctxt "@label:category menu label" msgid "Material" @@ -2315,11 +2499,15 @@ msgstr "材料" msgctxt "@label:listbox" msgid "Material Color" -msgstr "フィラメントの色" +msgstr "材料の色" + +msgctxt "name" +msgid "Material Profiles" +msgstr "材料プロファイル" msgctxt "@label" msgid "Material Type" -msgstr "フィラメントタイプ" +msgstr "材料の種類" msgctxt "@title" msgid "Material color picker" @@ -2331,11 +2519,11 @@ msgstr "材料予測" msgctxt "@title:header" msgid "Material profiles successfully synced with the following printers:" -msgstr "素材プロファイルが以下のプリンターと正常に同期されました:" +msgstr "材料プロファイルが以下のプリンターと正常に同期されました:" msgctxt "@action:label" msgid "Material settings" -msgstr "フィラメント設定" +msgstr "材料設定" msgctxt "@backuplist:label" msgid "Materials" @@ -2347,11 +2535,11 @@ msgstr "材料" msgctxt "@title:tab" msgid "Materials" -msgstr "マテリアル" +msgstr "材料" msgctxt "@label" msgid "Materials compatible with active printer:" -msgstr "アクティブなプリンターと互換性のある材料:" +msgstr "有効なプリンターと互換性のある材料:" msgctxt "@label" msgid "Mesh Type" @@ -2361,6 +2549,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "モード" +msgctxt "name" +msgid "Model Checker" +msgstr "モデルチェッカー" + msgctxt "@info:title" msgid "Model Errors" msgstr "モデルエラー" @@ -2371,12 +2563,16 @@ msgstr "G-codeを修正" msgctxt "@label" msgid "Modify settings for overlaps" -msgstr "オーバーラップの設定を変更" +msgstr "オーバーラップ設定を変更" msgctxt "@item:inmenu" msgid "Monitor" msgstr "モニター" +msgctxt "name" +msgid "Monitor Stage" +msgstr "モニターステージ" + msgctxt "@action:button" msgid "Monitor print" msgstr "プリントをモニタリング" @@ -2415,16 +2611,16 @@ msgstr "モデルの選択時にモデルがカメラの中心に見えるよう msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" -msgstr "選択内容を増倍" +msgstr "選択内容を複製" msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" -msgstr[0] "選択した複数のモデル" +msgstr[0] "選択したモデルの複製" msgctxt "@info" msgid "Multiply selected item and place them in a grid of build plate." -msgstr "選択したアイテムを乗算し、ビルドプレートのグリッドに配置します。" +msgstr "選択したアイテムを複製し、ビルドプレートに対し格子状に配置します。" msgctxt "@info:status" msgid "Multiplying and placing objects" @@ -2432,7 +2628,7 @@ msgstr "造形データを増やす、配置する" msgctxt "@title" msgid "My Backups" -msgstr "マイ バックアップ" +msgstr "マイバックアップ" msgctxt "@label:button" msgid "My printers" @@ -2450,6 +2646,7 @@ msgctxt "@info:title" msgid "Network error" msgstr "ネットワークエラー" +#, python-format msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" msgstr "%sの新しい安定版ファームウェアが利用可能です" @@ -2462,6 +2659,7 @@ msgctxt "@label" msgid "New UltiMaker printers can be connected to Digital Factory and monitored remotely." msgstr "新しいUltiMakerプリンターは、Digital Factoryに接続してリモートで監視できます。" +#, python-brace-format msgctxt "@info Don't translate {machine_name}, since it gets replaced by a printer name!" msgid "New features or bug-fixes may be available for your {machine_name}! If you haven't done so already, it is recommended to update the firmware on your printer to version {latest_version}." msgstr "お使いの{machine_name}について新機能またはバグ修正が利用できる可能性があります。まだ最新のバージョンでない場合は、プリンターのファームウェアをバージョン{latest_version}に更新することを推奨します。" @@ -2507,6 +2705,7 @@ msgctxt "@label" msgid "No cost estimation available" msgstr "コスト予測がありません" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "No custom profile to import in file {0}" msgstr "ファイル{0}にはカスタムプロファイルがインポートされていません" @@ -2613,7 +2812,7 @@ msgstr "ノズルサイズ" msgctxt "@label" msgid "Number of Copies" -msgstr "コピーの数" +msgstr "コピー数" msgctxt "@label" msgid "Number of Extruders" @@ -2643,13 +2842,14 @@ msgctxt "@label" msgid "Only Show Top Layers" msgstr "トップのレイヤーを表示する" +#, python-brace-format msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "一度に一つのG-codeしか読み取れません。{0}の取り込みをスキップしました。" +msgstr "G-codeは一度に1つしか読み込めません。{0}の取り込みをスキップしました。" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." -msgstr "おっと!スライス処理中に予期しないエラーが発生しました。設定でデータ共有を無効にしていない場合は,分析用にクラッシュログを自動的に受信しますのでご安心ください。さらに支援を行うために,問題トラッカーでプロジェクトの詳細を共有することを検討してください。" +msgstr "申し訳ありません。スライス処理中に予期せぬエラーが発生しました。環境設定でデータ共有を無効にしていない場合は、クラッシュログを自動的に受信し分析を行います。また、Issue trackerでプロジェクトの詳細を共有いただけると助かります。" msgctxt "@action:button" msgid "Open" @@ -2657,7 +2857,7 @@ msgstr "開く" msgctxt "@title:menu menubar:file" msgid "Open &Recent" -msgstr "最近開いたファイルを開く" +msgstr "最近開いたファイルを開く(&R)" msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" @@ -2681,11 +2881,11 @@ msgstr "プロジェクトファイルを開く" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP)" -msgstr "Universal Cura Project(UCP)を開く" +msgstr "Universal Cura Project (UCP) を開く" msgctxt "@title:window Don't translate 'Universal Cura Project'" msgid "Open Universal Cura Project (UCP) file" -msgstr "Universal Cura Project(UCP)ファイルを開く" +msgstr "Universal Cura Project (UCP) ファイルを開く" msgctxt "@action:label" msgid "Open With" @@ -2717,7 +2917,7 @@ msgstr "OpenGL" msgctxt "@label" msgid "Opening and saving files" -msgstr "ファイルを開くまた保存" +msgstr "ファイルの読み込みと保存" msgctxt "@header" msgid "Optimized for Air Manager" @@ -2769,7 +2969,7 @@ msgstr[0] "%1個の設定を上書きします。" msgctxt "@title:menu menubar:toplevel" msgid "P&references" -msgstr "プレファレンス" +msgstr "環境設定(&R)" msgctxt "@item:inlistbox" msgid "PNG Image" @@ -2779,10 +2979,6 @@ msgctxt "@header" msgid "Package details" msgstr "パッケージの詳細" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Pythonアプリケーションのパッケージ化" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "G-codeを解析" @@ -2813,14 +3009,18 @@ msgstr "一時停止しています..." msgctxt "@label" msgid "Per Model Settings" -msgstr "各モデル設定" +msgstr "モデル別設定" + +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "モデル別設定ツール" msgid "Perspective" -msgstr "パースペクティブ表示" +msgstr "透視投影表示" msgctxt "@action:inmenu menubar:view" msgid "Perspective" -msgstr "パースペクティブ表示" +msgstr "透視投影表示" msgctxt "@action:label" msgid "Placement" @@ -2851,10 +3051,16 @@ msgid "Please give the required permissions when authorizing this application." msgstr "このアプリケーションの許可において必要な権限を与えてください。" msgctxt "@info" -msgid "Please make sure your printer has a connection:\n- Check if the printer is turned on.\n- Check if the printer is connected to the network.\n- Check if you are signed in to discover cloud-connected printers." -msgstr "プリンタが接続されているか確認し、以下を行います。" -"- プリンタの電源が入っているか確認します。" -"- プリンタがネットワークに接続されているかどうかを確認します。- クラウドに接続されたプリンタを検出するためにサインインしているかどうかを確認します。" +msgid "" +"Please make sure your printer has a connection:\n" +"- Check if the printer is turned on.\n" +"- Check if the printer is connected to the network.\n" +"- Check if you are signed in to discover cloud-connected printers." +msgstr "" +"プリンタが接続されているか、以下を確認してください:\n" +"- プリンタの電源が入っていること。\n" +"- プリンタがネットワークに接続されていること。\n" +"- クラウドに接続されたプリンタを検出するためにサインインしていること。" msgctxt "@text" msgid "Please name your printer" @@ -2881,11 +3087,16 @@ msgid "Please remove the print" msgstr "造形物を取り出してください" msgctxt "@info:status" -msgid "Please review settings and check if your models:\n- Fit within the build volume\n- Are assigned to an enabled extruder\n- Are not all set as modifier meshes" -msgstr "設定を見直し、モデルが次の状態かどうかを確認してください。" -"- 造形サイズに合っている" -"- 有効なエクストルーダーに割り当てられている" -"- すべてが修飾子メッシュとして設定されているわけではない" +msgid "" +"Please review settings and check if your models:\n" +"- Fit within the build volume\n" +"- Are assigned to an enabled extruder\n" +"- Are not all set as modifier meshes" +msgstr "" +"設定を見直し、モデルが次の状態かどうかを確認してください。\n" +"- 造形サイズに合っている\n" +"- 有効なエクストルーダーに割り当てられている\n" +"- すべてのセットが修飾子メッシュとして設定されていない" msgctxt "@label" msgid "Please select any upgrades made to this UltiMaker Original" @@ -2893,11 +3104,11 @@ msgstr "このUltiMaker Originalに施されたアップグレートを選択す msgctxt "@description" msgid "Please sign in to get verified plugins and materials for UltiMaker Cura Enterprise" -msgstr "検証済みのUltiMaker Cura Enterprise用プラグインおよび材料を入手するにはサインインしてください。" +msgstr "UltiMaker Cura Enterprise用の検証済みプラグインおよび材料を入手するにはサインインしてください。" msgctxt "@info:tooltip" msgid "Please sign in to your UltiMaker account to allow sending non-anonymous data." -msgstr "匿名でないデータの送信を許可するには,UltiMakerアカウントにサインインしてください。" +msgstr "非匿名データの送信を許可するには、UltiMakerアカウントにサインインしてください。" msgctxt "@action:button" msgid "Please sync the material profiles with your printers before starting to print." @@ -2927,25 +3138,21 @@ msgctxt "@button" msgid "Plugins" msgstr "プラグイン" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "ポリゴンクリッピングライブラリー" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Prusa Research開発のポリゴンパッキングライブラリー" - msgctxt "@item:inmenu" msgid "Post Processing" -msgstr "後処理" +msgstr "ポストプロセッシング" + +msgctxt "name" +msgid "Post Processing" +msgstr "ポストプロセッシング" msgctxt "@title:window" msgid "Post Processing Plugin" -msgstr "プラグイン処理後" +msgstr "ポストプロセッシングプラグイン" msgctxt "@label" msgid "Post Processing Scripts" -msgstr "スクリプトの処理後" +msgstr "ポストプロセッシングスクリプト" msgctxt "@button" msgid "Pre-heat" @@ -2953,7 +3160,11 @@ msgstr "プレヒート" msgctxt "@item:inmenu" msgid "Prepare" -msgstr "準備する" +msgstr "準備" + +msgctxt "name" +msgid "Prepare Stage" +msgstr "ステージの準備" msgctxt "@label:MonitorStatus" msgid "Preparing..." @@ -2975,6 +3186,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "プレビュー" +msgctxt "name" +msgid "Preview Stage" +msgstr "プレビューステージ" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "プライムタワー" @@ -3047,7 +3262,7 @@ msgstr "プリント設定" msgctxt "@label shown when we load a Gcode file" msgid "Print setup disabled. G-code file can not be modified." -msgstr "印刷設定は無効にされました。G-code ファイルは変更できません。" +msgstr "印刷設定は無効にされました。G-codeファイルは変更できません。" msgctxt "@action:button Preceded by 'Ready to'." msgid "Print via USB" @@ -3173,9 +3388,10 @@ msgctxt "@title:column" msgid "Profile settings" msgstr "プロファイル設定" +#, python-brace-format msgctxt "@info:status" msgid "Profile {0} has an unknown file type or is corrupted." -msgstr "プロファイル{0}は不特定なファイルまたは破損があります。" +msgstr "プロファイル{0}に不明な種別または破損したファイルがあります。" msgctxt "@backuplist:label" msgid "Profiles" @@ -3191,24 +3407,24 @@ msgstr "プロファイル" msgctxt "@label" msgid "Profiles compatible with active printer:" -msgstr "アクティブなプリンターと互換性のあるプロファイル:" - -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "プログラミング用語" +msgstr "有効なプリンターと互換性のあるプロファイル:" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." msgstr "プロジェクトファイル {0} に不明なマシンタイプ {1} があります。マシンをインポートできません。代わりにモデルをインポートします。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is corrupt: {1}." msgstr "プロジェクトファイル{0}は破損しています:{1}。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tag !" msgid "Project file {0} is made using profiles that are unknown to this version of UltiMaker Cura." msgstr "プロジェクトファイル{0}はこのバージョンのUltiMaker Curaでは認識できないプロファイルを使用して作成されています。" +#, python-brace-format msgctxt "@info:error Don't translate the XML tags or !" msgid "Project file {0} is suddenly inaccessible: {1}." msgstr "プロジェクトファイル{0}が突然アクセスできなくなりました:{1}。" @@ -3217,26 +3433,115 @@ msgctxt "@label" msgid "Properties" msgstr "プロパティ" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "ファームウェアアップデートのためのマシン操作を提供します。" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura内にモニターステージを提供します。" + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "ノーマルなソリットメッシュビューを提供します。" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura内に準備ステージを提供します。" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura内にプレビューステージを提供します。" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "プリンター設定を変更する方法を提供します。(印刷ボリューム、ノズルサイズなど)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XMLの材料プロファイルを読み書きするための機能を提供します。" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "UltiMakerのプリンターのアクションを提供します。(ベッドレベリングウィザード、アップグレードの選択など)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "取り外し可能なドライブホットプラギングおよび書き出しのサポートを提供します。" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Curaプロファイルのエクスポート機能を提供します。" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Curaプロファイルのインポート機能を提供します。" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-codeファイルからのプロファイルインポート機能を提供します。" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "レガシーCura Versionsからプロファイルのインポート機能を提供します。" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MFファイルの読み込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMFファイルの読み込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージの読み込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3Dファイルの読み込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "モデルファイルの読み込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MFおよびUCPファイルの書き込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBotフォーマットパッケージの書き込み機能を提供します。" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimakerフォーマットパッケージへの書き込み機能を提供します。" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "モデル別設定を提供します。" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "透視ビューを提供します。" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngineスライシングバックエンドとのリンクを提供します。" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "スライスされたレイヤーデータのプレビューを提供します。" + msgctxt "@label" msgid "PyQt version" msgstr "PyQtバージョン" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Pythonエラー追跡ライブラリー" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "ClipperのPythonバインディング" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "libnest2dのPythonバインディング" - msgctxt "@label" msgid "Qt version" msgstr "Qtバージョン" +#, python-brace-format msgctxt "@info:status" msgid "Quality type '{0}' is not compatible with the current active machine definition '{1}'." msgstr "クオリティータイプ「{0}」は、現在アクティブなプリンター定義「{1}」と互換性がありません。" @@ -3247,12 +3552,16 @@ msgstr "キューがいっぱい" msgctxt "@label" msgid "Queued" -msgstr "順番を待つ" +msgstr "キュー挿入済み" msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1を終了する" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "圧縮ファイルからG-codeを読み取ります。" + msgctxt "@button" msgid "Recommended" msgstr "推奨" @@ -3295,7 +3604,7 @@ msgstr "リリースノート" msgctxt "@action:inmenu menubar:file" msgid "Reload All Models" -msgstr "すべてのモデルを読み込む" +msgstr "全モデルを再読み込み" msgctxt "@text:window" msgid "Remember my choice" @@ -3305,13 +3614,17 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "リムーバブルドライブ" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" + msgctxt "@action:button" msgid "Remove" -msgstr "取り除く" +msgstr "削除" msgctxt "@action:button" msgid "Remove printers" -msgstr "プリンターを取り除く" +msgstr "プリンターを削除" msgctxt "@title:window" msgid "Remove printers?" @@ -3319,19 +3632,19 @@ msgstr "プリンターを削除しますか?" msgctxt "@action:button" msgid "Rename" -msgstr "名を変える" +msgstr "名称変更" msgctxt "@title:window" msgid "Rename" -msgstr "名前変更" +msgstr "名称変更" msgctxt "@title:window" msgid "Rename Profile" -msgstr "プロファイル名を変える" +msgstr "プロファイル名を変更" msgctxt "@action:inmenu menubar:help" msgid "Report a &Bug" -msgstr "報告&バグ" +msgstr "バグを報告(&B)" msgctxt "@label:button" msgid "Report a bug" @@ -3351,11 +3664,11 @@ msgstr "構成の変更が必要です" msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Positions" -msgstr "すべてのモデルのポジションをリセットする" +msgstr "全モデルの座標をリセット" msgctxt "@action:inmenu menubar:edit" msgid "Reset All Model Transformations" -msgstr "すべてのモデル&変更点をリセットする" +msgstr "全モデルの変更をリセット" msgctxt "@info" msgid "Reset to defaults." @@ -3405,10 +3718,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "右ビュー" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "SSLの信頼性を検証するためのルート証明書" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "ハードウェアを安全に取り外します" @@ -3431,7 +3740,7 @@ msgstr "Cura Projectと.makerbot印刷ファイルを保存する" msgctxt "@option" msgid "Save Cura project and .ufp print file" -msgstr " Cura Projectと.ufp印刷ファイルを保存する" +msgstr "Cura Projectと.ufp印刷ファイルを保存する" msgctxt "@title:window" msgid "Save Custom Profile" @@ -3469,10 +3778,12 @@ msgctxt "@action:button Preceded by 'Ready to'." msgid "Save to Removable Drive" msgstr "リムーバブルドライブに保存" +#, python-brace-format msgctxt "@item:inlistbox" msgid "Save to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存" +#, python-brace-format msgctxt "@info:status" msgid "Saved to Removable Drive {0} as {1}" msgstr "リムーバブルドライブ{0}に {1}として保存" @@ -3481,25 +3792,30 @@ msgctxt "@info:title" msgid "Saving" msgstr "保存中" +#, python-brace-format msgctxt "@info:progress Don't translate the XML tags !" msgid "Saving to Removable Drive {0}" msgstr "リムーバブルドライブ{0}に保存中" msgctxt "@option:check" msgid "Scale extremely small models" -msgstr "極端に小さなモデルをスケールアップする" +msgstr "極端に小さいモデルを拡大" msgctxt "@option:check" msgid "Scale large models" -msgstr "大きなモデルをスケールする" +msgstr "大きなモデルを縮小" msgctxt "@placeholder" msgid "Search" msgstr "検索" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "プリンターを検索" + msgctxt "@info" msgid "Search in the browser" -msgstr "ブラウザでの検索" +msgstr "ブラウザで検索" msgctxt "@label:textbox" msgid "Search settings" @@ -3507,7 +3823,7 @@ msgstr "検索設定" msgctxt "@action:inmenu menubar:edit" msgid "Select All Models" -msgstr "すべてのモデル選択" +msgstr "全モデルを選択" msgctxt "@title:window" msgid "Select Printer" @@ -3547,7 +3863,7 @@ msgstr "以下のリストからプリンタを選択します:" msgctxt "@option:check" msgid "Send (anonymous) print information" -msgstr "(不特定な) プリントインフォメーションを送信" +msgstr "匿名のプリント情報を送信" msgctxt "@label" msgid "Send G-code" @@ -3563,11 +3879,11 @@ msgstr "クラッシュ報告をUltiMakerに送信する" msgctxt "@info:tooltip" msgid "Send crash reports with your registered UltiMaker account name and the project name to UltiMaker Sentry. No actual model data is being send." -msgstr "登録したUltiMakerアカウント名とプロジェクト名を含むクラッシュレポートを,UltiMaker Sentryに送信します。実際のモデルデータは送信されません。" +msgstr "登録したUltiMakerアカウント名とプロジェクト名を含むクラッシュレポートをUltiMaker Sentryに送信します。実際のモデルデータは送信されません。" msgctxt "@info:tooltip" msgid "Send crash reports without any personally identifiable information or models data to UltiMaker." -msgstr "個人を特定できる情報やモデルデータを含まないクラッシュレポートを,UltiMakerに送信します。" +msgstr "個人を特定できる情報やモデルデータを含まないクラッシュレポートをUltiMakerに送信します。" msgctxt "@option:check" msgid "Send engine crash reports" @@ -3585,13 +3901,13 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "プリンターに材料を送信しています" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "シリアルコミュニケーションライブラリー" +msgctxt "name" +msgid "Sentry Logger" +msgstr "監視ロガー" msgctxt "@action:inmenu" msgid "Set as Active Extruder" -msgstr "アクティブエクストルーダーとしてセットする" +msgstr "アクティブエクストルーダーにセット" msgctxt "@title:column" msgid "Setting" @@ -3599,11 +3915,11 @@ msgstr "設定" msgctxt "@title:tab" msgid "Setting Visibility" -msgstr "視野設定" +msgstr "表示項目設定" msgctxt "@info:progress" msgid "Setting up preferences..." -msgstr "プレファレンスをセットアップ中..." +msgstr "環境設定をセットアップ中..." msgctxt "@info:progress" msgid "Setting up scene..." @@ -3611,7 +3927,7 @@ msgstr "シーンをセットアップ中..." msgctxt "@action:label" msgid "Setting visibility" -msgstr "視野設定" +msgstr "表示項目設定" msgctxt "@label" msgid "Settings" @@ -3647,67 +3963,71 @@ msgstr "シェルの厚さ" msgctxt "@info:tooltip" msgid "Should Cura check for updates when the program is started?" -msgstr "Curaのプログラム開始時にアップデートがあるかチェックしますか?" +msgstr "Curaのプログラム開始時にアップデートをチェックするかどうか" msgctxt "@info:tooltip" msgid "Should Cura open at the location it was closed?" -msgstr "Curaを終了した場所で開くようにしますか?" +msgstr "Curaを終了した場所で開くかどうか" msgctxt "@info:tooltip" msgid "Should a prefix based on the printer name be added to the print job name automatically?" -msgstr "プリンター名の敬称はプリントジョブの名前に自動的に加えられるべきか?" +msgstr "自動的にプリンター名を元にした接頭辞をプリントジョブ名に加えるかどうか" msgctxt "@info:tooltip" msgid "Should a summary be shown when saving a project file?" -msgstr "プロジェクトファイルを保存時にサマリーを表示するべきか?" +msgstr "プロジェクトファイル保存時に概要を表示するかどうか" msgctxt "@info:tooltip" msgid "Should an automatic check for new plugins be done every time Cura is started? It is highly recommended that you do not disable this!" -msgstr "Curaを起動するたびに、新しいプラグインの自動チェックを実行する必要がありますか?これは無効にしないことを強くお勧めします!" +msgstr "Curaを起動するたびに、新しいプラグインの自動チェックを実行するかどうか。この設定は無効にしないことを強くお勧めします!" msgctxt "@info:tooltip" msgid "Should anonymous data about your print be sent to UltiMaker? Note, no models, IP addresses or other personally identifiable information is sent or stored." -msgstr "プリンターの不明なデータをUltiMakerにおくりますか?メモ、モデル、IPアドレス、個人的な情報は送信されたり保存されたりはしません。" +msgstr "プリントの匿名データをUltiMakerに送信するかどうか。メモ、モデル、IPアドレス、および個人的情報は送信・保存されません。" msgctxt "@info:tooltip" msgid "Should layer be forced into compatibility mode?" -msgstr "レイヤーはコンパティビリティモードに強制されるべきか?" +msgstr "レイヤーを強制的に互換モードにするかどうか" msgctxt "@info:tooltip" msgid "Should models be scaled to the build volume if they are too large?" -msgstr "モデルがビルドボリュームに対して大きすぎる場合はスケールされるべきか?" +msgstr "モデルがビルドボリュームに対して大きすぎる場合にサイズを調整するかどうか" msgctxt "@info:tooltip" msgid "Should models be selected after they are loaded?" -msgstr "モデルはロード後に選択しますか?" +msgstr "モデルをロード後に選択するかどうか" msgctxt "@info:tooltip" msgid "Should models on the platform be moved down to touch the build plate?" -msgstr "プラットホーム上のモデルはブルドプレートに触れるように下げるべきか?" +msgstr "プラットフォーム上のモデルをブルドプレートに触れるまで下げるかどうか" msgctxt "@info:tooltip" msgid "Should models on the platform be moved so that they no longer intersect?" -msgstr "交差を避けるためにプラットホーム上のモデルを移動するべきですか?" +msgstr "プラットフォーム上のモデル同士が重ならないよう移動するかどうか" msgctxt "@info:tooltip" msgid "Should opening files from the desktop or external applications open in the same instance of Cura?" -msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開く必要がありますか?" +msgstr "デスクトップまたは外部アプリケーションから開いたファイルをCuraの同じインスタンスで開くかどうか" msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." -msgstr "スライスのクラッシュは自動的にUltimakerに報告されますか?明示的な許可がない限り,モデル,IPアドレス,その他の個人を特定できる情報が送信または保存されることはありません。" +msgstr "スライスのクラッシュを自動的にUltimakerに報告するかどうか。明示的な許可がない限り、モデル、IPアドレス、およびその他の個人を特定できる情報が送信または保存されることはありません。" + +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "ツールハンドルのY軸移動を反転するかどうか。これはモデルのY軸方向のみに影響し、プリントヘッド設定など他の設定は影響せず、従前と変わらず動作します。" msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" -msgstr "Curaの単一インスタンスに新しいモデルをロードする前に、ビルドプレートをクリアする必要はありますか?" +msgstr "単一のCuraインスタンスに新しいモデルをロードする前に、ビルドプレートをクリアするかどうか" msgctxt "@info:tooltip" msgid "Should the default zoom behavior of cura be inverted?" -msgstr "Curaのデフォルトのズーム機能は変更できるべきか?" +msgstr "Curaのデフォルトズームの動作を反転するかどうか" msgctxt "@info:tooltip" msgid "Should zooming move in the direction of the mouse?" -msgstr "ズームはマウスの方向に動くべきか?" +msgstr "マウスの方向にズームするかどうか" msgctxt "@label" msgid "Show 5 Detailed Layers On Top" @@ -3715,19 +4035,15 @@ msgstr "トップの5レイヤーの詳細を表示する" msgctxt "@action:inmenu menubar:help" msgid "Show Configuration Folder" -msgstr "コンフィグレーションのフォルダーを表示する" +msgstr "コンフィグレーションのフォルダーを表示" msgctxt "@button" msgid "Show Custom" -msgstr "カスタムを表示" +msgstr "カスタム表示" msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" -msgstr "オンラインドキュメントを表示する" - -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "オンライントラブルシューティングを表示" +msgstr "オンラインドキュメントを表示(&D)" msgctxt "@label:checkbox" msgid "Show all" @@ -3747,7 +4063,7 @@ msgstr "G-codeリーダーに注意メッセージを表示します。" msgctxt "@action:button" msgid "Show configuration folder" -msgstr "コンフィグレーションのフォルダーを表示する" +msgstr "コンフィグレーションのフォルダーを表示" msgctxt "@action:button" msgid "Show detailed crash report" @@ -3759,7 +4075,7 @@ msgstr "設定を表示" msgctxt "@option:check" msgid "Show summary dialog when saving project" -msgstr "プロジェクトを保存時にダイアログサマリーを表示する" +msgstr "プロジェクト保存時に概要ダイアログを表示" msgctxt "@tooltip:button" msgid "Show your support for Cura with a donation." @@ -3793,6 +4109,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMakerのプラットフォームにサインイン" +msgctxt "name" +msgid "Simulation View" +msgstr "シミュレーションビュー" + msgctxt "@tooltip" msgid "Skin" msgstr "スキン" @@ -3815,11 +4135,15 @@ msgstr "スライス" msgctxt "@option:check" msgid "Slice automatically" -msgstr "自動的にスライスする" +msgstr "自動的にスライス" msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." -msgstr "セッティングを変更すると自動にスライスします。" +msgstr "セッティングを変更すると自動でスライスします。" + +msgctxt "name" +msgid "Slice info" +msgstr "スライスインフォメーション" msgctxt "@message:title" msgid "Slicing failed" @@ -3837,14 +4161,23 @@ msgctxt "@label" msgid "Solid" msgstr "固体" +msgctxt "name" +msgid "Solid View" +msgstr "ソリッドビュー" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "ソリッドビュー" msgctxt "@label" -msgid "Some hidden settings use values different from their normal calculated value.\n\nClick to make these settings visible." -msgstr "いくらかの非表示設定は通常の計算された値と異なる値を使用します。" -"表示されるようにクリックしてください。" +msgid "" +"Some hidden settings use values different from their normal calculated value.\n" +"\n" +"Click to make these settings visible." +msgstr "" +"いくつかの非表示設定が通常の計算結果と異なる値となっています。\n" +"\n" +"クリックすると表示されます。" msgctxt "@info:status" msgid "Some of the packages used in the project file are currently not installed in Cura, this might produce undesirable print results. We highly recommend installing the all required packages from the Marketplace." @@ -3859,9 +4192,14 @@ msgid "Some setting-values defined in %1 were overridden." msgstr "%1で定義された一部の設定値が上書きされました。" msgctxt "@tooltip" -msgid "Some setting/override values are different from the values stored in the profile.\n\nClick to open the profile manager." -msgstr "いくらかの設定プロファイルにある値とことなる場合無効にします。" -"プロファイルマネージャーをクリックして開いてください。" +msgid "" +"Some setting/override values are different from the values stored in the profile.\n" +"\n" +"Click to open the profile manager." +msgstr "" +"いくつかの設定/上書きされた値はプロファイルに保存された値と異なります。\n" +"\n" +"クリックするとプロファイルマネージャーを開きます。" msgctxt "@action:label" msgid "Some settings from current profile were overwritten." @@ -3885,11 +4223,11 @@ msgstr "スピード" msgctxt "@action:inmenu" msgid "Sponsor Cura" -msgstr "スポンサーCura" +msgstr "スポンサーになる" msgctxt "@label:button" msgid "Sponsor Cura" -msgstr "スポンサーCura" +msgstr "スポンサーになる" msgctxt "@option:radio" msgid "Stable and Beta releases" @@ -3913,7 +4251,11 @@ msgstr "ビルドプレートのレベリングを開始する" msgctxt "@title:label" msgid "Start G-code" -msgstr "G-Codeの開始" +msgstr "開始G-Code" + +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "開始G-Codeを必ず最初に実行" msgctxt "@label" msgid "Start the slicing process" @@ -3925,20 +4267,25 @@ msgstr "開始" msgctxt "@text" msgid "Streamline your workflow and customize your UltiMaker Cura experience with plugins contributed by our amazing community of users." -msgstr "素晴らしいユーザーコミュニティから提供されるプラグインを活用して、ワークフローを合理化し、UltiMaker Cura体験をカスタマイズすることができます。" +msgstr "素晴らしいユーザーコミュニティから提供されるプラグインを活用して、ワークフローを合理化し、UltiMaker Cura体験をカスタマイズできます。" msgctxt "@label" msgid "Strength" msgstr "強度" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "匿名のスライス情報を登録します。環境設定により無効になる場合があります。" + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" -msgstr "フィラメントの%1への書き出しが完了ました" +msgstr "材料を%1にエクスポートしました。" msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully imported material %1" -msgstr "フィラメント%1の取り込みに成功しました" +msgstr "材料を%1からインポートしました" +#, python-brace-format msgctxt "@info:status" msgid "Successfully imported profile {0}." msgstr "プロファイル{0}の取り込みが完了しました。" @@ -3949,15 +4296,15 @@ msgstr "推奨される材料の設定" msgctxt "@action:label" msgid "Suggested Profile settings" -msgstr "推奨されるプロフィールの設定" +msgstr "推奨プロファイル設定" msgctxt "@action:title" msgid "Summary - Cura Project" -msgstr "サマリーCuraプロジェクト" +msgstr "概要 - Curaプロジェクト" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Open Universal Cura Project (UCP)" -msgstr "概要 - Universal Cura Project(UCP)を開く" +msgstr "概要 - Universal Cura Project (UCP) を開く" msgctxt "@action:title Don't translate 'Universal Cura Project'" msgid "Summary - Universal Cura Project" @@ -3975,6 +4322,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "サポートブロッカー" +msgctxt "name" +msgid "Support Eraser" +msgstr "サポート消去機能" + msgctxt "@tooltip" msgid "Support Infill" msgstr "サポートイルフィル" @@ -3987,34 +4338,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "サポートタイプ" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "ファターマスを操作するためのライブラリーサポート" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "ファイルメタデータとストリーミングのためのライブラリーサポート" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "3MFファイルを操作するためのライブラリーサポート" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "STLファイルを操作するためのライブラリーサポート" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "参画メッシュを操作するためのライブラリーサポート" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "サイエンスコンピューティングを操作するためのライブラリーサポート" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "システムキーリングアクセスを操作するためのライブラリーサポート" - msgctxt "@action:button" msgid "Sync" msgstr "同期" @@ -4082,11 +4405,11 @@ msgstr "バックアップが最大ファイルサイズを超えています。 msgctxt "@text" msgid "The balanced profile is designed to strike a balance between productivity, surface quality, mechanical properties and dimensional accuracy." -msgstr "バランスのとれたプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" +msgstr "バランスプロファイルは、生産性、表面品質、機械的特性、寸法精度のバランスを取るために設計されています。" msgctxt "@info:tooltip" msgid "The base height from the build plate in millimeters." -msgstr "ミリメートルでビルドプレートからベースの高さ。" +msgstr "ビルドプレートからベースまでの高さをミリメートルで指定します。" msgctxt "@info:status" msgid "The build volume height has been reduced due to the value of the \"Print Sequence\" setting to prevent the gantry from colliding with printed models." @@ -4106,7 +4429,7 @@ msgstr "クラウドプリンターがオフラインです。プリンターの msgctxt "@tooltip" msgid "The colour of the material in this extruder." -msgstr "エクストルーダーのマテリアルの色。" +msgstr "このエクストルーダーの材料の色。" msgctxt "@tooltip" msgid "The configuration of this extruder is not allowed, and prohibits slicing." @@ -4126,7 +4449,7 @@ msgstr "このホットエンドの現在の温度です。" msgctxt "@info:tooltip" msgid "The depth in millimeters on the build plate" -msgstr "ビルドプレート上の奥行きミリメートル" +msgstr "ビルドプレート上の奥行き(ミリメートル)" msgctxt "@text" msgid "The draft profile is designed to print initial prototypes and concept validation with the intent of significant print time reduction." @@ -4140,13 +4463,14 @@ msgctxt "@label" msgid "The extruder train to use for printing the support. This is used in multi-extrusion." msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" +#, python-brace-format msgctxt "@label Don't translate the XML tag !" msgid "The file {0} already exists. Are you sure you want to overwrite it?" msgstr "{0} は既に存在します。ファイルを上書きしますか?" msgctxt "@label" msgid "The firmware shipping with new printers works, but new versions tend to have more features and improvements." -msgstr "配達時のファームウェアで動かすことはできますが、新しいバージョンの方がより改善され、便利なフィーチャーがついてきます。" +msgstr "出荷時のファームウェアは動作しますが、新しいバージョンの方がより改善され、便利な機能があります。" msgctxt "@info:backup_failed" msgid "The following error occurred while trying to restore a Cura backup:" @@ -4166,7 +4490,7 @@ msgstr "アカウントにある以下のプリンターがCuraに追加され msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" -msgstr "以下のプリンターに新しい素材プロファイルが配布されます:" +msgstr "以下のプリンターに新しい材料プロファイルが配布されます:" msgctxt "@info:tooltip" msgid "The following script is active:" @@ -4183,11 +4507,11 @@ msgstr "ハイライトされたエリアは、欠けている表面または無 msgctxt "@tooltip" msgid "The material in this extruder." -msgstr "エクストルーダー入ったフィラメント。" +msgstr "このエクストルーダーにある材料。" msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" msgid "The material package associated with the Cura project could not be found on the Ultimaker Marketplace. Use the partial material profile definition stored in the Cura project file at your own risk." -msgstr "Curaプロジェクトに関連付けられている材料パッケージがUltimaker Marketplaceで見つかりませんでした。Curaプロジェクトファイルに保存されている材料パッケージ定義を部分的に使用する場合は自己責任で行ってください。" +msgstr "Curaプロジェクトに関連付けられている材料パッケージがUltimakerマーケットプレイスで見つかりませんでした。Curaプロジェクトファイルに保存されている材料プロファイルの定義を部分的に使用する場合は自己責任で行ってください。" msgctxt "@info:tooltip" msgid "The maximum distance of each pixel from \"Base.\"" @@ -4195,17 +4519,28 @@ msgstr "“ベース”から各ピクセルへの最大距離。" msgctxt "@label (%1 is a number)" msgid "The new filament diameter is set to %1 mm, which is not compatible with the current extruder. Do you wish to continue?" -msgstr "新しいフィラメントの直径は %1 mm に設定されています。これは現在のエクストルーダーに適応していません。続行しますか?" +msgstr "新しいフィラメントの直径は%1mmに設定されています。これは現在のエクストルーダーに適応していません。続行しますか?" msgctxt "@tooltip" msgid "The nozzle inserted in this extruder." msgstr "ノズルが入ったエクストルーダー。" msgctxt "@label" -msgid "The pattern of the infill material of the print:\n\nFor quick prints of non functional model choose line, zig zag or lightning infill.\n\nFor functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n\nFor functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." -msgstr "プリントのインフィル材料のパターン:" -"非機能モデルをクイックプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。 " -"応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。" +msgid "" +"The pattern of the infill material of the print:\n" +"\n" +"For quick prints of non functional model choose line, zig zag or lightning infill.\n" +"\n" +"For functional part not subjected to a lot of stress we recommend grid or triangle or tri hexagon.\n" +"\n" +"For functional 3D prints which require high strength in multiple directions use cubic, cubic subdivision, quarter cubic, octet, and gyroid." +msgstr "" +"プリントのインフィル材料のパターン:\n" +"\n" +"非機能モデルを手早くプリントする場合は、ライン、ジグザグ、ライトニングインフィルから選択します。\n" +"\n" +"応力があまりかからない機能部品の場合は、グリッド、トライアングル、トライヘキサゴンをお勧めします。\n" +"\n" "複数の方向に高い強度を必要とする機能的な3Dプリントの場合は、キュービック、キュービックサブディビジョン、クォーターキュービック、オクテット、ジャイロイドを使用します。" msgctxt "@info:tooltip" @@ -4214,7 +4549,7 @@ msgstr "厚さ1ミリメートルのプリントを貫通する光の割合。 msgctxt "@label:label Ultimaker Marketplace is a brand name, don't translate" msgid "The plugin associated with the Cura project could not be found on the Ultimaker Marketplace. As the plugin may be required to slice the project it might not be possible to correctly slice the file." -msgstr "Curaプロジェクトに関連付けられたプラグインが Ultimakerマーケットプレイスで見つかりませんでした。プロジェクトをスライスするためにプラグインが必要な場合があるため、ファイルを正しくスライスできない可能性があります。" +msgstr "Curaプロジェクトに関連付けられたプラグインがUltimakerマーケットプレイスで見つかりませんでした。プロジェクトをスライスするためにプラグインが必要な場合があるため、ファイルを正しくスライスできない可能性があります。" msgctxt "@info:title" msgid "The print job was successfully submitted" @@ -4258,7 +4593,7 @@ msgstr "Digital Factoryからの応答に重要な情報がありません。" msgctxt "@tooltip" msgid "The target temperature of the heated bed. The bed will heat up or cool down towards this temperature. If this is 0, the bed heating is turned off." -msgstr "ヒーティッドベッドの目標温度。ベッドはこの温度に向けて上がったり下がったりします。これが0の場合、ベッドの加熱はオフになっています。" +msgstr "ヒーテッドベッドの目標温度。ベッドはこの温度に向けて上がったり下がったりします。これが0の場合、ベッドの加熱はオフになっています。" msgctxt "@tooltip" msgid "The target temperature of the hotend. The hotend will heat up or cool down towards this temperature. If this is 0, the hotend heating is turned off." @@ -4266,11 +4601,11 @@ msgstr "ホットエンドの目標温度。ホットエンドはこの温度に msgctxt "@tooltip of temperature input" msgid "The temperature to pre-heat the bed to." -msgstr "ベッドのプリヒート温度。" +msgstr "ベッドのプレヒート温度。" msgctxt "@tooltip of temperature input" msgid "The temperature to pre-heat the hotend to." -msgstr "ホットエンドをプリヒートする温度です。" +msgstr "ホットエンドをプレヒートする温度です。" msgctxt "@text" msgid "The visual profile is designed to print visual prototypes and models with the intent of high visual and surface quality." @@ -4298,7 +4633,7 @@ msgstr "このエクストルーダーの構成に一致するプロファイル msgctxt "@info:status" msgid "There is no active printer yet." -msgstr "アクティブなプリンターはありません。" +msgstr "アクティブなプリンターがありません。" msgctxt "@label" msgid "There is no printer found over your network." @@ -4324,17 +4659,21 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "%1 が認識されていないためこの構成は利用できません。%2 から適切な材料プロファイルをダウンロードしてください。" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "この設定は不整合あるいはコアタイプ%1による他の問題により無効化されました。サポートページをご覧いただくか、このプリンター機種のどのコアが新しいスライスをサポートしているか確認してください。" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "これはCura Universalのプロジェクトファイルです。Cura Project,またはCura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "これはCura Universal Projectファイルです。Cura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" -msgstr "これはCuraのプロジェクトファイルです。プロジェクトとしてあけますか、それともモデルのみ取り込みますか?" +msgstr "これはCuraのプロジェクトファイルです。プロジェクトとして開きますか、それともモデルのみ取り込みますか?" msgctxt "@label" msgid "This material is linked to %1 and shares some of its properties." -msgstr "このフィラメントは %1にリンクすプロパティーを共有する。" +msgstr "この材料は%1の構成とリンクされています。" msgctxt "@label" msgid "This package will be installed after restarting." @@ -4361,6 +4700,7 @@ msgctxt "@label" msgid "This printer is the host for a group of %1 printers." msgstr "このプリンターは %1 プリンターのループのホストプリンターです。" +#, python-brace-format msgctxt "@info:status Don't translate the XML tags !" msgid "This profile {0} contains incorrect data, could not import it." msgstr "このプロファイル{0}には、正しくないデータが含まれているため、インポートできません。" @@ -4371,12 +4711,17 @@ msgstr "このプロファイルはプリンターによりデフォルトを使 msgctxt "@label" msgid "This project contains materials or plugins that are currently not installed in Cura.
    Install the missing packages and reopen the project." -msgstr "このプロジェクトには、現在Curaにインストールされていない素材またはプラグインが含まれています。
    不足しているパッケージをインストールすると、プロジェクトが再度開きます。" +msgstr "このプロジェクトには、現在Curaにインストールされていない材料またはプラグインが含まれています。
    不足しているパッケージをインストールすると、プロジェクトが再度開きます。" msgctxt "@label" -msgid "This setting has a value that is different from the profile.\n\nClick to restore the value of the profile." -msgstr "この設定にプロファイルと異なった値があります。" -"プロファイルの値を戻すためにクリックしてください。" +msgid "" +"This setting has a value that is different from the profile.\n" +"\n" +"Click to restore the value of the profile." +msgstr "" +"設定された値がプロファイルと異なります。\n" +"\n" +"クリックするとプロファイルの値に戻します。" msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." @@ -4385,16 +4730,21 @@ msgstr "この設定がアクティブなプリンターにより非表示にな msgctxt "@item:tooltip %1 is list of setting names" msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." -msgstr[0] "この設定は %1 の値で非表示になっています。その設定値を変更すると設定の非表示が解除されます。" +msgstr[0] "この設定は%1の値により表示されていません。%1の値を変更すると表示されるようになります。" msgctxt "@label" msgid "This setting is always shared between all extruders. Changing it here will change the value for all extruders." msgstr "この設定は常に全てのエクストルーダーに共有されています。ここですべてのエクストルーダーの数値を変更できます。" msgctxt "@label" -msgid "This setting is normally calculated, but it currently has an absolute value set.\n\nClick to restore the calculated value." -msgstr "このセッティングは通常計算されます、今は絶対値に固定されています。" -"計算された値に変更するためにクリックを押してください。" +msgid "" +"This setting is normally calculated, but it currently has an absolute value set.\n" +"\n" +"Click to restore the calculated value." +msgstr "" +"この設定は通常の場合計算されますが、現状は絶対値に固定されています。\n" +"\n" +"クリックすると計算された値に戻します。" msgctxt "@label" msgid "This setting is not used because all the settings that it influences are overridden." @@ -4406,15 +4756,15 @@ msgstr "この設定はエクストルーダー固有の競合する値から取 msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project, Users are asked to add it at their own risk." -msgstr "この設定は,Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。ユーザーは自己責任で追加するように求められます。" +msgstr "この設定は、Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。自己責任で追加するかどうか確認されます。" msgctxt "@tooltip Don't translate 'Universal Cura Project'" msgid "This setting may not perform well while exporting to Universal Cura Project. Users are asked to add it at their own risk." -msgstr "この設定は,Universal Cura Projectへのエクスポート中に適切に機能しない可能性があります。ユーザーは自己責任で追加するように求められます。" +msgstr "この設定はUniversal Cura Projectへのエクスポート中に適切に機能しない可能性があります。自己責任で追加するか確認されます。" msgctxt "@info:warning" msgid "This version is not intended for production use. If you encounter any issues, please report them on our GitHub page, mentioning the full version {self.getVersion()}" -msgstr "このバージョンは、運用環境での使用を目的としたmのではありません。問題が発生した場合は、GitHubページでフルバージョン{self.getVersion()}を記載して報告してください。" +msgstr "このバージョンは、製品開発での使用を目的としたものではありません。問題が発生した場合は、GitHubページでフルバージョン {self.getVersion()} を記載して報告してください。" msgctxt "@label" msgid "Time estimation" @@ -4428,25 +4778,27 @@ msgctxt "@text" msgid "To automatically sync the material profiles with all your printers connected to Digital Factory you need to be signed in in Cura." msgstr "材料プロファイルをDigital Factoryに接続されているすべてのプリンターと自動的に同期するには、Curaにサインインしている必要があります。" +#, python-brace-format msgctxt "info:status" msgid "To establish a connection, please visit the {website_link}" msgstr "接続を確立するには、{website_link}にアクセスしてください" msgctxt "@label" msgid "To make sure your prints will come out great, you can now adjust your buildplate. When you click 'Move to Next Position' the nozzle will move to the different positions that can be adjusted." -msgstr "プリントの成功率を上げるために、ビルドプレートを今調整できます。’次のポジションに移動’をクリックすると。" +msgstr "プリントの成功率を上げるために、ビルドプレートを調整可能になりました。「次のポジションに移動」をクリックすると、ノズルの移動先を調整できます。" msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "印刷ジョブをネットワークを介してプリンターに直接送信するには、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターを WIFI ネットワークに接続します。Cura をプリンタに接続していない場合でも、USB ドライブを使用して g コードファイルをプリンターに転送することはできます。" +msgstr "印刷ジョブをネットワーク上のプリンターに直接送信するため、ネットワークケーブルを使用してプリンターを確実にネットワークに接続するか、プリンターをWiFiネットワークに接続されていることを確認してください。Curaをプリンタに接続していない場合でも、USBドライブを使用してg-codeファイルをプリンターに転送できます。" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" msgstr "{printer_name}を完全に削除するには、{digital_factory_link}にアクセスしてください" msgctxt "@action:inmenu" msgid "Toggle Full Screen" -msgstr "留め金 フルスクリーン" +msgstr "全画面表示切替" msgctxt "@label" msgid "Top / Bottom" @@ -4482,12 +4834,16 @@ msgstr "移動" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "現行バージョンより上の Cura バックアップをリストアしようとしました。" +msgstr "現行バージョンより上のCuraバックアップをリストアしようとしました。" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "適切なデータまたはメタデータがないのにCuraバックアップをリストアしようとしました。" +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimeshリーダー" + msgctxt "@button" msgid "Troubleshooting" msgstr "トラブルシューティング" @@ -4508,10 +4864,22 @@ msgctxt "@label" msgid "Type" msgstr "タイプ" +msgctxt "name" +msgid "UFP Reader" +msgstr "UFPリーダー" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFPライター" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USBプリンティング" +msgctxt "name" +msgid "USB printing" +msgstr "USBプリンティング" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMakerアカウント" @@ -4522,12 +4890,16 @@ msgstr "UltiMaker認定材料" msgctxt "@text:window" msgid "UltiMaker Cura collects anonymous data in order to improve the print quality and user experience. Below is an example of all the data that is shared:" -msgstr "UltiMaker Cura は、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:" +msgstr "UltiMaker Curaは、印刷品質とユーザーエクスペリエンスを向上させるために匿名データを収集します。以下は、共有されるすべてのデータの例です:" msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMakerフォーマットパッケージ" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimakerネットワーク接続" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker検証済みパッケージ" @@ -4536,6 +4908,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker検証済みプラグイン" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMakerプリンターのアクション" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMakerプリンター" @@ -4548,6 +4924,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "プロファイルを追加できません。" @@ -4556,23 +4936,36 @@ msgctxt "@info:status" msgid "Unable to find a location within the build volume for all objects" msgstr "全ての造形物の造形サイズに対し、適切な位置が確認できません" +#, python-brace-format msgctxt "@info:plugin_failed" msgid "Unable to find local EnginePlugin server executable for: {self._plugin_id}" msgstr "以下のローカルEnginePluginサーバーの実行可能ファイルが見つかりません:{self._plugin_id}" +#, python-brace-format msgctxt "@info:plugin_failed" -msgid "Unable to kill running EnginePlugin: {self._plugin_id}\nAccess is denied." -msgstr "実行中のEnginePluginを強制終了できません:{self._plugin_id}" +msgid "" +"Unable to kill running EnginePlugin: {self._plugin_id}\n" +"Access is denied." +msgstr "" +"実行中のEnginePluginを強制終了できません: {self._plugin_id}\n" "アクセスが拒否されました。" msgctxt "@info" msgid "Unable to reach the UltiMaker account server." -msgstr "UltiMaker アカウントサーバーに到達できません。" +msgstr "UltiMakerアカウントサーバーに到達できません。" msgctxt "@text" msgid "Unable to read example data file." msgstr "サンプルのデータファイルを読み取ることができません。" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "モデルデータをエンジンに送信できません。もう一度試すか、サポートにお問い合わせください。" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "モデルデータをエンジンに送信できません。詳細度の低いモデルの使用またはインスタンス数の低減をお試しください。" + msgctxt "@info:title" msgid "Unable to slice" msgstr "スライスできません" @@ -4585,10 +4978,12 @@ msgctxt "@info:status" msgid "Unable to slice because the prime tower or prime position(s) are invalid." msgstr "プライムタワーまたはプライム位置が無効なためスライスできません。" +#, python-format msgctxt "@info:status" msgid "Unable to slice because there are objects associated with disabled Extruder %s." -msgstr "無効な Extruder %s に関連付けられている造形物があるため、スライスできません。" +msgstr "無効なエクストルーダー %s に関連付けられている造形物があるため、スライスできません。" +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice due to some per-model settings. The following settings have errors on one or more models: {error_labels}" msgstr "モデル別の設定があるためスライスできません。1つまたは複数のモデルで以下の設定にエラーが発生しました:{error_labels}" @@ -4597,6 +4992,7 @@ msgctxt "@info:status" msgid "Unable to slice with the current material as it is incompatible with the selected machine or configuration." msgstr "選ばれたプリンターまたは選ばれたプリント構成が異なるため進行中の材料にてスライスを完了できません。" +#, python-brace-format msgctxt "@info:status" msgid "Unable to slice with the current settings. The following settings have errors: {0}" msgstr "現在の設定でスライスが完了できません。以下の設定にエラーがあります: {0}" @@ -4605,6 +5001,7 @@ msgctxt "@info" msgid "Unable to start a new sign in process. Check if another sign in attempt is still active." msgstr "新しいサインインプロセスを開始できません。別のサインインの試行がアクティブなままになっていないか確認します。" +#, python-brace-format msgctxt "@info:error" msgid "Unable to write to file: {0}" msgstr "ファイルに書き込めません:{0}" @@ -4619,7 +5016,7 @@ msgstr "利用できないプリンター" msgctxt "@action:inmenu menubar:edit" msgid "Ungroup Models" -msgstr "モデルを非グループ化" +msgstr "モデルグループ解除" msgctxt "@button" msgid "Uninstall" @@ -4635,11 +5032,7 @@ msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "Universal Cura Projectファイルは,位置データと選択した設定を保持したまま,さまざまな3Dプリンタで印刷することができます。エクスポートすると,ビルドプレート上に存在するすべてのモデルが,現在の位置,方向,スケールとともに含まれます。適切な印刷を保証するために,エクストルーダーごとまたはモデルごとにどの設定を含めるかを選択することもできます。" - -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "ユニバーサルビルドシステム設定" +msgstr "Universal Cura Projectファイルは座標情報と選択した設定を保持し、さまざまな3Dプリンタで印刷できます。エクスポートすると、ビルドプレート上に存在するすべてのモデルに、現在の位置、方向、拡大率が含まれます。適切な印刷を保証するために、エクストルーダーごとまたはモデルごとにどの設定を含めるかを選択できます。" msgctxt "@label" msgid "Unknown" @@ -4657,6 +5050,7 @@ msgctxt "@label:property" msgid "Unknown Package" msgstr "不明なパッケージ" +#, python-brace-format msgctxt "@error:send" msgid "Unknown error code when uploading print job: {0}" msgstr "プリントジョブのアップロード時の不明なエラーコード:{0}" @@ -4667,7 +5061,7 @@ msgstr "不明なエラー。" msgctxt "@label" msgid "Unlink Material" -msgstr "フィラメントをリンクを外す" +msgstr "材料をリンクから外す" msgctxt "@label:status" msgid "Unreachable" @@ -4699,11 +5093,11 @@ msgstr "既存を更新する" msgctxt "@action:tooltip" msgid "Update profile with current settings/overrides" -msgstr "プロファイルを現在のセッティング" +msgstr "プロファイルを現在の設定で更新/上書きする" msgctxt "@action:button" msgid "Update profile." -msgstr "プロフィールを更新します。" +msgstr "プロファイルを更新します。" msgctxt "@info:title" msgid "Update your printer" @@ -4721,6 +5115,122 @@ msgctxt "@button" msgid "Updating..." msgstr "更新中..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1 からCura 2.2に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2 からCura 2.4に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5 からCura 2.6に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6 からCura 2.7に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7からCura 3.0に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0からCura 3.1に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2からCura 3.3に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3からCura 3.4に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4 から Cura 3.5 に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5からCura 4.0に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0 から Cura 4.1 に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1からCura 4.2に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11からCura 4.12に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13からCura 5.0に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2からCura 4.3に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3からCura 4.4に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4からCura 4.5に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5からCura 4.6に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0からCura 4.6.2に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2からCura 4.7に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7からCura 4.8に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8からCura 4.9に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9からCura 4.10に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2からCura 5.3に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3からCura 5.4に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4からCura 5.5に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Cura 5.6からCura 5.7に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Cura 5.8から Cura 5.9に構成をアップグレードします。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Cura 5.9からCura 5.10に構成をアップグレードします。" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "カスタムファームウェアをアップロードする" @@ -4735,7 +5245,7 @@ msgstr "バックアップをアップロードしています..." msgctxt "@option:check" msgid "Use a single instance of Cura" -msgstr "Curaの単一インスタンスを使用" +msgstr "単一のCuraインスタンスを使用" msgctxt "@label" msgid "Use glue for better adhesion with this material combination." @@ -4745,25 +5255,133 @@ msgctxt "@label" msgid "User Agreement" msgstr "ユーザー用使用許諾契約" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "画像ローダーなどを含むユーティリティ機能" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "ボロノイ図生成を含むユーティリティライブラリ" - msgctxt "@title:column" msgid "Value" msgstr "値" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "バージョン2.1 から2.2へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "バージョン2.2 から2.4へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "バージョン2.5から2.6へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "バージョン2.6から2.7へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "バージョン2.7から3.0へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "バージョン3.0から3.1へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "バージョン3.2から3.3へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "バージョン3.3から3.4へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "バージョン3.4 から 3.5へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "バージョン3.5 から 4.0へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "バージョン4.0 から 4.1 へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "バージョン4.0 から 4.1 へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "バージョン4.11から4.12へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "バージョン4.13から5.0へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "バージョン4.2から4.3へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "バージョン4.3から4.4へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "バージョン4.4から4.5へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "バージョン4.5から4.6へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "バージョン4.6.0から4.6.2へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "バージョン4.6.2から4.7へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "バージョン4.7から4.8へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "バージョン4.8から4.9へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "バージョン4.9から4.10へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "バージョン5.2から5.3へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "バージョン5.3から5.4へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "バージョン5.4から5.5へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "バージョン5.6から5.7へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "バージョン5.8から5.9へのアップグレード" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "バージョン5.9から5.10へのアップグレード" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factoryでプリンターを表示する" msgctxt "@label" msgid "View type" -msgstr "タイプ表示" +msgstr "表示タイプ" msgctxt "@label link to technical assistance" msgid "View user manuals online" @@ -4771,7 +5389,7 @@ msgstr "ユーザーマニュアルをオンラインで見る" msgctxt "@label" msgid "Viewport behavior" -msgstr "ビューポイント機能" +msgstr "表示動作" msgctxt "@action:inmenu" msgid "Visible Settings" @@ -4809,6 +5427,7 @@ msgctxt "@info:title" msgid "Warning" msgstr "警告" +#, python-brace-format msgctxt "@info:status" msgid "Warning: The profile is not visible because its quality type '{0}' is not available for the current configuration. Switch to a material/nozzle combination that can use this quality type." msgstr "警告:現在の構成ではクオリティータイプ「{0}」を使用できないため、プロファイルは表示されません。このクオリティータイプを使用できる材料/ノズルの組み合わせに切り替えてください。" @@ -4819,11 +5438,11 @@ msgstr "選択したファイルの中に複数のG-codeが存在します。1 msgctxt "@text:window" msgid "We have found one or more project file(s) within the files you have selected. You can open only one project file at a time. We suggest to only import models from those files. Would you like to proceed?" -msgstr "選択したファイルの中に複数のプロジェクトが存在します。1ファイルのみ一度に開けます。ファイルからモデルを先に取り込むことをお勧めします。続けますか?" +msgstr "選択したファイルの中に複数のプロジェクトが存在します。一度に1つのプロジェクトファイルのみを開けます。ファイルからモデルを先に取り込むことをお勧めします。続行してもよろしいですか?" msgctxt "@info" msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "クラウドプリンターのウェブカムフィードをUltiMaker Curaから見ることができません。「プリンター管理」をクリックして、Ultimaker Digital Factoryにアクセスし、このウェブカムを見ます。" +msgstr "クラウドプリンターのウェブカメラフィードをUltiMaker Curaで表示できません。「プリンター管理」をクリックして、Ultimaker Digital Factoryにアクセスし、このウェブカメラを表示します。" msgctxt "@button" msgid "Website" @@ -4835,23 +5454,23 @@ msgstr "どのプリンターをセットアップしますか?" msgctxt "@info:tooltip" msgid "What type of camera navigation should be used?" -msgstr "どのタイプのカメラナビゲーションを使用する必要がありますか?" +msgstr "使用するカメラナビゲーションの種類" msgctxt "@info:tooltip" msgid "What type of camera rendering should be used?" -msgstr "どのような種類のカメラレンダリングを使用する必要がありますか?" +msgstr "使用するカメラレンダリングの種類" msgctxt "@action:inmenu menubar:help" msgid "What's New" -msgstr "新情報" +msgstr "新着情報" msgctxt "@label" msgid "What's New" -msgstr "新情報" +msgstr "新着情報" msgctxt "@title:window" msgid "What's New" -msgstr "新情報" +msgstr "新着情報" msgctxt "@info:tooltip" msgid "When checking for updates, check for both stable and for beta releases." @@ -4863,7 +5482,7 @@ msgstr "アップデートを確認する際に、安定版リリースのみを msgctxt "@info:tooltip" msgid "When you have made changes to a profile and switched to a different one, a dialog will be shown asking whether you want to keep your modifications or not, or you can choose a default behaviour and never show that dialog again." -msgstr "プロファイル内を変更し異なるプロファイルにしました、どこの変更点を保持、破棄したいのダイアログが表示されます、また何度もダイアログが表示されないようにデフォルト機能を選ぶことができます。" +msgstr "別のプロファイルに切り替える際、変更を保持するかどうかを選択するダイアログを表示するか、もしくはデフォルトの動作を選択してダイアログを表示しないかを選択します。" msgctxt "@button" msgid "Why do I need to sync material profiles?" @@ -4871,7 +5490,15 @@ msgstr "材料プロファイルを同期する必要があるのはなぜです msgctxt "@action:label" msgid "Width (mm)" -msgstr "幅(mm)" +msgstr "幅 (mm)" + +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "圧縮ファイルにG-codeを書き込みます。" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "ファイルにG-codeを書き込みます。" msgctxt "@label" msgid "X (Width)" @@ -4879,15 +5506,19 @@ msgstr "X(幅)" msgctxt "@label" msgid "X max" -msgstr "最大X" +msgstr "X座標最大値" msgctxt "@label" msgid "X min" -msgstr "X分" +msgstr "X座標最小値" + +msgctxt "name" +msgid "X-Ray View" +msgstr "透視ビュー" msgctxt "@item:inlistbox" msgid "X-Ray view" -msgstr "透視ビューイング" +msgstr "透視ビュー" msgctxt "@label" msgid "X/Y" @@ -4897,36 +5528,51 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3Dファイル" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3Dリーダー" + msgctxt "@label" msgid "Y (Depth)" -msgstr "Y (奥行き)" +msgstr "Y(奥行き)" msgctxt "@label" -msgid "Y max" -msgstr "最大Y" +msgid "Y max ( '+' towards front)" +msgstr "Y座標最大値('+' で前方へ)" msgctxt "@label" -msgid "Y min" -msgstr "Y分" +msgid "Y min ( '-' towards back)" +msgstr "Y座標最小値('-' で後方へ)" msgctxt "@info" msgid "Yes" msgstr "はい" msgctxt "@label" -msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr "Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。" +msgid "" +"You are about to remove all printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr "" +"Curaからすべてのプリンターを削除しようとしています。この操作は元に戻せません。\n" "続行してもよろしいですか?" +#, python-brace-format msgctxt "@label" -msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" -msgstr[0] "Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n続行してもよろしいですか?" +msgid "" +"You are about to remove {0} printer from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgid_plural "" +"You are about to remove {0} printers from Cura. This action cannot be undone.\n" +"Are you sure you want to continue?" +msgstr[0] "" +"Curaから{0}台のプリンターを削除しようとしています。この操作は元に戻せません。\n" +"続行してもよろしいですか?" msgctxt "@info:status" msgid "You are attempting to connect to a printer that is not running UltiMaker Connect. Please update the printer to the latest firmware." msgstr "Ultimaker Connectを実行していないプリンターに接続しようとしています。プリンターを最新のファームウェアに更新してください。" +#, python-brace-format msgctxt "@info:status" msgid "You are attempting to connect to {0} but it is not the host of a group. You can visit the web page to configure it as a group host." msgstr "{0}に接続を試みていますが、これはグループのホストではありません。グループホストとして設定するには、ウェブページを参照してください。" @@ -4937,9 +5583,7 @@ msgstr "現在バックアップは存在しません。[今すぐバックア msgctxt "@text:window, %1 is a profile name" msgid "You have customized some profile settings. Would you like to Keep these changed settings after switching profiles? Alternatively, you can discard the changes to load the defaults from '%1'." -msgstr "一部のプロファイル設定がカスタマイズされています。" -"これらの変更された設定をプロファイルの切り替え後も維持しますか?" -"変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" +msgstr "一部のプロファイル設定がカスタマイズされています。これらの変更された設定をプロファイルの切り替え後も維持しますか?変更を破棄して'%1'からデフォルトの設定を読み込むこともできます。" msgctxt "@label" msgid "You need to accept the license to install the package" @@ -4947,11 +5591,11 @@ msgstr "パッケージをインストールするにはライセンスに同意 msgctxt "@info:generic" msgid "You need to quit and restart {} before changes have effect." -msgstr "変更を有効にするために{}を終了して再始動する必要があります。" +msgstr "変更を有効にするために{}を終了して再起動する必要があります。" msgctxt "@dialog:info" msgid "You will need to restart Cura before your backup is restored. Do you want to close Cura now?" -msgstr "バックアップをリストアする前に Cura を再起動する必要があります。今すぐ Cura を閉じますか?" +msgstr "バックアップをリストアする前に Curaを再起動する必要があります。今すぐCuraを閉じますか?" msgctxt "@info:status" msgid "You will receive a confirmation via email when the print job is approved" @@ -4969,10 +5613,14 @@ msgctxt "@info" msgid "Your new printer will automatically appear in Cura" msgstr "新しいプリンターがUltiMaker Curaに自動的に表示されます" +#, python-brace-format msgctxt "@info:status" -msgid "Your printer {printer_name} could be connected via cloud.\n Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" -msgstr "Your printer {printer_name} could be connected via cloud." +msgid "" +"Your printer {printer_name} could be connected via cloud.\n" " Manage your print queue and monitor your prints from anywhere connecting your printer to Digital Factory" +msgstr "" +"プリンター{printer_name}はクラウドを通じて接続可能です。\n" +"プリンターをDigital Factoryに接続して、どこからでも印刷のキュー管理や監視を行えます。" msgctxt "@label" msgid "Z" @@ -4980,15 +5628,11 @@ msgstr "Z" msgctxt "@label" msgid "Z (Height)" -msgstr "Z (高さ)" - -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "ZeroConfディスカバリーライブラリー" +msgstr "Z(高さ)" msgctxt "@action:button" msgid "Zoom toward mouse direction" -msgstr "マウスの方向にズームする" +msgstr "マウスの方向にズーム" msgctxt "@info:tooltip" msgid "Zooming towards the mouse is not supported in the orthographic perspective." @@ -5034,6 +5678,7 @@ msgctxt "@label" msgid "version: %1" msgstr "バージョン: %1" +#, python-brace-format msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "{printer_name} will be removed until the next account sync." msgstr "次回のアカウントの同期までに{printer_name}は削除されます。" @@ -5042,554 +5687,166 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}プラグインのダウンロードに失敗しました" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMakerネットワークプリンタへのネットワーク接続を管理します。" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "アプリケーションフレームワーク" -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ultimakerネットワーク接続" +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "C/C++バインディングライブラリー" -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "g-codeファイルからプロファイルを読み込むサポートを供給する。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Compatibility between Python 2 and 3" +#~ msgstr "Python2および3との互換性" -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-codeプロファイルリーダー" +#~ msgctxt "description" +#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +#~ msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "ノーマルなソリットメッシュビューを供給する。" +#~ msgctxt "name" +#~ msgid "CuraEngineGradualFlow" +#~ msgstr "CuraEngineGradualFlow" -msgctxt "name" -msgid "Solid View" -msgstr "ソリッドビュー" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "データ交換フォーマット" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "フローを段階的に滑らかにして高フローのジャンプを制限するためのCuraEngineプラグイン" +#~ msgctxt "@label Description for development tool" +#~ msgid "Dependency and package manager" +#~ msgstr "パッケージ管理システム" -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "フォント" -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MFファイルを読むこむためのサポートを供給する。" +#~ msgctxt "@label Description for application component" +#~ msgid "G-code generator" +#~ msgstr "G-codeジェネレーター" -msgctxt "name" -msgid "3MF Reader" -msgstr "3MFリーダー" +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "GUIフレームワーク" -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-codeを承認し、プリンターに送信する。またプラグインはファームウェアをアップデートできます。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "GUIフレームワークバインディング" -msgctxt "name" -msgid "USB printing" -msgstr "USBプリンティング" +#~ msgctxt "@label Description for development tool" +#~ msgid "Generating Windows installers" +#~ msgstr "Windowsインストーラーの生成" -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "ファームウェアアップデートをチェックする。" +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "グラフィックユーザーインターフェイス" -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "ファームウェアアップデートチェッカー" +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "インタープロセスコミュニケーションライブラリー" -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "アプリケーションの拡張機能を管理し、UltiMakerウェブサイトから拡張機能を参照できるようにします。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "JSON parser" +#~ msgstr "JSON解析" -msgctxt "name" -msgid "Marketplace" -msgstr "マーケットプレース" +#~ msgctxt "@label Description for development tool" +#~ msgid "Linux cross-distribution application deployment" +#~ msgstr "Linuxディストリビューション間へのアプリケーション配布" -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "構成をバックアップしてリストアします。" +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "ノズルサイズ" -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura バックアップ" +#~ msgctxt "@label Description for development tool" +#~ msgid "Packaging Python-applications" +#~ msgstr "Pythonアプリケーションのパッケージ化" -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "プリンターの設定を変更(印刷ボリューム、ノズルサイズ、その他)" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "ポリゴンクリッピングライブラリー" -msgctxt "name" -msgid "Machine Settings Action" -msgstr "プリンターの設定アクション" +#~ msgctxt "@label Description for application component" +#~ msgid "Polygon packing library, developed by Prusa Research" +#~ msgstr "Prusa Research開発のポリゴンパッキングライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5 からCura 2.6のコンフィグレーションアップグレート。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "プログラミング言語" -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5から2.6にバージョンアップグレート" +#~ msgctxt "@Label Description for application dependency" +#~ msgid "Python Error tracking library" +#~ msgstr "Pythonエラー追跡ライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7からCura 4.8に設定をアップグレードします。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Python bindings for Clipper" +#~ msgstr "ClipperのPythonバインディング" -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "バージョン4.7から4.8へのアップグレード" +#~ msgctxt "@label Description for application component" +#~ msgid "Python bindings for libnest2d" +#~ msgstr "libnest2dのPythonバインディング" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4からCura 4.5に設定をアップグレードします。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Root Certificates for validating SSL trustworthiness" +#~ msgstr "SSLの信頼性を検証するためのルート証明書" -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4から4.5にバージョンアップグレート" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "シリアル通信ライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0からCura 3.1のコンフィグレーションアップグレート。" +#~ msgctxt "@action:inmenu" +#~ msgid "Show Online Troubleshooting" +#~ msgstr "オンライントラブルシューティングを表示" -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0から3.1にバージョンアップグレート" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "高速演算用サポートライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11からCura 4.12に設定をアップグレードします。" +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for file metadata and streaming" +#~ msgstr "ファイルメタデータとストリーミングのサポートライブラリー" -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "バージョン4.11から4.12へのアップグレード" +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "3MFファイル操作用サポートライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "コンフィギュレーションを Cura 4.1 から Cura 4.2 にアップグレートする。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "STLファイル操作用サポートライブラリー" -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.0 から 4.1 にバージョンアップグレート" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling triangular meshes" +#~ msgstr "三角メッシュ処理用サポートライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6 からCura 2.7のコンフィグレーションアップグレート。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "科学技術計算サポートライブラリー" -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6から2.7にバージョンアップグレート" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for system keyring access" +#~ msgstr "システムキーリングアクセス用サポートライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "構成をCura 4.6.0からCura 4.6.2に更新します。" +#~ msgctxt "@text:window" +#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +#~ msgstr "これはCura Universal Projectファイルです。Cura ProjectまたはCura Universal Projectとして開きますか?それともそこからモデルをインポートしますか?" -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0から4.6.2へのバージョン更新" +#~ msgctxt "@label Description for development tool" +#~ msgid "Universal build system configuration" +#~ msgstr "ユニバーサルビルドシステム構成" -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3からCura 3.4のコンフィグレーションアップグレート。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Utility functions, including an image loader" +#~ msgstr "画像ローダーなどのユーティリティ機能" -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3から3.4にバージョンアップグレート" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Utility library, including Voronoi generation" +#~ msgstr "ボロノイ図生成などのユーティリティライブラリー" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8からCura 4.9に設定をアップグレードします。" +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y座標最大値" -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "バージョン4.8から4.9へのアップグレード" +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y座標最小値" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5からCura 4.6に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "バージョン4.5から4.6へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2からCura 4.3の設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2から4.3にバージョンをアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2からCura 3.3のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2から3.3にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3からCura 4.4へのコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3から4.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "構成をCura 5.6からCura 5.7にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "5.6から5.7へのバージョンアップ" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1 からCura 2.2のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1 から2.2にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "構成をCura 5.3からCura 5.4にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3から5.4へのバージョンアップ" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9からCura 4.10に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "バージョン4.9から4.10へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7からCura 3.0のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7から3.0にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5 から Cura 4.0 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5 から 4.0 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2からCura 5.3のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2から5.3にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0 から Cura 4.1 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0 から 4.1 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13からCura 5.0に設定をアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "バージョン4.13から5.0へのアップグレード" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4 から Cura 3.5 のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4 から 3.5 にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2 からCura 2.4のコンフィグレーションアップグレート。" - -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2 から2.4にバージョンアップグレート" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "構成をCura 4.6.2からCura 4.7に更新します。" - -msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2から4.7へのバージョン更新" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "構成をCura 5.4からCura 5.5にアップグレードします。" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4から5.5へのバージョンアップ" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-codeファイルの読み込み、表示を許可する。" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-codeリーダー" - -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "不特定なスライス情報を提出。プレファレンスの中で無効になる可能性もある。" - -msgctxt "name" -msgid "Slice info" -msgstr "スライスインフォメーション" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "取り外し可能なドライブホットプラギング及びサポートの書き出しの供給。" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "取り外し可能なドライブアウトプットデバイスプラグイン" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "特定箇所のサポートを印刷するブロックを消去するメッシュを作成する" - -msgctxt "name" -msgid "Support Eraser" -msgstr "サポート消去機能" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "プリント問題の可能性のあるモデルをプリント構成を確認し、解決案を提示してください。" - -msgctxt "name" -msgid "Model Checker" -msgstr "モデルチェッカー" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Curaで準備ステージを提供します。" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "ステージの準備" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "スライスされたレイヤーデータのプレビューを提供します。" - -msgctxt "name" -msgid "Simulation View" -msgstr "シミュレーションビュー" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMFファイルの読込みをサポートしています。" - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMFリーダー" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "透視ビューイング。" - -msgctxt "name" -msgid "X-Ray View" -msgstr "透視ビュー" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "ファームウェアアップデートのためのマシン操作を提供します。" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "ファームウェアアップデーター" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "レガシーCura Versionsからプロファイルを取り込むためのサポートを供給する。" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "レガシーCuraプロファイルリーダー" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "後処理のためにユーザーが作成したスクリプト用拡張子" - -msgctxt "name" -msgid "Post Processing" -msgstr "後処理" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "クラッシュレポーターで使用できるように、特定のイベントをログに記録します" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "監視ロガー" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "MakerBotフォーマットパッケージを書き込むためのサポートを提供します。" - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbotプリントファイルライター" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Curaプロファイルを取り込むためのサポートを供給する。" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Curaプロファイルリーダー" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージの読み込みをサポートします。" - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP リーダー" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2Dの画像ファイルからプリント可能なジオメトリーを生成を可能にする。" - -msgctxt "name" -msgid "Image Reader" -msgstr "画像リーダー" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngineスライシングバックエンドにリンクを供給する。" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Curaエンジンバックエンド" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "圧縮ファイルにG-codeを書き込みます。" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "圧縮G-codeライター" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "UltiMakerのプリンターのアクションを供給する(ベッドレベリングウィザード、アップグレードの選択、他)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMakerプリンターのアクション" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "圧縮ファイルからG-codeを読み取ります。" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "圧縮G-codeリーダー" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Curaでプレビューステージを提供します。" - -msgctxt "name" -msgid "Preview Stage" -msgstr "プレビューステージ" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Libraryに接続し、CuraでDigital Libraryからファイルを開いたりDigital Libraryにファイルを保存したりできるようにします。" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Curaプロファイルを書き出すためのサポートを供給する。" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Curaプロファイルライター" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3Dファイルを読むこむためのサポートを供給する。" - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3Dリーダー" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "モデルファイルを読み込むためのサポートを供給します。" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimeshリーダー" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Curaでモニターステージを提供します。" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "モニターステージ" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "各モデル設定を与える。" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "各モデル設定ツール" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XMLベースフィラメントのプロファイルを読み書きするための機能を供給する。" - -msgctxt "name" -msgid "Material Profiles" -msgstr "フィラメントプロファイル" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "3MFおよびUCPファイルの書き込みのサポートを提供します。" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MFリーダー" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimakerフォーマットパッケージへの書き込みをサポートします。" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFPライター" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "ファイルにG-codeを書き込みます。" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-codeライター" +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "ZeroConf名前解決ライブラリー" diff --git a/resources/i18n/ja_JP/fdmextruder.def.json.po b/resources/i18n/ja_JP/fdmextruder.def.json.po index dc3115e094..47f08685ff 100644 --- a/resources/i18n/ja_JP/fdmextruder.def.json.po +++ b/resources/i18n/ja_JP/fdmextruder.def.json.po @@ -1,12 +1,11 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" +"PO-Revision-Date: 2025-02-25 12:01+0000\n" +"Last-Translator: h1data \n" +"Language-Team: Japanese \n" "Language: ja_JP\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -15,79 +14,55 @@ msgstr "" msgctxt "platform_adhesion description" msgid "Adhesion" -msgstr "密着性" +msgstr "接着" msgctxt "material_diameter description" msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" +msgstr "使用するフィラメントの太さの調整。この値を使用するフィラメントの太さと一致させてください。" msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" +msgstr "ビルドプレートとの接着" msgctxt "material_diameter label" msgid "Diameter" msgstr "直径" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "エクストルーダーの最終位置をこのエクストルーダーから切り替えた時に終了G-Codeを実行します。" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "エクストルーダー" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "エクストルーダーの列。デュアルノズル印刷時に使用。" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "エクストルーダープリント冷却ファン" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "エクストルーダー切り替え時間" msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" -msgstr "エクストルーダーがG-Codeを終了する" - -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "このエクストルーダーから切り替えた時に G-Code の終了を実行します。" +msgstr "エクストルーダー終了G-Code" msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "エクストルーダー終了Gコードの時間" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "このエクストルーダーから切り替えるときに,終了Gコードを実行するのにかかる時間。" - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" -msgstr "エクストルーダーのエンドポジションの絶対値" - -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "ヘッドの既存の認識位置よりもエクストルーダーの最終位置を絶対位置とする。" +msgstr "エクストルーダー終了位置の絶対値" msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" -msgstr "エクストルーダーエンド位置X" - -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のX座標の最終位置。" +msgstr "エクストルーダー終了位置X座標" msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" -msgstr "エクストルーダーエンド位置Y" +msgstr "エクストルーダー終了位置Y座標" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "エクストルーダー開始前G-Code" msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" @@ -101,53 +76,53 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "エクストルーダーのZ座標" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "エクストルーダーを切った際のY座標の最終位置。" +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "エクストルーダープリント冷却ファン" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" -msgstr "エクストルーダーがG-Codeを開始する" - -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "このエクストルーダーに切り替えた時に G-Code の開始を実行します。" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" +msgstr "エクストルーダー開始G-Code" msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "エクストルーダー開始Gコードの時間" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "このエクストルーダーに切り替えるときに,開始Gコードを実行するのにかかる時間。" - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" -msgstr "エクストルーダーのスタート位置の絶対値" +msgstr "エクストルーダーの開始位置の絶対値" + +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "エクストルーダー開始位置X座標" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "エクストルーダー開始位置Y座標" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター固有の設定" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "エクストルーダーの最終位置を、ヘッドの最後の地点からの相対位置ではなく絶対値にします。" msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." -msgstr "ヘッドの最後の既知位置からではなく、エクストルーダーのスタート位置を絶対位置にします。" +msgstr "エクストルーダーの開始位置を、ヘッドの最後の地点からの相対位置ではなく、絶対値にします。" msgctxt "material description" msgid "Material" -msgstr "マテリアル" +msgstr "材料" msgctxt "material label" msgid "Material" -msgstr "マテリアル" +msgstr "材料" msgctxt "machine_nozzle_size label" msgid "Nozzle Diameter" @@ -157,42 +132,90 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ノズルID" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "エクストルーダー スタート位置X" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのX座標のスタート位置。" - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "エクストルーダースタート位置Y" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "エクストルーダーのY座標のスタート位置。" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "ノズルの長さ" msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" -msgstr "Xノズルオフセット" - -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "ノズルのX軸のオフセット。" +msgstr "ノズルX座標オフセット" msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" -msgstr "Yノズルオフセット" +msgstr "ノズルY座標オフセット" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "このエクストルーダーに切り替える前に実行される開始前G-Code。" + +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "このエクストルーダーに切り替えた時に開始G-Codeを実行します。" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時における主要ノズル地点のX座標。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時における主要ノズル地点のY座標。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時における主要ノズル地点のZ座標。" + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "印刷に使用するエクストルーダーの列。デュアルノズル印刷時に使用。" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\" や \"BB 0.8\" など、エクストルーダーのノズルID。" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "このエクストルーダーに関連付けられているプリント冷却ファンの数です。デフォルト値は0(ゼロ)です。各エクストルーダーに対してプリント冷却ファンが異なる場合にのみ変更します。" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "このエクストルーダーから切り替えるときに、終了Gコードを実行するのにかかる時間。" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "このエクストルーダーに切り替えるときに、開始Gコードを実行するのにかかる時間。" + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーをオフにする際の終了位置X座標。" + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "ノズルのX座標のオフセット。" + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーをオンにする際の開始位置X座標。" + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "エクストルーダーをオフにする際の終了位置Y座標。" msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." -msgstr "ノズルのY軸のオフセット。" +msgstr "ノズルのY座標のオフセット。" + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "エクストルーダーをオンにする際の開始位置Y座標。" + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "複数のエクストルーダーを用いる構成において、この値はエクストルーダーを切り替える時間を秒で表します。切り替えが発生する回数に基づいて、この値は残り時間に加算されます。" diff --git a/resources/i18n/ja_JP/fdmprinter.def.json.po b/resources/i18n/ja_JP/fdmprinter.def.json.po index 0306054c01..8fba1311bb 100644 --- a/resources/i18n/ja_JP/fdmprinter.def.json.po +++ b/resources/i18n/ja_JP/fdmprinter.def.json.po @@ -1,1519 +1,752 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" +"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" +"PO-Revision-Date: 2025-03-02 04:31+0000\n" +"Last-Translator: h1data \n" +"Language-Team: Japanese \n" "Language: ja_JP\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" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "プリンター" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "プライムタワーの生成方法:
    • 通常:2番目に優先される材料でバケットを作成します
    • インターリーブド:プライムタワーをできるだけまばらに作成します。これにより時間とフィラメントが節約されますが、使用できる材料が互いに接着している場合にのみ可能です。
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "プリンター詳細設定" +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "ノズル切り替え中に冷却ファンを作動させるかどうか。これによりノズルの冷却スピードを上げてにじみを減らすのに役立ちます:
    • 変更なし:ファンを以前の状態に維持します
    • 最後のエクストルーダーのみ:最後に使用したエクストルーダーのファンをオンにしますが、もし他のエクストルーダーがあればファンをオフにします。これは、完全に別個のエクストルーダーがある場合に有用です。
    • すべてのファン:ノズル切り替え中にすべてのファンをオンにします。これは、冷却ファンが1つのみの場合、または複数のファンが互いに接近している場合に有用です。
    " -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "プリンターのタイプ" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3Dプリンターの機種名。" - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "プリンターのバリエーションの表示" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-Codeの開始" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "最初に実行するG-codeコマンドは、" -"で区切ります。" - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-codeの終了" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "最後に実行するG-codeコマンドは、" -"で区切ります。" - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "マテリアルGUID" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "マテリアルのGUID。これは自動的に設定されます。" - -msgctxt "material_type label" -msgid "Material Type" -msgstr "材料の種類" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "使用される材料の種類。" - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "材料のブランド" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "使用されている材料のブランドです。" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "使用するフィラメントの太さの調整 この値を使用するフィラメントの太さと一致させてください。" - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "ビルドプレート加熱待ち時間" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "ノズル加熱待ち時間" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "開始時にノズルの温度が達するまで待つかどうか。" - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "マテリアル温度を含む" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "ビルドプレート温度を含む" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "プリンターの幅" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "造形可能領域の幅(X方向)。" - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "プリンターの奥行" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "造形可能領域の幅(Y方向)。" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "プリンターの高さ" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "造形可能領域の幅(Z方向)。" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "ビルドプレートの形状" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "造形不可領域を考慮しないビルドプレートの形状。" - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "長方形" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "楕円形" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "ビルドプレートの材料" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "プリンターに取り付けられているビルドプレートの材料です。" - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "ガラス" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "アルミニウム" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "加熱式ビルドプレートあり" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "造形温度安定化処理有り" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "機器が造形温度を安定化処理できるかどうかです。" - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "常にアクティブなツールを書き込む" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "中心位置" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "プリンタのゼロポジションのX / Y座標が印刷可能領域の中心にあるかどうか。" - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "エクストルーダーの数" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "有効なエクストルーダーの数" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "ノズル外径" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "ノズルの外径。" - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "ノズル長さ" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "ノズル角度" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "水平面とノズル直上の円錐部分との間の角度。" - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "ノズル加熱長さ" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "ノズルからの熱がフィラメントに伝達される距離。" - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "ノズルの温度管理を有効にする" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Curaから温度を制御するかどうか。これをオフにして、Cura外からノズル温度を制御することで無効化。" - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "加熱速度" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "ノズルが加熱する速度(℃/ s)は、通常の印刷時温度とスタンバイ時温度にて平均化されています。" - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "ノズルが冷却される速度(℃/ s)は、通常の印刷温度とスタンバイ温度のウィンドウにわたって平均化されています。" - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "スタンバイ温度までの最短時間" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却することができます。" - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-codeフレーバー" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "生成するG-codeの種類です。" - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "ファームウェア引き戻し" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。" - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "エクストルーダーのヒーター共有" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "エクストルーダーの共有ノズル" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共有ノズルの初期引き戻し" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "拒否エリア" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "ノズル拒否エリア" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "プリントヘッドとファンポリゴン" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "ガントリーの高さ" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ノズルID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"や\"BB 0.8\"などのノズルID。" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "ノズル内径" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "エクストルーダーのオフセット" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "エクストルーダーのZ座標" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "印刷開始時にノズルがポジションを確認するZ座標。" - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "エクストルーダーの絶対位置" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "最大速度X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X方向のモーターの最大速度。" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "最大速度Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y方向のモーターの最大速度。" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "最大速度Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z方向のモーターの最大速度。" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "最大速度E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "フィラメントの最大速度。" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "最大加速度X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X方向のモーターの最大速度" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "最大加速度Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y方向のモーターの最大加速度。" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "最大加速度Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z方向のモーターの最大加速度。" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "フィラメント最大加速度" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "フィラメントのモーターの最大加速度。" - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "デフォルト加速度" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "プリントヘッド移動のデフォルトの加速度。" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "X-Yデフォルトジャーク" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面内での移動のデフォルトジャーク。" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Zデフォルトジャーク" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z方向のモーターのデフォルトジャーク。" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "フィラメントデフォルトジャーク" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "フィラメントのモーターのデフォルトジャーク。" - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "ミリメートルあたりのステップ (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "X 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "ミリメートルあたりのステップ (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "ミリメートルあたりのステップ (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "ミリメートルあたりのステップ (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "プラス方向の X エンドストップ" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X 軸のエンドストップがプラス方向(高い X 座標)またはマイナス方向(低い X 座標)のいずれかを示します。" - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "プラス方向の Y エンドストップ" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y 軸のエンドストップがプラス方向(高い Y 座標)またはマイナス方向(低い Y 座標)のいずれかを示します。" - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "プラス方向の Z エンドストップ" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z 軸のエンドストップがプラス方向(高い Z 座標)またはマイナス方向(低い Z 座標)のいずれかを示します。" - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小送り速度" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "プリントヘッドの最小移動速度。" - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "フィーダーホイール直径" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "材料をフィーダーに送るホイールの直径。" - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "ファン速度を0~1にスケール" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "ファン速度は0〜256ではなく、0〜1になるようスケールします。" - -msgctxt "resolution label" -msgid "Quality" -msgstr "品質" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "レイヤー高さ" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "各レイヤーの高さ(mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "初期レイヤー高さ" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "初期レイヤーの高さ(mm)。厚い初期層はビルドプレートへの接着を容易にする。" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "ライン幅" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "ウォールライン幅" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "ウォールラインの幅。" - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "外側ウォールライン幅" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "内側ウォールライン幅" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "上下面ライン幅" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "上辺/底辺線のライン幅。" - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "インフィルラインの幅" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "インフィル線の幅。" - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "スカート/ブリムラインの幅" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "単一のスカートまたはブリムラインの幅。" - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "サポートライン幅" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "単一のサポート構造のライン幅。" - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "サポート面のライン幅" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "サポートのルーフ、フロアのライン幅。" - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "サポートルーフのライン幅" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "サポートルーフのライン一幅。" - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "サポートフロアのライン幅" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "サポートのフロアのラインの一幅。" - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "プライムタワーのライン幅" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "単一のプライムタワーラインの幅。" - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "初期レイヤーのライン幅" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "最初のレイヤーに線幅の乗数です。この値を増やすと、ベッドの接着性が向上します。" - -msgctxt "shell label" -msgid "Walls" -msgstr "ウォール" - -msgctxt "shell description" -msgid "Shell" -msgstr "外郭" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "ウォールエクストルーダー" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁用エクストルーダー" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "外壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁用エクストルーダー" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁の厚さ" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "ウォールライン数" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。" - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "ウォール移行長さ" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "ウォール分配数" - -msgctxt "wall_distribution_count description" -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 "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、アウターウォールの幅が変化しないことを意味します。" - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "ウォール移行しきい値角度" - -msgctxt "wall_transition_angle description" -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 "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりすることがあります。" - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "ウォール移行フィルター距離" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "ウォール移行フィルターマージン" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生することがあります。" - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁移動距離" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "外壁の後に挿入された移動の距離はZシームをよりよく隠します。" - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁はめ込み" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "外壁の経路にはめ込む。外壁がノズルよりも小さく、内壁の後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく内壁と重なるようにします。" - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "壁印刷順序の最適化" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "撤回と移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "ウォール順序" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "ウォールをプリントする順序を決定します。アウターウォールを先にプリントすると、インナーウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、アウターウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。インナーウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "内側から外側へ" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "外側から内側へ" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "代替予備壁" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "すべてのレイヤーごとに予備の壁を印刷します。このようにして、インフィルは余分な壁の間に挟まれ、より強い印刷物が得られる。" - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小ウォールライン幅" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅を変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数ウォールライン幅" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、アウターウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数ウォールライン幅" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個のアウターウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "薄壁印刷" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "ノズルサイズよりも細い壁を作ります。" - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小フィーチャーサイズ" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄肉ウォールライン幅" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平展開" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "初期層水平展開" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。" - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "穴の水平展開" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。" - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "穴の水平展開の最大直径" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0より大きい場合、穴の水平展開が小さい穴に対して徐々に適用されます(小さい穴はさらに展開されます)。0に設定すると、すべての穴に穴の水平展開が適用されます。穴の水平展開の最大直径より大きい穴は展開されません。" - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Zシーム合わせ" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "ユーザー指定" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "ランダム" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "鋭い角" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Zシーム位置" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "後方左" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "戻る" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "後方右" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "前方右" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "前左" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "ZシームX" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各印刷を開始するX座" -"標の位置。" - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "ZシームY" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "シームコーナー設定" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "なし" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "シーム非表示" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "シーム表示" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "シーム表示/非表示" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "スマート・シーム" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "相対Zシーム" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "トップ/ボトム" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "トップ/ボトム" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "上部表面用エクストルーダー" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "上部表面レイヤー" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "最上面のライン幅" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "プリントの上部の 線の幅。" - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "上部表面パターン" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "上層のパターン。" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "直線" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "上面方向一貫性" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "最上面のラインの向き" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。" - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "上部/底面エクストルーダー" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "上部/底面の厚さ" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "上部厚さ" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "上部レイヤー" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底面厚さ" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底面レイヤー" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初期底面レイヤー" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "上層/底層パターン" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "上層/底層のパターン。" - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直線" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底層初期レイヤー" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "第1層のプリントの底部のパターン。" - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直線" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "上層/底層ポリゴンに接合" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "上面/底面の方向一貫性" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "上層/底層ラインの向き" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "小さい上下幅" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりに壁で埋められます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "表面の小さな上部/下部" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりに壁で埋められるようにします。" - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 軸ギャップにスキンなし" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "外側表面の数" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、トップ部分の造形が改善されます。" - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "アイロン有効" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "最上層のみアイロン" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "アイロンパターン" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "アイロンのパターン。" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "アイロン方向一貫性" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "アイロン線のスペース" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "アイロンライン同士の距離。" - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "アイロンフロー" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "アイロン時にノズルから出しておくフィラメントの量。多少出しておくと裂け目を綺麗にします。ただ出し過ぎると吐出過多になり、端が荒れます。" - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "アイロンインセット" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "モデルの周囲のブリムが他のモデルの望ましくない場所に接触する可能性があります。これにより、この距離内のすべてのブリムがブリムのないモデルから削除されます。" msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "モデルの端からの距離。端までアイロンをすると、端が荒れる場合があります。" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "アイロン速度" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "上部表面通過時の速度。" +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "底面の表面レイヤーがジグザグパターンの場合に使用する、ラインの角度を示す整数のリストです。リストの要素はレイヤーが進むごとに順番に使用され、最後に到達すると次は最初からとなります。リスト項目はカンマ区切りで、リストの全体は四角かっこで囲います。既定は空のリストで、この場合は従来の角度(45度と135度)を用います。" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "アイロン加速度" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "トップ表面層に縦かジグザグパターンを利用する時に使用する整数の行方向のリスト。リスト内から順番に使われていき、リストの最後に達するとまた最初の設定値に戻ります。リストアイテムはカンマで区切られ、全体はカッコで括られています。デフォルトでは何も入っておらず、設定角度は (45 度と 135 度)になっています。" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "アイロン時の加速度。" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "上/下のレイヤーが線またはジグザグパターンを使う際の整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは、従来のデフォルト角度(45度と135度)を使用する空のリストです。" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "アイロンジャーク" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "アイロン時の最大加速度。" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(境界面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "表面公差量" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(境界面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" + +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(境界面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" + +msgctxt "infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." +msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" + +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "ノズルが入ることができない領域を持つポリゴンのリスト。" + +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "プリントヘッドの領域を持つポリゴンのリストは入力できません。" + +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にできますが、枝の量が増加します。(材料の使用量やプリント時間も増加します) " + +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "エクストルーダーの絶対位置" + +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "適応レイヤー最大差分" + +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "適応レイヤーのトポグラフィーサイズ" + +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "適応レイヤー差分ステップサイズ" + +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "インフィルパターンにラインを追加して、上にあるスキンをサポートします。このオプションは、下のインフィルが上にプリントされるスキンレイヤーを正しくサポートしていないことにより複雑な形状のスキンに時々現れる、穴やプラスチックの塊を防ぎます。「ウォール」はスキンのアウトラインのみをサポートするのに対して、「ウォールとライン」はスキンを構成するラインの端もサポートします。" + +msgctxt "infill_wall_line_count description" +msgid "" +"Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" +"This feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." +msgstr "" +"インフィル領域の周りにウォールを追加します。追加されたウォールによってトップ/ボトム面の線に生じるたるみを少なくし、トップ/ボトム面の材料を追加した場合と同等の品質で印刷できることになります。\n" +"この機能はインフィルポリゴン接合と組み合わせて、正しく設定した場合、移動や引き戻しなしに全てのインフィル領域を1つの造形パスにまとめることができます。" + +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "接着" + +msgctxt "material_adhesion_tendency label" +msgid "Adhesion Tendency" +msgstr "接着傾向" msgctxt "skin_overlap description" msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量(スキンラインのライン幅と壁の最内部に対する割合)を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、割合が50%を超えると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "表面公差" +msgstr "スキンラインのライン幅とウォールの最内部に対する割合として、ウォールとスキンの中央ラインの終端が重なる量を調整します。わずかな重複によって、ウォールがスキンと堅く接合されます。スキンとウォールのライン幅が等しくかつ割合が50%を超えると、スキンがウォールを通過している可能性があります。これは、その時点でスキンエクストルーダーのノズル位置が、すでにウォールの中央を過ぎている可能性があるためです。" msgctxt "skin_overlap_mm description" msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "壁とスキンの中央ライン(のエンドポイント)が交差する量を調整します。わずかな交差によって、壁がスキンにしっかりつながります。スキンと壁のライン幅が同じで、壁の幅が半分以上の値になると、スキンが壁を通過している可能性があります。これは、その時点で、スキン押出機のノズルの位置が、すでに壁の真ん中を過ぎている可能性があるためです。" - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "表面除去幅" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "上面除去幅" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底面除去幅" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "取り除くスキンエリアの最大幅。この値より小さいすべてのスキンエリアは消えます。これは、モデルの傾斜表面の上部/下部スキンに費やした時間のや材料の量を制限することができます。" - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "表面展開距離" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "上面展開距離" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底面展開距離" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "スキンがインフィルまで到達する距離です。高い数値の場合、スキンはインフィルのパターンに隣接しやすく、近接する壁のレイヤーもスキンに密着しやすくなります。低値の場合、材料の使用量を節約します。" - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "表面展開最大角" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。" - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "表面展開最小角" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "これより狭いスキン領域は展開されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" - -msgctxt "infill label" -msgid "Infill" -msgstr "インフィル" - -msgctxt "infill description" -msgid "Infill" -msgstr "インフィル" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "インフィルエクストルーダー" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "インフィル造形時に使われるExtruder。デュアルノズルの場合に利用します。" - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "インフィル密度" +msgstr "ウォールとスキンの中央ラインの終端が重なる量を調整します。わずかな交差によって、ウォールがスキンと堅く接合されます。スキンとウォールのライン幅が等しくかつ割合が50%を超えると、スキンがウォールを通過している可能性があります。これは、その時点でスキンエクストルーダーのノズル位置が、すでにウォールの中央を過ぎている可能性があるためです。" msgctxt "infill_sparse_density description" msgid "Adjusts the density of infill of the print." msgstr "プリントのインフィルの密度を調整します。" -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "インフィルライン距離" +msgctxt "support_interface_density description" +msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材のルーフとフロアの密度を調整します。大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。" -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "インフィルパターン" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "使用するフィラメントの太さの調整。この値を使用するフィラメントの太さと一致させてください。" -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定できます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "prime_tower_wipe_enabled description" +msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." +msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "プリンターが別のエクストルーダーに切り替えた際、ビルドプレートが下降してノズルと印刷物との間に隙間が形成されます。これによりノズルに造形物からはみ出した材料が残らないようにします。" -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "トライヘキサゴン" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "すべて" + +msgctxt "print_sequence option all_at_once" +msgid "All at Once" +msgstr "一度にすべて" + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "すべてのファン" + +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "プリントの解像度に影響を与えるすべての設定。これらの設定は、品質(および印刷時間)に大きな影響を与えます。" + +msgctxt "user_defined_print_order_enabled description" +msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." +msgstr "オブジェクトリストを並べ替えて、印刷順序を手動で設定できます。リストの最初のオブジェクトが最初に印刷されます。" + +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "代替の追加ウォール" + +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "代替メッシュの削除" + +msgctxt "material_alternate_walls label" +msgid "Alternate Wall Directions" +msgstr "代替ウォールの向き" + +msgctxt "material_alternate_walls description" +msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." +msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" + +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "アルミニウム" + +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "常にアクティブなツールを書き込む" + +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" + +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "各レイヤーのすべてのポリゴンに適用されるオフセットの量。正の値は大きすぎる穴を補うことができます。負の値は小さすぎる穴を補うことができます。" + +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "最初のレイヤーのポリゴンに適用されるオフセットの値。マイナスの値はelephant's footと呼ばれる第一層が潰れるを現象を軽減させます。" + +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" + +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "サポートのフロアに適用されるオフセット値。" + +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "サポートのルーフに適用されるオフセット値。" + +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "サポート境界面ポリゴンに適用されるオフセット値。" + +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "拭き取りシーケンス中に出ないように引き戻すフィラメントの量。" + +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" + +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "メッシュオーバーハング例外" + +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "滲出防止引戻し位置" + +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "滲出防止引戻し速度" + +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "エクストルーダーのオフセットを座標システムに適用します。すべてのエクストルーダーが影響を受けます。" + +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の接着が向上します。" + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "移動中に印刷したパーツを回避" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "移動中にサポートを回避" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "後方" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "左後方" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "右後方" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "両方" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "両方重ねる" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底面レイヤー" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底層初期レイヤー" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底面拡張距離" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底面除去幅" + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "底面内側ウォールの加速度" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "底面内側ウォールのジャーク" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "底面内側ウォールの速度" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "底面内側ウォールのフロー" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "底面外側ウォールの加速度" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "底面外側ウォールのフロー" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "底面外側ウォールのジャーク" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "底面外側ウォールの速度" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "底面スキンの加速度" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "底面スキン用エクストルーダー" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "底面スキンのフロー" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "底面スキンのジャーク" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "底面スキンのレイヤー数" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "底面ライン方向" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "底面スキンのライン幅" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "底面スキンのパターン" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "底面スキンの速度" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底面厚さ" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "枝密度" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "枝直径" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "枝直径角度" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "フィラメントの引き出し準備引戻し位置" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "フィラメント引き出し準備引戻し速度" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "フィラメント引き出し準備温度" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "フィラメント引き出しの引戻し位置" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "フィラメント引き出しの引戻し速度" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "フィラメント引き出し温度" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "接続部分のサポート分割" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "ブリッジファン速度" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "ブリッジを構成する多重レイヤー" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "ブリッジセカンドスキンの密度" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "ブリッジセカンドスキンのファン速度" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "ブリッジセカンドスキンのフロー" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "ブリッジセカンドスキンの速度" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "ブリッジスキンの密度" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "ブリッジスキンフロー" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "ブリッジスキン速度" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "ブリッジスキンサポートのしきい値" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "ブリッジスパースインフィル最大密度" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "ブリッジサードスキンの密度" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "ブリッジサードスキンのファン速度" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "ブリッジサードスキンのフロー" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "ブリッジサードスキンの速度" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "ブリッジウォールコースティング" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "ブリッジウォールフロー" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "ブリッジウォール速度" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "ブリム" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "ブリムを避けるためのマージン" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "ブリム距離" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "ブリムライン数" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "ブリムの位置" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "ブリム交換サポート" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "ブリム幅" + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "高さでのビルドファン速度" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "レイヤーでのビルドファン速度" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "ビルドプレートとの接着" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "ビルドプレート接着エクストルーダー" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "ビルドプレート接着タイプ" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "ビルドプレートの材料" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "ビルドプレートの形状" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "ビルドプレート温度" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "初期レイヤーのビルドプレート温度" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "造形温度" + +msgctxt "bv_temp_anomaly_limit label" +msgid "Build Volume temperature Limit" +msgstr "ビルドボリューム温度制限" + +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "ビルドボリューム温度警告" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "ビルドボリュームファンの数" + +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" + +msgctxt "center_object label" +msgid "Center Object" +msgstr "オブジェクト中心配置" + +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "コースティング速度" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "コースティングのボリューム" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "コースティングは、それぞれの造形パスの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用されます。" + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "コーミングモード" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、材料の引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみコーミングすることにより、トップとボトムのスキン領域上でのコーミングを回避できます。" + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "コマンドライン設定" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心円" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "円錐サポートの角度" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "円錐サポートの最大幅" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "インフィルライン接合" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "インフィルポリゴン接合" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "サポートライン接続" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "サポートジグザグ接続" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "上層/底層ポリゴンに接合" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより移動時間が大幅に短縮されます。" + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "内側のウォール形状に沿ったラインを使用してインフィルパターンと内側のウォールが合うところで接合します。この設定を有効にすると、インフィルがウォールにより接着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "互いに次に実行する上層/底層スキンパスに接合します。同心円のパターンの場合、この設定を有効にすることにより、移動時間が短縮されますが、インフィルまでの途中で接合があるため、この機能で上層面の品質が損なわれることがあります。" + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "モデル輪郭の角がシームの位置に影響を及ぼすかどうかを制御します。[なし] は、角がシームの位置に影響を及ぼさないことを意味します。シームを隠すにすると、シームが内側の角に生じる可能性が高くなります。シームを外側にすると、シームが外側の角に生じる可能性が高くなります。シームを隠す/外側に出すは、シームが内側または外側の角に生じる可能性が高くなります。スマート・シームを使用すると、内外両側の角を使用できますが、適切な場合には内側の角が選択される頻度が高まります。" + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "エクストルーダー切替中に冷却" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "クロス" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "クロス" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "3Dクロス" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "3Dクロスポケットのサイズ" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "サポート用クロス画像のインフィル密度" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "クロス画像のインフィル密度" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "結晶性材料" msgctxt "infill_pattern option cubic" msgid "Cubic" @@ -1523,3104 +756,345 @@ msgctxt "infill_pattern option cubicsubdiv" msgid "Cubic Subdivision" msgstr "キュービックサブディビジョン" -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "オクテット" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "クォーターキュービック" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "クロス" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "3Dクロス" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "ライトニング" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "インフィルライン接合" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "内壁の形状に沿ったラインを使用してインフィルパターンと内壁が合うところで接合します。この設定を有効にすると、インフィルが壁により密着するようになり、垂直面の品質に対するインフィルの影響が軽減します。この設定を無効にすると、材料の使用量が減ります。" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "インフィルポリゴン接合" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "互いに次に実行するインフィルパスに接合します。いくつかの閉じられたポリゴンを含むインフィルパターンの場合、この設定を有効にすることにより、移動時間が大幅に短縮されます。" - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "インフィルラインの向き" - -msgctxt "infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストです。これは、従来のデフォルト角度(線とジグザグのパターンでは45と135度、他のすべてのパターンでは45度)を使用することを意味します。" - -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "インフィルXオフセット" - -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" - -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "インフィルYオフセット" - -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" - -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "インフィル開始のランダム化" - -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" - -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "インフィルライン乗算" - -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "各インフィルラインをこの多重ラインに変換します。余分なラインが互いに交差せず、互いを避け合います。これによりインフィルが硬くなり、印刷時間と材料使用量が増えます。" - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "外側インフィル壁の数" - -msgctxt "infill_wall_line_count description" -msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." -msgstr "インフィルエリア周辺に外壁を追加します。このような壁は、上層/底層ラインにたるみを作ります。つまり、一部の外壁材料の費用で同じ品質を実現するためには、必要な上層/底層スキンが少ないことを意味します。" -"この機能は、インフィルポリゴン接合と組み合わせて、構成が正しい場合、移動または引き戻しが必要なく、すべてのインフィルを1つの押出経路に接続することができます。" - msgctxt "sub_div_rad_add label" msgid "Cubic Subdivision Shell" msgstr "キュービックサブディビジョンシェル" -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "この立方体を細分するかどうかを決定するために、各立方体の中心から半径に加えてモデルの境界を調べます。値を大きくすると、モデルの境界付近に小さな立方体のより厚いシェルができます。" +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "メッシュ切断" -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "インフィル公差量" +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "材料フロー (毎秒3mm) と温度 (℃) をリンクします。" -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁のオーバーラップ量 (インフィルライン幅に対する%)。少しのオーバーラップによって壁がインフィルにしっかりつながります。" - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "インフィル公差" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "インフィルと壁が交差する量、わずかな交差によって壁がインフィルにしっかりつながります。" - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "インフィル移動距離" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "インフィルラインごとに挿入された移動距離は壁のインフィルへの接着をより良くします。このオプションは、インフィルオーバーラップに似ていますが、押出なく、インフィルラインの片側にのみあります。" - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "インフィル層の厚さ" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "インフィルマテリアルの層ごとの厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "インフィル半減回数" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "インフィル半減高さ" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "インフィル優先" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "壁より前にインフィルをプリントします はじめに壁をプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します" -"はじめにインフィルをプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小インフィル領域" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "インフィルサポート" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "インフィルオーバーハング角度" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。" - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "スキンエッジサポートの厚さ" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "スキンエッジサポートレイヤー" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "スキンエッジをサポートするインフィルレイヤーの数。" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "ライトニングインフィルサポート角度" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "ライトニングインフィルオーバーハング角度" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "ライトニングインフィル刈り込み角度" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "ライトニングインフィル矯正角度" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" - -msgctxt "material label" -msgid "Material" -msgstr "マテリアル" - -msgctxt "material description" -msgid "Material" -msgstr "マテリアル" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "デフォルト印刷温度" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "印刷中のデフォルトの温度。これはマテリアルの基本温度となります。他のすべての造形温度はこの値に基づいてオフセットする必要があります" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "造形温度" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。" - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "印刷温度" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "印刷中の温度。" - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "初期レイヤー印刷温度" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "最初の層を印刷するために使用される温度です。" - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "初期印刷温度" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加熱中、印刷を開始することができる最低の温度。" - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最終印刷温度" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "印刷終了直前に冷却を開始する温度。" - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "押出クールダウン速度修飾子" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "デフォルト加速度" msgctxt "default_material_bed_temperature label" msgid "Default Build Plate Temperature" msgstr "ビルドプレートのデフォルト温度" -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "フィラメントデフォルトジャーク" -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "ビルドプレート温度" +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "デフォルト印刷温度" -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。" +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "X-Yデフォルトジャーク" -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "初期レイヤーのビルドプレート温度" +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Zデフォルトジャーク" -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面内での移動のデフォルトジャーク。" -msgctxt "material_adhesion_tendency label" -msgid "Adhesion Tendency" -msgstr "接着傾向" +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z方向のモーターのデフォルトジャーク。" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "表面の接着傾向。" +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "フィラメントのモーターのデフォルトジャーク。" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "表面エネルギー" +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面エネルギー。" +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "スカーフシームに沿って押し出す際のフロー変更における各ステップの長さを決定します。距離が短いほどより精密になりますが、Gコードはより複雑になります。" -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "スケールファクタ収縮補正" +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Zシームをより目立たなくする、スカーフシームの長さを決定します。効果を得るには、0より大きい値にする必要があります。" -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "ウォールをプリントする順序を決定します。外側のウォールを先にプリントすると、内側のウォールの不具合が外側に影響しないため、寸法精度が向上します。一方、外側のウォールを後からプリントすると、オーバーハングをプリントする際にうまく積み重ねることができます。内側のウォールの合計が奇数の場合、「中央の最後のライン」は必ず最後にプリントされます。" -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平スケールファクタ収縮補正" +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。" +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "ライトニングインフィルレイヤーがその上の物を支える必要がある場合を決定します。レイヤーの厚さを考慮して角度で指定されます。" -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直スケールファクタ収縮補正" +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "ライトニングインフィルレイヤーがその上のモデルを支える必要がある場合を決定します。厚さを考慮して角度で指定されます。" -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "結晶性材料" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "滲出防止引戻し位置" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "滲出防止引戻し速度" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "フィラメントの引き出し準備引戻し位置" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "加熱中にフィラメントの引き出しが生じる距離。" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "フィラメント引き出し準備引戻し速度" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "フィラメント引き出し準備温度" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "フィラメント引き出しの引戻し位置" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すにはフィラメントをどこまで引き戻すか。" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "フィラメント引き出しの引戻し速度" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引戻し速度。" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "フィラメント引き出し温度" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "フィラメントがきれいに引き出される温度。" - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "フラッシュパージ速度" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "材料を切り替えた後に、材料の下準備をする速度。" - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "フラッシュパージ長さ" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "フィラメントパージ速度の後" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "フィラメントパージ長さの後" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最大留め期間" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料を乾燥保管容器の外に置くことができる期間。" - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "無負荷移動係数" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "フィーダーとノズルチャンバーの間でフィラメントが圧縮される量を示す係数。フィラメントスイッチの材料を移動する距離を決めるために使用されます。" - -msgctxt "material_flow label" -msgid "Flow" -msgstr "フロー" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流れの補修: 押出されるマテリアルの量は、この値から乗算されます。" - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁のフロー" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁のフロー補正。" - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁のフロー" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁のフロー補正。" - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁のフロー" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "最外壁以外の壁のフロー補正。" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "上面最外壁の流れ" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "最外の壁ラインにおける流量補正。" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "上面内壁の流れ" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "最外のラインを除く、全ての壁ラインにおけるトップサーフェス壁ラインのフロー補正" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "上面/下面フロー" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "上面/下面のフロー補正。" - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "上部表面スキンフロー" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "印刷物の上部表面のフロー補正。" - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "インフィルフロー" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "インフィルのフロー補正。" - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "スカート/ブリムのフロー" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "スカートまたはブリムのフロー補正。" - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支持材のフロー" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支持材のフロー補正。" - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支持材界面フロー" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支持材の天井面または床面のフロー補正。" - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支持材天井面フロー" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支持材天井面のフロー補正。" - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支持材床面フロー" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支持材床面のフロー補正。" - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "プライムタワーのフロー" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "プライムタワーのフロー補正。" - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "初期レイヤーフロー" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "初期レイヤーの流量補修:初期レイヤーの マテリアル吐出量はこの値の乗算で計算されます。" - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "初期レイヤーインナーウォールのフロー" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "初期レイヤーアウターウォールのフロー" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "初期レイヤーの底面フロー" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "最初のレイヤーの底面ラインのフロー補正" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "スタンバイ温度" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "サポート材かどうか" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "この素材が一般的にプリント時のサポート材として使用されるかどうかを示します。" - -msgctxt "speed label" -msgid "Speed" -msgstr "スピード" - -msgctxt "speed description" -msgid "Speed" -msgstr "スピード" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "印刷速度" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "印刷スピード。" - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "インフィル速度" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "インフィルを印刷する速度。" - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "ウォール速度" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "ウォールを印刷する速度。" - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "外壁速度" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "最も外側のウォールをプリントする速度。外側の壁を低速でプリントすると表面の質が改善しますが、内壁と外壁のプリント速度の差が大きすぎると、印刷の質が悪化します。" - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "内壁速度" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "内側のウォールをプリントする速度 外壁より内壁を高速でプリントすると、印刷時間の短縮になります。外壁のプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "上面の最外壁速度" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "上面の最外壁が印刷される速度" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "上面内壁速度" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "上面内壁が印刷される速度" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "最上面速度" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "上部表面プリント時の速度。" - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "上面/底面速度" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "トップ/ボトムのレイヤーのプリント速度。" - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "サポート速度" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "サポートインフィル速度" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "サポート材のインフィルをプリントする速度 低速でプリントすると安定性が向上します。" - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "サポートインタフェース速度" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "サポートルーフ速度" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "ルーフとフロアのサポート材をプリントする速度 これらを低速でプリントするとオーバーハングの品質を向上できます。" - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "サポートフロア速度" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "プライムタワー印刷速度" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "プライムタワーをプリントする速度です。異なるフィラメントの印刷で密着性が最適ではない場合、低速にてプライム タワーをプリントすることでより安定させることができます。" - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "移動速度" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "移動中のスピード。" - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "初期レイヤー速度" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "初期レイヤー印刷速度" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "一層目をプリントする速度 ビルトプレートへの接着を向上するため低速を推奨します。" - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "初期レイヤー移動速度" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "最初のレイヤーを印刷する際のトラベルスピード。低速の方が、ビルドプレート剥がれるリスクを軽減することができます。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "スカート/ブリム速度" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "スカートとブリムのプリント速度 通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 軸ホップ速度" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 軸ホップに対して垂直 Z 軸方向の動きが行われる速度。これは通常、ビルドプレートまたはマシンのガントリーが動きにくいため、印刷速度よりも低くなります。" - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "遅いレイヤーの数" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "最初の数層は印刷失敗の可能性を軽減させるために、設定した印刷スピードよりも遅く印刷されます。" - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "フロー均一化率" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "加速度制御を有効にする" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "プリントヘッドのスピード調整の有効化 加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "印刷加速度" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "印刷の加速スピードです。" - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "インフィル加速度" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "インフィルの印刷の加速スピード。" - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "ウォール加速度" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "ウォールをプリントする際の加速度。" - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "最も外側の壁をプリントする際の加速度。" - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "内側のウォールがが出力される際のスピード。" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "上面外壁加速度" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "上面の最外壁が印刷される際の加速度" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "上面内壁加速度" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "上面内壁が印刷される際の加速度" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "最上面加速度" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "上部表面プリント時の加速度。" - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "上面/底面加速度" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーの印刷加速度。" - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "サポート加速度" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "サポート材プリント時の加速スピード。" - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "サポートインフィル加速度" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "インフィルのサポート材のプリント時の加速度。" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "サポートインタフェース加速度" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "サポートルーフ加速度" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "サポートフロア加速度" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "プライムタワー加速度" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "プライムタワーの印刷時のスピード。" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "移動か速度" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "移動中の加速度。" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "初期レイヤー加速度" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "初期レイヤーの加速度。" - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "初期レイヤー印刷加速度" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "初期レイヤーの印刷中の加速度。" - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "初期レイヤー移動加速度" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "最初のレイヤー時の加速度。" - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "スカート/ブリム加速度" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "ジャーク制御を有効にする" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X または Y 軸の速度が変更する際、プリントヘッドのジャークを調整することができます。ジャークを増やすことは、印刷時間を短縮できますがプリントの質を損ねます。" - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "トラベルジャークを有効にする" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "印刷ジャーク" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "プリントヘッドの最大瞬間速度の変更。" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "インフィルジャーク" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "インフィルの印刷時の瞬間速度の変更。" - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "ウォールジャーク" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "ウォールのプリント時の最大瞬間速度を変更。" - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁ジャーク" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁ジャーク" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "上面内壁の最大瞬間速度変化" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "上面内壁が印刷される際の最大瞬間速度変化。" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "上面最外壁の最大瞬間速度変化" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "最上面ジャーク" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "上部表面プリント時の最大加速度。" - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "上面/下面ジャーク" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "サポートジャーク" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "サポート材の印刷時の最大瞬間速度の変更。" - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "サポートインフィルジャーク" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "サポート材の印刷時、最大瞬間速度の変更。" - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "サポートインタフェースジャーク" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "どのルーフとフロアのサポート部分を印刷するかによって最大瞬間速度は変化します。" - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "サポートルーフジャーク" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "サポートフロアジャーク" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "プライムタワージャーク" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "移動ジャーク" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "移動する際の最大瞬時速度の変更。" - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "初期レイヤージャーク" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "初期レイヤーの最大瞬時速度の変更。" - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "初期レイヤー印刷ジャーク" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "初期レイヤー移動ジャーク" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "移動加速度は最初のレイヤーに適用されます。" - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "スカート/ブリムジャーク" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" - -msgctxt "travel label" -msgid "Travel" -msgstr "移動" - -msgctxt "travel description" -msgid "travel" -msgstr "移動" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "引き戻し有効" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "レイヤー変更時に引き戻す" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "引き戻し距離" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "引き戻されるマテリアルの長さ。" - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "引き戻し速度" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "引き戻し速度の取り消し" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "押し戻し速度の取り消し" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "フィラメントが引き戻される時のスピード。" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "余分な押し戻し量の引き戻し" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "マテリアルによっては、移動中に滲み出てきてしまうときがあり、ここで調整することができます。" - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "引き戻し最小移動距離" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "フィラメントを引き戻す際に必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大引き戻し回数" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小抽出距離範囲" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "最大の引き戻し回数。この値は引き戻す距離と同じであることで、引き戻しが効果的に行われます。" - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "コーミングモード" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "コーミングは、走行時にすでに印刷された領域内にノズルを保ちます。その結果、移動距離はわずかに長くなりますが、引き込みの必要性は減ります。コーミングがオフの場合、フィラメントの引き戻しを行い、ノズルは次のポイントまで直線移動します。また、インフィルのみにてコーミングすることにより、トップとボトムのスキン領域上での櫛通りを回避できます。" - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "オフ" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "すべて" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "外側表面には適用しない" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "スキン内にない" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "インフィル内" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "引き戻しのない最大コム距離" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "外壁の前に引き戻す" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "移動して外側のウォールをプリントする際、毎回引き戻しをします。" - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "移動は印刷したパーツを回避する" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "移動はサポートを回避する" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "移動回避距離" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "ノズルが既に印刷された部分を移動する際の間隔。" - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "レイヤー始点X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "各レイヤーのプリントを開始する部分をしめすX座標。" - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "レイヤー始点Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "各レイヤーのプリントを開始する部分をしめすY座標。" - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "引き戻し時のZホップ" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "引き戻しが完了すると、ビルドプレートが下降してノズルとプリントの間に隙間ができます。ノズルの走行中に造形物に当たるのを防ぎ、造形物をビルドプレートから剥がしてしまう現象を減らします。" - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "印刷パーツに対するZホップ" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "走行時に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。" - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Zホップ高さ" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "エクストルーダースイッチ後のZホップ" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "マシーンが1つのエクストルーダーからもう一つのエクストルーダーに切り替えられた際、ビルドプレートが下降して、ノズルと印刷物との間に隙間が形成される。これによりノズルが造形物の外側にはみ出たマテリアルを残さないためである。" - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "エクストルーダースイッチ高さ後のZホップ" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "印刷中の冷却を有効にする" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "ファン速度" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "冷却ファンが回転する速度。" - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "標準ファン速度" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大ファン速度" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "標準/最大ファン速度のしきい値" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "初期ファン速度" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "標準ファン速度時の高さ" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "標準ファン速度時のレイヤー" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最小レイヤー時間" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "一つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。しかしこれにより、次の層をプリントする前に造形物を適切に冷却することができます。 Lift Headが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最低速度" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "ヘッド持ち上げ" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "小さいレイヤーのプリント温度" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" - -msgctxt "support label" -msgid "Support" -msgstr "サポート" - -msgctxt "support description" -msgid "Support" -msgstr "サポート" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "サポート開始" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "サポート用エクストルーダー" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "サポート用インフィルエクストルーダー" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "最初のレイヤー用サポートエクストルーダー" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "サポートインタフェースエクストルーダー" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "サポートルーフエクストルーダー" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "サポートフロアエクストルーダー" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "サポート構造" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "サポートを生成するために利用できる技術を選択します。「標準」のサポート構造はオーバーハング部品のすぐ下に作成し、そのエリアを真下に生成します。「ツリー」サポートはオーバーハングエリアに向かって枝を作成し、モデルを枝の先端で支えます。枝をモデルのまわりにはわせて、できる限りビルドプレートから支えます。" - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "標準" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "ツリー" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "最大枝角度" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "枝直径" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "本体直径" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "枝直径角度" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "サポート配置" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "ビルドプレートにタッチ" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全対象" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "希望枝角度" - -msgctxt "support_tree_angle_slow description" -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 "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。" +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" msgid "Diameter Increase To Model" msgstr "モデルと接続される枝の直径増加" -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "モデルに対する最小高さ" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "初期レイヤー直径" - msgctxt "support_tree_bp_diameter description" msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." msgstr "ビルドプレートに到達したときに、すべての枝が達成しようとする直径。ベッドの接着性が向上します。" -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "枝密度" +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "エクストルーダーとビルドプレートへの接着方法を改善するのに役立つさまざまなオプション。ブリムは、モデルのベースの周りに単一レイヤーを平面的に追加して、歪みを防ぎます。ラフトはモデルの下に太いグリッドを追加します。スカートはモデルの周囲に印刷されるラインで、モデルには接続されません。" -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "枝の先端を生成するために使用されるサポート構造の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。非常に大きな値を指定するにはサポートルーフを使用するか、上部のサポート密度が同様に高くなるようにしてください。" +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "拒否エリア" -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "先端直径" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "ツリーサポートの枝の上部先端の直径。" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "枝到達距離制限" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "最適な枝範囲" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "枝がサポートポイントからどれくらい移動できるかについての推奨値。枝は、目的地(ビルドプレートまたはモデルの平らな部分)に到達するためであればこの値に違反することができます。この値を小さくすることで、サポートをより頑丈にすることができますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "希望配置" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。" - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "可能な場合はビルドプレート上に配置" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "必要に応じてモデル上に配置" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "サポートオーバーハング角度" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。" - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "サポートパターン" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "ライン" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "クロス" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "ジャイロイド" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "サポートウォールライン数" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "サポートインターフェースのウォールライン数" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "サポートルーフウォールライン数" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "サポート底面ウォールライン数" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "サポートインターフェースフロアを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "サポートライン接続" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "サポートライン両端を接続します。この設定を有効にすると、より確実なサポートで抽出不足を解消しますが、材料の費用がかさみます。" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "サポートジグザグ接続" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "ジグザグを接続します。ジグザグ形のサポート材の強度が上がります。" - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "サポート密度" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材の密度を調整します。大きな値ではオーバーハングが良くなりますが、サポート材が除去しにくくなります。" - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "サポートライン距離" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "初期層サポートラインの距離" +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "造形されたインフィルラインの距離。この設定は、インフィル密度およびライン幅によって計算される。" msgctxt "support_initial_layer_line_distance description" msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." msgstr "印刷した初期層間の距離が構造ライをサポートします。この設定は、対応濃度で算出されます。" -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "サポートインフィルラインの向き" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "使用する整数線の方向のリスト。リストの要素は、層が進行するにつれて順番に使用され、リストの終わりに達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストであり、デフォルト角度の0度を使用します。" - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "サポートブリムを有効にする" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの吸着性が高まります。" - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "サポートブリムの幅" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、追加材料の費用でビルドプレートへの接着性が強化されます。" - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "サポートブリムのライン数" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "サポートZ距離" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "サポート構造の上部/下部からプリントまでの距離です。このギャップは、モデル印刷後にサポートを取り除くためのクリアランスを提供します。モデルの下にある最上層のサポート層は、通常のレイヤーの一部分かもしれません。" - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "サポート上部距離" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "サポートの上部から印刷物までの距離。" - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "サポート底部距離" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "プリントからサポートの底までの距離。これは次のレイヤーの高さに切り上げられることに注意してください。" - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "サポートX/Y距離" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "印刷物からX/Y方向へのサポート材との距離。" - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "サポート距離優先順位" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "X /Y方向のサポートの距離がZ方向のサポートの距離を上書きしようとする時やまたその逆も同様。X または Y がZを上書きする際、X Y 方向の距離は印刷物からオーバーハングする Z 方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハング周りのX Yの距離を無効にすることで、無効にできる。" - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/YがZを上書き" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "ZがX/Yを上書き" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小サポートX/Y距離" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "サポート階段高さ" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "サポート階段最大幅" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "サポートステアステップ最小傾斜角度" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "サポート接合距離" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "支持材間における X/Y 軸方向の最大距離。個別の支持材間の距離がこの値よりも近い場合、支持材は 1 つにマージされます。" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "サポート水平展開" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "各レイヤーのサポート用ポリゴンに適用されるオフセットの量。正の値はサポート領域を円滑にし、より丈夫なサポートにつながります。" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "サポートインフィルレイヤー厚さ" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "サポートのインフィルの厚さ。この値はレイヤーの倍数にする必要があり、違う場合は倍数に近い値に設定されます。" - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "サポートインフィル半減回数" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数 天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "サポートインフィル半減前の高さ" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小サポート領域" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "サポートインタフェースを有効にする" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "モデルとサポートの間に密なインターフェースを生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "サポートルーフを有効にする" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "サポートフロアを有効にする" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "サポートインタフェース厚さ" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "底面または上部のモデルと接触するサポートのインターフェイスの厚さ。" - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "サポートルーフ厚さ" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "サポートフロア厚さ" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "サポートインタフェース密度" - -msgctxt "support_interface_density description" -msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフとフロアの密度を調整します 大きな値ではオーバーハングでの成功率があがりますが、サポート材が除去しにくくなります。" - -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "サポートルーフ密度" - -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "サポート材のルーフの部分の密度を調整します 大きな値ではオーバーハングの成功率があがりますが、サポート材が除去しにくくなります。" - -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "サポートルーフライン距離" +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" msgctxt "support_roof_line_distance description" msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." msgstr "印刷されたサポートルーフ線間の距離。この設定は、サポート密度によって計算されますが、個別に調整することもできます。" -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "サポートフロア密度" +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "印刷されたサポート材の間隔。この設定は、サポート材の密度によって算出されます。" -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "プリントからサポートの底までの距離。これは次のレイヤーの高さに切り上げられることに注意してください。" -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "サポートフロアライン距離" +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "サポートの上部から印刷物までの距離。" -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "印刷されたサポートのフロアのライン間の距離。この設定は、密度によって計算されますが、個別に調整することもできます。" +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "サポート構造の上部/下部からプリントまでの距離です。このギャップは、モデル印刷後にサポートを取り除くためのクリアランスを提供します。モデルの下にある最上層のサポート層は、通常のレイヤーの一部分かもしれません。" -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "サポートインタフェースパターン" +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "インフィルがウォールにより接着するための、インフィルラインが終わるたびに追加される移動の距離です。このオプションはインフィル重複に似ていますが、吐出がなくインフィルラインの片側の端に適用されます。" -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "モデルとサポートのインタフェースが印刷されるパターン。" +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Zシームを更に隠すための、外側のウォールの後に追加する移動の距離です。" -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "ドラフトシールドと造形物のX/Y方向の距離。" -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "壁 (ooze shield) の造形物からの距離。" -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y方向におけるオーバーハングからサポートまでの距離。" -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心円" +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "印刷物からX/Y方向へのサポート材との距離。" -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "パスを滑らかにするため、距離点が移動されます" -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "サポートルーフパターン" +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "パスを滑らかにするため、距離点が移動されます" -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "サポートのルーフが印刷されるパターン。" +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "これより小さいインフィルの領域を生成しないでください (代わりにスキンを使用してください)。" -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "ライン" +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "ドラフトシールドの高さ" -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "グリッド" +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "ドラフトシールドの制限" -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "サポートフロアパターン" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "サポートのフロアが印刷されるパターン。" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "ライン" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "グリッド" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "トライアングル" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心円" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "ジグザグ" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小サポートインターフェイス領域" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートインターフェイスポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小サポートルーフ領域" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小サポートフロア領域" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "サポートインターフェイス水平展開" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "サポートインターフェイスポリゴンに適用されるオフセット量。" - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "サポートルーフ水平展開" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "サポートのルーフに適用されるオフセット量。" - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "サポートフロア水平展開" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "サポートのフロアに適用されるオフセット量。" - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "サポートインターフェイスの優先順位" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "サポートインターフェイスとサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "サポートを優先" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "インターフェイスを優先" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "サポートラインを優先" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "インターフェイスラインを優先" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "両方重ねる" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "サポート面のライン方向" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "サポートルーフライン方向" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "サポートフロアライン方向" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "使用する整数線の方向のリスト。リストの要素は、レイヤの層に合わせて順番に使用され、リストの末尾に達すると、最初から再び開始されます。リスト項目はコンマで区切られ、リスト全体は大括弧で囲まれています。デフォルトは空のリストとなり、デフォルトの角度を使用します(面がかなり厚い場合には45度と135度を交互に使用、それ以外では90度を使用)。" - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "ファン速度上書き" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "サポート対象スキンファン速度" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用タワー" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "タワー直径" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "特別な塔の直径。" - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大タワーサポート直径" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "特殊なサポートタワーにより支持される小さな領域のX / Y方向の最小直径。" - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "タワールーフ角度" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "ドラフトシールドとX/Yの距離" msgctxt "support_mesh_drop_down label" msgid "Drop Down Support Mesh" msgstr "サポートメッシュの下処理" -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "シーンにサポートメッシュがある" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "ビルドプレート密着性" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "密着性" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "プライムボルブを有効にする" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "印刷する前にフィラメントの小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーがノズルにおいて印刷予定のマテリアルの下準備をします。印刷後ブリムまたはスカートも、上記と同じような意味を持ちます。この設定をオフにすると時間の節約にはなります。" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "エクストルーダープライムX位置" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時のノズルの位置を表すX座標。" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "エクストルーダープライムY位置" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "プリント開始時にノズル位置を表すY座標。" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "ビルドプレート接着タイプ" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "エクストルーダーとビルドプレートへの接着両方を改善するのに役立つさまざまなオプション。 Brimは、モデルのベースの周りに単一レイヤーを平面的に追加して、ワーピングを防止します。 Raftは、モデルの下に太いグリッドを追加します。スカートはモデルの周りに印刷されたラインですが、モデルには接続されていません。" - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "スカート" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "ブリム" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "ラフト" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "なし" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "ビルドプレート接着エクストルーダー" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。これはマルチエクストルージョン時に使用されます。" - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "スカート/ブリムエクストルーダー" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "ラフトベースエクストルーダー" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "ラフト中間エクストルーダー" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "ラフトトップエクストルーダー" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "スカートライン数" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "スカート高さ" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "スカート距離" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "スカートと印刷の最初の層の間の水平距離。" -"これは最小距離です。複数のスカートラインがこの距離から外側に展開されます。" - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "スカート/ブリム最小長さ" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "ブリム幅" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "ブリムライン数" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させる。" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "ブリム距離" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "ブリム交換サポート" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "ブリムの位置" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "モデルの外側,内側,またはその両方にブリムを印刷します。モデルによっては,これによりベッドの適切な接着を確保しながら,後で取り外す必要があるブリムの量を減らすことができます。" - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "外側のみ" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "内側のみ" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "どこにでも" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "ブリムを避けるためのマージン" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "モデルの周囲のブリムが,他のモデルの望ましくない場所に接触する可能性があります。これにより,この距離内のすべてのブリムがブリムのないモデルから削除されます。" - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "スマートブリム" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。" - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "ラフトの余分なマージン" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトが有効になっている場合、モデルの周りに余分なラフト領域ができます。値を大きくするとより強力なラフトができますが、多くの材料を使用し、造形範囲は少なくなります。" - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "ラフトベースの追加マージン" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトベースが有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "ラフトの中央の追加マージン" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトの中央が有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "ラフト上部の追加マージン" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "ラフトの上部が有効になっている場合,これはモデルの周囲の追加のラフト領域であり,ラフトも与えられます。このマージンを増やすとより強いラフトを作ることができますが,より多くの材料を使用し,プリントのために残される領域は少なくなります。" - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "ラフト内側コーナーの削除" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "ラフトベースの内側の角を削除" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "ラフトベースから内側の角を取り除き,ラフトを凸状にします。" - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "ラフト中央の内側の角を削除" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "ラフトの中央から内側の角を取り除き,ラフトを凸状にします。" - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "ラフト上部の内側の角を削除" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "ラフトの上部から内側の角を取り除き,ラフトを凸状にします。" - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "ラフト補整" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "ラフトベースのスムージング" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は,ラフトベースのアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "ラフト中央のスムージング" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は,ラフトの中央のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "ラフト上部のスムージング" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "この設定は,ラフト上部の輪郭の内側の角をどの程度丸くするかを制御します。内側の角は,ここで指定した値と等しい半径の半円に丸められます。この設定では,ラフトの輪郭にある円より小さい穴も削除されます。" - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "ラフト間のラップ" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "初期レイヤーZのオーバーラップ" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "エアギャップで失われたフィラメントを補うために,モデルの1つ目と2つ目の層をZ方向にオーバーラップさせます。最初のモデルレイヤーより上のすべてのモデルは,この量だけ下にシフトされます。\nこの設定により,2つ目のレイヤーが最初のレイヤーの下に印刷される場合があることに注意してください。これは意図された動作です。" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "ラフトベース厚さ" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "ベースラフト層の層厚さ。プリンタのビルドプレートにしっかりと固着する厚い層でなければなりません。" - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "ラフトベースライン幅" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "ラフトベースラインスペース" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "ベースラフト層のラフトライン間の距離。広い間隔は、ブルドプレートからのラフトの除去を容易にする。" - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "ラフト中間レイヤー" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "ラフト中央厚さ" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中間のラフト層の層の厚さ。" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "ラフト中央ライン幅" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。" - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "ラフト中間スペース" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中間ラフト層とラフト線の間の距離。中央の間隔はかなり広くなければならず、トップラフト層を支えるために十分な密度でなければならない。" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "ラフト最上層" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "ラフト最上層厚さ" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "トップラフト層の層厚。" - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "ラフト最上ライン幅" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "ラフト最上面スペース" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "上のラフト層とラフト線の間の距離。間隔は線の幅と同じにして、サーフェスがソリッドになるようにします。" - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "単一のラフト上面の表面の順序" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "ラフト上面のラインを,常に単一方向の隣接するラインと重なる順序で印刷します。これにより,印刷に少し時間がかかりますが,表面の見た目がより均一になり,これはモデルの底面にも表示されます。" - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "ラフトの壁の数" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "ラフトの線形パターンの周囲に印刷する輪郭の数。" - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "ラフトベースウォール数" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "ラフト中央の壁の数" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "ラフトの中間層の線形パターンの周囲に印刷する輪郭の数。" - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "ラフト上部の壁の数" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "ラフトの最上層の線形パターンの周囲に印刷する輪郭の数。" - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "ラフト印刷速度" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "ラフトが印刷される速度。" - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "ラフトベース印刷速度" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ベースラフト層が印刷される速度。これは、ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "ラフト中間印刷速度" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "ミドルラフト層が印刷される速度。ノズルから出てくるマテリアルの量がかなり多いので、ゆっくりと印刷されるべきである。" - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "ラフト上層印刷速度" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "ラフト印刷加速度" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "ラフト印刷時の加速度。" - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "ラフトベース印刷加速度" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "ラフトの底面印刷時の加速度。" - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "ラフト中間層印刷加速度" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "ラフトの中間層印刷時の加速度。" - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "ラフト上層層印刷加速度" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "ラフトのトップ印刷時の加速度。" - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "ラフト印刷ジャーク" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "ラフトが印刷時のジャーク。" - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "ラフトベース印刷ジャーク" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "ベースラフト層印刷時のジャーク。" - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "ラフト中間層印刷ジャーク" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "ミドルラフト層印刷時のジャーク。" - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "ラフト上層印刷ジャーク" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "トップラフト層印刷時のジャーク。" - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "ラフトファン速度" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "ラフト印刷時のファンの速度。" - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "ラフトベースファン速度" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "ベースラフト層印刷時のファン速度。" - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "ラフト中間層ファン速度" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "ミドルラフト印刷時のファンの速度。" - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "ラフト上層ファン速度" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "トップラフト印刷時のファンの速度。" - msgctxt "dual label" msgid "Dual Extrusion" msgstr "デュアルエクストルーダー" -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "デュアルエクストルーダーで印刷するための設定。" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "段階的なフローの変化におけるステップごとの継続時間" -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "プライムタワーを有効にする" +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "楕円形" -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "印刷物の横にタワーを造形して、ノズル交換後にフィラメントの調整をします。" +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "加速度制御を有効にする" -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "プライムタワーのタイプ" +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "ブリッジ設定を有効にする" -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "プライムタワーの生成方法:
    • 通常:二次材料が,プライミングされるバケットを作成します
    • インターリーブド:プライムタワーをできるだけまばらに作成します。これにより時間とフィラメントが節約されますが,使用できる材料が互いに接着している場合にのみ可能です。
    " +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "コースティングを有効にする" -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "通常" +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "円錐サポートを有効にする" -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "インターリーブド" +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "ドラフトシールドを有効にする" -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "プライムタワーのサイズ" +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "フルイドモーションを有効にする" -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "プライムタワーの幅。" +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "アイロン有効" -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "プライムタワー最小容積" +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "ジャーク制御を有効にする" -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "プライムタワーの各層の最小容積。" - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "プライムタワーの最大ブリッジ距離" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "空中で印刷できるブランチの最大長。" - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "プライムタワーX位置" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のx座標。" - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "プライムタワーY位置" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "プライムタワーの位置のy座標。" - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "プライムタワーノズル拭き取り" - -msgctxt "prime_tower_wipe_enabled description" -msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." -msgstr "1本のノズルでプライムタワーを印刷した後、もう片方のノズルから滲み出した材料をプライムタワーが拭き取ります。" - -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "プライムタワーベース" - -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "この設定を有効にすると、モデルにはない場合でもプライムタワーにブリムが付きます。高いタワーのためにより頑丈なベースが必要な場合は、ベースの高さを増やすことができます。" - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "プライムタワーベースのサイズ" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "プライムタワーブリム/ベースの幅。ベースを大きくするとビルドプレートへの接着が強化されますが、有効な印刷エリアも減少します。" - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "プライムタワーベースの高さ" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "プライムタワーベースの高さです。この値を増やすと、ベースが広くなるためプライムタワーがより頑丈になります。この設定が低すぎると、プライムタワーは頑丈なベースを持たなくなります。" - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "プライムタワーベースの傾斜" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "プライムタワーベースの傾斜に使用される倍率係数です。この値を増やすと、ベースが細くなります。減らすと、ベースが厚くなります。" - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "プライムタワーラフトライン間隔" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "プライムタワーラフト層の独自のラフトライン間の距離です。間隔が広いと、ラフトをビルドプレートから簡単に取り除くことができます。" +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "ノズルの温度管理を有効にする" msgctxt "ooze_shield_enabled label" msgid "Enable Ooze Shield" msgstr "Ooze Shieldを有効にする" +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "プライムボルブを有効にする" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "プライムタワーを有効にする" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "印刷中の冷却を有効にする" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "印刷プロセスレポートを有効にする" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "引き戻し有効" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "サポートブリムを有効にする" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "サポートフロアを有効にする" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "サポート境界面を有効にする" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "サポートルーフを有効にする" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "プリントヘッド加速(トラベルアクセラレーション)を有効にする" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "トラベルジャークを有効にする" + msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "モデルの周りに壁(ooze shield)を作る。これを生成することで、一つ目のノズルの高さと2つ目のノズルが同じ高さであったとき、2つ目のノズルを綺麗にします。" -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze Shield角度" +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "段階的なフローの変化を有効にします。有効にすると、フロー量は目標フローまで段階的に増加/減少します。これは、エクストルーダーモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "印刷プロセスのレポートを有効にして、問題の検出の可能性があるしきい値を設定します。" -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze Shield距離" +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "最上位のスキンレイヤー(空気にさらされている)上の小さな(最大「小さな上部/下部幅」)領域を、デフォルトパターンの代わりにウォールで埋められるようにします。" -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "壁(ooze shield)の造形物からの距離。" +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "XまたはY軸の速度が変わる際、プリントヘッドのジャーク調整を有効にします。ジャークを増やすことで印刷時間を短縮できますが、プリントの品質は低下します。" -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "ノズルスイッチ引き戻し距離" +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "プリントヘッドのスピード調整を有効にします。加速度の増加は印刷時間を短縮しますが印刷の質を損ねます。" -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "印刷中の冷却ファンを有効にします。ファンは、短いレイヤープリントやブリッジ/オーバーハングのレイヤーがある印刷物の品質を向上させます。" -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "ノズルスイッチ引き戻し速度" +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "終了G-code" -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "フィラメントパージ長さの後" -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "ノズルスイッチ引き込み速度" +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "フィラメントパージ速度の後" -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "ノズル切り替え中のフィラメントの引き込み速度。" +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "スペースがサポートで埋まっている場合でも、モデルの周辺にブリムを印刷します。これにより、サポートの最初の層の一部のエリアがブリムになります。" -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "ノズルスイッチ押し戻し速度" +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "どこにでも" -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全対象" -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "ノズル切替え後のプライムに必要な余剰量" +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "排他" -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "ノズル切替え後のプライムに必要な余剰材料。" +msgctxt "experimental label" +msgid "Experimental" +msgstr "実験的" -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "メッシュ修正" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "3Dプリンティングにさらに適したメッシュを作成します。" - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "重複量" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "全穴除去" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "シーム表示" msgctxt "meshfix_extensive_stitching label" msgid "Extensive Stitching" @@ -4630,241 +1104,2521 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "強めのスティッチングは、穴をメッシュで塞いでデータを作成します。このオプションは、長い処理時間が必要となります。" -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "スティッチできない部分を保持" +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "スキンをサポートするための追加のインフィルライン" -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。" +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "追加インフィルウォールの数" -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "重複メッシュのマージ" +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "外側表面の数" -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "触れているメッシュを少し重ねてください。これによって、より良い接着をします。" +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "ノズル切替え後のプライムに必要な余剰材料。" -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "重複メッシュの削除" +msgctxt "variant_name" +msgid "Extruder" +msgstr "エクストルーダー" -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つのマテリアルのオブジェクトが互いに重なっている場合に使用されます。" +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "エクストルーダープライムX位置" -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "代替メッシュの削除" +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "エクストルーダープライムY位置" -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "交差するメッシュがどのレイヤーに属しているかを切り替えることで、オーバーラップしているメッシュを絡み合うようにします。この設定をオフにすると、一方のメッシュはオーバーラップ内のすべてのボリュームを取得し、他方のメッシュは他から削除されます。" +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "エクストルーダーのZ座標" -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "空の最初のメッシュの削除" +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "エクストルーダーのヒーター共有" -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "エクストルーダーの共有ノズル" -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大解像度" +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "押出クールダウン速度修飾子" -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g コードの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "押出幅に基づく速度の補正係数。0%では、移動速度が一定のプリント速度に保たれます。100%では、フロー(mm³/s単位)が一定になるように移動速度が調整されます。つまり、通常のライン幅の半分のラインは2倍の速さでプリントされ、幅が2倍のラインは半分の速さでプリントされます。100%より大きな値を設定すると、幅広のラインを押し出すのに必要な高い圧力を補うことができます。" -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "最大移動解像度" +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "ファン速度" -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタが g コードの処理速度に追いつくことができますが、精度が低下します。" +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "ファン速度上書き" -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏差" +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。" -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。" +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "これからもっと充実させていく機能です。" -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大押出領域偏差" +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "フィーダーホイール直径" -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生することがあります。プリントの精度は落ちますが、G-codeは小さくなります。" +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最終印刷温度" -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "フルイドモーションを有効にする" +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "ファームウェア引き戻し" -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "最初のレイヤー用サポートエクストルーダー" -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "フルイドモーション(移動距離)" +msgctxt "material_flow label" +msgid "Flow" +msgstr "フロー" -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "パスを滑らかにするため、距離点が移動されます" +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "フロー均一化率" -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "フルイドモーション(近距離)" +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "フロー制限" -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "パスを滑らかにするため、距離点が移動されます" +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量補正要因" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量補正時の最大抽出オフセット" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "フロー温度グラフ" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "フロー警告" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "初期レイヤーの流量補修:初期レイヤーの材料吐出量はこの値の乗算で計算されます。" + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "最初のレイヤーの底面ラインのフロー補正" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "最も外側を除いた底面ウォールのすべてのラインにフロー補正を行います。" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "インフィルのフロー補正。" + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支持材の天井面または床面のフロー補正。" + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "造形物の底におけるラインにフロー補正を行います。" + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "印刷物の上部表面のフロー補正。" + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "プライムタワーのフロー補正。" + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "スカートまたはブリムのフロー補正。" + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支持材床面のフロー補正。" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支持材天井面のフロー補正。" + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支持材のフロー補正。" + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "最も外側の底面ウォールのラインにフロー補正を行います。" + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "最初のレイヤーの最も外側のウォールライン上のフロー補正。" + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最も外側のウォールのフロー補正。" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "最も外側のウォールラインにおける流量補正。" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "最外のラインを除く、全てのウォールラインにおける最上部ウォールラインのフロー補正" + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "上面/下面のフロー補正。" + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "最も外側のウォールラインを除くすべてのウォールラインのフロー補正(ただし、最初のレイヤーのみ)" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "最も外側以外のウォールのフロー補正。" + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "ウォールラインのフロー補正。" + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流れの補修:吐出される材料の量は、この値から乗算されます。" msgctxt "meshfix_fluid_motion_angle label" msgid "Fluid Motion Angle" msgstr "フローモーション角度" +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "フルイドモーション(移動距離)" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "フルイドモーション(近距離)" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "フラッシュパージ長さ" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "フラッシュパージ速度" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "この値より長い移動の場合、材料フローはパスの目標フローにリセットされます。" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "ノズルサイズの1~2倍程度の薄い構造の場合、モデルの厚さに合わせてライン幅が接着するよう変更する必要があります。この設定は、ウォールに許容される最小ライン幅を制御します。ジオメトリーの厚さが、Nのウォールが幅広く、N+1のウォールが狭い場所で、NからN+1のウォールに移行するため、最小ライン幅は本質的に最大ライン幅も決定します。ウォールラインの許容最大幅は、最小ウォールライン幅の2倍です。" + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前方" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "左前方" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "右前方" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "制限なし" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "ファジースキン" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "ファジースキンの密度" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "ファジースキン外のみ" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "ファジースキン点間距離" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "ファジースキンの厚さ" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-codeフレーバー" + +msgctxt "machine_end_gcode description" +msgid "" +"G-code commands to be executed at the very end - separated by \n" +"." +msgstr "最後に実行されるG-codeコマンド。複数ある場合は改行で区切ります。" + +msgctxt "machine_start_gcode description" +msgid "" +"G-code commands to be executed at the very start - separated by \n" +"." +msgstr "最初に実行されるG-codeコマンド。複数ある場合は改行で区切ります。" + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "材料のGUID。これは自動的に設定されます。" + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "ガントリーの高さ" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "インターロック構造の生成" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "サポートを生成" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "最初の層のインフィルエリア内ブリムを生成します。このブリムは、サポートの周囲ではなく、サポートの下に印刷されます。この設定を有効にすると、サポートのビルドプレートへの接着が向上します。" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "モデルとサポートの間に密な境界面を生成します。これにより、モデルが印刷されているサポートの上部、モデル上のサポートの下部にスキンが作成されます。" + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "サポートの上部とモデルの間に高密度の厚板を形成します。モデルとサポート材の間にスキンが作成されます。" + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "オーバーハングするモデルのサポートパーツの構造を形成します。これらのサポートがなければ、印刷は失敗します。" + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "ガラス" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "微量の材料のみを吐出して、再度上部表面を動きます。これにより上部のプラスティックが溶かされ、よりスムースな表面になります。ノズルチャンバーには高い圧力が保たれるため、表面上のしわが材料で埋められます。" + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "インフィル半減高さ" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "インフィル半減回数" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "サポートインフィル半減前の高さ" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "サポートインフィル半減回数" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "段階的なフローの離散化ステップのサイズ" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "段階的なフローが有効" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "段階的なフローの最大加速度" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "レイヤー時間が最小であるため、速度を落としてプリントする場合は、この温度まで徐々に下げてください。" + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "グリッド" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外側のウォールをグループ化" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "ジャイロイド" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "造形温度安定化処理有り" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "加熱式ビルドプレートあり" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "加熱速度" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "ノズル加熱長さ" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "シーム非表示" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "シーム表示/非表示" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "穴の水平拡張" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "穴の水平拡張の最大直径" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。" + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平拡張" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平スケールファクタ収縮補正" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "加熱中にフィラメントの引き出しが生じる距離。" + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "滲出を止めるには材料をどこまで引き戻す必要があるか。" + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。" + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すためフィラメントをどこまで引き戻すか。" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "フィラメントの引き出しが起こるための引き戻しの距離。" + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "滲出を防止するにはフィラメントスイッチ中に材料をどの程度速く引き戻す必要があるか。" + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "空のスプールを同じ材料の新しいスプールに交換した後に、材料の下準備をする速度。" + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "材料を切り替えた後に、材料の下準備をする速度。" + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料を乾燥保管容器の外に置くことができる期間。" + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "X方向に1ミリメートルの移動によりステップモーターが行うステップの数を示します。" + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Y 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Z 方向に 1 ミリメートルの移動でステップモーターが行うステップの数を示します。" + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "フィーダーホイールを円周上で1ミリメートル移動させるのに、ステップモーターが行うステップの数を示します。" + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "空のスプールを同じ材料の新しいスプールに交換したときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "材料を切り替えたときに、ノズルから前の材料をパージするために使用する材料の量(フィラメントの長さ)。" + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "プリンタ起動gcodeスクリプト完了時に、各エクストルーダーのフィラメントが共有ノズルの先端部分から引き戻されていると想定される量。この値は、ノズルのダクトの共通部分の長さ以上にする必要があります。" + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "サポート境界面とサポートが重なる場合にどのように相互作用するかを示します。現在、サポートルーフにのみ実装されています。" + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "モデル上に枝を配置する場合、どれくらいの高さが必要かを示します。サポート材が小さな塊になることを防止します。枝がサポートルーフを支えている場合、この設定は無視されます。" + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" + msgctxt "meshfix_fluid_motion_angle description" msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." msgstr "ツールパスセグメントが一般的な動きからこの角度よりも大きく逸脱している場合、セグメントは平滑化されます。" -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特別モード" +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "これまでにないモデルの印刷方法です。" +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "異なる数のウォール間を相次いで行き来する場合は、まったく移行しないようにします。移行同士がこの距離よりも近い場合は、それらの移行を削除します。" -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "印刷頻度" +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフト土台が有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。" +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフトが有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" -msgctxt "print_sequence option all_at_once" -msgid "All at Once" -msgstr "一度にすべて" +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフト中間層が有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "1つずつ" +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "ラフト上層部が有効の場合、ラフト自体で構成される追加のラフト領域がモデルの周囲に作成されます。このマージンを増やすことで、より多くの材料を使いプリントの領域が狭くなる一方、より強いラフトを作ることができます。" -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手動で印刷順序を設定する" +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "メッシュ内の重なり合うボリュームから生じる内部ジオメトリを無視し、ボリュームを1つとして印刷します。これにより、意図しない内部空洞が消えることがあります。" -msgctxt "user_defined_print_order_enabled description" -msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." -msgstr "オブジェクトリストを並べ替えて,印刷順序を手動で設定できます。リストの最初のオブジェクトが最初に印刷されます。" +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "ビルドプレート温度を含む" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "材料の温度を含む" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包括" + +msgctxt "infill description" +msgid "Infill" +msgstr "インフィル" + +msgctxt "infill label" +msgid "Infill" +msgstr "インフィル" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "インフィル加速度" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "インフィル優先" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "インフィル密度" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "インフィルエクストルーダー" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "インフィルフロー" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "インフィルジャーク" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "インフィル層の厚さ" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "インフィルラインの向き" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "インフィルライン距離" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "インフィルライン乗算" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "インフィルラインの幅" msgctxt "infill_mesh label" msgid "Infill Mesh" msgstr "インフィルメッシュ" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を改なメッシュに置き換えます。これを利用する場合、1つのWallだけを印刷しTop / Bottom Skinは使用しないことをお勧めします。" +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "インフィルオーバーハング角度" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "インフィルの重なり" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "インフィルの重なり (%)" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "インフィルパターン" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "インフィル速度" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "インフィルサポート" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "インフィル移動最適化" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "インフィル移動距離" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "インフィルX座標オフセット" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "インフィルY座標オフセット" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初期底面レイヤー" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "初期ファン速度" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "初期レイヤー加速度" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "初期レイヤーの底面フロー" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "初期レイヤー直径" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "初期レイヤーフロー" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "初期レイヤーの高さ" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "初期層水平拡張" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "初期レイヤー内側ウォールのフロー" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "初期レイヤージャーク" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "初期レイヤーのライン幅" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "初期レイヤーにおける外側ウォールのフロー" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "初期レイヤー印刷加速度" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "初期レイヤー印刷ジャーク" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "初期レイヤー印刷速度" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "初期レイヤー速度" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "初期層サポートラインの距離" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "初期レイヤー移動加速度" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "初期レイヤー移動ジャーク" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "初期レイヤー移動速度" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "初期レイヤーZ座標の重なり" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "初期印刷温度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初期層の最大フロー加速度" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内側ウォールの加速度" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内側ウォール用エクストルーダー" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内側ウォールジャーク" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "内側ウォール速度" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内側ウォールのフロー" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "内側ウォールライン幅" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "外側ウォールの経路にはめ込む。外側ウォールがノズルよりも小さく、外側ウォールの後に造形されている場合は、オフセットを使用して、ノズルの穴をモデルの外側ではなく外側ウォールと重なるようにします。" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "内側のみ" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "内側から外側へ" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "内側の移動経路回避距離" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "境界面のラインを優先" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "境界面を優先" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "インターリーブド" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "インターロックビームレイヤー数" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "インターロックビーム幅" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "インターロック境界回避" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "インターロックの奥行" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "インターロック構造の向き" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "最上層のみアイロン" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "アイロン加速度" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "アイロンフロー" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "アイロンインセット" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "アイロンジャーク" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "アイロン線のスペース" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "アイロンパターン" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "アイロン速度" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "中心位置" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "サポート材かどうか" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "この材料は加熱時にきれいに分解するタイプ (結晶性) または長く絡み合ったポリマー鎖 (非結晶) を作り出すタイプのいずれですか?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "この材料が一般的にプリント時のサポート材として使用されるかどうかを示します。" + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "スティッチできない部分を保持" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "レイヤーの高さ" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "レイヤー始点X座標" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "レイヤー始点Y座標" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "ラフトの土台となる層の厚さ。プリンターのビルドプレートにしっかり接着する厚い層でなければなりません。" + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中間のラフト層の厚さ。" + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "トップラフト層の厚さ。" + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Nミリメートルごとに1度ずつサポートラインの接続をしないことで、サポート材を外れやすくします。" + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "ヘッド持ち上げ" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "ライトニング" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "ライトニングインフィルオーバーハング角度" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "ライトニングインフィル刈り込み角度" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "ライトニングインフィル矯正角度" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "ライトニングインフィルサポート角度" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "枝到達距離制限" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "各枝がサポートポイントからどれくらい移動するかを制限します。これにより、サポートをより頑丈にできますが、枝の量が増加します(材料の使用量やプリント時間も増加します)。" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "検出するビルドボリューム温度の制限警告。" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "検出するビルドボリューム温度の異常の制限。" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "検出する印刷温度異常の制限。" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "検出するプリント温度警告の制限。" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "検出するフロー異常の制限。" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "検出するフロー警告の制限。" + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、全く別のエクストルーダーで作成できます。" + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "制限あり" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "ライン幅" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "ライン" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "ライン" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "直線" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "ライン" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "ライン" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "ライン" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "ライン" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直線" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直線" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "プリンター" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "プリンターの奥行" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "プリントヘッドとファンポリゴン" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "プリンターの高さ" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "プリンターのタイプ" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "プリンターの幅" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "プリンター固有の設定" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "オーバーハング印刷可能" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "触れているメッシュを少し重ねます。これによって、メッシュ同士の接着をより良くします。" + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "オーバーハング底面のサポート領域を小さくします。" + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "サポートメッシュの下のサポート材を全箇所に作ります、これはサポートメッシュ下にてオーバーハングしないようにするためです。" + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "最後のヘッドの既知位置からではなく、エクストルーダー現在位置を絶対位置にします。" + +msgctxt "layer_0_z_overlap description" +msgid "" +"Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\n" +"It may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "" +"エアギャップで失われたフィラメントを補うために、モデルの1つ目と2つ目の層をZ方向で重なるようにします。最初のモデルレイヤーより上のすべてのモデルは、この量だけ下にシフトされます。\n" +"この設定により、2つ目のレイヤーが最初のレイヤーの下に印刷される場合があることに注意してください。これは意図された動作です。" + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "3Dプリンティングにさらに適したメッシュを作成します。" + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "サポート構造のZシームと実際の3Dモデルとの間の空間的な関係を管理します。この制御は、プリントした造形物に損傷を与えたり跡を残したりすることなくサポート構造をシームレスに取り外せるようにするために非常に重要です。" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +msgctxt "material description" +msgid "Material" +msgstr "材料" + +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "材料のブランド" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "材料GUID" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "材料の種類" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "ワイプ間の材料の量" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "引き戻しのない最大コム距離" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "X軸最大加速度" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Y軸最大加速度" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z軸最大加速度" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "最大枝角度" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏差" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大押出領域偏差" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大ファン速度" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "フィラメント最大加速度" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大モデル角度" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "オーバーハングした穴の最大領域" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最大留め期間" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大解像度" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大引き戻し回数" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "表面拡張最大角" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "最大速度E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X軸最大速度" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y軸最大速度" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z軸最大速度" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大タワーサポート直径" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "最大移動解像度" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "フローを段階的に変化させるための最大加速度" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X方向のモーターの最大速度" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y方向のモーターの最大加速度。" + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z方向のモーターの最大加速度。" + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "フィラメントのモーターの最大加速度。" + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "特殊なサポートタワーにより支持される小さな領域のX/Y方向の最小直径。" + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。" + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "重複メッシュのマージ" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "メッシュ修正" + +msgctxt "mesh_position_x label" +msgid "Mesh Position X" +msgstr "メッシュ位置X座標" + +msgctxt "mesh_position_y label" +msgid "Mesh Position Y" +msgstr "メッシュ位置Y座標" + +msgctxt "mesh_position_z label" +msgid "Mesh Position Z" +msgstr "メッシュ位置Z座標" msgctxt "infill_mesh_order label" msgid "Mesh Processing Rank" msgstr "メッシュ処理ランク" -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "インフィルメッシュの重なりが複数生じた場合のこのメッシュの優先度を決定します。複数のインフィルメッシュの重なりがあるエリアでは、最もランクが高いメッシュの設定になります。ランクが高いインフィルメッシュは、ランクが低いインフィルメッシュのインフィルと通常のメッシュを変更します。" +msgctxt "mesh_rotation_matrix label" +msgid "Mesh Rotation Matrix" +msgstr "メッシュ回転マトリックス" -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "メッシュ切断" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "中間" -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "このメッシュの大きさをを他のメッシュ内に制限します。この設定を使用することで、1つの特定のメッシュ領域の設定を、、全く別のエクストルーダーで作成することができます。" - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "型" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "モデルからの最小Zシーム距離" msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "最小型幅" -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "型の外側とモデルの外側との間の最小距離です。" +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "スタンバイ温度までの最短時間" -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "型ルーフ高さ" +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "ブリッジウォール長さの最小値" -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "型を印刷するためのモデルの水平部分上の高さ。" +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数ウォールライン幅" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小抽出距離範囲" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小フィーチャーサイズ" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小送り速度" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "モデルに対する最小高さ" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小インフィル領域" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最小レイヤー時間" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "オーバーハングするレイヤーの最小時間" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数ウォールライン幅" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "オーバーハングセグメントの最小距離" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小ポリゴン円周" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "表面拡張最小幅" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最低速度" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小サポート領域" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小サポートフロア領域" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "サポート境界面の最小面積" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小サポートルーフ領域" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小サポートX/Y距離" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄肉ウォールライン幅" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "コースティング前の最小ボリューム" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小ウォールライン幅" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "サポート境界面ポリゴンの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "ポリゴンをサポートする最小領域サイズ。この領域よりポリゴンが小さい場合は生成されません。" + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "サポートのフロアの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "サポートのルーフの最小領域サイズ。この値より小さい領域のポリゴンは通常のサポートとしてプリントされます。" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第1層のフローを段階的に変化させるための最低速度" + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "薄いフィーチャーの最小厚さ。この値より薄いモデルフィーチャーはプリントされず、最小フィーチャーサイズより厚いフィーチャーは最小ウォールライン幅に広げられます。" + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "型" msgctxt "mold_angle label" msgid "Mold Angle" msgstr "型角度" -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。" +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "型ルーフ高さ" -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "サポートメッシュ" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "底面方向の一貫性" -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "アイロン方向一貫性" -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "メッシュオーバーハング例外" +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "単一のラフト上面の表面の順序" -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "上面方向一貫性" -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面モード" +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "上面/底面の方向一貫性" -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "複数のスカートラインを使用すると、小さなモデル形成時の射出をより良く行うことができます。これを0に設定するとスカートが無効になります。" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "サポート材の初期層におけるインフィル密度の倍率です。この値を増やすことで、ベッドとの接着力を高めることができます。" + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "最初のレイヤーにおけるライン幅の乗数です。この値を増やすと、ベッドとの接着が向上します。" + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "無負荷移動係数" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 軸ギャップにスキンなし" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "これまでにないモデルの印刷方法です。" + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "なし" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "なし" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "なし" msgctxt "magic_mesh_surface_mode option normal" msgid "Normal" msgstr "標準" -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "通常" -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "両方" +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "標準" -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "滑らかな外側輪郭" +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "通常、Curaはメッシュ内の小さな穴をスティッチし、大きな穴のあるレイヤーの部分を削除しようとします。このオプションを有効にすると、スティッチできない部分が保持されます。このオプションは、他のすべてが適切なG-codeを生成できない場合の最後の手段として使用する必要があります。" -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "スキン内にない" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "外側表面には適用しない" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "ノズル角度" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "ノズル内径" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "ノズル拒否エリア" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ノズルID" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "ノズル切替え後のプライムに必要な余剰量" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "ノズルスイッチ押し戻し速度" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "ノズルスイッチ引き戻し速度" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "ノズルスイッチ引き戻し距離" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "ノズルスイッチ引き戻し速度" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "エクストルーダーの数" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "有効なエクストルーダーの数" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "遅いレイヤーの数" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "有効なエクストルーダートレインの数(ソフトウェアが自動設定)" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "エクストルーダーの数。エクストルーダーの単位は、フィーダー、ボーデンチューブ、およびノズルを組合せたもの。" + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "ブラシ全体をノズルが移動する回数。" + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "天井面の表面に近づく際にインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、インフィル密度まで達します。" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "天井面より下に遠ざかる際にサポートのインフィル密度が半減する回数。天井面に近い領域ほど高い密度となり、サポートのインフィル密度になります。" + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "オクテット" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "オフ" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "オブジェクトのX方向に適用されるオフセット。" + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "オブジェクトのY方向に適用されるオフセット。" + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "オブジェクトのZ方向に適用されるオフセット。これにより、オブジェクトが沈んでいる様子を再現できます。" + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "エクストルーダーのオフセット" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "可能な場合はビルドプレート上に配置" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "必要に応じてモデル上に配置" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "1つずつ" + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "最後のエクストルーダーのみ" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "移動中に印刷部品への衝突を避けるため、水平移動で回避できない造形物上を移動するときは、Zホップを実行します。" + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "メッシュの最後のレイヤーでのみアイロンをかけます。下層にて滑らかな表面仕上げを必要としない場合、時間を節約します。" + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze Shield角度" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze Shield距離" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "最適な枝範囲" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "ウォール印刷順序を最適化" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "引き戻しと移動距離を減らすために、壁のプリント順序を最適化します。ほとんどの部品がこの設定を有効にしている方が良い印刷結果につながりますが、実際には時間がかかることがありますので、最適化の有無に関わらず印刷時間を比較してください。ビルドプレートの接着タイプにブリムを選択すると最初のレイヤーは最適化されません。" + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "ノズル外径" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外側ウォール加速度" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "外側ウォールの終了時減速度" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "外側ウォールにおける終了速度の比率" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外側ウォール用エクストルーダー" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外側ウォールのフロー" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外側ウォールはめ込み" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外側ウォールジャーク" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "外側ウォールライン幅" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "外側ウォール速度" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "外側ウォールでの速度スプリットの距離" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "外側ウォール開始時加速度" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "外側ウォールにおける開始速度の比率" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外側ウォールワイプ距離" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同じレイヤー内の異なる島の外側ウォールは順次印刷されます。有効にすると、ウォールは1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島のウォールがグループ化されるため、島間の移動回数が減少します。" + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "外側のみ" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "外側から内側へ" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "オーバーハングウォール角" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "オーバーハングウォール速度" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "オーバーハングするウォールは、通常のプリント速度に対し設定したパーセントの速度でプリントされます。複数の値を指定でき、オーバーハングしたウォールが増えるごとに遅くすることができます。設定例:[75, 50, 25]" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "引き戻し前に一時停止します。" + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "ブリッジウォールとスキンを印刷する際に使用するファン速度の割合。" + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "サポートを超えた直後にスキン領域に印字するときに使用するファン速度を割合で示します。高速ファンを使用すると、サポートが取り外しやすくなります。" + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Zシームをポリゴンの頂点に配置します。これをオフに切り替えることで、頂点と頂点の間にもシームを配置できます。(サポートのないオーバーハングへのシーム配置制限は上書きされないことに留意してください。)" + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンが除外されます。値を小さくすると、スライス時間が増加しますがメッシュの解像度が高くなります。多くの場合、高解像SLAプリンターや非常に小さく細かい3Dモデル向けの設定です。" + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "希望枝角度" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "圧力推進係数" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "1つ外側のウォールと1つ内側のウォールの間を行き来することを防止します。このマージンは、続くライン幅の範囲を[最小ウォールライン幅 - マージン, 2 * 最小ウォールライン幅 + マージン]に拡張します。このマージンを増やすと移行の回数が減り、押出の開始/停止回数が減少し、移動時間が短縮されます。ただし、ライン幅の変化が大きいと、押出不足や押出過多の問題が発生する場合があります。" + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "プライムタワー加速度" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "プライムタワーベース" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "プライムタワーベースの高さ" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "プライムタワーベースのサイズ" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "プライムタワーベースの傾斜" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "プライムタワーのフロー" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "プライムタワージャーク" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "プライムタワーのライン幅" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "プライムタワーの最大ブリッジ距離" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "プライムタワーにおけるシェル厚さの最小値" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "プライムタワー最小容積" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "プライムタワーラフトライン間隔" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "プライムタワーのサイズ" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "プライムタワー印刷速度" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "プライムタワーのタイプ" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "プライムタワーX位置" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "プライムタワーY位置" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "印刷加速度" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "プリントコア" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "印刷ジャーク" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "印刷プロセスレポート" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "印刷頻度" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "印刷速度" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "薄いウォールを印刷" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "モデルの外側、内側、またはその両方にブリムを印刷します。モデルによっては、これによりベッドの適切な接着を確保しながら、後で取り外す必要があるブリムの量を減らすことができます。" + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "印刷物の隣に、ノズルを切り替えた後の材料でタワーを作成します。" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "底面のラインを一方向に揃えることで、隣接するラインと常に重なり合います。これによりわずかに印刷時間がかかりますが、平面がより一貫した見た目になります。" + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "面材構造を印刷するには、モデルの上部がサポートされている必要があります。これを有効にすると、印刷時間と材料の使用量が減少しますが、オブジェクトの強度が不均一になります。" + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "アイロンラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "型を取るため印刷し、ビルドプレート上の同じようなモデルを得るためにキャスト用の印刷をします。" + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "ノズルサイズよりも細い壁を作ります。" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "ラフト上層部のラインを、常に単一方向の隣接するラインと重なる順序で印刷します。これにより印刷に少し時間がかかりますが、モデルの表面や底面の見た目がより均一になります。" + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "印刷温度制限" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "印刷温度警告" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "ウォールより前にインフィルをプリントします。ウォールからプリントするとより精密な壁になりますが、オーバーハングのプリントは悪化します。インフィルからプリントすると丈夫な壁になりますが、インフィルの模様が時折表面から透けて表れます。" + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "上面/底面のラインを、隣接するラインと常に一方向で重なるような順序でプリントします。これにより、プリントにかかる時間は少し長くなりますが、平らな面の見た目の一貫性が高まります。" + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "印刷温度" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "初期レイヤー印刷温度" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "最も内側のスカートラインを複数のレイヤーに分けてプリントすることで、スカートを取り外しやすくします。" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "すべてのレイヤーごとに予備のウォールを印刷します。これによりインフィルは追加の壁に挟まれ、より強い印刷物が得られます。" + +msgctxt "resolution label" +msgid "Quality" +msgstr "品質" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "クォーターキュービック" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "ラフト" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "ラフト間のラップ" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "ラフト土台の追加マージン" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "ラフト土台用エクストルーダー" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "ラフト土台ファン速度" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "ラフト土台フロー量" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "ラフト土台でのインフィルの重なり" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "ラフト土台でのインフィルの重なり (%)" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "ラフト土台のライン間隔" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "ラフト土台のライン幅" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "ラフト土台の印刷加速度" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "ラフト土台の印刷ジャーク" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "ラフト土台の印刷速度" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "ラフト土台のスムージング" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "ラフト土台の厚さ" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "ラフト土台のウォール数" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "ラフトの追加マージン" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "ラフトのファン速度" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "ラフトフロー" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "ラフト境界面フロー量" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "ラフト境界面でのインフィルの重なり" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "ラフト境界面でのインフィルの重なり (%)" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "ラフト境界面のZオフセット" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "ラフト中間層の追加マージン" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "ラフト中間層用エクストルーダー" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "ラフト中間層ファン速度" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "ラフト中間層レイヤー数" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "ラフト中間層ライン幅" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "ラフト中間層印刷加速度" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "ラフト中間層印刷ジャーク" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "ラフト中間層印刷速度" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "ラフト中間層スムージング" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "ラフト中間層スペース" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "ラフト中間層の厚さ" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "ラフト中間層のウォール数" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "ラフト印刷加速度" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "ラフト印刷ジャーク" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "ラフト印刷速度" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "ラフトスムージング" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "ラフト表層フロー量" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "ラフト表面でのインフィルの重なり" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "ラフト表面でのインフィルの重なり (%)" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "ラフト表層のZオフセット" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "ラフト上層部の追加マージン" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "ラフト上層部用エクストルーダー" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "ラフト上層部ファン速度" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "ラフト上層部の厚さ" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "ラフト上層部レイヤー数" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "ラフト上層部ライン幅" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "ラフト上層層印刷加速度" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "ラフト上層部印刷ジャーク" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "ラフト上層部印刷速度" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "ラフト上層部のスムージング" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "ラフト上層部スペース" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "ラフト上層部のウォール数" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "ラフトのウォール数" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "ランダム" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "インフィル開始のランダム化" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "どのインフィルラインが最初に印刷されるかをランダム化します。これによって1つのセグメントが強くなることを回避しますが、追加の移動距離が必要となります。" + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "外側のウォールを印刷する際ランダムに振動を起こし、表面を粗くぼやけた見た目にします。" + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "長方形" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "標準ファン速度" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "標準ファン速度時の高さ" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "標準ファン速度時のレイヤー" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "標準/最大ファン速度のしきい値" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相対押出" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "全穴除去" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "空の最初のメッシュの削除" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "重複メッシュの削除" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "ラフト土台内側の角を削除" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "ラフト内側コーナーの削除" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "ラフト中間層内側の角を削除" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "ラフト上層部の内側の角を削除" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "複数のメッシュが重なっている領域を削除します。これは、結合された2つの材料のオブジェクトが互いに重なっている場合に使用されます。" + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "最初に印刷したレイヤーの下に空のレイヤーがある場合は取り除きます。この設定を無効にすると、スライストレランスが「排他」または「中間」に設定されている場合に最初のレイヤーが空になる原因になります。" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "ラフト土台から内側の角を取り除き、ラフトを凸状にします。" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "ラフト中間層から内側の角を取り除き、ラフトを凸状にします。" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "ラフト上層部から内側の角を取り除き、ラフトを凸状にします。" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "ラフトから内側コーナーを削除し、ラフトが凸になるようにします。" + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "各レイヤーの穴を消し、外形のみを保持します。これにより、見えない部分の不要な部分が無視されますが、表面上にある穴も全て造形されなくなります。" + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "上部/下部パターンの最も外側の部分を同心円の線で置き換えます。 1つまたは2つの線を使用すると、インフィル材料で開始するトップ部分の造形が改善されます。" + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "設定されたしきい値を超えたイベントのレポート" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "フローの継続時間をリセット" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "土台設定" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "外側ウォールの前に引き戻す" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "レイヤー変更時に引き戻す" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しない領域を移動する際にフィラメントを引き戻します。" + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "ノズルが印刷しない領域を移動する際にフィラメントを引き戻します。" + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "ノズルは次の層に移動するときフィラメントを引き戻します。" + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "引き戻し距離" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "引き戻し後の押し出し量" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "引き戻し最小移動距離" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "引き戻し後の押し戻し速度" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "引き戻し速度" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "引き戻し速度" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "ファン速度を0~1にスケール" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "ファン速度を0~256ではなく、0~1でスケールします。" + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "スケールファクタ収縮補正" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "スカーフシームの長さ" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "スカーフシームを開始する高さ" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "スカーフシームのステップ長" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "シーンにサポートメッシュがある" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "シームコーナー設定" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "シームオーバーハンギング ウォール角度" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手動で印刷順序を設定する" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "デュアルエクストルーダーで印刷するための設定。" + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共有ノズルの初期引き戻し" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "鋭い角" + +msgctxt "shell description" +msgid "Shell" +msgstr "外郭" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "プリンターのバリエーションの表示" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "スキンエッジサポートレイヤー" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "スキンエッジサポートの厚さ" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "表面拡張距離" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "表面の重なり" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "表面の重なり (%)" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "表面除去幅" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "これより狭いスキン領域は拡張されません。モデル表面に、垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避するためです。" + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Nミリメートルごとに1度、サポートの接続をスキップして、サポート材を外れやすくします。" + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "スカート" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "スカート距離" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "スカート高さ" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "スカートライン数" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "スカート/ブリム加速度" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "スカート/ブリムエクストルーダー" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "スカート/ブリムのフロー" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "スカート/ブリムジャーク" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "スカート/ブリムラインの幅" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "スカート/ブリム最小長さ" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "スカート/ブリム速度" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "スライス公差" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "小型形体の初期レイヤー速度" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "小型形体の最大長さ" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "小さな機能の速度" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小さい穴の最大サイズ" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小さいレイヤーのプリント温度" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "表面の小さな上部/下部" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "小さい上下幅" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "小さな上部/下部領域は、デフォルトの上部/下部パターンの代わりにウォールで構成されます。これにより、ぎくしゃくした動きを防げます。デフォルトでは最上位の(空気にさらされている)レイヤーはオフになっています(「表面の小さな上部/下部」を参照)。" + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "スマートブリム" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "スマート・シーム" msgctxt "smooth_spiralized_contours label" msgid "Smooth Spiralized Contours" @@ -4874,826 +3628,2630 @@ msgctxt "smooth_spiralized_contours description" msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." msgstr "らせん状の輪郭を滑らかにしてZシームの視認性を低下させます (Zシームは印刷物上でほとんどみえませんが、層ビューでは確認できます)。スムージングは、細かい表面の詳細をぼかす傾向があることに注意してください。" -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相対押出" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeの後処理が容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" - -msgctxt "experimental label" -msgid "Experimental" -msgstr "実験" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "これからもっと充実させていく機能です。" - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "スライス公差" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。排他は最も細かく、包括は最もフィットし、中間は元の表面に最も近くなります。" - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "中間" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "排他" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包括" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "インフィル移動最適化" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "フロー温度グラフ" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "マテリアルフロー(毎秒 3mm) と温度 (° c) をリンクします。" - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小ポリゴン円周" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "この量よりも小さい円周を持つスライスレイヤーのポリゴンは、除外されます。値を小さくすると、スライス時間のコストで、メッシュの解像度が高くなります。つまり、ほとんどが高解像 SLA プリンター、極小多機能 3D モデルです。" - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "インターロック構造の生成" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "モデルが接触する箇所に、インターロックビーム構造を生成します。その結果、モデル、特に異なる材料でプリントされたモデル間の密着性が向上します。" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "インターロックビーム幅" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "インターロック構造ビームの幅。" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "インターロック構造の向き" - -msgctxt "interlocking_orientation description" -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 "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "インターロックビームレイヤー数" - -msgctxt "interlocking_beam_layer_count description" -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 "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "インターロックの奥行" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると密着性が低下します。" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "インターロック境界回避" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "接続部分のサポート分割" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "サポートラインの接続部分をスキップし、サポート材部分を壊れやすくします。この設定はジグザクのサポートインフィル材のパターンにて適用できます。" - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "サポート分割サイズ" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "サポート毎行Nミリ時に、サポートの接続をわざと外し、後のサポート材の構造をもろくし、壊れやすくする。" - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "サポート分割ライン数" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "毎行Nミリ時に、サポートの接続をわざとスキップし、後のサポート材の構造をもろくし、壊れやすくする。" - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "ドラフトシールドを有効にする" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "ドラフトシールドとX/Yの距離" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "ドラフトシールドと造形物のX / Y方向の距離。" - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "ドラフトシールドの制限" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "ドラフトシールドの高さを設定します。ドラフトシールドは、モデルの全高、または限られた高さで印刷するように選択します。" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "制限なし" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "制限あり" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "ドラフトシールドの高さ" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "ドラフトシールドの高さ制限。この高さを超えるとドラフトシールドが印刷されません。" - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "オーバーハング印刷可能" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "最小限のサポートが必要となるように印刷モデルのジオメトリを変更します。急なオーバーハングは浅いオーバーハングになります。オーバーハングした領域は、より垂直になるように下がります。" - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大モデル角度" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。" - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "オーバーハングした穴の最大領域" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0 mm²の場合、モデル底部にあるすべての穴は充填されます。" - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "コースティングを有効にする" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "コースティングは、それぞれの造形ラインの最後の部分をトラベルパスで置き換えます。はみ出た材料は、糸引きを減らすために造形ライン最後の部分を印刷するために使用される。" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "コースティングのボリューム" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "コースティング前の最小ボリューム" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "コースティングに必要な最小の容積。より小さい押出経路の場合、ボーデンチューブにはより少ない圧力しか蓄積されないので、コースティングの容積は比例する。この値は、常に、コースティングのボリュームよりも大きな必要があります。" - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "コースティング速度" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "コースティング中の移動速度。印刷時の経路の速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "3Dクロスポケットのサイズ" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "クロス画像のインフィル密度" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "サポート用クロス画像のインフィル密度" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "円錐サポートを有効にする" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "オーバーハング部分よりも底面の支持領域を小さくする。" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "円錐サポートの角度" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "円錐形のサポートの傾きの角度。 0度は垂直であり、90度は水平である。角度が小さいと、サポートはより頑丈になりますが、より多くのマテリアルが必要になります。負の角度は、サポートのベースがトップよりも広くなります。" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "円錐サポートの最大幅" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "円錐形のサポート領域のベースが縮小される最小幅。幅が狭いと、サポートが不安定になる可能性があります。" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "ファジースキン" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "外壁を印刷する際に振動が起こり、表面が粗くてぼやける。" - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "ファジースキン外のみ" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "部品の輪郭のみに振動が起こり、部品の穴には起こりません。" - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "ファジースキンの厚さ" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "振動が起こる幅。内壁は変更されていないので、これを外壁の幅より小さく設定することをお勧めします。" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "ファジースキンの密度" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "ファジースキン点間距離" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量補正時の最大抽出オフセット" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。" - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量補正要因" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "流量の変化を補正するためにフィラメントを移動する距離。フィラメントが1秒の押出で移動する距離の割合として指定します。" - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "適応レイヤーの使用" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "適応レイヤーは、レイヤーの高さをモデルの形状に合わせて計算します。" - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "適応レイヤー最大差分" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "基準レイヤー高さと比較して許容される最大の高さ。" - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "適応レイヤー差分ステップサイズ" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "適応レイヤーのトポグラフィーサイズ" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "張り出し壁アングル" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "張り出し壁速度" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "張り出し壁は、この割合で通常の印刷速度で印刷されます。" - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "ブリッジ設定を有効にする" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "ブリッジを検出し、ブリッジを印刷しながらて印刷速度、フロー、ファンの設定を変更します。" - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "ブリッジ壁の最小長さ" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "ブリッジスキンサポートのしきい値" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "対象領域に対してこのパーセンテージ未満のスキン領域がサポートされている場合、ブリッジ設定で印刷します。それ以外の場合は、通常のスキン設定で印刷します。" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "ブリッジスパースインフィル最大密度" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "スパース(疎)であると見なされるインフィルの最大密度。スパースインフィル上のスキンは、サポートされていないと見なされるため、ブリッジスキンとして扱われる可能性があります。" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "ブリッジ壁コースティング" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "ブリッジ壁速度" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "ブリッジ壁を印刷する速度。" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "ブリッジ壁フロー" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "ブリッジスキン速度" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "ブリッジスキン領域が印刷される速度。" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "ブリッジスキンフロー" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "ブリッジスキンの密度" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "ブリッジファン速度" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "ブリッジ壁とスキンを印刷する際に使用するファン速度の割合。" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "ブリッジを構成する多重レイヤー" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "有効な場合、空気上部の第二および第三レイヤーは以下の設定で印刷されます。それ以外の場合は、それらのレイヤーは通常の設定で印刷されます。" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "ブリッジセカンドスキンの速度" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "ブリッジセカンドスキンのフロー" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "ブリッジセカンドスキンの密度" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "ブリッジセカンドスキンのファン速度" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "セカンドブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "ブリッジサードスキンの速度" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用する印刷速度。" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "ブリッジサードスキンのフロー" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "ブリッジサードスキンの密度" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "ブリッジサードスキンのファン速度" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "サードブリッジのスキンレイヤーを印刷する際に使用するファン速度の割合。" - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "レイヤー間のノズル拭き取り" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "ワイプ間の材料の量" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "別のノズル拭き取りを行う前に押し出せる材料の最大量。この値がレイヤーに必要な材料の量よりも小さい場合、この設定はこのレイヤーには影響しません。つまり、レイヤーごとに1つの拭き取りに制限されます。" - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "ワイプリトラクト有効" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "ノズルが印刷しないで良い領域を移動する際にフィラメントを引き戻す。" - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "ワイプリトラクト無効" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "拭き取りシーケンス中に出ないように押し戻すフィラメントの量。" - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "ワイプ引き戻し時の余分押し戻し量" +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "材料によっては移動中に滲み出てきてしまう場合があり、これにより調整できます。" msgctxt "wipe_retraction_extra_prime_amount description" msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "いくつかの材料は、ワイプ移動中ににじみ出るためここで補償することができます。" +msgstr "材料によってはワイプ移動中に滲み出てきてしまう場合があり、これにより調整できます。" -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "ワイプリトラクト速度" +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特別モード" -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" +msgctxt "speed description" +msgid "Speed" +msgstr "スピード" -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "ワイプ引き戻し速度" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "ワイプ引き戻し下準備速度" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "ワイプ一時停止" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "引き戻し前に一時停止します。" - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "ワイプZホップ" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "ワイプZホップ高さ" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Zホップを実行するときの高さ。" - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "ワイプホップ速度" +msgctxt "speed label" +msgid "Speed" +msgstr "スピード" msgctxt "wipe_hop_speed description" msgid "Speed to move the z-axis during the hop." msgstr "ホップ中に z 軸を移動する速度。" -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "ワイプブラシXの位置" +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "滑らかな外側輪郭" -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "ワイプスクリプトを開始するX位置。" +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Z軸の外側のエッジの動きを滑らかにします。全体の印刷に安定したZの動きを促し、この機能によりソリッドのモデルを固定した底辺と単一のウォールの印刷にします。この機能は各レイヤーが単一の部品を含んでいる場合のみに有効です。" -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "ワイプ繰り返し回数" +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "スタンバイ温度" -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "ブラシ全体をノズルが移動する回数。" +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "開始G-Code" -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "ワイプ移動距離" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "開始G-Codeを必ず最初に実行" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "レイヤーの経路始点。連続するレイヤー経路が同じポイントで開始すると、縦のシームが印刷に表示されることがあります。ユーザーが指定した場所の近くでこれらを整列させる場合、継ぎ目は最も簡単に取り除くことができます。無作為に配置すると、経路開始時の粗さが目立たなくなります。最短経路をとると、印刷が速くなります。" + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "ミリメートルあたりのステップ (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "ミリメートルあたりのステップ (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "ミリメートルあたりのステップ (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "ミリメートルあたりのステップ (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "サポート" + +msgctxt "support label" +msgid "Support" +msgstr "サポート" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "サポート加速度" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "サポート底部距離" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "サポート底面ウォールライン数" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "サポートブリムのライン数" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "サポートブリムの幅" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "サポート分割ライン数" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "サポート分割サイズ" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "サポート密度" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "サポート距離優先順位" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "サポート用エクストルーダー" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "サポートフロア加速度" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "サポートフロア密度" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "サポートフロアエクストルーダー" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支持材床面フロー" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "サポートフロア水平拡張" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "サポートフロアジャーク" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "サポートフロアライン方向" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "サポートフロアライン距離" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "サポートフロアのライン幅" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "サポートフロアパターン" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "サポートフロア速度" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "サポートフロア厚さ" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支持材のフロー" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "サポート水平拡張" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "サポートインフィル加速度" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "サポートインフィル密度を初期層の倍数にする" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "サポート用インフィルエクストルーダー" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "サポートインフィルジャーク" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "サポートインフィルレイヤー厚さ" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "サポートインフィルラインの向き" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "サポートインフィル速度" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "サポート境界面加速度" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "サポート境界面密度" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "サポート境界面用エクストルーダー" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "サポート境界面フロー" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "サポート境界面水平拡張" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "サポート境界面ジャーク" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "サポート境界面のライン方向" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "サポート境界面のライン幅" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "サポート境界面パターン" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "サポート境界面の優先順位" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "サポート境界面の速度" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "サポート境界面の厚さ" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "サポート境界面のウォールライン数" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "サポートジャーク" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "サポート接合距離" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "サポートライン距離" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "サポートライン幅" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "サポートメッシュ" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "サポートオーバーハング角度" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "サポートパターン" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "サポート配置" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "サポートルーフ加速度" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "サポートルーフ密度" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "サポートルーフエクストルーダー" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支持材天井面フロー" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "サポートルーフ水平拡張" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "サポートルーフジャーク" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "サポートルーフライン方向" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "サポートルーフライン距離" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "サポートルーフのライン幅" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "サポートルーフパターン" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "サポートルーフ速度" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "サポートルーフ厚さ" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "サポートルーフウォールライン数" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "サポート速度" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "サポート階段高さ" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "サポート階段最大幅" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "サポートステアステップ最小傾斜角度" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "サポート構造" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "サポート上部距離" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "サポートウォールライン数" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "サポートX/Y距離" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "サポートZ距離" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "サポートZシームをモデルから離す" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "サポートラインを優先" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "サポートを優先" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "サポート対象スキンファン速度" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面エネルギー" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面モード" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面の接着傾向。" + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面エネルギー。" + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "最も内側のブリムラインと2番目に内側のブリムラインのプリント順序を入れ替えます。これにより、ブリムを取り外しやすくします。" + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "重複するメッシュがどのレイヤーに属しているかを切り替えることで、重なったメッシュが絡み合うようにします。この設定をオフにすると、一方のメッシュは重複内すべてのボリュームを取得し、他方のメッシュは他から削除されます。" + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "隣接する2つのレイヤー間の目標水平距離。この設定を小さくすると、レイヤーのエッジが近づくように薄いレイヤーが使用されます。" + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "各レイヤーの印刷を開始する基準地点のX座標。" + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "レイヤー内の各印刷を開始するX座標の位置。" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時における主要ノズル地点のX座標。" + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "各レイヤーの印刷を開始する基準地点のY座標。" + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所の近くのY座標。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時における主要ノズル地点のY座標。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "プリント開始時における主要ノズル地点のZ座標。" + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "初期レイヤーの印刷中の加速度。" + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "初期レイヤーの加速度。" + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "初期レイヤーに適用される移動加速度。" + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "初期レイヤーに適用される移動加速度。" + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "内側のウォールがが出力される際のスピード。" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "底面レイヤーが印刷される際の加速度。" + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "インフィルの印刷の加速スピード。" + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "アイロン時の加速度。" + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "印刷の加速スピードです。" + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "ラフトの底面印刷時の加速度。" + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "底面内側ウォールが印刷される際の加速度。" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "底面の最も外側のウォールが印刷される際の加速度。" + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "サポートのフロアが印刷される加速度。より低い加速度で印刷すると、モデル上のサポートの接着性を向上させることができます。" + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "インフィルのサポート材のプリント時の加速度。" + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "ラフトの中間層印刷時の加速度。" + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "最も外側のウォールをプリントする際の加速度。" + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "プライムタワーの印刷時のスピード。" + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "ラフト印刷時の加速度。" + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "サポートの上面と下面が印刷される加速度。低加速度で印刷するとオーバーハングの品質が向上します。" + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "サポートの上面がプリントされる加速度、低加速度で印刷するとオーバーハングの品質が向上します。" + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "スカートとブリム印刷時の加速度。通常、初期レイヤーの印刷スピードにて適用されるが、異なる速度でスカートやブリムを印刷したい場合使用できる。" + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "サポート材プリント時の加速スピード。" + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "ラフトの上層部印刷時の加速度。" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "最上部内側のウォールをプリントする際の加速度。" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "最上部の最も外側のウォールが印刷される際の加速度。" + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "ウォールをプリントする際の加速度。" + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "上部表面プリント時の加速度。" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーの印刷加速度。" + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "移動中の加速度。" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "ラフト土台のプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フロー量を増やすことで、接着力やラフト構造の強度を向上させることができます。" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "ラフト境界面のプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フローを増やすことで、接着力やラフト構造の強度を向上させることができます。" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "ラフトのプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フローを増やすことで、接着力やラフト構造の強度を向上させることができます。" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "ラフト表面のプリント中に押出す材料の量(通常の押出ラインに対する相対的な量)。フロー量を増やすことで、接着力やラフト構造の強度を向上させることができます。" + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "通常のスキンラインに対してアイロン時にノズルから吐出するフィラメントの量。ノズルが常に材料で満たされた状態を保つことで、表面の溝を埋めるのに役立ちます。ただし多過ぎると側面が粗くなります。" + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルのライン幅に対する割合で示される、インフィルとウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルとラフト土台のウォールが重なる量(インフィルラインの幅に対する割合)。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルとラフト土台のウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルとラフト境界面のウォールが重なる量(インフィルラインの幅に対する割合)。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルとラフト境界面のウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルとラフト表面のウォールが重なる量(インフィルラインの幅に対する割合)。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルとラフト表面のウォールが重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "インフィルと壁が重なる量。わずかな重なりにより、ウォールがインフィルにしっかりと接続されます。" + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "エクストルーダー切り替え時の引き込み量。引き込みを行わない場合は0に設定します。これは通常、ヒートゾーンの長さと同じに設定します。" + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "水平面とノズル直上の円錐部分との間の角度。" + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "タワーの屋上の角度。値が高いほど尖った屋根が得られ、値が低いほど屋根が平らになります。" + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "型の外側の壁のオーバーハングの角度です。0度にすると垂直の外殻をつくります。 90度は輪郭に従いモデルの外側の外殻をつくります。" + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "基部に向かって徐々に太くなる枝の直径の角度。角度が0の場合、枝の太さは全長にわたって同じになります。少し角度を付けると、ツリーサポートの安定性が高まります。" + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "円錐形のサポートの傾きの角度。 0度は垂直で、90度は水平になります。角度が小さいとサポートはより頑丈になりますが、より多くの材料が必要になります。負の角度は、サポートのベースがトップよりも広くなります。" + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "レイヤー内の各ポリゴンに導入されたポイントの平均密度。ポリゴンの元の点は破棄されるため、密度が低いと解像度が低下します。" + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "各線分に導入されたランダム点間の平均距離。ポリゴンの元の点は破棄されるので、積層の値を低くすることで、なめらかな仕上がりになります。この値は、ファジースキンの厚さの半分よりも大きくなければなりません。" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "使用されている材料のブランドです。" + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "プリントヘッド移動のデフォルトの加速度。" + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "印刷中のデフォルトの温度。これは材料の基本温度となります。他のすべての造形温度はこの値に基づいてオフセットされます" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "加熱式ビルドプレートのデフォルト温度。これはビルドプレートの「基本」温度でます。他のすべての印刷温度はこの値に基づいてオフセットする必要があります" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "ブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "サポート構造のフロアの密度です。高い値は、サポートのよりよい接着を促します。" + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "サポート材のルーフ部分の密度を調整します。値を大きくするとオーバーハングの成功率が上がりますが、サポート材が除去しにくくなります。" + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "セカンドブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "サードブリッジスキンレイヤーの密度。100 以下の場合は、スキンライン間のギャップを増やします。" + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "造形可能領域の幅(Y方向)。" + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "特別な塔の直径。" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "ツリーサポートの最も細い枝の直径。枝は太いほど丈夫です。基部に近いところでは、枝はこれよりも太くなります。" + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "ツリーサポートの枝の上部先端の直径。" + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "材料をフィーダーに送るホイールの直径。" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "ツリーサポートの最も広い枝の直径。本体が太いほど丈夫です。本体が細いほど、ビルドプレートを占有するスペースが少なくなります。" + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "次のレイヤーの高さを前のレイヤーの高さと比べた差。" + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "一度にプリントする場合の「モデルとの安全距離」に使用される、プリントヘッドの座標です。これらの数値は最初のエクストルーダーノズルの中心線との相対値になります。ノズルの左側がX軸の最小値で、必ず負の値になります。ノズルの後方がY軸の最小値で、必ず負の値になります。X軸最大値(右側)とY軸最大値(前方)は正の値になります。ガントリーの高さはビルドプレートからガントリーの梁(はり)との距離になります。" + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "アイロンライン同士の距離。" + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "Z軸シームにおける、モデルとそのサポート構造との間の距離。" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "モデルの内側を移動する際の、ノズルとプリント済みの外側ウォールとの距離。" + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "ノズルが既に印刷された部分を移動する際の間隔。" + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "ラフトの土台層のラフトライン間の距離。間隔を広くすると、ラフトをブルドプレートから外すのが簡単になります。" + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "ラフトの中間層とラフトラインとの距離。中間層の間隔はかなり広くなければならず、ラフトの上層部を支えるために十分な密度であるべきです。" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "ラフトの上層部とラフト線との距離。サーフェスが強固になるよう、間隔は線の幅と同じなるようにします。" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "プライムタワーラフト層の独自のラフトライン間の距離です。間隔が広いと、ラフトをビルドプレートから簡単に取り除くことができます。" + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "インターロック構造を生成するモデル間の境界からの距離(セル単位)。セルが少なすぎると接着が低下します。" + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "モデルから最外線のブリムまでの距離。大きなブリムは、ビルドプレートへの接着を高めますが、有効な印刷面積も減少させます。" + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "インターロック構造が生成されないモデルの外側からの距離(セル単位で測定)。" + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "ノズルからの熱がフィラメントに伝達される距離。" + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い値の場合、スキンはインフィルのパターンに隣接しやすく、近接するウォールのレイヤーもスキンに接着しやすくなります。低い値の場合、材料の使用量を節約します。" + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い値の場合、スキンはインフィルのパターンに隣接しやすく、近接するウォールのレイヤーもスキンに接着しやすくなります。低い値の場合、材料の使用量を節約します。" + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "スキンがインフィルまで到達する距離です。高い値の場合、スキンはインフィルのパターンに隣接しやすく、近接するウォールのレイヤーもスキンに接着しやすくなります。低い値の場合、材料の使用量を節約します。" msgctxt "wipe_move_distance description" msgid "The distance to move the head back and forth across the brush." msgstr "ブラシ全体でヘッド前後に動かす距離。" -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小さい穴の最大サイズ" +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "インフィルラインのエンドポイントは短縮され、材料が節約されます。この設定は、これらのラインのエンドポイントにおけるオーバーハングの角度です。" -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "これより直径が小さな輪郭の穴とパーツは、Small Feature Speedを使用して印刷されます。" +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "印刷中にノズルが冷える際の速度。同じ値が、加熱する際の加熱速度に割当られます。" -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "小型形体の最大長さ" +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "サポートのインフィルの最初の層を印刷に使用するエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "この長さより短い輪郭の形体は、Small Feature Speedを使用して印刷されます。" +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "ラフトの最初のレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "小さな機能の速度" +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "サポートのフロア面をプリントする際に使用するエクストルーダーの列。デュアルノズル時に使用します。" -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "サポート材のインフィルを印刷に使用するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "小型形体の初期レイヤー速度" +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "ラフトの中間レイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "最初のレイヤーの小型形体は通常のプリント速度に対してこの割合でプリントされます。低速でプリントすると、接着と精度が向上します。" +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "サポートのルーフおよび底面を印刷するために使用するエクストルーダーの列。デュアルノズル時に使用されます。" -msgctxt "material_alternate_walls label" -msgid "Alternate Wall Directions" -msgstr "ウォールの代替の向き" +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "サポートのルーフ面をプリントする際のエクストルーダー列。デュアルノズル時に使用します。" -msgctxt "material_alternate_walls description" -msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." -msgstr "レイヤーやインセットについて1つおきに適用されるウォールの代替の向き。金属プリンティングの場合など、応力が蓄積される可能性がある材料に有用です。" +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "スカートまたはブリムをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "外壁をグループ化" +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "スカート/ブリム/ラフトをプリントする際のエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "同じレイヤー内の異なる島の外壁は順次印刷されます。有効にすると、壁は1つの種類ずつ印刷されるため、フローの変化量が制限されます。無効にすると、同じ島の壁がグループ化されるため、島間の移動回数が減少します。" +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "サポート材を印刷するためのエクストルーダー。複数のエクストルーダーがある場合に使用されます。" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "印刷プロセスレポート" +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "ラフトのトップレイヤーをプリントする際に使用するエクストルーダートレイン。複数のエクストルーダーがある場合に使用されます。" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "設定されたしきい値を超えたイベントのレポート" +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "インフィル造形時に使われるエクストルーダー。デュアルノズルの場合に利用します。" -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "印刷プロセスレポートを有効にする" +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "最低面のスキンを印刷時に使用するエクストルーダー列。複数のエクストルーダーがある場合に使用されます。" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "印刷プロセスのレポートを有効にして,問題の検出の可能性があるしきい値を設定します。" +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "内壁印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "フロー警告" +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "外側ウォール印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "検出するフロー警告の制限。" +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "上部と下部の表面を印刷する時に使われるエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "フロー制限" +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "上部の表面印刷用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "検出するフロー異常の制限。" +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "壁造形用のエクストルーダー。デュアルノズル印刷時に使用。" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "印刷温度警告" +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "ベースラフト層印刷時のファン速度。" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "検出するプリント温度警告の制限。" +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "ミドルラフト層印刷時のファンの速度。" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "印刷温度制限" +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "ラフト印刷時のファンの速度。" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "検出する印刷温度異常の制限。" +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "トップラフト印刷時のファンの速度。" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "ビルドボリューム温度警告" +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "画像ファイルの位置。この画像の輝度値で印刷のインフィル内の対象箇所における最小密度が決まります。" -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "検出するビルドボリューム温度の制限警告。" +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "画像ファイルの位置。この画像の輝度値でサポートの対象箇所における最小密度が決まります。" -msgctxt "bv_temp_anomaly_limit label" -msgid "Build Volume temperature Limit" -msgstr "ビルドボリューム温度制限" +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "ビルドプレートとの接着をより良くして印刷成功する可能性を向上させるために、最初の数層を残りのモデルよりも遅く印刷します。スピードはこのレイヤー数にわたって段階的に上昇します。" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "検出するビルドボリューム温度の異常の制限。" +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "モデルの第一層のラフトと最終ラフト層の隙間。この値で第1層のみを上げることで、ラフトとモデルとの間の結合を低下させる。結果ラフトを剥がしやすくします。" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "コマンドライン設定" +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "造形可能領域の幅(Z方向)。" -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "CuraエンジンがCuraフロントエンドから呼び出されない場合のみ使用される設定。" +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "型を印刷するためのモデルの水平部分上の高さ。" -msgctxt "center_object label" -msgid "Center Object" -msgstr "オブジェクト中心配置" +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間(0,0)にオブジェクトを配置するかどうか。" +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "通常速度でファンが回転するときの高さ。ここより下層レイヤーでは初期ファンのスピードから通常の速度まで徐々に増加します。" -msgctxt "mesh_position_x label" -msgid "Mesh Position X" -msgstr "メッシュ位置X" +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "ノズルの先端とガントリーシステムの高さの差(X軸とY軸)。" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "オブジェクトの X 方向に適用されたオフセット。" +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "エクストルーダースイッチ後のZホップを実行するときの高さの違い。" -msgctxt "mesh_position_y label" -msgid "Mesh Position Y" -msgstr "メッシュ位置Y" +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "オブジェクトのY 方向適用されたオフセット。" +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Zホップを実行するときの高さ。" -msgctxt "mesh_position_z label" -msgid "Mesh Position Z" -msgstr "メッシュ位置Z" +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "各レイヤーの高さ (mm)。値を大きくすると早く印刷しますが荒くなり、小さくすると印刷が遅くなりますが造形が綺麗になります。" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "オブジェクトの Z 方向に適用されたオフセット。この 'オブジェクト シンク' と呼ばれていたものを再現できます。" +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "密度が半分に切り替わる前の所定のインフィルの高さ。" -msgctxt "mesh_rotation_matrix label" -msgid "Mesh Rotation Matrix" -msgstr "メッシュ回転マトリックス" +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "密度が半分に切り替える前の所定のサポートのインフィルの高さ。" + +msgctxt "interlocking_beam_layer_count description" +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 "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" + +msgctxt "interlocking_orientation description" +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 "インターロック構造のビームの高さ(レイヤー数単位)。レイヤーが少ないほど強度は高くなりますが、欠陥が発生しやすくなります。" + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "初期レイヤーの高さ (mm)。初期レイヤーが厚くなるとビルドプレートに接着しやすくなります。" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "プライムタワーベースの高さです。この値を増やすと、ベースが広くなるためプライムタワーがより頑丈になります。この設定が低すぎると、プライムタワーは頑丈なベースを持たなくなります。" + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "モデルにのっている階段状のサポートの底のステップの高さ。値を小さくするとサポートを除去するのが困難になりますが、値が大きすぎるとサポートの構造が不安定になる可能性があります。ゼロに設定すると、階段状の動作をオフにします。" + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "最初のブリムラインとプリントの最初のレイヤーの輪郭との間の水平距離。小さなギャップがあると、ブリムの取り外しが容易になり、断熱性の面でもメリットがあります。" + +msgctxt "skirt_gap description" +msgid "" +"The horizontal distance between the skirt and the first layer of the print.\n" +"This is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "" +"スカートと印刷の最初の層の間の水平距離。\n" +"これは最小距離です。複数のスカートラインがこの距離から外側に拡張されます。" + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "インフィルラインは矯正され、プリント時間が節約されます。これは、インフィルラインの全長にわたって許可されるオーバーハングの最大角度です。" + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "インフィルパターンはX軸に沿ってこの距離を移動します。" + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "インフィルパターンはY軸に沿ってこの距離を移動します。" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "ノズルの内径。標準以外のノズルを使用する場合は、この設定を変更してください。" + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "ベースラフト層印刷時のジャーク。" + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "ミドルラフト層印刷時のジャーク。" + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "ラフト印刷時のジャーク。" + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "トップラフト層印刷時のジャーク。" + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "削除するスキンエリアの最大幅。この値より小さいすべてのスキンエリアが削除されます。これにより、モデルの傾斜表面の上部/下部スキンに費やす時間や材料の量を制限できます。" + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "削除するスキンエリアの最大幅。この値より小さいすべてのスキンエリアは削除されます。これにより、モデルの傾斜表面の上部/下部スキンに費やす時間や材料の量を制限できます。" + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "削除するスキンエリアの最大幅。この値より小さいすべてのスキンエリアが削除されます。これにより、モデルの傾斜表面の上部/下部スキンに費やす時間や材料の量を制限できます。" + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "ビルドファンが最大速度で回転するレイヤー。この値は計算され整数に丸められます。" + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "ファンが通常の速度で回転する時のレイヤー。通常速度のファンの高さが設定されている場合、この値が計算され、整数に変換されます。" + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "通常速度と最速の間でしきい値を設定する積層時間。この時間よりも遅く印刷する積層は、通常速度を使用します。より速い層の場合、ファンは最高速度に向かって徐々に加速します。" + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "引き戻される材料の長さ。" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "プライムタワーベースの傾斜に使用される倍率係数です。この値を増やすと、ベースが細くなります。減らすと、ベースが厚くなります。" + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "プリンターに取り付けられているビルドプレートの材料です。" + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "基準レイヤーの高さと比較して許容される最大の高さ。" + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "壁(ooze shield)作成時の最大の角度。 0度は垂直であり、90度は水平である。角度を小さくすると、壁が少なくなりますが、より多くの材料が使用されます。" + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "印刷可能になったオーバーハングの最大角度。 0°の値では、すべてのオーバーハングがビルドプレートに接続されたモデルの一部に置き換えられます。90°では、モデルは決して変更されません。" + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "モデルを中心に枝を伸ばす際の枝の最大角度。枝を垂直で安定したものにするためには小さい角度を使用します。高さを得るためには大きい角度を使用します。" + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "モデル底部にある穴の最大領域(「オーバーハング印刷可能」で削除する前の値)。これより小さい穴は保持されます。値が0mm²の場合、モデル底部にあるすべての穴は充填されます。" + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "最大解像度設定の解像度を下げるときに許容される最大偏差です。これを大きくすると印刷の精度は低くなりますが、g-codeは小さくなります。最大偏差は最大解像度の限度であるため、最大偏差でこの2つが競合する場合には常にtrueとなります。" + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "サポート材間におけるX/Y軸方向の最大距離。サポート材同士の距離がこの値よりも近い場合、サポート材は1つにマージされます。" + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "流量の変化を補正するためにフィラメントを移動する最大距離(mm)。" + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "直線から中間点を削除する際に許容される、押出領域の最大偏差。長い直線では中間点が幅の変化点の役割を果たすこともあります。そのため、中間点を削除すると、ラインの幅が均一になり、結果として押出領域が少し減る(または増える)ことになります。この値を大きくすると、削除が許容される幅の変化点となる中間点が増えるため、真っ直ぐで平行なウォールの間で多少の押出不足(または過多)が発生する場合があります。プリントの精度は落ちますが、G-codeは小さくなります。" + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "初期レイヤー印刷中の最大瞬時速度の変化。" + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "プリントヘッドの最大瞬間速度の変更。" + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "アイロン時の最大加速度。" + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "内側のウォールがプリントされれう際の最大瞬間速度の変更。" + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "底面スキンレイヤーをプリントする際の最大瞬間速度変化です。" + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "インフィルの印刷時の瞬間速度の変更。" + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "底面内側ウォールをプリントする際の最大瞬間速度変化です。" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "底面の最も外側のウォールをプリントする際の最大瞬間速度変化です。" + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "どのサポートのフロア部分を印刷するかによって最大瞬間速度は変化します。" + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "サポート材の印刷時、最大瞬間速度の変更。" + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "外側のウォールが出力される際の最大瞬間速度の変更。" + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "プライムタワーがプリントされる際の最大瞬間速度を変更します。" + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "サポートのルーフとフロアを印刷する際の最大瞬間速度変化です。" + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "どのサポートのルーフ部分を印刷するかによって最大瞬間速度は変化します。" + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "スカートとブリムがプリントされる最大瞬時速度の変更。" + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "サポート材の印刷時の最大瞬間速度の変更。" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "上面最外壁が印刷される際の最大瞬間速度変化。" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "上面内壁が印刷される際の最大瞬間速度変化。" + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "ウォールのプリント時の最大瞬間速度を変更。" + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "上部表面プリント時の最大加速度。" + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "トップとボトムのレイヤーを印刷する際の最大瞬間速度の変更。" + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "移動開始時の瞬間速度変化の最大値。" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "空中で印刷できるブランチの最大長。" + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X方向のモーターの最大速度。" + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y方向のモーターの最大速度。" + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z方向のモーターの最大速度。" + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "フィラメントの最大速度。" + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "モデルにのっている階段のような下部のサポートのステップの最大幅。低い値にするサポートの除去が困難になり、高すぎる値は不安定なサポート構造につながります。" + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "型の外側とモデルの外側との間の最小距離です。" + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "プリントヘッドの最小移動速度。" + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加熱中、印刷を開始できる最低の温度。" + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "ノズルが冷却される前にエクストルーダーが静止しなければならない最短時間。この時間より長時間エクストルーダーを使用しない場合にのみ、スタンバイ温度に冷却されます。" + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "インフィルが追加される内部オーバーハングの最小角度。0° のとき、対象物は完全にインフィルが充填され、90° ではインフィルが提供されません。" + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "サポート材がつくオーバーハングの最小角度。0° のときはすべてのオーバーハングにサポートが生成され、90° ではサポートが生成されません。" + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "引き戻しに必要な最小移動距離。これは、短い距離内での引き戻しの回数を減らすために役立ちます。" + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "スカートまたはブリム最短の長さ。この長さにすべてのスカートまたはブリムが達していない場合は、最小限の長さに達するまで、スカートまたはブリムラインが追加されます。注:行数が0に設定されている場合、これは無視されます。" + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "中央ラインギャップフィラーのポリラインウォールの最小ライン幅。この設定は、2本のウォールラインのプリントから、2個の外側ウォールと中央の1個の中心ウォールのプリントに切り替わるモデルの厚さを決定します。最小奇数ウォールライン幅を大きくすると、最大偶数ウォールライン幅も大きくなります。最大奇数ウォールライン幅は、2×最小偶数ウォールライン幅として計算されます。" + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "通常の多角形ウォールの最小ライン幅。この設定は、1本の薄いウォールラインのプリントから、2本のウォールラインのプリントに切り替わるモデルの厚さを決定します。最小偶数ウォールライン幅を大きくすると、最大奇数ウォールライン幅も大きくなります。最大偶数ウォールライン幅は、外側ウォールライン幅 + 0.5 * 最小奇数ウォールライン幅として計算されます。" + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "最遅印刷速度。印刷の速度が遅すぎると、ノズル内の圧力が低すぎて印刷品質が低下します。" + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "スライス後の線分の最小サイズ。これを増やすと、メッシュの解像度が低くなります。これにより、プリンタが g-codeの処理速度に追いつくことができ、処理できないメッシュの詳細を取り除いてスライス速度を速めます。" + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "スライス後の移動線分の最小サイズ。これを増やすと、移動の跡が滑らかでなくなります。これにより、プリンタがg-codeの処理速度に追いつくことができますが、精度が低下します。" + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "ステアステップ効果を発揮するための、エリアの最小スロープです。小さい値を指定すると勾配が緩くなりサポートを取り除きやすくなりますが、値が非常に小さいと、モデルの他の部品に直感的に非常にわかりにくい結果が表れる場合があります。" + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "プライムタワーシェルの最小の厚さ。厚くすることでプライムタワーの強度を上げることができます。" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "オーバーハングになる押し出しを含むレイヤーでの最小時間です。これは1つのレイヤーに最低限かける時間までプリンターを強制的に遅くします。これにより、次のレイヤーを印刷する前にプリントされた材料が適切に冷却されるようになります。ヘッド持ち上げが無効かつ最低速度を下回ってしまう場合は、レイヤーの印刷時間は最小レイヤー印刷時間より短くなります。" + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "1つのレイヤーに最低限費やす時間。1つの層に必ず設定された時間を費やすため、場合によってはプリントに遅れが生じます。これにより、次の層をプリントする前に造形物を適切に冷却できます。ヘッド持ち上げが無効になっていて、最小速度を下回った場合、最小レイヤー時間よりも短くなる場合があります。" + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "十分な材料を吐出するための、プライムタワーにおける各層の最小容積。" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "モデルに接続する必要がある枝の直径は、ビルドプレートに到達する可能性のある枝とマージされて大きくなる可能性があります。この値を大きくするとプリント時間は短縮されますが、モデル上のサポート領域が大きくなります。" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3Dプリンターの機種名。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\" や \"BB 0.8\" など、エクストルーダーのノズルID。" + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたパーツを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "ノズルは、移動時に既に印刷されたサポートを避けます。このオプションは、コーミングが有効な場合にのみ使用できます。" + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "最底面のレイヤー数。下の厚さで計算すると、この値は整数に変換されます。" + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "最低面レイヤーの数です。通常、最低面はより良い品質の底面にするのに1レイヤーで十分です。" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "ラフトのベースレイヤーにある線状パターンの周囲にプリントする輪郭の数。" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "ラフトの中間層で線形パターンの周囲に印刷する輪郭の数。" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "ラフトの最上層の線形パターンの周囲に印刷する輪郭の数。" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "ラフトの線形パターンの周囲に印刷する輪郭の数。" + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "スキンエッジをサポートするインフィルレイヤーの数。" + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "ビルドプレートから上にある初期底面レイヤーの数。下の厚さで計算すると、この値は整数に変換されます。" + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "ラフトのベースと表面の間にあるレイヤーの数。これらのレイヤーがラフトの厚さの主要部分を占めています。この値を増やすと、より厚さのある丈夫なラフトになります。" + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "ブリムに使用される線数。ブリムの線数は、ビルドプレートへの接着性を向上させるだけでなく、有効な印刷面積を減少させます。" + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "サポートブリムに使用される線の数。ブリムの線数を増やすと、追加材料の費用でビルドプレートへの接着性が強化されます。" + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "ビルドボリュームを冷却するファンの数。これが0に設定されている場合、ビルドボリュームファンがないことを意味します。" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第2ラフト層の上の最上層の数。これらは、モデルが置かれる完全に塗りつぶされた積層です。 2つの層は、1よりも滑らかな上面をもたらす。" + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "最上面のレイヤー数。トップの厚さを計算する場合、この値は整数になります。" + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "上部表面のレイヤー数。通常一層で綺麗に出来上がります。" + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポートインフィルを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポート境界面の底を囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポート境界面のルーフを囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "サポート境界面を囲むウォールの数。ウォールを加えることにより、サポートの印刷の信頼性が高まり、オーバーハングを支えやすくなりますが、印刷時間が長くなり、使用する材料の量が増えます。" + +msgctxt "wall_distribution_count description" +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 "中心から数えて、変化を広げる必要のあるウォールの数。値が小さいほど、外側のウォール幅が変化しないことを意味します。" + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "ウォールの数。厚さから計算された場合、この値は整数になります。" + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "ノズルの外径。" + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "最低面レイヤーのパターンです。" + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "プリントのインフィル材料のパターンラインおよびジグザグインフィルはレイヤーごとに方向を入れ替え、材料コストを削減します。グリッド、トライアングル、トライヘキサゴン、キュービック、オクテット、クォーターキュービック、クロスおよび同心円パターンはレイヤーごとに完全にプリントされます。ジャイロイド、キュービック、クォーターキュービックおよびオクテットインフィルはレイヤーごとに変化し、各方向にかけてより均一な強度分布を実現します。ライトニングインフィルは造形物の天井のみを支えることで、インフィルを最低限にするよう試みます。" + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "サポート材の形。サポート材の除去の方法を頑丈または容易にする設定が可能です。" + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "上層のパターン。" + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "上層/底層のパターン。" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "第1層のプリントの底部のパターン。" + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "アイロンのパターン。" + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "サポートのフロアが印刷されるパターン。" + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "モデルとサポートの境界面が印刷されるパターン。" + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "サポートのルーフが印刷されるパターン。" + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "レイヤー内の各パーツの印刷を開始する場所付近の位置。" + +msgctxt "support_tree_angle_slow description" +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 "モデルを回避する必要がない場合の枝の希望角度。枝を垂直で安定したものにするためには小さい角度を使用します。迅速にマージするには枝の角度を大きくします。" + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "サポート構造の配置希望場所。構造物を希望の場所に配置できない場合は、別の場所に配置されます(モデル上に配置することになったとしても)。" + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "初期レイヤーの最大瞬時速度の変更。" + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "スカーフシーム開始時の、選択したレイヤーの高さの比率。数値が低いほどシームは高くなります。効果を得るには値を100未満にする必要があります。" + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "造形不可領域を考慮しないビルドプレートの形状。" + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "四方でクロス3Dパターンが交差するポケットの大きさはそのパターンが触れている高さ。" + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "コースティングに必要な最小の容積。より小さい造形パスの場合、ボーデンチューブにはより少ない圧力しか蓄積されないため、コースティングの容積は比例して小さくなります。この値は、常にコースティングのボリュームよりも大きくする必要があります。" + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "通常の印刷時とスタンバイ時のウィンドウで平均化された、ノズルが冷却される速度 (℃/秒) 。" + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "通常の印刷時とスタンバイ時のウィンドウで平均化された、ノズルが過熱される速度 (℃/秒) 。" + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "内側のウォールをプリントする速度。外側より内側のウォールを高速でプリントすると、印刷時間の短縮になります。外側ウォールのプリント速度とインフィルのプリント速度の中間に設定するのが適切です。" + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "底面レイヤーをプリントする際の速度です。" + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "ブリッジスキン領域が印刷される速度。" + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "インフィルを印刷する速度。" + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "印刷スピード。" + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "ベースラフト層が印刷される速度。ノズルから出てくる材料の量が増加するため、印刷がとても遅くなります。" + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "底面内側ウォールをプリントする際の速度です。" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "底面の最も外側のウォールをプリントする際の速度です。" + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "ブリッジ壁を印刷する速度。" + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "プリント開始時にファンが回転する速度。後続のレイヤーでは、ファン速度は、高さに応じて早くなります。" + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "しきい値に達する前のファンの回転スピード。プリント速度がしきい値より速くなると、ファンの速度は上がっていきます。" + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "最小積層時間でファンが回転する速度。しきい値に達すると、通常のファンの速度と最速の間でファン速度が徐々に加速しはじめます。" + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが押し戻されるスピード。" + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "ノズル スイッチ後にフィラメントが押し戻される速度。" + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "ワイプ引き戻し中にフィラメントが引き戻される時の速度。" + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "ノズル切り替え中のフィラメントの引き戻し速度。" + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "フィラメントが引き戻される時のスピード。" + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "ワイプ引き戻し移動時にフィラメントが引き戻される速度。" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "フィラメントを引き戻す速度。速度が早い程良いが早すぎるとフィラメントを削ってしまう可能性があります。" + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "フロアのサポートがプリントされる速度。低速で印刷することで、サポートの接着性を向上させることができます。" + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "サポート材のインフィルをプリントする速度。低速でプリントすると安定性が向上します。" + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "ミドルラフト層が印刷される速度。ノズルから吐出される材料の量がかなり多くなると、印刷がとても遅くなります。" + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "最も外側のウォールをプリントする速度。外側のウォールを低速でプリントすると表面の質が改善しますが、内側と外側のウォールでプリント速度の差が大きすぎると、印刷の質が悪化します。" + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "プライムタワーをプリントする速度。異なるフィラメントの印刷で接着性が最適ではない場合、低速でプライムタワーをプリントすることでより安定させることができます。" + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "冷却ファンが回転する速度。" + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "ラフトが印刷される速度。" + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "ルーフとフロアのサポート材をプリントする速度。低速でプリントするとオーバーハングの品質を向上できます。" + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "ルーフとフロアのサポート材をプリントする速度。これらを低速でプリントするとオーバーハングの品質を向上できます。" + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "スカートとブリムのプリント速度。通常は一層目のスピードと同じですが、異なる速度でスカートやブリムをプリントしたい場合に設定してください。" + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "サポート材をプリントする速度です。高速でサポートをプリントすると、印刷時間を大幅に短縮できます。サポート材は印刷後に削除されますので、サポート構造の品質はそれほど重要ではありません。" + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "トップラフト層が印刷される速度。この値はノズルが隣接するサーフェスラインをゆっくりと滑らかにするために、少し遅く印刷する必要があります。" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "上面内壁が印刷される速度。" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "上面の最外壁が印刷される速度。" + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z軸ホップに対する垂直Z軸方向移動の速度。通常、ビルドプレートまたはプリンターの台が動きにくいため印刷速度よりも遅くなります。" + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "ウォールを印刷する速度。" + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "上部表面通過時の速度。" + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "フィラメントをきれいに引き出すために維持すべきフィラメントの引き戻し速度。" + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "上部表面プリント時の速度。" + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "トップ/ボトムのレイヤーのプリント速度。" + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "移動中のスピード。" + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "コースティング中の移動速度。造形パスの速度設定に比例します。ボーデンチューブの圧力が低下するので、100%よりわずかに低い値が推奨される。" + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "初期レイヤーでの速度。ビルドプレートへの接着を改善するため低速を推奨します。ブリムやラフトなどのビルドプレート接着構造自体には影響しません。" + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "一層目をプリントする速度。ビルトプレートへの接着を向上するため低速を推奨します。" + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "最初のレイヤーを印刷する際の移動スピード。造形物がビルドプレートが剥がれてしまうのを防ぐため、低速にすることをお薦めします。この設定の値は、移動速度と印刷速度の比から自動的に計算されます。" + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "フィラメントがきれいに引き出される温度。" + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "印刷するプリンタ内の温度。これがゼロ (0) の場合、造形温度は調整できません。" + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "印刷していないノズルの温度(もう一方のノズルが印刷中)" + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "印刷終了直前に冷却を開始する温度。" + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "最初の層を印刷するために使用される温度です。" + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "印刷中の温度。" + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "最初のレイヤー印刷時の加熱式ビルドプレートの温度。これが0の場合、最初のレイヤー印刷時のビルドプレートは加熱されないままになります。" + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "加熱式ビルドプレートの温度。これが0の場合、ビルドプレートは加熱されないままになります。" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "材料のパージに使用する温度は、許容最高プリンティング温度とほぼ等しくなければなりません。" + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "プリント時の最底面の厚み。これを積層ピッチで割った値で最低面のレイヤーの数を定義します。" + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "スキンエッジをサポートする追加のインフィルの厚さ。" + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "底面または上部のモデルと接触するサポート境界面の厚さ。" + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "サポート材の底部の厚さ。これは、サポートが置かれるモデル上の積層密度を制御します。" + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "サポートのルーフの厚さ。これは、モデルの下につくサポートの上部にある密度の量を制御します。" + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "プリント時の最上面の厚み。これを積層ピッチで割った値で最上面のレイヤーの数を定義します。" + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "プリント時の最上面、最底面の厚み。これを積層ピッチで割った値で最上面、最低面のレイヤーの数を定義します。" + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "壁の厚さ。この値をラインの幅で割ることで壁の数が決まります。" + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "層ごとのインフィル材料の厚さ。この値は常にレイヤーの高さの倍数でなければなりません。" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "サポートのインフィル材料の厚さ。この値はレイヤーの倍数にする必要があり、異なる場合は倍数に近い値に設定されます。" + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "生成するG-codeの種類。" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "使用される材料の種類。" + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "はみ出るフィラメントのボリューム。この値は、一般に、ノズル直径の3乗に近い値でなければならない。" + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "造形可能領域の幅(X方向)。" + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "サポートの下に印刷されるブリムの幅。ブリムが大きいほど、材料の使用が増える代わりにビルドプレートへの接着性が強化されます。" + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "インターロック構造ビームの幅。" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "プライムタワーブリム/ベースの幅。ベースを大きくするとビルドプレートへの接着が強化されますが、有効な印刷エリアも減少します。" + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "プライムタワーの幅。" + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "振動が起こる幅。内側ウォールに対しては適用されないので、この値は外側ウォールの幅より小さく設定することをお勧めします。" + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "最大引き戻し回数が強制される幅。この値は引き戻し処理とほぼ同じで、同じ材料の塊における引き戻しが制限される場合に有効です。" + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のx座標。" + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "プライムタワーの位置のy座標。" + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "シーンにはサポートメッシュがあります。この設定はCuraで制御されます。" + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "この設定は、ブリッジ壁が始まる直前に、エクストルーダーを動かす距離を制御します。ブリッジが始まる前にコースティングすることにより、ノズル内が減圧され、ブリッジがより平らになります。" + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "外側ウォールをプリントする際における最高速度に達するまでの加速度です。" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "外側ウォールのプリントを終了する際の減速度です。" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "外側ウォールの加減速を適用するために長いパスを分割する際の造形パスの最大長です。距離が短いほど精度が上がりますが、Gコードが冗長になります。" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "外側ウォールをプリントする際における終了時の最高速度の比率です。" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "外側ウォールをプリントする際における開始時の最高速度の比率です。" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は、ラフト土台のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角はここで指定した値と等しい半径の半円に丸められます。この設定では、ラフトの輪郭にある円より小さい穴も削除されます。" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は、ラフト中間層のアウトラインの内側の角をどの程度丸くするかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定では、ラフトの輪郭にある円より小さい穴も削除されます。" + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は、ラフトの輪郭の内側の角がどの程度丸められるかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定は、そのような円よりも小さいラフトの輪郭の穴を削除します。" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "この設定は、ラフト上層部の輪郭の内側の角をどの程度丸くするかを制御します。内側の角は、ここで指定した値と等しい半径の半円に丸められます。この設定ではラフトの輪郭にある円より小さい穴も削除されます。" + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "この設定は開始G-Codeが必ず最初のG-Codeとなるよう制御します。この設定が無効の場合、T0といった他のG-Codeが開始G-Codeの前に挿入される場合があります。" + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "この設定は、決められた距離の中で起こる引き戻しの回数を制限します。制限数以上の引き戻しは無視されます。これによりフィーダーでフィラメントを誤って削ってしまう問題を軽減させます。" + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "これにより、モデルの周囲に壁ができ、熱を閉じ込め、外気の流れを遮蔽します。特に反りやすい材料に有効です。" + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "先端直径" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "材料の冷却時の収縮を補正するために、モデルはXY(水平)方向にこのファクタでスケールされます。" + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "材料の冷却時の収縮を補正するために、モデルはZ(垂直)方向にこのファクタでスケールされます。" + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "材料の冷却時の収縮を補正するために、モデルはこのスケールファクタでスケールされます。" + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "上部レイヤー" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "上面拡張距離" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "上面除去幅" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "上面内壁加速度" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "上面最外壁の最大瞬間速度変化" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "上面内壁速度" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "上面内壁の流れ" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "上面外側ウォール加速度" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "上面外側ウォールのフロー" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "上面内側ウォールジャーク" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "上面外側ウォール速度" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "最上面加速度" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "上部表面用エクストルーダー" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "上部表面スキンフロー" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "最上面ジャーク" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "上部表面レイヤー" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "最上面のラインの向き" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "最上面のライン幅" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "上部表面パターン" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "最上面速度" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "上部厚さ" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "この設定より大きい角を持つオブジェクトの上部または底部の表面は、その表面のスキンを拡大しません。これにより、モデルの表面に垂直に近い斜面がある場合に作成される狭いスキン領域の拡大を回避します。0°の角度は水平方向で、スキンは拡大しません。90°の角度は垂直方向で、すべてのスキンが拡大します。" + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "トップ/ボトム" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "トップ/ボトム" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "上面/底面加速度" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "上部/底面エクストルーダー" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "上面/下面フロー" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "上面/下面ジャーク" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "上層/底層ラインの向き" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "上下面ライン幅" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "上層/底層パターン" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "上面/底面速度" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "上部/底面の厚さ" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "ビルドプレートにタッチ" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "タワー直径" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "タワールーフ角度" msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "ファイルから読み込むときに、モデルに適用するトランスフォーメーションマトリックス。" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "サポート材の配置を調整します。配置はTouching BuildplateまたはEveryWhereに設定することができます。EveryWhereに設定した場合、サポート材がモデルの上にもプリントされます。" +msgctxt "travel label" +msgid "Travel" +msgstr "移動経路" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "移動加速度" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "移動経路の回避距離" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "トラベルジャーク" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "移動速度" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "モデルを表面のみ、ボリューム、または緩い表面のボリュームとして扱います。通常の印刷モードでは、囲まれた内部が印刷されます。 「Surface」は表面のみ印刷をして、インフィルもトップもボトムも印刷しません。 \"Both\"は通常と同様に囲まれた内部を印刷し残りのポリゴンをサーフェスとして印刷します。" + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "ツリー" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "トライヘキサゴン" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "トライアングル" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "本体直径" + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "ウォールのシームがこの角度以上にオーバーハングしないよう試みます。値が90の場合、どのウォールもオーバーハングとして扱われません。" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "吐出と動作を同期するための、圧力推進を調整する係数です。" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "変更なし" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "重複部分を統合" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "この値より短いサポートされていない壁が通常の壁設定で印刷されます。長いサポートされていない壁は、ブリッジ壁設定で印刷されます。" + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "適応レイヤーの使用" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用タワー" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "プリントヘッド移動に異なる加速度レートを使用します。これを無効にすると、プリントヘッドの移動速度は印刷範囲で加速されずに同じ速度が使用されます。" + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "プリントヘッドの移動に異なるジャーク値を使用します。これを無効にすると、印刷範囲で設定されたジャーク値を使用します。" + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "絶対押出ではなく、相対押出を使用します。相対Eステップを使用すると、G-codeのポストプロセッシングが容易になります。ただし、すべてのプリンタでサポートされているわけではありません。絶対的Eステップと比較して、材料の量にごくわずかな偏差が生じることがあります。この設定に関係なく、G-codeスクリプトが出力される前にエクストルーダーのモードは常に絶対値にて設定されています。" + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "特殊なタワーを使用して、小さなオーバーハングしているエリアをサポートします。これらの塔は、サポートできる領域より大きな直径を支えれます。オーバーハング付近では塔の直径が減少し、ルーフを形成します。" + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "このメッシュを使用して、重なる他のメッシュのインフィルを変更します。他のメッシュのインフィル領域を新たなメッシュに置き換えます。トップ/ボトムスキンがない1つの壁だけを印刷する場合のみ設定を推奨します。" + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "このメッシュを使用してサポート領域を指定します。これは、サポート構造を生成するために使用できます。" + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "このメッシュを使用して、モデルのどの部分をオーバーハングとして検出する必要がないかを指定します。これは、不要なサポート構造を削除するために使用できます。" + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "ユーザー指定" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直スケールファクタ収縮補正" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "スライスされたレイヤーにおける垂直方向の公差です。レイヤーの輪郭は通常、各レイヤーの厚さの中間を通る断面で生成されます(中間)。代わりに、レイヤーごとに、ボリューム内にレイヤーの厚さの分だけ入り込んだエリアにしたり(排他)、レイヤー内の任意の位置まで入り込んだエリアにしたりする(包括)こともできます。包括は最も細かく、排他は最もフィットし、中間は元の表面に最も近くなります。" + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "ビルドプレート加熱待ち時間" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "ノズル加熱待ち時間" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "ウォール加速度" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "ウォール分配数" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "ウォールエクストルーダー" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁のフロー" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "ウォールジャーク" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "ウォールライン数" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "ウォールライン幅" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "ウォール順序" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "ウォール速度" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁の厚さ" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "ウォール移行長さ" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "ウォール移行フィルター距離" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "ウォール移行フィルターマージン" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "ウォール移行しきい値角度" + +msgctxt "shell label" +msgid "Walls" +msgstr "ウォール" + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "ウォールのみ" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "ウォールとライン" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "この角度を超えるオーバーハングとなるウォールは、オーバーハングの設定を用いてプリントされます。値が90の場合、どのウォールもオーバーハングとして扱われません。サポートにより支えられているオーバーハングについてもオーバーハングとして扱われません。さらに、半分未満がオーバーハングとなっているラインもまたオーバーハングとして扱われません。" + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "有効にすると、スムーズモーションプランナーを備えたプリンターのツールパスが補正されます。一般的なツールパスの方向から逸脱する小さな動きが滑らかになり、フルイドモーションが改善されます。" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "有効化すると、移動距離が減少するようにインフィルラインをプリントする順序が最適化されます。移動時間の削減は、スライスするモデル、インフィルパターン、密度などに大きく依存します。特に、インフィルを行う小さなエリアが多数あるモデルの場合、モデルをスライスする時間が大きく増えることがあります。" + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "有効にすると、サポートを超えた直後に印刷冷却ファンの速度がスキン領域に対して変更されます。" + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "有効時は、Zシームは各パーツの真ん中に設定されます。無効時はプラットフォームのサイズによって設定されます。" + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "ゼロを超える場合、この距離より長い移動量をコーミングすると、引き戻しが使用されます。ゼロに設定した場合、最大値はなく、コーミング移動では引き戻しを使用しません。" + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "0より大きい場合、穴の水平拡張が小さい穴に対して徐々に適用されます(小さい穴はさらに拡張されます)。0に設定すると、すべての穴に穴の水平拡張が適用されます。穴の水平拡張の最大直径より大きい穴は拡張されません。" + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "ゼロより大きい場合、穴の水平方向の拡張は、レイヤーごとにすべての穴に適用されるオフセットの量になります。プラスの値を指定すると穴のサイズが大きくなり、マイナスの値を指定すると穴のサイズが小さくなります。この設定を有効にすると、さらに穴の水平方向の拡張最大直径で微調整できます。" + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "ブリッジスキン領域を印刷するときは、材料の吐出量をこの値で乗算します。" + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "ブリッジ壁を印刷するときは、材料の吐出量をこの値で乗算します。" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "ラフト境界面の第1層をプリントする際に、土台と境界面との接着を調整するためこのオフセット値だけ平行移動します。オフセット値をマイナスにすると接着力が向上します。" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "ラフト表面の第1層をプリントする際、境界面と表面との接着を調整するためこのオフセット値だけ移動します。オフセット値をマイナスにすると接着力が向上します。" + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "セカンドブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "サードブリッジスキンレイヤーを印刷するときは、材料の吐出量をこの値で乗算します。" + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "レイヤーの最小プリント時間より早く印刷が終わった場合、ヘッド部分を持ち上げてレイヤーの最小プリント時間に到達するまで待機します。" + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "モデルの垂直方向に少数層のみの小さなギャップがある場合、通常は、その狭いスペース内にある層の周囲にスキンが存在する必要があります。垂直方向のギャップが非常に小さい場合は、この設定を有効にしてスキンが生成されないようにします。これにより、印刷時間とスライス時間が向上しますが、技術的には空気にさらされたインフィルを残します。" + +msgctxt "wall_transition_angle description" +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 "偶数個と奇数個のウォールの間で移行を行うタイミング。この設定より大きい角度のくさび形状では移行が行われず、残りのスペースを埋めるために中心にウォールがプリントされることはありません。この設定を小さくすると、これらの中心にあるウォールの数と長さが減りますが、隙間ができたり、押し出されすぎたりする場合があります。" + +msgctxt "wall_transition_length description" +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 lines." +msgstr "部品が薄くなるにつれて異なる数のウォール間を移行する場合に、ウォールラインを分割または結合するために一定のスペースが割り当てられます。" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "オーバーハングするレイヤーに最小時間を適用する際、少なくとも1つの連続したオーバーハング移動がこの値より長くなるよう適用されます。" + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "拭き取りの際、ビルドプレートが下降してノズルとプリントの間に隙間ができます。これは、ノズルの走行中にプリントに当たるのを防ぎ、プリントをビルドプレートから剥がしてしまう可能性を減らします。" + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "引き戻し終了時にビルドプレートを下降させてノズルと造形物の間に隙間を作ります。ノズルが移動中に造形物に当たり造形物をビルドプレートから剥がしてしまう可能性を減らします。" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "サポートのX/Y軸方向距離でZ軸の距離を上書きするかどうか。XまたはY軸がZ軸を上書きする際、X/Y軸方向の距離は印刷物からオーバーハングするZ軸方向の距離に影響を及ぼしながらサポートを押しのけようとします。オーバー ハングにおけるX/Y軸方向距離を指定しないことで、無効にできます。" + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "プリンタのゼロポジションのX/Y座標が印刷可能領域の中心にあるかどうか。" + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X軸の終端がプラス方向(高いX座標)またはマイナス方向(低いX座標)のいずれかを示します。" + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y軸の終端がプラス方向(高いY座標)またはマイナス方向(低いY座標)のいずれかを示します。" + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z軸の終端がプラス方向(高いZ座標)またはマイナス方向(低いZ座標)のいずれかを示します。" + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "各エクストルーダーが独自のヒーターを持つのではなく、単一のヒーターを共有するかどうか。" + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "各エクストルーダーが独自のノズルを持つのではなく、単一のノズルを共有するかどうか。初期設定した場合、プリンター起動gcodeスクリプトにより、すべてのエクストルーダーが初期の引き戻し状態が互換性のあるように設定されます(引き戻されていない状態のフィラメントが0個または1個のいずれか)。この場合、初期引き戻しステータスは「machine_extruders_shared_nozzle_initial_retraction」パラメーターによってエクストルーダーごとに規定されます。" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "プリンターに加熱式ビルドプレートが付属しているかどうか。" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "機器が造形温度を安定化処理できるかどうかです。" + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "オブジェクトが保存された座標系を使用する代わりにビルドプラットフォームの中間 (0,0) にオブジェクトを配置するかどうか。" + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Curaから温度を制御するかどうか。これをオフにすることで、Cura外からノズル温度を制御します。" + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "GCodeの開始時にビルドプレート温度設定を含めるかどうか。 既に最初のGCodeにビルドプレート温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "GCodeの開始時にノズル温度設定を含めるかどうか。 既に最初のGCodeにノズル温度設定が含まれている場合、Curaフロントエンドは自動的にこの設定を無効にします。" + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "レイヤー間にノズル拭き取りG-Codeを含むかどうか(レイヤーごとに最大1つ)。この設定を有効にすると、レイヤー変更時の引き戻し動作に影響する可能性があります。拭き取りスクリプトが動作するレイヤーでの押し戻しを制御するには、ワイプ引き戻し設定を使用してください。" + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "開始時にビルドプレートが温度に達するまで待つコマンドを挿入するかどうか。" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "印刷する前にフィラメントで小さな塊を作るかどうか。この設定をオンにすると、エクストルーダーは印刷前の時点でノズルに材料を用意します。印刷後ブリムまたはスカートも、同様に動作するため、この設定をオフにすると時間の節約になります。" + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "すべてのモデルをレイヤーごとに印刷するか、1つのモデルがプリント完了するのを待ち次のモデルに移動するかどうか。a)エクストルーダーが1つだけ有効であり、b)プリントヘッド全体がモデル間を通ることができるようにすべてのモデルが離れていて、すべてのモデルがノズルとX/Y軸間の距離よりも小さい場合、1つずつ印刷する事ができます。" + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "このプリンターのバリエーションを表示するかどうかは、別のjsonファイルに記述されています。" + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "材料を引き戻すためにG1コマンドのEプロパティーを使用する代わりにファームウェア引き戻しコマンド (G10/G11) を使用するかどうか。" + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "開始時にノズルの温度が達するまで待つかどうか。" + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "インフィル線の幅。" + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "サポートのルーフ、フロアのライン幅。" + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "プリントの底面領域における1本のラインの幅です。" + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "プリントの上部の 線の幅。" + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "1ラインの幅。一般に、各ラインの幅は、ノズルの幅に対応する必要があります。ただし、この値を少し小さくすると、より良い造形が得られます。" + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "単一のプライムタワーラインの幅。" + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "単一のスカートまたはブリムラインの幅。" + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "サポートのフロアのラインの一幅。" + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "1つのサポートルーフラインの幅。" + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "単一のサポート構造のライン幅。" + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "上辺/底辺線のライン幅。" + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "一番外側のウォールラインを除くすべてのウォールラインのラインの幅。" + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "ウォールラインの幅。" + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "ベースラフト層の線幅。ビルドプレートの接着のため太い線でなければなりません。" + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "中間ラフト層の線の幅。第2層をより押し出すと、ラインがビルドプレートに固着します。" + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "ラフトの上面の線の幅。これらは細い線で、ラフトの頂部が滑らかになります。" + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "最も外側のウォールラインの幅。この値を下げると、より詳細な印刷できます。" + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "モデルの薄いフィーチャーを(最小フィーチャーサイズに従って)置き換えるウォールの幅。最小ウォールライン幅がフィーチャーの厚さより薄い場合、ウォールの厚さはフィーチャー自体の厚さと同じになります。" + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "ワイプブラシXの位置" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "ワイプホップ速度" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "プライムタワーノズル拭き取り" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "ワイプ移動距離" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "レイヤー間のノズル拭き取り" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "ワイプ一時停止" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "ワイプ繰り返し回数" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "ワイプリトラクト無効" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "ワイプリトラクト有効" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "ワイプ引き戻し時の余分押し戻し量" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "ワイプ引き戻し後の押し出し速度" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "ワイプ引き戻し速度" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "ワイプリトラクト速度" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "ワイプZホップ" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "ワイプZホップ高さ" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "インフィル内" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "非アクティブなツールに一時コマンドを送信した後にアクティブなツールを書き込みます。Smoothieまたはその他のモーダルツールコマンドを使用するファームウェアを使用したデュアルエクストルーダープリントに必要です。" + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "プラス方向のX軸終端" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "ワイプスクリプトを開始するX位置。" + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/YがZを上書き" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y軸終端がプラス方向" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z自給終端がプラス方向" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "エクストルーダースイッチ後のZホップ" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "エクストルーダースイッチ高さ後のZホップ" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Zホップ高さ" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "印刷パーツに対するZホップ" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z軸ホップ速度" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "引き戻し時のZホップ" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Zシーム合わせ" + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Zシームを頂点に配置" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Zシーム位置" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "相対Zシーム" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "ZシームX座標" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "ZシームY座標" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "ZがX/Yを上書き" + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "ジグザグ" + +msgctxt "travel description" +msgid "travel" +msgstr "移動経路" + +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle Length" +#~ msgstr "ノズルの長さ" + +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "ノズルサイズ" + +#~ msgctxt "wall_0_acceleration label" +#~ msgid "Outer Wall Acceleration" +#~ msgstr "外側ウォールにおける加速度" + +#~ msgctxt "wall_0_deceleration label" +#~ msgid "Outer Wall Deceleration" +#~ msgstr "外側ウォールにおける減速" + +#~ msgctxt "wall_overhang_speed_factor label" +#~ msgid "Overhanging Wall Speed" +#~ msgstr "オーバーハングウォール速度" + +#~ msgctxt "wall_overhang_speed_factor description" +#~ msgid "Overhanging walls will be printed at this percentage of their normal print speed." +#~ msgstr "オーバーハングウォールは、通常の印刷速度に対して指定された割合で印刷されます。" + +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "ノズル先端とプリントヘッドの最下部との高さの差。" + +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +#~ msgstr "プリントヘッドの形状。これらはプリントヘッドの位置を基準とした座標です。プリントヘッドの位置は通常、その最初のエクストルーダーの位置です。プリントヘッドの左側と手前側の寸法は、負の座標である必要があります。" + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +#~ msgstr "この角度以上に張り出した壁は、オーバーハング壁設定を使用してプリントされます。値が90の場合は、オーバーハング壁として処理されません。サポートによってサポートされているオーバーハングも、オーバーハングとして処理されません。" diff --git a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po b/resources/i18n/ja_JP/gradual_flow_settings.def.json.po deleted file mode 100644 index 20013f0ca6..0000000000 --- a/resources/i18n/ja_JP/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ja_JP\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" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "段階的なフローが有効" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "段階的なフローの変化を有効にします。有効にすると,フローは目標フローまで段階的に増減します。これは,押し出しモーターの始動/停止時にフローがすぐに変化しないボーデンチューブを備えたプリンターに便利です。" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "段階的なフローの最大加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "フローを段階的に変化させるための最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初期層の最大フロー加速度" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第1層のフローを段階的に変化させるための最低速度" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "段階的なフローの離散化ステップのサイズ" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "段階的なフローの変化におけるステップごとの継続時間" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "フローの継続時間をリセット" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "この値より長い移動の場合,素材フローはパスの目標フローにリセットされます。" diff --git a/resources/i18n/ko_KR/cura.po b/resources/i18n/ko_KR/cura.po index 635a7b1c1e..564b24d671 100644 --- a/resources/i18n/ko_KR/cura.po +++ b/resources/i18n/ko_KR/cura.po @@ -168,6 +168,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 파일" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 리더" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 기록기" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF 기록기 플러그인이 손상되었습니다." @@ -242,6 +250,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF 파일" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 리더" + msgctxt "@label" msgid "Abort" msgstr "중단" @@ -278,6 +290,10 @@ msgctxt "@button" msgid "Accept" msgstr "동의" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." + msgctxt "@label" msgid "Account synced" msgstr "계정 동기화됨" @@ -418,6 +434,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "익명 데이터 전송 허용" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "항상 묻기" @@ -574,6 +594,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "백업 및 리셋 설정" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "구성을 백업하고 복원합니다." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "재료 설정과 플러그인 백업 및 동기화" @@ -746,6 +770,14 @@ msgctxt "@label" msgid "Checking..." msgstr "확인 중..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "펌웨어 업데이트를 확인합니다." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." @@ -826,6 +858,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "압축된 G-code 파일" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "압축 된 G 코드 리더기" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "압축 된 G 코드 작성기" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "구성 변경" @@ -898,6 +938,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Cloud를 통해 연결됨" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker 커뮤니티에 문의하십시오." @@ -1033,6 +1077,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library에서 프린트 프로젝트를 생성하십시오." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "백업 생성 중..." @@ -1045,10 +1093,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura 백업" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 백업" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 프로파일" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 프로파일 리더" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 프로파일 작성자" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 프로젝트 3MF 파일" @@ -1078,6 +1138,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 버전" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 백엔드" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "통화:" @@ -1362,6 +1434,10 @@ msgctxt "@label" msgid "Enabled" msgstr "실행됨" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." + msgctxt "@title:label" msgid "End G-code" msgstr "End GCode" @@ -1450,6 +1526,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "플러그인 및 재료 프로파일을 사용하여 UltiMaker Cura를 확장하십시오." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" + msgctxt "@label" msgid "Extruder" msgstr "익스트루더" @@ -1598,6 +1678,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "펌웨어 업데이트" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "펌웨어 업데이트 검사기" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "펌웨어 업데이터" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "프린터와 연결이 펌웨어 업그레이드를 지원하지 않아 펌웨어를 업데이트할 수 없습니다." @@ -1697,6 +1785,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code 파일" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "GCode 프로파일 리더기" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-코드 리더" + +msgctxt "name" +msgid "G-code Writer" +msgstr "GCode 작성자" + msgctxt "@label" msgid "G-code flavor" msgstr "Gcode 유형" @@ -1845,6 +1945,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "프린터가 목록에 없으면 네트워크 프린팅 문제 해결 가이드를 읽어보십시오" +msgctxt "name" +msgid "Image Reader" +msgstr "이미지 리더" + msgctxt "@action:button" msgid "Import" msgstr "가져오기" @@ -2129,6 +2233,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "왼쪽 보기" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "레거시 Cura 프로파일 리더" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "개발자에게 문제를 알려주십시오." @@ -2209,6 +2317,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "로그" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "프린터와의 연결이 끊어졌습니다" @@ -2217,6 +2329,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "기기 설정" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "컴퓨터 설정 작업" + msgctxt "@backuplist:label" msgid "Machines" msgstr "기기" @@ -2233,6 +2349,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot 프린트파일" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot 프린트파일 작성기" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter가 지정된 경로에 저장할 수 없습니다." @@ -2289,6 +2409,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "여기서 UltiMaker Cura 플러그인 및 재료 프로파일을 관리하십시오. 플러그인을 최신 상태로 유지하고 설정을 정기적으로 백업하십시오." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker 네트워크 연결 프린터에 대한 네트워크 연결을 관리합니다." + msgctxt "@label" msgid "Manufacturer" msgstr "제조업체" @@ -2301,6 +2429,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "시장" +msgctxt "name" +msgid "Marketplace" +msgstr "마켓플레이스" + msgctxt "@action:label" msgid "Material" msgstr "재료" @@ -2317,6 +2449,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "재료 색상" +msgctxt "name" +msgid "Material Profiles" +msgstr "재료 프로파일" + msgctxt "@label" msgid "Material Type" msgstr "재료 유형" @@ -2361,6 +2497,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "종류" +msgctxt "name" +msgid "Model Checker" +msgstr "모델 검사기" + msgctxt "@info:title" msgid "Model Errors" msgstr "모델 에러" @@ -2377,6 +2517,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "모니터" +msgctxt "name" +msgid "Monitor Stage" +msgstr "모니터 단계" + msgctxt "@action:button" msgid "Monitor print" msgstr "프린트 모니터링" @@ -2815,6 +2959,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "모델 별 설정" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "모델 별 설정 도구" + msgid "Perspective" msgstr "원근" @@ -2938,6 +3086,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "후 처리" +msgctxt "name" +msgid "Post Processing" +msgstr "후처리" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "후처리 플러그인" @@ -2954,6 +3106,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "준비" +msgctxt "name" +msgid "Prepare Stage" +msgstr "준비 단계" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "준비 중..." @@ -2974,6 +3130,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "미리 보기" +msgctxt "name" +msgid "Preview Stage" +msgstr "미리 보기 단계" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "프라임 타워" @@ -3216,6 +3376,106 @@ msgctxt "@label" msgid "Properties" msgstr "속성" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura에서 모니터 단계 제공." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "일반 솔리드 메쉬보기를 제공합니다." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura에서 준비 단계 제공." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura에서 미리 보기 단계를 제공합니다." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "이동식 드라이브를 제공합니다." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura 프로파일 내보내기 지원을 제공합니다." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF 파일 읽기 지원." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF 파일 읽기가 지원됩니다." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D 파일을 읽을 수 있도록 지원합니다." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "모델 파일 읽기 기능을 제공합니다." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MF 및 UCP 파일 쓰기를 지원합니다." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBot 포맷 패키지 작성을 지원합니다." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "모델 별 설정을 제공합니다." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "엑스레이 뷰를 제공합니다." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt 버전" @@ -3252,6 +3512,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 종료" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." + msgctxt "@button" msgid "Recommended" msgstr "추천" @@ -3304,6 +3568,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "이동식 드라이브" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "이동식 드라이브 출력 장치 플러그인" + msgctxt "@action:button" msgid "Remove" msgstr "제거" @@ -3584,6 +3852,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "재료를 프린터로 전송 중" +msgctxt "name" +msgid "Sentry Logger" +msgstr "보초 로거" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "직렬 통신 라이브러리" @@ -3792,6 +4064,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMaker 플랫폼에 로그인" +msgctxt "name" +msgid "Simulation View" +msgstr "시뮬레이션 뷰" + msgctxt "@tooltip" msgid "Skin" msgstr "스킨" @@ -3820,6 +4096,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "설정이 변경되면 자동으로 슬라이싱 합니다." +msgctxt "name" +msgid "Slice info" +msgstr "슬라이스 정보" + msgctxt "@message:title" msgid "Slicing failed" msgstr "슬라이싱 실패" @@ -3836,6 +4116,10 @@ msgctxt "@label" msgid "Solid" msgstr "솔리드" +msgctxt "name" +msgid "Solid View" +msgstr "솔리드 뷰" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "솔리드 뷰" @@ -3930,6 +4214,10 @@ msgctxt "@label" msgid "Strength" msgstr "강도" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "재료를 성공적으로 내보냈습니다" @@ -3974,6 +4262,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "서포트 차단기" +msgctxt "name" +msgid "Support Eraser" +msgstr "서포트 지우개" + msgctxt "@tooltip" msgid "Support Infill" msgstr "내부채움 서포트" @@ -4487,6 +4779,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "적절한 데이터 또는 메타 데이터 없이 Cura 백업을 복원하려고 시도했습니다." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 리더" + msgctxt "@button" msgid "Troubleshooting" msgstr "문제 해결" @@ -4507,10 +4803,22 @@ msgctxt "@label" msgid "Type" msgstr "유형" +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 리더기" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 작성자" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 프린팅" +msgctxt "name" +msgid "USB printing" +msgstr "USB 프린팅" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker 계정" @@ -4527,6 +4835,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker 포맷 패키지" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 네트워크 연결" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker 검증된 패키지" @@ -4535,6 +4847,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker 검증된 플러그인" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 기기 동작" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker 프린터" @@ -4547,6 +4863,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "UltiMaker 디지털 라이브러리" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "프로파일을 추가할 수 없습니다." @@ -4720,6 +5040,114 @@ msgctxt "@button" msgid "Updating..." msgstr "업데이트 중" +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Cura 5.6에서 Cura 5.7로 구성을 업그레이드합니다." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "사용자 정의 펌웨어 업로드" @@ -4756,6 +5184,114 @@ msgctxt "@title:column" msgid "Value" msgstr "값" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1에서 2.2로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2에서 2.4로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5에서 2.6으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6에서 2.7으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7에서 3.0으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0에서 3.1로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2에서 3.3으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "버전 업그레이드 3.3에서 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4에서 3.5로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "버전 업그레이드 3.5에서 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "버전 업그레이드 4.0에서 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "4.1에서 4.2로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11에서 4.12로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13에서 5.0으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2에서 4.3로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3에서 4.4로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4에서 4.5로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5에서 4.6으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0에서 4.6.2로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2에서 4.7로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7에서 4.8로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8에서 4.9로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9에서 4.10으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2에서 5.3으로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3에서 5.4로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4에서 5.5로 버전 업그레이드" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6에서 5.7로 버전 업그레이드" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Digital Factory에서 프린터 보기" @@ -4872,6 +5408,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "너비 (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "압축 된 아카이브에 g-code를 씁니다." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G Code를 파일에 씁니다." + msgctxt "@label" msgid "X (Width)" msgstr "X (너비)" @@ -4884,6 +5428,10 @@ msgctxt "@label" msgid "X min" msgstr "X 최소값" +msgctxt "name" +msgid "X-Ray View" +msgstr "엑스레이 뷰" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "엑스레이 뷰" @@ -4896,6 +5444,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D 파일" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 리더" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (깊이)" @@ -5041,554 +5593,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{}개의 플러그인을 다운로드하지 못했습니다" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker 네트워크 프린터에 대한 네트워크 연결을 관리합니다." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker 네트워크 연결" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-코드 파일에서 프로파일 가져 오기를 지원합니다." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "GCode 프로파일 리더기" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "일반 솔리드 메쉬보기를 제공합니다." - -msgctxt "name" -msgid "Solid View" -msgstr "솔리드 뷰" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "점진적으로 흐름을 평활화하여 높은 흐름 점프를 제한하는 CuraEngine 플러그인" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF 파일 읽기 지원." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 리더" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-코드를 수신하고 프린터로 보냅니다. 플러그인은 또한 펌웨어를 업데이트 할 수 있습니다." - -msgctxt "name" -msgid "USB printing" -msgstr "USB 프린팅" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "펌웨어 업데이트를 확인합니다." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "펌웨어 업데이트 검사기" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "응용 프로그램의 확장을 관리하고 UltiMaker 웹 사이트에서 확장을 검색할 수 있습니다." - -msgctxt "name" -msgid "Marketplace" -msgstr "마켓플레이스" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "구성을 백업하고 복원합니다." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 백업" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "기계 설정 (예 : 빌드 볼륨, 노즐 크기 등)을 변경하는 방법을 제공합니다." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "컴퓨터 설정 작업" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Cura 2.5에서 Cura 2.6으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5에서 2.6으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Cura 4.7에서 Cura 4.8로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7에서 4.8로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Cura 4.4에서 Cura 4.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4에서 4.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Cura 3.0에서 Cura 3.1로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0에서 3.1로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Cura 4.11에서 Cura 4.12로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11에서 4.12로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Cura 4.1에서 Cura 4.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "4.1에서 4.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Cura 2.6에서 Cura 2.7로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6에서 2.7으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Cura 4.6.0에서 Cura 4.6.2로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0에서 4.6.2로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Cura 3.3에서 Cura 3.4로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "버전 업그레이드 3.3에서 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Cura 4.8에서 Cura 4.9로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8에서 4.9로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Cura 4.5에서 Cura 4.6으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5에서 4.6으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Cura 4.2에서 Cura 4.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2에서 4.3로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Cura 3.2에서 Cura 3.3으로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2에서 3.3으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Cura 4.3에서 Cura 4.4로 구성을 업그레이드합니다." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "권장하지 않는 조합입니다. 안정성을 높이려면 BB 코어를 1번 슬롯(왼쪽)에 탑재하세요." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3에서 4.4로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Cura 5.6에서 Cura 5.7로 구성을 업그레이드합니다." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Sketch Printfile" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "5.6에서 5.7로 버전 업그레이드" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "프린터 검색" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Cura 2.1에서 Cura 2.2로 구성을 업그레이드합니다." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "이 항목은 Cura Universal 프로젝트 파일입니다. 해당 파일을 Cura Universal 프로젝트로 열거나, 파일에서 모델을 불러올까요?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1에서 2.2로 버전 업그레이드" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "기술 지원을 위해 패키지 내보내기" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3에서 Cura 5.4로 구성을 업그레이드합니다." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "모델 데이터를 엔진에 전송할 수 없습니다. 다시 시도하거나 지원팀에 문의해 주세요." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3에서 5.4로 버전 업그레이드" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "모델 데이터를 엔진에 전송할 수 없습니다. 덜 세부적인 모델을 사용하거나 인스턴스 수를 줄이세요." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Cura 4.9에서 Cura 4.10으로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Cura 5.8에서 Cura 5.9로 구성을 업그레이드합니다." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9에서 4.10으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Cura 2.7에서 Cura 3.0으로 구성을 업그레이드합니다." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "5.8에서 5.9로 버전 업그레이드" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7에서 3.0으로 버전 업그레이드" +msgid "3DConnexion mouses" +msgstr "3DConnexion 마우스" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Cura 3.5에서 Cura 4.0으로 구성을 업그레이드합니다." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Cura 내에서 3D 마우스 작업을 허용합니다." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "버전 업그레이드 3.5에서 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "압출기 변경 시간" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Cura 5.2에서 Cura 5.3으로 구성을 업그레이드합니다." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "압출기 사전 시작 G 코드" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2에서 5.3으로 버전 업그레이드" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "모델 도구 핸들의 Y축 반전 (재시작 필요)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Cura 4.0에서 Cura 4.1로 구성을 업그레이드합니다." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "%1 %2용 라이선스" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "버전 업그레이드 4.0에서 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ 프린트 파일" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Cura 4.13에서 Cura 5.0으로 구성을 업그레이드합니다." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "트랜슬레이트 도구 핸들의 Y축을 반전할까요? 이 작업은 모델의 Y 좌표에만 영향을 주며, 프린트헤드 설정과 같은 다른 기타 설정은 영향을 받지 않고 이전과 같이 작동합니다." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13에서 5.0으로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Cura 3.4에서 Cura 3.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4에서 3.5로 버전 업그레이드" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Cura 2.2에서 Cura 2.4로 구성을 업그레이드합니다." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "시작 G코드가 우선해야 합니다" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2에서 2.4로 버전 업그레이드" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "이 구성은 코어 유형 %1에 불일치 또는 기타 문제가 있기 때문에 사용할 수 없습니다. 지원 페이지를 방문하여 이 프린터 유형이 새 슬라이스와 관련하여 어떤 코어를 지원하는지 확인하십시오." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Cura 4.6.2에서 Cura 4.7로 구성을 업그레이드합니다." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Cura 5.9에서 Cura 5.10으로 업그레이드" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2에서 4.7로 버전 업그레이드" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "5.9에서 5.10으로 버전 업그레이드" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4에서 Cura 5.5로 구성을 업그레이드합니다." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4에서 5.5로 버전 업그레이드" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-코드 파일을 로드하고 표시 할 수 있습니다." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-코드 리더" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y 최대 ('+'를 앞쪽으로)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "익명의 슬라이스 정보를 제출하십시오. 환경 설정을 통해 비활성화 할 수 있습니다." - -msgctxt "name" -msgid "Slice info" -msgstr "슬라이스 정보" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "이동식 드라이브를 제공합니다." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "이동식 드라이브 출력 장치 플러그인" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "특정 장소에서 서포트 프린팅을 막는 지우개 메쉬(eraser mesh)를 만듭니다" - -msgctxt "name" -msgid "Support Eraser" -msgstr "서포트 지우개" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "가능한 프린팅 문제를 위해 모델 및 인쇄 구성을 확인하고 제안합니다." - -msgctxt "name" -msgid "Model Checker" -msgstr "모델 검사기" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura에서 준비 단계 제공." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "준비 단계" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "슬라이스된 레이어 데이터의 미리보기를 제공합니다." - -msgctxt "name" -msgid "Simulation View" -msgstr "시뮬레이션 뷰" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF 파일 읽기가 지원됩니다." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 리더" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "엑스레이 뷰를 제공합니다." - -msgctxt "name" -msgid "X-Ray View" -msgstr "엑스레이 뷰" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "펌웨어 업데이트를 위한 기계 동작을 제공합니다." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "펌웨어 업데이터" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "레거시 Cura 버전에서 프로파일 가져 오기를 지원합니다." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "레거시 Cura 프로파일 리더" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "후처리를 위해 사용자가 만든 스크립트를 허용하는 확장 프로그램" - -msgctxt "name" -msgid "Post Processing" -msgstr "후처리" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "충돌을 보고하는 리포터가 사용할 수 있도록 특정 이벤트를 기록합니다" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "보초 로거" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "MakerBot 포맷 패키지 작성을 지원합니다." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot 프린트파일 작성기" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura 프로파일 가져 오기 지원을 제공합니다." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 프로파일 리더" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 읽기를 지원합니다." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 리더기" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D 이미지 파일에서 프린팅 가능한 지오메트리를 생성 할 수 있습니다." - -msgctxt "name" -msgid "Image Reader" -msgstr "이미지 리더" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine 슬라이스 백엔드 링크를 제공합니다." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 백엔드" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "압축 된 아카이브에 g-code를 씁니다." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "압축 된 G 코드 작성기" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker 기계에 대한 기계 작동 제공(예 : 침대 수평 조정 마법사, 업그레이드 선택 등)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 기기 동작" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "압축 된 아카이브로 부터 g-code를 읽습니다." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "압축 된 G 코드 리더기" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura에서 미리 보기 단계를 제공합니다." - -msgctxt "name" -msgid "Preview Stage" -msgstr "미리 보기 단계" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "디지털 라이브러리와 연결하여 Cura에서 디지털 라이브러리를 통해 파일을 열고 저장할 수 있도록 합니다." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "UltiMaker 디지털 라이브러리" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura 프로파일 내보내기 지원을 제공합니다." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 프로파일 작성자" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D 파일을 읽을 수 있도록 지원합니다." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 리더" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "모델 파일 읽기 기능을 제공합니다." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 리더" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura에서 모니터 단계 제공." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "모니터 단계" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "모델 별 설정을 제공합니다." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "모델 별 설정 도구" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML 기반 재료 프로파일을 읽고 쓸 수있는 기능을 제공합니다." - -msgctxt "name" -msgid "Material Profiles" -msgstr "재료 프로파일" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "3MF 및 UCP 파일 쓰기를 지원합니다." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 기록기" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker 포맷 패키지 작성을 지원합니다." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 작성자" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G Code를 파일에 씁니다." - -msgctxt "name" -msgid "G-code Writer" -msgstr "GCode 작성자" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y 최소 ( '-'를 뒤쪽으로)" diff --git a/resources/i18n/ko_KR/fdmextruder.def.json.po b/resources/i18n/ko_KR/fdmextruder.def.json.po index 62b73e760b..9c51274d0d 100644 --- a/resources/i18n/ko_KR/fdmextruder.def.json.po +++ b/resources/i18n/ko_KR/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "직경" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "익스트루더" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "익스트루더 프린팅 냉각 팬" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "익스트루더 엔드 G 코드" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "이 익스트루더에서 전환 시 실행할 G 코드를 종료하십시오." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "압출기 종료 G-코드 지속 시간" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "이 압출기에서 전환할 때 종료 G-코드를 실행하는 데 걸리는 시간입니다." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "익스트루더 끝 절대 위치" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "익스트루더 끝 X 위치" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "익스트루더 끝 Y 위치" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "익스트루더 프라임 Z 위치" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "익스트루더 프린팅 냉각 팬" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "익스트루더 스타트 G 코드" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "압출기 시작 G-코드 지속 시간" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "이 압출기로 전환할 때 시작 G-코드를 실행하는 데 걸리는 시간입니다." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "익스트루더 시작 위치의 절대 값" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "익스트루더 시작 X의 위치" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "익스트루더 시작 위치 Y" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "익스트루더가 헤드의 마지막으로 알려진 위치에 상대값이 아닌 절대 위치로 끝나도록 하십시오." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "익스트루더 시작 위치를 헤드의 마지막으로 알려진 위치에 상대적이 아닌 절대 위치로 만듭니다." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "노즐 ID" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "익스트루더 시작 X의 위치" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "익스트루더 시작 위치 Y" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "기기 세부 설정" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "노즐 X 오프셋" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "노즐 오프셋의 x 좌표." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "노즐 Y 오프셋" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "이 익스트루더로 전환 시 실행할 G 코드를 시작하십시오." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "이 익스트루더와 관련된 프린팅 냉각 팬의 개수. 각 익스트루더마다 다른 프린팅 냉각 팬이 있을 때만 기본값 0에서 변경하십시오." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "이 압출기에서 전환할 때 종료 G-코드를 실행하는 데 걸리는 시간입니다." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "이 압출기로 전환할 때 시작 G-코드를 실행하는 데 걸리는 시간입니다." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 끝 위치의 x 좌표." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "노즐 오프셋의 x 좌표." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 x 좌표." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "익스트루더를 끌 때 종료 위치의 y 좌표." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "노즐 오프셋의 y 좌표." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "익스트루더를 켤 때 시작 위치의 y 좌표." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "노즐 길이" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "노즐 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "압출기 변경 시간" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "압출기 사전 시작 G-코드" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "이 압출기로 전환하기 전에 실행할 사전 시작 g-코드입니다." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "멀티 도구 설정을 사용할 경우, 해당 값은 도구 변경에 걸리는 시간(초 단위)입니다. 이 값은 발생하는 변경 횟수에 따라 예상 시간에 추가됩니다." diff --git a/resources/i18n/ko_KR/fdmprinter.def.json.po b/resources/i18n/ko_KR/fdmprinter.def.json.po index 13f2653165..4725c7a1d5 100644 --- a/resources/i18n/ko_KR/fdmprinter.def.json.po +++ b/resources/i18n/ko_KR/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "기기" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "프라임 타워 생성 방법:
    • 일반: 보조 재료가 프라이밍되는 버킷을 생성합니다.
    • 중간 삽입: 프라임 타워를 최대한 희박하게 생성합니다. 시간과 필라멘트를 절약하지만, 사용된 재료가 서로 밀착되는 경우에만 가능합니다.
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "기기 세부 설정" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "기기 유형" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3D 프린터 모델의 이름." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "기기 세부 설정 표시" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "시작 GCode" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "시작과 동시에형실행될 G 코드 명령어 " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "End GCode" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "맨 마지막에 실행될 G 코드 명령 " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "재료 GUID" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "재료의 GUID. 자동으로 설정됩니다." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "재료 유형" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "사용된 재료의 유형입니다." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "재료 브랜드" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "사용된 재료의 브랜드입니다." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "직경" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용 필라멘트의 직경과 일치시킵니다." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "노즐이 가열될 때까지 기다리기" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "재료의 온도 포함하기" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "빌드 플레이트 온도 포함" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "기기 너비" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "프린팅 가능 영역의 폭 (X 방향)." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "기기 깊이" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "프린팅 가능 영역의 깊이 (Y 방향)" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "기기 높이" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "빌드 플레이트 모양" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "직사각형" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "타원" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "빌드 플레이트 재질" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "프린터에 설치된 빌드 플레이트의 재질." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "유리" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "알루미늄" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "히팅 빌드 플레이트가 있음" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "빌드 볼륨 온도 안정화" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "항상 활성 도구 쓰기" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "임시 명령을 비활성 도구로 전송한 후 활성 도구를 작성하십시오. Smoothie 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "센터 원점" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "익스트루더의 수" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "활성화된 익스트루더의 수" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "외부 노즐의 외경" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "노즐 끝의 외경." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "노즐 길이" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "노즐 각도" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "가열 영역 길이" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "노즐 온도 조절 활성화" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "가열 속도" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "냉각 속도" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "최소 대기 시간" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Gcode 유형" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "생성 될 gcode의 유형." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (부피 측정법)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "펌웨어 리트렉션" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "재료를 리트렉션하는 G1 명령어에서 E 속성을 사용하는 대신 펌웨어 리트렉션 명령어(G10/G11)를 사용할 지 여부." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "압출기의 히터 공유" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "익스트루더의 노즐 공유" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "익스트루더가 자체 노즐을 가지고 있지 않고 단일 노즐을 공유하는지에 대한 여부. True로 설정하면 프린터 시동 gcode 스크립트가 알려진 상호 호환 가능한 초기 수축 상태(0 또는 1개의 필라멘트가 수축되지 않음)에서 모든 익스트루더를 적절하게 설정해야 합니다. 이 경우 초기 수축 상태는 'machine_extruders_shared_nozzle_initial_retraction' 매개 변수에 의해 익스트루더마다 표시됩니다." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "공유된 노즐 초기 수축" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "프린터 시작 gcode 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "허용되지 않는 지역" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "노즐이 위치할 수 없는 구역" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "노즐이 위치할 수 없는 구역의 목록입니다." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "머신 헤드 및 팬 폴리곤" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "갠트리 높이" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "노즐 ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더 트레인의 노즐 ID." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "노즐 직경" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때, 이 설정을 변경하십시오." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "익스트루더로 오프셋" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "익스트루더 프라임 Z 위치" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Z 좌표입니다." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "독립 익스트루더 프라임 포지션" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 방향 최대 속도" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 방향의 모터 최대 속도입니다." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 방향 최대 속도" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 속도입니다." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 방향 최대 속도" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 방향의 모터 최대 속도입니다." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "최대 속도 E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "필라멘트의 최대 속도." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "최대 가속도 X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 방향 모터의 최대 가속도" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Y 방향 최대 가속도" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 방향 모터의 최대 가속도." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 방향 최대 가속도" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 방향 모터의 최대 가속도." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "최대 필라멘트 가속도" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 최대 가속도." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "기본 가속도" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "프린트 헤드 이동시 기본 가속도." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "기본 X-Y Jerk" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "수평면에서의 이동을 위한 기본 Jerk." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "기본 Z Jerk" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 방향 모터의 기본 Jerk." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "기본 필라멘트 Jerk" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "필라멘트를 구동하는 모터의 기본 Jerk." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "밀리미터 당 스텝 수 (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "밀리미터 당 스텝 수 (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "밀리미터 당 스텝 수 (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "밀리미터 당 스텝 수 (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "양의 방향 X 엔드 스톱" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "양의 방향 Y 엔드 스톱" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "양의 방향 Z 엔드 스톱" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "최소 이송 속도" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "프린트 헤드의 최소 이동 속도." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "피더 휠 지름" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "피더에서 재료를 구동시키는 휠의 지름." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "팬 속도를 0-1로 조정" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "팬 속도를 0 ~ 256이 아니라 0 ~ 1로 조정합니다." - -msgctxt "resolution label" -msgid "Quality" -msgstr "품질" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "층 높이" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "첫번째 레이어 높이" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "선의 두께" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "벽 선 너비" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "단일 벽 선의 너비입니다." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "바깥 선 선폭" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "내부 벽 선 너비" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "상단/하단 라인 폭" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "내부채움 선 폭" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "단일 내부채움 라인의 너비." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "스커트/브림 선 너비" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "단일 스커트 또는 브림의 너비." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "서포트의 폭" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "단일 서포트 구조 선의 폭입니다." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "서포트 인터페이스의 폭" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "서포트의 지붕, 바닥의 폭." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "서포트 루프 라인 폭" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "단일 서포트 지붕 라인 폭." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "서포트 바닥 라인 폭" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "단일 서포트 플로어 라인의 폭." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "프라임 타워 라인 폭" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "단일 주요 타워 라인의 폭." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "초기 레이어 라인 폭" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." - -msgctxt "shell label" -msgid "Walls" -msgstr "벽" - -msgctxt "shell description" -msgid "Shell" -msgstr "외곽" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "벽 익스트루더" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "외벽 익스트루더" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "내벽 익스트루더" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "벽 두께" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "벽 라인의 수" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "벽 전환 길이" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "벽 배포 개수" - -msgctxt "wall_distribution_count description" -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 "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "벽 전환 임계각" - -msgctxt "wall_transition_angle description" -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 "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "벽 전환 필터 거리" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "벽 전환 필터 여백" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "하나의 여분 벽과 하나 더 적은 벽 사이를 왔다 갔다 하는 전환을 방지하십시오. 이 여백은 [최소 벽 선 너비 - 여백, 2 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "외벽 이동 거리" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Z 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "외벽 삽입" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "벽면 프린팅 순서 명령 최적화" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "벽 순서 지정" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "내부에서 외부로" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "외부에서 내부로" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "대체 여분 벽" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "최소 벽 선 너비" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "최소 짝수 벽 선 너비" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "일반 다각형 벽의 최소 선 너비 이 설정은 단일의 얇은 벽 선 프린팅에서 두 개의 벽 선 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 짝수 벽 선 너비는 외벽 선 너비 + 0.5 * 최소 홀수 벽 선 너비로 계산됩니다." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "최소 홀수 벽 선 너비" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "중간 선 간격 충전재 폴리라인 벽의 최소 선 너비. 이 설정은 두 개의 벽 선을 프린팅 하는 것에서 두 개의 외벽 및 가운데의 단일 중앙 벽 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 홀수 벽 너비는 2 * 최소 짝수 벽 선 너비로 계산됩니다." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "얇은 벽 프린팅" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "최소 피처 크기" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "얇은 벽 선 최소 너비" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "수평 확장" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "첫번째 레이어 수평 확장" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "구멍 수평 확장" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "0보다 크면 홀 수평 확장은 각 레이어의 모든 홀에 적용되는 오프셋의 양입니다. 양수 값은 홀의 크기를 늘리고 음수 값은 홀의 크기를 줄입니다. 이 설정을 활성화하면 홀 수평 확장 최대 직경을 사용하여 추가로 조정할 수 있습니다." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "구멍 수평 확장 최대 직경" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "0보다 큰 값으로 설정하면 구멍 수평 확장이 작은 구멍에 점진적으로 적용되고(작은 구멍이 더 확장됨), 0으로 설정하면 구멍 수평 확장이 모든 구멍에 적용됩니다. 구멍 수평 확장 최대 직경보다 큰 구멍은 확장되지 않습니다." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 솔기 정렬" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "사용자 지정" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "최단경로" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "랜덤" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "날카로운 모서리" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 경계 위치" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "후면 왼쪽" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "뒤로" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "후면 오른쪽" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "오른쪽" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "전면 오른쪽" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "전면" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "전면 왼쪽" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "왼쪽" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 솔기 X" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 솔기 Y" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "솔기 코너 환경 설정" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "없음" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "솔기 숨기기" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "솔기 노출" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "솔기 숨기기 또는 노출" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "스마트 숨김" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "상대적 Z 솔기" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "위 / 아래" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "위 / 아래" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "상단 표면 익스트루더" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "상단 표면 스킨 레이어" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "상단 표면 스킨 선 너비" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "프린팅 상단 부분의 한 줄 너비." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "탑 표면 스킨 패턴" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "최상위 레이어의 패턴." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "윤곽" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "단면 상단 표면 순서" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "상단 표면 스킨 라인 방향" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "상단/하단 익스트루더" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "상단/하단 두께" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "상단 두께" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "상단 레이어" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "바닥 두께" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "하단 레이어" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "초기 하단 레이어" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "상단/하단 패턴" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "상단/하단 레이어의 패턴." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원 형태" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "하단 패턴 초기 레이어" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "윤곽" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "상단/하단 다각형 연결" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "단면 상단/하단 순서" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "상단/하단 라인 길 방향" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "작은 상단/하단 너비" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "작은 상단/하단 영역은 기본 상단/하단 패턴 대신 벽으로 채워집니다. 이렇게 하면 갑작스러운 모션을 방지하는 데 도움이 됩니다. 기본적으로 최상단(공기에 노출된) 레이어는 꺼져 있습니다('표면의 작은 상단/하단' 참조)." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "표면의 작은 상단/하단" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 간격에 스킨 없음" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "여분의 스킨 벽 수" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "다림질 사용" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "최상위 레이어에 다림질" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "다림질 패턴" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "윗면을 다림질 할 때 사용하는 패턴." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "동심원" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "단면 다림질 순서" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "다림질 라인 간격" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "다림질 라인 사이의 거리." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "다림질 압출량" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "다림질 삽입" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "모델 주위의 브림은 원하지 않는 다른 모델에 닿을 수 있습니다. 이 설정은 브림이 없는 모델에서 이 거리 내의 모든 브림을 제거합니다." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "모델 브림에서 떨어서포트 않는 거리. 메쉬 브림까지 다림질하면 출력물의 브림가 고르지 않을 수 있습니다." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "다림질 속도" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "상단 표면을 통과하는 속도." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "상단 표면 스킨 층이 선 또는 지그재그 패턴을 사용할 때 사용할 정수선 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호로 묶여 있습니다. 기본값은 전통적인 기본 각도 (45도 및 135도)를 사용하는 빈 리스트입니다." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "다림질 가속" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "상단/하단 레이어가 선 또는 지그재그 패턴을 사용할 때 사용할 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록이고, 기본 각도(45도 및 135도)를 사용합니다." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "다림질이 수행되는 가속도." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "다림질 저크(Jerk)" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "다림질을하는 동안 최대 순간 속도 변화." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "스킨 겹침 비율" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 스킨 라인과 가장 안쪽 벽의 라인 폭 비율로 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 비율이 50%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "스킨 겹침" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "스킨 제거 폭" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "상단 스킨 제거 폭" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "밑면 스킨 제거 폭" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "스킨 확장 거리" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "윗면 스킨 확장 거리" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "밑면 스킨 확장 거리" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "확장을 위한 최대 스킨 각" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며 스킨의 확장을 유발하지 않고, 90도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "확장을 위한 최소 스킨 폭" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." - -msgctxt "infill label" -msgid "Infill" -msgstr "내부채움" - -msgctxt "infill description" -msgid "Infill" -msgstr "내부채움" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "내부채움 익스트루더" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "내부채움 밀도" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "출력물의 내부채움을 조절합니다." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "내부채움 선간 거리" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "내부채움 패턴" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "그리드" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "삼-육각형" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "입방체" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "입방체 세분" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "옥텟" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "쿼터 큐빅" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "동심원" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "십자형" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "십자형 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "라이트닝" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "내부채움 선 연결" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "내부채움 다각형 연결" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "내부채움 선 방향" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "사용할 라인 방향 리스트. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트은 대괄호 안에 들어 있습니다. 기본값은 기본 각도 (선 및 지그재그 패턴의 경우 45 및 135도, 다른 모든 패턴의 경우 45도)를 사용하는 빈 리스트입니다." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "내부채움 X 오프셋" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "노즐이 위치할 수 없는 구역의 목록입니다." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "프린팅 헤드가 위치할 수 없는 구역의 목록입니다." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "내부채움 Y 오프셋" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "독립 익스트루더 프라임 포지션" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "무작위 충전 시작" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "어댑티브 레이어 최대 변화" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "어댑티브 레이어 지형 크기" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "내부채움 선 승수" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "어댑티브 레이어 변화 단계 크기" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "여분의 내부채움 벽 수" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "내부채움 영역 주변에 여분의 벽을 추가합니다. 이러한 벽은 상단/하단 스킨 라인이 늘어지는 것을 줄여줄 수 있습니다. 일부 여분 재료를 사용해도 같은 품질을 유지하는 데 필요한 필요한 상단/하단 스킨 층이 감소한다는 의미입니다." "이 기능을 올바르게 구성하는 경우 내부채움 다각형 연결과 함께 사용해 이동 또는 리트랙션없이 모든 내부채움을 단일 돌출 경로에 연결할 수 있습니다." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "입방 세분 쉘" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "내부채움 오버랩 비율" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "내부채움 오버랩" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "내부채움 거리" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "내부채움 층 두께" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "점진적인 내부채움 단계" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "점진적인 내부채움 단계 높이" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "벽 앞에 내부채움" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "최소 내부채움 지역" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "충진물 지지대" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "충진물 오버행 각도" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "스킨 에지의 두께 지원" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "스킨 에지의 레이어 지원" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "라이트닝 내부채움 서포트 각도" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "라이트닝 내부채움 오버행 각도" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "라이트닝 내부채움 가지치기 각도" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "라이트닝 내부채움 정리 각도" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." - -msgctxt "material label" -msgid "Material" -msgstr "재료" - -msgctxt "material description" -msgid "Material" -msgstr "재료" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "기본 프린팅 온도" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "빌드 볼륨 온도" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "프린팅되는 환경의 온도입니다. 이 값이 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "프린팅 온도" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "프린팅에 사용되는 온도." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "첫번째 레이어의 프린팅 온도" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "첫 레이어 인쇄에 사용되는 온도입니다." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "초기 프린팅 온도" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "최종 프린팅 온도" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "압출 냉각 속도 조절기" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "기본 빌드 플레이트 온도" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "빌드 플레이트 온도" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "내열 빌드 플레이트용으로 사용된 온도 0인 경우 빌드 플레이트가 가열되지 않습니다." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "초기 레이어의 빌드 플레이트 온도" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "첫 번째 레이어에서 내열 빌드 플레이트에 사용되는 온도. 0인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "부착" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "점착 성항" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "표면에 점착되는 성항입니다." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 스킨 라인과 가장 안쪽 벽의 라인 폭 비율로 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 비율이 50%가 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "서피스 에너지" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "벽과 스킨-센터라인(종점) 사이의 겹침 양을 조정하십시오. 약간의 겹침으로 벽이 스킨에 확실하게 연결될 수 있습니다. 동일한 스킨 및 벽 라인-폭을 고려할 때 값이 벽 폭의 절반을 넘는다면, 그 지점에서 스킨-익스트루더의 노즐 위치가 이미 벽 중앙을 지나 도달할 수 있기 때문에 이미 스킨이 벽을 지나치고 있을 수 있습니다." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "표면의 에너지입니다." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "확장 배율 수축 보상" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "수평 확장 배율 수축 보정" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "냉각됨에 따라 재료의 수축을 보정하기 위해 모델이 이 배율로 XY 방향으로(수평으로) 확장됩니다." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "수직 확장 배율 수축 보정" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "냉각됨에 따라 재료 수축을 보정하기 위해 모델이 이 배율로 Z 방향으로(수직으로) 확장됩니다." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "결정형 소재" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "흐름 방지 리트랙션 위치" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "흐름 방지 리트랙션 속도" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "파단 준비 리트랙션 위치" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "파단 준비 리트랙션 속도" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "준비 온도 파단" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "파단 리트랙션 위치" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "파단 리트랙션 속도" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "파단 온도" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "수평 퍼지 속도" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "다른 재료로 전환 후 재료를 압출하는 속도." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "수평 퍼지 길이" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "필라멘트 끝의 퍼지 속도" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "필라멘트 끝의 퍼지 길이" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "최대 파크 기간" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "로드 이동 요인 없음" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "피더와 노즐 챔버 사이에 필라멘트가 압축되는 양을 나타내는 요소, 필라멘트 전환을 위해 재료를 움직이는 범위를 결정하는 데 사용됨." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "공급량" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "벽 압출량" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "벽 라인의 압출 보상입니다." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "외벽 압출량" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "가장 외측 벽 라인의 압출 보상입니다." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "내벽 압출량" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "상면 가장 바깥 벽의 유량" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "상면 내벽 흐름" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "상단/하단 압출량" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "상단/하단 라인의 압출 보상입니다." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "상단 표면 스킨 압출량" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "프린트 상단 부분 라인의 압출 보상입니다." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "내부채움 압출량" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "내부채움 라인의 압출 보상입니다." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "스커트/브림 압출량" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "스커트 또는 브림 라인의 압출 보상입니다." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "지지대 압출량" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "지지대 구조 라인의 압출 보상입니다." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "지지대 인터페이스 압출량" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "지지대 지붕 압출량" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "지지대 지붕 라인의 압출 보상입니다." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "지지대 바닥 압출량" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "지지대 바닥 라인의 압출 보상입니다." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "프라임 타워 압출량" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "프라임 타워 라인의 압출 보상입니다." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "첫번째 레이어 압출량" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "첫 번째 레이어 내벽 압출량" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "첫 번째 레이어 외벽 압출량" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "첫 번째 레이어 하단 압출량" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "첫 번째 레이어 하단 라인의 압출 보상" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "대기 온도" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "서포트 재료임" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "이 재료는 일반적으로 프린팅 중에 서포트 재료로 사용됩니다." - -msgctxt "speed label" -msgid "Speed" -msgstr "속도" - -msgctxt "speed description" -msgid "Speed" -msgstr "속도" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "프린팅 속도" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "프린팅 속도." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "내부채움 속도" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "내부채움이 프린팅되는 속도." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "벽 속도" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "벽이 프린팅되는 속도입니다." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "외벽 속도" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "내벽 속도" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "상면 외벽 속도" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "상면 내벽 속도" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 속도" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "상단 표면 스킨 속도" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 속도." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "상단/하단 속도" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "서포트 속도" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "서포트 내부채움 속도" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "서포트 인터페이스 속도" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "서포트 상단 속도" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "서포트 바닥 속도" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "프라임 타워 속도" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "이동 속도" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "움직일때의 이동 속도." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "초기 레이어 속도" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "초기 레이어 프린팅 속도" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "초기 레이어 이동 속도" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "스커트/브림 속도" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 홉 속도" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 홉을 위해 수직 Z 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "느리게 프린팅할 레이어의 수" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "흐름 균일화 비율" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "가속 제어 활성화" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "이동 가속 활성화" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "프린팅 가속도" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "프린팅 속도가 빨라집니다." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "내부채움 가속도" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "내부채움물이 프린팅되는 가속도." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "벽 가속도" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "벽이 프린팅되는 가속도." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "외벽 가속도" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "내벽 가속도" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 가속도입니다." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "상면 외벽 가속도" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "상면 내벽 가속도" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "상면 내벽이 인쇄되는 가속도" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "상단 표면 스킨 가속도" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 가속도." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "상단/하단 가속도" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "서포트 가속도" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 가속도." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "서포트 내부채움 가속도" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "서포트의 내부채움이 프린팅되는 가속도." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "서포트 인터페이스 가속도" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "서포트 상단 가속도" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "서포트 바닥 가속도" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "프라임 타워 가속" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 가속도." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "이동 가속" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "헤드가 움직일때의 가속도." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "초기 레이어 가속" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "초기 레이어의 가속도입니다." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "초기 레이어 프린팅 가속" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "초기 레이어 프린팅 중 가속도." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "초기 레이어 이동 가속도" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 가속도" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Jerk 컨트롤 사용" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "이동 저크 활성화" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk 프린팅" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "프린트 헤드의 최대 순간 속도 변화." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk 내부채움" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "벽 Jerk" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "벽이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "외벽 Jerk" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "내벽 Jerk" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "상면 내벽의 최대 순간 속도 변화" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "스킨 표면 Jerk" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "위/아래 Jerk" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "서포트 Jerk" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "서포트 내부채움 Jerk" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "서포트가 채워지는 최대 순간 속도 변화." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "서포트 인터페이스 Jerk" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "서포트 위 Jerk" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "서포트 바닥 Jerk" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "프라임 타워 Jerk" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "이동 Jerk" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "헤드가 이동하는 최대 순간 속도 변화." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "초기 레이어 Jerk" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "초기 레이어 프린팅 Jerk" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "초기 레이어 이동 Jerk" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim Jerk" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." - -msgctxt "travel label" -msgid "Travel" -msgstr "이동" - -msgctxt "travel description" -msgid "travel" -msgstr "이동" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "리트렉션 활성화" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "레이어 변경시 리트렉션" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "리트렉션 거리" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "리트렉션 속도" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "리트렉션 속도입니다." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "리트렉션 속도" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "리트렉션 속도입니다." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "리트렉션 초기 속도" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "추가적인 리트렉션 정도" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "리트렉션 최소 이동" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "최대 리트렉션 수" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "최소 압출 영역" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing 모드" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 상단/하단 스킨 영역을 Combing하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "끔" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "모두" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "외부 표면에 없음" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "스킨에 없음" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "내부채움 내" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "수축이 없을 때 최대 빗질 거리" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "외벽 전에 리트렉션" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "움직일 때 프린팅한 부분을 피하기" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "이동하는 경우 지지대 피함" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "이동중 피하는 거리" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "레이어 시작 X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "레이어 시작 Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "리트렉션했을 때의 Z Hop" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "프린팅 된 부분에만 Z Hop" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 홉 높이" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행 할 때의 높이 차이." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "익스트루더 스위치 후 Z 홉" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "익스트루더 스위치 높이 후 Z 홉" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "냉각" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "냉각" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "프린팅 냉각 사용" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "팬 속도" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "프린팅 냉각 팬이 회전하는 속도입니다." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "표준 팬 속도" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "최대 팬 속도" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "표준/최대 팬 속도 임계 값" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "초기 팬 속도" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "표준 팬 속도시의 높이" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "표준 팬 속도시의 레이어" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "최소 레이어 시간" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "최저 속도" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "리프트 헤드" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "소형 레이어 프린팅 온도" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." - -msgctxt "support label" -msgid "Support" -msgstr "서포트" - -msgctxt "support description" -msgid "Support" -msgstr "서포트" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "서포트 생성" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "서포트 익스트루더" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "서포트 내부채움 익스트루더" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "첫 번째 레이어 서포트 익스트루더" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "서포트 인터페이스 익스트루더" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "서포트 지붕 익스트루더" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "서포트 바닥 익스트루더" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "서포트 구조" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "표준" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "트리" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "최대 브랜치 각도" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "모델 주위로 브랜치가 자랄 때 브랜치의 최대 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치의 도달 거리를 늘리려면 더 높은 각도를 사용하십시오." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "브랜치 직경" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "트렁크 직경" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "브랜치 직경 각도" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "서포트 배치" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "빌드 플레이트 위" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "어디에나" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "기본 브랜치 각도" - -msgctxt "support_tree_angle_slow description" -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 "모델을 피할 필요가 없을 때 브랜치의 기본 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치가 빨리 합쳐지도록 하려면 더 높은 각도를 사용하십시오." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "모델에 대한 직경 증가" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "모델에 연결해야 하는 브랜치의 직경은 빌드 플레이트에 도달할 수 있는 브랜치와 병합하여 최대로 늘릴 수 있습니다. 이를 늘리면 프린트 시간이 단축되지만 모델에 닿는 서포트 영역이 증가합니다." - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "모델에 대한 최소 높이" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "모델에 브랜치를 배치할 때 브랜치의 높이를 설정합니다. 이에 따라 서포트의 작은 얼룩이 방지됩니다. 브랜치가 서포트 지붕을 서포트하는 경우 이 설정은 무시됩니다." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "초기 레이어 직경" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "모든 브랜치가 빌드 플레이트에 도달할 때 달성하려고 하는 직경입니다. 이에 따라 베드 접착력이 개선됩니다." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "브랜치 밀도" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "브랜치의 팁을 생성하는 데 사용되는 서포트 구조의 밀도를 조정합니다. 값이 클수록 오버행은 개선되지만 서포트를 제거하기가 어려워집니다. 매우 큰 값을 위해서는 서포트 지붕을 사용하거나 상단의 서포트 밀도가 비슷하게 높은지 확인합니다." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "팁 직경" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "트리 서포트 브랜치 팁의 상단 직경입니다." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "브랜치 도달 거리 제한" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "최적 브랜치 범위" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "브랜치가 서포트하는 지점에서 뻗어 나가는 거리에 대한 권장 사항입니다. 브랜치는 목적지(빌드 플레이트 또는 모델의 평평한 부분)에 도달하기 위해 이 값을 초과할 수 있습니다. 이 값을 낮추면 서포트가 더 견고해지지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "배치 기본 설정" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "서포트 구조물의 기본 배치입니다. 구조물을 원하는 위치에 배치할 수 없는 경우 구조물을 모델 위에 놓더라도 다른 곳에 배치합니다." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "가능한 경우 빌드 플레이트에" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "필요한 경우 모델에" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "오버행 각도" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "서포트 패턴" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "격자" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "십자" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "자이로이드" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "지지대 벽 라인 카운트" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "지지대 인터페이스 벽 라인 수" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "지지대 지붕 벽 라인 수" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "지지대 하단 벽 라인 수" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "서포트 선 연결" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "ZigZags 서포트 연결" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "서포트 밀도" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "서포트 선 거리" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "초기 레이어 서포트 선 거리" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "서포트 내부채움 선 방향" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "서포트 브림 사용" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "서포트 브림 폭" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "서포트 브림 라인 수" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "서포트 Z 거리" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "서포트 구조물의 상단/하단에서 프린트까지의 거리입니다. 이 공간은 모델이 인쇄된 후 서포트를 제거할 수 있도록 여유를 제공합니다. 모델 아래 최상위 서포트 레이어는 정규 레이어의 일부일 수 있습니다." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "서포트 상단 거리" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "서포트 상단에서 프린팅까지의 거리." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "서포트 바닥 거리" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "프린트에서 서포트 바닥까지의 거리입니다. 이는 다음 레이어 높이로 반올림됩니다." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X/Y 서포트 거리" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "서포트 거리 우선 순위" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y가 Z를 무시합니다" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z가 X/Y를 무시합니다" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "최소 서포트 X/Y 거리" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "계단 Step Height 서포트" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "서포트 계단 스텝 최대 폭" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "서포트 계단 스텝 최소 경사 각도" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "서포트 Join 거리" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "X/Y 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "수평 확장 서포트" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "서포트 내부채움 레이어 두께" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "점진적 서포트 내부채움 단계" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "점진적 서포트 내부채움 단계 높이" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "최소 서포트 지역" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "서포트 인터페이스 사용" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "서포트 지붕 사용" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "서포트 바닥 사용" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "서포트 인터페이스 두께" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "서포트 지붕 두께" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "서포트 바닥 두께" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "서포트 인터페이스 밀도" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "출력물의 내부채움을 조절합니다." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "서포트의 지붕 및 바닥 밀도를 조정합니다. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "서포트 지붕 밀도" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "브랜치의 팁을 생성하는 데 사용되는 서포트 구조의 밀도를 조정합니다. 값이 클수록 오버행은 개선되지만 서포트를 제거하기가 어려워집니다. 매우 큰 값을 위해서는 서포트 지붕을 사용하거나 상단의 서포트 밀도가 비슷하게 높은지 확인합니다." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트 구조의 밀도를 조정합니다. 값이 높을수록 오버행이 좋아 서포트만 서포트를 제거하기가 더 어렵습니다." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "서포트 지붕 선 거리" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "사용 된 필라멘트의 직경을 조정합니다. 이 값을 사용될 필라멘트의 직경과 일치시킵니다." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "서포트 바닥 밀도" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "서포트 바닥 선 거리" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "서포트 인터페이스 패턴" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "그리드" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "서포트 지붕 패턴" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "서포트의 지붕이 프린팅되는 패턴." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "그리드" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "서포트 바닥 패턴" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "서포트의 바닥이 프린팅되는 패턴." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "라인" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "그리드" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "삼각형" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "동심원의" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "지그재그" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "최소 서포트 인터페이스 지역" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "최소 서포트 지붕 지역" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "최소 서포트 바닥 지역" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "서포트 인터페이스 수평 확장" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "서포트 지붕 수평 확장" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "서포트 지붕에 적용되는 오프셋 양." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "서포트 바닥 수평 확장" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "서포트 바닥에 적용되는 오프셋 양." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "서포트 인터페이스 우선순위" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "서포트 인터페이스와 서포트가 겹칠 때 상호 작용하는 방식으로, 현재 서포트 지붕에만 구현되어 있습니다." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "서포트 우선" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "인터페이스 우선" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "서포트 라인 우선" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "인터페이스 라인 우선" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "둘 다 겹침" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "서포트 인터페이스 선 방향" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "서포트 지붕 선 방향" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "바닥 지붕 선 방향" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "사용할 정수 선 방향 리스트입니다. 리스트의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며 리스트의 끝에 도달하면 처음부터 다시 시작됩니다. 리스트 항목은 쉼표로 구분되며 전체 리스트는 대괄호 안에 들어 있습니다. 기본값은 빈 목록입니다. 즉 기본 각도인 0도를 사용합니다(인터페이스가 상당히 두껍거나 90도라면 45도와 135도를 번갈아 사용)." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "팬 속도 무시" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "지원되는 스킨 팬 속도" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "타워 사용" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "타워 지름" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "특수 타워의 지름." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "최대 타워 지지 직경" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "특수 지지대 타워에 의해서 지지될 작은 영역의 X/Y 방향의 최대 직경입니다." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "타워 지붕 각도" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "드롭 다운 서포트 메쉬" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "장면에 서포트 메쉬가 있습니다" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "빌드 플레이트 고정" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "고정" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "프라임 블롭 활성화" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "익스트루더 프라임 X 위치" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 X 좌표." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "익스트루더 프라임 Y 위치" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "프린팅이 시작될 때 노즐이 시작하는 위치의 Y 좌표." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "빌드 플레이트 고정 유형" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "스커트" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "브림" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "래프트" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "None" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "빌드 플레이트 고정 익스트루더" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "스커트/브림 익스트루더" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "래프트 베이스 익스트루더" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "래프트 중간 익스트루더" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "래프트 상단 익스트루더" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "스커트 선 수" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "스커트 높이" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "가장 안쪽의 스커트 라인을 여러 겹으로 프린트하면 스커트를 쉽게 제거할 수 있습니다." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "스커트 거리" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다." -"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "스커트/브림 최소 길이" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "브림 너비" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "브림 선 수" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "브림 거리" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "브림이 서포트를 대체" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "브림 위치" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "모델 외부, 내부 또는 양쪽 모두에 브림을 출력합니다. 모델에 따라 나중에 제거해야 하는 브림의 양을 줄이는 데 도움이 될 수 있으며, 베드에 적절하게 밀착시킬 수 있습니다." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "외부만" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "내부만" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "모두" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "브림의 여백 회피" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "모델 주위의 브림은 원하지 않는 다른 모델에 닿을 수 있습니다. 이 설정은 브림이 없는 모델에서 이 거리 내의 모든 브림을 제거합니다." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "스마트 브림" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "가장 안쪽의 브림 라인과 그다음으로 안쪽에 있는 브림 라인의 프린트 순서를 바꿉니다. 이렇게 하면 브림이 잘 제거됩니다." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "래프트 추가 여백" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "래프트 베이스 추가 여백" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "래프트 베이스가 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "래프트 중간 추가 여백" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "래프트 중간이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "래프트 상단 추가 여백" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "래프트 상단이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "래프트 내부 모서리 제거" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "래프트 베이스 내부 모서리 제거" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트 베이스에서 내부 모서리를 제거합니다." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "래프트 중간 내부 모서리 제거" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트 중간 부분에서 내부 모서리를 제거합니다." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "래프트 상단 내부 모서리 제거" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "래프트가 볼록해지도록 래프트 상단 부분에서 내부 모서리를 제거합니다." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "래프트 부드럽게하기" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "래프트 베이스 부드럽게 하기" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "이 설정은 래프트 베이스의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "래프트 중간 부드럽게 하기" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "이 설정은 래프트 중간의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "래프트 상단 부드럽게 하기" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "이 설정은 래프트 상단의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "래프트 에어 갭" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "초기 레이어 Z 겹침" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "모델의 첫 번째 및 두 번째 레이어를 Z 방향으로 겹쳐서 에어 갭에서 손실된 필라멘트를 보완합니다. 첫 번째 모델 레이어 위의 모든 모델은 이 값만큼 아래로 이동합니다.\n이 설정으로 인해 두 번째 레이어가 초기 레이어 아래에 출력되는 경우가 있습니다. 이는 의도된 동작입니다." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "래프트 기준 두께" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "래프트 기준 선 너비" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "래프트 기준 선 간격" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "래프트 중간 레이어" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "래프트 중간 두께" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "중간 래프트 층의 층 두께." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "래프트 중간 선 너비" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "래프트 중간 간격" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "래프트 탑 레이어" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "래프트 상단 레이어 두께" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "상단 래프트 레이어의 레이어 두께." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "래프트 상단 선 너비" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "래프트 상단 간격" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "단면 래프트 상단 표면 순서" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "래프트 상단 표면 선이 항상 한 방향으로 인접한 선과 겹치도록 순서대로 출력합니다. 출력 시간은 약간 더 소요되지만, 모델 하단 표면에서도 보이는 표면을 더 일관적으로 보이게 만들 수 있습니다." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "래프트 벽 수" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "래프트의 선형 패턴 주위에 출력할 윤곽선 수입니다." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "래프트 베이스 벽 개수" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "래프트 중간 벽 수" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "래프트의 중간 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "래프트 상단 벽 수" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "래프트의 상단 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "래프트 프린팅 속도" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "래프트가 프린팅되는 속도." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "래프트 기본 프린팅 속도" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "래프트 중앙 프린팅 속도" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "래프트 상단 프린팅 속도" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "래프트 프린팅 가속도" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "래프트가 프린팅되는 가속도." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "래프트 기본 프린팅 가속도" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "래프트 중앙 프린팅 가속도" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅되는 가속도." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "래프트 상단 프린팅 가속도" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "래프트 프린팅 Jerk" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "래프트가 프린팅 될 때의 Jerk입니다." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "래프트 기본 프린팅 Jerk" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "래프트 중앙 프린팅 Jerk" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "래프트 상단 프린팅 Jerk" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "래프트 팬 속도" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "래프트의 팬 속도." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "래프트 기본 팬 속도" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "기본 래프트 레이어의 팬 속도입니다." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "래프트 중앙 팬 속도" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "중간 래프트 레이어의 팬 속도입니다." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "래프트 상단 팬 속도" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "상단 래프트 레이어의 팬 속도입니다." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "이중 압출" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "프라임 타워 사용" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "프라임 타워 유형" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "프라임 타워 생성 방법:
    • 일반: 보조 재료가 프라이밍되는 버킷을 생성합니다.
    • 중간 삽입: 프라임 타워를 최대한 희박하게 생성합니다. 시간과 필라멘트를 절약하지만, 사용된 재료가 서로 밀착되는 경우에만 가능합니다.
    " - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "일반" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "중간 삽입" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "프라임 타워 사이즈" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "프라임 타워의 너비." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "프라임 타워 최소 볼륨" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "프라임 타워 최대 브리징 거리" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "공중에서 출력될 수 있는 브랜치의 최대 길이입니다." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "프라임 타워 X 위치" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 x 좌표입니다." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "프라임 타워 Y 위치" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "프라임 타워 위치의 y 좌표입니다." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "프라임 타워에서 비활성 노즐 닦기" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "하나의 노즐로 프라임 타워를 프린팅 한 후, 다른 타워의 이물질을 프라임 타워에서 닦아냅니다." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "프라임 타워 베이스" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "기기가 하나의 익스트루더에서 다른 익스트루더로 전환 된 후, 빌드 플레이트가 내려가 노즐과 출력물 사이에 간격이 생깁니다. 이렇게 하면 프린트 물 바깥쪽에서 노즐로 부터 필라멘트가 흐르는 것을 방지합니다." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "프라임 타워 베이스 크기" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "프라임 타워 브림/베이스의 폭입니다. 베이스가 크면 빌드 플레이트에 대한 접착력이 향상되지만, 실제 인쇄 영역은 줄어듭니다." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "프라임 타워 베이스 높이" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "프라임 타워 베이스의 높이입니다. 이 값을 늘리면 베이스가 넓어져 프라임 타워가 더 튼튼해집니다. 이 설정이 너무 낮으면 프라임 타워에 튼튼한 베이스가 형성되지 않습니다." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "프라임 타워 베이스 경사" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "프라임 타워 베이스의 경사에 사용되는 크기 계수입니다. 이 값을 늘리면 베이스가 더 얇아집니다. 줄이면 베이스가 더 두꺼워집니다." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "프라임 타워 래프트 선 간격" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "독특한 프라임 타워 래프트 레이어를 위한 래프트 라인 간 거리입니다. 간격이 넓을수록 빌드 플레이트에서 래프트를 쉽게 제거할 수 있습니다." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ooze 쉴드 사용" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ooze 쉴드 각" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Ooze 쉴드 거리" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "노즐 스위치 리트렉션 거리" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "익스트루더 전환 시 리트렉션 양. 리트렉션이 전혀 없는 경우 0으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "노즐 스위치 리트렉션 속도" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "노즐 스위치 후퇴 속도" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "노즐 스위치 프라임 속도" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "노즐 스위치 엑스트라 프라임 양" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "메쉬 수정" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "유니언 오버랩 볼륨" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "모든 구멍 제거" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "광범위한 스티칭" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "끊긴 면 유지" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "중복된 메쉬 합치기" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "교차된 메쉬 제거" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "대체 메쉬 제거" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "비어 있는 첫 번째 레이어 제거" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "최대 해상도" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "최대 이동 해상도" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "최대 편차" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "최대 압출 영역 편차" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "직선에서 중간 점을 제거할 때 허용되는 최대 압출 영역 편차. 중간 점은 긴 직선에서 너비가 바뀌는 점의 역할을 할 수 있습니다. 따라서 중간 점이 제거되면 선의 너비가 균일해지고 그 결과, 약간의 압출 영역을 잃거나 얻게 됩니다. 이 값을 증가시키면 중간의 너비가 바뀌는 점이 더 많이 제거될 수 있으므로, 직선의 평행한 벽들 사이에 약간의 미달(또는 과잉) 압출이 발생할 수 있습니다. 프린트의 정확도는 감소하지만, G 코드도 감소합니다." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "플루이드 모션 활성화" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "플루이드 모션 이동 거리" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "플루이드 모션 가까운 거리" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "플루이드 모션 각도" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "도구 경로 세그먼트가 일반적인 모션에서 이 각도보다 더 많이 벗어나면 평활화됩니다." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "특수 모드" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "모델을 프린팅하는 새로운 방법들." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "프린팅 순서" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "모든 모델을 한 번에 한 레이어씩 프린팅할 것인지, 아니면 한 모델이 완료될 때까지 기다릴 것인지, 다음 단계로 넘어가기 전에 대한 여부 a) 한 번에 하나의 압출기만 활성화하고 b) 모든 모델은 전체 프린트 헤드가 이동할 수 있는 방식으로 분리되며 모든 모델은 노즐과 X/Y 축 사이의 거리보다 낮습니다." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "모두" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "모두 한꺼번에" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "한번에 하나씩" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "수동으로 인쇄 순서 설정" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "출력물의 해상도에 영향을 미치는 모든 설정. 이러한 설정은 품질 (및 프린팅 시간)에 큰 영향을 미칩니다." msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "객체 목록의 순서를 지정하여 출력 순서를 수동으로 설정할 수 있도록 허용합니다. 목록의 첫 번째 객체가 먼저 출력됩니다." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "메쉬 내부채움" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "대체 여분 벽" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "메쉬 처리 랭크" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "커팅 메쉬" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "몰드" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "최소 몰드 너비" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "몰드 지붕 높이" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "몰드 각도" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "서포트 메쉬" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "안티 오버행 메쉬" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "표면 모드" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "표준" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "표면" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "모두" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "외부 윤곽선을 나선형으로 만듦" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "부드러운 나선형 윤곽" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "나선형 윤곽선을 부드럽게 하여 Z 이음선이 잘 보이지 않도록 합니다(Z- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "상대적 압출" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "실험적인" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "아직 구체화되지 않은 기능들." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "슬라이싱 허용 오차" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "중간" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "배타적" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "중복" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "내부채움재 이동 최적화" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "재료 공급 온도 그래프" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "최소 다각형 둘레" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "레이어가 슬라이스 된, 이 값보다 둘레가 작은 다각형은 필터링됩니다. 값을 낮을수록 슬라이스가 느려지지만, 해상도 메쉬가 높아집니다. 주로 고해상도 SLA 프린터 및 세부 사항이 많은 매우 작은 3D 모델에 적합합니다." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "연동 구조 생성" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "연동 빔 너비" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "연동 구조 빔의 너비입니다." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "연동 구조 방향" - -msgctxt "interlocking_orientation description" -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 "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "연동 빔 레이어 수" - -msgctxt "interlocking_beam_layer_count description" -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 "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "연동 깊이" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "연동 경계 회피" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Chunk에서 서포트 중단" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "서포트 Chunk 크기" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Chunk 라인 카운트 서포트" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "드래프트 쉴드 사용" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "드래프트 쉴드 X/Y 거리" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "드래프트 쉴드 제한" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "가득찬" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "제한된" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "드래프트 쉴드 높이" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "오버행이 프린팅되도록 설정" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "최대 모델 각도" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "최대 오버행 홀 영역" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "오버행 프린팅 설정에 의해 제거되기 전 모델의 베이스에 있는 구멍의 최대 영역입니다. 이보다 작은 홀은 유지됩니다. 0mm² 값은 모델 베이스의 모든 홀을 채웁니다." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "코스팅(Coasting) 사용" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "코스팅(Coasting) 양" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "코스팅(Coasting) 최소 양" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "코스팅(Coasting) 속도" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "크로스 3D 포켓 크기" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "교차 충진 밀도 이미지" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "지지대에 대한 교차 충진 밀도 이미지" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "원추형 서포트 사용" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "원추서포트 각" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "원뿔형 서포트 최소 너비" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "퍼지 스킨" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "부용 퍼지 스킨" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "퍼지 스킨 두께" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "퍼지 스킨 밀도" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "퍼지 스킨 포인트 거리" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "압출 속도 보상 최대 압출 오프셋" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "압출 속도를 보상하기 위해 필라멘트를 이동하는 최대 거리(mm)." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "압출 속도 보상 배율" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "압출 속도 변화를 보상하기 위해 필라멘트를 이동하는 거리(1초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "어댑티브 레이어 사용" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "어댑티브 레이어는 모델의 모양에 따라 레이어의 높이를 계산합니다." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "어댑티브 레이어 최대 변화" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "기본 레이어 높이와 다른 최대 허용 높이." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "어댑티브 레이어 변화 단계 크기" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "어댑티브 레이어 지형 크기" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "오버행된 벽 각도" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "이 각도보다 놓은 오버행(경사면)의 벽은 오버행 벽 설정을 사용해 인쇄됩니다. 값이 90이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "오버행된 벽 속도" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "브릿지 설정 사용" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "최소 브리지 벽 길이" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "브릿지 스킨 서포트 임계값" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "브리지의 희박한 내부채움 최대 밀도" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "브릿지 벽 코스팅(Coasting)" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "브릿지 벽 속도" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "브릿지 벽이 프린팅되는 속도." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "브리지 벽 압출량" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "브릿지 스킨 속도" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "브릿지 스킨 층이 프린팅되는 속도." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "브리지 스킨 압출량" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "브릿지 스킨 밀도" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "브릿지 팬 속도" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "여러 개의 레이어가있는 브릿지" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "브릿지 두번째 스킨 속도" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "브리지 두 번째 스킨 압출량" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "브리지 두 번째 스킨 밀도" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "브릿지 두번째 스킨 팬 속도" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "브릿지 세번째 스킨 속도" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "브리지 세 번째 스킨 압출량" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "브릿지 세번째 스킨 밀도" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "브릿지 세번째 스킨 팬 속도" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "레이어 사이의 와이프 노즐" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "노즐 와이퍼 작동 G-코드를 레이어 사이에 포함할지 여부(레이어당 최대 1개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "와이프 사이의 재료 볼륨" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "와이프 리트랙션 활성화" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "와이프 리트랙션 거리" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "와이프 리트랙션 추가 초기 양" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "와이프 리트랙션 속도" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "와이프 리트랙션 리트렉트 속도" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "와이프 리트렉션 초기 속도" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "와이프 일시 정지" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "와이프 Z 홉" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "화이프 Z 홉 높이" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z 홉을 수행할 때의 높이 차이." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "와이프 홉 속도" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "홉 중에 z축을 이동하는 속도입니다." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "와이프 브러시 X 위치" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "와이프 스크립트가 시작되는 X 위치입니다." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "와이프 반복 횟수" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "와이프 이동 거리" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "소형 구멍 최대 크기" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "소형 피처 최대 길이" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "소형 피처 속도" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "소형 피처 초기 레이어 속도" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "대체 메쉬 제거" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "다른 레이어마다 벽 방향을 대체하고 삽입합니다. 금속 프린팅의 경우와 같이 응력을 증강시킬 수 있는 재료에 유용." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "외벽 그룹화" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "알루미늄" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "항상 활성 도구 쓰기" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "출력 과정 보고" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "외벽을 프린팅하기 위해 이동할 때 항상 리트렉션합니다." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "설정된 임곗값을 벗어난 이벤트 보고" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "각 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 양수 값은 아주 큰 구멍을 보완 할 수 있습니다. 음수 값은 아주 작은 구멍을 보완 할 수 있습니다." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "출력 과정 보고 활성화" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "첫 번째 레이어의 모든 다각형에 적용된 오프셋의 양입니다. 음수 값은 \"elephant's foot\"이라고 알려진 현상을 보완 할 수 있습니다." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "발생할 수 있는 오류를 감지하도록 임곗값 설정을 위한 출력 과정 보고를 활성화합니다." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "각 레이어의 모든 서포트 다각형에 적용된 오프셋의 양입니다. 양수 값을 사용하면 서포트 영역이 원활 해지며 보다 견고한 서포트가 됩니다." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "유량 경고" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "서포트 바닥에 적용되는 오프셋 양." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "감지 시의 유량 제한 경고입니다." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "서포트 지붕에 적용되는 오프셋 양." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "유량 제한" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "서포트 인터페이스 영역에 적용되는 오프셋 양." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "감지 시의 비정상적인 유량 제한입니다." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "필라멘트를 리트렉션하는 양으로 와이프 순서 동안 새어 나오지 않습니다." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "출력 온도 경고" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "모델의 경계를 확인하기 위해 각 큐브의 중심에서 반경을 더하여 이 큐브를 세분화할지 여부를 결정합니다. 값이 클수록 모델의 경계 근처에 작은 큐브가 더 두껍게 나옵니다." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "감지 시의 출력 온도 제한 경고입니다." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "안티 오버행 메쉬" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "출력 온도 제한" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "흐름 방지 리트랙션 위치" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "감지 시의 비정상적인 출력 온도 제한입니다." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "흐름 방지 리트랙션 속도" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "빌드 볼륨 온도 경고" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "익스트루더 오프셋을 좌표계에 적용하십시오. 모든 익스트루더에 적용됩니다." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "감지 시의 빌드 볼륨 온도 제한 경고입니다." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "모델이 닿는 위치에 연동 빔 구조를 생성합니다. 이렇게 하면 모델, 특히 다른 재료로 프린트된 모델 간의 접착력이 개선됩니다." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "움직일 때 프린팅한 부분을 피하기" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "이동하는 경우 지지대 피함" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "뒤로" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "후면 왼쪽" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "후면 오른쪽" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "모두" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "둘 다 겹침" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "하단 레이어" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "하단 패턴 초기 레이어" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "밑면 스킨 확장 거리" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "밑면 스킨 제거 폭" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "바닥 두께" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "브랜치 밀도" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "브랜치 직경" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "브랜치 직경 각도" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "파단 준비 리트랙션 위치" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "파단 준비 리트랙션 속도" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "준비 온도 파단" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "파단 리트랙션 위치" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "파단 리트랙션 속도" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "파단 온도" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Chunk에서 서포트 중단" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "브릿지 팬 속도" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "여러 개의 레이어가있는 브릿지" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "브리지 두 번째 스킨 밀도" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "브릿지 두번째 스킨 팬 속도" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "브리지 두 번째 스킨 압출량" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "브릿지 두번째 스킨 속도" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "브릿지 스킨 밀도" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "브리지 스킨 압출량" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "브릿지 스킨 속도" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "브릿지 스킨 서포트 임계값" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "브리지의 희박한 내부채움 최대 밀도" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "브릿지 세번째 스킨 밀도" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "브릿지 세번째 스킨 팬 속도" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "브리지 세 번째 스킨 압출량" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "브릿지 세번째 스킨 속도" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "브릿지 벽 코스팅(Coasting)" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "브리지 벽 압출량" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "브릿지 벽 속도" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "브림" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "브림의 여백 회피" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "브림 거리" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "브림 선 수" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "브림 위치" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "브림이 서포트를 대체" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "브림 너비" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "빌드 플레이트 부착" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "빌드 플레이트 고정 익스트루더" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "빌드 플레이트 고정 유형" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "빌드 플레이트 재질" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "빌드 플레이트 모양" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "빌드 플레이트 온도" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "초기 레이어의 빌드 플레이트 온도" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "빌드 볼륨 온도" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "빌드 볼륨 온도 제한" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "감지 시의 비정상적인 빌드 볼륨 온도 제한입니다. " +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "빌드 볼륨 온도 경고" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "커맨드 라인 설정" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "이 설정을 활성화하면 모델에 브림이 없더라도 프라임 타워에는 브림이 생성됩니다. 높은 타워의 튼튼한 베이스가 필요하다면 베이스 높이를 늘릴 수 있습니다." msgctxt "center_object label" msgid "Center Object" msgstr "가운데 객체" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "최소한의 서포트가 필요하도록 프린팅 된 모델의 형상을 변경합니다. 가파른 오버행은 얕은 오버행이됩니다. 오버행 영역이 더 수직으로 떨어집니다." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "서포트를 생성하는 데 사용할 수 있는 기술 중 하나를 선택합니다. '표준' 서포트는 오버행(경사면) 파트 바로 아래에 서포트 구조물을 생성하고 해당 영역을 바로 아래로 떨어뜨립니다. '트리' 서포트는 모델을 지지하는 브랜치 끝에서 오버행(경사면) 영역을 향해 브랜치를 만들고 빌드 플레이트에서 모델을 지지할 수 있도록 모델을 브랜치로 최대한 감쌉니다." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "코스팅(Coasting) 속도" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "코스팅(Coasting) 양" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "코스팅(Coasting)은 압출 경로의 마지막 부분을 이동 경로로 바꿉니다. 누출된 재료는 스트링을 줄이기 위해 압출 경로의 마지막 부분을 프린팅하는 데 사용됩니다." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing 모드" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Combing은 이동할 때 이미 인쇄 된 영역 내에 노즐을 유지합니다. 이로 인해 이동이 약간 더 길어 지지만 리트렉션의 필요성은 줄어듭니다. Combing이 꺼져 있으면 재료가 후퇴하고 노즐이 직선으로 다음 점으로 이동합니다. 또한 상단/하단 스킨 영역을 Combing하거나 내부채움 내에서만 빗질하는 것을 피할 수 있습니다." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "커맨드 라인 설정" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "동심원" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "동심원" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "동심원의" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "동심원 형태" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "동심원의" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "원추서포트 각" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "원뿔형 서포트 최소 너비" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "내부채움 선 연결" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "내부채움 다각형 연결" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "서포트 선 연결" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "ZigZags 서포트 연결" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "상단/하단 다각형 연결" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "스킨 경로가 나란히 이어지는 내부채움 경로를 연결합니다. 여러 개의 폐다각형으로 구성되는 내부채움 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소합니다." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "지그재그를 연결하십시오. 이것은 지그재그 서포트 구조의 강도를 증가시킵니다." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "서포트의 끝을 서로 연결하십시오. 이 설정을 사용하면 서포트가 보다 견고해지지만 더 많은 재료가 소모됩니다." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "내벽의 형태를 따라가는 선을 사용하여 내부채움 패턴과 내벽이 만나는 끝을 연결합니다. 이 설정을 사용하면 내부채움이 벽에 더 잘 붙게되어 내부채움이 수직면의 품질에 미치는 영향을 줄일 수 있습니다. 이 설정을 해제하면 사용되는 재료의 양이 줄어듭니다." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "스킨 경로가 나란히 이어지는 상단/하단 스킨 경로를 연결합니다. 동심원 패턴의 경우 이 설정을 사용하면 이동 시간이 크게 감소하지만, 내부채움의 중간에 연결될 수 있기 때문에 이 기능은 상단 표면 품질을 저하시킬 수 있습니다." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "모델 외곽선의 모서리가 이음선의 위치에 영향을 주는지 여부를 제어합니다. 이것은 모서리가 이음선 위치에 영향을 미치지 않는다는 것을 의미하지 않습니다. 이음선 숨김은 이음선이 안쪽 모서리에서 발생할 가능성을 높입니다. 이음선 노출은 이음선이 외부 모서리에서 발생할 가능성을 높입니다. 이음선 숨김 또는 노출은 이음선이 내부나 외부 모서리에서 발생할 가능성을 높입니다. 스마트 숨김은 내외부 모서리 모두 가능하지만, 적절하다면 내부 모서리를 더욱 빈번하게 선택합니다." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "각 내부채움 선을 여러 개의 선으로 변환합니다. 추가되는 선은 다른 선을 교차하지 않고, 다른 선을 피해 변환됩니다. 내부채움을 빽빽하게 만들지만, 인쇄 및 재료 사용이 증가합니다." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "냉각 속도" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "냉각" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "냉각" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "십자형" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "십자" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "십자형 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "크로스 3D 포켓 크기" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "지지대에 대한 교차 충진 밀도 이미지" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "교차 충진 밀도 이미지" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "결정형 소재" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "입방체" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "입방체 세분" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "입방 세분 쉘" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "커팅 메쉬" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "재료 공급 데이터 (mm3 / 초) - 온도 (섭씨)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "기본 가속도" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "기본 빌드 플레이트 온도" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "기본 필라멘트 Jerk" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "기본 프린팅 온도" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "기본 X-Y Jerk" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "기본 Z Jerk" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "수평면에서의 이동을 위한 기본 Jerk." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 방향 모터의 기본 Jerk." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 기본 Jerk." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "브릿지가 출력되는 중에 브리지를 감지하고 인쇄 속도, 흐름 및 팬 설정을 수정합니다." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "벽이 프린팅되는 순서를 정의합니다. 외벽을 먼저 프린팅하면 내벽의 오류가 외부로 전파될 수 없으므로 치수 정확도가 향상됩니다. 그러나 나중에 프린팅하면 오버행(경사면)이 프린트팅 될 때 더 잘 쌓일 수 있습니다. 전체 내벽의 총량이 불균일할 경우, '가운데 마지막 선'이 항상 마지막에 인쇄됩니다." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "여러 내부채움 매쉬 오버랩을 고려할 때 메쉬의 우선 순위를 결정합니다. 여러 내부채움 메쉬가 오버랩하는 영역은 최고 랭크의 메쉬 설정에 착수하게 됩니다. 높은 내부채움 메쉬는 낮은 내부채움 메쉬와 표준 메쉬의 내부채움을 수정합니다." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "라이트닝 내부채움 레이어가 그 위에 있는 것을 서포트해야 할 부분을 결정합니다. 레이어 두께가 주어진 각도로 측정됩니다." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "라이트닝 내부채움 레이어가 레이어 위에 있는 모델을 서포트해야 할 부분을 결정합니다. 두께가 주어진 각도로 측정됩니다." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "직경" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "모델에 대한 직경 증가" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "모든 브랜치가 빌드 플레이트에 도달할 때 달성하려고 하는 직경입니다. 이에 따라 베드 접착력이 개선됩니다." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "빌드 플레이트에 대한 접착력을 향상시키는 데 도움이되는 다양한 옵션. 브림은 뒤틀림을 방지하기 위해 모델 바닥 주위에 단층 평면 영역을 추가합니다. 래프트는 모델 아래에 지붕이있는 두꺼운 격자를 추가합니다. 스커트는 모델 주변에 프린팅 된 선이지만 모델에는 연결되어 있지 않습니다." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "허용되지 않는 지역" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "프린팅 된 내부채움 선 사이의 거리. 이 설정은 내부채움 밀도 및 내부채움 선 너비로 계산됩니다." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "인쇄된 초기 레이어 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "프린팅 된 서포트 플로어 사이의 거리. 이 설정은 서포트 바닥 밀도로 계산되지만 별도로 조정할 수 있습니다." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "프린팅 된 지붕 루프 사이의 거리. 이 설정은 서포트 지붕 밀도에 의해 계산되지만 별도로 조정할 수 있습니다." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "프린팅 된 서포트 구조 선 사이의 거리. 이 설정은 서포트 밀도로 계산됩니다." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "프린트에서 서포트 바닥까지의 거리입니다. 이는 다음 레이어 높이로 반올림됩니다." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "서포트 상단에서 프린팅까지의 거리." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "서포트 구조물의 상단/하단에서 프린트까지의 거리입니다. 이 공간은 모델이 인쇄된 후 서포트를 제거할 수 있도록 여유를 제공합니다. 모델 아래 최상위 서포트 레이어는 정규 레이어의 일부일 수 있습니다." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "각 내부채움 라인 다음에 삽입 된 이동 거리. 내부채움 스틱을 벽에 더 잘 붙게 합니다. 이 옵션은 내부채움 겹침과 유사하지만 압출이 없고 충전 선의 한쪽 끝에서만 사용됩니다." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Z 층의 경계면을 더 잘 가리기 위해 바깥쪽 벽 뒤에 삽입되어 이동한 거리." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 프린트와 드래프트 쉴드까지의 거리입니다." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "X/Y 방향으로 출력물에서 Ooze 쉴드까지의 거리." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "X/Y 방향에서 오버행으로부터 서포트까지의 거리." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "X/Y 방향에서 출력물로과 서포트까지의 거리." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "경로를 평활화하기 위해 거리 지점이 이동됩니다" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "이보다 작은 내부채움 영역을 생성하지 마십시오 (대신 스킨 사용)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "드래프트 쉴드 높이" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "드래프트 쉴드 제한" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "드래프트 쉴드 X/Y 거리" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "드롭 다운 서포트 메쉬" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "이중 압출" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "타원" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "가속 제어 활성화" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "브릿지 설정 사용" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "코스팅(Coasting) 사용" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "원추형 서포트 사용" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "드래프트 쉴드 사용" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "플루이드 모션 활성화" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "다림질 사용" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Jerk 컨트롤 사용" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "노즐 온도 조절 활성화" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ooze 쉴드 사용" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "프라임 블롭 활성화" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "프라임 타워 사용" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "프린팅 냉각 사용" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "출력 과정 보고 활성화" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "리트렉션 활성화" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "서포트 브림 사용" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "서포트 바닥 사용" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "서포트 인터페이스 사용" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "서포트 지붕 사용" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "이동 가속 활성화" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "이동 저크 활성화" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Ooze 쉴드를 활성화. 이렇게하면 첫 번째 노즐과 동일한 높이에 두 번째 노즐을 닦을 가능성이 있는 모델 주위에 쉘이 생깁니다." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "발생할 수 있는 오류를 감지하도록 임곗값 설정을 위한 출력 과정 보고를 활성화합니다." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "맨 위 스킨 레이어(공기에 노출됨)의 작은(최대 '작은 상단/하단 너비') 영역을 기본 패턴 대신 벽으로 채울 수 있습니다." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X 또는 Y 축의 속도가 변경 될 때 프린트 헤드의 속도를 조정할 수 있습니다. Jerk를 높이면 프린팅 품질을 저하시키면서 프린팅 시간을 줄일 수 있습니다." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "프린트 헤드 가속도를 활성화 합니다. 가속도를 높이면 프린팅 품질을 저하시키지만 프린팅 시간을 줄일 수 있습니다." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "프린팅 중에 프린팅 냉각 팬을 활성화합니다. 팬은 짧은 레이어 시간 및 브리징 / 오버행으로 레이어의 프린팅 품질을 향상시킵니다." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "End GCode" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "필라멘트 끝의 퍼지 길이" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "필라멘트 끝의 퍼지 속도" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "서포트가 차지할 공간이더라도 모델 주변에 브림이 인쇄되도록 합니다. 이렇게 하면 서포트의 첫 번째 레이어 영역 일부가 브림 영역으로 대체됩니다." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "모두" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "어디에나" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "배타적" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "실험적인" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "솔기 노출" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "광범위한 스티칭" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "광범위한 스티칭은 다각형을 만지면서 구멍을 닫음으로써 메쉬의 열린 구멍을 꿰매려합니다. 이 옵션은 많은 처리 시간을 초래할 수 있습니다." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "여분의 내부채움 벽 수" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "여분의 스킨 벽 수" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "노즐 스위치 후 프라이밍하는 추가 소재의 양입니다." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "익스트루더 프라임 X 위치" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "익스트루더 프라임 Y 위치" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "익스트루더 프라임 Z 포지션" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "압출기의 히터 공유" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "익스트루더의 노즐 공유" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "압출 냉각 속도 조절기" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "속도에 대한 압출 너비 기준 보정 계수. 0%에서는 이동 속도가 프린팅 속도로 일정하게 유지됩니다. 100%에서는 흐름(단위: mm³/s)이 일정하게 유지되도록 이동 속도가 조정됩니다. 즉 일반적인 선 너비의 절반인 선은 두 배로 빠르게 프린팅되고 너비가 두 배인 선은 절반 속도로 프린팅됩니다. 100%보다 큰 값은 넓은 선을 압출하기 위해 요구되는 더 높은 압력을 보정하는 데 도움이 될 수 있습니다." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "팬 속도" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "팬 속도 무시" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "이 수치보다 길이가 짧은 피처 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "아직 구체화되지 않은 기능들." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "피더 휠 지름" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "최종 프린팅 온도" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "펌웨어 리트렉션" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "첫 번째 레이어 서포트 익스트루더" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "공급량" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "흐름 균일화 비율" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "유량 제한" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "압출 속도 보상 배율" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "압출 속도 보상 최대 압출 오프셋" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "재료 공급 온도 그래프" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "유량 경고" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "첫번째 레이어에 대한 압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "첫 번째 레이어 하단 라인의 압출 보상" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "내부채움 라인의 압출 보상입니다." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "지지대 지붕 또는 바닥 라인의 압출 보상입니다." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "프린트 상단 부분 라인의 압출 보상입니다." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "프라임 타워 라인의 압출 보상입니다." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "스커트 또는 브림 라인의 압출 보상입니다." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "지지대 바닥 라인의 압출 보상입니다." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "지지대 지붕 라인의 압출 보상입니다." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "지지대 구조 라인의 압출 보상입니다." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "첫 번째 레이어의 가장 외측 벽 라인의 압출 보상입니다." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "가장 외측 벽 라인의 압출 보상입니다." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "상면 가장 바깥쪽 벽 라인의 유량 보정" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "가장 바깥쪽 라인을 제외한 모든 벽 라인에 대한 상면 벽 라인의 유량 보정" + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "상단/하단 라인의 압출 보상입니다." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다(단, 첫 번째 레이어에 한정)." + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "가장 외측 벽을 제외한 모든 벽 라인의 압출 보상입니다." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "벽 라인의 압출 보상입니다." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "압출량 보상: 압출 된 재료의 양에 이 값을 곱합니다." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "플루이드 모션 각도" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "플루이드 모션 이동 거리" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "플루이드 모션 가까운 거리" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "수평 퍼지 길이" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "수평 퍼지 속도" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "노즐 크기의 1~2배 정도의 얇은 구조물의 경우 모델의 두께에 맞게 선 너비를 변경해야 합니다. 이 설정은 벽에 허용되는 최소 선 너비를 제어합니다. N개의 벽이 넓고 N+1개의 벽이 좁은 일부 형상 두께에서는 N개의 벽에서 N+1개의 벽으로 전환하기 때문에, 최소 선 너비가 내재적으로 최대 선 너비를 결정합니다. 가장 넓을 가능성이 있는 벽 선은 최소 벽 선 너비의 두 배입니다." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "전면" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "전면 왼쪽" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "전면 오른쪽" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "가득찬" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "퍼지 스킨" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "퍼지 스킨 밀도" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "부용 퍼지 스킨" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "퍼지 스킨 포인트 거리" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "퍼지 스킨 두께" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Gcode 유형" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "맨 마지막에 실행될 G 코드 명령 " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "시작과 동시에형실행될 G 코드 명령어 " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "재료의 GUID. 자동으로 설정됩니다." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "갠트리 높이" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "연동 구조 생성" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "서포트 생성" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "첫 번째 레이어의 서포트 내부채움 영역 내에서 브림을 생성합니다. 이 브림은 서포트 주변이 아니라 아래에 인쇄됩니다. 이 설정을 사용하면 빌드 플레이트에 대한 서포트력이 향상됩니다." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "모델과 서포트 사이에 조밀 한 인터페이스를 생성합니다. 이렇게 하면 모델이 프린팅 된 서포트 맨 위의 스킨과 모델의 위에있는 서포트 맨 아래에 스킨이 만들어집니다." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "서포트 바닥과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 지원 사이에 스킨이 만들어집니다." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "서포트 상단과 모델 사이에 조밀 한 슬래브를 생성하십시오. 그러면 모델과 서포트 사이에 스킨이 만들어집니다." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "오버행이 있는 모델 부분을 서포트하는 구조를 생성합니다. 이러한 구조가 없으면 이런 부분이 프린팅 중에 붕괴됩니다." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "유리" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "상단 표면을 한 번 더 이동하지만 재료를 아주 약간만 압출 성형합니다. 따라서 맨 위의 플라스틱이 녹아 부드러운 표면을 만듭니다. 노즐 챔버 내의 압력이 고압으로 유지되므로 표면상의 주름이 재료로 채워집니다." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "점진적인 내부채움 단계 높이" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "점진적인 내부채움 단계" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "점진적 서포트 내부채움 단계 높이" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "점진적 서포트 내부채움 단계" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "최소 레이어 시간 때문에 늦춰진 속도로 프린트하는 경우 점차 이 온도로 낮춥니다." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "그리드" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "그리드" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "그리드" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "격자" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "그리드" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "외벽 그룹화" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "자이로이드" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "빌드 볼륨 온도 안정화" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "히팅 빌드 플레이트가 있음" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "가열 속도" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "가열 영역 길이" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "드래프트 쉴드의 높이 제한. 이 높이 이상에서는 드래프트 쉴드가 프린팅되지 않습니다." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "솔기 숨기기" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "솔기 숨기기 또는 노출" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "구멍 수평 확장" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "구멍 수평 확장 최대 직경" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "이 수치보다 직경이 작은 구멍 및 부품 윤곽은 소형 피처 속도 기능을 이용해 프린트합니다." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "수평 확장" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "수평 확장 배율 수축 보정" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "가열 시 파단되기 전까지 필라멘트가 늘어날 수 있는 거리입니다." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "흐름이 멈추기 전에 소재가 후퇴해야 하는 거리입니다." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "압출 속도 변화를 보상하기 위해 필라멘트를 이동하는 거리(1초 압출 시 필라멘트가 이동할 수 있는 거리의 백분율)." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 거리입니다." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "리트랙션 시 파단되기 직전까지 필라멘트가 후퇴해야 하는 속도입니다." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "흐름을 방지하기 위해 필라멘트 스위치 중 소재가 후퇴해야 하는 속도입니다." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체한 후 재료를 압출하는 속도." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "다른 재료로 전환 후 재료를 압출하는 속도." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "재료를 안전하게 건식 보관함에 보관할 수 있는 기간." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "X 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Y 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Z 방향으로 1 밀리미터를 압출에 필요한 스텝 모터의 스텝 수." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "둘레를 따라 1밀리미터씩 피더 휠을 움직이는 스텝 모터의 스텝 수." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "빈 스풀을 동일한 재료의 새로운 스풀로 교체할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "다른 재료로 전환할 때 (필라멘트를 지나며) 노즐에서 이전 재료를 퍼지하기 위해 사용하는 재료 양." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "프린터 시작 gcode 스크립트가 완료될 때 공유된 노즐 끝에서 각 익스트루더의 필라멘트가 수축된 것으로 가정하는 정도입니다. 이 값은 노즐 덕트의 공통 부분의 길이와 같거나 커야 합니다." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "서포트 인터페이스와 서포트가 겹칠 때 상호 작용하는 방식으로, 현재 서포트 지붕에만 구현되어 있습니다." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "모델에 브랜치를 배치할 때 브랜치의 높이를 설정합니다. 이에 따라 서포트의 작은 얼룩이 방지됩니다. 브랜치가 서포트 지붕을 서포트하는 경우 이 설정은 무시됩니다." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "스킨 영역이 해당 영역의 비율 미만으로 생성되면 브릿지 설정을 사용하여 인쇄하십시오. 그렇지 않으면 일반 스킨 설정을 사용하여 인쇄됩니다." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "도구 경로 세그먼트가 일반적인 모션에서 이 각도보다 더 많이 벗어나면 평활화됩니다." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "이 옵션을 사용하면 다음 설정을 사용하여 에어 위의 두 번째 및 세 번째 레이어가 인쇄됩니다. 그렇지 않으면 해당 레이어는 일반 설정을 사용하여 인쇄됩니다." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "서로 다른 수의 벽들 사이를 빠르게 연속적으로 왔다 갔다 하며 전환되는 경우에는 전환하지 마십시오. 이 거리보다 서로 더 가까운 경우에는 전환을 제거하십시오." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 베이스가 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트가 활성화 된 경우 래프트가 주어진 모델 주변의 추가 래프트 지역입니다. 이 여백을 늘리면 재료를 더 많이 사용하고 출력물을 적게 차지하면서 더 강력한 래프트가 만들어집니다." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 중간이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "래프트 상단이 활성화된 경우, 래프트가 주어진 모델 주위의 추가 래프트 영역입니다. 이 여백을 늘리면 재료를 더 사용하고 출력 영역을 적게 차지하면서 더 강한 래프트를 만들 수 있습니다." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "메쉬 내의 겹치는 볼륨으로 인해 발생하는 내부 지오메트리를 무시하고 볼륨을 하나로 프린팅합니다. 이로 인해 의도하지 않은 내부 공동이 사라질 수 있습니다." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "빌드 플레이트 온도 포함" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "재료의 온도 포함하기" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "중복" + +msgctxt "infill description" +msgid "Infill" +msgstr "내부채움" + +msgctxt "infill label" +msgid "Infill" +msgstr "내부채움" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "내부채움 가속도" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "벽 앞에 내부채움" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "내부채움 밀도" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "내부채움 익스트루더" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "내부채움 압출량" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk 내부채움" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "내부채움 층 두께" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "내부채움 선 방향" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "내부채움 선간 거리" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "내부채움 선 승수" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "내부채움 선 폭" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "메쉬 내부채움" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "충진물 오버행 각도" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "내부채움 오버랩" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "내부채움 오버랩 비율" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "내부채움 패턴" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "내부채움 속도" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "충진물 지지대" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "내부채움재 이동 최적화" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "내부채움 거리" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "내부채움 X 오프셋" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "내부채움 Y 오프셋" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "초기 하단 레이어" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "초기 팬 속도" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "초기 레이어 가속" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "첫 번째 레이어 하단 압출량" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "초기 레이어 직경" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "첫번째 레이어 압출량" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "첫번째 레이어 높이" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "첫번째 레이어 수평 확장" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "첫 번째 레이어 내벽 압출량" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "초기 레이어 Jerk" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "초기 레이어 라인 폭" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "첫 번째 레이어 외벽 압출량" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "초기 레이어 프린팅 가속" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "초기 레이어 프린팅 Jerk" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "초기 레이어 프린팅 속도" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "초기 레이어 속도" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "초기 레이어 서포트 선 거리" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "초기 레이어 이동 가속도" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "초기 레이어 이동 Jerk" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "초기 레이어 이동 속도" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "초기 레이어 Z 겹침" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "초기 프린팅 온도" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "내벽 가속도" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "내벽 익스트루더" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "내벽 Jerk" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "내벽 속도" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "내벽 압출량" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "내부 벽 선 너비" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "외벽의 경로에 삽입이 적용됩니다. 외벽이 노즐보다 작고 내벽 다음에 프린팅 된 경우 이 옵셋을 사용하여 노즐의 구멍이 모델 외부가 아닌 내벽과 겹치도록하십시오." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "내부만" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "내부에서 외부로" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "인터페이스 라인 우선" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "인터페이스 우선" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "중간 삽입" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "연동 빔 레이어 수" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "연동 빔 너비" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "연동 경계 회피" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "연동 깊이" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "연동 구조 방향" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "최상위 레이어에 다림질" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "다림질 가속" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "다림질 압출량" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "다림질 삽입" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "다림질 저크(Jerk)" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "다림질 라인 간격" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "다림질 패턴" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "다림질 속도" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "센터 원점" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "서포트 재료임" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "이 소재는 가열 시 깔끔하게 분리되는 유형(결정형)입니까? 아니면 길게 얽힌 폴리머 체인을 생성하는 유형(비결정형)입니까?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "이 재료는 일반적으로 프린팅 중에 서포트 재료로 사용됩니다." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "부품의 윤곽만 지터하고 부품의 구멍은 지터하지 않습니다." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "끊긴 면 유지" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "층 높이" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "레이어 시작 X" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "레이어 시작 Y" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "기본 래프트 레이어의 레이어 두께. 이것은 프린터 빌드 플레이트에 단단히 붙어있는 두꺼운 층이어야합니다." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "중간 래프트 층의 층 두께." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "상단 래프트 레이어의 레이어 두께." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "서포트 구조를 쉽게 분리 할 수 있도록 N 밀리미터마다 서포트선 사이를 연결합니다." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "왼쪽" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "리프트 헤드" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "라이트닝" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "라이트닝 내부채움 오버행 각도" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "라이트닝 내부채움 가지치기 각도" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "라이트닝 내부채움 정리 각도" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "라이트닝 내부채움 서포트 각도" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "브랜치 도달 거리 제한" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "각 브랜치가 서포트하는 지점에서 뻗어 나가는 거리를 제한합니다. 이렇게 하면 서포트가 더 견고해질 수 있지만, 브랜치의 양이 늘어나므로 재료 사용량/프린트 시간이 늘어납니다." + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "감지 시의 빌드 볼륨 온도 제한 경고입니다." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "감지 시의 비정상적인 빌드 볼륨 온도 제한입니다. " + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "감지 시의 비정상적인 출력 온도 제한입니다." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "감지 시의 출력 온도 제한 경고입니다." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "감지 시의 비정상적인 유량 제한입니다." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "감지 시의 유량 제한 경고입니다." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "이 메쉬의 볼륨을 다른 메쉬 내로 제한합니다. 이 기능을 사용하면 다른 설정과 전체 익스트루더로 하나의 메쉬 프린팅 영역을 만들 수 있습니다." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "제한된" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "선의 두께" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "윤곽" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "윤곽" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "기기" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "기기 깊이" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "머신 헤드 및 팬 폴리곤" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "기기 높이" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "기기 유형" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "기기 너비" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "기기 세부 설정" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "오버행이 프린팅되도록 설정" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "서로 닿는 메쉬가 조금 겹치게 만듭니다. 이것은 그들을 더 잘 묶는 것입니다." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "오버행보다 하단에서 지지대 영역을 작게 만듭니다." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "서포트 메쉬 아래의 모든 부분을 지원하여서 서포트 메쉬에 오버행이 없습니다." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "익스투루더의 위치를 헤드의 마지막으로 알려진 위치에 상대위치가 아닌 절대 위치로 만듭니다." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "모델의 첫 번째 및 두 번째 레이어를 Z 방향으로 겹쳐서 에어 갭에서 손실된 필라멘트를 보완합니다. 첫 번째 모델 레이어 위의 모든 모델은 이 값만큼 아래로 이동합니다." +"이 설정으로 인해 두 번째 레이어가 초기 레이어 아래에 출력되는 경우가 있습니다. 이는 의도된 동작입니다." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "메쉬를 3D 프린팅에 보다 맞춤화시킵니다." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (부피 측정법)" + +msgctxt "material description" +msgid "Material" +msgstr "재료" + +msgctxt "material label" +msgid "Material" +msgstr "재료" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "재료 브랜드" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "재료 GUID" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "재료 유형" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "와이프 사이의 재료 볼륨" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "수축이 없을 때 최대 빗질 거리" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "최대 가속도 X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Y 방향 최대 가속도" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 방향 최대 가속도" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "최대 브랜치 각도" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "최대 편차" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "최대 압출 영역 편차" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "최대 팬 속도" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "최대 필라멘트 가속도" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "최대 모델 각도" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "최대 오버행 홀 영역" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "최대 파크 기간" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "최대 해상도" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "최대 리트렉션 수" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "확장을 위한 최대 스킨 각" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "최대 속도 E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 방향 최대 속도" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 방향 최대 속도" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 방향 최대 속도" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "최대 타워 지지 직경" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "최대 이동 해상도" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 방향 모터의 최대 가속도" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 가속도." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 방향 모터의 최대 가속도." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "필라멘트를 구동하는 모터의 최대 가속도." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "희박하다고 여겨지는 내부채움의 최대 밀도 희박한 내부채움의 스킨은 지원되지 않는 것으로 간주되므로 브릿지 스킨으로 취급할 수 있습니다." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "특수 지지대 타워에 의해서 지지될 작은 영역의 X/Y 방향의 최대 직경입니다." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "다른 노즐 와이프를 시작하기 전에 압출 성형할 수 있는 최대 재료입니다. 이 값이 레이어에 필요한 재료의 양보다 작으면 이 레이어에서는 아무런 효과가 없습니다. 즉, 레이어당 한번 와이프하는 것으로 제한됩니다." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "중복된 메쉬 합치기" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "메쉬 수정" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "메쉬 위치 X" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "x 방향으로 객체에 적용된 오프셋입니다." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "메쉬 위치 Y" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "y 방향으로 객체에 적용된 오프셋입니다." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "메쉬 위치 Z" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "메쉬 처리 랭크" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "메쉬 회전 행렬" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "중간" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "최소 몰드 너비" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "최소 대기 시간" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "최소 브리지 벽 길이" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "최소 짝수 벽 선 너비" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "최소 압출 영역" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "최소 피처 크기" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "최소 이송 속도" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "모델에 대한 최소 높이" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "최소 내부채움 지역" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "최소 레이어 시간" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "최소 홀수 벽 선 너비" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "최소 다각형 둘레" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "확장을 위한 최소 스킨 폭" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "최저 속도" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "최소 서포트 지역" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "최소 서포트 바닥 지역" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "최소 서포트 인터페이스 지역" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "최소 서포트 지붕 지역" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "최소 서포트 X/Y 거리" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "얇은 벽 선 최소 너비" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "코스팅(Coasting) 최소 양" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "최소 벽 선 너비" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "지원 인터페이스 다각형의 최소 영역 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "서포트 영역에 대한 최소 지역 크기. 이 값보다 작은 지역을 갖는 영역은 생성되지 않습니다." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "지원 바닥의 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "서포트 지붕에 대한 최소 면적 크기입니다. 이 값보다 작은 영역을 갖는 다각형은 정상적인 지원으로 인쇄됩니다." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "얇은 피처의 최소 두께 이 값보다 더 얇은 모델 피처는 프린트되지 않으며, 최소 피처 크기보다 더 두꺼운 피처는 최소 벽 선 너비로 넓어집니다." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "원추형서포트 영역의 베이스가 축소되는 최소 너비. 폭이 좁으면 불안정한 서포트 구조가 생길 수 있습니다." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "몰드" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "몰드 각도" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "몰드 지붕 높이" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "단면 다림질 순서" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "단면 래프트 상단 표면 순서" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "단면 상단 표면 순서" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "단면 상단/하단 순서" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "여러 개의 스커트 라인을 사용하여 작은 모델에 더 잘 압출 성형 할 수 있습니다. 이것을 0으로 설정하면 스커트가 비활성화됩니다." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "첫 번째 레이어의 라인 폭 승수입니다. 이것을 늘리면 베드 접착력을 향상시킬 수 있습니다." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "로드 이동 요인 없음" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 간격에 스킨 없음" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "모델을 프린팅하는 새로운 방법들." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "None" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "없음" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "표준" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "일반" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "표준" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "일반적으로 큐라(Cura)는 메쉬의 작은 구멍을 꿰매 붙이고 큰 구멍이있는 레이어의 부분을 제거하려고합니다. 이 옵션을 활성화하면 스티칭 할 수 없는 파트가 유지됩니다. 이 옵션은 다른 모든 설정으로 올바른 GCode를 생성하지 못할 때 최후의 수단으로 사용해야 합니다." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "스킨에 없음" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "외부 표면에 없음" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "노즐 각도" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "노즐 지름" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "노즐이 위치할 수 없는 구역" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "노즐 ID" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "노즐 길이" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "노즐 스위치 엑스트라 프라임 양" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "노즐 스위치 프라임 속도" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "노즐 스위치 후퇴 속도" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "노즐 스위치 리트렉션 거리" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "노즐 스위치 리트렉션 속도" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "익스트루더의 수" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "활성화된 익스트루더의 수" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "느리게 프린팅할 레이어의 수" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "사용 가능한 익스트루더 수; 소프트웨어로 자동 설정" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "익스트루더의 수. 익스트루더는 피더, 보우 덴 튜브 및 노즐의 조합입니다." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "브러시 전체에 노즐을 이동하는 횟수입니다." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "상단면 아래로 갈 때 내부채움 밀도를 반으로 줄이는 횟수입니다. 상단면에 더 가까운 영역은 내부채움율 농도가 더 높은 밀도를 갖습니다." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "상단 표면 아래로 올라갈 때 서포트 채움 밀도를 반으로 줄이는 횟수입니다. 상단 표면에 더 가까운 영역은 서포트 채움 밀도까지 더 높은 밀도를 갖습니다." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "옥텟" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "끔" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "x 방향으로 객체에 적용된 오프셋입니다." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "y 방향으로 객체에 적용된 오프셋입니다." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "z 방향으로 객체에 적용된 오프셋입니다. 이것을 사용하여 '오프젝 싱크(Object Sink)'라고 불렀던 것을 수행 할 수 있습니다." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "익스트루더로 오프셋" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "가능한 경우 빌드 플레이트에" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "필요한 경우 모델에" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "한번에 하나씩" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "이동 시, 수평 이동으로 피할 수없는 출력물 위로 이동할 때만 Z 홉을 수행하십시오." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "메쉬의 마지막 레이어에서만 다림질을 수행합니다. 이것은 낮은 레이어에서 매끄러운 표면 처리가 필요하지 않은 경우 시간을 절약 할 수 있습니다." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ooze 쉴드 각" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Ooze 쉴드 거리" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "최적 브랜치 범위" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "벽면 프린팅 순서 명령 최적화" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "수축 및 이동 거리를 줄이도록 벽이 인쇄되는 순서를 최적화합니다. 대부분의 부품은 이 기능을 사용하면 도움이 되지만 실제로는 시간이 오래 걸릴 수 있으므로, 최적화 여부와 관계없이 인쇄 시간을 비교하십시오. 빌드 플레이트 접착 유형을 Brim으로 선택하는 경우 첫 번째 층이 최적화되지 않습니다." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "외부 노즐의 외경" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "외벽 가속도" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "외벽 익스트루더" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "외벽 압출량" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "외벽 삽입" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "외벽 Jerk" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "바깥 선 선폭" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "외벽 속도" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "외벽 이동 거리" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "동일한 레이어의 서로 다른 섬의 외벽이 순차적으로 인쇄됩니다. 활성화되면 벽 종류별로 하나씩 인쇄되므로 유량 변화량이 제한되며 비활성화되면 동일한 섬의 벽이 그룹화되어 섬 간 이동 수가 감소합니다." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "외부만" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "외부에서 내부로" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "오버행된 벽 각도" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "오버행된 벽 속도" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "오버행된 벽은 정상적인 인쇄 속도의 이 비율로 인쇄됩니다." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "리트랙트를 실행 취소한 후 일시 정지합니다." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "두번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "서포트 바로 위의 스킨 영역을 인쇄할 때 사용할 팬 속도 백분율 빠른 팬 속도를 사용하면 서포트를 더 쉽게 제거할 수 있습니다." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "세번째 브리지 벽과 스킨을 인쇄 할 때 사용하는 팬 속도 백분율." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "레이어가 슬라이스 된, 이 값보다 둘레가 작은 다각형은 필터링됩니다. 값을 낮을수록 슬라이스가 느려지지만, 해상도 메쉬가 높아집니다. 주로 고해상도 SLA 프린터 및 세부 사항이 많은 매우 작은 3D 모델에 적합합니다." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "기본 브랜치 각도" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "하나의 여분 벽과 하나 더 적은 벽 사이를 왔다 갔다 하는 전환을 방지하십시오. 이 여백은 [최소 벽 선 너비 - 여백, 2 * 최소 벽 선 너비 + 여백]을 따르는 선 너비의 범위를 확장합니다. 이 여백을 늘리면 전환 횟수가 줄어들어, 압출 시작/중지 및 이동 시간이 줄어듭니다. 그러나 선 너비 변동이 크면 압출 미달 또는 과잉 문제가 발생할 수 있습니다." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "프라임 타워 가속" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "프라임 타워 베이스" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "프라임 타워 베이스 높이" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "프라임 타워 베이스 크기" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "프라임 타워 베이스 경사" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "프라임 타워 압출량" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "프라임 타워 Jerk" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "프라임 타워 라인 폭" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "프라임 타워 최대 브리징 거리" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "프라임 타워 최소 볼륨" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "프라임 타워 래프트 선 간격" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "프라임 타워 사이즈" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "프라임 타워 속도" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "프라임 타워 유형" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "프라임 타워 X 위치" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "프라임 타워 Y 위치" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "프린팅 가속도" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk 프린팅" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "출력 과정 보고" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "프린팅 순서" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "프린팅 속도" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "얇은 벽 프린팅" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "모델 외부, 내부 또는 양쪽 모두에 브림을 출력합니다. 모델에 따라 나중에 제거해야 하는 브림의 양을 줄이는 데 도움이 될 수 있으며, 베드에 적절하게 밀착시킬 수 있습니다." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "각 노즐을 교체 한 후에 재료를 프라이밍(Priming)하는 프린팅 옆에 타워를 프린팅하십시오." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "모델 상단이 지지가 되어야 하는 경우에만 충진물 구조를 인쇄합니다. 이 기능을 사용하면 인쇄 시간 및 재료 사용이 감소하지만, 개체 강도가 균일하지 않습니다." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 다림질 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "모형을 몰드으로 프린팅하여 모형에 몰드과 유사한 모형을 만들 수 있습니다." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "노즐 크기보다 수평으로 더 얇은 모델 조각을 프린팅하십시오." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "래프트 상단 표면 선이 항상 한 방향으로 인접한 선과 겹치도록 순서대로 출력합니다. 출력 시간은 약간 더 소요되지만, 모델 하단 표면에서도 보이는 표면을 더 일관적으로 보이게 만들 수 있습니다." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "두번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "세번째 브릿지 스킨 레이어를 인쇄 할 때 사용할 인쇄 속도." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "출력 온도 제한" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "출력 온도 경고" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "벽을 프린팅하기 전에 내부채움물을 프린팅하기. 벽을 먼저 프린팅하면 벽이 더 정확해질 수 있지만 겹침으로 프린팅이 매끄럽지 않습니다. 내부채움을 먼저 프린팅하면 더 튼튼한 벽이 생기지만 내부채움 패턴이 때로 표면을 통해 보일 수 있습니다." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단 표면 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "한 방향으로 주변 라인들과 항상 겹치게 하기 위해 상단/하단 라인들을 배치하여 프린트하십시오. 이는 프린트하는 데 더 많은 시간이 소모되지만 평평한 면이 보다 일관적으로 보이게 합니다." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "프린팅 온도" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "첫번째 레이어의 프린팅 온도" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "가장 안쪽의 스커트 라인을 여러 겹으로 프린트하면 스커트를 쉽게 제거할 수 있습니다." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "다른 모든 레이어에 여분의 벽을 프린팅합니다. 이렇게하면 내부채움이 여분의 벽 사이에 끼어 더 강하게 프린팅됩니다." + +msgctxt "resolution label" +msgid "Quality" +msgstr "품질" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "쿼터 큐빅" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "래프트" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "래프트 에어 갭" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "래프트 베이스 추가 여백" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "래프트 베이스 익스트루더" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "래프트 기본 팬 속도" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "래프트 기준 선 간격" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "래프트 기준 선 너비" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "래프트 기본 프린팅 가속도" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "래프트 기본 프린팅 Jerk" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "래프트 기본 프린팅 속도" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "래프트 베이스 부드럽게 하기" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "래프트 기준 두께" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "래프트 베이스 벽 개수" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "래프트 추가 여백" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "래프트 팬 속도" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "래프트 중간 추가 여백" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "래프트 중간 익스트루더" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "래프트 중앙 팬 속도" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "래프트 중간 레이어" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "래프트 중간 선 너비" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "래프트 중앙 프린팅 가속도" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "래프트 중앙 프린팅 Jerk" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "래프트 중앙 프린팅 속도" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "래프트 중간 부드럽게 하기" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "래프트 중간 간격" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "래프트 중간 두께" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "래프트 중간 벽 수" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "래프트 프린팅 가속도" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "래프트 프린팅 Jerk" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "래프트 프린팅 속도" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "래프트 부드럽게하기" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "래프트 상단 추가 여백" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "래프트 상단 익스트루더" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "래프트 상단 팬 속도" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "래프트 상단 레이어 두께" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "래프트 탑 레이어" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "래프트 상단 선 너비" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "래프트 상단 프린팅 가속도" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "래프트 상단 프린팅 Jerk" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "래프트 상단 프린팅 속도" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "래프트 상단 부드럽게 하기" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "래프트 상단 간격" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "래프트 상단 벽 수" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "래프트 벽 수" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "랜덤" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "무작위 충전 시작" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "가장 먼저 프린트되는 충전 선을 무작위로 결정합니다. 이렇게 하면 특정 세그먼트가 가장 강한 세그먼트가 되는 일이 없지만, 추가 이동이 발생하지 않게 됩니다." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "외벽을 프린팅하는 동안 무작위로 지터가 발생하여 표면이 거칠고 흐릿해 보입니다." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "직사각형" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "표준 팬 속도" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "표준 팬 속도시의 높이" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "표준 팬 속도시의 레이어" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "표준/최대 팬 속도 임계 값" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "상대적 압출" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "모든 구멍 제거" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "비어 있는 첫 번째 레이어 제거" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "교차된 메쉬 제거" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "래프트 베이스 내부 모서리 제거" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "래프트 내부 모서리 제거" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "래프트 중간 내부 모서리 제거" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "래프트 상단 내부 모서리 제거" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "여러 메시가 서로 겹치는 영역을 제거합니다. 병합 된 2개의 재료가 서로 중첩되는 경우 사용될 수 있습니다." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "첫 번째로 프린팅된 레이어 바로 아래의 비어 있는 레이어를 제거합니다. 이 설정을 해제하면 슬라이싱 허용 오차 설정을 배타 또는 중간으로 설정할 경우 첫 번째 레이어가 비어 있게 될 수 있습니다." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 베이스에서 내부 모서리를 제거합니다." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 중간 부분에서 내부 모서리를 제거합니다." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트 상단 부분에서 내부 모서리를 제거합니다." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "래프트가 볼록해지도록 래프트에서 내부 모서리를 제거합니다." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "각 레이어의 구멍을 제거하고 바깥 쪽 모양 만 유지합니다. 이것은 보이지 않는 내부 지오메트리를 무시합니다. 그러나 위 또는 아래에서 볼 수있는 레이어 구멍도 무시합니다." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "위쪽/아래쪽 패턴의 가장 바깥 쪽 부분을 여러 동심 선으로 바꿉니다. 하나 또는 두 개의 선을 사용하면 내부채움 재료로 시작하는 지붕면이 향상됩니다." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "설정된 임곗값을 벗어난 이벤트 보고" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "배치 기본 설정" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "외벽 전에 리트렉션" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "레이어 변경시 리트렉션" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "노즐이 프린팅되지 않은 영역 위로 움직일 때 필라멘트를 리트렉션합니다." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "노즐이 다음 층으로 이동할 때 필라멘트를 리트렉션 시킵니다." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "리트렉션 거리" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "추가적인 리트렉션 정도" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "리트렉션 최소 이동" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "리트렉션 초기 속도" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "리트렉션 속도" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "리트렉션 속도" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "오른쪽" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "팬 속도를 0-1로 조정" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "팬 속도를 0 ~ 256이 아니라 0 ~ 1로 조정합니다." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "확장 배율 수축 보상" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "장면에 서포트 메쉬가 있습니다" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "솔기 코너 환경 설정" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "수동으로 인쇄 순서 설정" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "드래프트 쉴드의 높이를 설정합니다. 모델의 전체 높이 또는 제한된 높이에서 드래프트 쉴드를 프린팅하도록 선택합니다." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "여러 익스트루더로 프린팅 할 때 사용되는 설정입니다." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "큐라(Cura) 프론트 엔드에서 큐라엔진(CuraEngine)이 호출되지 않은 경우에만 사용되는 설정입니다." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "공유된 노즐 초기 수축" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "날카로운 모서리" + +msgctxt "shell description" +msgid "Shell" +msgstr "외곽" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "최단경로" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "기기 세부 설정 표시" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "스킨 에지의 레이어 지원" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "스킨 에지의 두께 지원" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "스킨 확장 거리" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "스킨 겹침" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "스킨 겹침 비율" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "스킨 제거 폭" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "이보다 좁은 스킨 영역은 확장되지 않습니다. 이렇게하면 모델 표면이 수직에 가까운 기울기를 가질 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "서포트 구조를 쉽게 분리할 수 있도록 모든 N 개의 연결 라인을 건너 뜁니다." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "서포트 구조가 쉽게 끊어 지도록 서포트 라인 연결을 건너 뜁니다. 이 설정은 지그재그 서포트 충전 패턴에 적용됩니다." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "스커트" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "스커트 거리" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "스커트 높이" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "스커트 선 수" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 가속도" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "스커트/브림 익스트루더" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "스커트/브림 압출량" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim Jerk" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "스커트/브림 선 너비" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "스커트/브림 최소 길이" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "스커트/브림 속도" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "슬라이싱 허용 오차" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "소형 피처 초기 레이어 속도" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "소형 피처 최대 길이" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "소형 피처 속도" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "소형 구멍 최대 크기" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "소형 레이어 프린팅 온도" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "표면의 작은 상단/하단" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "작은 상단/하단 너비" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "첫 번째 레이어의 소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "소형 피처는 정상적인 프린트 속도의 이 비율로 프린팅됩니다. 프린트 속도가 느리면 부착과 정확도가 개선됩니다." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "작은 상단/하단 영역은 기본 상단/하단 패턴 대신 벽으로 채워집니다. 이렇게 하면 갑작스러운 모션을 방지하는 데 도움이 됩니다. 기본적으로 최상단(공기에 노출된) 레이어는 꺼져 있습니다('표면의 작은 상단/하단' 참조)." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "스마트 브림" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "스마트 숨김" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "부드러운 나선형 윤곽" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "나선형 윤곽선을 부드럽게 하여 Z 이음선이 잘 보이지 않도록 합니다(Z- 이음선은 출력물에서는 거의 보이지 않지만 레이어 뷰에서는 여전히 보임). 매끄러움은 표면의 세부 묘사를 흐릿하게 만드는 경향이 있습니다." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "이동중에 재료가 새어나올 수 있습니다. 이 재료는 여기에서 보상될 수 있습니다." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "와이프 이동 중에 재료가 새어 나올 수 있습니다. 이 재료는 여기에서 보상받을 수 있습니다." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "특수 모드" + +msgctxt "speed description" +msgid "Speed" +msgstr "속도" + +msgctxt "speed label" +msgid "Speed" +msgstr "속도" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "홉 중에 z축을 이동하는 속도입니다." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "외부 윤곽선을 나선형으로 만듦" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "바깥 쪽 브림의 Z 이동을 부드럽게합니다. 이렇게 하면 출력물 전체에 걸쳐 꾸준히 Z가 증가합니다. 이 기능은 솔리드 모델을 단단한 바닥이있는 단일 벽으로 프린팅합니다. 이 기능은 각 레이어에 단일 부품 만 포함되어 있을 때만 활성화 해야 합니다." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "대기 온도" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "시작 GCode" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "레이어의 각 패스의 시작점입니다. 연속 레이어의 패스가 같은 지점에서 시작되면 세로 솔기가 출력물에 표시 될 수 있습니다. 사용자가 지정한 위치 근처에서 이들을 정렬 할 때 이음선을 제거하는 것이 가장 쉽습니다. 무작위로 배치 될 때 경로의 시작점은 눈에 잘 띄지 않습니다. 최단 경로를 취할 때 프린팅이 빨라집니다." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "밀리미터 당 스텝 수 (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "밀리미터 당 스텝 수 (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "밀리미터 당 스텝 수 (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "밀리미터 당 스텝 수 (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "서포트" + +msgctxt "support label" +msgid "Support" +msgstr "서포트" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "서포트 가속도" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "서포트 바닥 거리" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "지지대 하단 벽 라인 수" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "서포트 브림 라인 수" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "서포트 브림 폭" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Chunk 라인 카운트 서포트" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "서포트 Chunk 크기" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "서포트 밀도" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "서포트 거리 우선 순위" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "서포트 익스트루더" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "서포트 바닥 가속도" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "서포트 바닥 밀도" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "서포트 바닥 익스트루더" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "지지대 바닥 압출량" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "서포트 바닥 수평 확장" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "서포트 바닥 Jerk" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "바닥 지붕 선 방향" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "서포트 바닥 선 거리" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "서포트 바닥 라인 폭" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "서포트 바닥 패턴" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "서포트 바닥 속도" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "서포트 바닥 두께" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "지지대 압출량" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "수평 확장 서포트" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "서포트 내부채움 가속도" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "서포트 내부채움 익스트루더" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "서포트 내부채움 Jerk" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "서포트 내부채움 레이어 두께" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "서포트 내부채움 선 방향" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "서포트 내부채움 속도" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "서포트 인터페이스 가속도" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "서포트 인터페이스 밀도" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "서포트 인터페이스 익스트루더" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "지지대 인터페이스 압출량" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "서포트 인터페이스 수평 확장" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "서포트 인터페이스 Jerk" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "서포트 인터페이스 선 방향" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "서포트 인터페이스의 폭" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "서포트 인터페이스 패턴" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "서포트 인터페이스 우선순위" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "서포트 인터페이스 속도" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "서포트 인터페이스 두께" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "지지대 인터페이스 벽 라인 수" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "서포트 Jerk" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "서포트 Join 거리" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "서포트 선 거리" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "서포트의 폭" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "서포트 메쉬" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "오버행 각도" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "서포트 패턴" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "서포트 배치" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "서포트 상단 가속도" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "서포트 지붕 밀도" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "서포트 지붕 익스트루더" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "지지대 지붕 압출량" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "서포트 지붕 수평 확장" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "서포트 위 Jerk" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "서포트 지붕 선 방향" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "서포트 지붕 선 거리" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "서포트 루프 라인 폭" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "서포트 지붕 패턴" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "서포트 상단 속도" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "서포트 지붕 두께" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "지지대 지붕 벽 라인 수" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "서포트 속도" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "계단 Step Height 서포트" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "서포트 계단 스텝 최대 폭" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "서포트 계단 스텝 최소 경사 각도" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "서포트 구조" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "서포트 상단 거리" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "지지대 벽 라인 카운트" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X/Y 서포트 거리" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "서포트 Z 거리" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "서포트 라인 우선" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "서포트 우선" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "지원되는 스킨 팬 속도" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "표면" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "서피스 에너지" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "표면 모드" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "표면에 점착되는 성항입니다." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "표면의 에너지입니다." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "가장 안쪽의 브림 라인과 그다음으로 안쪽에 있는 브림 라인의 프린트 순서를 바꿉니다. 이렇게 하면 브림이 잘 제거됩니다." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "교차하는 메쉬로 교차하는 볼륨으로 전환하면 겹치는 메쉬가 서로 얽히게됩니다. 이 설정을 해제하면 메시 중 하나가 다른 메시에서 제거되는 동안 오버랩의 모든 볼륨을 가져옵니다." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "두 개의 인접 레이어 사이의 대상 수평 거리. 이러한 설정을 줄이면 레이어들의 가장자리를 더 가깝게 하도록 보다 얇은 레이어들을 사용하게 됩니다." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "각 레이어의 프린팅를 시작할 부분을 찾을 위치 근처의 X 좌표입니다." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 X 좌표입니다." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 X 좌표입니다." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "각 레이어 프린팅를 시작할 부분을 찾을 위치 근처의 위치에 대한 Y 좌표입니다." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "레이어에서 프린팅이 시작할 위치 근처의 Y 좌표입니다." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅이 시작될 때 노즐의 Y 좌표입니다." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "프린팅가 시작될 때 노즐 위치의 Z 좌표입니다." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "초기 레이어 프린팅 중 가속도." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "초기 레이어의 가속도입니다." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "헤드가 초기 레이어에서 이동할 때의 가속도." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 가속도입니다." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "내부채움물이 프린팅되는 가속도." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "다림질이 수행되는 가속도." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "프린팅 속도가 빨라집니다." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅되는 가속도입니다." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "지면의 가속도가 프린팅됩니다. 보다 낮은 가속도로 프린팅하면 모델 상단에 서포트력을 향상시킬 수 있습니다." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "서포트의 내부채움이 프린팅되는 가속도." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅되는 가속도." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 가속도입니다." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 가속도." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "래프트가 프린팅되는 가속도." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "서포트의 지붕과 바닥이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "서포트의 지붕이 프린팅되는 가속도. 낮은 가속도로 프린팅하면 오버행 품질이 향상 될 수 있습니다." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "스커트와 브림이 프린팅되는 가속도. 일반적으로 이것은 초기 레이어 가속으로 이루어 서포트만 때로는 스커트나 브림을 다른 가속으로 프린팅 할 수 있습니다." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 가속도." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅되는 가속도입니다." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 가속도" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 가속도" + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "벽이 프린팅되는 가속도." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 가속도." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 가속도입니다." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "헤드가 움직일때의 가속도." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "다림질하는 동안 기본 스킨 라인을 기준으로 한 재료의 압출량. 노즐을 가득 채우면 윗면의 틈새를 채울 수 있지만 표면에 과도한 압출과 필라멘트 덩어리가 생길 수 있습니다." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "내부채움 라인 폭의 비율로 나타낸 내부채움재와 벽 사이의 오버랩 양. 약간의 오버랩으로 벽이 내부채움과 확실하게 연결됩니다." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "내부채움과 벽 사이의 겹침 정도. 약간 겹치면 벽이 내부채움에 단단히 연결됩니다." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "익스트루더 전환 시 리트렉션 양. 리트렉션이 전혀 없는 경우 0으로 설정하십시오. 이는 일반적으로 열 영역의 길이와 같아야 합니다." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "노즐 끝 바로 위의 수평면과 원뿔 부분 사이의 각도입니다." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "타워 옥상의 각도. 높은 값을 지정하면 뾰족한 타워 지붕이되고, 값이 낮을수록 평평한 타워 지붕이됩니다." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "몰드에 대해 생성 된 외벽의 오버행 각도입니다. 0도의 각은 금형의 외각을 수직으로 만들고 90도의 각은 모형의 외형을 모델의 외형으로 만듭니다." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "바닥면을 향할수록 점점 더 두꺼워짐에 따른 브랜치의 직경 각도. 이 각도가 0이면 브랜치는 길이 전체에 균일한 두께를 갖게 됩니다. 약간의 각도가 있으면 트리 서포트의 안정성을 높여 줍니다." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "원추형 서포트점의 기울기 각도입니다. 0도가 수직이고 90도가 수평입니다. 각도가 작 으면 서포트가 더 튼튼하지만 더 많은 재료로 구성됩니다. 음수 각도는 서포트의 받침대가 상단보다 넓게 만듭니다." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "레이어의 각 다각형에 있는 점의 평균 밀도입니다. 다각형의 원래 점은 버려지므로 밀도가 낮으면 해상도가 감소합니다." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "각 선분에 있는 임의의 점 사이의 평균 거리입니다. 다각형의 원래 점은 버려지므로 해상도가 감소합니다. 이 값은 퍼지 스킨 두께의 절반보다 커야합니다." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "사용된 재료의 브랜드입니다." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "프린트 헤드 이동시 기본 가속도." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "프린팅에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도 이여야 합니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "히팅 빌드 플레이트에 사용되는 기본 온도입니다. 이것은 재료의 \"기본\"온도입니다. 다른 모든 프린팅 온도는 이 값을 기준으로 오프셋을 사용해야합니다" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "서포트 구조체의 바닥 밀도. 값이 높을수록 서포트가 모델 위에 더 잘 접착됩니다." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "서포트의 지붕의 밀도. 값이 높을수록 오버행에서 좋지만 서포트를 제거하기가 더 어렵습니다." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "두번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "세번째 브릿지 스킨 층의 밀도입니다. 값이 100보다 작으면 스킨 라인 사이의 간격이 증가합니다." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "프린팅 가능 영역의 깊이 (Y 방향)" + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "특수 타워의 지름." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "트리 서포트의 가장 얇은 브랜치의 직경. 브랜치가 두꺼울수록 더 견고해집니다. 바닥을 향한 브랜치는 이보다 더 두꺼워집니다." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "트리 서포트 브랜치 팁의 상단 직경입니다." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "피더에서 재료를 구동시키는 휠의 지름." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "트리 서포트의 가장 굵은 브랜치의 직경. 트렁크가 두꺼울수록 더 견고해집니다. 얇은 트렁크는 빌드 플레이트에서 차지하는 공간이 보다 적습니다." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "이전 높이와 비교되는 다음 레이어 높이의 차이." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "다림질 라인 사이의 거리." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "이동 중 출력물을 피할 때 노즐과 이미 프린팅 된 부분 사이의 거리." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "기본 래프트 층에 대한 래프트 사이의 거리. 넓은 간격으로 빌드 플레이트에서 래프트를 쉽게 제거 할 수 있습니다." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "중간 래프트 층에 대한 래프트 사이의 거리. 중간 틈새는 매우 넓어야하며 래프트 상부 층을서포트 할만큼 충분히 촘촘해야합니다." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "상단 래프트 레이어에 대한 래프트 사이의 거리. 간격은 선 너비와 동일해야 표면이 단색입니다." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "독특한 프라임 타워 래프트 레이어를 위한 래프트 라인 간 거리입니다. 간격이 넓을수록 빌드 플레이트에서 래프트를 쉽게 제거할 수 있습니다." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "연동 구조를 생성하기 위한 모델 간 경계로부터의 거리로, 셀 단위로 측정됩니다. 셀 수가 너무 적으면 접착력이 떨어집니다." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "모델에서 가장 바깥 쪽 브림까지의 거리. 큰 테두리는 빌드 플레이트에 대한 접착력을 향상 시키지만 효과적인 프린팅 영역도 감소시킵니다." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "연동 구조가 생성되지 않는 모델 외부로부터의 거리로, 셀 단위로 측정됩니다." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "노즐의 열이 필라멘트로 전달되는 노즐의 끝에서부터의 거리." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "바닥 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨가 내부채움 패턴에 더 잘 붙어 스킨가 아래 층의 벽에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "스킨이 내부채움으로 확장되는 거리입니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되고 인접 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 될 재료의 양이 절약됩니다." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "상단 스킨의 거리가 내부채움으로 확장됩니다. 값이 높을수록 스킨이 내부채움 패턴에 더 잘 부착되며 위 레이어의 벽이 스킨에 잘 밀착됩니다. 값이 낮을수록 사용 된 재료의 양이 절약됩니다." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "브러시 전체에 헤드를 앞뒤로 이동하는 거리입니다." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "내부채움 선의 종점이 재료를 절약하기 위해 단축됩니다. 이 설정은 해당 선의 종점에 대한 오버행(경사면)의 각도입니다." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "압출하는 동안 노즐이 냉각되는 추가적인 속도. 압출하는 동안 가열 될 때 상실되는 열 상승 속도를 나타 내기 위해 동일한 값이 사용됩니다." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "첫번째 층의 서포트 채움에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "서포트의 바닥을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "서포트의 내부채움을 프린팅하는 데 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "래프트의 중간 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "서포트의 지붕과 바닥을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "서포트의 지붕을 프린팅 할 때 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "스커트 또는 브림 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "스커트 / 브림 / 래프트 프린팅에 사용하는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "서포트 프린팅에 사용할 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "래프트의 상단 레이어 프린팅에 사용되는 익스트루더 트레인. 이것은 다중 압출에 사용됩니다." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "내부채움용 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "내벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "외벽 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "상단 및 하단 스킨 프린팅에 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "익스트루더는 최상층을 프린팅하는 데 사용됩니다. 이것은 다중 압출에 사용됩니다." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "벽을 프린팅하는 데 사용되는 익스트루더. 이것은 다중 압출에 사용됩니다." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "기본 래프트 레이어의 팬 속도입니다." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "중간 래프트 레이어의 팬 속도입니다." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "래프트의 팬 속도." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "상단 래프트 레이어의 팬 속도입니다." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "인쇄 충진물의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "지지대의 해당 위치에서 밝기 값으로 최소 밀도를 결정하는 이미지의 파일 위치." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "처음 몇 개의 레이어는 모델의 나머지 부분보다 느리게 프린팅되어 빌드 플레이트에 대한보다 나은 접착력을 얻고 출력물의 전체 성공률을 향상시킵니다. 속도는 이 층 위로 점진적으로 증가합니다." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "최종 래프트 층과 모델의 첫 번째 층 사이의 틈새. 래프트 층과 모델 사이의 결합을 낮추기 위해 이 양만큼 첫 번째 층만 올립니다. 래프트를 쉽게 떼어 낼 수 있습니다." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "프린팅 가능 영역의 높이 (Z 방향)입니다." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "모델의 수평 부분 위의 높이로 몰드를 프린팅합니다." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "표준 팬 속도로 팬이 회전하는 높이입니다. 이 높이의 아래 레이어에서 팬 속도는 초기 팬 속도에서 표준 팬 속도로 점차 증가합니다." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "노즐 끝과 갠트리 시스템 사이의 높이 차이 (X 및 Y 축)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "노즐의 끝과 프린트 헤드의 가장 낮은 부분 사이의 높이 차이입니다." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "익스트루더 스위치 후 Z 홉을 수행할 때의 높이 차이." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행 할 때의 높이 차이." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z 홉을 수행할 때의 높이 차이." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "각 층의 높이 (mm)입니다. 값이 클수록 해상도가 낮고 프린팅 속도가 빨라지며, 값이 작을수록 해상도가 높고 프린팅 속도가 느려집니다." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도에서 내부채움의 높이." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "밀도의 절반으로 전환하기 전에 주어진 밀도의 서포트 채움 높이." + +msgctxt "interlocking_beam_layer_count description" +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 "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." + +msgctxt "interlocking_orientation description" +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 "연동 구조의 빔 높이로, 레이어 수로 측정됩니다. 레이어가 적을수록 강하지만 결함이 발생하기 쉽습니다." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "첫번째 레이어의 높이 (mm)입니다. 첫번째 레이어를 두껍게하면 빌드 플레이트에 쉽게 부착됩니다." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "프라임 타워 베이스의 높이입니다. 이 값을 늘리면 베이스가 넓어져 프라임 타워가 더 튼튼해집니다. 이 설정이 너무 낮으면 프라임 타워에 튼튼한 베이스가 형성되지 않습니다." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "모델에있는 서포트의 계단 모양 바닥의 계단 높이. 값이 낮으면 서포트를 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다. 계단 모양의 동작을 해제하려면 0으로 설정하십시오." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "첫 번째 브림 선과 첫 번째 레이어 프린팅의 윤곽 사이의 수평 거리입니다. 작은 간격은 브림을 제거하기 쉽도록 하면서 내열성의 이점을 제공할 수 있습니다." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "프린트의 스커트와 첫 번째 레이어 사이의 수평 거리입니다." +"이것은 최소 거리입니다. 여러 개의 스커트 선이 이 거리에서 바깥쪽으로 연장됩니다." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "내부채움 선이 인쇄 시간을 절약하기 위해 정리됩니다. 이는 내부채움 선 길이 전체에 허용되는 오버행(경사면)의 최대 각도입니다." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "내부채움 패턴이 X축을 따라 이 거리만큼 이동합니다." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "내부채움 패턴이 Y축을 따라 이 거리만큼 이동합니다." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "노즐의 내경. 비표준 노즐 크기를 사용할 때 이 설정을 변경하십시오." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "기본 래프트 레이어가 프린팅 될 때의 Jerk입니다." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "중간 래프트 층이 프린팅 될 때의 Jerk입니다." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "래프트가 프린팅 될 때의 Jerk입니다." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "상단 래프트 레이어가 프린팅 될 때의 Jerk입니다." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "제거 할 바닥 스킨 영역의 최대 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 밑면 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "제거 할 외부스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게하면 모델의 경사면에서 위쪽 / 아래쪽 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이 됩니다." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "제거 할 상단 스킨 영역의 가장 큰 너비. 이 값보다 작은 모든 스킨 영역은 사라집니다. 이렇게 하면 모델의 경사면에서 상단 스킨을 프린팅하는 데 소요되는 시간과 재료의 양을 제한하는 데 도움이됩니다." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "팬이 표준 팬 속도로 회전하는 레이어입니다. 표준 팬 속도시의 높이가 설정이 되어있으면, 이 값이 계산되고 정수로 반올림됩니다." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "표준 팬 속도와 최대 팬 속도 사이의 임계 값을 설정하는 레이어 시간입니다. 이 시간보다 느리게 프린팅되는 레이어는 표준 팬 속도를 사용합니다. 빠른 레이어의 경우 팬 속도가 최대 팬 속도쪽으로 점차 증가합니다." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "리트렉션 이동 중에 수축 된 재료의 길이입니다." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "프라임 타워 베이스의 경사에 사용되는 크기 계수입니다. 이 값을 늘리면 베이스가 더 얇아집니다. 줄이면 베이스가 더 두꺼워집니다." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "프린터에 설치된 빌드 플레이트의 재질." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "기본 레이어 높이와 다른 최대 허용 높이." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Ooze 쉴드가 가질 최대 각도. 0도가 수직이고 90도가 수평입니다. 각도가 작으면 Ooze 쉴드가 덜 파손되지만 재료는 더 많이 소모됩니다." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "프린팅 가능하게 된 후 오버행의 최대 각도. 0도의 값에서 모든 오버행은 빌드 플레이트에 연결된 모델로 대체됩니다. 90도는 모델을 변경하지 않습니다." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "모델 주위로 브랜치가 자랄 때 브랜치의 최대 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치의 도달 거리를 늘리려면 더 높은 각도를 사용하십시오." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "오버행 프린팅 설정에 의해 제거되기 전 모델의 베이스에 있는 구멍의 최대 영역입니다. 이보다 작은 홀은 유지됩니다. 0mm² 값은 모델 베이스의 모든 홀을 채웁니다." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "최대 해상도 설정에 대한 해상도를 낮추면 최대 편차를 사용할 수 있습니다. 최대 편차를 높이면 프린트의 정확도는 감소하지만, G 코드도 감소합니다. 최대 편차는 최대 해상도의 한계이며, 따라서 두 항목이 충돌하면 항상 최대 편차가 우선합니다." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "X/Y 방향으로 지지대 구조물 사이의 최대 거리입니다. 별도의 구조가 이 값보다 가깝게 있으면 구조가 하나로 합쳐집니다." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "압출 속도를 보상하기 위해 필라멘트를 이동하는 최대 거리(mm)." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "직선에서 중간 점을 제거할 때 허용되는 최대 압출 영역 편차. 중간 점은 긴 직선에서 너비가 바뀌는 점의 역할을 할 수 있습니다. 따라서 중간 점이 제거되면 선의 너비가 균일해지고 그 결과, 약간의 압출 영역을 잃거나 얻게 됩니다. 이 값을 증가시키면 중간의 너비가 바뀌는 점이 더 많이 제거될 수 있으므로, 직선의 평행한 벽들 사이에 약간의 미달(또는 과잉) 압출이 발생할 수 있습니다. 프린트의 정확도는 감소하지만, G 코드도 감소합니다." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "초기 층의 프린팅 중 최대 순간 속도 변화." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "프린트 헤드의 최대 순간 속도 변화." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "다림질을하는 동안 최대 순간 속도 변화." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "모든 내부 벽이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "내부채움이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "서포트의 바닥이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "서포트가 채워지는 최대 순간 속도 변화." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "가장 바깥 쪽 벽이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "프라임 타워가 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "서포트의 지붕과 바닥이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "서포트의 지붕이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "스커트와 브림이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "서포트 구조가 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "상면 바깥 벽이 인쇄되는 최대 순간 속도 변화" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "상면 내부 벽이 인쇄되는 최대 순간 속도 변화" + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "벽이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "상단 / 하단 레이어가 프린팅되는 최대 순간 속도 변화." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "헤드가 이동하는 최대 순간 속도 변화." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "공중에서 출력될 수 있는 브랜치의 최대 길이입니다." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 방향의 모터 최대 속도입니다." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 방향 모터의 최대 속도입니다." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 방향의 모터 최대 속도입니다." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "필라멘트의 최대 속도." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "모델에있는 서포트의 계단 모양 바닥의 최대 폭. 값이 낮으면 서포트을 제거하기가 어려워 서포트만 값이 너무 높으면 불안정한 서포트 구조가 생길 수 있습니다." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "몰드의 바깥쪽과 모델의 바깥쪽 사이의 최소 거리입니다." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "프린트 헤드의 최소 이동 속도." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "프린팅이 시작될 수 있는 프린팅 온도까지 가열하는 동안의 최소 온도." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "노즐이 냉각되기 전에 익스트루더가 비활성이어야하는 최소 시간. 이 시간보다 오래 익스트루더를 사용하지 않을 경우에만 대기 온도로 냉각시킬 수 있습니다." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "충진물이 추가되는 내부 오버행의 최소 각도. 0°에서는 개체가 충진물로 완전히 채워지지만, 90°에서는 충진물이 공급되지 않습니다." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "서포트가 추가 된 오버행 각도의 최소값입니다. 0 °의 값에서 모든 돌출부가 서포트가 생성되며 90 °는 지원하지 않습니다." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "리트렉션이 가능하기 위해 필요한 최소한의 이동 거리. 작은 영역에서 더 적은 리트렉션이 가능합니다." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "스커트 또는 브림의 최소 길이. 이 길이에 모든 스커트 또는 브림 선이 모두 도달하지 않으면 최소 길이에 도달 할 때까지 더 많은 스커트 또는 브림 선이 추가됩니다. 참고 : 0으로 설정하면 무시됩니다." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "중간 선 간격 충전재 폴리라인 벽의 최소 선 너비. 이 설정은 두 개의 벽 선을 프린팅 하는 것에서 두 개의 외벽 및 가운데의 단일 중앙 벽 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 홀수 벽 너비는 2 * 최소 짝수 벽 선 너비로 계산됩니다." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "일반 다각형 벽의 최소 선 너비 이 설정은 단일의 얇은 벽 선 프린팅에서 두 개의 벽 선 프린팅으로 전환하는 모델 두께를 결정합니다. 최소 짝수 벽 선 너비가 더 높을수록 최대 홀수 벽 선 너비가 높아집니다. 최대 짝수 벽 선 너비는 외벽 선 너비 + 0.5 * 최소 홀수 벽 선 너비로 계산됩니다." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "최소 프린팅 속도. 프린터의 속도가 너무 느려지면 노즐의 압력이 너무 낮아 프린팅 품질이 나빠질 수 있습니다." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "슬라이딩 후의 선분의 최소 크기입니다. 이 값을 높이면 메쉬의 해상도가 낮아집니다. 그러면 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있으며 처리할 수 없는 메쉬의 디테일이 제거되므로 슬라이드 속도가 높아집니다." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "슬라이딩 후의 이동 선분의 최소 크기입니다. 이 값을 높이면 코너에서 매끄럽게 이동하는 정도가 감소합니다. 프린터가 G 코드를 처리하는 데 필요한 속도를 유지할 수 있지만, 모델을 피하기 때문에 정확도가 감소합니다." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "계단 스텝이 적용되는 영역의 최소 경사입니다. 값이 낮을수록 낮은 각도 서포트 제거가 쉬워지지만 값을 너무 낮게 지정하면 모델의 다른 부분에서 적절하지 않은 결과가 발생할 수 있습니다." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "레이어에 소요 된 최소 시간입니다. 이렇게 하면 프린터가 한 레이어에서 여기에 설정된 시간을 소비하게됩니다. 이렇게하면 다음 레이어를 프린팅하기 전에 출력물을 적절히 냉각시킬 수 있습니다. 리프트 헤드가 비활성화되고 최소 속도가 위반되는 경우 레이어가 최소 레이어 시간보다 짧게 걸릴 수 있습니다." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "충분한 재료를 퍼지하기 위해 프라임 타워 각 층의 최소 부피." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "모델에 연결해야 하는 브랜치의 직경은 빌드 플레이트에 도달할 수 있는 브랜치와 병합하여 최대로 늘릴 수 있습니다. 이를 늘리면 프린트 시간이 단축되지만 모델에 닿는 서포트 영역이 증가합니다." + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3D 프린터 모델의 이름." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "\"AA 0.4\"및 \"BB 0.8\"과 같은 익스트루더의 노즐 ID." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동 할 때 이미 프린팅 된 부분을 피합니다. 이 옵션은 combing이 활성화 된 경우에만 사용할 수 있습니다." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "노즐은 이동하는 경우 이미 인쇄된 지지대를 피합니다. 빗질을 사용하는 경우에만 사용할 수 있는 옵션입니다." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "아래층의 수. 바닥 두께로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "래프트의 베이스 레이어에 있는 선형 패턴 주위에 프린팅 할 윤곽의 수." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "래프트의 중간 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "래프트의 상단 레이어에 있는 선형 패턴 주위에 출력할 윤곽선 수입니다." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "래프트의 선형 패턴 주위에 출력할 윤곽선 수입니다." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "스킨 에지를 지원하는 내부채움 레이어의 수." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "빌드 플레이트에서 위를 향하는 초기 하단 레이어 수. 하단 두께로 계산할 경우, 이 값이 전체 값으로 반올림됩니다." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "래프트의 베이스와 표면 사이에 있는 레이어의 수. 이 수가 래프트의 주요 두께를 구성합니다. 이 수가 증가하면 래프트가 더 두껍고 튼튼해집니다." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "브림에 사용되는 선의 수입니다. 더 많은 브림 선이 빌드 플레이트에 대한 접착력을 향상 시키지만 유효 프린트 영역도 감소시킵니다." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "서포트 브림에 사용되는 라인의 수. 브림 라인이 많아질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "두 번째 래프트 레이어 맨 위에있는 최상위 레이어의 수입니다. 이것들은 모델이 위치하는 완전히 채워진 레이어입니다. 2층은 1보다 부드러운 표면을 만듭니다." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "출력물의 상단 레이어의 수. 상단 두깨로 계산을 할때 이 값은 벽 두께로 계산할 때 이 값은 반올림됩니다." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "최상층의 스킨 층의 수. 일반적으로 고품질의 표면을 생성하기 위해 맨위의 레이어 하나만 있으면 충분합니다." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 충진물을 둘러싸는 벽의 개수. 벽을 추가하면 지지물 인쇄 안정성을 높일 수 있고 오버행 지지를 개선할 수 있지만, 인쇄 시간과 사용되는 재료가 늘어납니다." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스 바닥을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스 지붕을 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "지지대 인터페이스를 둘러쌀 벽의 수입니다. 벽을 추가하면 지지대 프린트를 더 안정적으로 만들고 오버행(경사면)을 더 잘 지원할 수 있지만, 프린트 시간과 사용되는 재료가 늘어납니다." + +msgctxt "wall_distribution_count description" +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 "중앙에서부터 계산되는 벽의 수로, 이를 통해 오차가 분산되어야 합니다. 값이 작다고 해서 외벽의 너비가 변경되지 않는 것은 아닙니다." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "벽의 수. 벽 두께로 계산할 때 이 값은 반올림됩니다." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "노즐 끝의 외경." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "프린트 내부채움 재료의 패턴입니다. 선형과 지그재그형 내부채움이 서로 다른 레이어에서 방향을 바꾸므로 재료비가 절감됩니다. 격자, 삼각형, 트라이 헥사곤 (tri-hexagon), 큐빅, 옥텟 (octet), 쿼터 큐빅, 크로스, 동심원 패턴이 레이어마다 완전히 프린트됩니다. 자이로이드 (Gyroid), 큐빅, 쿼터 큐빅, 옥텟 (octet) 내부채움이 레이어마다 변경되므로 각 방향으로 힘이 더 균등하게 분산됩니다. 라이트닝 내부채움이 객체의 천장만 서포트하여 내부채움을 최소화합니다." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "서포트 구조의 패턴. 사용 가능한 여러 가지 옵션을 사용하면 튼튼하고 쉽게 제거 할 수 있습니다." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "최상위 레이어의 패턴." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "상단/하단 레이어의 패턴." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "첫 번째 레이어의 프린팅 아래쪽에 있는 패턴입니다." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "윗면을 다림질 할 때 사용하는 패턴." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "서포트의 바닥이 프린팅되는 패턴." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "모델과 서포트 인터페이스를 프린팅하는 패턴입니다." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "서포트의 지붕이 프린팅되는 패턴." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "레이어에서 각 부품의 프린팅이 시작할 위치 근처입니다." + +msgctxt "support_tree_angle_slow description" +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 "모델을 피할 필요가 없을 때 브랜치의 기본 각도입니다. 브랜치가 수직에 가깝게 안정적이 되도록 만들려면 더 낮은 각도를 사용하고, 브랜치가 빨리 합쳐지도록 하려면 더 높은 각도를 사용하십시오." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "서포트 구조물의 기본 배치입니다. 구조물을 원하는 위치에 배치할 수 없는 경우 구조물을 모델 위에 놓더라도 다른 곳에 배치합니다." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "초기 레이어의 프린팅 최대 순간 속도 변화." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "프린팅 할 수 없는 영역을 고려하지 않은 빌드 플레이트의 모양." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "프린트 헤드의 모양. 일반적으로 첫 번째 압출기의 위치인 프린트 헤드의 위치와 관련된 좌표입니다. 프린트 헤드의 왼쪽 및 앞쪽 치수는 음수 좌표여야 합니다." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "패턴이 접촉되는 높이에서 크로스 3D 패턴의 4 방향 교차점에있는 포켓의 크기입니다." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "코스팅(Coasting)을 허용하기 전에 압출 경로에 있어야하는 최소 양. 작은 압출 경로의 경우 보우덴 튜브에 가해지는 압력이 적기 때문에 코스팅(Coasting) 부피가 선형 적으로 조정됩니다. 이 값은 항상 코스팅(Coasting) 양보다 커야합니다." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "노즐이 냉각되는 속도 (°C/s)는 일반적인 프린팅 온도 및 대기 온도에서 평균을 냅니다." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "노즐이 가열되는 속도 (°C/s)는 일반적인 프린팅 온도와 대기 온도에서 평균을 냅니다." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "모든 내부 벽이 프린팅되는 속도입니다. 내벽을 외벽보다 빠르게 프린팅하면 프린팅 시간이 단축됩니다. 외벽 속도와 충전 속도 사이에서 이것을 설정하는 것이 효과적입니다." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "브릿지 스킨 층이 프린팅되는 속도." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "내부채움이 프린팅되는 속도." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "프린팅 속도." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "기본 래프트 레이어가 프린팅되는 속도입니다. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야 합니다." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "브릿지 벽이 프린팅되는 속도." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "프린팅 시작시 팬이 회전하는 속도입니다. 후속 레이어에서는 팬 속도가 높이의 표준 팬 속도에 해당하는 레이어까지 점차 증가합니다." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "팬이 임계 값에 도달하기 전에 회전하는 속도입니다. 레이어가 임계값보다 빠르게 프린팅되면 팬 속도가 최대 팬 속도쪽으로 점차 기울어집니다." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "최소 레이어 시간에 팬이 회전하는 속도입니다. 임계 값에 도달하면 표준 팬 속도와 최대 팬 속도 사이에서 팬 속도가 서서히 증가합니다." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "리트렉션 이동 중에 필라멘트가 프라이밍되는 속도입니다." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 초기화되는 속도입니다." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "노즐 스위치 리트렉션 후 필라멘트가 뒤로 밀리는 속도." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "리트렉션 속도입니다." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉션 및 준비되는 속도입니다." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "노즐 스위치 리트렉션시 필라멘트가 리트렉션하는 속도." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "리트렉션 속도입니다." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "와이프 리트랙션 이동 중에 필라멘트가 리트렉트되는 속도입니다." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "필라멘트가 리트렉션 되는 속도입니다. 리트렉션 속도가 빠르면 좋지만 리트렉션 속도가 높으면 필라멘트가 갈릴 수 있습니다." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "서포트 바닥 프린팅 속도. 더 낮은 속도로 프린팅하면 모델 상단의 서포트력이 향상됩니다." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "서포트의 내부채움이 프린팅되는 속도. 내부채움을 저속으로 프린팅하면 안정성이 향상됩니다." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "중간 래프트 층이 프린팅되는 속도. 이것은 노즐에서 나오는 재료의 양이 상당히 많기 때문에 아주 천천히 프린팅되어야합니다." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "가장 바깥 쪽 벽이 프린팅되는 속도입니다. 외벽을 더 낮은 속도로 프린팅하면 최종 스킨 품질이 향상됩니다. 그러나 내벽 속도와 외벽 속도 사이에 큰 차이가있을 경우 부정적인 방식으로 품질에 영향을 미칩니다." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "프라임 타워가 프린팅되는 속도. 프라임 타워를 더 천천히 프린팅하면 다른 필라멘트 사이의 접착을 더 안정적으로 만들 수 있습니다." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "프린팅 냉각 팬이 회전하는 속도입니다." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "래프트가 프린팅되는 속도." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "서포트의 지붕과 바닥이 프린팅되는 속도. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "서포트의 지붕이 프린팅되는 속도입니다. 프린팅 속도를 느리게하면 오버행 품질이 향상 될 수 있습니다." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "스커트와 브림이 프린팅되는 속도입니다. 일반적으로 이것은 초기 레이어 속도에서 수행되지만 때로는 스커트나 브림을 다른 속도로 프린팅하려고 할 수 있습니다." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "서포트 구조가 프린팅되는 속도입니다. 서포트를 고속으로 프린팅하면 프린팅 시간을 크게 단축시킵니다. 서포트 구조체의 표면 품질은 프린팅 후에 제거되므로 중요하지 않습니다." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "상단 래프트 레이어가 프린팅되는 속도입니다. 이 노즐은 조금 더 느리게 프린팅해야 노즐이 인접한 표면 선을 천천히 부드럽게 할 수 있습니다." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "상면 내벽이 인쇄되는 속도" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "상면의 가장 바깥 벽이 인쇄되는 속도" + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 홉을 위해 수직 Z 이동이 이루어지는 속도입니다. 빌드 플레이트 또는 기기의 갠트리를 움직이기가 더 어렵기 때문에 프린트 속도보다 낮은 것이 일반적입니다." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "벽이 프린팅되는 속도입니다." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "상단 표면을 통과하는 속도." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "필라멘트가 깔끔하게 파단되기 위해 후퇴해야 하는 속도입니다." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "상단 표면 스킨 층이 프린팅되는 속도." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "위쪽/아래쪽 레이어가 프린팅되는 속도입니다." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "움직일때의 이동 속도." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "코스팅(Coasting)시 이동 속도. 압출 경로의 속도에 상대적입니다. 코스팅(Coasting) 이동 중에 보우 덴 튜브의 압력이 떨어지기 때문에 100% 보다 약간 작은 값을 권합니다." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "초기 레이어의 속도입니다. 빌드 플레이트에 대한 접착력을 향상시키려면 낮은 값을 권장합니다. 브림과 래프트 같은 빌드 플레이트 접착 구조 자체에 영향을 미치지 않습니다." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "초기 레이어의 프린팅 속도입니다. 빌드 플레이트에 대한 접착력을 향상 시키려면 낮은 값을 권합니다." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "이동 속도는 초기 레이어에서 이동합니다. 이전에 프린팅 된 부품을 빌드 플레이트에서 떨어지는 것을 방지하려면 더 낮은 값을 권합니다. 이 설정의 값은 이동 속도와 프린팅 속도 사이의 비율로부터 자동으로 계산 될 수 있습니다." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "필라멘트가 깔끔하게 파단되는 온도입니다." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "프린팅되는 환경의 온도입니다. 이 값이 0인 경우 빌드 볼륨 온도는 조정되지 않습니다." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "다른 노즐이 현재 프린팅에 사용될 경우 노즐 온도." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "프린팅 종료 직전에 냉각이 시작될 온도입니다." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "첫 레이어 인쇄에 사용되는 온도입니다." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "프린팅에 사용되는 온도." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "첫 번째 레이어에서 내열 빌드 플레이트에 사용되는 온도. 0인 경우, 빌드 플레이트가 첫 번째 레이어에서 가열되지 않습니다." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "내열 빌드 플레이트용으로 사용된 온도 0인 경우 빌드 플레이트가 가열되지 않습니다." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "재료를 퍼지하는 데 사용하는 온도는 가능한 한 가장 높은 프린팅 온도와 대략 같아야 합니다." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "출력물의 아래쪽 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 맨 아래 레이어의 수 입니다." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "스킨 에지를 지원하는 추가 내부채움의 두께." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "밑면 또는 상단의 모델과 접촉하는 서포트 인터페이스 두께입니다." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "서포트 바닥의 두께. 이것은 서포트가 놓여있는 모델의 상단에 프린팅되는 조밀 한 층의 수를 제어합니다." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "받침 지붕의 두께. 이것은 모델이 놓이는 받침대 상단의 조밀 한 층의 양을 제어합니다." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "출력물의 상단 레이어의 두께. 이 값을 레이어 높이로 나눈 값이 최상위 레이어 수 입니다." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "출력물의 상단/하단 레이어의 두께. 이 값을 레이어 높이로 나눈 값은 위쪽/아래쪽 레이어의 수 입니다." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "가로 방향의 벽 두께입니다. 이 값을 벽 선 너비로 나눈 값은 벽의 수 입니다." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "내부채움물 층의 두께. 이 값은 항상 레이어 높이의 배수이어야 하며 반올림됩니다." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "서포트 내부채의 레이어당 두께. 이 값은 항상 레이어 높이의 배수이 어야하며 그렇지 않으면 반올림됩니다." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "생성 될 gcode의 유형." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "사용된 재료의 유형입니다." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "그렇지 않으면 볼륨이 흘러 나옵니다. 이 값은 일반적으로 노즐 직경 입방체에 가깝습니다." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "프린팅 가능 영역의 폭 (X 방향)." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "서포트 아래를 인쇄하기 위한 브림 폭. 브림이 커질수록 추가 재료가 소요되지만 빌드 플레이트에 대한 접착력이 향상됩니다." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "연동 구조 빔의 너비입니다." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "프라임 타워 브림/베이스의 폭입니다. 베이스가 크면 빌드 플레이트에 대한 접착력이 향상되지만, 실제 인쇄 영역은 줄어듭니다." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "프라임 타워의 너비." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "지터가 발생할 너비. 내벽이 변경되지 않으므로 외벽 너비 아래로 유지하는 것이 좋습니다." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "최대 리트렉션 횟수가 시행되는 영역 입니다. 이 값은 수축 거리와 거의 같아야 하므로 같은 수축 패치가 통과하는 횟수가 효과적으로 제한됩니다." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 x 좌표입니다." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "프라임 타워 위치의 y 좌표입니다." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "장면에 서포트 메쉬가 있습니다. 이 설정은 Cura가 제어합니다." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "이것은 브릿지 벽이 시작되기 직전에 익스트루더가 있어야하는 거리를 제어합니다. 브릿지가 시작되기 전에 코스팅(coasting)을 하면 노즐의 압력을 낮추고 보다 평평한 브릿지를 만들 수 있습니다." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 베이스의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 중간의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 윤곽의 안쪽 구석의 곡률을 제어합니다. 안쪽 구석이 여기에 지정된 값과 동일한 반경으로 반원 모양으로 휘어집니다. 또한 이 설정을 사용하면 래프트 윤곽에서 그러한 원보다 작은 구멍이 제거됩니다." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "이 설정은 래프트 상단의 내부 모서리를 얼마나 둥글게 할지 제어합니다. 내부 모서리는 여기에 지정된 값과 동일한 반경을 가진 반원 모양으로 둥글게 다듬어집니다. 이 설정은 래프트 윤곽선에 있는 이러한 원보다 작은 구멍도 제거합니다." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "이 설정은 최소 압출 거리에서 발생하는 리트렉션 수를 제한합니다. 이 거리내에서 더 이상의 리트렉션은 무시됩니다. 이렇게 하면 필라멘트를 평평하게하고 갈리는 문제를 일으킬 수 있으므로 동일한 필라멘트에서 반복적으로 리트렉션하지 않습니다." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "모델 주위에 벽이 생겨 외부 공기 흐름을 막아 (뜨거운) 공기를 막을 수 있습니다. 왜곡이 쉬운 소재에 특히 유용합니다." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "팁 직경" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "냉각됨에 따라 재료의 수축을 보정하기 위해 모델이 이 배율로 XY 방향으로(수평으로) 확장됩니다." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "냉각됨에 따라 재료 수축을 보정하기 위해 모델이 이 배율로 Z 방향으로(수직으로) 확장됩니다." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "냉각됨에 따라 재료 수축을 보상하기 위해 모델이 이 배율로 확장됩니다." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "상단 레이어" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "윗면 스킨 확장 거리" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "상단 스킨 제거 폭" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "상면 내벽 가속도" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "상면 가장 바깥 벽의 최대 순간 속도 변화" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "상면 내벽 속도" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "상면 내벽 흐름" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "상면 외벽 가속도" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "상면 가장 바깥 벽의 유량" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "상면 내벽의 최대 순간 속도 변화" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "상면 외벽 속도" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "상단 표면 스킨 가속도" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "상단 표면 익스트루더" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "상단 표면 스킨 압출량" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "스킨 표면 Jerk" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "상단 표면 스킨 레이어" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "상단 표면 스킨 라인 방향" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "상단 표면 스킨 선 너비" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "탑 표면 스킨 패턴" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "상단 표면 스킨 속도" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "상단 두께" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "이 설정보다 큰 각도로 객체의 상단 및 또는 하단 표면은 위쪽/아래쪽 스킨이 확장되지 않습니다. 이렇게하면 모델 표면이 수직 경사가 거의 없을 때 생성되는 좁은 스킨 영역을 확장하지 않아도됩니다. 0도의 각도는 수평이며 스킨의 확장을 유발하지 않고, 90도의 각도는 수직이며 모든 스킨의 확장을 유발합니다." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "위 / 아래" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "위 / 아래" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "상단/하단 가속도" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "상단/하단 익스트루더" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "상단/하단 압출량" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "위/아래 Jerk" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "상단/하단 라인 길 방향" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "상단/하단 라인 폭" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "상단/하단 패턴" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "상단/하단 속도" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "상단/하단 두께" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "빌드 플레이트 위" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "타워 지름" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "타워 지붕 각도" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "파일로부터 로드 하는 경유, 모델에 적용될 변환 행렬입니다." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "서포트 구조의 배치를 조정합니다. 배치는 빌드 플레이트 또는 모든 곳을 터치하도록 설정할 수 있습니다. 모든 곳에 설정하면 모델에 서포트 구조가 프린팅됩니다." +msgctxt "travel label" +msgid "Travel" +msgstr "이동" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "이동 가속" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "이동중 피하는 거리" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "이동 Jerk" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "이동 속도" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "모델을 표면만, 볼륨 또는 느슨한 표면이있는 볼륨으로 취급합니다. 일반 프린팅 모드는 볼륨만 프린팅합니다. \"표면\"은 아무런 내부채움없이 상단 / 하단 스킨없이 메쉬 표면을 추적하는 단일 벽을 프린팅합니다. \"둘 다\"는 정상 및 나머지 폴리곤과 같은 닫힌 볼륨을 서피스로 프린팅합니다." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "트리" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "삼-육각형" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "삼각형" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "트렁크 직경" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "유니언 오버랩 볼륨" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "이보다 짧은 벽은 일반 벽 설정을 사용하여 인쇄됩니다. 더 이상 지원되지 않는 벽은 브리지 벽 설정을 사용하여 인쇄됩니다." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "어댑티브 레이어 사용" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "타워 사용" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "이동할 때 별도의 가속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 가속도 값을 사용합니다." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "이동할 때 별도의 저크 속도를 사용합니다. 비활성화된 경우 이동 시 프린팅된 라인의 목적지 기준 저크 값을 사용합니다." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "절대 돌출보다는 상대적 돌출을 사용합니다. 상대적인 E-steps을 사용하면 Gcode를 보다 쉽게 후 처리 할 수 있습니다. 그러나 모든 프린터에서 지원되는 것은 아니며 절대 E 단계와 비교할 때 출력된 재료의 양이 매우 약간 다를 수 있습니다. 이 설정과 관계없이 압출 모드는 Gcode 스크립트가 출력되기 전에 항상 절대 값으로 설정됩니다." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "작은 오버행에 서포트를 생성하기 위해 특수한 타워를 사용. 이 타워들은 그들이 서포트하는 지역보다 더 큰 지름을 가지고 있습니다. 오버행 부근에서 타워의 직경이 감소하여 지붕을 형성합니다." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "겹치는 다른 메쉬의 내부채움율을 수정합니다. 다른 메쉬의 내부채움 영역을 이 메쉬의 영역으로 대체합니다. 하나의 벽과 상단/바닥 스킨만을 프린팅하는 것이 추천합니다." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "본 메시를 사용하여 서포트 영역을 지정하십시오. 이것은 서포트 구조를 생성하는 데 사용할 수 있습니다." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "본 메쉬를 사용하여 모델에서 오버행부로 감지되지 않을 부분을 지정합니다. 이것은 원하지 않는 서포트 구조를 제거하는 데 사용될 수 있습니다." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "사용자 지정" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "수직 확장 배율 수축 보정" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "슬라이스 레이어의 수직 허용 오차입니다. 레이어의 윤곽선은 일반적으로 각 레이어의 두께 중간(중간)을 교차하는 부분을 기준으로 생성됩니다. 또는 각 레이어가 레이어의 높이 전체의 볼륨에 들어가는 영역(포함하지 않음)이 있거나 레이어 안의 어느 지점에 들어가는 영역(포함)이 있을 수 있습니다. 포함된 영역에서 가장 많은 디테일이 포함되고 포함되지 않은 영역을 통해 가장 맞게 만들 수 있으며 중간을 통해 원래 표면과 가장 유사하게 만들어냅니다." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "빌드 플레이트가 가열될 때까지 기다리십시오" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "노즐이 가열될 때까지 기다리기" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "벽 가속도" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "벽 배포 개수" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "벽 익스트루더" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "벽 압출량" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "벽 Jerk" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "벽 라인의 수" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "벽 선 너비" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "벽 순서 지정" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "벽 속도" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "벽 두께" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "벽 전환 길이" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "벽 전환 필터 거리" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "벽 전환 필터 여백" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "벽 전환 임계각" + +msgctxt "shell label" +msgid "Walls" +msgstr "벽" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "이 각도보다 놓은 오버행(경사면)의 벽은 오버행 벽 설정을 사용해 인쇄됩니다. 값이 90이면 오버행(경사면)으로 처리되는 벽이 없습니다. 서포트로 지지되는 오버행(경사면)도 오버행(경사면)으로 처리되지 않습니다." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "활성화하면 부드러운 모션 플래너가 있는 프린터의 도구 경로가 수정됩니다. 일반적인 도구 경로 방향에서 벗어나는 작은 움직임이 평활화되어 플루이드 모션이 개선됩니다." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "활성화되면, 내부채움 라인 프린팅 순서가 최적화되어 이동 거리를 줄입니다. 이동 시간의 감소는 슬라이스되는 모델, 내부채움 패턴, 밀도 등에 따라 달라집니다. 작은 내부채움 영역이 많은 일부 모델의 경우, 모델을 슬라이스하는 시간이 상당히 늘어납니다." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "활성화되면 서포트 바로 위의 스킨 영역에 대한 프린팅 냉각 팬 속도가 변경됩니다." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "활성화 된 경우 z 솔기 좌표는 각 부품의 중심을 기준으로합니다. 비활성화 된 경우 좌표는 빌드 플레이트의 절대 위치를 정의합니다." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "0보다 큰 경우 이 거리보다 긴 combing travel은 retraction을 사용합니다. 0으로 설정한 경우 최댓값이 없으며 combing travel은 retraction을 사용하지 않습니다." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "0보다 큰 값으로 설정하면 구멍 수평 확장이 작은 구멍에 점진적으로 적용되고(작은 구멍이 더 확장됨), 0으로 설정하면 구멍 수평 확장이 모든 구멍에 적용됩니다. 구멍 수평 확장 최대 직경보다 큰 구멍은 확장되지 않습니다." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "0보다 크면 홀 수평 확장은 각 레이어의 모든 홀에 적용되는 오프셋의 양입니다. 양수 값은 홀의 크기를 늘리고 음수 값은 홀의 크기를 줄입니다. 이 설정을 활성화하면 홀 수평 확장 최대 직경을 사용하여 추가로 조정할 수 있습니다." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "브릿지 스킨 벽 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "두번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "세번째 브릿지 스킨 영역을 프린팅할 때 압출 된 재료의 양에 이 값을 곱합니다." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "최소 레이어 시간으로 인해 최소 속도에 도달하면 헤드를 출력물에서 들어 올려 최소 레이어 시간에 도달 할 때까지 시간을 기다립니다." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "모델의 몇 가지 레이어에만 수직 간격이 작을 경우 보통 좁은 공간의 본 레이어 주위에도 스킨이 있어야 합니다. 수직 간격이 매우 작을 경우 스킨을 생성하지 않도록 이 설정을 활성화합니다. 이렇게 하면 프린팅 시간과 슬라이싱 시간은 개선되지만 기술적으로 내부채움이 공기 중에 노출된 상태로 남게 됩니다." + +msgctxt "wall_transition_angle description" +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 "짝수 벽과 홀수 벽 사이에 전환을 생성할 때입니다. 이 설정보다 더 큰 각도의 웨지 모양은 전환이 없으며 나머지 공간을 채우기 위해 벽이 중앙에 프린트되지는 않습니다. 이 설정을 줄이면 이러한 중앙 벽의 수와 길이가 줄어들지만, 간격이 생기거나 과잉 압출될 수 있습니다." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "부품이 얇아지면서 서로 다른 수의 벽 사이에서 전환될 때 벽 선을 분할하거나 결합하기 위해 일정 양의 공간이 할당됩니다." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "와이프할 때, 노즐과 출력물 사이에 간격이 생기도록 빌드 플레이트를 내립니다. 이동 중에 노즐이 출력물에 부딪히는 것을 방지하여 제조판에서 출력물을 칠 가능성을 줄입니다." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "리트렉션이 일어날 때마다 빌드 플레이트가 낮아져 노즐과 출력물 사이에 여유 공간이 생깁니다. 이동 중에 노즐이 출력물에 부딪치지 않도록 합니다." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "서포트 X/Y 거리가 서포트 Z 거리를 무시하는지 여부를 나타냅니다. X/Y가 Z를 오버라이드하면 X/Y 거리는 모델에서 서포트점을 밀어내어 돌출부까지의 실제 Z 거리에 영향을 줄 수 있습니다. 오버행 주위에 X/Y 거리를 적용하지 않음으로써이 기능을 비활성화 할 수 있습니다." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "프린터의 0 위치의 X/Y 좌표가 프린팅 가능 영역의 중앙에 있는지 여부." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X 축의 엔드 스톱이 양의 방향 (높은 X 좌표) 또는 음의 (낮은 X 좌표)인지 여부." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y 축의 엔드 스톱이 양의 방향 (높은 Y 좌표) 또는 음의 (낮은 Y 좌표)인지 여부." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z 축의 엔드 스톱이 양의 방향 (높은 Z 좌표) 또는 음의 (낮은 Z 좌표)인지 여부." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "압출기가 자체 히터를 가지고 있지 않고 단일 히터를 공유하는지에 대한 여부." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "익스트루더가 자체 노즐을 가지고 있지 않고 단일 노즐을 공유하는지에 대한 여부. True로 설정하면 프린터 시동 gcode 스크립트가 알려진 상호 호환 가능한 초기 수축 상태(0 또는 1개의 필라멘트가 수축되지 않음)에서 모든 익스트루더를 적절하게 설정해야 합니다. 이 경우 초기 수축 상태는 'machine_extruders_shared_nozzle_initial_retraction' 매개 변수에 의해 익스트루더마다 표시됩니다." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "기기에 히팅 빌드 플레이트가 있는지 여부." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "기기의 빌드 볼륨 온도 안정화 지원 여부입니다." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "객체가 저장된 좌표계를 사용하는 대신 빌드 플랫폼 중간 (0,0)를 중심으로 할지 여부." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Cura에서 온도를 제어할지 여부. Cura 외부에서 노즐 온도를 제어하려면 이 기능을 끄십시오." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "gcode가 시작될 때 빌드 플레이트 온도 명령을 포함할지 여부. start_gcode에 빌드 플레이트 온도 명령이 이미 있으면 Cura는 이 설정을 자동으로 비활성화 합니다." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "gcode의 시작 부분에 노즐 온도 명령을 포함할지 여부. start_gcode에 이미 노즐 온도 명령이 포함되어있을 때 Cura는 이 설정을 자동으로 비활성화 합니다." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "노즐 와이퍼 작동 G-코드를 레이어 사이에 포함할지 여부(레이어당 최대 1개) 이 설정을 활성화하면 레이어 변경 시 리트렉트 동작에 영향을 미칠 수 있습니다. 와이프 스크립트가 작동할 레이어의 감속을 제어하려면 와이프 리트랙션 설정을 사용하십시오." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "시작 시, 빌드 플레이트가 가열될 때까지 대기하라는 명령을 삽입할지 여부." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "프린팅하기 전에 프라이밍할지 여부. 이 설정을 켜면 프린팅하기 전에 익스트루더가 노즐에서 재료를 준비 할 수 있습니다. 브림 또는 스커트 프린팅는 프라이밍처럼 작동 할 수 있습니다.이 경우이 설정을 해제하면 시간이 절약됩니다." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "모든 모델을 한 번에 한 레이어씩 프린팅할 것인지, 아니면 한 모델이 완료될 때까지 기다릴 것인지, 다음 단계로 넘어가기 전에 대한 여부 a) 한 번에 하나의 압출기만 활성화하고 b) 모든 모델은 전체 프린트 헤드가 이동할 수 있는 방식으로 분리되며 모든 모델은 노즐과 X/Y 축 사이의 거리보다 낮습니다." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "별도의 json 파일에 설명된 기기의 다양한 세부 설정을 표시할지 여부." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "재료를 리트렉션하는 G1 명령어에서 E 속성을 사용하는 대신 펌웨어 리트렉션 명령어(G10/G11)를 사용할 지 여부." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "시작 시, 노즐이 가열될 때까지 대기할지 여부." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "단일 내부채움 라인의 너비." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "서포트의 지붕, 바닥의 폭." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "프린팅 상단 부분의 한 줄 너비." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "한 줄의 두께. 일반적으로 각 라인의 너비는 노즐 폭과 일치해야합니다. 그러나 이 값을 약간 줄이면 더 나은 인쇄를 할 수 있습니다." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "단일 주요 타워 라인의 폭." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "단일 스커트 또는 브림의 너비." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "단일 서포트 플로어 라인의 폭." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "단일 서포트 지붕 라인 폭." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "단일 서포트 구조 선의 폭입니다." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "한 라인의 단일 위쪽/아래쪽 선의 너비입니다." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "가장 바깥 쪽 벽 선을 제외한 모든 벽 선에 대해 단일 벽 선의 폭입니다." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "단일 벽 선의 너비입니다." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "기본 래프트 층에있는 선의 너비. 이것은 빌드 플레이트 접착을 돕기 위해 두꺼운 선 이어야 합니다." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "중간 래프트 층의 선폭. 두 번째 레이어를 더 돌출 시키면 선이 빌드 플레이트에 달라 붙습니다." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "래프트의 윗면에 있는 선의 폭. 래프트의 상단이 매끄럽도록 얇은 선으로 구성 될 수 있습니다." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "가장 바깥 쪽 벽 선의 너비. 이 값을 낮춤으로써 높은 수준의 디테일을 프린팅 할 수 있습니다." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "모델의 (최소 피처 크기에 따라) 얇은 피처를 대체할 벽의 너비 최소 벽 선 너비가 피처의 두께보다 더 얇다면 벽은 피처 자체만큼 두꺼워집니다." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "와이프 브러시 X 위치" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "와이프 홉 속도" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "프라임 타워에서 비활성 노즐 닦기" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "와이프 이동 거리" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "레이어 사이의 와이프 노즐" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "와이프 일시 정지" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "와이프 반복 횟수" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "와이프 리트랙션 거리" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "와이프 리트랙션 활성화" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "와이프 리트랙션 추가 초기 양" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "와이프 리트렉션 초기 속도" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "와이프 리트랙션 리트렉트 속도" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "와이프 리트랙션 속도" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "와이프 Z 홉" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "화이프 Z 홉 높이" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "내부채움 내" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "임시 명령을 비활성 도구로 전송한 후 활성 도구를 작성하십시오. Smoothie 또는 모달 도구 명령어를 사용하는 다른 펌웨어를 사용해 프린팅하는 듀얼 압출기용 프린팅에 필요합니다." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "양의 방향 X 엔드 스톱" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "와이프 스크립트가 시작되는 X 위치입니다." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y가 Z를 무시합니다" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "양의 방향 Y 엔드 스톱" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "양의 방향 Z 엔드 스톱" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "익스트루더 스위치 후 Z 홉" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "익스트루더 스위치 높이 후 Z 홉" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 홉 높이" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "프린팅 된 부분에만 Z Hop" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 홉 속도" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "리트렉션했을 때의 Z Hop" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 솔기 정렬" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 경계 위치" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "상대적 Z 솔기" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 솔기 X" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 솔기 Y" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z가 X/Y를 무시합니다" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "지그재그" + +msgctxt "travel description" +msgid "travel" +msgstr "이동" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "노즐 전환 중 냉각 팬의 활성화 여부를 선택합니다. 노즐을 더 빨리 냉각시켜 흘러내림을 줄일 수 있습니다:
    • 변경 없음: 팬을 이전 상태와 같이 유지합니다
    • 마지막 압출기만: 마지막으로 사용한 압출기의 팬을 켜고, 나머지 팬이 있을 경우 모두 끕니다. 완전한 별도의 압출기가 있는 경우 유용합니다.
    • 모든 팬: 노즐 전환 중 모든 팬을 켭니다. 냉각팬이 1개만 있거나, 여러 개의 팬이 서로 가까이 있는 경우 유용합니다.
    " + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "모든 팬" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "압출기 전환 중 냉각" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "서포트 구조물의 Z 심과 실제 3D 모델 간의 공간 관계를 관리합니다. 이 컨트롤은 인쇄 결과 모델에 손상이나 자국을 남기지 않고 인쇄 후 서포트 구조물을 원활히 제거할 수 있도록 해주므로 매우 중요합니다." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "모델과의 최소 Z 심 거리" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "서포트의 초기 레이어에서 인필을 위한 압출 배율입니다. 이 값을 높이면 베드 밀착에 도움이 될 수 있습니다." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "마지막 압출기만" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "다각형 꼭지점에 Z 심을 배치합니다. 이 기능을 끄면 정점 사이에도 심을 배치할 수 있습니다. (단, 이 경우 지원되지 않는 오버행에 심을 배치하는 데 대한 제약을 무시하지는 않는다는 점에 유의하세요)" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "프라임 타워 최소 셸 두께" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "래프트 기본 흐름" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "래프트 베이스 인필 오버랩" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "래프트 베이스 인필 오버랩 백분율" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "래프트 흐름" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "래프트 인터페이스 흐름" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "래프트 인터페이스 인필 오버랩" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "래프트 인터페이스 인필 오버랩 백분율" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "래프트 인터페이스 Z 오프셋" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "래프트 서피스 흐름" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "래프트 서피스 인필 오버랩" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "래프트 서피스 인필 오버랩 백분율" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "래프트 서피스 Z 오프셋" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "심 오버행잉 월 각도" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "서포트 인필 밀도 압출 배율 초기 레이어" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "모델과 떨어진 서포트 Z 심" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "래프트 베이스 인쇄 시 일반 압출 라인 대비 압출할 재료의 양입니다. 유동이 증가하면 접착력 및 래프트 구조 강도가 향상될 수 있습니다." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "래프트 인터페이스 인쇄 시 일반 압출 라인 대비 압출할 재료의 양입니다. 유동이 증가하면 접착력 및 래프트 구조 강도가 향상될 수 있습니다." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "일반 압출 라인 대비 래프트 인쇄 중 압출할 재료의 양입니다. 유동이 증가하면 접착력 및 래프트 구조 강도가 향상될 수 있습니다." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "래프트 표면 인쇄 시 일반 압출 라인 대비 압출할 재료의 양입니다. 유동이 증가하면 접착력 및 래프트 구조 강도가 향상될 수 있습니다." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "래프트 베이스의 인필과 월 사이의 겹침 정도(인필 라인 너비의 백분율)입니다. 약간의 겹침이 있을 경우 월이 인필에 보다 단단히 연결될 수 있습니다." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "래프트 베이스의 인필과 월 사이의 겹침 정도입니다. 약간의 겹침이 있을 경우 월이 인필에 보다 단단히 연결될 수 있습니다." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "래프트 인터페이스의 인필과 월 사이의 겹침 정도(인필 라인 너비의 백분율)입니다. 약간의 겹침이 있을 경우 월이 인필에 보다 단단히 연결될 수 있습니다." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "래프트 인터페이스의 인필과 월 사이의 겹침 정도입니다. 약간의 겹침이 있을 경우 월이 인필에 보다 단단히 연결될 수 있습니다." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "래프트 표면의 인필과 월 사이의 겹침 정도(인필 라인 너비의 백분율)입니다. 약간의 겹침이 있을 경우 월이 인필에 보다 단단히 연결될 수 있습니다." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "래프트 표면의 인필과 월 사이의 겹침 정도입니다. 약간의 겹침이 있을 경우 월이 인필에 보다 단단히 연결될 수 있습니다." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "Z축 심에서 모델과 서포트 구조물 사이의 거리입니다." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "프라임 타워 셸의 최소 두께입니다. 이 값을 늘림으로써 프라임 타워의 강도를 높일 수 있습니다." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "이 각도보다 오버행이 더 큰 월에는 이음새가 생기지 않도록 해야 합니다. 값이 90이면 어떠한 월도 오버행잉으로 처리되지 않습니다." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "변경 없음" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "래프트 인터페이스의 첫 번째 레이어 인쇄 시, 해당 오프셋으로 변환하여 베이스와 인터페이스 사이의 접착력을 지정할 수 있습니다. 오프셋이 음수일 경우 접착력 향상을 기대할 수 있습니다." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "래프트 서피스의 첫 번째 레이어를 인쇄 시, 해당 오프셋으로 변환하여 인터페이스와 표면 사이의 접착력을 지정할 수 있습니다. 오프셋이 음수일 경우 접착력 향상을 기대할 수 있습니다." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "버텍스 상의 Z 심" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "위 스킨을 지지하기 위해 내부채움 패턴에 선을 추가로 더합니다. 이 옵션은 아래의 내부채움이 위에 출력되는 스킨 레이어를 제대로 지지하지 못해 복잡한 모양의 스킨에 구멍이나 플라스틱 방울이 생기는 것을 방지합니다. '벽'은 스킨의 윤곽선만 지지하는 반면 '벽 및 선'은 스킨을 이루는 선의 끝부분도 지지합니다." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "높이에서 팬 속도 설정" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "레이어에서 팬 속도 설정" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "빌드 볼륨 팬 번호" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "스카프 솔기를 따라 압출할 때 흐름 변화에서 각 단계의 길이를 결정합니다. 거리가 짧을수록 더 정밀하지만 G코드도 복잡해집니다." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Z 솔기를 덜 보이게 하는 솔기 유형인 스카프 솔기의 길이를 결정합니다. 0보다 커야 효과적입니다." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "점진적 흐름 변경에서 각 단계의 지속 시간" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소합니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "스킨을 지지하는 추가 내부채움 선" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "점진적 흐름 이산화 단계 크기" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "점진적 흐름 활성화됨" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "점진적 흐름 최대 가속" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "초기 레이어 최대 흐름 가속" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "점진적 흐름 변경에 대한 최대 가속" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "첫 번째 레이어의 점진적 흐름 변경에 대한 최소 속도" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "없음" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "외벽 가속" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "외벽 감속" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "외벽 종료 속도 비율" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "외벽 속도 분할 거리" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "외벽 시작 속도 비율" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "흐름 지속 시간 재설정" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "스카프 솔기 길이" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "스카프 솔기 시작 높이" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "스카프 솔기 단계 길이" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "일반 팬 속도에서 팬이 회전하는 높이입니다. 아래 레이어에서는 팬 속도가 초기 팬 속도에서 일반 팬 속도로 점차 증가합니다." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "빌드 팬이 최대 팬 속도로 회전하는 레이어입니다. 이 값은 계산되어 정수로 반올림됩니다." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "빌드 볼륨을 냉각하는 팬의 수입니다. 0으로 설정하면 빌드 볼륨 팬이 없는 것을 나타냅니다." + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "스카프 솔기가 시작되는 선택한 레이어 높이의 비율입니다. 숫자가 낮을수록 솔기 높이가 커집니다. 100보다 낮아야 효과적입니다." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "외벽을 출력할 때 최고 속도에 도달하는 가속도입니다." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "외벽 출력을 종료할 때의 감속도입니다." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "외벽 가속/감속을 적용하기 위해 긴 경로를 분할 때 압출 경로의 최대 길이입니다. 거리가 짧을수록 더 정밀해지지만 G코드도 복잡해집니다." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "외벽을 출력할 때 종료되는 최고 속도의 비율입니다." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "외벽을 출력할 때 시작되는 최고 속도의 비율입니다." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "벽만" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "벽 및 선" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "이 각도보다 더 돌출된 벽은 돌출 벽 설정을 사용하여 출력됩니다. 값이 90인 경우 벽은 돌출부로 간주하지 않습니다. 지지대가 지지하는 돌출부도 돌출부로 간주하지 않습니다. 또한 돌출부의 절반보다 짧은 선도 돌출부로 간주하지 않습니다." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "하단 표면 스킨 레이어에 선 또는 지그재그 패턴을 사용할 때 사용할 정수 라인 방향의 목록입니다. 목록의 요소는 레이어가 진행됨에 따라 순차적으로 사용되며, 목록의 끝에 도달하면 처음부터 다시 시작합니다. 목록 항목은 쉼표로 구분하며 전체 목록은 대괄호 안에 포함됩니다. 기본값은 빈 목록으로, 기존의 기본 각도(45도 및 135도)를 사용합니다." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "바닥 표면 내벽 가속도" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "바닥 표면 내벽 충격" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "바닥 표면 내벽 속도" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "바닥 표면 내벽 흐름" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "바닥 표면 외벽 가속도" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "바닥 표면 외벽 흐름" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "바닥 표면 외벽 충격" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "바닥 표면 외벽 속도" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "바닥 표면 스킨 가속" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "바닥 표면 스킨 압출기" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "바닥 표면 스킨 흐름" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "바닥 표면 스킨 충격" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "바닥 표면 스킨 레이어" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "바닥 표면 스킨 라인 방향" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "바닥 표면 스킨 라인 폭" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "바닥 표면 스킨 패턴" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "바닥 표면 스킨 속도" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "동심원" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "압출기" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "바깥쪽 벽선을 제외한 모든 벽선의 바닥 표면 벽선에서 흐름 보정." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "인쇄 하단의 영역에 있는 줄에서 흐름 보정." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "바닥 표면의 가장 바깥쪽 벽선에서 흐름 보정." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "그리핀+치타" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "내부 이동 거리 최소화" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "라인" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "오버행 시 최소 레이어 시간" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "최소 오버행 구간 길이" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "단조 바닥 표면 정렬" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "외벽 끝부분 감속" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "외벽 시작 부분 가속" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "오버행 벽 출력 속도" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "돌출된 벽은 정상 인쇄 속도의 일정 비율로 인쇄됩니다. 여러 값을 지정할 수 있으므로, 예를 들어 [75, 50, 25]를 설정하여 더 많은 돌출된 벽을 더 느리게 인쇄할 수 있습니다." + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "압력 상승 계수" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "인쇄 코어" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "인쇄 시에는 하단 표면의 선을 한 방향으로 인접한 선과 항상 겹치게 인쇄하세요. 인쇄하는 데 시간이 조금 더 걸리지만, 평평한 표면이 더 일관성 있게 보입니다." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "시작 GCode가 반드시 우선합니다" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "바닥 표면 스킨 레이어의 인쇄 속도가 빨라집니다." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "바닥 표면 내벽의 인쇄 속도가 빨라집니다." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "바닥 표면의 가장 바깥쪽 벽이 인쇄되는 속도." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "'한 번에 하나씩' 인쇄 시 '안전 모델 거리'를 결정하는 데 쓰이는 프린트 헤드의 제원입니다. 이 숫자들은 첫 번째 압출기 노즐의 중심선과 관련이 있습니다. 노즐의 왼쪽은 'X 최소'이고 음수여야 합니다. 노즐의 뒤쪽은 'Y 최소'이고 음수여야 합니다. X 최대(오른쪽)와 Y 최대(앞쪽)는 양수입니다. 갠트리 높이는 빌드 플레이트에서 X 갠트리 빔까지의 거리입니다." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "모델 내부에서 이동할 때 노즐과 이미 인쇄된 외벽 사이의 거리입니다." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "가장 아래쪽 스킨을 인쇄하는 데 사용되는 압출기 트레인입니다. 이것은 다중 압출에 사용됩니다." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "바닥 표면 스킨 레이어가 인쇄되는 최대 순간 속도 변화." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "바닥 표면 내벽이 인쇄되는 최대 순간 속도 변화." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "바닥 표면의 가장 바깥쪽 벽에 인쇄되는 최대 순간 속도 변화." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "겹쳐진 돌출부가 포함된 레이어에 소요되는 최소 시간입니다. 이 값은 프린터의 속도를 늦추고, 최소한 여기에 설정된 시간을 한 레이어에 사용하도록 합니다. 이렇게 하면 인쇄된 재료가 다음 레이어 인쇄 전 적절하게 냉각될 수 있습니다. 리프트 헤드가 비활성화되어 있고 최소 속도가 위반되는 경우, 레이어 시간은 여전히 최소 레이어 시간보다 짧을 수 있습니다." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "최하단에 있는 스킨 레이어 수입니다. 일반적으로 가장 아래에 있는 레이어 하나만으로 더 높은 품질의 바닥 표면을 생성할 수 있습니다." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "가장 아래 레이어의 패턴입니다." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "바닥 표면의 스킨 레이어가 인쇄되는 속도입니다." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "바닥 표면의 내벽이 인쇄되는 속도입니다." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "바닥 표면의 가장 바깥쪽 벽이 인쇄되는 속도입니다." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "이 설정은 시작 g-코드를 항상 첫 번째 g-코드로 강제 적용할지 여부를 제어합니다. 이 옵션이 없으면 T0과 같은 다른 g-코드를 시작 g-코드 앞에 삽입할 수 있습니다." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "압력 전진에 대한 조정 요소로, 이는 압출과 동작을 동기화하기 위한 것입니다." + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "오버행 레이어에 대한 최소 레이어 시간을 적용하고자 할 때, 해당 값보다 긴 오버행 돌출 이동이 연속적으로 하나 이상 있는 경우에만 적용됩니다." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "인쇄 하단 영역에 있는 한 줄의 너비." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "지그재그" diff --git a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po b/resources/i18n/ko_KR/gradual_flow_settings.def.json.po deleted file mode 100644 index dc35fb7caf..0000000000 --- a/resources/i18n/ko_KR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \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" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "점진적 흐름 활성화됨" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "점진적 흐름 변경을 활성화합니다. 활성화하면 흐름이 목표 흐름까지 점진적으로 증가/감소합니다. 이는 압출기 모터가 시작/정지될 때 흐름이 즉시 변경되지 않는 보우덴 튜브가 있는 프린터에 유용합니다." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "점진적 흐름 최대 가속" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "점진적 흐름 변경에 대한 최대 가속" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "초기 레이어 최대 흐름 가속" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "첫 번째 레이어의 점진적 흐름 변경에 대한 최소 속도" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "점진적 흐름 이산화 단계 크기" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "점진적 흐름 변경에서 각 단계의 지속 시간" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "흐름 지속 시간 재설정" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "이 값보다 긴 이동에 대해서는 재료 흐름이 경로 목표 흐름으로 재설정됩니다" diff --git a/resources/i18n/nl_NL/cura.po b/resources/i18n/nl_NL/cura.po index 3211663a19..40a3b90ed3 100644 --- a/resources/i18n/nl_NL/cura.po +++ b/resources/i18n/nl_NL/cura.po @@ -170,6 +170,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF-bestand" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF-lezer" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF-schrijver" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF-schrijverplug-in is beschadigd." @@ -245,6 +253,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF-bestand" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF-lezer" + msgctxt "@label" msgid "Abort" msgstr "Afbreken" @@ -281,6 +293,10 @@ msgctxt "@button" msgid "Accept" msgstr "Ja, ik ga akkoord" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." + msgctxt "@label" msgid "Account synced" msgstr "Account gesynchroniseerd" @@ -421,6 +437,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Verzenden van anonieme gegevens toestaan" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Altijd vragen" @@ -577,6 +597,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Back-up maken en herstellen van configuratie" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Een back-up maken van uw configuratie en deze herstellen." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Maak een back-up van uw materiaalinstellingen en plug-ins en synchroniseer deze" @@ -749,6 +773,14 @@ msgctxt "@label" msgid "Checking..." msgstr "Aan het controleren..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Controleert op firmware-updates." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." @@ -829,6 +861,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Gecomprimeerd G-code-bestand" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Lezer voor gecomprimeerde G-code" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Schrijver voor gecomprimeerde G-code" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Configuratiewijzigingen" @@ -901,6 +941,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Verbonden via Cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulteer de UltiMaker Community." @@ -1034,6 +1078,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Maak printprojecten aan in Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Uw back-up maken..." @@ -1046,10 +1094,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura-back-ups" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura-back-ups" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura-profiel" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura-profiellezer" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura-profielschrijver" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura-project 3MF-bestand" @@ -1079,6 +1139,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura-versie" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine-back-end" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Valuta:" @@ -1363,6 +1435,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Ingeschakeld" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." + msgctxt "@title:label" msgid "End G-code" msgstr "Eind G-code" @@ -1451,6 +1527,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Breid UltiMaker Cura uit met plug-ins en materiaalprofielen." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" + msgctxt "@label" msgid "Extruder" msgstr "Extruder" @@ -1599,6 +1679,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Firmware-update" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Firmware-updatecontrole" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Firmware-updater" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Kan de firmware niet bijwerken omdat de verbinding met de printer geen ondersteuning biedt voor het uitvoeren van een firmware-upgrade." @@ -1698,6 +1786,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code-bestand" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code-profiellezer" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code-lezer" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code-schrijver" + msgctxt "@label" msgid "G-code flavor" msgstr "Versie G-code" @@ -1846,6 +1946,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Raadpleeg de handleiding voor probleemoplossing bij printen via het netwerk als uw printer niet in de lijst wordt vermeld" +msgctxt "name" +msgid "Image Reader" +msgstr "Afbeeldinglezer" + msgctxt "@action:button" msgid "Import" msgstr "Importeren" @@ -2130,6 +2234,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Linkeraanzicht" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Lezer voor Profielen van oudere Cura-versies" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Laat ontwikkelaars weten dat er iets misgaat." @@ -2210,6 +2318,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Logboeken" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Verbinding met de printer is verbroken" @@ -2218,6 +2330,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Machine-instellingen" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Actie machine-instellingen" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Machines" @@ -2234,6 +2350,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot Printbestand" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot Printbestandschrijver" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter kon niet opslaan op het aangegeven pad." @@ -2290,6 +2410,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Beheer hier uw UltiMaker Cura-plug-ins en materiaalprofielen. Zorg ervoor dat uw plug-ins up-to-date blijven en maak regelmatig een back-up van uw instellingen." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Hiermee beheert u netwerkverbindingen naar UltiMaker-netwerkprinters." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabrikant" @@ -2302,6 +2430,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Marktplaats" +msgctxt "name" +msgid "Marketplace" +msgstr "Marktplaats" + msgctxt "@action:label" msgid "Material" msgstr "Materiaal" @@ -2318,6 +2450,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Materiaalkleur" +msgctxt "name" +msgid "Material Profiles" +msgstr "Materiaalprofielen" + msgctxt "@label" msgid "Material Type" msgstr "Type Materiaal" @@ -2362,6 +2498,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modus" +msgctxt "name" +msgid "Model Checker" +msgstr "Modelcontrole" + msgctxt "@info:title" msgid "Model Errors" msgstr "Modelfouten" @@ -2378,6 +2518,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Controleren" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Controlestadium" + msgctxt "@action:button" msgid "Monitor print" msgstr "Printen in de gaten houden" @@ -2819,6 +2963,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Instellingen per Model" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Gereedschap voor Instellingen per Model" + msgid "Perspective" msgstr "Perspectief" @@ -2944,6 +3092,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Nabewerking" +msgctxt "name" +msgid "Post Processing" +msgstr "Nabewerking" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in voor Nabewerking" @@ -2960,6 +3112,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Voorbereiden" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Stadium voorbereiden" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Voorbereiden..." @@ -2980,6 +3136,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Voorbeeld" +msgctxt "name" +msgid "Preview Stage" +msgstr "Voorbeeldstadium" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Primepijler" @@ -3224,6 +3384,106 @@ msgctxt "@label" msgid "Properties" msgstr "Eigenschappen" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Biedt machineacties voor het bijwerken van de firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Deze optie biedt een controlestadium in Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Biedt een normale, solide rasterweergave." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Deze optie biedt een voorbereidingsstadium in Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Deze optie biedt een voorbeeldstadium in Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Biedt ondersteuning voor het lezen van modelbestanden." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Biedt ondersteuning voor het schrijven van 3MF- en UCP-bestanden." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Biedt de Instellingen per Model." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Biedt de röntgenweergave." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Biedt voorbeeld van geslicete laaggegevens." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt version" @@ -3260,6 +3520,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Sluit %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." + msgctxt "@button" msgid "Recommended" msgstr "Aanbevolen" @@ -3312,6 +3576,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Verwisselbaar Station" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" + msgctxt "@action:button" msgid "Remove" msgstr "Verwijderen" @@ -3592,6 +3860,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "De materialen worden naar de printer verzonden" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentrylogger" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seriële-communicatiebibliotheek" @@ -3800,6 +4072,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Meld u aan op het UltiMaker-platform" +msgctxt "name" +msgid "Simulation View" +msgstr "Simulatieweergave" + msgctxt "@tooltip" msgid "Skin" msgstr "Huid" @@ -3828,6 +4104,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Automatisch slicen bij wijzigen van instellingen." +msgctxt "name" +msgid "Slice info" +msgstr "Slice-informatie" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Slicen mislukt" @@ -3844,6 +4124,10 @@ msgctxt "@label" msgid "Solid" msgstr "Massief" +msgctxt "name" +msgid "Solid View" +msgstr "Solide weergave" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Solide weergave" @@ -3938,6 +4222,10 @@ msgctxt "@label" msgid "Strength" msgstr "Kracht" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Materiaal is geëxporteerd naar %1" @@ -3982,6 +4270,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Supportblokkering" +msgctxt "name" +msgid "Support Eraser" +msgstr "Supportwisser" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Supportvulling" @@ -4499,6 +4791,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Geprobeerd een Cura-back-up te herstellen zonder correcte gegevens of metadata." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh-lezer" + msgctxt "@button" msgid "Troubleshooting" msgstr "Probleemoplossing" @@ -4519,10 +4815,22 @@ msgctxt "@label" msgid "Type" msgstr "Type" +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP-lezer" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP-schrijver" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB-printen" +msgctxt "name" +msgid "USB printing" +msgstr "USB-printen" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker-account" @@ -4539,6 +4847,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Format Package" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker-netwerkverbinding" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Geverifieerd UltiMaker-pakket" @@ -4547,6 +4859,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Geverifieerde UltiMaker-plug-in" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Acties UltiMaker-machines" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker printer" @@ -4559,6 +4875,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Kan het profiel niet toevoegen." @@ -4731,6 +5051,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Updaten..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Upgrades van configuraties van Cura 5.6 naar Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Aangepaste Firmware Uploaden" @@ -4767,6 +5195,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Waarde" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Versie-upgrade van 2.1 naar 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Versie-upgrade van 2.2 naar 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Versie-upgrade van 2.5 naar 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Versie-upgrade van 2.6 naar 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Versie-upgrade van 2.7 naar 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Versie-upgrade van 3.0 naar 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Versie-upgrade van 3.2 naar 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Versie-upgrade van 3.3 naar 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Versie-upgrade van 3.4 naar 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Versie-upgrade van 3.5 naar 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Versie-upgrade van 4.0 naar 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Versie-upgrade van 4.1 naar 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Versie-upgrade van 4.11 naar 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Versie-upgrade 4.13 naar 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Versie-upgrade van 4.2 naar 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Versie-upgrade van 4.3 naar 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Versie-upgrade van 4.4 naar 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Versie-upgrade van 4.5 naar 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Versie-upgrade van 4.6.2 naar 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Versie-upgrade van 4.7 naar 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Versie-upgrade van 4.8 naar 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Versie-upgrade 4.9 naar 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Versie-upgrade van 5.2 naar 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Versie-upgrade 5.3 naar 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Versie-upgrade 5.4 naar 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Versie-upgrade van 5.6 naar 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Printers weergeven in Digital Factory" @@ -4883,6 +5419,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Breedte (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Met deze optie schrijft u G-code naar een bestand." + msgctxt "@label" msgid "X (Width)" msgstr "X (Breedte)" @@ -4895,6 +5439,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgenweergave" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgenweergave" @@ -4907,6 +5455,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D-bestand" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D-lezer" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Diepte)" @@ -5053,554 +5605,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} plug-ins zijn niet gedownload" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Beheert netwerkverbindingen naar UltiMaker-netwerkprinters." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker-netwerkverbinding" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Biedt ondersteuning voor het importeren van profielen uit G-code-bestanden." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code-profiellezer" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Biedt een normale, solide rasterweergave." - -msgctxt "name" -msgid "Solid View" -msgstr "Solide weergave" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "CuraEngine-plugin voor het geleidelijk afvlakken van de flow om grote sprongen in de flow te beperken" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Biedt ondersteuning voor het lezen van 3MF-bestanden." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF-lezer" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Hiermee accepteert u G-code en verzendt u deze code naar een printer. Via de plug-in kan tevens de firmware worden bijgewerkt." - -msgctxt "name" -msgid "USB printing" -msgstr "USB-printen" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Controleert op firmware-updates." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Firmware-updatecontrole" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Beheert extensies voor de toepassing en staat browsingextensies toe van de UltiMaker-website." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marktplaats" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Een back-up maken van uw configuratie en deze herstellen." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura-back-ups" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Biedt een manier om de machine-instellingen (zoals bouwvolume, maat nozzle, enz.) te wijzigen." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Actie machine-instellingen" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.5 naar Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Versie-upgrade van 2.5 naar 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Versie-upgrade van 4.7 naar 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.4 naar Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Versie-upgrade van 4.4 naar 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.0 naar Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Versie-upgrade van 3.0 naar 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.11 naar Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Versie-upgrade van 4.11 naar 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.1 naar Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Versie-upgrade van 4.1 naar 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.6 naar Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Versie-upgrade van 2.6 naar 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.0 naar Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Versie-upgrade van 4.6.0 naar 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.3 naar Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Versie-upgrade van 3.3 naar 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.7 naar Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Versie-upgrade van 4.8 naar 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.5 naar Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Versie-upgrade van 4.5 naar 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.2 naar Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Versie-upgrade van 4.2 naar 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.2 naar Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Versie-upgrade van 3.2 naar 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.3 naar Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinatie niet aanbevolen. Laad BB-kern in sleuf 1 (links) voor meer betrouwbaarheid." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Versie-upgrade van 4.3 naar 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Upgrades van configuraties van Cura 5.6 naar Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Sketch Printfile" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Versie-upgrade van 5.6 naar 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Zoek printer" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.1 naar Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Dit is een Cura Universal-projectbestand. Wilt u het openen als Cura Universal Project of de modellen ervan importeren?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Versie-upgrade van 2.1 naar 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportpakket voor technische ondersteuning" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Werkt configuraties bij van Cura 5.3 naar Cura 5.4." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "De modelgegevens kunnen niet naar de motor worden verzonden. Probeer het opnieuw of neem contact op met ondersteuning." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Versie-upgrade 5.3 naar 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "De modelgegevens kunnen niet naar de motor worden verzonden. Probeer een minder gedetailleerd model te gebruiken of verminder het aantal instanties." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.9 naar Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Upgrades van configuraties van Cura 5.8 naar Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Versie-upgrade 4.9 naar 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.7 naar Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Versie-upgrade 5.8 naar 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Versie-upgrade van 2.7 naar 3.0" +msgid "3DConnexion mouses" +msgstr "3DConnexion muizen" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.5 naar Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Maakt werken met 3D-muizen mogelijk in Cura." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Versie-upgrade van 3.5 naar 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Duur extruderwissel" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 5.2 naar Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "Extruder Prestart G-code" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Versie-upgrade van 5.2 naar 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Y-as toolhandle model omkeren (herstarten vereist)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.0 naar Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Licentie voor %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Versie-upgrade van 4.0 naar 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ Printfile" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.13 naar Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Moet de Y-as van de translate toolhandle worden omgekeerd? Dit heeft alleen invloed op de Y-coördinaat van het model. Alle andere instellingen, zoals de printkopinstellingen van de machine, worden niet beïnvloed en gedragen zich als voorheen." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Versie-upgrade 4.13 naar 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 3.4 naar Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Versie-upgrade van 3.4 naar 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 2.2 naar Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "Start GCode moet eerst zijn" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Versie-upgrade van 2.2 naar 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Deze instelling is niet beschikbaar omdat er een mismatch of een ander probleem is met het core-type %1. Ga naar de supportpagina om te zien welke cores dit printertype ondersteunt wat betreft nieuwe slices." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Hiermee worden configuraties bijgewerkt van Cura 4.6.2 naar Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Werkt instellingen bij van Cura 5.9 naar Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Versie-upgrade van 4.6.2 naar 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Versie-upgrade 5.9 naar 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Werkt configuraties bij van Cura 5.4 naar Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Versie-upgrade 5.4 naar 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Hiermee kunt u G-code-bestanden laden en weergeven." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code-lezer" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y max ( '+' richting voorzijde)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Verzendt anonieme slice-informatie. Dit kan bij de voorkeuren worden uitgeschakeld." - -msgctxt "name" -msgid "Slice info" -msgstr "Slice-informatie" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Biedt hotplug- en schrijfondersteuning voor verwisselbare stations." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in voor Verwijderbaar Uitvoerapparaat" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Hiermee maakt u een wisraster om het printen van een supportstructuur op bepaalde plekken te blokkeren" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Supportwisser" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Via deze optie controleert u de modellen en de printconfiguratie op mogelijke printproblemen en ontvangt u suggesties." - -msgctxt "name" -msgid "Model Checker" -msgstr "Modelcontrole" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Deze optie biedt een voorbereidingsstadium in Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Stadium voorbereiden" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Biedt voorbeeld van geslicete laaggegevens." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simulatieweergave" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Biedt ondersteuning voor het lezen van AMF-bestanden." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF-lezer" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Biedt de röntgenweergave." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgenweergave" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Biedt machineacties voor het bijwerken van de firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Firmware-updater" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Biedt ondersteuning voor het importeren van profielen uit oudere Cura-versies." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Lezer voor Profielen van oudere Cura-versies" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Uitbreiding waarmee door de gebruiker gemaakte scripts voor nabewerking kunnen worden gebruikt" - -msgctxt "name" -msgid "Post Processing" -msgstr "Nabewerking" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Hiermee worden bepaalde gebeurtenissen geregistreerd, zodat deze door de crashrapportage kunnen worden gebruikt" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentrylogger" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Biedt ondersteuning voor het schrijven van MakerBot-formaatpakketten." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot Printbestandschrijver" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Biedt ondersteuning bij het importeren van Cura-profielen." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura-profiellezer" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het lezen van UltiMaker Format Packages." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP-lezer" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Hiermee wordt het genereren van printbare geometrie van 2D-afbeeldingsbestanden mogelijk." - -msgctxt "name" -msgid "Image Reader" -msgstr "Afbeeldinglezer" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Voorziet in de koppeling naar het slicing-back-end van de CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine-back-end" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Met deze optie schrijft u G-code naar een gecomprimeerd archief." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Schrijver voor gecomprimeerde G-code" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Biedt machineacties voor UltiMaker-machines (zoals wizard voor bedkalibratie, selecteren van upgrades, enz.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Acties UltiMaker-machines" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Hiermee leest u G-code uit een gecomprimeerd archief." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Lezer voor gecomprimeerde G-code" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Deze optie biedt een voorbeeldstadium in Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Voorbeeldstadium" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Maakt verbinding met de digitale bibliotheek, zodat Cura bestanden kan openen vanuit, en bestanden kan opslaan in, de digitale bibliotheek." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Biedt ondersteuning voor het exporteren van Cura-profielen." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura-profielschrijver" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Deze optie biedt ondersteuning voor het lezen van X3D-bestanden." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D-lezer" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Biedt ondersteuning voor het lezen van modelbestanden." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh-lezer" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Deze optie biedt een controlestadium in Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Controlestadium" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Biedt de Instellingen per Model." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Gereedschap voor Instellingen per Model" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Biedt mogelijkheden om materiaalprofielen op XML-basis te lezen en te schrijven." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Materiaalprofielen" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Biedt ondersteuning voor het schrijven van 3MF- en UCP-bestanden." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF-schrijver" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Deze optie biedt ondersteuning voor het schrijven van UltiMaker Format Packages." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP-schrijver" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Met deze optie schrijft u G-code naar een bestand." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code-schrijver" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y min ( '-' richting achterzijde)" diff --git a/resources/i18n/nl_NL/fdmextruder.def.json.po b/resources/i18n/nl_NL/fdmextruder.def.json.po index e157ab204d..8c81e52f9c 100644 --- a/resources/i18n/nl_NL/fdmextruder.def.json.po +++ b/resources/i18n/nl_NL/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Diameter" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extruder" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Printkoelventilator van extruder" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Eind-G-code van Extruder" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Eind-g-code die wordt uitgevoerd wanneer naar een andere extruder wordt gewisseld." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Duur einde G-Code extruder" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "De tijd die nodig is om de g-code aan het einde uit te voeren, wanneer er overgeschakeld wordt van deze extruder." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Absolute Eindpositie Extruder" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "X-eindpositie Extruder" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Y-eindpositie Extruder" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Z-positie voor Primen Extruder" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Printkoelventilator van extruder" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Start-G-code van Extruder" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Duur start G-Code extruder" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "De tijd die nodig is om de start g-code uit te voeren, wanneer er wordt overgeschakeld naar deze extruder." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Absolute Startpositie Extruder" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "X-startpositie Extruder" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Y-startpositie Extruder" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de eindpositie van de extruder de absolute eindpositie, in plaats van de relatieve eindpositie ten opzichte van de laatst bekende locatie van de printkop." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Maak van de startpositie van de extruder de absolute startpositie, in plaats van de relatieve startpositie ten opzichte van de laatst bekende locatie van de printkop." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozzle-ID" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "X-startpositie Extruder" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Y-startpositie Extruder" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X-Offset Nozzle" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "De X-coördinaat van de offset van de nozzle." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y-Offset Nozzle" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Start-g-code die wordt uitgevoerd wanneer naar deze extruder wordt gewisseld." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Het nummer van de bij deze extruder behorende printkoelventilator. Verander de standaardwaarde 0 alleen als u voor elke extruder een andere printkoelventilator hebt." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "De tijd die nodig is om de g-code aan het einde uit te voeren, wanneer er overgeschakeld wordt van deze extruder." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "De tijd die nodig is om de start g-code uit te voeren, wanneer er wordt overgeschakeld naar deze extruder." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "De X-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "De X-coördinaat van de offset van de nozzle." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "De X-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "De Y-coördinaat van de eindpositie wanneer de extruder wordt uitgeschakeld." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "De Y-coördinaat van de offset van de nozzle." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "De Y-coördinaat van de startpositie wanneer de extruder wordt ingeschakeld." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Lengte spuitmond" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Het hoogteverschil tussen de punt van de spuitmond en het laagste deel van de printkop." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Duur extruderwissel" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "Extruder Prestart G-Code" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "Prestart g-code die moet worden uitgevoerd voordat wordt overgeschakeld naar deze extruder." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Bij gebruik van een multitoolsetup is deze waarde de toolwisseltijd in seconden. Deze waarde wordt opgeteld bij de geschatte tijd op basis van het aantal wissels dat plaatsvindt." diff --git a/resources/i18n/nl_NL/fdmprinter.def.json.po b/resources/i18n/nl_NL/fdmprinter.def.json.po index e50fc3e031..c58599eda6 100644 --- a/resources/i18n/nl_NL/fdmprinter.def.json.po +++ b/resources/i18n/nl_NL/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Machine" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Zo genereer je de voorbereidingstoren:
    • Normaal: creëer een emmer waarin secundaire materialen worden voorbereid
    • Interleaved: creëer een zo minimaal mogelijke voorbereidingstoren. Dit bespaart tijd en filament, maar is alleen mogelijk als de gebruikte materialen aan elkaar hechten
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Instellingen van de machine" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Type Machine" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "De naam van uw 3D-printermodel." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Machinevarianten tonen" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Hiermee bepaalt u of verschillende varianten van deze machine worden getoond. Deze worden beschreven in afzonderlijke json-bestanden." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Start G-code" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Eind G-code" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "Materiaal-GUID" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Materiaaltype" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "Het type materiaal dat gebruikt wordt." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Materiaalmerk" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "Het merk van het materiaal dat gebruikt wordt." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diameter" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Wachten op verwarmen van platform" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Hiermee bepaalt u of de opdracht moet worden ingevoegd dat bij aanvang moet worden gewacht totdat het platform op temperatuur is." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Wachten op verwarmen van nozzle" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Hiermee bepaalt u of bij aanvang moet worden gewacht totdat de nozzle op temperatuur is." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Materiaaltemperatuur invoegen" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de nozzletemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de nozzletemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Platformtemperatuur invoegen" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de platformtemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de platformtemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Machinebreedte" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "De breedte (X-richting) van het printbare gebied." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Machinediepte" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "De diepte (Y-richting) van het printbare gebied." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Machinehoogte" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "De hoogte (Z-richting) van het printbare gebied." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Vorm van het platform" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "De vorm van het platform zonder rekening te houden met niet-printbare gebieden." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Rechthoekig" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Ovaal" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Materiaal van het platform" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Het materiaal van het platform dat in de printer geïnstalleerd is." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Glas" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Aluminium" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Heeft verwarmd platform" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Hiermee geeft u aan of een verwarmd platform aanwezig is." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Heeft temperatuurstabilisatie van werkvolume" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Of de machine in staat is de temperatuur van het werkvolume te stabiliseren." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Tool voor altijd actief schrijven" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Tool voor actief schrijven na het verzenden van tijdelijke opdrachten naar inactieve tool. Vereist voor afdrukken met dubbele extruder met Smoothie of andere firmware met modale toolopdrachten." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Is oorsprongpunt centraal" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Hiermee geeft u aan of de X/Y-coördinaten van de nul-positie van de printer zich in het midden van het printbare gebied bevinden." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Aantal extruders" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Aantal extruder trains. Een extruder train is de combinatie van een feeder, Bowden-buis en nozzle." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Aantal ingeschakelde extruders" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Het aantal extruder trains dat ingeschakeld is; automatisch ingesteld in de software" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Buitendiameter nozzle" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "De buitendiameter van de punt van de nozzle." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozzlelengte" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Het hoogteverschil tussen de punt van de nozzle en het laagste deel van de printkop." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozzlehoek" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "De hoek tussen het horizontale vlak en het conische gedeelte boven de punt van de nozzle." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Lengte verwarmingszone" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "De afstand tussen de punt van de nozzle waarin de warmte uit de nozzle wordt overgedragen aan het filament." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Regulering van de nozzletemperatuur inschakelen" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Hiermee geeft u aan of u de temperatuur wilt reguleren vanuit Cura. Schakel deze optie uit als u de nozzletemperatuur buiten Cura om wilt reguleren." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Verwarmingssnelheid" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "De snelheid (°C/s) waarmee de nozzle wordt verwarmd, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Afkoelsnelheid" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "De snelheid (°C/s) waarmee de nozzle afkoelt, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimale tijd stand-bytemperatuur" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "De minimale tijd die een extruder inactief moet zijn, voordat de nozzle wordt afgekoeld. Alleen als een extruder gedurende langer dan deze tijd niet wordt gebruikt, wordt deze afgekoeld naar de stand-bytemperatuur." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Versie G-code" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "De G-code-versie die moet worden gegenereerd." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetrisch)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Intrekken via firmware" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Hiermee bepaalt u of u voor het intrekken van materiaal firmwareopdrachten voor intrekken (G10/G11) gebruikt in plaats van de eigenschap E in G1-opdrachten." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extruders delen verwarming" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Hiermee bepaalt u of de extruders één verwarming delen in plaats van dat elke extruder zijn eigen verwarming heeft." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extruders delen nozzle" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Hiermee bepaalt u of de extruders één nozzle delen in plaats van dat elke extruder zijn eigen nozzle heeft. Wanneer dit wordt ingesteld op 'true', wordt verwacht dat het G-code-script voor het opstarten van de printer alle extruders correct instelt in een initiële intrekstatus die bekend is en onderling compatibel is (nul of één filament niet ingetrokken). In dat geval wordt de initiële intrekstatus per extruder beschreven door de parameter 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Initiële terugtrekking gedeelde nozzle" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Hoever het filament van elke extruder geacht wordt te zijn ingetrokken vanuit de gedeelde nozzle als het G-code-script voor het opstarten van de printer is uitgevoerd. De waarde mag niet gelijk zijn aan of groter zijn dan de lengte van het gemeenschappelijke deel van de kanalen in de nozzle." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Verboden gebieden" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Verboden gebieden voor de nozzle" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Een lijst polygonen met gebieden waarin de nozzle niet mag komen." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Machinekop- en ventilatorpolygoon" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "De vorm van de printkop. Deze coördinaten hebben betrekking op de positie van de printkop. Meestal is dit de positie van de eerste extruder. De dimensies links van en vóór de printkop moeten negatieve coördinaten zijn." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Rijbrughoogte" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozzle-ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozzlediameter" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Offset met extruder" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Absolute Positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maximale Snelheid X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "De maximale snelheid van de motor in de X-richting." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maximale Snelheid Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "De maximale snelheid van de motor in de Y-richting." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maximale Snelheid Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "De maximale snelheid van de motor in de Z-richting." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maximale Snelheid E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "De maximale snelheid voor de doorvoer van het filament." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maximale Acceleratie X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "De maximale acceleratie van de motor in de X-richting" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maximale Acceleratie Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "De maximale acceleratie van de motor in de Y-richting." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maximale Acceleratie Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "De maximale acceleratie van de motor in de Z-richting." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maximale Filamentacceleratie" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "De maximale acceleratie van de motor van het filament." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Standaardacceleratie" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "De standaardacceleratie van de printkopbeweging." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Standaard X-/Y-schok" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "De standaardschok voor beweging in het horizontale vlak." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Standaard Z-schok" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "De standaardschok voor de motor in de Z-richting." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Standaard Filamentschok" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "De standaardschok voor de motor voor het filament." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Stappen per millimeter (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de X-richting." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Stappen per millimeter (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Y-richting." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Stappen per millimeter (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Z-richting." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Stappen per millimeter (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X-eindstop in positieve richting" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Of de eindstop op de X-as zich in positieve (hoog X-coördinaat) of negatieve richting (laag X-coördinaat) bevindt." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y-eindstop in positieve richting" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Of de eindstop op de Y-as zich in positieve (hoog Y-coördinaat) of negatieve richting (laag Y-coördinaat) bevindt." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z-eindstop in positieve richting" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Of de eindstop op de Z-as zich in positieve (hoog Z-coördinaat) of negatieve richting (laag Z-coördinaat) bevindt." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimale Doorvoersnelheid" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "De minimale bewegingssnelheid van de printkop." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diameter van het feedertandwiel" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "De diameter van het tandwiel waarmee het materiaal in de feeder wordt gevoerd." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Zet de ventilatorsnelheid op 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Zet de ventilatorsnelheid op een waarde tussen 0 en 1 in plaats van tussen 0 en 256." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Kwaliteit" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Laaghoogte" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "De hoogte van elke laag in mm. Met hogere waarden print u sneller met een lagere resolutie, met lagere waarden print u langzamer met een hogere resolutie." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Hoogte Eerste Laag" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Lijnbreedte" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "De breedte van een enkele lijn. Over het algemeen dient de breedte van elke lijn overeen te komen met de breedte van de nozzle. Wanneer deze waarde echter iets wordt verlaagd, resulteert dit in betere prints." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Lijnbreedte Wand" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Breedte van een enkele wandlijn." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Lijnbreedte Buitenwand" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "De breedte van de buitenste lijn van de wand. Wanneer deze waarde wordt verlaagd, kan nauwkeuriger worden geprint." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Lijnbreedte Binnenwand(en)" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Breedte van een enkele wandlijn voor alle wandlijnen, behalve de buitenste." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Lijnbreedte Boven-/onderkant" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Breedte van een enkele lijn aan de boven-/onderkant." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Lijnbreedte Vulling" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Breedte van een enkele vullijn." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Lijnbreedte Skirt/Brim" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Breedte van een enkele skirt- of brimlijn." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Lijnbreedte Supportstructuur" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Breedte van een enkele lijn van de supportstructuur." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Lijnbreedte Verbindingsstructuur" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Breedte van een enkele lijn van het supportdak of de supportvloer." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Lijnbreedte supportdak" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Breedte van een enkele lijn van het supportdak." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Lijnbreedte supportvloer" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Breedte van een enkele lijn van de supportvloer." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Lijnbreedte Primepijler" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Breedte van een enkele lijn van de primepijler." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Lijnbreedte eerste laag" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Vermenigvuldiging van de lijnbreedte van de eerste laag. Door deze te verhogen kan de hechting aan het bed worden verbeterd." - -msgctxt "shell label" -msgid "Walls" -msgstr "Wanden" - -msgctxt "shell description" -msgid "Shell" -msgstr "Shell" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Wandextruder" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de wanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extruder buitenwand" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de buitenwand wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extruder binnenwand" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de binnenwanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Wanddikte" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "De dikte van de wanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Aantal Wandlijnen" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Het aantal wandlijnen. Wanneer deze waarde wordt berekend aan de hand van de wanddikte, wordt deze afgerond naar een geheel getal." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Lengte wandovergang" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Bij de overgang tussen verschillende aantallen wanden naarmate het onderdeel dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen voor het splitsen of samenvoegen van wandlijnen." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Aantal wanden voor distributie" - -msgctxt "wall_distribution_count description" -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 "Het aantal wanden, geteld vanaf het midden, waarover de variatie moet worden gespreid. Lagere waarden betekenen dat de breedte van de buitenwanden niet verandert." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Drempelhoek wandovergang" - -msgctxt "wall_transition_angle description" -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 "Wanneer u overgangen moet maken tussen even en oneven aantallen wanden. Een wigvorm met een hoek die groter is dan deze instelling, heeft geen overgangen. Er worden geen wanden geprint in het midden om de overblijvende ruimte te vullen. Door deze instelling kleiner te maken, reduceert u het aantal en de lengte van deze centrumwanden. Dit kan echter leiden tot openingen of een te hoge doorvoer." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Filterafstand wandovergang" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Filtermarge wandovergang" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Voorkom herhaaldelijke overgangen tussen een wand meer en een wand minder. Deze marge vergroot het aantal lijnbreedtes dat volgt op [minimumbreedte wandlijn - marge, 2 * minimumbreedte wandlijn + marge]. Door de marge te vergroten reduceert u het aantal overgangen, wat weer het aantal doorvoerstarts/-stops en de tijd van de beweging reduceert. Een grote variatie in lijnbreedtes kan echter wel leiden tot problemen met te geringe of te hoge extrusie." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Veegafstand buitenwand" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Afstand van een beweging die ingevoegd is na de buitenwand, om de Z-naad beter te maskeren." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Uitsparing Buitenwand" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Printvolgorde van wanden optimaliseren" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie. De eerste laag wordt niet geoptimaliseerd als u brim kiest als hechting aan platform." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Wandvolgorde" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Bepaalt de volgorde waarin de wanden worden geprint. Wanneer u de buitenwanden het eerst print, bevordert u de nauwkeurigheid van de afmetingen, omdat fouten in de binnenwanden niet worden overgedragen op de buitenzijde. Door ze later te printen kunt u echter beter stapelen wanneer de overhangs worden geprint. Bij een oneven aantal binnenwanden wordt de 'middelste laatste lijn' altijd als laatste afgedrukt." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "Van binnen naar buiten" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Van buiten naar binnen" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Afwisselend Extra Wand" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Print op afwisselende lagen een extra wand. Op deze manier wordt vulling tussen deze extra wanden gevangen, wat leidt tot sterkere prints." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimumbreedte wandlijn" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum lijnbreedte even wand" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "De minimum lijnbreedte voor normale polygonale wanden. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van één dunne wandlijn op het printen van twee wandlijnen. Een hogere Minimum lijnbreedte gelijkmatige wand leidt tot een hogere maximum lijnbreedte voor een ongelijkmatige wand. De maximum breedte bij een gelijkmatige wandlijn wordt berekend als Lijnbreedte buitenste wand + 0,5 * Minimum lijnbreedte voor een ongelijkmatige wand." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum breedte ongelijkmatige wandlijn" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "De minimum lijnbreedte voor opvuller voor ruimte middelste lijn bij muren met meerdere lijnen. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van twee wandlijnen naar het printen van twee buitenwanden en één centrale wand in het midden. Een hogere Minimum breedte ongelijkmatige wandlijn leidt naar een hogere maximale lijnbreedte bij een gelijkmatige wand. De maximale breedte ongelijkmatige wandlijn wordt berekend als 2 * Minimum breedte gelijkmatige wandlijn." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Dunne wanden printen" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum elementgrootte" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Minimumdikte van dunne elementen. Modelelementen die dunner zijn dan deze waarde worden niet geprint, terwijl elementen die dikker zijn dan de minimale elementgrootte worden verbreed tot de minimale wandlijnbreedte." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimumbreedte dunne wandlijn" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Breedte van de wand die dunne elementen van het model vervangt (volgens de minimum elementgrootte). Als de Minimumbreedte wandlijn dunner is dan de dikte van het element, wordt de wand even dik als het element zelf." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Horizontale Uitbreiding" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "De mate van offset die wordt toegepast op alle polygonen in elke laag. Met positieve waarden compenseert u te grote gaten, met negatieve waarden compenseert u te kleine gaten." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Eerste laag Horizontale uitbreiding" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "De mate van offset die wordt toegepast op alle polygonen in de eerste laag. Met negatieve waarden compenseert u het samenpersen van de eerste laag, ook wel 'olifantenpoot' genoemd." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Horizontale uitbreiding gaten" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Als de horizontale uitzetting van het gat groter is dan nul, is dit de hoeveelheid offset die op alle gaten in elke laag wordt toegepast. Positieve waarden vergroten de grootte van de gaten, negatieve waarden verkleinen de grootte van de gaten. Wanneer deze instelling is ingeschakeld, kan deze verder worden afgesteld met Maximum diameter horizontale uitzetting gaten." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Gat horizontale expansie max diameter" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Als dit groter is dan nul, wordt de horizontale gatexpansie geleidelijk toegepast op kleine gaten (kleine gaten worden meer uitgebreid). Indien ingesteld op nul, wordt de horizontale gatexpansie toegepast op alle gaten. Gaten groter dan de maximale diameter van de horizontale gatexpansie worden niet vergroot." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Uitlijning Z-naad" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Het startpunt voor elk pad in een laag. Wanneer paden in opeenvolgende lagen op hetzelfde punt beginnen, kan in de print een verticale naad zichtbaar zijn. De naad is het eenvoudigst te verwijderen wanneer deze zich nabij een door de gebruiker opgegeven locatie van de print bevindt. De onnauwkeurigheden vallen minder op wanneer het pad steeds op een willekeurige plek begint. De print is sneller af wanneer het kortste pad wordt gekozen." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Door de gebruiker opgegeven" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Kortste" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Willekeurig" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Scherpste hoek" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z-naadpositie" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "De positie nabij waar met het printen van elk deel van een laag moet worden begonnen." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Linksachter" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Achter" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Rechtsachter" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Rechts" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Rechtsvoor" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Voor" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Linksvoor" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Links" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z-naad X" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "De X-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z-naad Y" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "De Y-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Voorkeur van naad en hoek" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Instellen of hoeken in het model invloed hebben op de positie van de naad. Geen wil zeggen dat hoeken geen invloed hebben op de positie van de naad. Met Naad Verbergen is de kans groter dat de naad op een binnenhoek komt. Met Naad Zichtbaar Maken is de kans groter dat de naad op een buitenhoek komt. Met Naad Verbergen of Naad Zichtbaar Maken is de kans groter dat de naad op een binnen- of buitenhoek komt. Met Slim Verbergen zijn zowel binnen- als buitenhoeken mogelijk, maar wordt er vaker (indien van toepassing) gebruikgemaakt van binnenhoeken." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Geen" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Naad verbergen" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Naad zichtbaar maken" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Naad verbergen of zichtbaar maken" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Slim verbergen" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relatieve Z-naad" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Als deze optie ingeschakeld is, zijn de Z-naadcoördinaten relatief ten opzichte van het midden van elk deel. Als de optie uitgeschakeld is, staan de coördinaten voor een absolute positie op het platform." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Boven-/onderkant" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extruder bovenskin" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de bovenste skinlaag wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Bovenste skinlagen" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Het aantal bovenste skinlagen. Doorgaans is één bovenste skinlaag voldoende om oppervlakken van hogere kwaliteit te verkrijgen." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Lijnbreedte bovenskin" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Breedte van een enkele lijn aan de bovenkant van de print." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Patroon bovenskin" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Het patroon van de bovenste lagen." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotone volgorde bovenlaag" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Lijnrichting bovenskin" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de bovenste skinlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst is bereikt, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extruder Boven-/Onderkant" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de boven- en onderskin wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Dikte Boven-/Onderkant" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "De dikte van de boven-/onderlagen in de print. Het aantal boven-/onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Dikte Bovenkant" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "De dikte van de bovenlagen in de print. Het aantal bovenlagen wordt bepaald door het delen van deze waarde door de laaghoogte." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Bovenlagen" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Het aantal bovenlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bovenkant, wordt deze afgerond naar een geheel getal." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Bodemdikte" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "De dikte van de onderlagen in de print. Het aantal onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Bodemlagen" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Het aantal bodemlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Eerste onderste lagen" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Het aantal initiële onderste lagen, vanaf de bouwplaat naar boven. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Patroon Boven-/Onderkant" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Het patroon van de boven-/onderlagen." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Eerste laag patroon onderkant" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Het patroon van de eerste laag aan de onderkant van de print." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Boven-/onderkant Polygonen Verbinden" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotone volgorde van boven naar beneden" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Lijnrichtingen boven-/onderkant" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de boven-/onderlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Kleine breedte boven/onderzijde" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Kleine boven-/ondergebieden worden gevuld met muren in plaats van het standaard boven-/onderpatroon. Dit helpt om schokkerige bewegingen te voorkomen. Standaard uit voor de bovenste (aan lucht blootgestelde) laag (zie 'Kleine boven-/onderkant op oppervlak')." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Kleine bovenkant/onderkant op oppervlak" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Geen skin in Z-gaten" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Als het model kleine verticale gaten van slechts een paar lagen heeft, bevindt er zich doorgaans een skin rond die lagen in de kleine ruimte. Schakel deze instelling in om geen skin te genereren als de verticale tussenruimte erg klein is. Zo verloopt printen en slicen sneller, maar technisch nadeel is dat de vulling aan de lucht wordt blootgesteld." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Aantal Extra Wandlijnen Rond Skin" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Strijken inschakelen" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Nog een extra keer over de bovenlaag gaan, dit keer zonder veel materiaal te extruderen. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen. De kamerdruk in de nozzle wordt hoog gehouden zodat de spleten in het oppervlak met materiaal worden gevuld." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Alleen hoogste laag strijken" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Strijkpatroon" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotone strijkvolgorde" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Tussenruimte strijklijnen" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "De afstand tussen de strijklijnen." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Strijkdoorvoer" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "De hoeveelheid materiaal, in verhouding tot een normale skinlijn, die tijdens het strijken moet worden doorgevoerd. Als de nozzle gevuld blijft, kunnen scheuren in de bovenlaag worden gevuld. Te hoge doorvoer leidt echter tot uitstulpingen aan de zijkant van het oppervlak." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Uitsparing strijken" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Een rand rond een model kan een ander model raken op een plek waarvan u dat niet wilt. Dit verwijdert alle rand binnen deze afstand van modellen zonder rand." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "De afstand die moet worden aangehouden tot de randen van het model. Strijken tot de rand van het raster kan leiden tot een gerafelde rand van de print." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Strijksnelheid" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Een factor die aangeeft hoeveel het filament wordt samengedrukt tussen de feeder en de nozzlekamer, om te bepalen hoe ver het materiaal moet worden verplaatst voor het verwisselen van filament." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "De snelheid waarmee over de bovenste laag wordt bewogen." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de bovenste skinlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst is bereikt, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Strijkacceleratie" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt wanneer voor de boven-/onderlagen een lijn- of zigzagpatroon wordt gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden) worden gebruikt." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "De acceleratie tijdens het strijken." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoek van 0 graden wordt gebruikt." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Schok strijken" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Overlappercentage Skin" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan, als percentage van de lijnbreedtes van de skin-lijnen en de binnenste wand. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een percentage hoger dan 50%, omdat de nozzle van de skin-extruder op deze positie al voorbij het midden van de wand kan zijn." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Overlap Skin" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een waarde groter dan de halve wandbreedte, omdat de nozzle van de skin-extruder op deze positie het midden van de wand al kan hebben bereikt." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Verwijderingsbreedte skin" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "De grootste breedte van skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Verwijderingsbreedte bovenste skinlaag" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Verwijderingsbreedte onderste skinlaag" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "De grootste breedte van delen van de onderste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de onderste skinlaag op schuine vlakken in het model." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Uitbreidingsafstand van skin" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden van aangrenzende lagen beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Uitbreidingsafstand van bovenste skinlaag" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "De afstand waarmee de bovenste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden op de bovenliggende laag beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Uitbreidingsafstand van onderste skinlaag" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "De afstand waarmee de onderste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en de wanden van de onderliggende laag. Bij lagere waarden wordt er minder materiaal gebruikt." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Maximale skinhoek voor uitbreiding" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderskin niet uitgebreid. Hiermee wordt uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Bij een hoek van 0° (horizontaal) wordt er geen skin uitgebreid; bij een hoek van 90° (verticaal) wordt alle skin uitgebreid." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Minimale skinbreedte voor uitbreiding" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Skingebieden die smaller zijn dan deze waarde, worden niet uitgebreid. Dit voorkomt het uitbreiden van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft." - -msgctxt "infill label" -msgid "Infill" -msgstr "Vulling" - -msgctxt "infill description" -msgid "Infill" -msgstr "Vulling" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Vullingextruder" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "De extruder train die voor het printen van de vulling wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dichtheid Vulling" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Past de vuldichtheid van de print aan." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Lijnafstand Vulling" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "De afstand tussen de geprinte vullijnen. Deze instelling wordt berekend op basis van de dichtheid van de vulling en de lijnbreedte van de vulling." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Vulpatroon" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling doordat deze alleen het plafond van het object ondersteunt." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Raster" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-hexagonaal" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kubisch" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kubische onderverdeling" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octet" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Afgeknotte kubus" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Kruis" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Kruis 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Bliksem" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Vullijnen verbinden" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Vulpolygonen Verbinden" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Vulpaden verbinden waar ze naast elkaar lopen. Bij vulpatronen die uit meerdere gesloten polygonen bestaan, wordt met deze instelling de bewegingstijd aanzienlijk verkort." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Lijnrichting vulling" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de traditionele standaardhoeken (45 en 135 graden voor het lijn- en zigzagpatroon en 45 voor alle andere patronen) worden gebruikt." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Vulling X-offset" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Een lijst polygonen met gebieden waarin de nozzle niet mag komen." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de X-as." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Een lijst polygonen met gebieden waarin de printkop niet mag komen." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Vulling Y-offset" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Absolute Positie voor Primen Extruder" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Start willekeurig invullen" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Maximale variatie adaptieve lagen" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Bepaal willekeurig welke invullijn het eerst wordt geprint. Dit voorkomt dat één segment het sterkst wordt, maar gaat ten koste van een extra beweging." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Topografieformaat aanpasbare lagen" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Vermenigvuldiging Vullijn" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Stapgrootte variatie adaptieve lagen" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Zet elke vullijn om naar zoveel keer vullijnen. De extra lijnen kruisen elkaar niet, maar mijden elkaar. Hierdoor wordt de vulling stijver, maar duurt het printen langer en wordt er meer materiaal verbruikt." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Aantal Extra Wanden Rond vulling" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van het model." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Voeg extra wanden toe rondom de vulling. Deze wanden kunnen ervoor zorgen dat de skin aan de boven-/onderkant minder doorzakt. Dit betekent dat u met alleen wat extra materiaal voor dezelfde kwaliteit minder skinlagen aan de boven-/onderkant nodig hebt." "Deze optie kan in combinatie met de optie 'Polygonen voor de vulling verbinden' worden gebruikt om alle vulling in één doorvoerpad te verbinden zonder extra bewegingen of intrekkingen, mits correct ingesteld." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kubische onderverdeling shell" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Een aanvulling op de straal vanuit het midden van elk blok om de rand van het model te detecteren, om te bepalen of het blok moet worden onderverdeeld. Een hogere waarde leidt tot een dikkere shell voor kleine blokken bij de rand van het model." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Overlappercentage vulling" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "De mate van overlap tussen de vulling en de wanden als percentage van de lijnbreedte van de vulling. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Overlap Vulling" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "De mate van overlap tussen de vulling en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Veegafstand Vulling" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "De afstand voor een beweging die na het printen van elke vullijn wordt ingevoegd, om ervoor te zorgen dat de vulling beter aan de wanden hecht. Deze optie lijkt op de optie voor overlap van vulling. Tijdens deze beweging is er echter geen doorvoer en de beweging vindt maar aan één uiteinde van de vullijn plaats." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dikte Vullaag" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "De dikte per laag vulmateriaal. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Stappen Geleidelijke Vulling" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Het aantal keren dat de vuldichtheid wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid vulling." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Staphoogte Geleidelijke Vulling" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "De hoogte van de vulling van een opgegeven dichtheid voordat wordt overgeschakeld naar de helft van deze dichtheid." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Vulling vóór Wanden" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimumgebied vulling" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Genereer geen gebieden met vulling die kleiner zijn dan deze waarde (gebruik in plaats daarvan een skin)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Supportvulling" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Print alleen vulstructuren waarvan de bovenkant van het model moet worden ondersteund. Hiermee reduceert u de printtijd en het materiaalgebruik. Dit kan echter leiden tot een niet gelijkmatige objectsterkte." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Overhanghoek vulling" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "De minimale interne overhanghoek waarbij vulling wordt toegevoegd. Bij een waarde van 0° worden objecten volledig gevuld. Bij 90° wordt er geen vulling geprint." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Dikte skinrandondersteuning" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "De dikte van de extra vulling die skinranden ondersteunt." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Lagen skinrandondersteuning" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Het aantal opvullagen dat skinranden ondersteunt." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Hoek supportstructuur bliksemvulling" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Hoek overhang bliksemvulling" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Snoeihoek bliksemvulling" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Rechtbuighoek bliksemvulling" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." - -msgctxt "material label" -msgid "Material" -msgstr "Materiaal" - -msgctxt "material description" -msgid "Material" -msgstr "Materiaal" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Standaard printtemperatuur" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "De standaardtemperatuur waarmee wordt geprint. Dit moet overeenkomen met de basistemperatuur van een materiaal. Voor alle andere printtemperaturen moet een offset worden gebruikt die gebaseerd is op deze waarde" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatuur werkvolume" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "De omgevingstemperatuur waarin wordt geprint. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Printtemperatuur" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "De temperatuur waarmee wordt geprint." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Printtemperatuur van de eerste laag" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "De temperatuur die gebruikt wordt voor het printen van de eerste laag." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Starttemperatuur voor printen" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "De minimale temperatuur tijdens het opwarmen naar de printtemperatuur waarbij met printen kan worden begonnen." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Eindtemperatuur voor printen" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het printen wordt beëindigd." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Aanpassing Afkoelsnelheid Doorvoer" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "De extra snelheid waarmee de nozzle tijdens het doorvoeren afkoelt. Met dezelfde waarde wordt ook de verloren verwarmingssnelheid aangeduid wanneer tijdens het doorvoeren wordt verwarmd." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Standaardtemperatuur platform" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "De standaardtemperatuur die wordt gebruikt voor het verwarmde platform. Dit moet overeenkomen met de basistemperatuur van een platform. Voor alle andere printtemperaturen moet een offset worden gebruikt die is gebaseerd op deze waarde" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Platformtemperatuur" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "De temperatuur van het verwarmde platform. Als de temperatuur is ingesteld op 0, wordt het platform niet verwarmd." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Platformtemperatuur voor de eerste laag" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "De temperatuur van het verwarmde platform voor de eerste laag. Als de temperatuur 0 is, wordt het platform bij de eerste laag niet verwarmd." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Hechting" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Hechtingsgevoeligheid" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Hechtingsgevoeligheid van het oppervlak." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan, als percentage van de lijnbreedtes van de skin-lijnen en de binnenste wand. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een percentage hoger dan 50%, omdat de nozzle van de skin-extruder op deze positie al voorbij het midden van de wand kan zijn." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Oppervlakte-energie" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Pas de mate van overlap tussen de wanden en (de eindpunten van) de skin-middellijnen aan. Met een lichte overlap kunnen de wanden goed hechten aan de skin. Houd er rekening mee dat met een gelijke lijnbreedte voor skin en wand, skin buiten de wand kan treden bij een waarde groter dan de halve wandbreedte, omdat de nozzle van de skin-extruder op deze positie het midden van de wand al kan hebben bereikt." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Oppervlakte-energie." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Schaalfactor krimpcompensatie" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Het model wordt met deze factor geschaald ter compensatie van het krimpen van het materiaal tijdens het afkoelen." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Horizontale schaalfactor krimpcompensatie" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in de richting XY (horizontaal)." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Verticale schaalfactor krimpcompensatie" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in Z-richting (verticaal)." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristallijnmateriaal" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Intrekpositie voor niet-uitlopen" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Hoe ver het materiaal moet worden ingetrokken voordat het niet meer uitloopt." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Intreksnelheid voor niet-uitlopen" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Hoe snel het materiaal moet worden ingetrokken tijdens het wisselen van een filament om uitlopen te voorkomen." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Intrekpositie voor voorbereiding van afbreken" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Hoe ver het filament kan worden uitgerekt voordat het afbreekt, wanneer het wordt verwarmd." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Intreksnelheid voor voorbereiding van afbreken" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Hoe snel het filament moet worden ingetrokken voordat het bij het intrekken afbreekt." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatuur voor voorbereiding van afbreken" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "De temperatuur die wordt gebruikt om materiaal te zuiveren, moet ongeveer gelijk zijn aan de hoogst mogelijke printtemperatuur." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Intrekpositie voor afbreken" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Hoe ver het filament moet worden ingetrokken om het recht af te breken." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Intreksnelheid voor afbreken" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "De snelheid waarmee het filament wordt ingetrokken om het recht af te breken." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatuur voor afbreken" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "De temperatuur waarbij het filament wordt afgebroken om het recht af te breken." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Afvoersnelheid flush" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Hoe snel het materiaal moet worden geprimed na het overschakelen op een ander materiaal." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Afvoerduur flush" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het overschakelen op een ander materiaal." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Afvoersnelheid einde van filament" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Hoe snel het materiaal moet worden geprimed na het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Afvoerduur einde van filament" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maximale parkeerduur" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Hoe lang het materiaal veilig buiten een droge opslagplaats kan worden bewaard." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Verplaatsingsfactor zonder lading" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Een factor die aangeeft hoeveel het filament wordt samengedrukt tussen de feeder en de nozzlekamer, om te bepalen hoe ver het materiaal moet worden verplaatst voor het verwisselen van filament." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Doorvoer" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Wanddoorvoer" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Doorvoercompensatie op wandlijnen." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Buitenste wanddoorvoer" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Doorvoercompensatie op de buitenste wandlijn." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Doorvoer binnenwand(en)" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Stroom van de buitenste wand van het bovenoppervlak" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Doorvoer boven/onder" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Doorvoercompensatie op bovenste/onderste lijn." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Bovenste oppervlak skindoorvoer" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Doorvoercompensatie op lijnen van de gebieden bovenaan de print." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Doorvoer vulling" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Doorvoercompensatie op vullijnen." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Doorvoer skirt/brim" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Doorvoercompensatie op skirt- of brimlijnen." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Doorvoer support" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Doorvoercompensatie op de supportstructuurlijnen." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Doorvoer supportinterface" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Doorvoercompensatie op de lijnen van supportdak of de supportvloer." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Doorvoer supportdak" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Doorvoercompensatie op supportdaklijnen." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Doorvoer supportvloer" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Doorvoercompensatie op de supportvloerlijnen." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Doorvoer Primepijler" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Doorvoercompensatie op primepijlerlijnen." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Doorvoer eerste laag" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Doorvoercompensatie voor de eerste laag: de hoeveelheid materiaal die voor de eerste laag wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Initiële laag binnenwandstroom" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Stroomcompensatie op wandlijnen voor alle wandlijnen behalve de buitenste, maar alleen voor de eerste laag" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Initiële laag buitenwandstroom" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Stroomcompensatie op de buitenste wandlijn van de eerste laag." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Initiële laag onderste lijn" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Stroomcompensatie op de onderste lijnen van de eerste laag" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Stand-bytemperatuur" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "De temperatuur van de nozzle op de momenten waarop een andere nozzle wordt gebruikt voor het printen." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Is support materiaal" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." - -msgctxt "speed label" -msgid "Speed" -msgstr "Snelheid" - -msgctxt "speed description" -msgid "Speed" -msgstr "Snelheid" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Printsnelheid" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "De snelheid waarmee wordt geprint." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Vulsnelheid" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "De snelheid waarmee de vulling wordt geprint." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Wandsnelheid" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "De snelheid waarmee wanden worden geprint." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Snelheid Buitenwand" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "De snelheid waarmee de buitenwanden worden geprint. Als u de buitenwand langzamer print, verhoogt u de uiteindelijke kwaliteit van de skin. Een groot verschil tussen de printsnelheid van de binnenwand en de printsnelheid van de buitenwand kan echter een negatief effect hebben op de kwaliteit." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Snelheid Binnenwand" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Snelheid van de buitenste wand van het bovenoppervlak" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Snelheid van de binnenste wand van het bovenoppervlak" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Snelheid bovenskin" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "De snelheid waarmee bovenste skinlagen worden geprint." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Snelheid Boven-/Onderkant" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "De snelheid waarmee boven-/onderlagen worden geprint." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Snelheid Supportstructuur" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "De snelheid waarmee de supportstructuur wordt geprint. Als u de supportstructuur sneller print, kunt u de printtijd aanzienlijk verkorten. De kwaliteit van het oppervlak van de supportstructuur is niet belangrijk, aangezien deze na het printen wordt verwijderd." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Vulsnelheid Supportstructuur" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "De snelheid waarmee de supportvulling wordt geprint. Als u de vulling langzamer print, wordt de stabiliteit verbeterd." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Vulsnelheid Verbindingsstructuur" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "De snelheid waarmee de supportdaken en -vloeren worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Snelheid supportdak" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "De snelheid waarmee de supportdaken worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Snelheid supportvloer" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "De snelheid waarmee de supportvloer wordt geprint. Als u deze langzamer print, hecht het supportmateriaal beter aan de bovenzijde van het model." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Snelheid Primepijler" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "De snelheid waarmee de primepijler wordt geprint. Als u de primepijler langzamer print, wordt deze stabieler. Dit is zinvol wanneer de hechting tussen de verschillende filamenten niet optimaal is." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Bewegingssnelheid" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "De snelheid waarmee bewegingen plaatsvinden." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Snelheid Eerste Laag" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren. Heeft geen invloed op de hechtstructuren van het platform zelf, zoals brim en raft." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Printsnelheid Eerste Laag" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Bewegingssnelheid Eerste Laag" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "De snelheid van de bewegingen tijdens het printen van de eerste laag. Hiervoor wordt een lagere waarde aanbevolen om te voorkomen dat eerder geprinte delen van het platform worden getrokken. De waarde van deze instelling kan automatisch worden berekend uit de verhouding tussen de bewegingssnelheid en de printsnelheid." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt-/Brimsnelheid" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "De snelheid waarmee de skirt en de brim worden geprint. Normaal gebeurt dit met dezelfde snelheid als de snelheid van de eerste laag, maar in sommige situaties wilt u de skirt of de brim mogelijk met een andere snelheid printen." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Snelheid Z-sprong" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "De snelheid waarmee de verticale Z-beweging wordt gemaakt voor Z-sprongen. Dit is meestal lager dan de printsnelheid, omdat het platform of de rijbrug van de machine moeilijker te verplaatsen is." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Aantal Lagen met Lagere Printsnelheid" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "De eerste lagen worden minder snel geprint dan de rest van het model, om ervoor te zorgen dat dit zich beter hecht aan het platform en om de kans dat de print slaagt te vergroten. Tijdens het printen van deze lagen wordt de snelheid geleidelijk opgevoerd." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Verhouding voor afstemmen doorvoer" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Op doorvoerbreedte gebaseerde correctiefactor voor de snelheid. Op 0% wordt de bewegingssnelheid gelijk gehouden aan de printsnelheid. Op 100% wordt de bewegingssnelheid zo aangepast dat de stroom (in mm³/s) constant is, d.w.z. dat alle lijnen die half zo breed zijn als de normale lijnbreedte, tweemaal zo snel worden geprint en lijnen die twee maal zo breed zijn, half zo snel. Een waarde groter dan 100% kan de hogere druk compenseren die nodig is voor de extrusie van brede lijnen." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Acceleratieregulering Inschakelen" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Hiermee stelt u de printkopacceleratie in. Door het verhogen van de acceleratie wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Bewegingsacceleratie inschakelen" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Gebruik een aparte acceleratiesnelheid voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Printacceleratie" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "De acceleratie tijdens het printen." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Vulacceleratie" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "De acceleratie tijdens het printen van de vulling." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Wandacceleratie" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "De acceleratie tijdens het printen van de wanden." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Buitenwandacceleratie" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "De acceleratie tijdens het printen van de buitenste wanden." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Binnenwandacceleratie" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "De acceleratie tijdens het printen van alle binnenwanden." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Versnelling van de buitenste wand op bovenlaag" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Versnelling van de binnenwand op bovenlaag" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Acceleratie bovenskin" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "De acceleratie tijdens het printen van de bovenste skinlagen." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Acceleratie Boven-/Onderkant" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Acceleratie Supportstructuur" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "De acceleratie tijdens het printen van de supportstructuur." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Acceleratie Supportvulling" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "De acceleratie tijdens het printen van de supportvulling." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Acceleratie Verbindingsstructuur" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "De acceleratie tijdens het printen van de supportdaken en -vloeren. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Acceleratie supportdak" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "De acceleratie tijdens het printen van de supportdaken. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Acceleratie supportvloer" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "De acceleratie tijdens het printen van de supportvloeren. Als u deze met een lagere acceleratie print, hecht het supportmateriaal beter aan de bovenzijde van het model." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Acceleratie Primepijler" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "De acceleratie tijdens het printen van de primepijler." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Bewegingsacceleratie" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Acceleratie Eerste Laag" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "De acceleratie voor de eerste laag." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Printacceleratie Eerste Laag" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "De acceleratie tijdens het printen van de eerste laag." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Bewegingsacceleratie Eerste Laag" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Acceleratie Skirt/Brim" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "De acceleratie tijdens het printen van de skirt en de brim. Normaal gebeurt dit met dezelfde acceleratie als die van de eerste laag, maar in sommige situaties wilt u de skirt of de brim wellicht met een andere acceleratie printen." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Schokregulering Inschakelen" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Hiermee stelt u de schok van de printkop in wanneer de snelheid in de X- of Y-as verandert. Door het verhogen van de schok wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Bewegingsschok inschakelen" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Gebruik een apart schokpercentage voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de schokwaarde van de geprinte lijn op de bestemming." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Printschok" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Vulschok" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de vulling." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Wandschok" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de wanden." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Schok Buitenwand" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de buitenwanden." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Schok Binnenwand" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Schok van de binnenste muur van het bovenoppervlak" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Schok van de buitenste muur van het bovenoppervlak" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Schok bovenskin" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de bovenste skinlagen." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Schok Boven-/Onderkant" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de boven-/onderlagen." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Schok Supportstructuur" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportstructuur." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Schok Supportvulling" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvulling." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Schok Verbindingsstructuur" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken en -vloeren." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Schok supportdak" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Schok supportvloer" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvloeren." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Schok Primepijler" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de primepijler." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Bewegingsschok" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Schok Eerste Laag" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Printschok Eerste Laag" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de eerste laag." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Bewegingsschok Eerste Laag" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Schok Skirt/Brim" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de skirt en de brim." - -msgctxt "travel label" -msgid "Travel" -msgstr "Beweging" - -msgctxt "travel description" -msgid "travel" -msgstr "beweging" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Intrekken Inschakelen" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Intrekken bij laagwisseling" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Trek het filament in wanneer de nozzle naar de volgende laag beweegt." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Intrekafstand" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Intreksnelheid" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken en geprimed." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Intreksnelheid (Intrekken)" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Intreksnelheid (Primen)" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt geprimed." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Extra Primehoeveelheid na Intrekken" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Tijdens een beweging kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimale Afstand voor Intrekken" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "De minimale bewegingsafstand voordat het filament kan worden ingetrokken. Hiermee vermindert u het aantal intrekkingen in een klein gebied." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maximaal Aantal Intrekbewegingen" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimaal Afstandsgebied voor Intrekken" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Dit is het gebied waarop het maximaal aantal intrekbewegingen van toepassing is. Deze waarde moet ongeveer overeenkomen met de Intrekafstand, waarmee in feite het aantal intrekbewegingen op hetzelfde deel van het materiaal wordt beperkt." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Combing-modus" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen of combing alleen binnen de vulling te gebruiken." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Uit" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Alles" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Niet op buitenzijde" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Niet in skin" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Binnen Vulling" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Max. combing-afstand zonder intrekken" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Intrekken voor buitenwand" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Altijd intrekken voordat wordt bewogen om met een buitenwand te beginnen." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Geprinte delen mijden tijdens bewegingen" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Tijdens bewegingen mijdt de nozzle delen die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Supportstructuren mijden tijdens bewegingen" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Tijdens bewegingen mijdt de nozzle supportstructuren die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Mijdafstand Tijdens Bewegingen" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "De afstand tussen de nozzle en geprinte delen wanneer deze tijdens bewegingen worden gemeden." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Begin laag X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "De X-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Begin laag Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "De Y-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Z-sprong wanneer ingetrokken" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Tijdens het intrekken wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Z-sprong Alleen over Geprinte Delen" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Voer alleen een Z-sprong uit bij bewegingen over geprinte delen die niet kunnen worden vermeden met Geprinte Delen Mijden Tijdens Bewegingen." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Hoogte Z-sprong" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Z-sprong na Wisselen Extruder" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Nadat de machine van de ene extruder naar de andere is gewisseld, wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle doorgevoerd materiaal achterlaat op de buitenzijde van een print." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Hoogte Z-sprong na wisselen extruder" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong na wisselen extruder." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Koelen" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Koelen" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Koelen van de Print Inschakelen" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Hiermee schakelt u de printkoelventilatoren in tijdens het printen. De ventilatoren verbeteren de printkwaliteit van lagen met een korte laagtijd en brugvorming/overhang." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Ventilatorsnelheid" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "De snelheid waarmee de printventilatoren draaien." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Normale Ventilatorsnelheid" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "De snelheid waarmee de ventilatoren draaien voordat de drempelwaarde wordt bereikt. Wanneer een laag sneller wordt geprint dan de drempelwaarde, wordt de ventilatorsnelheid geleidelijk verhoogd tot de maximale ventilatorsnelheid." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maximale Ventilatorsnelheid" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "De snelheid waarmee de ventilatoren draaien bij de minimale laagtijd. Wanneer de drempelwaarde wordt bereikt, wordt de ventilatorsnelheid geleidelijk verhoogd van de normale ventilatorsnelheid naar de maximale ventilatorsnelheid." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "De laagtijd waarmee de drempelwaarde tussen de normale ventilatorsnelheid en de maximale ventilatorsnelheid wordt ingesteld. Voor lagen die langzamer worden geprint, draaien de ventilatoren op normale snelheid. Bij lagen die sneller worden geprint, draaien de ventilatoren op maximale snelheid." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Startsnelheid ventilator" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "De snelheid waarmee de ventilatoren draaien bij de start van het printen. Tijdens het printen van de volgende lagen wordt de ventilatorsnelheid geleidelijk verhoogd tot de laag waarin de snelheid overeenkomt met de normale ventilatorsnelheid op hoogte." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Normale Ventilatorsnelheid op Hoogte" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "De hoogte waarop de ventilatoren op normale snelheid draaien. Tijdens het printen van de onderliggende lagen wordt de ventilatorsnelheid geleidelijk verhoogd van de startsnelheid ventilator naar de normale ventilatorsnelheid." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Normale Ventilatorsnelheid op Laag" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "De laag waarop de ventilatoren op normale snelheid draaien. Als de normale ventilatorsnelheid op hoogte ingeschakeld is, wordt deze waarde berekend en op een geheel getal afgerond." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimale Laagtijd" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "De tijd die minimaal aan het printen van een laag wordt besteed. Hierdoor wordt de printer gedwongen langzamer te printen zodat deze ten minste de ingestelde tijd gebruikt voor het printen van een laag. Hierdoor kan het geprinte materiaal voldoende afkoelen voordat de volgende laag wordt geprint. Het printen van lagen kan nog steeds minder lang duren dan de minimale laagtijd als Printkop optillen is uitgeschakeld en als anders niet zou worden voldaan aan de Minimumsnelheid." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimumsnelheid" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "De minimale printsnelheid die wordt aangehouden ondanks vertragen vanwege de minimale laagtijd. Als de printer te zeer vertraagt, wordt de druk in de nozzle te laag, wat leidt tot slechte printkwaliteit." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Printkop Optillen" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Wanneer de minimale snelheid wordt bereikt vanwege de minimale laagtijd, wordt de printkop van de print verwijderd totdat de minimale laagtijd bereikt is." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Printtemperatuur van de kleine laag" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Verlaag geleidelijk naar deze temperatuur bij het printen met lagere snelheden vanwege de minimale laagtijd." - -msgctxt "support label" -msgid "Support" -msgstr "Supportstructuur" - -msgctxt "support description" -msgid "Support" -msgstr "Supportstructuur" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Support genereren" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extruder Supportstructuur" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extruder Supportvulling" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extruder Eerste Laag van Support" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extruder Verbindingsstructuur" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de daken en vloeren van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extruder supportdak" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportdaken. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extruder supportvloer" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de supportvloeren. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Supportstructuur" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creëert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creëert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normaal" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Boom" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maximale vertakkingshoek" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "De maximale hoek van de takken terwijl ze rond het model groeien. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek om meer bereik te hebben." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Takdiameter" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Hiermee stelt u de diameter in van de dunste takken van de boomsupportstructuur. Dikkere takken zijn steviger. Takken die dichter bij de stam liggen, zijn dikker dan dit." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Stamdiameter" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "De diameter van de breedste takken van de boomondersteuning. Een dikkere tak is steviger; een dunnere tak neemt minder ruimte in beslag op het platform." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Hoek takdiameter" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "De hoek van de diameter van de takken terwijl ze naar beneden toe geleidelijk dikker worden. Met de hoekinstelling 0 zijn de takken over de gehele lengte even dik. Een kleine hoek verbetert de stabiliteit van de boomsupportstructuur." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Plaatsing Supportstructuur" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Platform Aanraken" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Overal" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Geprefereerde vertakkingshoek" - -msgctxt "support_tree_angle_slow description" -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 "De geprefereerde hoek van de takken, wanneer ze het model niet hoeven te vermijden. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek voor takken om sneller samen te voegen." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Diameterverhoging naar model" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "De diameter van een tak die moet aansluiten op het model mag maximaal toenemen door samen te voegen met takken die de bouwplaat zouden kunnen bereiken. Als u dit verhoogt, wordt de printtijd verkort, maar wordt het ondersteuningsgebied dat op het model rust vergroot" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Minimale hoogte tot model" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Hoe groot moet een tak zijn als deze op het model wordt geplaatst. Voorkomt kleine ondersteunende blobs. Deze instelling wordt genegeerd wanneer een tak een ondersteunend dak ondersteunt." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diameter beginlaag" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diameter elke tak probeert te bereiken bij het bereiken van de bouwplaat. Verbetert de hechting van het bed." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Takdichtheid" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Hiermee past u de dichtheid aan van de ondersteunende structuur die wordt gebruikt om de tips van de takken te genereren. Een hogere waarde resulteert in een betere overhang, maar de ondersteuning is moeilijker te verwijderen. Gebruik ondersteunend dak voor zeer hoge waarden of zorg ervoor dat de ondersteuningsdichtheid aan de bovenkant even hoog is." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Puntdiameter" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "De diameter van de bovenkant van de punt van de takken van de boomsteun." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Takbereik beperken" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimaal vertakkingsbereik" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Een aanbeveling over hoe ver takken kunnen bewegen van de punten die ze ondersteunen. Takken kunnen deze waarde overschrijden om hun bestemming te bereiken (bouwplaat of een plat deel van het model). Als u deze waarde verlaagt, wordt de ondersteuning steviger, maar neemt het aantal takken toe (en daardoor materiaalgebruik/printtijd)." - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Plaatsings voorkeur" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "De voorkeursplaats van de ondersteunende structuren. Als structuren niet op de gewenste locatie kunnen worden geplaatst, worden ze elders geplaatst, zelfs als dat betekent dat ze op het model moeten worden geplaatst." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Op bouwplaat indien mogelijk" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Op model indien nodig" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Overhanghoek Supportstructuur" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "De minimale overhanghoek waarbij een supportstructuur wordt toegevoegd. Bij een waarde van 0° wordt elke overhang ondersteund. Bij 90° wordt er geen supportstructuur geprint." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Patroon Supportstructuur" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Het patroon van de supportstructuur van de print. Met de verschillende beschikbare opties print u stevige of eenvoudig te verwijderen supportstructuren." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Raster" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Kruis" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroïde" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Aantal wandlijnen supportstructuur" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Ondersteuning Interface Wandlijn" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Aantal wandlijnen ondersteuningsdak" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee het ondersteuningsinterfacedak kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Aantal wandlijnen van de ondersteuningsbodem" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Supportstructuurlijnen verbinden" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Verbind de uiteinden van de supportstructuurlijnen met elkaar. Als u deze instelling inschakelt, maakt u de supportstructuur robuuster en vermindert u onderextrusie. Er wordt echter meer materiaal verbruikt." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Zigzaglijnen Supportstructuur Verbinden" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Verbind de zigzaglijnen. Hiermee versterkt u de zigzag-supportstructuur." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Dichtheid Supportstructuur" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Past de dichtheid van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Lijnafstand Supportstructuur" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Lijnafstand Supportstructuur Eerste Laag" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Afstand tussen de lijnen van de supportstructuur voor de eerste laag. Deze wordt berekend op basis van de dichtheid van de supportstructuur." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Lijnrichting Vulling Supportstructuur" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoek van 0 graden wordt gebruikt." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Supportbrim inschakelen" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Genereer een brim binnen de supportvulgebieden van de eerste laag. Deze brim wordt niet rondom maar onder de supportstructuur geprint. Als u deze instelling inschakelt, hecht de supportstructuur beter aan het platform." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Breedte supportbrim" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Aantal supportbrimlijnen" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijnen zorgen voor betere hechting aan het platform, maar kosten wat extra materiaal." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Z-afstand Supportstructuur" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Afstand van de boven-/onderkant van de ondersteuningsstructuur tot de print. Deze opening zorgt voor ruimte om de ondersteuningen te verwijderen nadat het model is geprint. De bovenste ondersteuningslaag onder het model kan een fractie zijn van de normale lagen." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Afstand van Bovenkant Supportstructuur" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "De afstand van de bovenkant van de supportstructuur tot de print." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Afstand van Onderkant Supportstructuur" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Afstand van de print tot de onderkant van de ondersteuning. Let op dat dit wordt afgerond naar de volgende laaghoogte." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "X-/Y-afstand Supportstructuur" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Afstand tussen de supportstructuur en de print, in de X- en Y-richting." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioriteit Afstand Supportstructuur" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Hiermee bepaalt u of de optie X-/Y-afstand supportstructuur voorrang krijgt boven de optie Z-afstand supportstructuur of vice versa. Wanneer X/Y voorrang krijgt boven Z, kan de X-/Y-afstand de supportstructuur wegduwen van het model, waardoor de daadwerkelijke Z-afstand tot de overhang wordt beïnvloed. Dit kan worden uitgeschakeld door de X-/Y-afstand niet toe te passen rond een overhang." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y krijgt voorrang boven Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z krijgt voorrang boven X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimale X-/Y-afstand Supportstructuur" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Afstand tussen de supportstructuur en de overhang in de X- en Y-richting." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Hoogte Traptreden Supportstructuur" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "De hoogte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden. Stel deze waarde in op nul om het trapvormige gedrag uit te schakelen." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Maximale breedte traptreden supportstructuur" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "De maximale breedte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Minimale hellingshoek traptreden supportstructuur" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "De minimale helling van het gebied voordat traptreden van kracht worden. Lage waarden zouden het gemakkelijker moeten maken om support op ondieperere hellingen te verwijderen. Zeer lage waarden kunnen echter resulteren in een aantal zeer contra-intuïtieve resultaten op andere delen van het model." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Samenvoegafstand Supportstructuur" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "De maximale afstand tussen de supportstructuren in de X- en Y-richting. Wanneer afzonderlijke structuren dichter bij elkaar staan dan deze waarde, worden deze samengevoegd tot één structuur." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Horizontale Uitzetting Supportstructuur" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "De mate van offset die wordt toegepast op alle steunpolygonen in elke laag. Met positieve waarden kunt u de draagvlakken effenen en krijgt u een stevigere supportstructuur." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Dikte vullaag supportvulling" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "De dikte per laag materiaal supportvulling. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Geleidelijke supportvulling traptreden" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Het aantal keren dat de dichtheid van de supportvulling wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid supportvulling." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Geleidelijke supportvulling hoogte traptreden" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de dichtheid wordt gehalveerd." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimumgebied supportstructuur" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Minimumgebied voor steunpolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Verbindingsstructuur Inschakelen" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Hiermee maakt u een dichte verbindingsstructuur tussen het model en de supportstructuur. Er wordt een skin gemaakt aan de bovenkant van de supportstructuur waarop het model wordt geprint en op de bodem van de supportstructuur waar dit op het model rust." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Supportdak inschakelen" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Genereer een dichte materiaallaag tussen de bovenzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Supportvloer inschakelen" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Genereer een dichte materiaallaag tussen de onderzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Dikte Verbindingsstructuur" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "De dikte van de verbindingsstructuur waar dit het model aan de onder- of bovenkant raakt." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Dikte Supportdak" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "De dikte van de supportdaken. Hiermee wordt het aantal dichte lagen bepaald aan de bovenkant van de supportstructuur waarop het model rust." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Dikte supportvloer" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Dichtheid Verbindingsstructuur" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Past de vuldichtheid van de print aan." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Past de dichtheid van de daken en vloeren van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Dichtheid supportdak" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Hiermee past u de dichtheid aan van de ondersteunende structuur die wordt gebruikt om de tips van de takken te genereren. Een hogere waarde resulteert in een betere overhang, maar de ondersteuning is moeilijker te verwijderen. Gebruik ondersteunend dak voor zeer hoge waarden of zorg ervoor dat de ondersteuningsdichtheid aan de bovenkant even hoog is." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "De dichtheid van de daken van de supportstructuur. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Past de dichtheid van de supportstructuur aan. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Lijnafstand supportdak" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Bepaalt de diameter van het gebruikte filament. Pas deze waarde aan de diameter van het gebruikte filament aan." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "De afstand tussen de geprinte lijnen van het supportdak. Deze instelling wordt berekend op basis van de dichtheid van het supportdak, maar kan onafhankelijk worden aangepast." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Dichtheid supportvloer" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "De dichtheid van de vloeren van de supportstructuur. Met een hogere waarde hecht het supportmateriaal beter aan de bovenzijde van het model." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Lijnafstand supportvloer" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "De afstand tussen de geprinte lijnen van de supportvloer. Deze instelling wordt berekend op basis van de dichtheid van de supportvloer, maar kan onafhankelijk worden aangepast." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Patroon Verbindingsstructuur" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Het patroon waarmee de verbindingsstructuur van het model wordt geprint." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Raster" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Patroon supportdak" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Het patroon waarmee de daken van de supportstructuur worden geprint." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Raster" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Patroon supportvloer" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Het patroon waarmee de vloeren van de supportstructuur worden geprint." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Lijnen" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Raster" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Driehoeken" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concentrisch" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zigzag" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimumgebied verbindingsstructuur" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimumgebied supportdak" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Minimumgebied voor de supportdaken. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimumgebied supportvloer" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Supportstructuur horizontale uitbreiding" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "De mate van offset die wordt toegepast op de verbindingspolygonen." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Supportdak horizontale uitbreiding" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "De mate van offset die wordt toegepast op de supportdaken." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Supportvloer horizontale uitbreiding" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "De mate van offset die wordt toegepast op de supportvloeren." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Ondersteuning Interface Prioriteit" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Hoe ondersteuningsinterface en ondersteuning op elkaar inwerken wanneer ze elkaar overlappen. Momenteel alleen geïmplementeerd voor ondersteunend dak." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Geprefereerde ondersteuning" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Geprefereerde interface" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Geprefereerde ondersteuningslijnen" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Geprefereerde interfacelijnen" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Beide overlappen" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Lijnrichting interface supportstructuur" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Lijnrichting supportdak" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Lijnrichting supportvloer" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Een lijst met gehele getallen voor lijnrichtingen die moet worden gebruikt. Elementen uit de lijst worden tijdens het printen van de lagen opeenvolgend gebruikt. Wanneer het einde van de lijst bereikt is, wordt deze weer van voren af aan gestart. De lijstitems zijn gescheiden door komma's en de hele lijst is binnen vierkante haken geplaatst. Standaard wordt een lege lijst gebruikt, wat inhoudt dat de standaardhoeken (variërend tussen 45 en 135 graden als interfaces vrij dik of 90 graden zijn) worden gebruikt." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Ventilatorsnelheid Overschrijven" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Wanneer deze optie ingeschakeld is, wordt de ventilatorsnelheid voor het koelen van de print gewijzigd voor de skinregio's direct boven de supportstructuur." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Ondersteunde Ventilatorsnelheid Skin" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Percentage van de ventilatorsnelheid dat tijdens het printen van skinregio's direct boven de supportstructuur moet worden gebruikt. Bij gebruikmaking van een hoge ventilatorsnelheid kan de supportstructuur gemakkelijker worden verwijderd." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Pijlers Gebruiken" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Gebruik speciale pijlers om delen met minimale overhang te ondersteunen. Deze pijlers hebben een grotere diameter dan het deel dat ze ondersteunen. Bij de overhang neemt de diameter van de pijlers af en vormen ze een dak." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Pijlerdiameter" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "De diameter van een speciale pijler." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Maximale pijler-ondersteunde diameter" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "De maximale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Hoek van Pijlerdak" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "De hoek van een dak van een pijler. Een hogere waarde zorgt voor een spits pijlerdak, een lagere waarde zorgt voor een plat pijlerdak." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Supportraster verlagen" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Maak overal onder het supportraster support zodat er in het supportraster geen overhang is." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Scène heeft supportrasters" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Hechting aan Platform" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Hechting" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Primeblob inschakelen" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "X-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Y-positie voor Primen Extruder" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Type Hechting aan Platform" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Er zijn verschillende opties die u helpen zowel de voorbereiding van de doorvoer als de hechting aan het platform te verbeteren. Met de optie Brim legt u in de eerste laag extra materiaal rondom de voet van het model om vervorming te voorkomen. Met de optie Raft legt u een dik raster met een dak onder het model. Met de optie Skirt print u rond het model een lijn die niet met het model is verbonden." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Geen" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extruder Hechting aan Platform" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim/raft. Deze optie wordt gebruikt in meervoudige doorvoer." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extruder Skirt/Brim" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim. Deze optie wordt gebruikt bij meervoudige doorvoer." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft basisextruder" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft middelste extruder" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de middelste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft bovenste extruder" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "De extruder train die wordt gebruikt voor het printen van de bovenste laag/lagen van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Aantal Skirtlijnen" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Met meerdere skirtlijnen kunt u de doorvoer beter voorbereiden voor kleine modellen. Met de waarde 0 wordt de skirt uitgeschakeld." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Hoogte Skirt" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Het printen van de binnenste skirt-lijn met meerdere lagen maakt het gemakkelijk om de skirt te verwijderen." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirtafstand" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print." -"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimale Skirt-/Brimlengte" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "De minimale lengte van de skirt of de brim. Als deze minimumlengte niet wordt bereikt met het totale aantal skirt- of brimlijnen, worden er meer skirt- of brimlijnen toegevoegd totdat de minimale lengte is bereikt. Opmerking: als het aantal lijnen is ingesteld op 0, wordt dit genegeerd." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Breedte Brim" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Een bredere brim hecht beter aan het platform, maar verkleint uw effectieve printgebied." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Aantal Brimlijnen" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Het aantal lijnen dat voor een brim wordt gebruikt. Meer lijnen zorgen voor betere hechting aan het platform, maar verkleinen uw effectieve printgebied." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Brimafstand" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "De horizontale afstand tussen de eerste brimlijn en de contour van de eerste laag van de print. Door een kleine tussenruimte is de brim gemakkelijker te verwijderen terwijl de thermische voordelen behouden blijven." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim vervangt supportstructuur" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Locatie rand" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Print een rand aan de buitenkant van het model, aan de binnenkant of aan beide kanten. Afhankelijk van het model helpt dit om de hoeveelheid rand die u achteraf moet verwijderen te verminderen, terwijl het voor een goede hechting aan het bed zorgt." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Alleen buitenkant" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Alleen binnenkant" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Overal" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Marge voor vermijden van rand" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Een rand rond een model kan een ander model raken op een plek waarvan u dat niet wilt. Dit verwijdert alle rand binnen deze afstand van modellen zonder rand." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Slimme Brim" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Verwissel de printvolgorde van de binnenste en de op een na binnenste randlijn. Dit verbetert het verwijderen van de rand." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Extra Marge Raft" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Extra marge voor vlot op de basis" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Als het vlot op de basis is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Extra marge voor vlot in het midden" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Als het vlot in het midden is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Extra marge voor vlot aan bovenkant" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Als het vlot aan de bovenkant is ingeschakeld, is dit het extra vlotebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Binnenhoeken raft verwijderen" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Binnenhoeken van basis van vlot verwijderen" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Verwijder de binnenhoeken van de basis van het vlot, waardoor het vlot bol wordt." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Binnenhoeken van vlot in het midden verwijderen" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Verwijder de binnenhoeken van het middelste deel van het vlot, waardoor het vlot bol wordt." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Binnenhoeken van vlot aan de bovenkant verwijderen" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Verwijder de binnenhoeken van het bovenste deel van het vlot, waardoor het vlot bol wordt." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft effenen" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Vlotbasis gladmaken" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het basisvlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Midden van vlot gladmaken" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het midden van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Bovenkant van vlot gladmaken" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van de bovenkant van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Luchtruimte Raft" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "De ruimte tussen de laatste laag van de raft en de eerste laag van het model. Alleen de eerste laag wordt met deze waarde verhoogd om de binding tussen de raftlaag en het model te verminderen. Hierdoor is het eenvoudiger om de raft te verwijderen." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z Overlap Eerste Laag" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor het filament dat verloren gaat in de luchtspleet. Alle modellen boven de eerste modellaag zullen met deze hoeveelheid naar beneden worden verschoven.\nHet kan voorkomen dat de tweede laag onder de eerste laag wordt afgedrukt door deze instelling. Dit gedrag is zo bedoeld." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Dikte Grondvlak Raft" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Lijnbreedte Grondvlak Raft" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Tussenruimte Lijnen Grondvlak Raft" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft middelste lagen" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Het aantal lagen tussen de basis en het oppervlak van de raft. Deze omvatten de het grootste deel van de dikte van de raft. Uitbreiden hiervan creëert een dikkere, stevigere raft." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Lijndikte Midden Raft" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "De laagdikte van de middelste laag van de raft." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Lijnbreedte Midden Raft" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Breedte van de lijnen in de middelste laag van de raft. Als u voor de tweede laag meer materiaal gebruikt, hechten de lijnen beter aan het platform." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Tussenruimte Midden Raft" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Bovenlagen Raft" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Dikte Bovenlaag Raft" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Laagdikte van de bovenste lagen van de raft." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Breedte Bovenste Lijn Raft" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Bovenruimte Raft" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Monotone volgorde van het bovenste oppervlak van het vlot" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Print de lijnen van het bovenste oppervlak van het vlot in een volgorde die ervoor zorgt dat ze altijd overlappen met aangrenzende lijnen in één richting. Dit kost iets meer tijd om te printen, maar het oppervlak ziet er consistenter uit, wat ook zichtbaar is op de onderkant van het model." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Aantal vlotwanden" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon van het vlot." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Aantal wanden grondvlak raft" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Aantal middenwanden vlot" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de middelste lagen van het vlot." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Aantal bovenwanden vlot" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de bovenste lagen van het vlot." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Printsnelheid Raft" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "De snelheid waarmee de raft wordt geprint." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Printsnelheid Grondvlak Raft" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Printsnelheid Midden Raft" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Printsnelheid Bovenkant Raft" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Printacceleratie Raft" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "De acceleratie tijdens het printen van de raft." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Printacceleratie Grondvlak Raft" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Printacceleratie Midden Raft" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Printacceleratie Bovenkant Raft" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "De acceleratie tijdens het printen van de toplagen van de raft." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Printschok Raft" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "De schok tijdens het printen van de raft." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Printschok Grondvlak Raft" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "De schok tijdens het printen van het grondvlak van de raft." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Printschok Midden Raft" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "De schok tijdens het printen van de middelste laag van de raft." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Printschok Bovenkant Raft" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "De schok tijdens het printen van de toplagen van de raft." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Ventilatorsnelheid Raft" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "De ventilatorsnelheid tijdens het printen van de raft." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Ventilatorsnelheid Grondlaag Raft" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Ventilatorsnelheid Midden Raft" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Ventilatorsnelheid Bovenkant Raft" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dubbele Doorvoer" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Primepijler Inschakelen" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Type voorbereidingstoren" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "Zo genereer je de voorbereidingstoren:
    • Normaal: creëer een emmer waarin secundaire materialen worden voorbereid
    • Interleaved: creëer een zo minimaal mogelijke voorbereidingstoren. Dit bespaart tijd en filament, maar is alleen mogelijk als de gebruikte materialen aan elkaar hechten
    " - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normaal" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Interleaved" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Formaat Primepijler" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "De breedte van de primepijler." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Minimumvolume primepijler" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Maximale overbruggingsafstand voorbereidingstoren" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "De maximale lengte van de takken die via de lucht mogen worden geprint." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X-positie Primepijler" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "De X-coördinaat van de positie van de primepijler." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y-positie Primepijler" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "De Y-coördinaat van de positie van de primepijler." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Inactieve nozzle vegen op primepijler" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Veeg na het printen van de primepijler met één nozzle het doorgevoerde materiaal van de andere nozzle af aan de primepijler." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Basis van de Primepijler" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Nadat de machine van de ene extruder naar de andere is gewisseld, wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle doorgevoerd materiaal achterlaat op de buitenzijde van een print." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Grootte van de basis van de Primepijler" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "De breedte van de brim/basis van de prime toren. Een grotere basis verbetert de hechting aan het bouwplateau, maar vermindert ook het effectieve printgebied." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Hoogte van de basis van de Primepijler" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "De hoogte van de basis van de prime toren. Het verhogen van deze waarde resulteert in een stevigere prime toren omdat de basis breder zal zijn. Als deze instelling te laag is, zal de prime toren geen stevige basis hebben." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Basis hellingshoek van de Prime Toren" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "De groottefactor die gebruikt wordt voor de helling van de basis van de prime toren. Als u deze waarde verhoogt, wordt de basis slanker. Als u het verlaagt, wordt de basis dikker." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Lijnafstand van het vlot van de Primepijler" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "De afstand tussen de vlotlijnen voor de unieke vlotlaag van de Prime Tower. Een brede afstand maakt het eenvoudig om het vlot van de bouwplaat te verwijderen." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Uitloopscherm Inschakelen" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Hoek Uitloopscherm" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "De maximale hoek voor een deel van het uitloopscherm. Hierbij is 0 graden verticaal en 90 graden horizontaal. Een kleinere hoek leidt tot minder mislukte uitloopschermen, maar zorgt ervoor dat er meer materiaal wordt gebruikt." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Afstand Uitloopscherm" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "De afstand tussen het uitloopscherm en de print, in de X- en Y-richting." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Intrekafstand bij Wisselen Nozzles" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "De intrekafstand wanneer de extruders worden gewisseld. Als u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Intreksnelheid bij Wisselen Nozzles" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "De snelheid waarmee het filament wordt ingetrokken. Een hogere intreksnelheid werkt beter, maar bij een erg hoge intreksnelheid kan het filament gaan haperen." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Intrekkingssnelheid bij Wisselen Nozzles" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging tijdens het wisselen van de nozzles wordt ingetrokken." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Primesnelheid bij Wisselen Nozzles" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging na het wisselen van de nozzles wordt geprimed." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Extra primehoeveelheid na wisselen van nozzle" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Extra primemateriaal na het wisselen van de nozzle." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Modelcorrecties" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Maak de rasters beter geschikt voor 3D-printen." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Overlappende Volumes Samenvoegen" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Alle Gaten Verwijderen" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Verwijder de gaten in elke laag en behoudt u alleen de buitenvorm. Hiermee negeert u eventuele onzichtbare interne geometrie. U negeert echter ook gaten in lagen die u van boven- of onderaf kunt zien." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Uitgebreid Hechten" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster gehecht doordat het gat wordt gedicht met polygonen die elkaar raken. Deze optie kan de verwerkingstijd aanzienlijk verlengen." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Onderbroken Oppervlakken Behouden" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normaal probeert Cura kleine gaten in het raster te hechten en delen van een laag met grote gaten te verwijderen. Als u deze optie inschakelt, behoudt u de delen die niet kunnen worden gehecht. Deze optie kan als laatste redmiddel worden gebruikt als er geen andere manier meer is om correcte G-code te genereren." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Samengevoegde rasters overlappen" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Laat rasters die elkaar raken deels met elkaar overlappen. Hierdoor hechten ze beter aan elkaar." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Rastersnijpunt verwijderen" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Verwijderen van afwisselend raster" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Schakel naar de rastersnijpuntvolumes die bij elke laag horen, zodat de overlappende rasters worden verweven. Als u deze instelling uitschakelt, krijgt een van de rasters al het volume in de overlap, terwijl dit uit de andere rasters wordt verwijderd." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Lege eerste lagen verwijderen" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maximale resolutie" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Het minimale formaat van een lijnsegment na het slicen. Als u deze waarde verhoogt, wordt het model met een lagere resolutie geprint. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden en wordt de slicesnelheid verhoogd doordat details van het raster worden verwijderd die niet kunnen worden verwerkt." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maximale bewegingsresolutie" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Het minimale formaat van een bewegingslijnsegment na het slicen. Als u deze waarde verhoogt, hebben de bewegingen minder vloeiende hoeken. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden, maar kan het model door vermijding minder nauwkeurig worden." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maximale afwijking" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "De maximaal toegestane afwijking tijdens het verlagen van de resolutie voor de instelling Maximale resolutie. Als u deze waarde verhoogt, wordt de print minder nauwkeurig, maar wordt de G-code kleiner. Maximale afwijking is een limiet voor Maximale resolutie, dus als de twee tegenstrijdig zijn, wordt de Maximale afwijking altijd aangehouden." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maximale afwijking doorvoergebied" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "De maximaal toegestane afwijking van het doorvoergebied bij het verwijderen van tussenliggende punten van een rechte lijn. Een tussenliggend punt kan dienen als breedte-veranderend punt in een lange rechte lijn. Verwijdering van het punt leidt er dus toe dat de lijn een uniforme breedte krijgt en als gevolg daarvan een stuk van het doorvoergebied verliest (of wint). Als u deze waarde verhoogt, merkt u mogelijk een lichte onder- (of over-)doorvoer op tussen rechte parallele wanden, omdat er meer tussenliggende punten kunnen worden verwijderd die de breedte wijzigen. Uw print zal minder accuraat zijn, maar de g-code is kleiner." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Vloeiende beweging inschakelen" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Vloeiende beweging verschuivingsafstand" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Vloeiende beweging kleine afstand" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Hoek vloeiende beweging" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Als een baansegment meer dan deze hoek afwijkt van de algemene beweging, wordt hij afgevlakt." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Speciale Modi" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Niet-traditionele manieren om uw modellen te printen." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Printvolgorde" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Hiermee bepaalt u of alle modellen laag voor laag moeten worden geprint of dat eerst het ene model helemaal klaar moet zijn voordat aan het volgende wordt begonnen. Eén voor één printen is mogelijk als a) slechts één extruder is ingeschakeld en b) alle modellen zodanig zijn gescheiden dat de hele printkop ertussen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X/Y-assen." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Alles" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Alles Tegelijk" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Eén voor Eén" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Handmatig afdrukvolgorde instellen" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Alle instellingen die invloed hebben op de resolutie van de print. Deze instellingen hebben een grote invloed op de kwaliteit (en printtijd)." msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Hiermee kunt u de objectlijst ordenen om de printvolgorde handmatig in te stellen. Het eerste object in de lijst wordt als eerste geprint." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Vulraster" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Afwisselend Extra Wand" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Gebruik dit raster om de vulling aan te passen van andere rasters waarmee dit raster overlapt. Met deze optie vervangt u vulgebieden van andere rasters met gebieden van dit raster. Het wordt aangeraden voor dit raster slechts één wand en geen boven-/onderskin te printen." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Rasterverwerkingsrang" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Bepaalt de prioriteit van dit raster bij meerdere overlappende vulrasters. Gebieden met meerdere overlappende vulrasters krijgen de instellingen van het vulraster met de hoogste rang. Bij een vulraster met een hogere rang wordt de vulling van vulrasters met een lagere rang en normale rasters aangepast." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Snijdend raster" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Matrijs" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Print modellen als matrijs, die vervolgens kan worden gegoten om een model te krijgen dat lijkt op de modellen op het platform." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimale matrijsbreedte" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Dakhoogte matrijs" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale delen in het model." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Matrijshoek" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "De hoek van de overhang van de buitenwanden die voor de matrijs worden gemaakt. Met 0° is de buitenshell van de matrijs verticaal, terwijl met 90° de buitenzijde van de matrijs de contouren van het model volgt." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Supportstructuur raster" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Gebruik dit raster om steunvlakken op te geven. Deze functie kan worden gebruikt om supportstructuur te genereren." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Raster tegen overhang" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Gebruik dit raster om op te geven waar geen enkel deel van het model mag worden gedetecteerd als overhang. Deze functie kan worden gebruikt om ongewenste supportstructuur te verwijderen." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Oppervlaktemodus" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Behandel het model alleen als oppervlak, volume of volumen met losse oppervlakken. In de normale printmodus worden alleen omsloten volumen geprint. Met de optie 'Oppervlak' wordt een enkele wand geprint waarbij het rasteroppervlak wordt gevolgd zonder vulling en zonder boven-/onderskin. Met de optie 'Beide' worden omsloten volumen normaal geprint en eventuele resterende polygonen als oppervlakken." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normaal" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Oppervlak" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Beide" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Buitencontour Spiraliseren" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Met spiraliseren wordt de Z-beweging van de buitenrand vloeiender. Hierdoor ontstaat een geleidelijke Z-verhoging over de hele print. Met deze functie maakt u van een massief model een enkelwandige print met een solide bodem. Deze functie dient alleen te worden ingeschakeld wanneer elke laag uit een enkel deel bestaat." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Gespiraliseerde contouren effenen" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Maak de gespiraliseerde contouren vlak om de zichtbaarheid van de Z-naad te verminderen (de Z-naad mag in de print nauwelijks zichtbaar zijn, maar is nog wel zichtbaar in de laagweergave). Houd er rekening mee dat fijne oppervlaktedetails worden vervaagd door het effenen." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Relatieve Extrusie" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Gebruik relatieve extrusie in plaats van absolute extrusie. Bij het gebruik van relatieve E-steps wordt het nabewerken van G-code gemakkelijker. Deze optie wordt echter niet door alle printers ondersteund en kan lichte afwijkingen veroorzaken in de hoeveelheid afgezet materiaal ten opzichte van absolute E-steps. Ongeacht deze instelling wordt de extrusiemodus altijd ingesteld op absoluut voordat er een G-code-script wordt uitgevoerd." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimenteel" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Functies die nog niet volledig zijn uitgewerkt." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Slicetolerantie" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Verticale tolerantie in de gesneden lagen. De contouren van een laag kunnen worden normaal gesproken gegenereerd door dwarsdoorsneden te nemen door het midden van de dikte van de laag (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele dikte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Inclusief worden de meeste details behouden, met Exclusief verkrijgt u de beste pasvorm en met Midden behoudt u het originele oppervlak het meest." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Midden" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusief" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusief" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Bewegingsoptimalisatie vulling" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Wanneer deze optie is ingeschakeld, wordt de volgorde geoptimaliseerd waarin de vullijnen worden geprint om de afgelegde beweging te reduceren. De reductie in bewegingstijd die wordt bereikt, is in hoge mate afhankelijk van het model dat wordt geslicet, het vulpatroon, de dichtheid enz. Houd er rekening mee dat de slicetijd voor modellen met veel kleine vulgebieden aanzienlijk kan worden verlengd." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Grafiek Doorvoertemperatuur" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimale Polygoonomtrek" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Polygonen in geslicete lagen, die een kleinere omtrek hebben dan deze waarde, worden eruit gefilterd. Bij lagere waarden krijgt het raster een hogere resolutie, waardoor het slicen langer duurt. Dit is voornamelijk bedoeld voor SLA-printers met een hoge resolutie en zeer kleine 3D-modellen die veel details bevatten." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Genereer in elkaar grijpende structuur" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn geprint." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Breedte in elkaar grijpende balk" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "De breedte van de in elkaar grijpende structuurbalken." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "In elkaar grijpende structuuroriëntatie" - -msgctxt "interlocking_orientation description" -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 "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Aantal in elkaar grijpende balklagen" - -msgctxt "interlocking_beam_layer_count description" -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 "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "In elkaar grijpende diepte" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "In elkaar grijpende grensvermijding" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Supportstructuur in Stukken Breken" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Sla enkele verbindingen tussen lijnen van de supportstructuur over zodat deze gemakkelijker kan worden weggebroken. Deze instelling is van toepassing op het zigzag-vulpatroon van de supportstructuur." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Grootte Supportstuk" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Sla elke N millimeter een verbinding tussen de lijnen van de supportstructuur over, zodat deze gemakkelijker kan worden weggebroken." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Aantal Lijnen Supportstuk" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden weggebroken." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Tochtscherm Inschakelen" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Maak een wand rond het model. Deze vangt (warme) lucht en biedt bescherming tegen externe luchtbewegingen. De optie is met name geschikt voor materialen die snel kromtrekken." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Tochtscherm X-/Y-afstand" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "De afstand tussen het tochtscherm en de print, in de X- en Y-richting." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Beperking Tochtscherm" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Volledig" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Beperkt" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Hoogte Tochtscherm" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Stel een hoogtebeperking in voor het tochtscherm. Boven deze hoogte wordt er geen tochtscherm geprint." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Overhang Printbaar Maken" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Verander de geometrie van het geprinte model dusdanig dat minimale support is vereist. Een steile overhang wordt een vlakke overhang. Overhangende gedeelten worden verlaagd zodat deze meer verticaal komen te staan." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maximale Modelhoek" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "De maximale hoek van een overhang nadat deze printbaar is gemaakt. Bij een hoek van 0° worden alle overhangende gedeelten vervangen door een deel van het model dat is verbonden met het platform; bij een hoek van 90° wordt het model niet gewijzigd." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maximale overhang oppervlak gat" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Het maximale oppervlak van een gat in de basis van het model voordat het wordt verwijderd om de overhang printbaar te maken. Gaten die kleiner zijn dan dit oppervlak worden behouden. Bij een waarde van 0 mm² worden alle gaten in de basis van het model gevuld." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Coasting Inschakelen" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Met coasting wordt het laatste gedeelte van een doorvoerpad vervangen door een beweging. Het doorgevoerde materiaal wordt gebruikt om het laatste gedeelte van het doorvoerpad te printen, om draadvorming te verminderen." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Coasting-volume" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Minimaal Volume vóór Coasting" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Het kleinste volume dat een doorvoerpad moet hebben, voordat coasting mogelijk is. Voor een kort doorvoerpad wordt in de Bowden-buis minder druk opgebouwd en wordt het uitgespreide volume daarom lineair geschaald. Deze waarde moet altijd groter zijn dan de waarde voor het coasting-volume." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Coasting-snelheid" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "De snelheid waarmee de printkop tijdens coasting beweegt ten opzichte van de snelheid voor het doorvoerpad. Hiervoor wordt een waarde van iets minder dan 100% aangeraden, omdat de druk in de bowden-buis zakt tijdens een coasting-beweging." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Luchtbelgrootte bij Kruis 3D" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "De grootte van luchtbellen op kruispunten in het kruis 3D-patroon op punten waar het patroon zichzelf raakt." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Dichtheid kruisvulling afbeelding" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de vulling van de print bepalen." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de supportstructuur bepalen." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Conische supportstructuur inschakelen" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Maak draagvlakken aan de onderkant kleiner dan bij de overhang." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Hoek Conische Supportstructuur" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "De hoek van de schuine kant van de conische supportstructuur, waarbij 0 graden verticaal en 90 horizontaal is. Met een kleinere hoek is de supportstructuur steviger, maar bestaat deze uit meer materiaal. Met een negatieve hoek is het grondvlak van de supportstructuur breder dan de top." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Minimale Breedte Conische Supportstructuur" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Minimale breedte waarmee het grondvlak van het kegelvormige supportgebied wordt verkleind. Een geringe breedte kan leiden tot een instabiele supportstructuur." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Rafelig Oppervlak" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Door willekeurig trillen tijdens het printen van de buitenwand wordt het oppervlak hiervan ruw en ongelijk." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Alleen rafelig oppervlak buitenkant" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Trillen alleen voor de contouren van de onderdelen en niet voor de gaten van de onderdelen." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Dikte Rafelig Oppervlak" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "De breedte van de trilling. Het wordt aangeraden hiervoor een waarde in te stellen die lager is dan de breedte van de buitenwand, omdat de binnenwand niet verandert." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Dichtheid Rafelig Oppervlak" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "De gemiddelde dichtheid van de punten die op elke polygoon in een laag worden geplaatst. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een lage dichtheid leidt dus tot een verlaging van de resolutie." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Puntafstand Rafelig Oppervlak" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Maximale extrusieoffset voor doorvoercompensatie" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "De maximale afstand in mm om het filament te verplaatsen om veranderingen in de stroomsnelheid te compenseren." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Doorvoercompensatiefactor" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Hoe ver het filament moet worden verplaatst om veranderingen in de stroomsnelheid te compenseren, als een percentage van hoe ver het filament in één seconde extrusie zou bewegen." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Adaptieve lagen gebruiken" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Met adaptieve lagen berekent u de laaghoogte afhankelijk van de vorm van het model." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Maximale variatie adaptieve lagen" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Stapgrootte variatie adaptieve lagen" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Het hoogteverschil tussen de hoogte van de volgende laag ten opzichte van de vorige laag." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Topografieformaat aanpasbare lagen" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Horizontale doelafstand tussen twee aangrenzende lagen. Als u deze instelling verkleint, worden dunnere lagen gebruikt om de randen van de lagen dichter bij elkaar te brengen." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Hoek Overhangende Wand" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Snelheid Overhangende Wand" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Overhangende wanden worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Bruginstellingen inschakelen" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnelheid, doorvoer en ventilator aan tijdens het printen van bruggen." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimale brugwandlengte" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Niet-ondersteunde wanden die korter zijn dan deze waarde, worden geprint met de normale wandinstellingen. Langere niet-ondersteunde wanden worden geprint met de instellingen voor brugwanden." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Drempelwaarde voor brugskinsupport" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Als voor een skinregio minder supportstructuur wordt geprint dan dit percentage van zijn oppervlakte, print u dit met de bruginstellingen. Anders wordt er geprint met de normale skininstellingen." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maximale dichtheid van dunne vulling brugskin" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Maximale dichtheid van de vulling die als dun wordt beschouwd. Skin boven dunne vulling wordt als niet-ondersteund beschouwd en kan dus als een brugskin worden behandeld." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Coasting brugwand" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Snelheid brugwand" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "De snelheid waarmee brugwanden worden geprint." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Doorvoer brugwand" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van brugwanden wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Snelheid brugskin" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "De snelheid waarmee brugskinregio's worden geprint." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Doorvoer brugskin" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van brugskinregio's wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Dichtheid brugskin" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Ventilatorsnelheid brug" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Percentage ventilatorsnelheid tijdens het printen van brugwanden en -skin." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Brug heeft meerdere lagen" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Als deze optie ingeschakeld is, worden de tweede en derde laag boven de vrije ruimte geprint met de volgende instellingen. Anders worden de lagen geprint met de normale instellingen." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Snelheid tweede brugskin" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Doorvoer tweede brugskin" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van de tweede brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Dichtheid tweede brugskin" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de tweede brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Ventilatorsnelheid tweede brugskin" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Percentage ventilatorsnelheid tijdens het printen van de tweede brugskinlaag." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Snelheid derde brugskin" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Doorvoer derde brugskin" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Tijdens het printen van de derde brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Dichtheid derde brugskin" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "De dichtheid van de derde brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Ventilatorsnelheid derde brugskin" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Percentage ventilatorsnelheid tijdens het printen van de derde brugskinlaag." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Nozzle afvegen tussen lagen" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze optie kan het gedrag van het intrekken bij de laagwissel beïnvloeden. Gebruik de instellingen voor Intrekken voor afvegen om het intrekken te regelen bij lagen waarbij het afveegscript actief is." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Materiaalvolume tussen afvegen" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Maximale materiaalhoeveelheid die kan worden geëxtrudeerd voordat de nozzle opnieuw wordt afgeveegd. Als deze waarde kleiner is dan het benodigde materiaalvolume in een laag, heeft de instelling geen effect op deze laag. Er wordt dan maar een keer per laag afgeveegd." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Intrekken voor afvegen inschakelen" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Intrekafstand voor afvegen" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Volume filament dat moet worden ingetrokken om te voorkomen dat filament verloren gaat tijdens het afvegen." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Extra primehoeveelheid na intrekken voor afvegen" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Tijdens veegbewegingen kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Intreksnelheid voor afvegen" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken en geprimed." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Intreksnelheid voor afvegen (intrekken)" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Primesnelheid Intrekken voor afvegen" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt geprimed." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Afvegen pauzeren" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Pauzeren na het ongedaan maken van intrekken." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Z-sprong afvegen" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Tijdens het afvegen wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Hoogte Z-sprong voor afvegen" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sprongsnelheid voor afvegen" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Snelheid waarmee de Z-as wordt verplaatst tijdens de sprong." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "X-positie afveegborstel" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "X-positie waar afveegscript start." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Aantal afveegbewegingen" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Aantal keren dat de nozzle over de borstel beweegt." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Verplaatsingsafstand voor afvegen" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "De afstand die de kop heen en weer wordt bewogen over de borstel." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maximale grootte kleine gaten" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Gaten en contouren van onderdelen met een kleinere diameter dan deze worden afgedrukt met behulp van Klein kenmerksnelheid." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maximale lengte klein kenmerk" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Kenmerkcontouren die korter zijn dan deze lengte, worden afgedrukt met behulp van Klein kenmerksnelheid." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Klein kenmerksnelheid" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Kleine kenmerken eerste laagsnelheid" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Kleine kenmerken op de eerste laag worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Verwijderen van afwisselend raster" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Alternerende wandrichtingen na elke laag en instroming. Nuttig voor materialen die spanning op kunnen bouwen, bijvoorbeeld voor het printen van metaal." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Groepeer de buitenwanden" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Aluminium" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Tool voor altijd actief schrijven" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Rapportage van printproces" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Altijd intrekken voordat wordt bewogen om met een buitenwand te beginnen." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Rapportagegebeurtenissen die ingestelde drempels overschrijden" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "De mate van offset die wordt toegepast op alle polygonen in elke laag. Met positieve waarden compenseert u te grote gaten, met negatieve waarden compenseert u te kleine gaten." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Rapportage van printproces inschakelen" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "De mate van offset die wordt toegepast op alle polygonen in de eerste laag. Met negatieve waarden compenseert u het samenpersen van de eerste laag, ook wel 'olifantenpoot' genoemd." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Rapportage van printproces inschakelen voor het instellen van drempelwaarden voor mogelijke foutdetectie." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "De mate van offset die wordt toegepast op alle steunpolygonen in elke laag. Met positieve waarden kunt u de draagvlakken effenen en krijgt u een stevigere supportstructuur." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Flow-waarschuwing" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "De mate van offset die wordt toegepast op de supportvloeren." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Limiet op flow-waarschuwing voor detectie." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "De mate van offset die wordt toegepast op de supportdaken." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Flowlimiet" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "De mate van offset die wordt toegepast op de verbindingspolygonen." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Limiet op flow-afwijking voor detectie." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Volume filament dat moet worden ingetrokken om te voorkomen dat filament verloren gaat tijdens het afvegen." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Waarschuwing printtemperatuur" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Een aanvulling op de straal vanuit het midden van elk blok om de rand van het model te detecteren, om te bepalen of het blok moet worden onderverdeeld. Een hogere waarde leidt tot een dikkere shell voor kleine blokken bij de rand van het model." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Limiet voor waarschuwing printtemperatuur voor detectie." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Raster tegen overhang" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Limiet printtemperatuur" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Intrekpositie voor niet-uitlopen" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Limiet op afwijking printtemperatuur voor detectie." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Intreksnelheid voor niet-uitlopen" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Waarschuwing temperatuur bouwvolume" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Pas de extruderoffset toe op het coördinatensysteem. Van toepassing op alle extruders." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Limiet op waarschuwing temperatuur bouwvolume voor detectie." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Genereer op de plaatsen waar modellen elkaar raken een in elkaar grijpende balkstructuur. Dit verbetert de hechting tussen modellen, vooral modellen die in verschillende materialen zijn geprint." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Geprinte delen mijden tijdens bewegingen" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Supportstructuren mijden tijdens bewegingen" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Achter" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Linksachter" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Rechtsachter" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Beide" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Beide overlappen" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Bodemlagen" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Eerste laag patroon onderkant" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Uitbreidingsafstand van onderste skinlaag" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Verwijderingsbreedte onderste skinlaag" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Bodemdikte" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Takdichtheid" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Takdiameter" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Hoek takdiameter" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Intrekpositie voor voorbereiding van afbreken" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Intreksnelheid voor voorbereiding van afbreken" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatuur voor voorbereiding van afbreken" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Intrekpositie voor afbreken" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Intreksnelheid voor afbreken" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatuur voor afbreken" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Supportstructuur in Stukken Breken" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Ventilatorsnelheid brug" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Brug heeft meerdere lagen" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Dichtheid tweede brugskin" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Ventilatorsnelheid tweede brugskin" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Doorvoer tweede brugskin" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Snelheid tweede brugskin" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Dichtheid brugskin" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Doorvoer brugskin" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Snelheid brugskin" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Drempelwaarde voor brugskinsupport" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maximale dichtheid van dunne vulling brugskin" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Dichtheid derde brugskin" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Ventilatorsnelheid derde brugskin" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Doorvoer derde brugskin" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Snelheid derde brugskin" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Coasting brugwand" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Doorvoer brugwand" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Snelheid brugwand" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Marge voor vermijden van rand" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Brimafstand" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Aantal Brimlijnen" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Locatie rand" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim vervangt supportstructuur" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Breedte Brim" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Hechting aan Platform" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extruder Hechting aan Platform" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Type Hechting aan Platform" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Materiaal van het platform" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Vorm van het platform" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Platformtemperatuur" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Platformtemperatuur voor de eerste laag" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatuur werkvolume" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Limiet temperatuur bouwvolume" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Limiet op afwijking temperatuur bouwvolume voor detectie." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Waarschuwing temperatuur bouwvolume" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Instellingen opdrachtregel" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Instellingen die alleen worden gebruikt als CuraEngine niet wordt aangeroepen door de Cura-frontend." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Door deze instelling in te schakelen, krijgt uw prime toren een brim, zelfs als het model dat niet heeft. Als u een stevigere basis wilt voor een hoge toren, kunt u de basis hoogte verhogen." msgctxt "center_object label" msgid "Center Object" msgstr "Object centreren" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Hiermee bepaalt u of het object in het midden van het platform moet worden gecentreerd (0,0) of dat het coördinatensysteem moet worden gebruikt waarin het object opgeslagen is." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Verander de geometrie van het geprinte model dusdanig dat minimale support is vereist. Een steile overhang wordt een vlakke overhang. Overhangende gedeelten worden verlaagd zodat deze meer verticaal komen te staan." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Kiest tussen de beschikbare technieken om support te genereren. \"Normale\" support creëert een supportstructuur direct onder de overhangende delen en laat die gebieden recht naar beneden vallen. \"Boom\"-support creëert takken naar de overhangende gebieden die het model op de toppen van die takken ondersteunen, en laat de takken rond het model kruipen om het zoveel mogelijk vanaf het platform te ondersteunen." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Coasting-snelheid" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Coasting-volume" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Met coasting wordt het laatste gedeelte van een doorvoerpad vervangen door een beweging. Het doorgevoerde materiaal wordt gebruikt om het laatste gedeelte van het doorvoerpad te printen, om draadvorming te verminderen." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Combing-modus" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Met combing blijft de nozzle tijdens bewegingen binnen eerder geprinte delen. Hierdoor zijn de bewegingen iets langer, maar hoeft het filament minder vaak te worden ingetrokken. Als combing is uitgeschakeld, wordt het materiaal ingetrokken en beweegt de nozzle in een rechte lijn naar het volgende punt. Het is ook mogelijk om combing over boven-/onderskingedeelten te voorkomen of combing alleen binnen de vulling te gebruiken." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Instellingen opdrachtregel" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Hoek Conische Supportstructuur" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Minimale Breedte Conische Supportstructuur" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Vullijnen verbinden" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Vulpolygonen Verbinden" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Supportstructuurlijnen verbinden" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Zigzaglijnen Supportstructuur Verbinden" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Boven-/onderkant Polygonen Verbinden" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Vulpaden verbinden waar ze naast elkaar lopen. Bij vulpatronen die uit meerdere gesloten polygonen bestaan, wordt met deze instelling de bewegingstijd aanzienlijk verkort." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Verbind de zigzaglijnen. Hiermee versterkt u de zigzag-supportstructuur." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Verbind de uiteinden van de supportstructuurlijnen met elkaar. Als u deze instelling inschakelt, maakt u de supportstructuur robuuster en vermindert u onderextrusie. Er wordt echter meer materiaal verbruikt." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Verbindt de uiteinden waar het vulpatroon bij de binnenwand komt, met een lijn die de vorm van de binnenwand volgt. Als u deze instelling inschakelt, kan de vulling beter hechten aan de wanden en wordt de invloed van de vulling op de kwaliteit van de verticale oppervlakken kleiner. Als u deze instelling uitschakelt, wordt er minder materiaal gebruikt." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Verbind skinpaden aan de boven-/onderkant waar ze naast elkaar lopen. Met deze instelling wordt bij concentrische patronen de bewegingstijd aanzienlijk verkort. Dit kan echter ten koste gaan van de kwaliteit van de bovenste laag aangezien de verbindingen in het midden van de vulling kunnen komen te liggen." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Instellen of hoeken in het model invloed hebben op de positie van de naad. Geen wil zeggen dat hoeken geen invloed hebben op de positie van de naad. Met Naad Verbergen is de kans groter dat de naad op een binnenhoek komt. Met Naad Zichtbaar Maken is de kans groter dat de naad op een buitenhoek komt. Met Naad Verbergen of Naad Zichtbaar Maken is de kans groter dat de naad op een binnen- of buitenhoek komt. Met Slim Verbergen zijn zowel binnen- als buitenhoeken mogelijk, maar wordt er vaker (indien van toepassing) gebruikgemaakt van binnenhoeken." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Zet elke vullijn om naar zoveel keer vullijnen. De extra lijnen kruisen elkaar niet, maar mijden elkaar. Hierdoor wordt de vulling stijver, maar duurt het printen langer en wordt er meer materiaal verbruikt." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Afkoelsnelheid" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Koelen" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Koelen" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Kruis" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Kruis" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Kruis 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Luchtbelgrootte bij Kruis 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Dichtheid kruisvulling afbeelding voor supportstructuur" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Dichtheid kruisvulling afbeelding" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristallijnmateriaal" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kubisch" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kubische onderverdeling" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kubische onderverdeling shell" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Snijdend raster" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Grafiek om de materiaaldoorvoer (in mm3 per seconde) te koppelen aan de temperatuur (graden Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Standaardacceleratie" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Standaardtemperatuur platform" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Standaard Filamentschok" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Standaard printtemperatuur" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Standaard X-/Y-schok" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Standaard Z-schok" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "De standaardschok voor beweging in het horizontale vlak." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "De standaardschok voor de motor in de Z-richting." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "De standaardschok voor de motor voor het filament." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Hiermee detecteert u bruggen en past u de instellingen voor de printsnelheid, doorvoer en ventilator aan tijdens het printen van bruggen." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Bepaalt de volgorde waarin de wanden worden geprint. Wanneer u de buitenwanden het eerst print, bevordert u de nauwkeurigheid van de afmetingen, omdat fouten in de binnenwanden niet worden overgedragen op de buitenzijde. Door ze later te printen kunt u echter beter stapelen wanneer de overhangs worden geprint. Bij een oneven aantal binnenwanden wordt de 'middelste laatste lijn' altijd als laatste afgedrukt." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Bepaalt de prioriteit van dit raster bij meerdere overlappende vulrasters. Gebieden met meerdere overlappende vulrasters krijgen de instellingen van het vulraster met de hoogste rang. Bij een vulraster met een hogere rang wordt de vulling van vulrasters met een lagere rang en normale rasters aangepast." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bepaalt wanneer een bliksemvullaag iets moet ondersteunen dat zich boven de vullaag bevindt. Gemeten in de hoek bepaald door de laagdikte." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bepaalt wanneer een bliksemvullaag het model boven de laag moet ondersteunen. Gemeten in de hoek bepaald door de laagdikte." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diameter" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Diameterverhoging naar model" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diameter elke tak probeert te bereiken bij het bereiken van de bouwplaat. Verbetert de hechting van het bed." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Er zijn verschillende opties die u helpen zowel de voorbereiding van de doorvoer als de hechting aan het platform te verbeteren. Met de optie Brim legt u in de eerste laag extra materiaal rondom de voet van het model om vervorming te voorkomen. Met de optie Raft legt u een dik raster met een dak onder het model. Met de optie Skirt print u rond het model een lijn die niet met het model is verbonden." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Verboden gebieden" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "De afstand tussen de geprinte vullijnen. Deze instelling wordt berekend op basis van de dichtheid van de vulling en de lijnbreedte van de vulling." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Afstand tussen de lijnen van de supportstructuur voor de eerste laag. Deze wordt berekend op basis van de dichtheid van de supportstructuur." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "De afstand tussen de geprinte lijnen van de supportvloer. Deze instelling wordt berekend op basis van de dichtheid van de supportvloer, maar kan onafhankelijk worden aangepast." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "De afstand tussen de geprinte lijnen van het supportdak. Deze instelling wordt berekend op basis van de dichtheid van het supportdak, maar kan onafhankelijk worden aangepast." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "De afstand tussen de geprinte lijnen van de supportstructuur. Deze instelling wordt berekend op basis van de dichtheid van de supportstructuur." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Afstand van de print tot de onderkant van de ondersteuning. Let op dat dit wordt afgerond naar de volgende laaghoogte." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "De afstand van de bovenkant van de supportstructuur tot de print." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Afstand van de boven-/onderkant van de ondersteuningsstructuur tot de print. Deze opening zorgt voor ruimte om de ondersteuningen te verwijderen nadat het model is geprint. De bovenste ondersteuningslaag onder het model kan een fractie zijn van de normale lagen." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "De afstand voor een beweging die na het printen van elke vullijn wordt ingevoegd, om ervoor te zorgen dat de vulling beter aan de wanden hecht. Deze optie lijkt op de optie voor overlap van vulling. Tijdens deze beweging is er echter geen doorvoer en de beweging vindt maar aan één uiteinde van de vullijn plaats." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Afstand van een beweging die ingevoegd is na de buitenwand, om de Z-naad beter te maskeren." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "De afstand tussen het tochtscherm en de print, in de X- en Y-richting." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "De afstand tussen het uitloopscherm en de print, in de X- en Y-richting." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Afstand tussen de supportstructuur en de overhang in de X- en Y-richting." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Afstand tussen de supportstructuur en de print, in de X- en Y-richting." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Afstandspunten worden verschoven om het pad vloeiend te maken" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Genereer geen gebieden met vulling die kleiner zijn dan deze waarde (gebruik in plaats daarvan een skin)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Hoogte Tochtscherm" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Beperking Tochtscherm" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Tochtscherm X-/Y-afstand" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Supportraster verlagen" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dubbele Doorvoer" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Ovaal" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Acceleratieregulering Inschakelen" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Bruginstellingen inschakelen" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Coasting Inschakelen" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Conische supportstructuur inschakelen" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Tochtscherm Inschakelen" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Vloeiende beweging inschakelen" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Strijken inschakelen" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Schokregulering Inschakelen" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Regulering van de nozzletemperatuur inschakelen" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Uitloopscherm Inschakelen" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Primeblob inschakelen" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Primepijler Inschakelen" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Koelen van de Print Inschakelen" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Rapportage van printproces inschakelen" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Intrekken Inschakelen" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Supportbrim inschakelen" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Supportvloer inschakelen" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Verbindingsstructuur Inschakelen" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Supportdak inschakelen" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Bewegingsacceleratie inschakelen" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Bewegingsschok inschakelen" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Hiermee wordt het uitloopscherm aan de buitenkant ingeschakeld, waardoor een shell rond het model wordt gemaakt waarop een tweede nozzle kan worden afgeveegd als deze zich op dezelfde hoogte bevindt als de eerste nozzle." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Rapportage van printproces inschakelen voor het instellen van drempelwaarden voor mogelijke foutdetectie." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Laat kleine (tot 'Breedte kleine bovenkant/onderkant') gebieden op de bovenste skinned layer (blootgesteld aan lucht) opvullen met muren in plaats van het standaardpatroon." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Hiermee stelt u de schok van de printkop in wanneer de snelheid in de X- of Y-as verandert. Door het verhogen van de schok wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Hiermee stelt u de printkopacceleratie in. Door het verhogen van de acceleratie wordt de printtijd mogelijk verkort ten koste van de printkwaliteit." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Hiermee schakelt u de printkoelventilatoren in tijdens het printen. De ventilatoren verbeteren de printkwaliteit van lagen met een korte laagtijd en brugvorming/overhang." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Eind G-code" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Afvoerduur einde van filament" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Afvoersnelheid einde van filament" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Dwing af dat de brim rond het model wordt geprint, zelfs als deze ruimte anders door supportstructuur zou worden ingenomen. Hierdoor worden enkele gebieden van de eerste supportlaag vervangen door brimgebieden." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Overal" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Overal" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusief" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimenteel" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Naad zichtbaar maken" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Uitgebreid Hechten" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Met uitgebreid hechten worden zo veel mogelijk open gaten in het raster gehecht doordat het gat wordt gedicht met polygonen die elkaar raken. Deze optie kan de verwerkingstijd aanzienlijk verlengen." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Aantal Extra Wanden Rond vulling" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Aantal Extra Wandlijnen Rond Skin" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Extra primemateriaal na het wisselen van de nozzle." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "X-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Y-positie voor Primen Extruder" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z-positie voor Primen Extruder" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extruders delen verwarming" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extruders delen nozzle" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Aanpassing Afkoelsnelheid Doorvoer" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Op doorvoerbreedte gebaseerde correctiefactor voor de snelheid. Op 0% wordt de bewegingssnelheid gelijk gehouden aan de printsnelheid. Op 100% wordt de bewegingssnelheid zo aangepast dat de stroom (in mm³/s) constant is, d.w.z. dat alle lijnen die half zo breed zijn als de normale lijnbreedte, tweemaal zo snel worden geprint en lijnen die twee maal zo breed zijn, half zo snel. Een waarde groter dan 100% kan de hogere druk compenseren die nodig is voor de extrusie van brede lijnen." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Ventilatorsnelheid" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Ventilatorsnelheid Overschrijven" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Kenmerkcontouren die korter zijn dan deze lengte, worden afgedrukt met behulp van Klein kenmerksnelheid." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Functies die nog niet volledig zijn uitgewerkt." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diameter van het feedertandwiel" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Eindtemperatuur voor printen" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Intrekken via firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extruder Eerste Laag van Support" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Doorvoer" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Verhouding voor afstemmen doorvoer" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Flowlimiet" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Doorvoercompensatiefactor" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Maximale extrusieoffset voor doorvoercompensatie" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Grafiek Doorvoertemperatuur" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Flow-waarschuwing" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Doorvoercompensatie voor de eerste laag: de hoeveelheid materiaal die voor de eerste laag wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Stroomcompensatie op de onderste lijnen van de eerste laag" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Doorvoercompensatie op vullijnen." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Doorvoercompensatie op de lijnen van supportdak of de supportvloer." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Doorvoercompensatie op lijnen van de gebieden bovenaan de print." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Doorvoercompensatie op primepijlerlijnen." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Doorvoercompensatie op skirt- of brimlijnen." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Doorvoercompensatie op de supportvloerlijnen." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Doorvoercompensatie op supportdaklijnen." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Doorvoercompensatie op de supportstructuurlijnen." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Stroomcompensatie op de buitenste wandlijn van de eerste laag." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Doorvoercompensatie op de buitenste wandlijn." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Stroomcompensatie op de buitenste wand van het bovenoppervlak." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Stroomcompensatie op de wandlijnen van het bovenoppervlak voor alle muurlijnen behalve de buitenste." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Doorvoercompensatie op bovenste/onderste lijn." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Stroomcompensatie op wandlijnen voor alle wandlijnen behalve de buitenste, maar alleen voor de eerste laag" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Doorvoercompensatie op wandlijnen voor alle wandlijnen behalve de buitenste." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Doorvoercompensatie op wandlijnen." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Doorvoercompensatie: de hoeveelheid materiaal die wordt doorgevoerd, wordt vermenigvuldigd met deze waarde." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Hoek vloeiende beweging" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Vloeiende beweging verschuivingsafstand" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Vloeiende beweging kleine afstand" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Afvoerduur flush" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Afvoersnelheid flush" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Bij dunne structuren die ongeveer één of tweemaal zo groot als de nozzle zijn, moeten de lijnbreedtes worden aangepast aan de dikte van het model. Met deze instelling beheert u de minimum lijnbreedte die voor wanden is toegestaan. De minimum lijnbreedte bepaalt automatisch ook de maximale lijnbreedte, omdat we bij een bepaalde geometriedikte overgaan van wanden van N naar wanden van N+1, waarbij de N-wanden breed zijn en de N+1-wanden smal. De breedst mogelijke wandlijn is tweemaal de minimumbreedte van de wandlijn." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Voor" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Linksvoor" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Rechtsvoor" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Volledig" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Rafelig Oppervlak" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Dichtheid Rafelig Oppervlak" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Alleen rafelig oppervlak buitenkant" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Puntafstand Rafelig Oppervlak" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Dikte Rafelig Oppervlak" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Versie G-code" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "G-code-opdrachten die aan het eind worden uitgevoerd, gescheiden door " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "G-code-opdrachten die aan het begin worden uitgevoerd, gescheiden door " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID van het materiaal. Deze optie wordt automatisch ingesteld." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Rijbrughoogte" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Genereer in elkaar grijpende structuur" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Support genereren" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Genereer een brim binnen de supportvulgebieden van de eerste laag. Deze brim wordt niet rondom maar onder de supportstructuur geprint. Als u deze instelling inschakelt, hecht de supportstructuur beter aan het platform." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Hiermee maakt u een dichte verbindingsstructuur tussen het model en de supportstructuur. Er wordt een skin gemaakt aan de bovenkant van de supportstructuur waarop het model wordt geprint en op de bodem van de supportstructuur waar dit op het model rust." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Genereer een dichte materiaallaag tussen de onderzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Genereer een dichte materiaallaag tussen de bovenzijde van de supportstructuur en het model. Hierdoor wordt een skin gemaakt tussen het model en de supportstructuur." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Genereer structuren om delen van het model met overhang te ondersteunen. Zonder deze structuren zakken dergelijke delen in tijdens het printen." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Glas" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Nog een extra keer over de bovenlaag gaan, dit keer zonder veel materiaal te extruderen. Hierdoor wordt de kunststof aan de bovenkant verder gesmolten, waardoor een gladder oppervlak wordt verkregen. De kamerdruk in de nozzle wordt hoog gehouden zodat de spleten in het oppervlak met materiaal worden gevuld." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Staphoogte Geleidelijke Vulling" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Stappen Geleidelijke Vulling" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Geleidelijke supportvulling hoogte traptreden" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Geleidelijke supportvulling traptreden" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Verlaag geleidelijk naar deze temperatuur bij het printen met lagere snelheden vanwege de minimale laagtijd." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Raster" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Raster" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Raster" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Raster" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Raster" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Groepeer de buitenwanden" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroïde" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Heeft temperatuurstabilisatie van werkvolume" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Heeft verwarmd platform" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Verwarmingssnelheid" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Lengte verwarmingszone" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Stel een hoogtebeperking in voor het tochtscherm. Boven deze hoogte wordt er geen tochtscherm geprint." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Naad verbergen" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Naad verbergen of zichtbaar maken" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Horizontale uitbreiding gaten" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Gat horizontale expansie max diameter" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Gaten en contouren van onderdelen met een kleinere diameter dan deze worden afgedrukt met behulp van Klein kenmerksnelheid." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Horizontale Uitbreiding" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Horizontale schaalfactor krimpcompensatie" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Hoe ver het filament kan worden uitgerekt voordat het afbreekt, wanneer het wordt verwarmd." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Hoe ver het materiaal moet worden ingetrokken voordat het niet meer uitloopt." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Hoe ver het filament moet worden verplaatst om veranderingen in de stroomsnelheid te compenseren, als een percentage van hoe ver het filament in één seconde extrusie zou bewegen." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Hoe ver het filament moet worden ingetrokken om het recht af te breken." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Hoe snel het filament moet worden ingetrokken voordat het bij het intrekken afbreekt." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Hoe snel het materiaal moet worden ingetrokken tijdens het wisselen van een filament om uitlopen te voorkomen." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Hoe snel het materiaal moet worden geprimed na het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Hoe snel het materiaal moet worden geprimed na het overschakelen op een ander materiaal." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Hoe lang het materiaal veilig buiten een droge opslagplaats kan worden bewaard." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de X-richting." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Y-richting." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van één millimeter in de Z-richting." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Hoeveel stappen van de stappenmotor nodig zijn voor een verplaatsing van het feederwiel van één millimeter rond de omtrek." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het vervangen van een lege spoel door een nieuwe spoel van hetzelfde materiaal." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Hoeveel materiaal moet worden gebruikt om het vorige materiaal uit de nozzle te verwijderen (in lengte filament) bij het overschakelen op een ander materiaal." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Hoever het filament van elke extruder geacht wordt te zijn ingetrokken vanuit de gedeelde nozzle als het G-code-script voor het opstarten van de printer is uitgevoerd. De waarde mag niet gelijk zijn aan of groter zijn dan de lengte van het gemeenschappelijke deel van de kanalen in de nozzle." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Hoe ondersteuningsinterface en ondersteuning op elkaar inwerken wanneer ze elkaar overlappen. Momenteel alleen geïmplementeerd voor ondersteunend dak." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Hoe groot moet een tak zijn als deze op het model wordt geplaatst. Voorkomt kleine ondersteunende blobs. Deze instelling wordt genegeerd wanneer een tak een ondersteunend dak ondersteunt." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Als voor een skinregio minder supportstructuur wordt geprint dan dit percentage van zijn oppervlakte, print u dit met de bruginstellingen. Anders wordt er geprint met de normale skininstellingen." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Als een baansegment meer dan deze hoek afwijkt van de algemene beweging, wordt hij afgevlakt." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Als deze optie ingeschakeld is, worden de tweede en derde laag boven de vrije ruimte geprint met de volgende instellingen. Anders worden de lagen geprint met de normale instellingen." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Maak geen gebruik van wandovergangen als dit leidt tot snelle achtereenvolgende veranderingen in het aantal wanden. Verwijder overgangen als de afstand tussen overgangen kleiner is dan deze afstand." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot op de basis is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als de raft is ingeschakeld, is dit het extra raftgebied rond het model dat ook van een raft wordt voorzien. Als u deze marge vergroot, krijgt u een stevigere raft, maar gebruikt u ook meer materiaal en houdt u minder ruimte over voor de print." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot in het midden is ingeschakeld, is dit het extra vlotgebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Als het vlot aan de bovenkant is ingeschakeld, is dit het extra vlotebied rond het model dat ook een vlot krijgt. Als u deze marge vergroot, wordt er een sterker vlot gecreëerd, hoewel er meer materiaal gebruikt wordt en er minder plek overblijft voor uw print." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Negeer de interne geometrie die ontstaat uit overlappende volumes binnen een raster en print de volumes als een geheel. Hiermee kunnen onbedoelde holtes binnenin verdwijnen." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Platformtemperatuur invoegen" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Materiaaltemperatuur invoegen" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusief" + +msgctxt "infill description" +msgid "Infill" +msgstr "Vulling" + +msgctxt "infill label" +msgid "Infill" +msgstr "Vulling" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Vulacceleratie" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Vulling vóór Wanden" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dichtheid Vulling" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Vullingextruder" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Doorvoer vulling" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Vulschok" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dikte Vullaag" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Lijnrichting vulling" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Lijnafstand Vulling" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Vermenigvuldiging Vullijn" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Lijnbreedte Vulling" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Vulraster" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Overhanghoek vulling" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Overlap Vulling" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Overlappercentage vulling" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Vulpatroon" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Vulsnelheid" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Supportvulling" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Bewegingsoptimalisatie vulling" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Veegafstand Vulling" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Vulling X-offset" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Vulling Y-offset" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Eerste onderste lagen" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Startsnelheid ventilator" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Acceleratie Eerste Laag" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Initiële laag onderste lijn" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diameter beginlaag" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Doorvoer eerste laag" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Hoogte Eerste Laag" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Eerste laag Horizontale uitbreiding" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Initiële laag binnenwandstroom" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Schok Eerste Laag" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Lijnbreedte eerste laag" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Initiële laag buitenwandstroom" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Printacceleratie Eerste Laag" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Printschok Eerste Laag" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Printsnelheid Eerste Laag" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Snelheid Eerste Laag" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Lijnafstand Supportstructuur Eerste Laag" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Bewegingsacceleratie Eerste Laag" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Bewegingsschok Eerste Laag" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Bewegingssnelheid Eerste Laag" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z Overlap Eerste Laag" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Starttemperatuur voor printen" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Binnenwandacceleratie" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extruder binnenwand" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Schok Binnenwand" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Snelheid Binnenwand" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Doorvoer binnenwand(en)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Lijnbreedte Binnenwand(en)" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Uitsparing die wordt toegepast in de buitenwand. Als de buitenwand smaller is dan de nozzle en na de binnenwand wordt geprint, gebruikt u deze offset om het gat in de nozzle te laten overlappen met de binnenwanden in plaats van met de buitenkant van het model." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Alleen binnenkant" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "Van binnen naar buiten" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Geprefereerde interfacelijnen" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Geprefereerde interface" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Interleaved" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Aantal in elkaar grijpende balklagen" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Breedte in elkaar grijpende balk" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "In elkaar grijpende grensvermijding" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "In elkaar grijpende diepte" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "In elkaar grijpende structuuroriëntatie" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Alleen hoogste laag strijken" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Strijkacceleratie" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Strijkdoorvoer" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Uitsparing strijken" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Schok strijken" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Tussenruimte strijklijnen" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Strijkpatroon" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Strijksnelheid" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Is oorsprongpunt centraal" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Is support materiaal" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Breekt dit materiaal recht af wanneer het wordt verwarmd (kristallijn) of produceert het lange, met elkaar verweven polymeerketens (niet-kristallijn)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Wordt dit materiaal meestal gebruikt als support materiaal tijdens het printen." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Trillen alleen voor de contouren van de onderdelen en niet voor de gaten van de onderdelen." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Onderbroken Oppervlakken Behouden" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Laaghoogte" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Begin laag X" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Begin laag Y" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "De laagdikte van de grondlaag van de raft. Deze laag moet dik zijn, zodat deze stevig hecht aan het platform." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "De laagdikte van de middelste laag van de raft." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Laagdikte van de bovenste lagen van de raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Sla elke N millimeter een verbinding tussen de lijnen van de supportstructuur over, zodat deze gemakkelijker kan worden weggebroken." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Links" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Printkop Optillen" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Bliksem" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Hoek overhang bliksemvulling" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Snoeihoek bliksemvulling" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Rechtbuighoek bliksemvulling" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Hoek supportstructuur bliksemvulling" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Takbereik beperken" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Beperken hoe ver elke tak moet bewegen vanaf het punt dat het ondersteunt. Dit kan de steun steviger maken, maar zal de hoeveelheid takken vergroten (en daardoor het materiaalgebruik/de printtijd)." + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limiet op waarschuwing temperatuur bouwvolume voor detectie." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limiet op afwijking temperatuur bouwvolume voor detectie." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limiet op afwijking printtemperatuur voor detectie." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limiet voor waarschuwing printtemperatuur voor detectie." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limiet op flow-afwijking voor detectie." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limiet op flow-waarschuwing voor detectie." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Beperk het volume van dit raster binnen andere rasters. U kunt dit gebruiken om bepaalde delen van een raster met andere instellingen en met een andere extruder te printen." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Beperkt" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Lijnbreedte" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Machine" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Machinediepte" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Machinekop- en ventilatorpolygoon" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Machinehoogte" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Type Machine" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Machinebreedte" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Instellingen van de machine" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Overhang Printbaar Maken" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Laat rasters die elkaar raken deels met elkaar overlappen. Hierdoor hechten ze beter aan elkaar." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Maak draagvlakken aan de onderkant kleiner dan bij de overhang." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Maak overal onder het supportraster support zodat er in het supportraster geen overhang is." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Maak van de primepositie van de extruder de absolute positie, in plaats van de relatieve positie ten opzichte van de laatst bekende locatie van de printkop." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Laat de eerste en tweede laag van het model overlappen in de Z-richting om te compenseren voor het filament dat verloren gaat in de luchtspleet. Alle modellen boven de eerste modellaag zullen met deze hoeveelheid naar beneden worden verschoven." +"Het kan voorkomen dat de tweede laag onder de eerste laag wordt afgedrukt door deze instelling. Dit gedrag is zo bedoeld." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Maak de rasters beter geschikt voor 3D-printen." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetrisch)" + +msgctxt "material description" +msgid "Material" +msgstr "Materiaal" + +msgctxt "material label" +msgid "Material" +msgstr "Materiaal" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Materiaalmerk" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "Materiaal-GUID" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Materiaaltype" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Materiaalvolume tussen afvegen" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Max. combing-afstand zonder intrekken" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maximale Acceleratie X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maximale Acceleratie Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maximale Acceleratie Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maximale vertakkingshoek" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maximale afwijking" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maximale afwijking doorvoergebied" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maximale Ventilatorsnelheid" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maximale Filamentacceleratie" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maximale Modelhoek" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maximale overhang oppervlak gat" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maximale parkeerduur" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maximale resolutie" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maximaal Aantal Intrekbewegingen" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Maximale skinhoek voor uitbreiding" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maximale Snelheid E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maximale Snelheid X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maximale Snelheid Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maximale Snelheid Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Maximale pijler-ondersteunde diameter" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maximale bewegingsresolutie" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "De maximale acceleratie van de motor in de X-richting" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "De maximale acceleratie van de motor in de Y-richting." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "De maximale acceleratie van de motor in de Z-richting." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "De maximale acceleratie van de motor van het filament." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Maximale dichtheid van de vulling die als dun wordt beschouwd. Skin boven dunne vulling wordt als niet-ondersteund beschouwd en kan dus als een brugskin worden behandeld." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "De maximale diameter in de X- en Y-richting van een kleiner gebied dat moet worden ondersteund door een speciale steunpijler." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Maximale materiaalhoeveelheid die kan worden geëxtrudeerd voordat de nozzle opnieuw wordt afgeveegd. Als deze waarde kleiner is dan het benodigde materiaalvolume in een laag, heeft de instelling geen effect op deze laag. Er wordt dan maar een keer per laag afgeveegd." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Samengevoegde rasters overlappen" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Modelcorrecties" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Rasterpositie X" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "De offset die in de X-richting wordt toegepast op het object." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Rasterpositie Y" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "De offset die in de Y-richting wordt toegepast op het object." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Rasterpositie Z" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "De offset die wordt toegepast op het object in de z-richting. Hiermee kunt u de taak uitvoeren die voorheen 'Object Sink' werd genoemd." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Rasterverwerkingsrang" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matrix rasterrotatie" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Midden" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimale matrijsbreedte" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimale tijd stand-bytemperatuur" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimale brugwandlengte" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum lijnbreedte even wand" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimaal Afstandsgebied voor Intrekken" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum elementgrootte" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimale Doorvoersnelheid" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Minimale hoogte tot model" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimumgebied vulling" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimale Laagtijd" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum breedte ongelijkmatige wandlijn" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimale Polygoonomtrek" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Minimale skinbreedte voor uitbreiding" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimumsnelheid" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimumgebied supportstructuur" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimumgebied supportvloer" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimumgebied verbindingsstructuur" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimumgebied supportdak" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimale X-/Y-afstand Supportstructuur" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimumbreedte dunne wandlijn" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Minimaal Volume vóór Coasting" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimumbreedte wandlijn" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Minimumgebied voor verbindingspolygonen. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Minimumgebied voor steunpolygonen. Polygonen met een gebied dat kleiner is dan deze waarde, worden niet gegenereerd." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Minimumgebied voor de supportvloeren. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Minimumgebied voor de supportdaken. Polygonen met een gebied dat kleiner is dan deze waarde worden geprint als normale ondersteuning." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Minimumdikte van dunne elementen. Modelelementen die dunner zijn dan deze waarde worden niet geprint, terwijl elementen die dikker zijn dan de minimale elementgrootte worden verbreed tot de minimale wandlijnbreedte." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Minimale breedte waarmee het grondvlak van het kegelvormige supportgebied wordt verkleind. Een geringe breedte kan leiden tot een instabiele supportstructuur." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Matrijs" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Matrijshoek" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Dakhoogte matrijs" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotone strijkvolgorde" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotone volgorde van het bovenste oppervlak van het vlot" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotone volgorde bovenlaag" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotone volgorde van boven naar beneden" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Met meerdere skirtlijnen kunt u de doorvoer beter voorbereiden voor kleine modellen. Met de waarde 0 wordt de skirt uitgeschakeld." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Vermenigvuldiging van de lijnbreedte van de eerste laag. Door deze te verhogen kan de hechting aan het bed worden verbeterd." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Verplaatsingsfactor zonder lading" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Geen skin in Z-gaten" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Niet-traditionele manieren om uw modellen te printen." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Geen" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Geen" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normaal" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normaal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normaal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normaal probeert Cura kleine gaten in het raster te hechten en delen van een laag met grote gaten te verwijderen. Als u deze optie inschakelt, behoudt u de delen die niet kunnen worden gehecht. Deze optie kan als laatste redmiddel worden gebruikt als er geen andere manier meer is om correcte G-code te genereren." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Niet in skin" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Niet op buitenzijde" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozzlehoek" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozzlediameter" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Verboden gebieden voor de nozzle" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozzle-ID" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozzlelengte" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Extra primehoeveelheid na wisselen van nozzle" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Primesnelheid bij Wisselen Nozzles" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Intrekkingssnelheid bij Wisselen Nozzles" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Intrekafstand bij Wisselen Nozzles" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Intreksnelheid bij Wisselen Nozzles" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Aantal extruders" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Aantal ingeschakelde extruders" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Aantal Lagen met Lagere Printsnelheid" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Het aantal extruder trains dat ingeschakeld is; automatisch ingesteld in de software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Aantal extruder trains. Een extruder train is de combinatie van een feeder, Bowden-buis en nozzle." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Aantal keren dat de nozzle over de borstel beweegt." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Het aantal keren dat de vuldichtheid wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid vulling." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Het aantal keren dat de dichtheid van de supportvulling wordt gehalveerd naarmate er verder onder het oppervlak wordt geprint. Gebieden die zich dichter bij het oppervlak bevinden, krijgen een hogere dichtheid, tot de waarde die is opgegeven in de optie Dichtheid supportvulling." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octet" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Uit" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "De offset die in de X-richting wordt toegepast op het object." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "De offset die in de Y-richting wordt toegepast op het object." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "De offset die wordt toegepast op het object in de z-richting. Hiermee kunt u de taak uitvoeren die voorheen 'Object Sink' werd genoemd." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Offset met extruder" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Op bouwplaat indien mogelijk" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Op model indien nodig" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Eén voor Eén" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Voer alleen een Z-sprong uit bij bewegingen over geprinte delen die niet kunnen worden vermeden met Geprinte Delen Mijden Tijdens Bewegingen." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Strijk alleen de allerlaatste laag van het voorwerp. Dit bespaart tijd als de daaronder gelegen lagen geen glad oppervlak vereisen." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Hoek Uitloopscherm" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Afstand Uitloopscherm" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimaal vertakkingsbereik" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Printvolgorde van wanden optimaliseren" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Optimaliseer de volgorde waarin wanden worden geprint om het aantal intrekbewegingen en de afgelegde afstand te verkleinen. Deze instelling is gunstig voor de meeste onderdelen. Bij sommige onderdelen duurt het printen echter langer. Controleer daarom de verwachte printtijd met en zonder optimalisatie. De eerste laag wordt niet geoptimaliseerd als u brim kiest als hechting aan platform." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Buitendiameter nozzle" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Buitenwandacceleratie" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extruder buitenwand" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Buitenste wanddoorvoer" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Uitsparing Buitenwand" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Schok Buitenwand" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Lijnbreedte Buitenwand" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Snelheid Buitenwand" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Veegafstand buitenwand" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Buitenwanden van verschillende eilanden in dezelfde laag worden achtereenvolgens geprint. Wanneer ingeschakeld, wordt de hoeveelheid stroomveranderingen beperkt omdat wanden één type tegelijk worden geprint. Wanneer uitgeschakeld, wordt het aantal verplaatsingen tussen eilanden verminderd omdat wanden op dezelfde eilanden worden gegroepeerd." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Alleen buitenkant" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Van buiten naar binnen" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Hoek Overhangende Wand" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Snelheid Overhangende Wand" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Overhangende wanden worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Pauzeren na het ongedaan maken van intrekken." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Percentage ventilatorsnelheid tijdens het printen van brugwanden en -skin." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Percentage ventilatorsnelheid tijdens het printen van de tweede brugskinlaag." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Percentage van de ventilatorsnelheid dat tijdens het printen van skinregio's direct boven de supportstructuur moet worden gebruikt. Bij gebruikmaking van een hoge ventilatorsnelheid kan de supportstructuur gemakkelijker worden verwijderd." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Percentage ventilatorsnelheid tijdens het printen van de derde brugskinlaag." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Polygonen in geslicete lagen, die een kleinere omtrek hebben dan deze waarde, worden eruit gefilterd. Bij lagere waarden krijgt het raster een hogere resolutie, waardoor het slicen langer duurt. Dit is voornamelijk bedoeld voor SLA-printers met een hoge resolutie en zeer kleine 3D-modellen die veel details bevatten." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Geprefereerde vertakkingshoek" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Voorkom herhaaldelijke overgangen tussen een wand meer en een wand minder. Deze marge vergroot het aantal lijnbreedtes dat volgt op [minimumbreedte wandlijn - marge, 2 * minimumbreedte wandlijn + marge]. Door de marge te vergroten reduceert u het aantal overgangen, wat weer het aantal doorvoerstarts/-stops en de tijd van de beweging reduceert. Een grote variatie in lijnbreedtes kan echter wel leiden tot problemen met te geringe of te hoge extrusie." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Acceleratie Primepijler" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Basis van de Primepijler" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Hoogte van de basis van de Primepijler" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Grootte van de basis van de Primepijler" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Basis hellingshoek van de Prime Toren" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Doorvoer Primepijler" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Schok Primepijler" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Lijnbreedte Primepijler" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Maximale overbruggingsafstand voorbereidingstoren" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Minimumvolume primepijler" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Lijnafstand van het vlot van de Primepijler" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Formaat Primepijler" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Snelheid Primepijler" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Type voorbereidingstoren" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X-positie Primepijler" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y-positie Primepijler" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Printacceleratie" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Printschok" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Rapportage van printproces" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Printvolgorde" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Printsnelheid" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Dunne wanden printen" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Print een rand aan de buitenkant van het model, aan de binnenkant of aan beide kanten. Afhankelijk van het model helpt dit om de hoeveelheid rand die u achteraf moet verwijderen te verminderen, terwijl het voor een goede hechting aan het bed zorgt." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Print een pijler naast de print, waarop het materiaal na iedere nozzlewisseling wordt ingespoeld." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Print alleen vulstructuren waarvan de bovenkant van het model moet worden ondersteund. Hiermee reduceert u de printtijd en het materiaalgebruik. Dit kan echter leiden tot een niet gelijkmatige objectsterkte." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print strijklijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Print modellen als matrijs, die vervolgens kan worden gegoten om een model te krijgen dat lijkt op de modellen op het platform." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Print delen van het model die horizontaal dunner zijn dan de maat van de nozzle." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Print de lijnen van het bovenste oppervlak van het vlot in een volgorde die ervoor zorgt dat ze altijd overlappen met aangrenzende lijnen in één richting. Dit kost iets meer tijd om te printen, maar het oppervlak ziet er consistenter uit, wat ook zichtbaar is op de onderkant van het model." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Printsnelheid tijdens het printen van de tweede brugskinlaag." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Printsnelheid tijdens het printen van de derde brugskinlaag." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limiet printtemperatuur" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Waarschuwing printtemperatuur" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Print de vulling voordat de wanden worden geprint. Wanneer u eerst de wanden print, worden deze nauwkeuriger geprint, maar wordt de overhang mogelijk van mindere kwaliteit. Wanneer u eerst de vulling print, worden de wanden steviger, maar schijnt het vulpatroon mogelijk door." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print de lijnen van de bovenlaag in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print boven- en onderlijnen in een volgorde die ervoor zorgt dat ze altijd in één richting overlappen met aangrenzende lijnen. Hierdoor duurt het iets langer om te printen, maar platte oppervlakken zien er dan consistenter uit." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Printtemperatuur" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Printtemperatuur van de eerste laag" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Het printen van de binnenste skirt-lijn met meerdere lagen maakt het gemakkelijk om de skirt te verwijderen." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Print op afwisselende lagen een extra wand. Op deze manier wordt vulling tussen deze extra wanden gevangen, wat leidt tot sterkere prints." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Kwaliteit" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Afgeknotte kubus" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Luchtruimte Raft" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Extra marge voor vlot op de basis" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft basisextruder" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Ventilatorsnelheid Grondlaag Raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Tussenruimte Lijnen Grondvlak Raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Lijnbreedte Grondvlak Raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Printacceleratie Grondvlak Raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Printschok Grondvlak Raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Printsnelheid Grondvlak Raft" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Vlotbasis gladmaken" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Dikte Grondvlak Raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Aantal wanden grondvlak raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Extra Marge Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Ventilatorsnelheid Raft" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Extra marge voor vlot in het midden" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft middelste extruder" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Ventilatorsnelheid Midden Raft" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft middelste lagen" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Lijnbreedte Midden Raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Printacceleratie Midden Raft" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Printschok Midden Raft" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Printsnelheid Midden Raft" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Midden van vlot gladmaken" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Tussenruimte Midden Raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Lijndikte Midden Raft" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Aantal middenwanden vlot" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Printacceleratie Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Printschok Raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Printsnelheid Raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft effenen" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Extra marge voor vlot aan bovenkant" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft bovenste extruder" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Ventilatorsnelheid Bovenkant Raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Dikte Bovenlaag Raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Bovenlagen Raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Breedte Bovenste Lijn Raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Printacceleratie Bovenkant Raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Printschok Bovenkant Raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Printsnelheid Bovenkant Raft" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Bovenkant van vlot gladmaken" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Bovenruimte Raft" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Aantal bovenwanden vlot" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Aantal vlotwanden" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Willekeurig" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Start willekeurig invullen" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Bepaal willekeurig welke invullijn het eerst wordt geprint. Dit voorkomt dat één segment het sterkst wordt, maar gaat ten koste van een extra beweging." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Door willekeurig trillen tijdens het printen van de buitenwand wordt het oppervlak hiervan ruw en ongelijk." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Rechthoekig" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Normale Ventilatorsnelheid" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Normale Ventilatorsnelheid op Hoogte" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Normale Ventilatorsnelheid op Laag" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Drempelwaarde Normale/Maximale Ventilatorsnelheid" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Relatieve Extrusie" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Alle Gaten Verwijderen" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Lege eerste lagen verwijderen" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Rastersnijpunt verwijderen" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Binnenhoeken van basis van vlot verwijderen" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Binnenhoeken raft verwijderen" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Binnenhoeken van vlot in het midden verwijderen" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Binnenhoeken van vlot aan de bovenkant verwijderen" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Hiermee verwijdert u gebieden waar meerdere rasters elkaar overlappen. Deze functie kan worden gebruikt als samengevoegde objecten van twee materialen elkaar overlappen." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Hiermee worden de lege lagen onder de eerste geprinte laag verwijderd, indien aanwezig. Als u deze instelling uitschakelt, kunnen lege eerste lagen ontstaan als de Slicetolerantie is ingesteld op Exclusief of Midden." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van de basis van het vlot, waardoor het vlot bol wordt." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van het middelste deel van het vlot, waardoor het vlot bol wordt." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Verwijder de binnenhoeken van het bovenste deel van het vlot, waardoor het vlot bol wordt." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Verwijdering van de binnenhoeken van de raft maakt de raft bol." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Verwijder de gaten in elke laag en behoudt u alleen de buitenvorm. Hiermee negeert u eventuele onzichtbare interne geometrie. U negeert echter ook gaten in lagen die u van boven- of onderaf kunt zien." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Vervang het buitenste gedeelte van het patroon boven-/onderkant door een aantal concentrische lijnen. Het gebruik van 1 of 2 lijnen verbetert daken die op vulmateriaal beginnen." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Rapportagegebeurtenissen die ingestelde drempels overschrijden" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Plaatsings voorkeur" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Intrekken voor buitenwand" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Intrekken bij laagwisseling" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Hiermee wordt het filament ingetrokken wanneer de nozzle over een niet-printbaar gebied gaat." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Trek het filament in wanneer de nozzle naar de volgende laag beweegt." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Intrekafstand" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Extra Primehoeveelheid na Intrekken" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimale Afstand voor Intrekken" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Intreksnelheid (Primen)" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Intreksnelheid (Intrekken)" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Intreksnelheid" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Rechts" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Zet de ventilatorsnelheid op 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Zet de ventilatorsnelheid op een waarde tussen 0 en 1 in plaats van tussen 0 en 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Schaalfactor krimpcompensatie" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Scène heeft supportrasters" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Voorkeur van naad en hoek" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Handmatig afdrukvolgorde instellen" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Stel de hoogte van het tochtscherm in. U kunt ervoor kiezen een tochtscherm met dezelfde hoogte als het model of lager te printen." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Instellingen die worden gebruikt voor het printen met meerdere extruders." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Instellingen die alleen worden gebruikt als CuraEngine niet wordt aangeroepen door de Cura-frontend." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Initiële terugtrekking gedeelde nozzle" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Scherpste hoek" + +msgctxt "shell description" +msgid "Shell" +msgstr "Shell" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Kortste" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Machinevarianten tonen" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Lagen skinrandondersteuning" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Dikte skinrandondersteuning" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Uitbreidingsafstand van skin" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Overlap Skin" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Overlappercentage Skin" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Verwijderingsbreedte skin" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Skingebieden die smaller zijn dan deze waarde, worden niet uitgebreid. Dit voorkomt het uitbreiden van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Sla elke N verbindingslijnen één lijn over zodat de supportstructuur gemakkelijker kan worden weggebroken." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Sla enkele verbindingen tussen lijnen van de supportstructuur over zodat deze gemakkelijker kan worden weggebroken. Deze instelling is van toepassing op het zigzag-vulpatroon van de supportstructuur." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirtafstand" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Hoogte Skirt" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Aantal Skirtlijnen" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Acceleratie Skirt/Brim" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extruder Skirt/Brim" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Doorvoer skirt/brim" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Schok Skirt/Brim" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Lijnbreedte Skirt/Brim" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimale Skirt-/Brimlengte" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt-/Brimsnelheid" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Slicetolerantie" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Kleine kenmerken eerste laagsnelheid" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maximale lengte klein kenmerk" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Klein kenmerksnelheid" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maximale grootte kleine gaten" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Printtemperatuur van de kleine laag" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Kleine bovenkant/onderkant op oppervlak" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Kleine breedte boven/onderzijde" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Kleine kenmerken op de eerste laag worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Kleine kernmerken worden geprint met een snelheid die gelijk is aan dit percentage van hun normale printsnelheid. Langzamer printen kan de hechting en nauwkeurigheid verbeteren." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Kleine boven-/ondergebieden worden gevuld met muren in plaats van het standaard boven-/onderpatroon. Dit helpt om schokkerige bewegingen te voorkomen. Standaard uit voor de bovenste (aan lucht blootgestelde) laag (zie 'Kleine boven-/onderkant op oppervlak')." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Slimme Brim" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Slim verbergen" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Gespiraliseerde contouren effenen" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Maak de gespiraliseerde contouren vlak om de zichtbaarheid van de Z-naad te verminderen (de Z-naad mag in de print nauwelijks zichtbaar zijn, maar is nog wel zichtbaar in de laagweergave). Houd er rekening mee dat fijne oppervlaktedetails worden vervaagd door het effenen." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Tijdens een beweging kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Tijdens veegbewegingen kan materiaal verloren gaan, wat met deze optie kan worden gecompenseerd." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Speciale Modi" + +msgctxt "speed description" +msgid "Speed" +msgstr "Snelheid" + +msgctxt "speed label" +msgid "Speed" +msgstr "Snelheid" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Snelheid waarmee de Z-as wordt verplaatst tijdens de sprong." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Buitencontour Spiraliseren" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Met spiraliseren wordt de Z-beweging van de buitenrand vloeiender. Hierdoor ontstaat een geleidelijke Z-verhoging over de hele print. Met deze functie maakt u van een massief model een enkelwandige print met een solide bodem. Deze functie dient alleen te worden ingeschakeld wanneer elke laag uit een enkel deel bestaat." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Stand-bytemperatuur" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Start G-code" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Het startpunt voor elk pad in een laag. Wanneer paden in opeenvolgende lagen op hetzelfde punt beginnen, kan in de print een verticale naad zichtbaar zijn. De naad is het eenvoudigst te verwijderen wanneer deze zich nabij een door de gebruiker opgegeven locatie van de print bevindt. De onnauwkeurigheden vallen minder op wanneer het pad steeds op een willekeurige plek begint. De print is sneller af wanneer het kortste pad wordt gekozen." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Stappen per millimeter (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Stappen per millimeter (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Stappen per millimeter (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Stappen per millimeter (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Supportstructuur" + +msgctxt "support label" +msgid "Support" +msgstr "Supportstructuur" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Acceleratie Supportstructuur" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Afstand van Onderkant Supportstructuur" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Aantal wandlijnen van de ondersteuningsbodem" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Aantal supportbrimlijnen" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Breedte supportbrim" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Aantal Lijnen Supportstuk" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Grootte Supportstuk" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Dichtheid Supportstructuur" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioriteit Afstand Supportstructuur" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extruder Supportstructuur" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Acceleratie supportvloer" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Dichtheid supportvloer" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extruder supportvloer" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Doorvoer supportvloer" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Supportvloer horizontale uitbreiding" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Schok supportvloer" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Lijnrichting supportvloer" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Lijnafstand supportvloer" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Lijnbreedte supportvloer" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Patroon supportvloer" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Snelheid supportvloer" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Dikte supportvloer" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Doorvoer support" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Horizontale Uitzetting Supportstructuur" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Acceleratie Supportvulling" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extruder Supportvulling" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Schok Supportvulling" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Dikte vullaag supportvulling" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Lijnrichting Vulling Supportstructuur" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Vulsnelheid Supportstructuur" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Acceleratie Verbindingsstructuur" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Dichtheid Verbindingsstructuur" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extruder Verbindingsstructuur" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Doorvoer supportinterface" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Supportstructuur horizontale uitbreiding" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Schok Verbindingsstructuur" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Lijnrichting interface supportstructuur" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Lijnbreedte Verbindingsstructuur" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Patroon Verbindingsstructuur" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Ondersteuning Interface Prioriteit" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Vulsnelheid Verbindingsstructuur" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Dikte Verbindingsstructuur" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Ondersteuning Interface Wandlijn" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Schok Supportstructuur" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Samenvoegafstand Supportstructuur" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Lijnafstand Supportstructuur" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Lijnbreedte Supportstructuur" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Supportstructuur raster" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Overhanghoek Supportstructuur" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Patroon Supportstructuur" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Plaatsing Supportstructuur" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Acceleratie supportdak" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Dichtheid supportdak" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extruder supportdak" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Doorvoer supportdak" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Supportdak horizontale uitbreiding" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Schok supportdak" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Lijnrichting supportdak" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Lijnafstand supportdak" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Lijnbreedte supportdak" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Patroon supportdak" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Snelheid supportdak" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Dikte Supportdak" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Aantal wandlijnen ondersteuningsdak" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Snelheid Supportstructuur" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Hoogte Traptreden Supportstructuur" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Maximale breedte traptreden supportstructuur" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Minimale hellingshoek traptreden supportstructuur" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Supportstructuur" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Afstand van Bovenkant Supportstructuur" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Aantal wandlijnen supportstructuur" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "X-/Y-afstand Supportstructuur" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Z-afstand Supportstructuur" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Geprefereerde ondersteuningslijnen" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Geprefereerde ondersteuning" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Ondersteunde Ventilatorsnelheid Skin" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Oppervlak" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Oppervlakte-energie" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Oppervlaktemodus" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Hechtingsgevoeligheid van het oppervlak." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Oppervlakte-energie." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Verwissel de printvolgorde van de binnenste en de op een na binnenste randlijn. Dit verbetert het verwijderen van de rand." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Schakel naar de rastersnijpuntvolumes die bij elke laag horen, zodat de overlappende rasters worden verweven. Als u deze instelling uitschakelt, krijgt een van de rasters al het volume in de overlap, terwijl dit uit de andere rasters wordt verwijderd." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Horizontale doelafstand tussen twee aangrenzende lagen. Als u deze instelling verkleint, worden dunnere lagen gebruikt om de randen van de lagen dichter bij elkaar te brengen." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "De X-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "De X-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "De X-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "De Y-coördinaat van de positie nabij het deel waar met het printen van elke laag kan worden begonnen." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "De Y-coördinaat van de positie nabij waar met het printen van elk deel van een laag moet worden begonnen." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Y-coördinaat van de positie waar filament in de nozzle wordt geprimed aan het begin van het printen." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "De Z-coördinaat van de positie waar filament in de nozzle wordt teruggeduwd aan het begin van het printen." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "De acceleratie tijdens het printen van de eerste laag." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "De acceleratie voor de eerste laag." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen in de eerste laag." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "De acceleratie tijdens het printen van alle binnenwanden." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "De acceleratie tijdens het printen van de vulling." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "De acceleratie tijdens het strijken." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "De acceleratie tijdens het printen." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "De acceleratie tijdens het printen van het grondvlak van de raft." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "De acceleratie tijdens het printen van de supportvloeren. Als u deze met een lagere acceleratie print, hecht het supportmateriaal beter aan de bovenzijde van het model." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "De acceleratie tijdens het printen van de supportvulling." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "De acceleratie tijdens het printen van de middelste laag van de raft." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "De acceleratie tijdens het printen van de buitenste wanden." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "De acceleratie tijdens het printen van de primepijler." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "De acceleratie tijdens het printen van de raft." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "De acceleratie tijdens het printen van de supportdaken en -vloeren. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "De acceleratie tijdens het printen van de supportdaken. Als u deze met een lagere acceleratie print, wordt de kwaliteit van de overhang verbeterd." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "De acceleratie tijdens het printen van de skirt en de brim. Normaal gebeurt dit met dezelfde acceleratie als die van de eerste laag, maar in sommige situaties wilt u de skirt of de brim wellicht met een andere acceleratie printen." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "De acceleratie tijdens het printen van de supportstructuur." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "De acceleratie tijdens het printen van de toplagen van de raft." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "De versnelling waarmee de binnenwanden van het bovenoppervlak worden geprint." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "De versnelling waarmee de buitenste muren van het bovenoppervlak worden geprint." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "De acceleratie tijdens het printen van de wanden." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "De acceleratie tijdens het printen van de bovenste skinlagen." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "De acceleratie tijdens het printen van de boven-/onderlagen." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "De acceleratie tijdens het uitvoeren van bewegingen." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "De hoeveelheid materiaal, in verhouding tot een normale skinlijn, die tijdens het strijken moet worden doorgevoerd. Als de nozzle gevuld blijft, kunnen scheuren in de bovenlaag worden gevuld. Te hoge doorvoer leidt echter tot uitstulpingen aan de zijkant van het oppervlak." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De mate van overlap tussen de vulling en de wanden als percentage van de lijnbreedte van de vulling. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De mate van overlap tussen de vulling en de wanden. Met een lichte overlap kunnen de wanden goed hechten aan de vulling." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "De intrekafstand wanneer de extruders worden gewisseld. Als u deze optie instelt op 0, wordt er niet ingetrokken. Deze waarde dient doorgaans gelijk te zijn aan de lengte van de verwarmingszone." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "De hoek tussen het horizontale vlak en het conische gedeelte boven de punt van de nozzle." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "De hoek van een dak van een pijler. Een hogere waarde zorgt voor een spits pijlerdak, een lagere waarde zorgt voor een plat pijlerdak." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "De hoek van de overhang van de buitenwanden die voor de matrijs worden gemaakt. Met 0° is de buitenshell van de matrijs verticaal, terwijl met 90° de buitenzijde van de matrijs de contouren van het model volgt." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "De hoek van de diameter van de takken terwijl ze naar beneden toe geleidelijk dikker worden. Met de hoekinstelling 0 zijn de takken over de gehele lengte even dik. Een kleine hoek verbetert de stabiliteit van de boomsupportstructuur." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "De hoek van de schuine kant van de conische supportstructuur, waarbij 0 graden verticaal en 90 horizontaal is. Met een kleinere hoek is de supportstructuur steviger, maar bestaat deze uit meer materiaal. Met een negatieve hoek is het grondvlak van de supportstructuur breder dan de top." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "De gemiddelde dichtheid van de punten die op elke polygoon in een laag worden geplaatst. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een lage dichtheid leidt dus tot een verlaging van de resolutie." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "De gemiddelde afstand tussen de willekeurig geplaatste punten op elk lijnsegment. Houd er rekening mee dat de originele punten van de polygoon worden verwijderd. Een hoge effenheid leidt dus tot een verlaging van de resolutie. Deze waarde moet hoger zijn dan de helft van de Dikte rafelig oppervlak." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Het merk van het materiaal dat gebruikt wordt." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "De standaardacceleratie van de printkopbeweging." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "De standaardtemperatuur waarmee wordt geprint. Dit moet overeenkomen met de basistemperatuur van een materiaal. Voor alle andere printtemperaturen moet een offset worden gebruikt die gebaseerd is op deze waarde" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "De standaardtemperatuur die wordt gebruikt voor het verwarmde platform. Dit moet overeenkomen met de basistemperatuur van een platform. Voor alle andere printtemperaturen moet een offset worden gebruikt die is gebaseerd op deze waarde" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "De dichtheid van de vloeren van de supportstructuur. Met een hogere waarde hecht het supportmateriaal beter aan de bovenzijde van het model." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "De dichtheid van de daken van de supportstructuur. Met een hogere waarde krijgt u een betere overhang, maar is de supportstructuur moeilijker te verwijderen." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de tweede brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "De dichtheid van de derde brugskinlaag. Met een waarde lager dan 100 worden de ruimten tussen de skinlijnen groter." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "De diepte (Y-richting) van het printbare gebied." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "De diameter van een speciale pijler." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Hiermee stelt u de diameter in van de dunste takken van de boomsupportstructuur. Dikkere takken zijn steviger. Takken die dichter bij de stam liggen, zijn dikker dan dit." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "De diameter van de bovenkant van de punt van de takken van de boomsteun." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "De diameter van het tandwiel waarmee het materiaal in de feeder wordt gevoerd." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "De diameter van de breedste takken van de boomondersteuning. Een dikkere tak is steviger; een dunnere tak neemt minder ruimte in beslag op het platform." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Het hoogteverschil tussen de hoogte van de volgende laag ten opzichte van de vorige laag." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "De afstand tussen de strijklijnen." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "De afstand tussen de nozzle en geprinte delen wanneer deze tijdens bewegingen worden gemeden." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de lijnen in de onderste laag van de raft. Als u hier een brede tussenruimte instelt, kan de raft eenvoudiger van het platform worden verwijderd." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "De afstand tussen de raftlijnen voor de middelste laag van de raft. De ruimte in het midden moet vrij breed zijn, maar toch smal genoeg om ondersteuning te bieden voor de bovenste lagen van de raft." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "De afstand tussen de raftlijnen voor de bovenste lagen van de raft. Als u een solide oppervlak wilt maken, moet de ruimte gelijk zijn aan de lijnbreedte." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "De afstand tussen de vlotlijnen voor de unieke vlotlaag van de Prime Tower. Een brede afstand maakt het eenvoudig om het vlot van de bouwplaat te verwijderen." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "De afstand vanaf de grens tussen modellen om een in elkaar grijpende structuur te genereren, gemeten in cellen. Te weinig cellen leiden tot slechte hechting." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "De afstand vanaf de rand van het model tot de buitenrand van de brim. Een bredere brim hecht beter aan het platform, maar verkleint uw effectieve printgebied." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "De afstand van de buitenkant van een model waarbij in elkaar grijpende structuren niet worden gegenereerd, gemeten in cellen." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "De afstand tussen de punt van de nozzle waarin de warmte uit de nozzle wordt overgedragen aan het filament." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "De afstand waarmee de onderste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en de wanden van de onderliggende laag. Bij lagere waarden wordt er minder materiaal gebruikt." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "De afstand waarmee de skin wordt uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden van aangrenzende lagen beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "De afstand waarmee de bovenste skinlagen worden uitgebreid in de vulling. Bij hogere waarden hecht de skin beter aan het vulpatroon en hechten de wanden op de bovenliggende laag beter aan de skin. Bij lagere waarden wordt er minder materiaal gebruikt." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "De afstand die de kop heen en weer wordt bewogen over de borstel." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "De eindpunten van de vullijnen worden verkort om materiaal te besparen. Deze instelling is de overhanghoek van de eindpunten van deze lijnen." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "De extra snelheid waarmee de nozzle tijdens het doorvoeren afkoelt. Met dezelfde waarde wordt ook de verloren verwarmingssnelheid aangeduid wanneer tijdens het doorvoeren wordt verwarmd." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de eerste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportvloeren. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportvulling. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de middelste laag van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de daken en vloeren van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportdaken. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim. Deze optie wordt gebruikt bij meervoudige doorvoer." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de skirt/brim/raft. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de supportstructuur. Deze optie wordt gebruikt in meervoudige doorvoer." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "De extruder train die wordt gebruikt voor het printen van de bovenste laag/lagen van de raft. Deze optie wordt gebruikt bij meervoudige doorvoer." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de vulling wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de binnenwanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de buitenwand wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de boven- en onderskin wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de bovenste skinlaag wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "De extruder train die voor het printen van de wanden wordt gebruikt. Deze wordt gebruikt in meervoudige doorvoer." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de grondlaag van de raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "De ventilatorsnelheid tijdens het printen van de middelste laag van de raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "De ventilatorsnelheid tijdens het printen van de raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "De ventilatorsnelheid tijdens het printen van de toplagen van de raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de vulling van de print bepalen." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "De bestandslocatie van een afbeelding waarvan de helderheidswaarden de minimale dichtheid op de bijbehorende locatie in de supportstructuur bepalen." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "De eerste lagen worden minder snel geprint dan de rest van het model, om ervoor te zorgen dat dit zich beter hecht aan het platform en om de kans dat de print slaagt te vergroten. Tijdens het printen van deze lagen wordt de snelheid geleidelijk opgevoerd." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "De ruimte tussen de laatste laag van de raft en de eerste laag van het model. Alleen de eerste laag wordt met deze waarde verhoogd om de binding tussen de raftlaag en het model te verminderen. Hierdoor is het eenvoudiger om de raft te verwijderen." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "De hoogte (Z-richting) van het printbare gebied." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "De hoogte die in de matrijs moet worden geprint boven de horizontale delen in het model." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "De hoogte waarop de ventilatoren op normale snelheid draaien. Tijdens het printen van de onderliggende lagen wordt de ventilatorsnelheid geleidelijk verhoogd van de startsnelheid ventilator naar de normale ventilatorsnelheid." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Het hoogteverschil tussen de punt van de nozzle en het rijbrugsysteem (X- en Y-as)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Het hoogteverschil tussen de punt van de nozzle en het laagste deel van de printkop." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong na wisselen extruder." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Het hoogteverschil dat wordt aangehouden tijdens een Z-sprong." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "De hoogte van elke laag in mm. Met hogere waarden print u sneller met een lagere resolutie, met lagere waarden print u langzamer met een hogere resolutie." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "De hoogte van de vulling van een opgegeven dichtheid voordat wordt overgeschakeld naar de helft van deze dichtheid." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "De hoogte van de supportvulling van een bepaalde dichtheid voordat de dichtheid wordt gehalveerd." + +msgctxt "interlocking_beam_layer_count description" +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 "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." + +msgctxt "interlocking_orientation description" +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 "De hoogte van de balken van de in elkaar grijpende structuur, gemeten in aantal lagen. Minder lagen is sterker, maar vatbaarder voor defecten." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "De hoogte van de eerste laag in mm. Met een dikkere eerste laag hecht het object beter aan het platform." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "De hoogte van de basis van de prime toren. Het verhogen van deze waarde resulteert in een stevigere prime toren omdat de basis breder zal zijn. Als deze instelling te laag is, zal de prime toren geen stevige basis hebben." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "De hoogte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden. Stel deze waarde in op nul om het trapvormige gedrag uit te schakelen." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "De horizontale afstand tussen de eerste brimlijn en de contour van de eerste laag van de print. Door een kleine tussenruimte is de brim gemakkelijker te verwijderen terwijl de thermische voordelen behouden blijven." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "De horizontale afstand tussen de skirt en de eerste laag van de print." +"Dit is de minimumafstand. Als u meerdere skirtlijnen print, worden deze vanaf deze afstand naar buiten geprint." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "De vullijnen zijn rechtgetrokken om printtijd te besparen. Dit is de grootste overhanghoek die over de lengte van de vullijn is toegestaan." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de X-as." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Het vulpatroon wordt over deze afstand verplaatst langs de Y-as." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "De binnendiameter van de nozzle. Verander deze instelling wanneer u een nozzle gebruikt die geen standaard formaat heeft." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "De schok tijdens het printen van het grondvlak van de raft." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "De schok tijdens het printen van de middelste laag van de raft." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "De schok tijdens het printen van de raft." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "De schok tijdens het printen van de toplagen van de raft." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "De grootste breedte van delen van de onderste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de onderste skinlaag op schuine vlakken in het model." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "De grootste breedte van skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "De grootste breedte van delen van bovenste skingebieden die verwijderd moeten worden. Elk skingebied dat smaller is dan deze waarde, zal verdwijnen. Hiermee kan op tijd en materiaal worden bespaard bij het printen van de bovenste/onderste skinlaag op schuine vlakken in het model." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "De laag waarop de ventilatoren op normale snelheid draaien. Als de normale ventilatorsnelheid op hoogte ingeschakeld is, wordt deze waarde berekend en op een geheel getal afgerond." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "De laagtijd waarmee de drempelwaarde tussen de normale ventilatorsnelheid en de maximale ventilatorsnelheid wordt ingesteld. Voor lagen die langzamer worden geprint, draaien de ventilatoren op normale snelheid. Bij lagen die sneller worden geprint, draaien de ventilatoren op maximale snelheid." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "De lengte waarover het materiaal wordt ingetrokken tijdens een intrekbeweging." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "De groottefactor die gebruikt wordt voor de helling van de basis van de prime toren. Als u deze waarde verhoogt, wordt de basis slanker. Als u het verlaagt, wordt de basis dikker." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Het materiaal van het platform dat in de printer geïnstalleerd is." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "De maximaal toegestane hoogte ten opzichte van de grondlaaghoogte." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "De maximale hoek voor een deel van het uitloopscherm. Hierbij is 0 graden verticaal en 90 graden horizontaal. Een kleinere hoek leidt tot minder mislukte uitloopschermen, maar zorgt ervoor dat er meer materiaal wordt gebruikt." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "De maximale hoek van een overhang nadat deze printbaar is gemaakt. Bij een hoek van 0° worden alle overhangende gedeelten vervangen door een deel van het model dat is verbonden met het platform; bij een hoek van 90° wordt het model niet gewijzigd." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "De maximale hoek van de takken terwijl ze rond het model groeien. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek om meer bereik te hebben." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Het maximale oppervlak van een gat in de basis van het model voordat het wordt verwijderd om de overhang printbaar te maken. Gaten die kleiner zijn dan dit oppervlak worden behouden. Bij een waarde van 0 mm² worden alle gaten in de basis van het model gevuld." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "De maximaal toegestane afwijking tijdens het verlagen van de resolutie voor de instelling Maximale resolutie. Als u deze waarde verhoogt, wordt de print minder nauwkeurig, maar wordt de G-code kleiner. Maximale afwijking is een limiet voor Maximale resolutie, dus als de twee tegenstrijdig zijn, wordt de Maximale afwijking altijd aangehouden." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "De maximale afstand tussen de supportstructuren in de X- en Y-richting. Wanneer afzonderlijke structuren dichter bij elkaar staan dan deze waarde, worden deze samengevoegd tot één structuur." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "De maximale afstand in mm om het filament te verplaatsen om veranderingen in de stroomsnelheid te compenseren." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "De maximaal toegestane afwijking van het doorvoergebied bij het verwijderen van tussenliggende punten van een rechte lijn. Een tussenliggend punt kan dienen als breedte-veranderend punt in een lange rechte lijn. Verwijdering van het punt leidt er dus toe dat de lijn een uniforme breedte krijgt en als gevolg daarvan een stuk van het doorvoergebied verliest (of wint). Als u deze waarde verhoogt, merkt u mogelijk een lichte onder- (of over-)doorvoer op tussen rechte parallele wanden, omdat er meer tussenliggende punten kunnen worden verwijderd die de breedte wijzigen. Uw print zal minder accuraat zijn, maar de g-code is kleiner." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de eerste laag." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "De maximale onmiddellijke snelheidsverandering van de printkop." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het strijken." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van alle binnenwanden." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de vulling." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvloeren." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportvulling." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de buitenwanden." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de primepijler." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken en -vloeren." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportdaken." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de skirt en de brim." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de supportstructuur." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de buitenste muren van het bovenoppervlak worden geprint." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "De maximale plotselinge snelheidsverandering waarmee de binnenste muren van het bovenoppervlak worden geprint." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de wanden." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de bovenste skinlagen." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het printen van de boven-/onderlagen." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "De maximale onmiddellijke snelheidsverandering tijdens het uitvoeren van bewegingen." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "De maximale lengte van de takken die via de lucht mogen worden geprint." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "De maximale snelheid van de motor in de X-richting." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "De maximale snelheid van de motor in de Y-richting." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "De maximale snelheid van de motor in de Z-richting." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "De maximale snelheid voor de doorvoer van het filament." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "De maximale breedte van de treden van het trapvormige grondvlak van de supportstructuur die op het model rust. Wanneer u een lage waarde invoert, kan de supportstructuur minder gemakkelijk worden verwijderd. Wanneer u echter een te hoge waarde invoert, kan de supportstructuur instabiel worden." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "De minimale afstand tussen de buitenzijde van de matrijs en de buitenzijde van het model." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "De minimale bewegingssnelheid van de printkop." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "De minimale temperatuur tijdens het opwarmen naar de printtemperatuur waarbij met printen kan worden begonnen." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "De minimale tijd die een extruder inactief moet zijn, voordat de nozzle wordt afgekoeld. Alleen als een extruder gedurende langer dan deze tijd niet wordt gebruikt, wordt deze afgekoeld naar de stand-bytemperatuur." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "De minimale interne overhanghoek waarbij vulling wordt toegevoegd. Bij een waarde van 0° worden objecten volledig gevuld. Bij 90° wordt er geen vulling geprint." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "De minimale overhanghoek waarbij een supportstructuur wordt toegevoegd. Bij een waarde van 0° wordt elke overhang ondersteund. Bij 90° wordt er geen supportstructuur geprint." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "De minimale bewegingsafstand voordat het filament kan worden ingetrokken. Hiermee vermindert u het aantal intrekkingen in een klein gebied." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "De minimale lengte van de skirt of de brim. Als deze minimumlengte niet wordt bereikt met het totale aantal skirt- of brimlijnen, worden er meer skirt- of brimlijnen toegevoegd totdat de minimale lengte is bereikt. Opmerking: als het aantal lijnen is ingesteld op 0, wordt dit genegeerd." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "De minimum lijnbreedte voor opvuller voor ruimte middelste lijn bij muren met meerdere lijnen. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van twee wandlijnen naar het printen van twee buitenwanden en één centrale wand in het midden. Een hogere Minimum breedte ongelijkmatige wandlijn leidt naar een hogere maximale lijnbreedte bij een gelijkmatige wand. De maximale breedte ongelijkmatige wandlijn wordt berekend als 2 * Minimum breedte gelijkmatige wandlijn." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "De minimum lijnbreedte voor normale polygonale wanden. Deze instelling bepaalt bij welke modeldikte we overschakelen van het printen van één dunne wandlijn op het printen van twee wandlijnen. Een hogere Minimum lijnbreedte gelijkmatige wand leidt tot een hogere maximum lijnbreedte voor een ongelijkmatige wand. De maximum breedte bij een gelijkmatige wandlijn wordt berekend als Lijnbreedte buitenste wand + 0,5 * Minimum lijnbreedte voor een ongelijkmatige wand." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "De minimale printsnelheid die wordt aangehouden ondanks vertragen vanwege de minimale laagtijd. Als de printer te zeer vertraagt, wordt de druk in de nozzle te laag, wat leidt tot slechte printkwaliteit." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Het minimale formaat van een lijnsegment na het slicen. Als u deze waarde verhoogt, wordt het model met een lagere resolutie geprint. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden en wordt de slicesnelheid verhoogd doordat details van het raster worden verwijderd die niet kunnen worden verwerkt." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Het minimale formaat van een bewegingslijnsegment na het slicen. Als u deze waarde verhoogt, hebben de bewegingen minder vloeiende hoeken. Hiermee kan de printer de verwerkingssnelheid van de G-code bijhouden, maar kan het model door vermijding minder nauwkeurig worden." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "De minimale helling van het gebied voordat traptreden van kracht worden. Lage waarden zouden het gemakkelijker moeten maken om support op ondieperere hellingen te verwijderen. Zeer lage waarden kunnen echter resulteren in een aantal zeer contra-intuïtieve resultaten op andere delen van het model." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "De tijd die minimaal aan het printen van een laag wordt besteed. Hierdoor wordt de printer gedwongen langzamer te printen zodat deze ten minste de ingestelde tijd gebruikt voor het printen van een laag. Hierdoor kan het geprinte materiaal voldoende afkoelen voordat de volgende laag wordt geprint. Het printen van lagen kan nog steeds minder lang duren dan de minimale laagtijd als Printkop optillen is uitgeschakeld en als anders niet zou worden voldaan aan de Minimumsnelheid." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Het minimale volume voor elke laag van de primepijler om voldoende materiaal te zuiveren." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "De diameter van een tak die moet aansluiten op het model mag maximaal toenemen door samen te voegen met takken die de bouwplaat zouden kunnen bereiken. Als u dit verhoogt, wordt de printtijd verkort, maar wordt het ondersteuningsgebied dat op het model rust vergroot" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "De naam van uw 3D-printermodel." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "De nozzle-ID voor een extruder train, bijvoorbeeld \"AA 0.4\" en \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Tijdens bewegingen mijdt de nozzle delen die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Tijdens bewegingen mijdt de nozzle supportstructuren die al zijn geprint. Deze optie is alleen beschikbaar wanneer combing ingeschakeld is." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Het aantal bodemlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Het aantal contouren dat wordt geprint rond het lineaire patroon in de basislaag van de raft." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de middelste lagen van het vlot." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon in de bovenste lagen van het vlot." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Het aantal contouren dat moet worden geprint rond het lineaire patroon van het vlot." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Het aantal opvullagen dat skinranden ondersteunt." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Het aantal initiële onderste lagen, vanaf de bouwplaat naar boven. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bodem, wordt deze afgerond naar een geheel getal." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Het aantal lagen tussen de basis en het oppervlak van de raft. Deze omvatten de het grootste deel van de dikte van de raft. Uitbreiden hiervan creëert een dikkere, stevigere raft." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Het aantal lijnen dat voor een brim wordt gebruikt. Meer lijnen zorgen voor betere hechting aan het platform, maar verkleinen uw effectieve printgebied." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Het aantal lijnen dat voor de supportbrim wordt gebruikt. Meer brimlijnen zorgen voor betere hechting aan het platform, maar kosten wat extra materiaal." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Het aantal bovenlagen op de tweede raftlaag. Dit zijn volledig gevulde lagen waarop het model rust. Met twee lagen krijgt u een gladder oppervlak dan met één laag." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Het aantal bovenlagen. Wanneer deze waarde wordt berekend aan de hand van de dikte van de bovenkant, wordt deze afgerond naar een geheel getal." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Het aantal bovenste skinlagen. Doorgaans is één bovenste skinlaag voldoende om oppervlakken van hogere kwaliteit te verkrijgen." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal wanden rond de vulling van de supportstructuur. Met een extra wand wordt de supportstructuur betrouwbaarder en kan de overhang beter worden geprint, maar wordt de printtijd verlengd en wordt meer materiaal gebruikt." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee de ondersteuningsinterfacevloer moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee het ondersteuningsinterfacedak kan worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Het aantal muren waarmee de ondersteuningsinterface moet worden omgeven. Door een muur toe te voegen, kan de ondersteuningsprint betrouwbaarder worden gemaakt en kunnen overhangen beter worden ondersteund, maar neemt de printtijd en het gebruikte materiaal toe." + +msgctxt "wall_distribution_count description" +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 "Het aantal wanden, geteld vanaf het midden, waarover de variatie moet worden gespreid. Lagere waarden betekenen dat de breedte van de buitenwanden niet verandert." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Het aantal wandlijnen. Wanneer deze waarde wordt berekend aan de hand van de wanddikte, wordt deze afgerond naar een geheel getal." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "De buitendiameter van de punt van de nozzle." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Het patroon van het vulmateriaal van de print. De lijn- en zigzagvulling veranderen per vullaag van richting, waardoor u bespaart op materiaalkosten. De raster-, driehoeks-, tri-hexagonale, kubische, achtvlaks-, afgeknotte kubus-, kruis- en concentrische patronen worden per laag volledig geprint. Gyroïde, kubische, afgeknotte kubus- en achtvlaksvullingen veranderen per laag voor een meer gelijke krachtverdeling in elke richting. Bliksemvulling minimaliseert de vulling doordat deze alleen het plafond van het object ondersteunt." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Het patroon van de supportstructuur van de print. Met de verschillende beschikbare opties print u stevige of eenvoudig te verwijderen supportstructuren." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Het patroon van de bovenste lagen." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Het patroon van de boven-/onderlagen." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Het patroon van de eerste laag aan de onderkant van de print." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Het patroon dat wordt gebruikt voor het strijken van oppervlakken." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Het patroon waarmee de vloeren van de supportstructuur worden geprint." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Het patroon waarmee de verbindingsstructuur van het model wordt geprint." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Het patroon waarmee de daken van de supportstructuur worden geprint." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "De positie nabij waar met het printen van elk deel van een laag moet worden begonnen." + +msgctxt "support_tree_angle_slow description" +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 "De geprefereerde hoek van de takken, wanneer ze het model niet hoeven te vermijden. Gebruik een lagere hoek om ze verticaler en stabieler te maken. Gebruik een hogere hoek voor takken om sneller samen te voegen." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "De voorkeursplaats van de ondersteunende structuren. Als structuren niet op de gewenste locatie kunnen worden geplaatst, worden ze elders geplaatst, zelfs als dat betekent dat ze op het model moeten worden geplaatst." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "De maximale onmiddellijke snelheidsverandering in de eerste laag." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "De vorm van het platform zonder rekening te houden met niet-printbare gebieden." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "De vorm van de printkop. Deze coördinaten hebben betrekking op de positie van de printkop. Meestal is dit de positie van de eerste extruder. De dimensies links van en vóór de printkop moeten negatieve coördinaten zijn." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "De grootte van luchtbellen op kruispunten in het kruis 3D-patroon op punten waar het patroon zichzelf raakt." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Het kleinste volume dat een doorvoerpad moet hebben, voordat coasting mogelijk is. Voor een kort doorvoerpad wordt in de Bowden-buis minder druk opgebouwd en wordt het uitgespreide volume daarom lineair geschaald. Deze waarde moet altijd groter zijn dan de waarde voor het coasting-volume." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "De snelheid (°C/s) waarmee de nozzle afkoelt, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "De snelheid (°C/s) waarmee de nozzle wordt verwarmd, gemiddeld over het venster van normale printtemperaturen en de stand-bytemperatuur." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "De snelheid waarmee alle binnenwanden worden geprint. Als u de binnenwand sneller print dan de buitenwand, verkort u de printtijd. Het wordt aangeraden hiervoor een snelheid in te stellen die ligt tussen de printsnelheid van de buitenwand en de vulsnelheid." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "De snelheid waarmee brugskinregio's worden geprint." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "De snelheid waarmee de vulling wordt geprint." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "De snelheid waarmee wordt geprint." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de grondlaag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "De snelheid waarmee brugwanden worden geprint." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "De snelheid waarmee de ventilatoren draaien bij de start van het printen. Tijdens het printen van de volgende lagen wordt de ventilatorsnelheid geleidelijk verhoogd tot de laag waarin de snelheid overeenkomt met de normale ventilatorsnelheid op hoogte." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "De snelheid waarmee de ventilatoren draaien voordat de drempelwaarde wordt bereikt. Wanneer een laag sneller wordt geprint dan de drempelwaarde, wordt de ventilatorsnelheid geleidelijk verhoogd tot de maximale ventilatorsnelheid." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "De snelheid waarmee de ventilatoren draaien bij de minimale laagtijd. Wanneer de drempelwaarde wordt bereikt, wordt de ventilatorsnelheid geleidelijk verhoogd van de normale ventilatorsnelheid naar de maximale ventilatorsnelheid." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt geprimed." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt geprimed." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging na het wisselen van de nozzles wordt geprimed." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken en geprimed." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken en geprimed." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging tijdens het wisselen van de nozzles wordt ingetrokken." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging wordt ingetrokken." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "De snelheid waarmee het filament tijdens een intrekbeweging voor afvegen wordt ingetrokken." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "De snelheid waarmee het filament wordt ingetrokken. Een hogere intreksnelheid werkt beter, maar bij een erg hoge intreksnelheid kan het filament gaan haperen." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "De snelheid waarmee de supportvloer wordt geprint. Als u deze langzamer print, hecht het supportmateriaal beter aan de bovenzijde van het model." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "De snelheid waarmee de supportvulling wordt geprint. Als u de vulling langzamer print, wordt de stabiliteit verbeterd." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "De snelheid waarmee de middelste laag van de raft wordt geprint. Deze laag moet vrij langzaam worden geprint, omdat er vrij veel materiaal uit de nozzle komt." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "De snelheid waarmee de buitenwanden worden geprint. Als u de buitenwand langzamer print, verhoogt u de uiteindelijke kwaliteit van de skin. Een groot verschil tussen de printsnelheid van de binnenwand en de printsnelheid van de buitenwand kan echter een negatief effect hebben op de kwaliteit." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "De snelheid waarmee de primepijler wordt geprint. Als u de primepijler langzamer print, wordt deze stabieler. Dit is zinvol wanneer de hechting tussen de verschillende filamenten niet optimaal is." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "De snelheid waarmee de printventilatoren draaien." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "De snelheid waarmee de raft wordt geprint." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "De snelheid waarmee de supportdaken en -vloeren worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "De snelheid waarmee de supportdaken worden geprint. Als u deze langzamer print, wordt de kwaliteit van de overhang verbeterd." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "De snelheid waarmee de skirt en de brim worden geprint. Normaal gebeurt dit met dezelfde snelheid als de snelheid van de eerste laag, maar in sommige situaties wilt u de skirt of de brim mogelijk met een andere snelheid printen." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "De snelheid waarmee de supportstructuur wordt geprint. Als u de supportstructuur sneller print, kunt u de printtijd aanzienlijk verkorten. De kwaliteit van het oppervlak van de supportstructuur is niet belangrijk, aangezien deze na het printen wordt verwijderd." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "De snelheid waarmee de toplagen van de raft worden geprint. Deze lagen moeten iets langzamer worden geprint, zodat de nozzle de aangrenzende oppervlaktelijnen langzaam kan effenen." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "De snelheid waarmee de binnenwanden van het bovenoppervlak worden geprint." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "De snelheid waarmee de buitenste wanden van het bovenoppervlak worden geprint." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "De snelheid waarmee de verticale Z-beweging wordt gemaakt voor Z-sprongen. Dit is meestal lager dan de printsnelheid, omdat het platform of de rijbrug van de machine moeilijker te verplaatsen is." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "De snelheid waarmee wanden worden geprint." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "De snelheid waarmee over de bovenste laag wordt bewogen." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "De snelheid waarmee het filament wordt ingetrokken om het recht af te breken." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "De snelheid waarmee bovenste skinlagen worden geprint." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "De snelheid waarmee boven-/onderlagen worden geprint." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "De snelheid waarmee bewegingen plaatsvinden." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "De snelheid waarmee de printkop tijdens coasting beweegt ten opzichte van de snelheid voor het doorvoerpad. Hiervoor wordt een waarde van iets minder dan 100% aangeraden, omdat de druk in de bowden-buis zakt tijdens een coasting-beweging." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren. Heeft geen invloed op de hechtstructuren van het platform zelf, zoals brim en raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "De snelheid waarmee de eerste laag wordt geprint. Hiervoor wordt een lagere waarde aanbevolen om hechting aan het platform te verbeteren." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "De snelheid van de bewegingen tijdens het printen van de eerste laag. Hiervoor wordt een lagere waarde aanbevolen om te voorkomen dat eerder geprinte delen van het platform worden getrokken. De waarde van deze instelling kan automatisch worden berekend uit de verhouding tussen de bewegingssnelheid en de printsnelheid." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "De temperatuur waarbij het filament wordt afgebroken om het recht af te breken." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "De omgevingstemperatuur waarin wordt geprint. Als deze waarde is ingesteld op 0, wordt de temperatuur van het werkvolume niet aangepast." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "De temperatuur van de nozzle op de momenten waarop een andere nozzle wordt gebruikt voor het printen." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "De temperatuur waarnaar alvast kan worden afgekoeld net voordat het printen wordt beëindigd." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "De temperatuur die gebruikt wordt voor het printen van de eerste laag." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "De temperatuur waarmee wordt geprint." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "De temperatuur van het verwarmde platform voor de eerste laag. Als de temperatuur 0 is, wordt het platform bij de eerste laag niet verwarmd." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "De temperatuur van het verwarmde platform. Als de temperatuur is ingesteld op 0, wordt het platform niet verwarmd." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "De temperatuur die wordt gebruikt om materiaal te zuiveren, moet ongeveer gelijk zijn aan de hoogst mogelijke printtemperatuur." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "De dikte van de onderlagen in de print. Het aantal onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "De dikte van de extra vulling die skinranden ondersteunt." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "De dikte van de verbindingsstructuur waar dit het model aan de onder- of bovenkant raakt." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "De dikte van de supportvloeren. Hiermee wordt het aantal dichte lagen bepaald dat wordt geprint op plekken van een model waarop een supportstructuur rust." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "De dikte van de supportdaken. Hiermee wordt het aantal dichte lagen bepaald aan de bovenkant van de supportstructuur waarop het model rust." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "De dikte van de bovenlagen in de print. Het aantal bovenlagen wordt bepaald door het delen van deze waarde door de laaghoogte." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "De dikte van de boven-/onderlagen in de print. Het aantal boven-/onderlagen wordt bepaald door het delen van deze waarde door de laaghoogte." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "De dikte van de wanden in horizontale richting. Het aantal wanden wordt bepaald door het delen van deze waarde door de breedte van de wandlijn." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "De dikte per laag vulmateriaal. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "De dikte per laag materiaal supportvulling. Deze waarde moet altijd een veelvoud van de laaghoogte zijn en wordt voor het overige afgerond." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "De G-code-versie die moet worden gegenereerd." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Het type materiaal dat gebruikt wordt." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Hiermee stelt u volume in dat anders zou worden afgevoerd. Deze waarde dient zo dicht mogelijk bij de berekende waarde van de nozzlediameter te liggen." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "De breedte (X-richting) van het printbare gebied." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "De breedte van de brim die onder de support wordt geprint. Een bredere brim kost meer materiaal, maar hecht beter aan het platform." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "De breedte van de in elkaar grijpende structuurbalken." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "De breedte van de brim/basis van de prime toren. Een grotere basis verbetert de hechting aan het bouwplateau, maar vermindert ook het effectieve printgebied." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "De breedte van de primepijler." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "De breedte van de trilling. Het wordt aangeraden hiervoor een waarde in te stellen die lager is dan de breedte van de buitenwand, omdat de binnenwand niet verandert." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Dit is het gebied waarop het maximaal aantal intrekbewegingen van toepassing is. Deze waarde moet ongeveer overeenkomen met de Intrekafstand, waarmee in feite het aantal intrekbewegingen op hetzelfde deel van het materiaal wordt beperkt." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "De X-coördinaat van de positie van de primepijler." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "De Y-coördinaat van de positie van de primepijler." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Er zijn supportrasters aanwezig in de scène. Deze instelling wordt beheerd door Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Met deze optie controleert u de afstand die de extruder moet coasten voordat een brugwand begint. Met coasting voordat de brug begint, vermindert u de druk in de nozzle en krijgt u mogelijk een vlakkere brug." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het basisvlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van het midden van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bepaalt hoeveel binnenhoeken in de raftcontour worden afgerond. Naar binnen gebogen hoeken worden tot een halve cirkel afgerond met een straal die gelijk is aan de hier opgegeven waarde. Met deze instellingen worden ook gaten in de raftcontour verwijderd die kleiner zijn dan een dergelijke cirkel." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Deze instelling bepaalt hoeveel binnenhoeken in de omtrek van de bovenkant van het vlot worden afgerond. Binnenhoeken worden afgerond tot een halve cirkel met een straal gelijk aan de hier opgegeven waarde. Deze instelling verwijdert ook gaten in de omtrek van het vlot die kleiner zijn dan zo'n cirkel." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Deze instelling beperkt het aantal intrekbewegingen dat kan worden uitgevoerd binnen het gebied Minimaal afstandsgebied voor intrekken. Extra intrekbewegingen binnen dit gebied worden genegeerd. Hiermee voorkomt u dat hetzelfde stuk filament meerdere keren wordt ingetrokken en dus kan worden geplet en kan gaan haperen." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Maak een wand rond het model. Deze vangt (warme) lucht en biedt bescherming tegen externe luchtbewegingen. De optie is met name geschikt voor materialen die snel kromtrekken." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Puntdiameter" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in de richting XY (horizontaal)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Om te compenseren voor het krimpen van het materiaal wanneer het afkoelt, wordt het model met deze factor geschaald in Z-richting (verticaal)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Het model wordt met deze factor geschaald ter compensatie van het krimpen van het materiaal tijdens het afkoelen." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Bovenlagen" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Uitbreidingsafstand van bovenste skinlaag" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Verwijderingsbreedte bovenste skinlaag" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Versnelling van de binnenwand op bovenlaag" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Schok van de buitenste muur van het bovenoppervlak" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Snelheid van de binnenste wand van het bovenoppervlak" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Stroom van de binnenste wand(en) van het bovenoppervlak" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Versnelling van de buitenste wand op bovenlaag" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Stroom van de buitenste wand van het bovenoppervlak" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Schok van de binnenste muur van het bovenoppervlak" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Snelheid van de buitenste wand van het bovenoppervlak" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Acceleratie bovenskin" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extruder bovenskin" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Bovenste oppervlak skindoorvoer" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Schok bovenskin" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Bovenste skinlagen" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Lijnrichting bovenskin" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Lijnbreedte bovenskin" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Patroon bovenskin" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Snelheid bovenskin" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Dikte Bovenkant" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Van boven- en/of onderoppervlakken van het object met een hoek die groter is dan deze instelling, wordt de boven-/onderskin niet uitgebreid. Hiermee wordt uitbreiding voorkomen van smalle skingebieden die worden gemaakt wanneer het modeloppervlak een nagenoeg verticale helling heeft. Bij een hoek van 0° (horizontaal) wordt er geen skin uitgebreid; bij een hoek van 90° (verticaal) wordt alle skin uitgebreid." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Boven-/onderkant" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Acceleratie Boven-/Onderkant" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extruder Boven-/Onderkant" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Doorvoer boven/onder" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Schok Boven-/Onderkant" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Lijnrichtingen boven-/onderkant" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Lijnbreedte Boven-/onderkant" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Patroon Boven-/Onderkant" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Snelheid Boven-/Onderkant" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Dikte Boven-/Onderkant" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Platform Aanraken" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Pijlerdiameter" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Hoek van Pijlerdak" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Omzettingsmatrix die moet worden toegepast op het model wanneer dit wordt geladen vanuit een bestand." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Past de plaatsing van de supportstructuur aan. De plaatsing kan worden ingesteld op Platform aanraken of Overal. Wanneer deze optie ingesteld is op Overal, worden de supportstructuren ook op het model geprint." +msgctxt "travel label" +msgid "Travel" +msgstr "Beweging" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Bewegingsacceleratie" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Mijdafstand Tijdens Bewegingen" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Bewegingsschok" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Bewegingssnelheid" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Behandel het model alleen als oppervlak, volume of volumen met losse oppervlakken. In de normale printmodus worden alleen omsloten volumen geprint. Met de optie 'Oppervlak' wordt een enkele wand geprint waarbij het rasteroppervlak wordt gevolgd zonder vulling en zonder boven-/onderskin. Met de optie 'Beide' worden omsloten volumen normaal geprint en eventuele resterende polygonen als oppervlakken." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Boom" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-hexagonaal" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Driehoeken" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Stamdiameter" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Overlappende Volumes Samenvoegen" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Niet-ondersteunde wanden die korter zijn dan deze waarde, worden geprint met de normale wandinstellingen. Langere niet-ondersteunde wanden worden geprint met de instellingen voor brugwanden." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Adaptieve lagen gebruiken" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Pijlers Gebruiken" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Gebruik een aparte acceleratiesnelheid voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de acceleratiewaarde van de geprinte lijn op de bestemming." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Gebruik een apart schokpercentage voor verplaatsingen. Indien uitgeschakeld, gebruikt de beweging de schokwaarde van de geprinte lijn op de bestemming." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Gebruik relatieve extrusie in plaats van absolute extrusie. Bij het gebruik van relatieve E-steps wordt het nabewerken van G-code gemakkelijker. Deze optie wordt echter niet door alle printers ondersteund en kan lichte afwijkingen veroorzaken in de hoeveelheid afgezet materiaal ten opzichte van absolute E-steps. Ongeacht deze instelling wordt de extrusiemodus altijd ingesteld op absoluut voordat er een G-code-script wordt uitgevoerd." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Gebruik speciale pijlers om delen met minimale overhang te ondersteunen. Deze pijlers hebben een grotere diameter dan het deel dat ze ondersteunen. Bij de overhang neemt de diameter van de pijlers af en vormen ze een dak." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Gebruik dit raster om de vulling aan te passen van andere rasters waarmee dit raster overlapt. Met deze optie vervangt u vulgebieden van andere rasters met gebieden van dit raster. Het wordt aangeraden voor dit raster slechts één wand en geen boven-/onderskin te printen." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Gebruik dit raster om steunvlakken op te geven. Deze functie kan worden gebruikt om supportstructuur te genereren." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Gebruik dit raster om op te geven waar geen enkel deel van het model mag worden gedetecteerd als overhang. Deze functie kan worden gebruikt om ongewenste supportstructuur te verwijderen." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Door de gebruiker opgegeven" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Verticale schaalfactor krimpcompensatie" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Verticale tolerantie in de gesneden lagen. De contouren van een laag kunnen worden normaal gesproken gegenereerd door dwarsdoorsneden te nemen door het midden van de dikte van de laag (Midden). Daarnaast kan elke laag gebieden hebben die over de gehele dikte van de laag binnen het volume vallen (Exclusief), of kan een laag gebieden hebben die overal binnen de laag vallen (Inclusief). Met Inclusief worden de meeste details behouden, met Exclusief verkrijgt u de beste pasvorm en met Midden behoudt u het originele oppervlak het meest." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Wachten op verwarmen van platform" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Wachten op verwarmen van nozzle" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Wandacceleratie" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Aantal wanden voor distributie" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Wandextruder" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Wanddoorvoer" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Wandschok" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Aantal Wandlijnen" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Lijnbreedte Wand" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Wandvolgorde" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Wandsnelheid" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Wanddikte" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Lengte wandovergang" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Filterafstand wandovergang" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Filtermarge wandovergang" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Drempelhoek wandovergang" + +msgctxt "shell label" +msgid "Walls" +msgstr "Wanden" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Wanden die overhangen in een hoek groter dan deze waarde, worden geprint met instellingen voor overhangende wanden. Wanneer de waarde 90 is, wordt een wand niet als een overhangende wand gezien. Een overhang die wordt ondersteund door ondersteuning wordt ook niet als overhang gezien." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Indien ingeschakeld, worden gereedschapsbanen gecorrigeerd voor printers met vloeiende bewegingsplanners. Kleine bewegingen die afwijken van de algemene richting van het gereedschapspad worden afgevlakt om vloeiende bewegingen te verbeteren." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Wanneer deze optie is ingeschakeld, wordt de volgorde geoptimaliseerd waarin de vullijnen worden geprint om de afgelegde beweging te reduceren. De reductie in bewegingstijd die wordt bereikt, is in hoge mate afhankelijk van het model dat wordt geslicet, het vulpatroon, de dichtheid enz. Houd er rekening mee dat de slicetijd voor modellen met veel kleine vulgebieden aanzienlijk kan worden verlengd." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Wanneer deze optie ingeschakeld is, wordt de ventilatorsnelheid voor het koelen van de print gewijzigd voor de skinregio's direct boven de supportstructuur." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Als deze optie ingeschakeld is, zijn de Z-naadcoördinaten relatief ten opzichte van het midden van elk deel. Als de optie uitgeschakeld is, staan de coördinaten voor een absolute positie op het platform." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Wanneer dit groter dan nul is, vindt bij een combing-beweging die langer is dan deze afstand, intrekking plaats. Wanneer dit nul is, is er geen maximum en vindt bij combing-bewegingen geen intrekking plaats." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Als dit groter is dan nul, wordt de horizontale gatexpansie geleidelijk toegepast op kleine gaten (kleine gaten worden meer uitgebreid). Indien ingesteld op nul, wordt de horizontale gatexpansie toegepast op alle gaten. Gaten groter dan de maximale diameter van de horizontale gatexpansie worden niet vergroot." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Als de horizontale uitzetting van het gat groter is dan nul, is dit de hoeveelheid offset die op alle gaten in elke laag wordt toegepast. Positieve waarden vergroten de grootte van de gaten, negatieve waarden verkleinen de grootte van de gaten. Wanneer deze instelling is ingeschakeld, kan deze verder worden afgesteld met Maximum diameter horizontale uitzetting gaten." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van brugskinregio's wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van brugwanden wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van de tweede brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Tijdens het printen van de derde brugskinlaag wordt de hoeveelheid materiaal die wordt doorgevoerd, met deze waarde vermenigvuldigd." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Wanneer de minimale snelheid wordt bereikt vanwege de minimale laagtijd, wordt de printkop van de print verwijderd totdat de minimale laagtijd bereikt is." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Als het model kleine verticale gaten van slechts een paar lagen heeft, bevindt er zich doorgaans een skin rond die lagen in de kleine ruimte. Schakel deze instelling in om geen skin te genereren als de verticale tussenruimte erg klein is. Zo verloopt printen en slicen sneller, maar technisch nadeel is dat de vulling aan de lucht wordt blootgesteld." + +msgctxt "wall_transition_angle description" +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 "Wanneer u overgangen moet maken tussen even en oneven aantallen wanden. Een wigvorm met een hoek die groter is dan deze instelling, heeft geen overgangen. Er worden geen wanden geprint in het midden om de overblijvende ruimte te vullen. Door deze instelling kleiner te maken, reduceert u het aantal en de lengte van deze centrumwanden. Dit kan echter leiden tot openingen of een te hoge doorvoer." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Bij de overgang tussen verschillende aantallen wanden naarmate het onderdeel dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen voor het splitsen of samenvoegen van wandlijnen." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Tijdens het afvegen wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Tijdens het intrekken wordt het platform omlaag gebracht om ruimte te creëren tussen de nozzle en de print. Hiermee wordt voorkomen dat de nozzle de print raakt tijdens een beweging en wordt de kans verkleind dat de print van het platform wordt gestoten." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Hiermee bepaalt u of de optie X-/Y-afstand supportstructuur voorrang krijgt boven de optie Z-afstand supportstructuur of vice versa. Wanneer X/Y voorrang krijgt boven Z, kan de X-/Y-afstand de supportstructuur wegduwen van het model, waardoor de daadwerkelijke Z-afstand tot de overhang wordt beïnvloed. Dit kan worden uitgeschakeld door de X-/Y-afstand niet toe te passen rond een overhang." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Hiermee geeft u aan of de X/Y-coördinaten van de nul-positie van de printer zich in het midden van het printbare gebied bevinden." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Of de eindstop op de X-as zich in positieve (hoog X-coördinaat) of negatieve richting (laag X-coördinaat) bevindt." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Of de eindstop op de Y-as zich in positieve (hoog Y-coördinaat) of negatieve richting (laag Y-coördinaat) bevindt." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Of de eindstop op de Z-as zich in positieve (hoog Z-coördinaat) of negatieve richting (laag Z-coördinaat) bevindt." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Hiermee bepaalt u of de extruders één verwarming delen in plaats van dat elke extruder zijn eigen verwarming heeft." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Hiermee bepaalt u of de extruders één nozzle delen in plaats van dat elke extruder zijn eigen nozzle heeft. Wanneer dit wordt ingesteld op 'true', wordt verwacht dat het G-code-script voor het opstarten van de printer alle extruders correct instelt in een initiële intrekstatus die bekend is en onderling compatibel is (nul of één filament niet ingetrokken). In dat geval wordt de initiële intrekstatus per extruder beschreven door de parameter 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Hiermee geeft u aan of een verwarmd platform aanwezig is." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Of de machine in staat is de temperatuur van het werkvolume te stabiliseren." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Hiermee bepaalt u of het object in het midden van het platform moet worden gecentreerd (0,0) of dat het coördinatensysteem moet worden gebruikt waarin het object opgeslagen is." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Hiermee geeft u aan of u de temperatuur wilt reguleren vanuit Cura. Schakel deze optie uit als u de nozzletemperatuur buiten Cura om wilt reguleren." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de platformtemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de platformtemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Hiermee bepaalt u of aan het begin van de G-code opdrachten voor de nozzletemperatuur moeten worden ingevoegd. Wanneer de start-g-code al opdrachten voor de nozzletemperatuur bevat, wordt deze instelling automatisch uitgeschakeld door de Cura-frontend." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Hiermee bepaalt u of u het afvegen van de nozzle tussen lagen wilt opnemen in de G-code. Het inschakelen van deze optie kan het gedrag van het intrekken bij de laagwissel beïnvloeden. Gebruik de instellingen voor Intrekken voor afvegen om het intrekken te regelen bij lagen waarbij het afveegscript actief is." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Hiermee bepaalt u of de opdracht moet worden ingevoegd dat bij aanvang moet worden gewacht totdat het platform op temperatuur is." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Hiermee bepaalt u of het filament voor het printen met een blob wordt geprimed. Met het inschakelen van deze instelling wordt verzekerd dat er vanuit de extruder materiaal bij de nozzle beschikbaar is voordat het printen start. Het printen van een brim of skirt kan tevens fungeren als primen. In dat geval kan door het uitschakelen van deze instelling tijd worden bespaard." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Hiermee bepaalt u of alle modellen laag voor laag moeten worden geprint of dat eerst het ene model helemaal klaar moet zijn voordat aan het volgende wordt begonnen. Eén voor één printen is mogelijk als a) slechts één extruder is ingeschakeld en b) alle modellen zodanig zijn gescheiden dat de hele printkop ertussen kan bewegen en alle modellen lager zijn dan de afstand tussen de nozzle en de X/Y-assen." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Hiermee bepaalt u of verschillende varianten van deze machine worden getoond. Deze worden beschreven in afzonderlijke json-bestanden." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Hiermee bepaalt u of u voor het intrekken van materiaal firmwareopdrachten voor intrekken (G10/G11) gebruikt in plaats van de eigenschap E in G1-opdrachten." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Hiermee bepaalt u of bij aanvang moet worden gewacht totdat de nozzle op temperatuur is." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Breedte van een enkele vullijn." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Breedte van een enkele lijn van het supportdak of de supportvloer." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Breedte van een enkele lijn aan de bovenkant van de print." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "De breedte van een enkele lijn. Over het algemeen dient de breedte van elke lijn overeen te komen met de breedte van de nozzle. Wanneer deze waarde echter iets wordt verlaagd, resulteert dit in betere prints." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Breedte van een enkele lijn van de primepijler." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Breedte van een enkele skirt- of brimlijn." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Breedte van een enkele lijn van de supportvloer." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Breedte van een enkele lijn van het supportdak." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Breedte van een enkele lijn van de supportstructuur." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Breedte van een enkele lijn aan de boven-/onderkant." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Breedte van een enkele wandlijn voor alle wandlijnen, behalve de buitenste." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Breedte van een enkele wandlijn." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Breedte van de lijnen van de onderste laag van de raft. Deze lijnen moeten dik zijn om een betere hechting aan het platform mogelijk te maken." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Breedte van de lijnen in de middelste laag van de raft. Als u voor de tweede laag meer materiaal gebruikt, hechten de lijnen beter aan het platform." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "De breedte van de lijnen in de bovenkant van de raft. Dit kunnen dunne lijnen zijn, zodat de bovenkant van de raft glad wordt." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "De breedte van de buitenste lijn van de wand. Wanneer deze waarde wordt verlaagd, kan nauwkeuriger worden geprint." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Breedte van de wand die dunne elementen van het model vervangt (volgens de minimum elementgrootte). Als de Minimumbreedte wandlijn dunner is dan de dikte van het element, wordt de wand even dik als het element zelf." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "X-positie afveegborstel" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sprongsnelheid voor afvegen" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Inactieve nozzle vegen op primepijler" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Verplaatsingsafstand voor afvegen" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Nozzle afvegen tussen lagen" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Afvegen pauzeren" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Aantal afveegbewegingen" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Intrekafstand voor afvegen" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Intrekken voor afvegen inschakelen" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Extra primehoeveelheid na intrekken voor afvegen" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Primesnelheid Intrekken voor afvegen" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Intreksnelheid voor afvegen (intrekken)" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Intreksnelheid voor afvegen" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Z-sprong afvegen" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Hoogte Z-sprong voor afvegen" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Binnen Vulling" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Tool voor actief schrijven na het verzenden van tijdelijke opdrachten naar inactieve tool. Vereist voor afdrukken met dubbele extruder met Smoothie of andere firmware met modale toolopdrachten." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X-eindstop in positieve richting" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "X-positie waar afveegscript start." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y krijgt voorrang boven Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y-eindstop in positieve richting" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z-eindstop in positieve richting" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Z-sprong na Wisselen Extruder" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Hoogte Z-sprong na wisselen extruder" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Hoogte Z-sprong" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Z-sprong Alleen over Geprinte Delen" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Snelheid Z-sprong" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Z-sprong wanneer ingetrokken" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Uitlijning Z-naad" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z-naadpositie" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relatieve Z-naad" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z-naad X" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z-naad Y" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z krijgt voorrang boven X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" + +msgctxt "travel description" +msgid "travel" +msgstr "beweging" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "Of de koelventilatoren moeten worden geactiveerd bij een spuitkopwissel. Dit kan helpen om doorsijpelen te verminderen omdat de sproeier sneller afkoelt:
    • Ongewijzigd: houd de ventilatoren zoals ze waren
    • Alleen laatste extruder:schakel de ventilator van de laatstgebruikte extruder in, maar schakel de andere uit (als die er zijn). Dit is nuttig indien u volledig aparte extruders heeft.
    • Alle ventilatoren: schakel alle ventilatoren in bij een spuitkopwissel. Dit is nuttig indien u een enkele koelventilator heeft, of meerdere ventilatoren die dicht bij elkaar zitten.
    " + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Alle ventilatoren" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Koeling tijdens extruderwissel" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Beheer de ruimtelijke relatie tussen de z-naad van de ondersteunende structuur en het eigenlijke 3D-model. Controle hierover is cruciaal omdat het gebruikers in staat stelt om de ondersteunende structuren na het printen naadloos te verwijderen, zonder schade of sporen op het geprinte model." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Min. Z-naadafstand van model" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Vermenigvuldiging voor de infill op de eerste lagen van de drager. Dit verhogen kan helpen voor de bedhechting." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Alleen laatste extruder" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Plaats de z-naad op een polygoonvertex. Door dit uit te schakelen kan de naad ook tussen vertexen geplaatst worden. (Denk eraan dat dit niet de beperkingen opheft om de naad op een niet-ondersteunde overhang te plaatsen)." + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Minimale wanddikte primaire toren" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Flow" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Infilloverlap raftbasis" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Infilloverlappercentage raftbasis" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Flow raft" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Flow raftinterface" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Infilloverlap raftinterface" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Infilloverlappercentage raftinterface" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Z-offset raftinterface" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Flow raftoppervlak" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Infilloverlap raftoppervlak" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Infilloverlappercentage raftoppervlak" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Z-offset raftoppervlak" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Naad boven wandhoek" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Ondersteuning vermenigvuldigen infilldichtheid eerste laag" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Ondersteuning Z-naad weg van model" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "De hoeveelheid materiaal, ten opzichte van een normale extrusielijn, die uitsteekt bij het printen van de raftbasis. Een verhoogde flow kan de hechting en de structurele sterkte van de raft verbeteren." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "De hoeveelheid materiaal, ten opzichte van een normale extrusielijn, die uitsteekt bij het printen van de raftinterface. Een verhoogde flow kan de hechting en de structurele sterkte van het vlot verbeteren." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "De hoeveelheid materiaal, ten opzichte van een normale extrusielijn, die uitsteekt bij het printen van de raft. Een verhoogde flow kan de hechting en de structurele sterkte van het vlot verbeteren." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "De hoeveelheid materiaal, ten opzichte van een normale extrusielijn, die uitsteekt bij het bedrukken van het raftoppervlak. Een verhoogde flow kan de hechting en de structurele sterkte van de raft verbeteren." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De hoeveelheid overlap tussen de infill en de wanden van de raftbasis, als percentage van de breedte van de infill-lijn. Een kleine overlap zorgt ervoor dat de wanden stevig op de infill aansluiten." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De hoeveelheid overlap tussen de infill en de wanden van de raftbasis. Een kleine overlap zorgt ervoor dat de wanden stevig op de infill aansluiten." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De hoeveelheid overlap tussen de infill en de wanden van de raftinterface, als percentage van de breedte van de infill-lijn. Een kleine overlap zorgt ervoor dat de wanden stevig op de infill aansluiten." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De hoeveelheid overlap tussen de infill en de wanden van de raftinterface. Een kleine overlap zorgt ervoor dat de wanden stevig op de infill aansluiten." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De hoeveelheid overlap tussen de infill en de wanden van het raftoppervlak, als percentage van de breedte van de infill-lijn. Een kleine overlap zorgt ervoor dat de wanden stevig op de infill aansluiten." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "De hoeveelheid overlap tussen de infill en de wanden van het raftoppervlak. Een kleine overlap zorgt ervoor dat de wanden stevig op de infill aansluiten." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "De afstand tussen het model en de ondersteuningsstructuur op de naad van de z-as." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "De minimale dikte van de wand van de primaire toren. U kunt deze dikte verhogen om de primaire toren sterker te maken." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Probeer naden te voorkomen bij muren die verder overhangen dan deze hoek. Als de waarde 90 is, worden geen muren als overhangend behandeld." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Ongewijzigd" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Bij het printen van de eerste laag van de raftinterface: gebruik deze offset om de hechting tussen de basis en de interface aan te passen. Een negatieve offset zou de hechting moeten verbeteren." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Bij het printen van de eerste laag van het raftoppervlak: gebruik deze offset om de hechting tussen de interface en het oppervlak aan te passen. Een negatieve offset zou de hechting moeten verbeteren." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Z-naad op vertex" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Voeg extra lijnen toe aan het invulpatroon om de skins erboven te ondersteunen. Deze optie voorkomt gaten of plastic klodders die soms te zien zijn in complex gevormde skins doordat de invulling eronder de skinlaag die erboven wordt geprint niet correct ondersteunt. 'Wanden' ondersteunt alleen de contouren van de skin, terwijl 'Wanden en lijnen' ook de uiteinden van de lijnen ondersteunt die de skin vormen." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Constructieventilatorsnelheid op hoogte" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Constructieventilatorsnelheid op laag" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Ventilatornummer constructievolume " + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Bepaalt de lengte van elke stap in de stroomverandering bij het extruderen langs de schuine naad. Een kleinere afstand resulteert in een nauwkeurigere maar ook complexere G-code." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Bepaalt de lengte van de schuine naad, een naadtype dat de Z-naad minder zichtbaar moet maken. Moet hoger zijn dan 0 om effectief te zijn." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duur van elke stap in de geleidelijke stroomverandering" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Geleidelijke stroomwijzigingen inschakelen. Als deze optie is ingeschakeld, wordt de stroom geleidelijk verhoogd/verlaagd tot de doelstroom. Dit is handig voor printers met een bowdenbuis waarbij de stroom niet onmiddellijk verandert wanneer de extrudermotor start/stopt." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Extra invullijnen ter ondersteuning van skins" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Voor elke af te leggen afstand die langer is dan deze waarde, wordt de materiaalstroom opnieuw ingesteld op de doelstroom van de paden." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Stapgrootte geleidelijke stroomdiscretisatie" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Geleidelijke stroom ingeschakeld" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Maximale versnelling voor geleidelijke stroom" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Maximale stroomversnelling eerste laag" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Maximale versnelling voor geleidelijke stroomveranderingen" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Minimumsnelheid voor geleidelijke stroomveranderingen voor de eerste laag" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Geen" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Buitenwandversnelling" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Buitenwandvertraging" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Snelheidsverhouding buitenwand" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Snelheid splitafstand buitenwand" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Startsnelheidsverhouding buitenwand" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Stroomduur opnieuw instellen" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Lengte schuine naad" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Starthoogte schuine naad" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Staplengte schuine naad" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "De hoogte waarop de ventilatoren op normale ventilatorsnelheid draaien. Op de lagen hieronder neemt de ventilatorsnelheid geleidelijk toe van de initiële ventilatorsnelheid naar de normale ventilatorsnelheid." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "De laag waarbij de bouwventilatoren op volle ventilatorsnelheid draaien. Deze waarde wordt berekend en afgerond op een heel getal." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "Het nummer van de ventilator die het constructievolume koelt. Als dit is ingesteld op 0, betekent dit dat er geen constructievolumeventilator is." + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "De verhouding van de geselecteerde laaghoogte waarop de schuine naad zal beginnen. Een lager getal resulteert in een grotere naadhoogte. Moet lager zijn dan 100 om effectief te zijn." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Dit is de versnelling waarmee men de topsnelheid bereikt als men een buitenwand afdrukt." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Dit is de vertraging waarmee men het afdrukken van een buitenwand beëindigt." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Dit is de maximale lengte van een extrusiepad bij het splitsen van een langer pad om de versnelling/vertraging van de buitenwand toe te passen. Een kleinere afstand zorgt voor een preciezere maar ook uitgebreide G-code." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Dit is de verhouding van de topsnelheid om mee te eindigen bij het printen van een buitenwand." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Dit is de verhouding van de topsnelheid om mee te beginnen bij het printen van een buitenwand." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Alleen wanden" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Wanden en lijnen" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Wanden die meer oversteken dan deze hoek worden afgedrukt met behulp van de instellingen voor overhangende wanden. Als de waarde 90 is, worden er geen wanden behandeld als overhangend. Overhangen die ondersteund worden door ondersteuning worden ook niet behandeld als overhang. Daarnaast wordt elke lijn die voor minder dan de helft overhangt ook niet behandeld als overhang." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Een lijst met lijnrichtingen in hele getallen om te gebruiken wanneer de onderste skinlagen het lijn- of zigzagpatroon gebruiken. Elementen uit de lijst worden opeenvolgend gebruikt naarmate de lagen vorderen en wanneer het einde van de lijst is bereikt, begint het opnieuw bij het begin. De lijstitems worden gescheiden door komma's en de hele lijst staat tussen vierkante haakjes. Default is een lege lijst, hetgeen inhoudt dat de traditionele standaardhoeken worden gebruikt (45 en 135 graden)." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Acceleratie onderzijde binnenwand" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Jerk onderzijde binnenwand" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Snelheid onderzijde binnenwand" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Flow onderzijde binnenwand(en)" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Acceleratie onderzijde buitenwand" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Flow onderzijde buitenwand" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Jerk onderzijde buitenwand" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Snelheid onderzijde buitenwand" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Acceleratie skin onderzijde" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Extruder skin onderzijde" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Flow skin onderzijde" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Jerk skin onderzijde" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Lagen skin onderzijde" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Lijnrichtingen skin onderzijde" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Lijnbreedte skin onderzijde" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Patroon skin onderzijde" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Snelheid skin onderzijde" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Concentrisch" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Extruder" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Flowcompensatie voor wandlijnen onderzijde voor alle wandlijnen behalve de buitenste." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Flowcompensatie voor lijnen van de gebieden aan de onderkant van de print." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Flowcompensatie voor de buitenste wandlijn van de onderkant." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Inside Travel Avoid Distance" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Lijnen" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Minimale laagtijd met overstek" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Minimale segmentlengte overstek" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Volgorde monotone onderzijde" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Deceleratie einde buitenwand" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Acceleratie begin buitenwand" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Snelheden overstekwand" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Overstekwanden worden geprint op een percentage van de normale afdruksnelheid. U kunt meerdere waarden opgeven, zodat verder uitstekende wanden nog langzamer worden afgedrukt, bijv. door [75, 50, 25] in te stellen." + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Drukvoortgangsfactor" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Printkern" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Print de lijnen van de onderkant af in een volgorde die ervoor zorgt dat ze altijd overlappen met aangrenzende lijnen in één richting. Dit kost iets meer tijd om te printen, maar zorgt ervoor dat platte vlakken er consistenter uitzien." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "Start GCode moet eerst zijn" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "De acceleratie waarmee de skinlagen van de onderkant worden geprint." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "De acceleratie waarmee de binnenwanden van de onderkant worden geprint." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "De acceleratie waarmee de buitenste wanden van de onderkant worden geprint." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "De afmetingen van de printkop die worden gebruikt om de 'veilige modelafstand' te bepalen bij 'eén voor één printen'. Deze getallen hebben betrekking op de middellijn van de eerste spuitmond van de extruder. Links van de spuitmond is ‘X Min’ en moet negatief zijn. De achterkant van de spuitmond is ‘Y Min’ en moet negatief zijn. X Max (rechts) en Y Max (voorzijde) zijn positieve getallen. Portaalhoogte is de afstand van de bouwplaat tot de X-portaalbalk." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "De afstand tussen de spuitmond en de al geprinte buitenwanden bij het bewegen binnen een model." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "De extrudertrein wordt gebruikt voor het afdrukken van de skin helemaal onderaan. Dit wordt gebruikt bij multi-extrusie." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "De maximale directe snelheidsverandering waarmee skinlagen aan de onderkant worden geprint." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "De maximale directe snelheidsverandering waarmee de binnenwanden aan de onderkant worden geprint." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "De maximale directe snelheidsverandering waarmee de buitenwanden aan de onderkant worden geprint." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "De minimale tijd die wordt doorgebracht in een laag met overhangende uitsteeksels. Dit dwingt de printer langzamer te gaan, zodat de hier ingestelde tijd in ieder geval in één laag wordt gespendeerd. Zo kan het geprinte materiaal goed afkoelen voordat de volgende laag wordt geprint. Lagen kunnen nog steeds korter duren dan de minimale laagtijd als kop optillen is uitgeschakeld en de minimale snelheid anders zou worden overschreden." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "Het aantal onderste skinlagen. Meestal is slechts één onderste laag voldoende om bodemoppervlakken van hogere kwaliteit te genereren." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "Het patroon van de onderste lagen." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr " De snelheid waarmee de onderste skinlagen worden geprint." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "De snelheid waarmee de binnenwanden van de onderkant worden geprint." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "De snelheid waarmee de buitenwand van de onderkant worden geprint." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Deze instelling bepaalt of de start-gcode wordt gedwongen om altijd de eerste g-code te zijn. Zonder deze optie kan een andere g-code, zoals een T0, voor de start-gcode worden ingevoerd." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Afstemmingsfactor voor drukvoortgang, bedoeld om extrusie met beweging te synchroniseren" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Indien u de minimale laagtijd specifiek voor overhangende lagen probeert toe te passen, wordt deze alleen toegepast als ten minste één opeenvolgende overhangende extrusiebeweging langer is dan deze waarde." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Breedte van een enkele lijn van de gebieden aan de onderkant van de print." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zigzag" diff --git a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po b/resources/i18n/nl_NL/gradual_flow_settings.def.json.po deleted file mode 100644 index 6e7f503e2c..0000000000 --- a/resources/i18n/nl_NL/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: nl_NL\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Geleidelijke stroom ingeschakeld" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Geleidelijke stroomwijzigingen inschakelen. Als deze optie is ingeschakeld, wordt de stroom geleidelijk verhoogd/verlaagd tot de doelstroom. Dit is handig voor printers met een bowdenbuis waarbij de stroom niet onmiddellijk verandert wanneer de extrudermotor start/stopt." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Maximale versnelling voor geleidelijke stroom" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Maximale versnelling voor geleidelijke stroomveranderingen" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Maximale stroomversnelling eerste laag" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Minimumsnelheid voor geleidelijke stroomveranderingen voor de eerste laag" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Stapgrootte geleidelijke stroomdiscretisatie" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duur van elke stap in de geleidelijke stroomverandering" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Stroomduur opnieuw instellen" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Voor elke af te leggen afstand die langer is dan deze waarde, wordt de materiaalstroom opnieuw ingesteld op de doelstroom van de paden." diff --git a/resources/i18n/pl_PL/cura.po b/resources/i18n/pl_PL/cura.po index 2261bb2de0..bffd70d758 100644 --- a/resources/i18n/pl_PL/cura.po +++ b/resources/i18n/pl_PL/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" "PO-Revision-Date: 2021-09-07 08:02+0200\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -19,6 +19,10 @@ msgstr "" "X-Generator: Poedit 3.0\n" "X-Poedit-SourceCharset: UTF-8\n" +msgctxt "@title:label" +msgid " " +msgstr "" + #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" @@ -175,6 +179,10 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "Widok 3D" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "" + msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Plik 3MF" @@ -471,6 +479,10 @@ msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "Pozwala na ładowanie i wyświetlanie plików G-code." +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Zawsze pytaj o to" @@ -511,10 +523,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Struktura aplikacji" - msgctxt "@title:column" msgid "Applies on" msgstr "" @@ -693,10 +701,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Biblioteka Powiązań C/C++" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "Cyfrowa wymiana zasobów COLLADA" @@ -860,6 +864,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "Schemat kolorów" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "" + msgctxt "@info" msgid "Compare and save." msgstr "" @@ -868,10 +876,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "Tryb zgodności" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "" @@ -1197,14 +1201,6 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Zaplecze CuraEngine" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - msgctxt "@label" msgid "Currency:" msgstr "Waluta:" @@ -1265,10 +1261,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "Dane Wysłane" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Format wymiany danych" - msgctxt "@button" msgid "Decline" msgstr "" @@ -1329,10 +1321,6 @@ msgctxt "@label" msgid "Density" msgstr "Gęstość" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "Głębokość (mm)" @@ -1555,6 +1543,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Eksportuj Materiał" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "" + msgctxt "@title:window" msgid "Export Profile" msgstr "Eksportuj Profil" @@ -1596,6 +1588,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "Ekstruder %1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "Końcowy G-code ekstrudera" @@ -1604,6 +1600,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "Początkowy G-code ekstrudera" @@ -1793,6 +1793,10 @@ msgctxt "@label" msgid "First available" msgstr "Pierwsza dostępna" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "" + msgctxt "@label:listbox" msgid "Flow" msgstr "" @@ -1809,10 +1813,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "" -msgctxt "@label" -msgid "Font" -msgstr "Czcionka" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "Dla każdej pozycji; Włóż kartkę papieru pod dyszę i wyreguluj wysokość stołu roboczego. Wysokość stołu jest prawidłowa, gdy papier stawia lekki opór." @@ -1868,10 +1868,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "Wersja G-code" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Generator g-code" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "Zapisywacz skompresowanego G-code nie obsługuje trybu tekstowego." @@ -1884,14 +1880,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Obraz GIF" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "Framework GUI" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Powiązania Frameworka GUI" - msgctxt "@label" msgid "Gantry Height" msgstr "Wysokość wózka" @@ -1904,10 +1892,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Generuje podpory wspierające części modelu, które mają zwis. Bez tych podpór takie części mogłyby spaść podczas drukowania." -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "" - msgctxt "@label:category menu label" msgid "Generic" msgstr "Podstawowe" @@ -1928,10 +1912,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "Ustawienia ogólne" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Graficzny interfejs użytkownika" - msgctxt "@label" msgid "Grid Placement" msgstr "" @@ -2177,10 +2157,6 @@ msgctxt "@label" msgid "Interface" msgstr "Interfejs" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Biblioteka komunikacji międzyprocesowej" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "Nieprawidłowy adres IP" @@ -2209,10 +2185,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "Obraz JPG" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "" - msgctxt "@label" msgid "Job Name" msgstr "Nazwa pracy" @@ -2313,6 +2285,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "Wypoziomuj stół" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Jaśniejszy jest wyższy" @@ -2329,10 +2305,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "Załaduj %3 jako materiał %1 (Nie można nadpisać)." @@ -2421,6 +2393,14 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "" @@ -2998,10 +2978,6 @@ msgctxt "@header" msgid "Package details" msgstr "" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "Analizowanie G-code" @@ -3157,14 +3133,6 @@ msgctxt "@button" msgid "Plugins" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Biblioteka edytująca pola" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Przetwarzanie końcowe" @@ -3438,10 +3406,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Język programowania" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3570,18 +3534,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "Wersja PyQt" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "" - msgctxt "@label" msgid "Qt version" msgstr "Wersja Qt" @@ -3763,10 +3715,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "Widok z prawej strony" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Bezpiecznie Odłącz Urządzenie" @@ -3858,6 +3806,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "" + msgctxt "@info" msgid "Search in the browser" msgstr "" @@ -3950,10 +3902,6 @@ msgctxt "name" msgid "Sentry Logger" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Biblioteka komunikacji szeregowej" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Ustaw jako aktywną głowicę" @@ -4062,6 +4010,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "" @@ -4090,10 +4042,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Pokaż dokumentację internetową" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "" - msgctxt "@label:checkbox" msgid "Show all" msgstr "Pokaż wszystko" @@ -4302,6 +4250,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "Początkowy G-code" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "@label" msgid "Start the slicing process" msgstr "Rozpocznij proces cięcia" @@ -4383,34 +4335,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Wsparcie biblioteki dla szybszej matematyki" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteka pomocy dla metadanych plików i przesyłania strumieniowego" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Wsparcie biblioteki do obsługi plików 3MF" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Wsparcie biblioteki do obsługi plików STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Wsparcie biblioteki do obliczeń naukowych" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "" - msgctxt "@action:button" msgid "Sync" msgstr "" @@ -4727,8 +4651,12 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Ta konfiguracja jest niedostępna, ponieważ %1 jest nierozpoznany. Przejdź do %2, aby pobrać prawidłowy profil materiału." +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" msgstr "" msgctxt "@text:window" @@ -5022,6 +4950,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "" + msgctxt "@info:title" msgid "Unable to slice" msgstr "Nie można pociąć" @@ -5090,10 +5026,6 @@ msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "" - msgctxt "@label" msgid "Unknown" msgstr "Nieznany" @@ -5283,6 +5215,14 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Prześlij niestandardowe oprogramowanie" @@ -5307,14 +5247,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "Umowa z użytkownikiem" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "" - msgctxt "@title:column" msgid "Value" msgstr "" @@ -5427,6 +5359,14 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5589,12 +5529,12 @@ msgid "Y (Depth)" msgstr "Y (Głębokość)" msgctxt "@label" -msgid "Y max" -msgstr "Y max" +msgid "Y max ( '+' towards front)" +msgstr "" msgctxt "@label" -msgid "Y min" -msgstr "Y min" +msgid "Y min ( '-' towards back)" +msgstr "" msgctxt "@info" msgid "Yes" @@ -5677,10 +5617,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "Z (Wysokość)" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Bilbiotek poszukująca Zeroconf" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Przybliżaj w kierunku myszy" @@ -5738,6 +5674,18 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "Struktura aplikacji" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "Biblioteka Powiązań C/C++" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "Format wymiany danych" + #~ msgctxt "@label" #~ msgid "Default" #~ msgstr "Domyślne" @@ -5750,10 +5698,90 @@ msgstr "" #~ msgid "Error writing 3mf file." #~ msgstr "Błąd zapisu pliku 3mf." +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "Czcionka" + +#~ msgctxt "@label Description for application component" +#~ msgid "G-code generator" +#~ msgstr "Generator g-code" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "Framework GUI" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "Powiązania Frameworka GUI" + +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "Graficzny interfejs użytkownika" + +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "Biblioteka komunikacji międzyprocesowej" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Linux cross-distribution application deployment" +#~ msgstr "Wdrożenie aplikacji pomiędzy dystrybucjami Linux" + +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "Rozmiar dyszy" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "Biblioteka edytująca pola" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "Język programowania" + #~ msgctxt "description" #~ msgid "Provides support for writing 3MF files." #~ msgstr "Zapewnia wsparcie dla tworzenia plików 3MF." +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "Biblioteka komunikacji szeregowej" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Widok symulacji" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "Wsparcie biblioteki dla szybszej matematyki" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for file metadata and streaming" +#~ msgstr "Biblioteka pomocy dla metadanych plików i przesyłania strumieniowego" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "Wsparcie biblioteki do obsługi plików 3MF" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "Wsparcie biblioteki do obsługi plików STL" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling triangular meshes" +#~ msgstr "Biblioteka pomocnicza do obsługi siatek trójkątów" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "Wsparcie biblioteki do obliczeń naukowych" + +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y max" + +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y min" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "Bilbiotek poszukująca Zeroconf" diff --git a/resources/i18n/pl_PL/fdmextruder.def.json.po b/resources/i18n/pl_PL/fdmextruder.def.json.po index 28aa15ea87..3a30f007e8 100644 --- a/resources/i18n/pl_PL/fdmextruder.def.json.po +++ b/resources/i18n/pl_PL/fdmextruder.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2019-03-13 14:00+0200\n" "Last-Translator: Mariusz 'Virgin71' Matłosz \n" "Language-Team: reprapy.pl\n" @@ -41,6 +41,10 @@ msgctxt "extruder_nr label" msgid "Extruder" msgstr "Ekstruder" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Końcowy G-code Ekstrudera" @@ -61,6 +65,10 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Końcowa Pozycja Y Ekstrudera" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Pozycja X Czyszczenia Dyszy" @@ -129,6 +137,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID Dyszy" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Przesunięcie X Dyszy" @@ -137,6 +149,10 @@ msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Przesunięcie Y Dyszy" +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "Początkowy G-code do wykonania przy przełączeniu na ten ekstruder." @@ -157,6 +173,10 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "Ekstruder używany do drukowania. Ta opcja używana jest podczas multi-ekstruzji." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "" + msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "Wewnętrzna średnica dyszy. Zmień to ustawienie kiedy używasz niestandardowego rozmiaru dyszy." @@ -201,6 +221,10 @@ msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "Współrzędna Y początkowej pozycji ekstrudera podczas jego włączania." +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "" + #~ msgctxt "machine_extruder_end_code description" #~ msgid "End g-code to execute whenever turning the extruder off." #~ msgstr "Końcowy G-code, który jest wywoływany, kiedy ekstruder jest wyłączany." diff --git a/resources/i18n/pl_PL/fdmprinter.def.json.po b/resources/i18n/pl_PL/fdmprinter.def.json.po index 9e2c0dda30..1d811878ba 100644 --- a/resources/i18n/pl_PL/fdmprinter.def.json.po +++ b/resources/i18n/pl_PL/fdmprinter.def.json.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2019-11-15 15:34+0100\n" "Last-Translator: Mariusz Matłosz \n" "Language-Team: Mariusz Matłosz , reprapy.pl\n" @@ -20,6 +20,10 @@ msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " msgstr "" +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "" + msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" @@ -32,6 +36,10 @@ msgctxt "material_no_load_move_factor description" msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." msgstr "" +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "" + msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "Lista całkowitych kierunków linii używana kiedy skóra górnej powierzchni używa wzoru linii lub zygzaka. Elementy z listy są używane po kolei na każdej warstwie, a kiedy lista się skończy, zaczyna się od nowa. Elementy listy są oddzielone przecinkami, a cała lista zawarta jest w nawiasach kwadratowych. Domyślnie lista jest pusta co oznacza używanie tradycyjnych, domyślnych kątów (45 i 135 stopni)." @@ -92,6 +100,10 @@ msgctxt "adaptive_layer_height_enabled description" msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "Zmienne warstwy obliczają wysokości warstw w zależności od kształtu modelu." +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "" + msgctxt "infill_wall_line_count description" msgid "" "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" @@ -156,6 +168,10 @@ msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Wszystko na raz" +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "" + msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Wszystkie ustawienia, które wpływają na rozdzielczość druku. Ustawienia te mają ogromny wpływ na jakość (i czas druku)" @@ -292,6 +308,74 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "Szer. Usuwania Dolnej Skóry" +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "" + msgctxt "bottom_thickness label" msgid "Bottom Thickness" msgstr "Grubość Dołu" @@ -436,6 +520,14 @@ msgctxt "brim_width label" msgid "Brim Width" msgstr "Szerokość Obrysu" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "" + msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" msgstr "Popraw Przycz. Stołu" @@ -476,6 +568,10 @@ msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" msgstr "" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -516,6 +612,10 @@ msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "Ustawienia Wiersza Polecenia" +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "" + msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Koncentryczny" @@ -620,6 +720,10 @@ msgctxt "cooling label" msgid "Cooling" msgstr "Chłodzenie" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "" + msgctxt "infill_pattern option cross" msgid "Cross" msgstr "Krzyż" @@ -708,6 +812,14 @@ msgctxt "bridge_settings_enabled description" msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "Wykryj mosty i modyfikuj prędkość drukowania, przepływ i ustawienia wentylatora podczas drukowania mostó." +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "" + msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "" @@ -832,6 +944,10 @@ msgctxt "dual label" msgid "Dual Extrusion" msgstr "Podwójna ekstruzja" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + msgctxt "machine_shape option elliptic" msgid "Elliptic" msgstr "Eliptyczny" @@ -924,6 +1040,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Włączyć zewnętrzną osłonę. Powstanie powłoka wokół modelu, która będzie czyściła drugą dyszę, jeśli jest na tej samej wysokości, co pierwsza dysza." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." msgstr "" @@ -988,6 +1108,10 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "Szerokie szwy próbują zszywać otwarte otwory w siatce przez zamknięcie otworów stykającymi się wielokątami. Ta opcja może znacznie wydłużyć czas przetwarzania." +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "" + msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" msgstr "Ilość Dodatkowych Ścianek Wypełnienia" @@ -1000,6 +1124,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Ilość dodatkowego materiału do podania po zmianie dyszy." +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Pozycja X Czyszczenia Dyszy" @@ -1096,6 +1224,10 @@ msgctxt "skin_material_flow_layer_0 description" msgid "Flow compensation on bottom lines of the first layer" msgstr "" +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "infill_material_flow description" msgid "Flow compensation on infill lines." msgstr "Ustawienie przepływu wypełnienia." @@ -1104,6 +1236,10 @@ msgctxt "support_interface_material_flow description" msgid "Flow compensation on lines of support roof or floor." msgstr "Ustawienie przepływu podłoża podpór." +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "Ustawienie przepływu na ostatniej warstwie górnej." @@ -1128,6 +1264,10 @@ msgctxt "support_material_flow description" msgid "Flow compensation on support structure lines." msgstr "Ustawienie przepływu podpór." +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "" + msgctxt "wall_0_material_flow_layer_0 description" msgid "Flow compensation on the outermost wall line of the first layer." msgstr "" @@ -1184,6 +1324,10 @@ msgctxt "material_flush_purge_speed label" msgid "Flush Purge Speed" msgstr "" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" @@ -1304,6 +1448,18 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "Stopnie Stopniowego Wypełn. Podpór" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "" @@ -1332,6 +1488,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "" + msgctxt "group_outer_walls label" msgid "Group Outer Walls" msgstr "Grupuj ściany zewnętrzne" @@ -1696,6 +1856,10 @@ msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" msgstr "Początkowa Temp. Druku" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" msgstr "Przyspieszenie Ściany Wew" @@ -1732,6 +1896,10 @@ msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "" + msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" msgstr "" @@ -1920,6 +2088,10 @@ msgctxt "line_width label" msgid "Line Width" msgstr "Szerokość Linii" +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "" + msgctxt "infill_pattern option lines" msgid "Lines" msgstr "Linie" @@ -2018,6 +2190,10 @@ msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "" + msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" @@ -2134,6 +2310,10 @@ msgctxt "meshfix_maximum_travel_resolution label" msgid "Maximum Travel Resolution" msgstr "Maksymalna Rozdzielczość Ruchów Jałowych" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + msgctxt "machine_max_acceleration_x description" msgid "Maximum acceleration for the motor of the X-direction" msgstr "Maksymalne przyspieszenie dla silnika osi X" @@ -2194,6 +2374,10 @@ msgctxt "slicing_tolerance option middle" msgid "Middle" msgstr "Środek" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "" + msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "Min. Szerokość Formy" @@ -2234,10 +2418,18 @@ msgctxt "cool_min_layer_time label" msgid "Minimum Layer Time" msgstr "Minimalny Czas Warstwy" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "" + msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "" + msgctxt "minimum_polygon_circumference label" msgid "Minimum Polygon Circumference" msgstr "Minimalny Obwód Wieloboku" @@ -2298,6 +2490,10 @@ msgctxt "minimum_roof_area description" msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." msgstr "Minimalny rozmiar obszaru dla dachu podpór. Obszary, które mają powierzchnię mniejszą od tej wartości, zostaną wydrukowane jako normalne podpory." +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + msgctxt "min_feature_size description" 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 Line Width." msgstr "" @@ -2318,6 +2514,10 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "Wysokość Dachu Formy" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "" + msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "" @@ -2338,6 +2538,10 @@ msgctxt "skirt_line_count description" msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." msgstr "Liczne linie pomagają w lepszym wytłaczaniu małych modeli. Ustawienie na 0 spowoduje wyłączenie obwódki." +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "" + msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "Mnożnik szerokości linii na pierwszej warstwie. Zwiększenie może polepszyć przyczepność do stołu." @@ -2358,6 +2562,10 @@ msgctxt "adhesion_type option none" msgid "None" msgstr "Brak" +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "" + msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "Brak" @@ -2402,10 +2610,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID Dyszy" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Długość dyszy" - msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Dodatkowa ekstruzja po zmianie dyszy" @@ -2494,6 +2698,10 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Jeden na raz" +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "" + msgctxt "retraction_hop_only_when_collides description" msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." msgstr "Wykonuj Skok Z tylko podczas ruchu nad wydrukowanymi częściami, które nie mogą być ominięte za pomocą Omijaj Częścipodczas Ruchu Jałowego." @@ -2530,6 +2738,14 @@ msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "Przyspieszenie Ściany Zew" +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "" + msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "Esktruder Zew. Ściany" @@ -2554,6 +2770,18 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Prędkość Zew. Ściany" +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "" + msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Długość Czyszczenia Zew. Ściana" @@ -2574,13 +2802,13 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "Kąt Nawisającej Ścianki" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Prędkość Ścianki Nawisającej" +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Nawisające ścianki będą drukowane z taką procentową wartością względem normalnej prędkości druku." +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "" msgctxt "wipe_pause description" msgid "Pause after the unretract." @@ -2602,6 +2830,10 @@ msgctxt "bridge_fan_speed_3 description" msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "Procent prędkości wentylatora używany podczas drukowania trzeciej warstwy skóry most." +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "" + msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "Wieloboki w pociętych warstwach mające obwód mniejszy, niż podany, będą odfiltrowane. Mniejsze wartości dają wyższą rozdzielczość siatki kosztem czasu cięcia. Funkcja ta jest przeznaczona głównie dla drukarek wysokiej rozdzielczości SLA oraz bardzo małych modeli z dużą ilością detali." @@ -2610,6 +2842,10 @@ msgctxt "support_tree_angle_slow label" msgid "Preferred Branch Angle" msgstr "" +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "" + msgctxt "wall_transition_filter_deviation description" msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." msgstr "" @@ -2650,6 +2886,10 @@ msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" msgstr "" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Min. Objętość Wieży Czyszczącej" @@ -2682,6 +2922,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Przyspieszenie Druku" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Zryw Druku" @@ -2710,6 +2954,10 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Wydrukuj wieżę obok wydruku, która służy do zmiany materiału po każdym przełączeniu dyszy." +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + msgctxt "infill_support_enabled description" msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." msgstr "Drukuj wypełnienie tylko w miejscach, w których górna część modelu powinna być podparta strukturą wewnętrzną. Załączenie tej funkcji skutkuje redukcją czasu druku, ale prowadzi do niejednolitej wytrzymałości obiektu." @@ -2802,6 +3050,18 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "Prędk. Went. Podst. Tratwy" +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "" + msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" msgstr "Rozstaw Linii Podstawy Tratwy" @@ -2842,6 +3102,26 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Prędk. Went. Tratwa" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "" + msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" msgstr "" @@ -2906,6 +3186,22 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Wygładzanie Tratwy" +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "" + msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" msgstr "" @@ -3070,6 +3366,10 @@ msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" msgstr "" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -3134,6 +3434,18 @@ msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" msgstr "" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "" + msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" msgstr "" @@ -3142,6 +3454,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Wybór Rogu Szwu" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "" + msgctxt "user_defined_print_order_enabled label" msgid "Set Print Sequence Manually" msgstr "Ręczne ustawienie kolejności drukowania" @@ -3358,6 +3674,10 @@ msgctxt "machine_start_gcode label" msgid "Start G-code" msgstr "Początkowy G-code" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "z_seam_type description" msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." msgstr "Punkt początkowy każdej ścieżki w warstwie. Kiedy ścieżki w kolejnych warstwach zaczynają się w tym samym punkcie, na wydruku może pojawić się pionowy szew. Wyrównywanie ich w pobliżu określonej przez użytkownika lokalizacji powoduje, że szew jest najprostszy do usunięcia. Po umieszczeniu losowo niedokładności na początku ścieżki będzie mniej zauważalny. Podczas najkrótszej ścieżki wydruk będzie szybszy." @@ -3486,6 +3806,10 @@ msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" msgstr "Przyspieszenie Wypełnienia Podpory" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "" + msgctxt "support_infill_extruder_nr label" msgid "Support Infill Extruder" msgstr "Ekstruder Wypełnienia Podpory" @@ -3678,6 +4002,10 @@ msgctxt "support_z_distance label" msgid "Support Z Distance" msgstr "Odległość Podpory Z" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "" + msgctxt "support_interface_priority option support_lines_overwrite_interface_area" msgid "Support lines preferred" msgstr "" @@ -3770,6 +4098,10 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Przyspieszenie, z jakim drukowane są ściany wewn." +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "" + msgctxt "acceleration_infill description" msgid "The acceleration with which infill is printed." msgstr "Przyspieszenie, z którym drukowane jest wypełnienie." @@ -3786,6 +4118,14 @@ msgctxt "raft_base_acceleration description" msgid "The acceleration with which the base raft layer is printed." msgstr "Przyspieszenie, z jakim drukowana jest podstawowa warstwa tratwy." +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_support_bottom description" msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." msgstr "Przyspieszenie, z jakim są drukowane podłoża podpór. Drukowanie przy niższym przyspieszeniu może poprawić adhezję podpory na modelu." @@ -3854,6 +4194,22 @@ msgctxt "acceleration_travel description" msgid "The acceleration with which travel moves are made." msgstr "Przyspieszenie, z jakim wykonywane są ruchy jałowe." +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." msgstr "Ilość materiału, w odniesieniu do normalnej linii skóry, do ekstrudowania podczas prasowania. Pozostawianie dyszy napełnionej pomaga w wypełnianiu nierówności górnej powierzchni, ale zbyt duża ilość materiału może powodować nadekstruzję po stronie powierzchni." @@ -3862,6 +4218,30 @@ msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." msgstr "Ilość nałożenia pomiędzy wypełnieniem i ścianami w procentach szerokości linii wypełnienia. Delikatne nałożenie pozwala na lepsze połączenie ścian z wypełnieniem." +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "Ilość nałożenia pomiędzy wypełnieniem a ścianami. Nieznaczne nałożenie pozwala ściśle łączyć się z wypełnieniem." @@ -3962,10 +4342,22 @@ msgctxt "adaptive_layer_height_variation_step description" msgid "The difference in height of the next layer height compared to the previous one." msgstr "Różnica w wysokości pomiędzy następną wysokością warstwy i poprzednią." +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "" + msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." msgstr "Odległość pomiędzy liniami prasowania." +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "" + msgctxt "travel_avoid_distance description" msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "Odległość między dyszą a już wydrukowanym elementem, gdy są one omijane podczas ruchu jałowego." @@ -4074,6 +4466,10 @@ msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "Ekstruder używany do drukowania wypełnienia. Używane w multi-ekstruzji." +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "" + msgctxt "wall_x_extruder_nr description" msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "Ekstruder używany do drukowania wenw. ściany. Używane w multi-ekstruzji." @@ -4134,6 +4530,10 @@ msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." msgstr "Wysokość nad poziomymi częściami w modelu, które będą drukowanie jako formy." +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "" + msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." msgstr "Wysokość na jakiej wentylatory będą obracać się z regularną prędkością. Na niższych warstwach prędkość wentylatorów będzie stopniowo zwiększać się z Początk. Pręd. Wentylatora do Regularnej Pręd. Wentylatora." @@ -4142,10 +4542,6 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Różnica wysokości między wierzchołkiem dyszy a suwnicą (gantry) (osie X i Y)." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Różnica w wysokości pomiędzy końcówką dyszy a najniższą częścą głowicy drukującej." - msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." msgstr "Różnica wysokości podczas wykonywania skoku Z po zmianie ekstrudera." @@ -4246,6 +4642,10 @@ msgctxt "top_skin_preshrink description" msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." msgstr "Największa szerokość górnej pow. skóry, które mają zostać usunięte. Każda pow. skóry mniejsza niż ta wartość zniknie. Może to pomóc w ograniczeniu ilości czasu i materiału zużywanego na drukowanie górnych skór na pochyłych powierzchniach modelu." +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "" + msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." msgstr "Warstwa, na której wentylatory obracają się z normalną prędkością. Jeśli ustawiona jest Regularna Pręd. Went. na Wysokości, wartość ta jest obliczana i zaokrąglana do liczby całkowitej." @@ -4318,10 +4718,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są wewnętrzne ściany." +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "" + msgctxt "jerk_infill description" msgid "The maximum instantaneous velocity change with which infill is printed." msgstr "Maksymalna zmiana prędkości chwilowej, z którą jest drukowane wypełnienie." +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "Maksymalna zmiana prędkości chwilowej z jaką drukowane są podłoża podpór." @@ -4458,6 +4870,14 @@ msgctxt "support_bottom_stair_step_min_slope description" msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." msgstr "" +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "" + msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "Minimalny czas spędzony na warstwie. Zmusza to drukarkę do spowolnienia, aby spędzić przynajmniej ten czas na jednej warstwie. Pozwala to na właściwe schłodzenie materiału przed wydrukowaniem następnej warstwy. Warstwy mogą nadal trwać krócej niż minimalny czas warstwy, jeśli Unieś Głowicę jest wyłączone, a jeśli Minimalna Prędkość zostanie w jakiś sposób zmieniona." @@ -4490,6 +4910,10 @@ msgctxt "bottom_layers description" msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "Liczba dolnych warstw. Przy obliczaniu grubości dołu ta wartość jest zaokrąglana do liczby całkowitej." +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "" + msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" @@ -4526,6 +4950,10 @@ msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." msgstr "Liczba linii używanych do obrysu podpór. Większa ilość linii obrysu to większa przyczepność do stołu, kosztem zużytego materiału." +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "" + msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "Liczba górnych warstw na górze drugiej warstwy tratwy. Są to w pełni wypełnione warstwy, na których siedzi model. 2 warstwy tworzą gładszą górną powierzchnię niż 1." @@ -4566,6 +4994,10 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "Zewnętrzna średnica końcówki dyszy." +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "" + msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "" @@ -4618,14 +5050,14 @@ msgctxt "jerk_layer_0 description" msgid "The print maximum instantaneous velocity change for the initial layer." msgstr "Maksymalna zmiana chwilowej prędkości dla pierwszej warstwy." +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "" + msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." msgstr "Kształt stołu bez uwzględniania obszarów niedrukowalnych." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "" - msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "Rozmiar kieszeni na czterostronnych skrzyżowaniach we wzorze krzyż 3D na wysokościach gdzie wzór tego siebie samego." @@ -4646,6 +5078,10 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "Szybkość, z jaką drukowane są ściany wewnętrzne. Drukowanie wewnętrznej ściany szybciej niż zewn. pozwoli skrócić czas druku. Zaleca się, aby ustawić to pomiędzy prędkością zewn. ściany, a prędkością wypełnienia." +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "" + msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." msgstr "Prędkość z jaką drukowane są obszary skóry mostu." @@ -4662,6 +5098,14 @@ msgctxt "raft_base_speed description" msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "Prędkość, z jaką drukowana jest podstawowa warstwa tratwy. Powinna być drukowana dość wolno, ponieważ objętość materiału wydobywającego się z dyszy jest dość duża." +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "" + msgctxt "bridge_wall_speed description" msgid "The speed at which the bridge walls are printed." msgstr "Prędkość z jaką są drukowane ściany mostu." @@ -4946,6 +5390,26 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Określa odległość, na jakiej ekstruder powinien wykonać rozbieg natychmiast przed rozpoczęciem ściany mostu. Rozbieg przed rozpoczęciem mostu może zredukować ciśnienie w dyszy i może stworzyć bardziej płaski most." +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "" + msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" @@ -4962,6 +5426,10 @@ msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "To ustawienie ogranicza liczbę retrakcji występujących w oknie minimalnej długości ekstruzji. Dalsze retrakcje w tym oknie zostaną zignorowane. Pozwala to uniknąć wielokrotnych retrakcji na tym samym odcinku filamentu, ponieważ może to spłaszczyć filament i spowodować problemy z wyciskaniem filamentu." @@ -5190,10 +5658,22 @@ msgctxt "support_tree_max_diameter label" msgid "Trunk Diameter" msgstr "" +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "" + msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "" + msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" msgstr "Nakładanie się Związanych Brył" @@ -5318,9 +5798,17 @@ msgctxt "shell label" msgid "Walls" msgstr "" +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "" + msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Ściany, które wystają więcej niż zadany kont, zostaną wydrukowane przy użyciu ustawień wystających ścian. Gdy wartość wynosi 90, żadne ściany nie będą traktowane jako wystające. Zwis, który jest obsługiwany przez podpory, nie będzie również traktowany jako zwis." +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "" msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." @@ -5358,6 +5846,14 @@ msgctxt "bridge_wall_material_flow description" msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "Kiedy drukowane są ściany mostu, ilość ekstrudowanego materiału jest mnożona prze tę wartość." +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "" + msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "Kiedy drukowana jest druga warstwa skóry mostu, ilość ekstrudowanego materiału jest mnożona przez tę wartość." @@ -5382,6 +5878,10 @@ msgctxt "wall_transition_length description" 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 lines." msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "" + msgctxt "wipe_hop_enable description" msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." msgstr "" @@ -5478,6 +5978,10 @@ msgctxt "support_interface_line_width description" msgid "Width of a single line of support roof or floor." msgstr "Szerokość pojedynczej linii dachu lub podłogi podpory." +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." msgstr "Szerokość pojedynczej linii na obszarach na górze wydruku." @@ -5654,6 +6158,10 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Wyrównanie Szwu Z" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "Pozycja szwu osi Z" @@ -5674,6 +6182,10 @@ msgctxt "support_xy_overrides_z option z_overrides_xy" msgid "Z overrides X/Y" msgstr "Z nadpisuje X/Y" +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + msgctxt "infill_pattern option zigzag" msgid "Zig Zag" msgstr "Zygzak" @@ -5726,14 +6238,38 @@ msgstr "ruch jałowy" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "Niech pierwsza i druga warstwa nachodzą na siebie w osi Z, aby skompensować stratę filamentu w szczelinie powietrznej. Wszystkie modele powyżej pierwszej warstwy modelu będą obniżone o tą wartość." +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle Length" +#~ msgstr "Długość dyszy" + +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "Rozmiar dyszy" + #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Drukuj obrys tylko na zewnątrz modelu. Zmniejsza to liczbę obrysu, który trzeba usunąć po wydruku, podczas gdy nie zmniejsza znacząco przyczepności do stołu." +#~ msgctxt "wall_overhang_speed_factor label" +#~ msgid "Overhanging Wall Speed" +#~ msgstr "Prędkość Ścianki Nawisającej" + +#~ msgctxt "wall_overhang_speed_factor description" +#~ msgid "Overhanging walls will be printed at this percentage of their normal print speed." +#~ msgstr "Nawisające ścianki będą drukowane z taką procentową wartością względem normalnej prędkości druku." + #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" #~ msgstr "Rozdzielczość Połączenia Podpory" +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "Różnica w wysokości pomiędzy końcówką dyszy a najniższą częścą głowicy drukującej." + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +#~ msgstr "Ściany, które wystają więcej niż zadany kont, zostaną wydrukowane przy użyciu ustawień wystających ścian. Gdy wartość wynosi 90, żadne ściany nie będą traktowane jako wystające. Zwis, który jest obsługiwany przez podpory, nie będzie również traktowany jako zwis." + #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "Sprawdzając, czy model znajduje się powyżej czy poniżej podpory, wykonaj stopnie o danej wysokości. Niższe wartości będą cięte wolniej, podczas gdy wyższe wartości mogą powodować drukowanie zwykłej podpory w niektórych miejscach, w których powinno istnieć połączenie." diff --git a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po b/resources/i18n/pl_PL/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4..0000000000 --- a/resources/i18n/pl_PL/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/i18n/pt_BR/cura.po b/resources/i18n/pt_BR/cura.po index a20b875523..ec12c27651 100644 --- a/resources/i18n/pt_BR/cura.po +++ b/resources/i18n/pt_BR/cura.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: 2024-04-02 02:31+0200\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" +"PO-Revision-Date: 2025-03-23 17:45+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -16,7 +16,11 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.5\n" + +msgctxt "@title:label" +msgid " " +msgstr "" #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." @@ -177,6 +181,10 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "Visão 3D" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "Mouses 3DConnexion" + msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Arquivo 3MF" @@ -473,6 +481,10 @@ msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "Permite carregar e exibir arquivos G-Code." +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "Permite trabalhar com mouses 3D dentro do Cura." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Sempre perguntar" @@ -513,10 +525,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "Relatórios de falhas anônimos" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "Framework de Aplicações" - msgctxt "@title:column" msgid "Applies on" msgstr "Se aplica a" @@ -695,10 +703,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "Por" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "Biblioteca de Ligações C/C++" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "Câmbio de Ativos Digitais COLLADA" @@ -867,6 +871,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "Esquema de Cores" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Combinação não recomendada. Carregue o núcleo BB no slot 1 (esquerda) para melhor confiabilidade." + msgctxt "@info" msgid "Compare and save." msgstr "Comparar e salvar." @@ -875,10 +883,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "Modo de Compatibilidade" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "Compatibilidade entre Python 2 e 3" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "Impressoras Compatíveis" @@ -1210,14 +1214,6 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "CuraEngine Backend" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - msgctxt "@label" msgid "Currency:" msgstr "Moeda:" @@ -1278,10 +1274,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "Dados Enviados" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "Formato de Intercâmbio de Dados" - msgctxt "@button" msgid "Decline" msgstr "Recusar" @@ -1342,10 +1334,6 @@ msgctxt "@label" msgid "Density" msgstr "Densidade" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "Gestor de pacote e dependência" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "Profundidade (mm)" @@ -1568,6 +1556,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "Exportar Material" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Exportar Pacote Para Suporte Técnico" + msgctxt "@title:window" msgid "Export Profile" msgstr "Exportar Perfil" @@ -1609,6 +1601,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "Extrusor %1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Duração de Mudança do Extrusor" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "G-Code Final do Extrusor" @@ -1617,6 +1613,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "Duração do G-code Final do Extrusor" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "G-Code de Pré-Início do Extrusor" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "G-Code Inicial do Extrusor" @@ -1806,6 +1806,10 @@ msgctxt "@label" msgid "First available" msgstr "Primeira disponível" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Trocar o eixo Y da ferramenta do modelo (reinício requerido)" + msgctxt "@label:listbox" msgid "Flow" msgstr "Fluxo" @@ -1822,10 +1826,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "Seguindo alguns passos simples, você conseguirá sincronizar todos os seus perfis de material com suas impressoras." -msgctxt "@label" -msgid "Font" -msgstr "Fonte" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "Para cada posição; insira um pedaço de papel abaixo do bico e ajuste a altura da mesa de impressão. A altura da mesa de impressão está adequada quando o papel for levemente pressionado pela ponta do bico." @@ -1881,10 +1881,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "Sabor de G-Code" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "Gerador de G-Code" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "O GCodeGzWriter não suporta modo binário." @@ -1897,14 +1893,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "Imagem GIF" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "Framework Gráfica" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "Ligações da Framework Gráfica" - msgctxt "@label" msgid "Gantry Height" msgstr "Altura do Eixo" @@ -1917,10 +1905,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "Gera estrutura que suportarão partes do modelo que têm seções pendentes. Sem estas estruturas, tais partes desabariam durante a impressão." -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "Gerando instaladores Windows" - msgctxt "@label:category menu label" msgid "Generic" msgstr "Genérico" @@ -1941,10 +1925,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "Ajustes globais" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "Interface Gráfica de usuário" - msgctxt "@label" msgid "Grid Placement" msgstr "Posicionamento em Grade" @@ -2190,10 +2170,6 @@ msgctxt "@label" msgid "Interface" msgstr "Interface" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "Biblioteca de comunicação interprocessos" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "Endereço IP inválido" @@ -2222,10 +2198,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "Imagem JPG" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "Parser JSON" - msgctxt "@label" msgid "Job Name" msgstr "Nome do Trabalho" @@ -2326,6 +2298,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "Nivelar mesa" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Licença para %1 %2" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "Mais claro é mais alto" @@ -2342,10 +2318,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "Linear" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Implementação de aplicação multidistribuição em Linux" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "Carregar %3 como material %1 (isto não pode ser sobreposto)." @@ -2434,6 +2406,14 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "Gerador de Makerbot Printfile" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ Arquivo de Impressão" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Arquivo de Rascunho de Impressão Makerbot" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter não conseguiu salvar no caminho designado." @@ -3011,10 +2991,6 @@ msgctxt "@header" msgid "Package details" msgstr "Detalhes do pacote" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "Empacotamento de aplicações Python" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "Interpretando G-Code" @@ -3174,14 +3150,6 @@ msgctxt "@button" msgid "Plugins" msgstr "Complementos" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "Biblioteca de recorte de polígonos" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" @@ -3455,10 +3423,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "Perfis compatíveis com a impressora ativa:" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "Linguagem de Programação" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3587,18 +3551,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "Versão do PyQt" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "Biblioteca de rastreamento de Erros Python" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "Ligações de Python pra Clipper" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "Ligações de Python para a libnest2d" - msgctxt "@label" msgid "Qt version" msgstr "Versão do Qt" @@ -3780,10 +3732,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "Visão à Direita" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "Certificados-Raiz para validar confiança SSL" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "Remover Hardware com Segurança" @@ -3875,6 +3823,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "Buscar" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Procurar Impressora" + msgctxt "@info" msgid "Search in the browser" msgstr "Buscar no navegador" @@ -3967,10 +3919,6 @@ msgctxt "name" msgid "Sentry Logger" msgstr "Sentinela para Registro" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "Biblioteca de comunicação serial" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "Definir Como Extrusor Ativo" @@ -4079,6 +4027,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "Devem falhas de fatiamento serem automaticamente relatadas à Ultimaker? Nota, nenhum dado de modelos, endereços IP ou outros tipos de informação pessoalmente identificável é enviada ou armazenada a não ser que você dê permissão explícita." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Deverá o eixo Y de translação da ferramenta trocar de orientação? Isto afetará apenas a coordenada Y do modelo, todos os outros ajustes tais como ajustes de Cabeça de Impressão não serão afetados e ainda funcionarão como antes." + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "A plataforma de construção deve ser esvaziada antes de carregar um modelo novo na instância única do Cura?" @@ -4107,10 +4059,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "Exibir &Documentação Online" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "Mostrar Resolução de Problemas Online" - msgctxt "@label:checkbox" msgid "Show all" msgstr "Exibir tudo" @@ -4319,6 +4267,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "G-Code Inicial" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "O GCode de Início deve ser o primeiro" + msgctxt "@label" msgid "Start the slicing process" msgstr "Inicia o processo de fatiamento" @@ -4400,34 +4352,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "Tipo de Suporte" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "Biblioteca de suporte para matemática acelerada" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "Biblioteca de suporte para streaming e metadados de arquivo" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "Biblioteca de suporte para manuseamento de arquivos STL" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "Biblioteca de suporte para computação científica" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" - msgctxt "@action:button" msgid "Sync" msgstr "Sincronizar" @@ -4751,9 +4675,13 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "Esta configuração não está disponível porque %1 não foi reconhecido. Por favor visite %2 para baixar o perfil de materil correto." +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Esta configuração não está disponível porque há uma incompatibilidade ou outro problema com o core-type %1. Por favor visite a página de suporte para verificar que núcleos este tipo de impressora suporta de acordo com as novas fatias." + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" -msgstr "Este é um arquivo de projeto Universal do Cura. Você gostaria de abri-lo como um projeto do Cura, ou Cura Universal Project, ou importar os modelos dele?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Este é um arquivo de projeto Cura Universal. Você gostaria de abrir como um Projeto Cura Universal ou importar os modelos dele?" msgctxt "@text:window" msgid "This is a Cura project file. Would you like to open it as a project or import the models from it?" @@ -5048,6 +4976,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "Não foi possível ler o arquivo de dados de exemplo." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Não foi possível enviar os dados de modelo para o engine. Por favor tente novamente ou contacte o suporte." + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Não foi possível enviar os dados do modelo para o engine. Por favor use um modelo menos detalhado ou reduza o número de instâncias." + msgctxt "@info:title" msgid "Unable to slice" msgstr "Não foi possível fatiar" @@ -5114,13 +5050,7 @@ msgstr "Universal Cura Project" msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." -msgstr "" -"Arquivos Universal Cura Project podem ser impressos em impressoras 3D diferentes enquanto retêm dados posicionais e ajustes selecionados. Quando exportados, todos os modelos presentes na plataforma de impressão serão incluídos juntamente à sua posição, orientação e escala atuais. Você pode também selecionar quais ajustes por extrusor ou por modelo devem ser " -"incluídos para assegurar impressão apropriada." - -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "Configuração de sistema universal de construção" +msgstr "Arquivos Universal Cura Project podem ser impressos em impressoras 3D diferentes enquanto retêm dados posicionais e ajustes selecionados. Quando exportados, todos os modelos presentes na plataforma de impressão serão incluídos juntamente à sua posição, orientação e escala atuais. Você pode também selecionar quais ajustes por extrusor ou por modelo devem ser incluídos para assegurar impressão apropriada." msgctxt "@label" msgid "Unknown" @@ -5311,6 +5241,14 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "Atualiza configurações do Cura 5.6 para o Cura 5.7." +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Atualiza configurações do Cura 5.8 para o Cura 5.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Atualiza configurações do Cura 5.9 para o Cura 5.10" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carregar Firmware personalizado" @@ -5335,14 +5273,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "Contrato de Usuário" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "Funções de utilidade, incluindo um carregador de imagem" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "Biblioteca de utilidade, incluindo geração Voronoi" - msgctxt "@title:column" msgid "Value" msgstr "Valor" @@ -5455,6 +5385,14 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "Atualização de Versão de 5.6 para 5.7" +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Atualização de Versão de 5.8 para 5.9" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Atualização de Versão de 5.9 para 5.10" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Ver impressoras na Digital Factory" @@ -5617,12 +5555,12 @@ msgid "Y (Depth)" msgstr "Y (Profundidade)" msgctxt "@label" -msgid "Y max" -msgstr "Y máx" +msgid "Y max ( '+' towards front)" +msgstr "Y máximo ('+' indo para a frente)" msgctxt "@label" -msgid "Y min" -msgstr "Y mín" +msgid "Y min ( '-' towards back)" +msgstr "Y mínimo ('-' indo para trás)" msgctxt "@info" msgid "Yes" @@ -5713,10 +5651,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "Z (Altura)" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "Biblioteca de descoberta 'ZeroConf'" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "Ampliar na direção do mouse" @@ -5781,18 +5715,46 @@ msgstr "{} complementos falharam em baixar" #~ msgstr[0] "... e {0} outra" #~ msgstr[1] "... e {0} outras" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "Framework de Aplicações" + #~ msgctxt "@tooltip:button" #~ msgid "Become a 3D printing expert with UltiMaker e-learning." #~ msgstr "Torne-se um especialista em impressão 3D com UltiMaker e-learning." +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "Biblioteca de Ligações C/C++" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Compatibility between Python 2 and 3" +#~ msgstr "Compatibilidade entre Python 2 e 3" + #~ msgctxt "@info:status" #~ msgid "Cura does not accurately display layers when Wire Printing is enabled." #~ msgstr "O Cura não exibe camadas de forma precisa quando Impressão em Arame está habilitada." +#~ msgctxt "description" +#~ msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +#~ msgstr "Complemento do CuraEngine para gradualmente suavizar o fluxo para limitar rajadas de fluxo intenso" + +#~ msgctxt "name" +#~ msgid "CuraEngineGradualFlow" +#~ msgstr "CuraEngineGradualFlow" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "Formato de Intercâmbio de Dados" + #~ msgctxt "@label" #~ msgid "Default" #~ msgstr "Default" +#~ msgctxt "@label Description for development tool" +#~ msgid "Dependency and package manager" +#~ msgstr "Gestor de pacote e dependência" + #~ msgctxt "@label" #~ msgid "Enable printing a brim or raft. This will add a flat area around or under your object which is easy to cut off afterwards." #~ msgstr "Habilita imprimir um brim (bainha) ou raft (jangada). Adicionará uma área chata em volta ou sob o objeto que é fácil de remover após a impressão ter finalizado." @@ -5801,6 +5763,30 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Error writing 3mf file." #~ msgstr "Erro ao escrever arquivo 3mf." +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "Fonte" + +#~ msgctxt "@label Description for application component" +#~ msgid "G-code generator" +#~ msgstr "Gerador de G-Code" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "Framework Gráfica" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "Ligações da Framework Gráfica" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Generating Windows installers" +#~ msgstr "Gerando instaladores Windows" + +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "Interface Gráfica de usuário" + #~ msgctxt "@label" #~ msgid "Hex" #~ msgstr "Hexa" @@ -5817,18 +5803,74 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Install missing material" #~ msgstr "Instalar material faltante" +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "Biblioteca de comunicação interprocessos" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "JSON parser" +#~ msgstr "Parser JSON" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Linux cross-distribution application deployment" +#~ msgstr "Implementação de aplicação multidistribuição em Linux" + #~ msgctxt "@info:title" #~ msgid "Material profiles not installed" #~ msgstr "Perfis de material não instalados" +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "Tamanho do bico" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Packaging Python-applications" +#~ msgstr "Empacotamento de aplicações Python" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "Biblioteca de recorte de polígonos" + +#~ msgctxt "@label Description for application component" +#~ msgid "Polygon packing library, developed by Prusa Research" +#~ msgstr "Biblioteca de empacotamento Polygon, desenvolvido pela Prusa Research" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "Linguagem de Programação" + #~ msgctxt "description" #~ msgid "Provides support for writing 3MF files." #~ msgstr "Provê suporte à escrita de arquivos 3MF." +#~ msgctxt "@Label Description for application dependency" +#~ msgid "Python Error tracking library" +#~ msgstr "Biblioteca de rastreamento de Erros Python" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Python bindings for Clipper" +#~ msgstr "Ligações de Python pra Clipper" + +#~ msgctxt "@label Description for application component" +#~ msgid "Python bindings for libnest2d" +#~ msgstr "Ligações de Python para a libnest2d" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Root Certificates for validating SSL trustworthiness" +#~ msgstr "Certificados-Raiz para validar confiança SSL" + #~ msgctxt "@option" #~ msgid "Save Cura project and print file" #~ msgstr "Salvar o projeto Cura e imprimir o arquivo" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "Biblioteca de comunicação serial" + +#~ msgctxt "@action:inmenu" +#~ msgid "Show Online Troubleshooting" +#~ msgstr "Mostrar Resolução de Problemas Online" + #~ msgctxt "@info:title" #~ msgid "Simulation View" #~ msgstr "Visão Simulada" @@ -5837,6 +5879,34 @@ msgstr "{} complementos falharam em baixar" #~ msgid "Slicing failed with an unexpected error. Please consider reporting a bug on our issue tracker." #~ msgstr "O fatiamento falhou com um erro não esperado. Por favor considere relatar um bug em nosso issue tracker." +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "Biblioteca de suporte para matemática acelerada" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for file metadata and streaming" +#~ msgstr "Biblioteca de suporte para streaming e metadados de arquivo" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "Biblioteca de suporte para manuseamento de arquivos 3MF" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "Biblioteca de suporte para manuseamento de arquivos STL" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling triangular meshes" +#~ msgstr "Biblioteca de suporte para manuseamento de malhas triangulares" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "Biblioteca de suporte para computação científica" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for system keyring access" +#~ msgstr "Biblioteca de suporte para acesso ao chaveiro do sistema" + #~ msgctxt "@label" #~ msgid "The material used in this project is currently not installed in Cura.
    Install the material profile and reopen the project." #~ msgstr "O material usado neste projeto não está instalado atualmente no Cura.
    Instale o perfil de material e reabra o projeto." @@ -5848,3 +5918,31 @@ msgstr "{} complementos falharam em baixar" #~ msgctxt "@error:zip" #~ msgid "The operating system does not allow saving a project file to this location or with this file name." #~ msgstr "O sistema operacional não permite salvar um arquivo de projeto nesta localização ou com este nome de arquivo." + +#~ msgctxt "@text:window" +#~ msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +#~ msgstr "Este é um arquivo de projeto Universal do Cura. Você gostaria de abri-lo como um projeto do Cura, ou Cura Universal Project, ou importar os modelos dele?" + +#~ msgctxt "@label Description for development tool" +#~ msgid "Universal build system configuration" +#~ msgstr "Configuração de sistema universal de construção" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Utility functions, including an image loader" +#~ msgstr "Funções de utilidade, incluindo um carregador de imagem" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Utility library, including Voronoi generation" +#~ msgstr "Biblioteca de utilidade, incluindo geração Voronoi" + +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y máx" + +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y mín" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "Biblioteca de descoberta 'ZeroConf'" diff --git a/resources/i18n/pt_BR/fdmextruder.def.json.po b/resources/i18n/pt_BR/fdmextruder.def.json.po index 09f8e20425..4c66398f73 100644 --- a/resources/i18n/pt_BR/fdmextruder.def.json.po +++ b/resources/i18n/pt_BR/fdmextruder.def.json.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-04-01 22:39+0200\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" +"PO-Revision-Date: 2025-03-23 17:27+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,7 +15,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.5\n" msgctxt "platform_adhesion description" msgid "Adhesion" @@ -41,6 +41,10 @@ msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Duração da Mudança do Extrusor" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" @@ -61,6 +65,10 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posição Y Final do Extrusor" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "G-Code de Pré-Início do Extrusor" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Posição X de Purga do Extrusor" @@ -129,6 +137,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Bico" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do Bico" + msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Deslocamento X do Bico" @@ -137,6 +149,10 @@ msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Deslocamento Y do Bico" +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "G-Code a executar antes de trocar para este extrusor." + msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "G-Code inicial a executar quando mudar para este extrusor." @@ -157,6 +173,10 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "O extrusor usado para impressão. Isto é usado em multi-extrusão." +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "A diferença de altura entre a ponta do bico e a parte inferior da cabeça de impressão." + msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "O diâmetro interno do bico. Altere este ajuste se usar um tamanho de bico fora do padrão." @@ -201,6 +221,10 @@ msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "A coordenada Y da posição de início quando se liga o extrusor." +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Ao usar uma configuração multiferramentas, este valor é o tempo da mudança de ferramentas em segundos. O valor será adicionado ao tempo estimado baseado no número de mudanças que ocorrem." + #~ msgctxt "machine_extruder_end_code description" #~ msgid "End g-code to execute whenever turning the extruder off." #~ msgstr "G-Code a ser executado antes de desligar o extrusor." diff --git a/resources/i18n/pt_BR/fdmprinter.def.json.po b/resources/i18n/pt_BR/fdmprinter.def.json.po index 9f1ed4f14e..6ba8a6d874 100644 --- a/resources/i18n/pt_BR/fdmprinter.def.json.po +++ b/resources/i18n/pt_BR/fdmprinter.def.json.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.7\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" -"PO-Revision-Date: 2024-04-02 02:04+0200\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" +"PO-Revision-Date: 2025-03-23 23:56+0100\n" "Last-Translator: Cláudio Sampaio \n" "Language-Team: Cláudio Sampaio \n" "Language: pt_BR\n" @@ -15,12 +15,16 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.2\n" +"X-Generator: Poedit 3.5\n" msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " msgstr "Como gerar a torre de purga:
    • Normal: cria-se um balde em que materiais secundários são purgados
    • Intercalados: cria-se uma torre de purga tão esparsa quanto possível. Isto salvará material e filamento, mas só é praticável se os materiais aderirem entre si
    " +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "Decide se se deve ativar as ventoinhas de refrigeração durante uma troca de bico. Isto pode ajudar a reduzir escorrimento por esfriar o bico mais rápido:
    • Não alterado: mantém as ventoinhas como estavam previamente
    • Somente o último extrusor: liga a ventoinha do último extrusor usado, mas desliga as outras (se houver). Isto é útil se você tem extrusores completamente separados.
    • Todas as ventoinhas: liga todas as ventoinhas durante a troca de bico. Isto é útil se você tiver uma única ventoinha para refrigeração ou múltiplas ventoinhas perto umas das outras.
    " + msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "O brim em volta de um modelo pode tocar outro modelo onde você não deseja. Isto remove todo o brim dentro desta distância de modelos sem brim." @@ -33,6 +37,10 @@ msgctxt "material_no_load_move_factor description" msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." msgstr "Um fator indicando em quanto o filamento é comprimido entre o alimentador do hotend e o bico, usado para determinar em quanto mover o material na troca de filamento." +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de linhas de direções inteiras a usar quando as camadas de contorno da superfície inferior usa os padrões de linhas ou ziguezague. Elementos da lista são usados sequencialmente à medida que as camadas progridem e quando o fim da lista é alcançado, ela reinicia do começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O valor default é uma lista vazia que significa usar os ângulos default tradicionais (45 e 135 graus)." + msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "Uma lista de direções inteiras de filete a usar quando as camadas superiores usam o padrão de linhas ou ziguezague. Elementos desta lista são usados sequencialmente de acordo com o progresso das camadas e quando se chega ao fim da lista, se volta ao começo. Os itens da lista são separados por vírgulas e a lista inteira é contida em colchetes. O default é uma lista vazia que significa o uso dos ângulos default (45 e 135 graus)." @@ -93,6 +101,10 @@ msgctxt "adaptive_layer_height_enabled description" msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "Camadas adaptativas fazem a computação das alturas de camada depender da forma do modelo." +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Adiciona filetes extras no padrão de preenchimento para apoiar os contornos acima. Esta opção previne furos ou bolhas de plástico que algumas vezes aparecem em contornos de formas complexas devido ao preenchimento abaixo não apoiar corretamente o contorno de cima. 'Paredes' faz suportar apenas os extremos do contorno, enquanto que 'Paredes e Linhas' faz também suportar extremos de filetes que perfazem o contorno." + msgctxt "infill_wall_line_count description" msgid "" "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" @@ -157,6 +169,10 @@ msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Todos de Uma Vez" +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Todas as ventoinhas" + msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "Todos os ajustes que influenciam a resolução da impressão. Estes ajustes têm um impacto maior na qualidade (e tempo de impressão)" @@ -293,6 +309,74 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "Largura de Remoção do Contorno Inferior" +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Aceleração da Parede Interna da Superfície Inferior" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Jerk da Parede Interna da Superfície Inferior" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Velocidade da Parede Interna da Superfície Inferior" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Fluxo da(s) Parede(s) Interna(s) da Superfície Inferior" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Aceleração da Parede Externa da Superfície Inferior" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Fluxo da Parede Externa da Superfície Inferior" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Jerk da Parede Externa da Superfície Inferior" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Velocidade da Parede Externa da Superfície Inferior" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Aceleração do Contorno da Superfície Inferior" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Extrusor do Contorno da Superfície Inferior" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Fluxo do Contorno da Superfície Inferior" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Jerk do Contorno da Superfície Inferior" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Camadas do Contorno da Superfície Inferior" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Direções de Filete do Contorno da Superfície Inferior" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Largura de Filete do Contorno da Superfície Inferior" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Padrão do Contorno da Superfície Inferior" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Velocidade do Contorno da Superfície Inferior" + msgctxt "bottom_thickness label" msgid "Bottom Thickness" msgstr "Espessura Inferior" @@ -437,6 +521,14 @@ msgctxt "brim_width label" msgid "Brim Width" msgstr "Largura do Brim" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Velocidade de Construção da Ventoinha na Altura" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Velocidade de Construção da Ventoinha na Camada" + msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" msgstr "Aderência à Mesa" @@ -477,6 +569,10 @@ msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" msgstr "Aviso de temperatura do Volume de Construção" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Número da ventoinha de volume de construção" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "Ao habilitar este ajuste sua torre de purga ganhará um brim, mesmo que o modelo não tenha. Se você quiser uma base mais firme para uma torre alta, pode aumentar a altura." @@ -517,6 +613,10 @@ msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "Ajustes de Linha de Comando" +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "Concêntrico" @@ -621,6 +721,10 @@ msgctxt "cooling label" msgid "Cooling" msgstr "Refrigeração" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Refrigerando durante a troca de extrusor" + msgctxt "infill_pattern option cross" msgid "Cross" msgstr "Cruzado" @@ -709,6 +813,14 @@ msgctxt "bridge_settings_enabled description" msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "Detectar pontes e modificar a velocidade de impressão, de fluxo e ajustes de fan onde elas forem detectadas." +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Determina o comprimento de cada passo na mudança de fluxo ao extrudar pela emenda scarf. Uma distância menor resultará em um G-code mais preciso porém também mais complexo." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Determina o comprimento da emenda scarf, um tipo de emenda que procura tornar a junção do eixo Z menos visível. Deve ser maior que 0 pra se tornar efetivo." + msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "Determina a ordem na qual paredes são impressas. Imprimir as paredes externas primeiro ajuda na acuracidade dimensional, visto que falhas das paredes internas não poderão propagar externamente. No entanto, imprimi-las no final ajuda a haver melhor empilhamento quando seções pendentes são impressas. Quando há uma quantidade ímpar de paredes internas totais, a 'última linha central' é sempre impressa por último." @@ -833,6 +945,10 @@ msgctxt "dual label" msgid "Dual Extrusion" msgstr "Extrusão Dual" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada passo na mudança gradual de fluxo" + msgctxt "machine_shape option elliptic" msgid "Elliptic" msgstr "Elíptica" @@ -925,6 +1041,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "Habilita a cobertura exterior de escorrimento. Isso criará uma casca ou cobertura em volta do modelo que ajudará a limpar o segundo bico se estiver na mesma altura do primeiro bico." +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou diminuído ao fluxo-alvo. Isto é útil para impressoras com tubo bowden em que o fluxo não é imediatamente alterado quando o motor de extrusor para ou inicia." + msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." msgstr "Habilita relatório de processo de impressão para definir valores-limite para possível detecção de falhas." @@ -989,6 +1109,10 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "Costura Extensa tenta costurar furos abertos na malha fechando o furo com polígonos que o tocam. Esta opção pode adicionar bastante tempo ao fatiamento das peças." +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Linhas de Preenchimento Extras Para Apoiar Contornos" + msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" msgstr "Contagem de Paredes de Preenchimento Extras" @@ -1001,6 +1125,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "Material extra a avançar depois da troca de bico." +msgctxt "variant_name" +msgid "Extruder" +msgstr "Extrusor" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "Posição X da Purga do Extrusor" @@ -1097,6 +1225,10 @@ msgctxt "skin_material_flow_layer_0 description" msgid "Flow compensation on bottom lines of the first layer" msgstr "Compensação de fluxo nos filetes da base da primeira camada" +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nos filetes de parede da superfície inferior para todos os filetes exceto o mais externo." + msgctxt "infill_material_flow description" msgid "Flow compensation on infill lines." msgstr "Compensação de fluxo em filetes de preenchimento." @@ -1105,6 +1237,10 @@ msgctxt "support_interface_material_flow description" msgid "Flow compensation on lines of support roof or floor." msgstr "Compensação de fluxo em filetes do teto ou base do suporte." +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Compensação de fluxo em filetes das áreas da base da impressão." + msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "Compensação de Fluxo em filetes das áreas no topo da impressão." @@ -1129,6 +1265,10 @@ msgctxt "support_material_flow description" msgid "Flow compensation on support structure lines." msgstr "Compensação de fluxo em filetes de estruturas de suporte." +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Compensação de fluxo na parede mais externa da superfície inferior." + msgctxt "wall_0_material_flow_layer_0 description" msgid "Flow compensation on the outermost wall line of the first layer." msgstr "Compensação de fluxo no filete de parede mais externo da primeira camada." @@ -1185,6 +1325,10 @@ msgctxt "material_flush_purge_speed label" msgid "Flush Purge Speed" msgstr "Velocidade de Descarga de Purga" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para cada movimento de percurso menor que este valor, o fluxo de material é resetado para o fluxo-alvo dos caminhos" + msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "Para estruturas finas por volta de uma ou duas vezes o tamanho do bico, as larguras de linhas precisam ser alteradas para aderir à grossura do modelo. Este ajuste controla a largura mínima de filete permite para as paredes. As larguras mínimas de filete inerentemente também determinam as larguras máximas, já que transicionamos de N pra N+1 parede na grossura de geometria onde paredes N são largas e as paredes N+1 são estreitas. A maior largura possível de parede é duas vezes a Largura Mínima de Filete de Parede." @@ -1305,6 +1449,18 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "Passos de Preenchimento Gradual de Suporte" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho de passo de discretização gradual de fluxo" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual habilitado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máximo de fluxo gradual" + msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "Gradualmente reduzir até esta temperatura quanto se estiver imprimindo a velocidades reduzidas devidas ao tempo mínimo de camada." @@ -1333,6 +1489,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + msgctxt "group_outer_walls label" msgid "Group Outer Walls" msgstr "Agrupar Paredes Externas" @@ -1697,6 +1857,10 @@ msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" msgstr "Temperatura Inicial de Impressão" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração máxima de fluxo da camada inicial" + msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" msgstr "Aceleração das Paredes Interiores" @@ -1733,6 +1897,10 @@ msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "De Dentro Pra Fora" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Distância de Desvio do Percurso Interior" + msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" msgstr "Linhas de interface preferidas" @@ -1921,6 +2089,10 @@ msgctxt "line_width label" msgid "Line Width" msgstr "Largura de Extrusão" +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Filetes" + msgctxt "infill_pattern option lines" msgid "Lines" msgstr "Linhas" @@ -2021,6 +2193,10 @@ msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Gerencia a relação espacial entre a costura Z da estrutura de suporte e o modelo 3D. Este controle é crucial já que permite a usuários assegurar a remoção limpa das estruturas de suporte pós-impressão sem infligir dano ou marcas no modelo impresso." + msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" @@ -2137,6 +2313,10 @@ msgctxt "meshfix_maximum_travel_resolution label" msgid "Maximum Travel Resolution" msgstr "Máxima Resolução de Percurso" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças de fluxo gradual" + msgctxt "machine_max_acceleration_x description" msgid "Maximum acceleration for the motor of the X-direction" msgstr "A aceleração máxima para o motor da impressora na direção X" @@ -2197,6 +2377,10 @@ msgctxt "slicing_tolerance option middle" msgid "Middle" msgstr "Meio" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Distância Z Mínima da Costura ao Modelo" + msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "Largura Mínima do Molde" @@ -2237,10 +2421,18 @@ msgctxt "cool_min_layer_time label" msgid "Minimum Layer Time" msgstr "Tempo Mínimo de Camada" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Tempo Mínimo de Camada com Seção Pendente" + msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" msgstr "Largura Mínima de Filete de Parede Ímpar" +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Comprimento Mínimo do Segmento de Seção Pendente" + msgctxt "minimum_polygon_circumference label" msgid "Minimum Polygon Circumference" msgstr "Mínima Circunferência do Polígono" @@ -2301,6 +2493,10 @@ msgctxt "minimum_roof_area description" msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." msgstr "Área mínima para os tetos do suporte. Polígonos que têm área menor que este valor serão impressos como suporte normal." +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças de fluxo gradual da primeira camada" + msgctxt "min_feature_size description" 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 Line Width." msgstr "Espessura mínima de detalhes finos. Detalhes de modelo que forem mais finos que este valor não serão impressos, enquanto que detalhes mais espessos que o Tamanho Mínimo de Detalhe serão aumentados para a Largura Mínima de Filete de Parede." @@ -2321,6 +2517,10 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "Altura de Teto do Molde" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Ordem Monotônica de Superfície Inferior" + msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "Ordem de Passagem a Ferro Monotônica" @@ -2341,6 +2541,10 @@ msgctxt "skirt_line_count description" msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." msgstr "Múltiplas linhas de skirt te ajudam a fazer purga de sua extrusão melhor para pequenos modelos. Se o valor for zero o skirt é desabilitado." +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Multiplicador para o preenchimento nas camadas iniciais do suporte. Aumentar este valor pode ajudar com aderência à mesa." + msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "Multiplicador da largura de extrusão da primeira camada. Aumentar este ajuste pode melhorar a aderência à mesa." @@ -2361,6 +2565,10 @@ msgctxt "adhesion_type option none" msgid "None" msgstr "Nenhuma" +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Nenhuma" + msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "Nenhum" @@ -2405,10 +2613,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Bico" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do Bico" - msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "Quantidade de Avanço Extra da Troca de Bico" @@ -2497,6 +2701,10 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "Um de Cada Vez" +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Somente o último extrusor" + msgctxt "retraction_hop_only_when_collides description" msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." msgstr "Somente fazer o Salto Z quando se mover sobre partes impressas que não podem ser evitadas pelo movimento horizontal quando a opção 'Evitar Peças Impressas nas Viagens' estiver ligada." @@ -2533,6 +2741,14 @@ msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "Aceleração da Parede Exterior" +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Deceleração do Final da Parede Externa" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Proporção de Velocidade do Fim da Parede Externa" + msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "Extrusor da Parede Externa" @@ -2557,6 +2773,18 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "Velocidade da Parede Exterior" +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Distância de Divisão de Velocidade da Parede Externa" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Aceleração do Início da Parede Externa" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Raio de Velocidade do Começo da Parede Externa" + msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "Distância de Varredura da Parede Externa" @@ -2577,13 +2805,13 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "Ângulo de Parede Pendente" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade de Parede Pendente" +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Velocidades das Paredes Pendentes" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Paredes pendentes serão impressas em uma porcentagem de sua velocidade normal de impressão. Você pode especificar valores múltiplos, de forma que ainda mais paredes pendentes sejam impressas mais lentamente, por exemplo colocando [75, 50, 25]" msgctxt "wipe_pause description" msgid "Pause after the unretract." @@ -2605,6 +2833,10 @@ msgctxt "bridge_fan_speed_3 description" msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "Porcentagem da velocidade da ventoinha a usar quando se imprimir a terceira camada de contorno da ponte." +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Coloca a costura-z em um vértice de polígono. Desligar este ajuste permite colocar a costura entre vértices também. (Tenha em mente que isto não vai sobrepôr as restrições em colocar a costura em uma seção pendente não suportada.)" + msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "Polígonos em camadas fatiadas que tiverem uma circunferência menor que esta quantia serão excluídos. Menores valores levam a malha de maior resolução ao custo de tempo de fatiamento. Serve melhor para impressoras SLA de alta resolução e pequenos modelos 3D com muitos detalhes." @@ -2613,6 +2845,10 @@ msgctxt "support_tree_angle_slow label" msgid "Preferred Branch Angle" msgstr "Ângulo Preferido de Galho" +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Factor de avanço de pressão" + msgctxt "wall_transition_filter_deviation description" msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." msgstr "Impede de alternar entre uma parede a mais e uma a menos. Esta margem estende o alcance dos comprimentos de file a seguir para [Largura Mínima de Filete de Parede - Margem, 2 * Largura Mínima de Filete de Parede + Margem]. Aumentar esta margem reduz o número de transições, que por sua vez reduz o número de paradas e inícios de extrusão e tempo de percurso. No entanto, variação de largura de filete pode levar a problemas de subextrusão ou sobre-extrusão." @@ -2653,6 +2889,10 @@ msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" msgstr "Distância Máxima de Ponte das Torres de Purga" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Espessura Mínima do Casco da Torre de Purga" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "Volume Mínimo da Torre de Purga" @@ -2685,6 +2925,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "Aceleração da Impressão" +msgctxt "variant_name" +msgid "Print Core" +msgstr "Núcleo de Impressão" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "Jerk da Impressão" @@ -2713,6 +2957,10 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "Imprimir uma torre próxima à impressão que serve para purgar o material a cada troca de bico." +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprime os filetes da superfície inferior em uma ordem que faz com que sempre se sobreponham com linhas adjacentes em uma direção única. Isso leva um pouco mais de tempo pra imprimir, mas faz superfícies chatas terem aspecto mais consistente." + msgctxt "infill_support_enabled description" msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." msgstr "Imprime estruturas de preenchimento somente onde os tetos do modelo devam ser suportados. Habilitar este ajuste reduz tempo de impressão e uso de material, mas leva a resistências não-uniformes no objeto." @@ -2805,6 +3053,18 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "Velocidade de Ventoinha da Base do Raft" +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Fluxo da Base do Raft" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Sobreposição do Preenchimento da Base do Raft" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento da Base do Raft" + msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" msgstr "Espaçamento de Filete de Base do Raft" @@ -2845,6 +3105,26 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "Velocidade de Ventoinha no Raft" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Fluxo do Raft" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Fluxo da Interface do Raft" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Sobreposição do Preenchimento da Interface do Raft" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento da Interface do Raft" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Deslocamento Z da Interface do Raft" + msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" msgstr "Margem Extra do Meio do Raft" @@ -2909,6 +3189,22 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "Amaciamento do Raft" +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Fluxo da Superfície do Raft" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Sobreposição do Preenchimento da Superfície do Raft" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Porcentagem de Sobreposição do Preenchimento da Superfície do Raft" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Deslocamento Z da Superfície do Raft" + msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" msgstr "Margem Extra do Topo do Raft" @@ -3073,6 +3369,10 @@ msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" msgstr "Relatar eventos que saem dos limites estabelecidos" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Duração de reset de fluxo" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "Preferência de Descanso" @@ -3137,6 +3437,18 @@ msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" msgstr "Compensação de Fator de Encolhimento" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Comprimento da Emenda Scarf" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Altura Inicial da Emenda Scarf" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Comprimento de Passo da Emenda Scarf" + msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" msgstr "A Cena Tem Malhas de Suporte" @@ -3145,6 +3457,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "Preferência do Canto da Costura" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Ângulo da Parede Pendente para Costura" + msgctxt "user_defined_print_order_enabled label" msgid "Set Print Sequence Manually" msgstr "Definir sequência de impressão manualmente" @@ -3281,7 +3597,6 @@ msgctxt "small_hole_max_size label" msgid "Small Hole Max Size" msgstr "Tamanho Máximo de Furos Pequenos" -#, fuzzy msgctxt "cool_min_temperature label" msgid "Small Layer Printing Temperature" msgstr "Temperatura de Impressão Final" @@ -3362,6 +3677,10 @@ msgctxt "machine_start_gcode label" msgid "Start G-code" msgstr "G-Code Inicial" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "O GCode de Início deve ser o primeiro" + msgctxt "z_seam_type description" msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." msgstr "Ponto de partida de cada caminho em uma camada. Quando caminhos em camadas consecutivas iniciam no mesmo ponto (X,Y), uma 'costura' vertical pode ser vista na impressão. Quando se alinha esta costura a uma coordenada especificada pelo usuário, a costura é mais fácil de remover pós-impressão. Quando colocada aleatoriamente as bolhinhas do início dos caminhos será menos perceptível. Quando se toma o menor caminho, a impressão será mais rápida." @@ -3398,7 +3717,6 @@ msgctxt "support_bottom_distance label" msgid "Support Bottom Distance" msgstr "Distância Inferior do Suporte" -#, fuzzy msgctxt "support_bottom_wall_count label" msgid "Support Bottom Wall Line Count" msgstr "Contagem de Linhas de Parede de Suporte" @@ -3491,6 +3809,10 @@ msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" msgstr "Aceleração do Preenchimento do Suporte" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Camada Inicial do Multiplicador de Densidade de Preenchimento de Suporte" + msgctxt "support_infill_extruder_nr label" msgid "Support Infill Extruder" msgstr "Extrusor do Preenchimento do Suporte" @@ -3559,7 +3881,6 @@ msgctxt "support_interface_height label" msgid "Support Interface Thickness" msgstr "Espessura da Interface de Suporte" -#, fuzzy msgctxt "support_interface_wall_count label" msgid "Support Interface Wall Line Count" msgstr "Contagem de Linhas de Parede de Suporte" @@ -3644,7 +3965,6 @@ msgctxt "support_roof_height label" msgid "Support Roof Thickness" msgstr "Espessura do Topo do Suporte" -#, fuzzy msgctxt "support_roof_wall_count label" msgid "Support Roof Wall Line Count" msgstr "Contagem de Linhas de Parede de Suporte" @@ -3685,6 +4005,10 @@ msgctxt "support_z_distance label" msgid "Support Z Distance" msgstr "Distância em Z do Suporte" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Suportar a Costura Z longe do Modelo" + msgctxt "support_interface_priority option support_lines_overwrite_interface_area" msgid "Support lines preferred" msgstr "Filetes de suporte preferidos" @@ -3777,6 +4101,10 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "Aceleração com que se imprimem as paredes interiores." +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "A aceleração com a qual as camadas do contorno da superfície inferior serão impressas." + msgctxt "acceleration_infill description" msgid "The acceleration with which infill is printed." msgstr "A aceleração com que o preenchimento é impresso." @@ -3793,6 +4121,14 @@ msgctxt "raft_base_acceleration description" msgid "The acceleration with which the base raft layer is printed." msgstr "A aceleração com que as camadas de base do raft são impressas." +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "A aceleração com que as paredes internas da superfície inferior são impressas." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "A aceleração com que as paredes mais externas da superfície inferior são impressas." + msgctxt "acceleration_support_bottom description" msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." msgstr "A aceleração com que as bases do suporte são impressas. Imprimi-las em aceleração menor pode melhorar aderência dos suportes no topo da superfície." @@ -3861,6 +4197,22 @@ msgctxt "acceleration_travel description" msgid "The acceleration with which travel moves are made." msgstr "Aceleração com que se realizam os percursos." +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material relativa a um filamento normal de extrusão a extrudar durante a impressão da base do raft. Ter um fluxo mais alto pode melhorar a aderência e a força estrutural do raft." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material relativa a um filamento normal de extrusão a extrudar durante a impressão da interface de raft. Ter um fluxo mais alto pode melhorar a aderência e a força estrutural do raft." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material relativa a um filamento normal de extrusão a extrudar durante a impressão do raft. Ter um fluxo mais alto pode melhorar a aderência e a força estrutural do raft." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material relativa a um filamento normal de extrusão a extrudar durante a impressão da superfície do raft. Ter um fluxo mais alto pode melhorar a aderência e a força estrutural do raft." + msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." msgstr "A quantidade de material, relativa ao filete normal de extrusão, para extrudar durante a passagem a ferro. Manter o bico com algum material ajuda a preencher algumas das lacunas e fendas da superfície superior, mas material demais resulta em superextrusão e verrugas nas laterais da superfície." @@ -3869,6 +4221,30 @@ msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." msgstr "A quantidade de sobreposição entre o preenchimento e as paredes como uma porcentagem da largura de extrusão de preenchimento. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes da base do raft, como uma porcentagem da largura do filete de preenchimento. Uma sobreposição leve permite às paredes conectarem-se firmemente ao preenchimento." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes da base do raft. Uma sobreposição leve permite às paredes conectarem-se firmemente ao preenchimento." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes da interface do raft, como uma porcentagem da largura do filete de preenchimento. Uma sobreposição leve permite às paredes conectarem-se firmemente ao preenchimento." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes da interface do raft. Uma sobreposição leve permite às paredes conectarem-se firmemente ao preenchimento." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes da superfície do raft, como uma porcentagem da largura do filete de preenchimento. Uma sobreposição leve permite às paredes conectarem-se firmemente ao preenchimento." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o preenchimento e as paredes da superfície do raft. Uma sobreposição leve permite às paredes conectarem-se firmemente ao preenchimento." + msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "A quantidade de sobreposição entre o preenchimento e as paredes. Uma leve sobreposição permite que as paredes se conectem firmemente ao preenchimento." @@ -3969,10 +4345,22 @@ msgctxt "adaptive_layer_height_variation_step description" msgid "The difference in height of the next layer height compared to the previous one." msgstr "A diferença em tamanho da próxima camada comparada à anterior." +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "As dimensões da cabeça de impressão usadas para determinar a 'Distância de Modo Seguro' ao imprimir 'Um de Cada Vez'. Esses número se relacionam ao filete central do bico do primeiro extrusor. À esquerda do bico é 'X Mínimo' e deve ser negativo. A parte de trás do bico é 'Y Mínimo' e deve ser negativa. X Máximo (direita) e Y Máximo (frente) são números positivos. Altura do eixo é a dimensão da plataforma de impressão até a barra do eixo X." + msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." msgstr "A distância entre as trajetórias de passagem a ferro." +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "A distância entre o modelo e sua estrutura de suporta na costura do eixo Z." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "A distância entre o bico e paredes externas já impressas ao percorrer no interior do modelo." + msgctxt "travel_avoid_distance description" msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "A distância entre o bico e as partes já impressas quando evitadas durante o percurso." @@ -4001,7 +4389,6 @@ msgctxt "brim_width description" msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." msgstr "A distância do modelo à linha mais externa do brim. Um brim mais largo aumenta a aderência à mesa, mas também reduz a área efetiva de impressão." -#, fuzzy msgctxt "interlocking_boundary_avoidance description" msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." msgstr "Distância da ponta do bico onde 'estacionar' o filamento quando seu extrusor não estiver sendo usado." @@ -4082,6 +4469,10 @@ msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "O carro extrusor usado para imprimir preenchimento. Este ajuste é usado em multi-extrusão." +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "O carro de extrusor usado para imprimir o contorno mais inferior. Isto é usado em multi-extrusão." + msgctxt "wall_x_extruder_nr description" msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "O carro extrusor usado para imprimir as paredes internas. Este ajuste é usado em multi-extrusão." @@ -4142,6 +4533,10 @@ msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." msgstr "A altura acima das partes horizontais do modelo onde criar o molde." +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que as ventoinhas giram na velocidade regular. Nas camadas abaixo a velocidade de ventoinha gradualmente aumenta da Velocidade Inicial de Ventoinha para a Velocidade Regular." + msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." msgstr "A altura em que as ventoinhas girarão na velocidade regular. Nas camadas abaixo a velocidade da ventoinha gradualmente aumenta da velocidade inicial para a velocidade regular." @@ -4150,10 +4545,6 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "Diferença de altura entre a ponta do bico e o sistema de eixos X ou X e Y (onde o extrusor desliza)." -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." - msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." msgstr "A diferença de altura ao executar um Salto Z após trocar extrusores." @@ -4254,6 +4645,10 @@ msgctxt "top_skin_preshrink description" msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." msgstr "A maior largura das áreas de contorno superiores que serão removidas. Cada área de contorno menor que este valor desaparecerá. Isto pode ajudar em limitar a quantidade de tempo e material gastos em impressão de contornos superiores em superfícies inclinadas do modelo." +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "A camada em que as ventoinhas giram na velocidade total. Este valor é calculado e arredondado para um número inteiro." + msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." msgstr "A camada em que as ventoinhas girarão na velocidade regular. Se a 'velocidade regular na altura' estiver ajustada, este valor é calculado e arredondado para um número inteiro." @@ -4326,10 +4721,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "A máxima mudança de velocidade instantânea em uma direção com que as paredes internas são impressas." +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "A máxima mudança instantânea de velocidade com que as camadas de contorno da superfície inferior são impressas." + msgctxt "jerk_infill description" msgid "The maximum instantaneous velocity change with which infill is printed." msgstr "A mudança instantânea máxima de velocidade em uma direção com que o preenchimento é impresso." +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "A máxima mudança instantânea de velocidade com que as paredes internas da superfície inferior são impressas." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "A máxima mudança instantânea de velocidade com quem as paredes externas da superfície inferior são impressas." + msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "A máxima mudança de velocidade instantânea com que as bases dos suportes são impressas." @@ -4466,6 +4873,14 @@ msgctxt "support_bottom_stair_step_min_slope description" msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." msgstr "A mínima inclinação da área para que o suporte em escada tenha efeito. Valores baixos devem tornar o suporte mais fácil de remover em inclinações rasas, mas muitos baixos resultarão em resultados bastante contra-intuitivos em outras partes do modelo." +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "A espessura mínima do casco da torre de purga. Você pode aumentar este valor para tornar a torre de purga mais forte." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo gasto em uma camada que contenha extrusões pendentes. Isto força a impressora a desacelerar para pelo menos gastar o tempo ajustado aqui em uma camada. E por sua vez isso permite que o material impresso esfrie apropriadamente antes de imprimir a próxima camada. Camadas ainda podem levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada dessa forma." + msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "O tempo mínimo empregado em uma camada. Isto força a impressora a desacelerar para no mínimo usar o tempo ajustado aqui em uma camada. Isto permite que o material impresso resfrie apropriadamente antes de passar para a próxima camada. As camadas podem ainda assim levar menos tempo que o tempo mínimo de camada se Levantar Cabeça estiver desabilitado e se a Velocidade Mínima fosse violada com a lentidão." @@ -4498,6 +4913,10 @@ msgctxt "bottom_layers description" msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "O número de camadas inferiores. Quando calculado da espessura inferior, este valor é arredondado para um inteiro." +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "O número de camadas do contorno mais inferior. Geralmente somente uma camada de contorno mais inferior é suficiente para gerar superfícies inferiores de maior qualidade." + msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "O número de contornos a serem impressos em volta do padrão linear na camada base do raft." @@ -4534,6 +4953,10 @@ msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." msgstr "O número de filetes usado para o brim de suporte. Mais filetes melhoram a aderência na mesa de impressão, ao custo de material extra." +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "O número da ventoinhas que refrigeram o volume de construção. Se isto for colocado em 0, significa que não há ventoinha do volume de construção." + msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "O número de camadas superiores acima da segunda camada do raft. Estas são camadas completamente preenchidas em que o modelo se assenta. 2 camadas resultam em uma superfície superior mais lisa que apenas uma." @@ -4550,17 +4973,14 @@ msgctxt "support_wall_count description" msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." -#, fuzzy msgctxt "support_bottom_wall_count description" msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." -#, fuzzy msgctxt "support_roof_wall_count description" msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." -#, fuzzy msgctxt "support_interface_wall_count description" msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." msgstr "O número de paredes com as quais contornar o preenchimento de suporte. Adicionar uma parede pode tornar a impressão de suporte mais confiável e apoiar seções pendentes melhor, mas aumenta tempo de impressão e material usado." @@ -4577,6 +4997,10 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "Diâmetro exterior do bico (a ponta do hotend)." +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "O padrão das camadas mais inferiores." + msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "O padrão do material de preenchimento da impressão. Os preenchimentos de linha e ziguezague trocam de direção em camadas alternadas, reduzindo custo de material. Os padrões de grade, triângulo, tri-hexágono, cúbico, octeto, quarto cúbico, cruzado e concêntrico são completamente impressos a cada camada. Os preenchimentos giroide, cúbico, quarto cúbico e octeto mudam a cada camada para prover uma distribuição de força mais uniforme em cada direção. O preenchimento de relâmpago tenta minimizar material somente suportando o teto do objeto." @@ -4629,14 +5053,14 @@ msgctxt "jerk_layer_0 description" msgid "The print maximum instantaneous velocity change for the initial layer." msgstr "A mudança instantânea máxima de velocidade em uma direção para a camada inicial." +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "A proporção da altura de camada selecionada em que a emenda scarf começará. Um número menor resultará em maior altura de emenda. Deve ser menor que 100 para se tornar efetivo." + msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." msgstr "A forma da mesa de impressão sem levar área não-imprimíveis em consideração." -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." - msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "O tamanho dos bolso em cruzamentos quádruplos no padrão cruzado 3D em alturas onde o padrão esteja se tocando." @@ -4657,6 +5081,10 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "A velocidade em que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente que a parede externa reduzirá o tempo de impressão. Funciona bem ajustar este valor a meio caminho entre a velocidade da parede mais externa e a velocidade de preenchimento." +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "A velocidade com que as camadas do contorno da superfície inferior são impressas." + msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." msgstr "A velocidade com a qual regiões de contorno de ponte são impressas." @@ -4673,6 +5101,14 @@ msgctxt "raft_base_speed description" msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "A velocidade em que a camada de base do raft é impressa. Deve ser impressa lentamente, já que o volume do material saindo do bico será bem alto." +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície inferior são impressas." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "A velocidade com que a parede mais externa da superfície inferior é impressa." + msgctxt "bridge_wall_speed description" msgid "The speed at which the bridge walls are printed." msgstr "A velocidade com a qual as paredes de ponte são impressas." @@ -4921,10 +5357,9 @@ msgctxt "support_brim_width description" msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." msgstr "A largura do brim a ser impresso sob o suporte. Um brim mais largo melhora a aderência à mesa de impressão, ao custo de material extra." -#, fuzzy msgctxt "interlocking_beam_width description" msgid "The width of the interlocking structure beams." -msgstr "A largura da torre de purga." +msgstr "A largura das faixas cruzadas de estrutura." msgctxt "prime_tower_base_size description" msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." @@ -4958,6 +5393,26 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "Este ajuste controla a distância que o extrusor deve parar de extrudar antes que a parede de ponte comece. Desengrenar antes da ponte iniciar pode reduzir a pressão no bico e produzir em uma ponte mais horizontal." +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Esta é a aceleração com a qual se alcança a velocidade máxima ao imprimir uma parede externa." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Esta é a deceleração com que terminar a impressão de uma parede externa." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Este é o máximo comprimento de um caminho de extrusão ao dividir um caminho maior para aplicar a aceleração ou deceleração de parede externa. Uma distância maior criará um G-code mais preciso mas também mais extenso." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Esta é a proporção da velocidade máxima com que terminar a impressão de uma parede externa." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Esta é a proporção da velocidade máxima com que começar a impressão de uma parede externa." + msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Este ajuste controla quantos cantos internos no contorno da base do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." @@ -4974,6 +5429,10 @@ msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "Este ajuste controle quantos cantos internos no contorno do topo do raft são arredondados. Cantos agudos são arredondados para um semicírculo com raio igual ao valor dado aqui. Este ajuste também remove furos no contorno do raft que sejam menores que tal círculo." +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Este ajuste controle se o gcode de início é forçado para sempre ser o primeiro g-code. Sem esta opção outro g-code, como um T0, pode ser inserido antes do g-code de início." + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "Este ajuste limita o número de retrações ocorrendo dentro da janela de distância de extrusão mínima. Retrações subsequentes dentro desta janela serão ignoradas. Isto previne repetidas retrações no mesmo pedaço de filamento, já que isso pode acabar ovalando e desgastando o filamento." @@ -5202,10 +5661,22 @@ msgctxt "support_tree_max_diameter label" msgid "Trunk Diameter" msgstr "Diâmetro do Tronco" +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Tentar prevenir costuras nas paredes que tenham seção pendente com ângulo maior que esse. Quando o valor for 90, nenhuma parede será tratada como seção pendente." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Fator de sintonização de avanço de pressão, que tem a função de sincronizar a extrusão com o movimento" + msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Não alterado" + msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" msgstr "Volumes de Sobreposição de Uniões" @@ -5330,9 +5801,17 @@ msgctxt "shell label" msgid "Walls" msgstr "Paredes" +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Paredes Somente" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Paredes e Linhas" + msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Paredes com seção pendente maior que este ângulo serão impressas usando ajustes de seções pendentes de perede. Quando este valor for 90, nenhuma parede será tratada como seção pendente. Seções pendentes apoiadas por suporte não serão tratadas como pendentes também. Além disso, qualquer filete que for menos da metade pendente também não será tratado como pendente." msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." @@ -5370,6 +5849,14 @@ msgctxt "bridge_wall_material_flow description" msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "Ao se imprimir paredes de ponte, a quantidade de material extrudado é multiplicada por este valor." +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Quando a primeira camada da interface de raft for impressa, traduza pelo valor deste deslocamento para personalizar a aderência entre a base e a interface. Um deslocamento negative deve melhorar a aderência." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Quando a primeira camada da superfície de raft for impressora, traduza pelo valor deste deslocamento para personalizar a aderência entre a base e a superfície. Um deslocamento negative deve melhorar a aderência." + msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "Ao imprimir a segunda camada de contorno de ponte, a quantidade de material é multiplicada por este valor." @@ -5394,6 +5881,10 @@ msgctxt "wall_transition_length description" 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 lines." msgstr "Ao transicionar entre diferentes números de paredes à medida que a peça fica mais fina, uma certa quantidade de espaço é alocada para partir ou juntar os filetes de parede." +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Ao tentar aplicar o tempo mínimo de camada específico para camadas pendentes, o ajuste valerá somente se no mínimo um movimento de extrusão pendente consecutivo demorar mais que esse valor." + msgctxt "wipe_hop_enable description" msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." msgstr "Quando limpando, a plataforma de impressão é abaixada para criar uma folga entre o bico e a impressão. Isso previne que o bico bata na impressão durante movimentos de percurso, reduzindo a chance de descolar o objeto da plataforma." @@ -5490,6 +5981,10 @@ msgctxt "support_interface_line_width description" msgid "Width of a single line of support roof or floor." msgstr "Largura de um filete usado no teto ou base do suporte." +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Largura de um filete singular das áreas na base da impressão." + msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." msgstr "Largura de extrusão de um filete das áreas no topo da peça." @@ -5666,6 +6161,10 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Alinhamento da Costura em Z" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Costura Z No Vértice" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "Posição da Costura Z" @@ -5686,6 +6185,10 @@ msgctxt "support_xy_overrides_z option z_overrides_xy" msgid "Z overrides X/Y" msgstr "Z substitui X/Y" +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + msgctxt "infill_pattern option zigzag" msgid "Zig Zag" msgstr "Ziguezague" @@ -5742,58 +6245,54 @@ msgstr "percurso" #~ msgid "Brim Only on Outside" #~ msgstr "Brim Somente Para Fora" -#~ msgctxt "gradual_flow_discretisation_step_size description" -#~ msgid "Duration of each step in the gradual flow change" -#~ msgstr "Duração de cada passo na alteração de fluxo gradual" - -#~ msgctxt "gradual_flow_enabled description" -#~ msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -#~ msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou reduzido para o fluxo alvo. Útil para impressoras com tubo bowden onde o fluxo não é imediatamente alterado quando o motor do extrusor inicia ou para." - -#~ msgctxt "reset_flow_duration description" -#~ msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -#~ msgstr "Para qualquer movimento mais longo que este valor, o fluxo material é resetado para o fluxo-alvo do percurso." - -#~ msgctxt "gradual_flow_discretisation_step_size label" -#~ msgid "Gradual flow discretisation step size" -#~ msgstr "Tamanho de passo da discretização de fluxo gradual" - -#~ msgctxt "gradual_flow_enabled label" -#~ msgid "Gradual flow enabled" -#~ msgstr "Fluxo gradual habilitado" - -#~ msgctxt "max_flow_acceleration label" -#~ msgid "Gradual flow max acceleration" -#~ msgstr "Aceleração máxima do fluxo gradual" - -#~ msgctxt "layer_0_max_flow_acceleration label" -#~ msgid "Initial layer max flow acceleration" -#~ msgstr "Aceleração máxima de fluxo da camada inicial" - #~ msgctxt "layer_0_z_overlap description" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "Faz a primeira e segunda camadas do modelo se sobreporem na direção Z para compensar pelo filamento perdido no vão aéreo. Todos os modelos acima da primeira camada de modelo serão deslocados para baixo por essa distância." -#~ msgctxt "max_flow_acceleration description" -#~ msgid "Maximum acceleration for gradual flow changes" -#~ msgstr "Aceleração máxima para alterações de fluxo gradual" +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle Length" +#~ msgstr "Comprimento do Bico" -#~ msgctxt "layer_0_max_flow_acceleration description" -#~ msgid "Minimum speed for gradual flow changes for the first layer" -#~ msgstr "Velocidade mínima para alterações graduais de fluxo na primeira camada" +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "Tamanho do bico" #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "Imprimir o Brim somente no lado de fora do modelo. Isto reduz a quantidade de brim a ser removida no final, e não reduz tanto a aderência à mesa." -#~ msgctxt "reset_flow_duration label" -#~ msgid "Reset flow duration" -#~ msgstr "Duração de reset do fluxo" +#~ msgctxt "wall_0_acceleration label" +#~ msgid "Outer Wall Acceleration" +#~ msgstr "Aceleração da Parede Externa" + +#~ msgctxt "wall_0_deceleration label" +#~ msgid "Outer Wall Deceleration" +#~ msgstr "Deceleração da Parede Externa" + +#~ msgctxt "wall_overhang_speed_factor label" +#~ msgid "Overhanging Wall Speed" +#~ msgstr "Velocidade de Parede Pendente" + +#~ msgctxt "wall_overhang_speed_factor description" +#~ msgid "Overhanging walls will be printed at this percentage of their normal print speed." +#~ msgstr "Paredes pendentes serão impressas com esta porcentagem de sua velocidade de impressão normal." #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" #~ msgstr "Resolução da Interface de Suporte" +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "Diferença de altura entre a ponta do bico e a parte mais baixa da cabeça de impressão." + +#~ msgctxt "machine_head_with_fans_polygon description" +#~ msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +#~ msgstr "A forma da cabeça de impressão. Essas são coordenadas relativas à posição da cabeça de impressão, que é geralmente a posição do seu primeiro extrusor. As dimensões à esquerda e na frente da cabeça devem ser coordenadas negativas." + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +#~ msgstr "Paredes que pendem por mais do que esse ângulo serão impressas usando ajustes de paredes pendentes. Quando este valor for 90, nenhuma parede será tratada como pendente. Seções pendentes que têm suportes também não serão tratadas como pendentes." + #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "Quando verificar se há partes do modelo abaixo e acima do suporte, usar passos de dada altura. Valores baixos fatiarão mais lentamente, enquanto que valores altos farão com que suporte convencional seja impresso em lugares em que deveria haver interface de suporte." diff --git a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po b/resources/i18n/pt_BR/gradual_flow_settings.def.json.po deleted file mode 100644 index 24b118429c..0000000000 --- a/resources/i18n/pt_BR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,55 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-04-01 22:35+0200\n" -"Last-Translator: Cláudio Sampaio \n" -"Language-Team: none\n" -"Language: pt_BR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-Generator: Poedit 3.4.2\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada passo na mudança gradual de fluxo" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Habilita mudanças graduais de fluxo. Quando habilitado, o fluxo é gradualmente aumentado ou diminuído ao fluxo-alvo. Isto é útil para impressoras com tubo bowden em que o fluxo não é imediatamente alterado quando o motor de extrusor para ou inicia." - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para cada movimento de percurso menor que este valor, o fluxo de material é resetado para o fluxo-alvo dos caminhos" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho de passo de discretização gradual de fluxo" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual habilitado" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máximo de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração máxima de fluxo da camada inicial" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para mudanças de fluxo gradual" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para mudanças de fluxo gradual da primeira camada" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Duração de reset de fluxo" diff --git a/resources/i18n/pt_PT/cura.po b/resources/i18n/pt_PT/cura.po index a8ca610fbc..bbc48e9049 100644 --- a/resources/i18n/pt_PT/cura.po +++ b/resources/i18n/pt_PT/cura.po @@ -170,6 +170,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Ficheiro 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Leitor de 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Gravador 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "O plug-in Gravador 3MF está danificado." @@ -245,6 +253,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Ficheiro AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Leitor de AMF" + msgctxt "@label" msgid "Abort" msgstr "Cancelar" @@ -281,6 +293,10 @@ msgctxt "@button" msgid "Accept" msgstr "Aceitar" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." + msgctxt "@label" msgid "Account synced" msgstr "Conta sincronizada" @@ -421,6 +437,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Permitir o envio de dados anónimos" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Permite abrir e visualizar ficheiros G-code." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Perguntar sempre isto" @@ -577,6 +597,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Backup e Repor a Configuração" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Efetua uma cópia de segurança e repõe a sua configuração." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Efetue uma cópia de segurança e sincronize as definições de materiais e plug-ins" @@ -749,6 +773,14 @@ msgctxt "@label" msgid "Checking..." msgstr "A verificar..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Procura e verifica se existem atualizações de firmware." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Escolha entre os tipos de estrutura de suportes disponíveis. ⏎⏎ O tipo \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e extrude estas áreas para baixo. " @@ -830,6 +862,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Ficheiro G-code comprimido" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Leitor de G-code comprimido" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Gravador de G-code comprimido" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Alterações na configuração" @@ -902,6 +942,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Ligada através da cloud" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "Consulte a Comunidade UltiMaker." @@ -1037,6 +1081,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Crie projetos de impressão na Digital Library." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "A criar a cópia de segurança..." @@ -1049,10 +1097,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cópias de segurança do Cura" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cópias de segurança do Cura" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Perfil Cura" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Leitor de Perfis Cura" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Gravador de perfis Cura" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Ficheiro 3MF de Projeto Cura" @@ -1082,6 +1142,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Versão do Cura" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "Back-end do CuraEngine" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Moeda:" @@ -1366,6 +1438,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Ativado" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." + msgctxt "@title:label" msgid "End G-code" msgstr "G-code final" @@ -1454,6 +1530,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "Tire mais partido do UltiMaker Cura com plug-ins e perfis de materiais." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" + msgctxt "@label" msgid "Extruder" msgstr "Extrusor" @@ -1602,6 +1682,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Atualização de firmware" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Verificador Atualizações Firmware" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Atualizador de firmware" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "O firmware não pode ser atualizado porque a ligação com a impressora não suporta a atualização de firmware." @@ -1701,6 +1789,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "Ficheiro G-code" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "Leitor de perfis G-code" + +msgctxt "name" +msgid "G-code Reader" +msgstr "Leitor de G-code" + +msgctxt "name" +msgid "G-code Writer" +msgstr "Gravador de G-code" + msgctxt "@label" msgid "G-code flavor" msgstr "Variante do G-code" @@ -1849,6 +1949,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Se a sua impressora não estiver na lista, por favor, consulte o guia de resolução de problemas de impressão em rede" +msgctxt "name" +msgid "Image Reader" +msgstr "Leitor de imagens" + msgctxt "@action:button" msgid "Import" msgstr "Importar" @@ -2133,6 +2237,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Vista esquerda" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Leitor de perfis antigos do Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Informe os programadores quando houver algum problema." @@ -2213,6 +2321,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Relatórios" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Perdeu-se a ligação com a impressora" @@ -2221,6 +2333,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Definições da Máquina" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Função Definições da Máquina" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Máquinas" @@ -2237,6 +2353,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Arquivo de Impressão Makerbot" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Escritor de Arquivo de Impressão Makerbot" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter não pôde salvar no caminho designado." @@ -2293,6 +2413,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Faça aqui a gestão dos plug-ins e perfis de materiais do Ultimaker Cura. Certifique-se de que mantém os plug-ins atualizados e que efetua regularmente uma cópia de segurança da sua configuração." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Gere as ligações de rede com as impressoras em rede UltiMaker." + msgctxt "@label" msgid "Manufacturer" msgstr "Fabricante" @@ -2305,6 +2433,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mercado" +msgctxt "name" +msgid "Marketplace" +msgstr "Marketplace" + msgctxt "@action:label" msgid "Material" msgstr "Material" @@ -2321,6 +2453,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Cor do Material" +msgctxt "name" +msgid "Material Profiles" +msgstr "Perfis de Materiais" + msgctxt "@label" msgid "Material Type" msgstr "Tipo de Material" @@ -2365,6 +2501,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Modo" +msgctxt "name" +msgid "Model Checker" +msgstr "Verificador de Modelos" + msgctxt "@info:title" msgid "Model Errors" msgstr "Erros no modelo" @@ -2381,6 +2521,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Monitorizar" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Fase de monitorização" + msgctxt "@action:button" msgid "Monitor print" msgstr "Monitorizar a impressão" @@ -2822,6 +2966,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Definições Por-Modelo" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Ferramenta de definições Por-Modelo" + msgid "Perspective" msgstr "Perspetiva" @@ -2947,6 +3095,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Pós-Processamento" +msgctxt "name" +msgid "Post Processing" +msgstr "Pós-Processamento" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Plug-in de pós-processamento" @@ -2963,6 +3115,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Preparar" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Fase de preparação" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "A preparar..." @@ -2983,6 +3139,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Pré-visualizar" +msgctxt "name" +msgid "Preview Stage" +msgstr "Fase de pré-visualização" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Torre de preparação" @@ -3227,6 +3387,106 @@ msgctxt "@label" msgid "Properties" msgstr "Propriedades" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Disponibiliza as ações da máquina para atualizar o firmware." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Fornece uma fase de monitorização no Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Permite a visualização (simples) dos objetos como sólidos." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Fornece uma fase de preparação no Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Fornece uma fase de pré-visualização no Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Possibilita a exportação de perfis do Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Fornece suporte para importar perfis Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Permite importar perfis a partir de ficheiros g-code." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Permite importar perfis de versões antigas do Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Fornece suporte para ler ficheiros 3MF." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Fornece suporte para ler ficheiros AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Fornece suporte para ler pacotes de formato Ultimaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Fornece suporte para ler ficheiros X3D." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Fornece suporte para a leitura de ficheiros modelo." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Presta apoio na escrita de ficheiros 3MF e UCP." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Fornece suporte para escrever Pacotes de Formato MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Permite a gravação de arquivos Ultimaker Format." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Fornece as definições por-modelo." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Permite a visualização em Raio-X." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Permite pré-visualizar os dados das camadas seccionadas." + msgctxt "@label" msgid "PyQt version" msgstr "Versão PyQt" @@ -3263,6 +3523,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Sair %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Lê o g-code a partir de um arquivo comprimido." + msgctxt "@button" msgid "Recommended" msgstr "Recomendado" @@ -3315,6 +3579,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Disco Externo" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Plug-in de dispositivo de saída da unidade amovível" + msgctxt "@action:button" msgid "Remove" msgstr "Remover" @@ -3595,6 +3863,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Enviar materiais para a impressora" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry Logger" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Biblioteca de comunicação em série" @@ -3803,6 +4075,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Inicie a sessão na plataforma UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Visualização por camadas" + msgctxt "@tooltip" msgid "Skin" msgstr "Revestimento" @@ -3831,6 +4107,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Seccionar automaticamente ao alterar as definições." +msgctxt "name" +msgid "Slice info" +msgstr "Informações do seccionamento" + msgctxt "@message:title" msgid "Slicing failed" msgstr "O seccionamento falhou" @@ -3847,6 +4127,10 @@ msgctxt "@label" msgid "Solid" msgstr "Sólido" +msgctxt "name" +msgid "Solid View" +msgstr "Vista Sólidos" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Vista Sólidos" @@ -3941,6 +4225,10 @@ msgctxt "@label" msgid "Strength" msgstr "Força" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Material exportado com êxito para %1" @@ -3985,6 +4273,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Remover Suportes" +msgctxt "name" +msgid "Support Eraser" +msgstr "Eliminador de suportes" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Enchimento dos Suportes" @@ -4501,6 +4793,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Tentou restaurar um Cura backup sem existirem dados ou metadados correctos." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Leitor de Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Resolução de problemas" @@ -4521,10 +4817,22 @@ msgctxt "@label" msgid "Type" msgstr "Tipo" +msgctxt "name" +msgid "UFP Reader" +msgstr "Leitor de UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Gravador de UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Impressão USB" +msgctxt "name" +msgid "USB printing" +msgstr "Impressão USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Conta UltiMaker" @@ -4541,6 +4849,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Arquivo UltiMaker Format" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ligação de rede UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Pacote Aprovado pela UltiMaker" @@ -4549,6 +4861,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Plug-in Aprovado pela UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Funções para impressoras Ultimaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Impressora da UltiMaker" @@ -4561,6 +4877,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Biblioteca Digital UltiMaker" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Não é possível adicionar o perfil." @@ -4734,6 +5054,114 @@ msgctxt "@button" msgid "Updating..." msgstr "A actualizar..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Atualiza as configurações da Cura 5.6 para Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Carregar firmware personalizado" @@ -4770,6 +5198,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Valor" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Atualização da versão 2.1 para 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Atualização da versão 2.2 para 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Atualização da versão 2.5 para 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Atualização da versão 2.6 para 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Atualização da versão 2.7 para 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Atualização da versão 3.0 para 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Atualização da versão 3.2 para 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Atualização da versão 3.3 para 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Atualização da versão 3.4 para 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Atualização da versão 3.5 para 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Atualização da versão 4.0 para 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Atualização da versão 4.1 para 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Atualização da versão 4.11 para a versão 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Atualização do Cura versão 4.13 para 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Atualização da versão 4.2 para 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Atualização da versão 4.3 para 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Atualização da versão 4.4 para a versão 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Atualização da versão 4.5 para a versão 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Atualização da versão 4.6.2 para a versão 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Atualização da versão 4.7 para 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Atualização da versão 4.8 para 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Atualização da versão 4.9 para 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Atualização da versão 5.2 para 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Atualização da versão 5.3 para 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Atualização da versão 5.4 para 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Atualização da versão 5.6 para 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Visualize as impressoras na fábrica digital" @@ -4886,6 +5422,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Largura (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Grava o g-code num arquivo comprimido." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Grava o g-code num ficheiro." + msgctxt "@label" msgid "X (Width)" msgstr "X (Largura)" @@ -4898,6 +5442,10 @@ msgctxt "@label" msgid "X min" msgstr "X mín" +msgctxt "name" +msgid "X-Ray View" +msgstr "Vista Raio-X" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Vista Raio-X" @@ -4910,6 +5458,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Ficheiro X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Leitor de X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Profundidade)" @@ -5055,554 +5607,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Falhou a transferência de {} plug-ins" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Gere as ligações de rede a impressoras UltiMaker interconectadas." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ligação de rede UltiMaker" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Permite importar perfis a partir de ficheiros g-code." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Leitor de perfis G-code" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Permite a visualização (simples) dos objetos como sólidos." - -msgctxt "name" -msgid "Solid View" -msgstr "Vista Sólidos" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Plug-in CuraEngine para suavizar gradualmente o fluxo para limitar saltos por fluxo elevado" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Fornece suporte para ler ficheiros 3MF." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Leitor de 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Aceita G-Codes e envia-os para uma impressora. O plug-in também pode atualizar firmware." - -msgctxt "name" -msgid "USB printing" -msgstr "Impressão USB" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Procura e verifica se existem atualizações de firmware." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Verificador Atualizações Firmware" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Faz a gestão de extensões da aplicação e permite a navegação das extensões a partir do website da UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Marketplace" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Efetua uma cópia de segurança e repõe a sua configuração." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cópias de segurança do Cura" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Proporciona uma forma de alterar as definições da máquina (tal como o volume de construção, o tamanho do nozzle, etc.)." - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Função Definições da Máquina" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Atualiza as configurações do Cura 2.5 para o Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Atualização da versão 2.5 para 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Atualiza as configurações do Cura 4.7 para o Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Atualização da versão 4.7 para 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Atualiza as configurações do Cura 4.4 para o Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Atualização da versão 4.4 para a versão 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Atualiza as configurações do Cura 3.0 para o Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Atualização da versão 3.0 para 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Atualiza as configurações do Cura 4.11 para o Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Atualização da versão 4.11 para a versão 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Atualiza as configurações do Cura 4.1 para o Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Atualização da versão 4.1 para 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Atualiza as configurações do Cura 2.6 para o Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Atualização da versão 2.6 para 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Atualiza as configurações do Cura 4.6.0 para o Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Atualização da versão 4.6.0 para a versão 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Atualiza as configurações do Cura 3.3 para o Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Atualização da versão 3.3 para 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Atualiza as configurações do Cura 4.8 para o Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Atualização da versão 4.8 para 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Atualiza as configurações do Cura 4.5 para o Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Atualização da versão 4.5 para a versão 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Atualiza as configurações do Cura 4.2 para o Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Atualização da versão 4.2 para 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Atualiza as configurações do Cura 3.2 para o Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Atualização da versão 3.2 para 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Configurações de atualizações do Cura 4.3 para o Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "A combinação não é recomendada. Carregue o núcleo BB na ranhura 1 (esquerda) para uma maior fiabilidade." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Atualização da versão 4.3 para 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Atualiza as configurações da Cura 5.6 para Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Ficheiro Para Impressão Makerbot Sketch" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Atualização da versão 5.6 para 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Procurar impressora" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Atualiza as configurações do Cura 2.1 para o Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Este é um ficheiro de projeto Cura Universal. Gostaria de o abrir como um projeto Cura Universal ou fazer a importação dos seus modelos?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Atualização da versão 2.1 para 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Pacote de exportação para assistência técnica" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Atualiza configurações do Cura 5.3 para o Cura 5.4." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Não é possível enviar os dados do modelo para a máquina. Por favor, tente novamente ou contacte a equipa de assistência." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Atualização da versão 5.3 para 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Não é possível enviar os dados do modelo para a máquina. Por favor, experimente utilizar um modelo menos detalhado ou reduza o número de ocorrências." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Atualiza as configurações do Cura 4.9 para o Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Atualiza configurações de Cura 5.8 para Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Atualização da versão 4.9 para 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Atualiza as configurações do Cura 2.7 para o Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Atualização da versão 5.8 para 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Atualização da versão 2.7 para 3.0" +msgid "3DConnexion mouses" +msgstr "Ratos 3DConnexion" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Atualiza as configurações do Cura 3.5 para o Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Permite trabalhar com ratos 3D no Cura." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Atualização da versão 3.5 para 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Duração da mudança da extrusora" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Atualiza as configurações do Cura 5.2 para o Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "Código G de pré-arranque da extrusora" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Atualização da versão 5.2 para 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Inverter o eixo Y da ferramenta de manipulação do modelo (é necessário reiniciar)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Atualiza as configurações do Cura 4.0 para o Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Licença para %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Atualização da versão 4.0 para 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Ficheiro de impressão Makerbot Replicator+" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Atualiza as configurações do Cura 4.13 para o Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Deverá o eixo Y da ferramenta de manipulação traduzida ser invertido? Isto só afetará a coordenada Y do modelo. Todas as outras definições, como as definições da cabeça de impressão da máquina, não são afetadas e continuam a comportar-se como antes." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Atualização do Cura versão 4.13 para 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Atualiza as configurações do Cura 3.4 para o Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Atualização da versão 3.4 para 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Atualiza as configurações do Cura 2.2 para o Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "O GCode inicial deve estar primeiro" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Atualização da versão 2.2 para 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Esta configuração não está disponível porque existe uma incompatibilidade ou outro problema com o tipo de núcleo %1. Visite a página de suporte para verificar que núcleos deste tipo de impressora suportam novas fatias w.r.t." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Atualiza as configurações do Cura 4.6.2 para o Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Atualiza as configurações do Cura 5.9 para o Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Atualização da versão 4.6.2 para a versão 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Atualização da versão 5.9 para 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Atualiza configurações do Cura 5.4 para o Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Atualização da versão 5.4 para 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Permite abrir e visualizar ficheiros G-code." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Leitor de G-code" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Máx. Y (\"+\" para a frente)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Envia informações anónimas sobre o seccionamento. Pode ser desativado nas preferências." - -msgctxt "name" -msgid "Slice info" -msgstr "Informações do seccionamento" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Fornece suporte de ligação da unidade amovível e suporte de gravação." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Plug-in de dispositivo de saída da unidade amovível" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Cria um objecto usado para eliminar a impressão de suportes em certas zonas" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Eliminador de suportes" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Verifica potenciais problemas de impressão nos modelos e definições de impressão, e oferece sugestões." - -msgctxt "name" -msgid "Model Checker" -msgstr "Verificador de Modelos" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Fornece uma fase de preparação no Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Fase de preparação" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Permite pré-visualizar os dados das camadas seccionadas." - -msgctxt "name" -msgid "Simulation View" -msgstr "Visualização por camadas" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Fornece suporte para ler ficheiros AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Leitor de AMF" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Permite a visualização em Raio-X." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Vista Raio-X" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Disponibiliza as ações da máquina para atualizar o firmware." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Atualizador de firmware" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Permite importar perfis de versões antigas do Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Leitor de perfis antigos do Cura" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Extensão que permite a utilização de scripts criados pelo utilizador para efeitos de pós-processamento" - -msgctxt "name" -msgid "Post Processing" -msgstr "Pós-Processamento" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Regista determinados eventos para que possam ser utilizados pelo \"crash reporter\"" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry Logger" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Fornece suporte para escrever Pacotes de Formato MakerBot." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Escritor de Arquivo de Impressão Makerbot" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Fornece suporte para importar perfis Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Leitor de Perfis Cura" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Fornece suporte para ler pacotes de formato Ultimaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Leitor de UFP" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Permite gerar geometria imprimível a partir de ficheiros de imagem 2D." - -msgctxt "name" -msgid "Image Reader" -msgstr "Leitor de imagens" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Fornece a hiperligação para o back-end de seccionamento do CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Back-end do CuraEngine" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Grava o g-code num arquivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Gravador de G-code comprimido" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Disponibiliza funções especificas para as máquinas UltiMaker (tais como, o assistente de nivelamento da base, seleção de atualizações, etc.)." - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Funções para impressoras Ultimaker" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Lê o g-code a partir de um arquivo comprimido." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Leitor de G-code comprimido" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Fornece uma fase de pré-visualização no Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Fase de pré-visualização" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Liga à Biblioteca Digital, permitindo ao Cura abrir ficheiros da Biblioteca Digital e guardar ficheiros na mesma." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Biblioteca Digital UltiMaker" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Possibilita a exportação de perfis do Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Gravador de perfis Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Fornece suporte para ler ficheiros X3D." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Leitor de X3D" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Fornece suporte para a leitura de ficheiros modelo." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Leitor de Trimesh" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Fornece uma fase de monitorização no Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Fase de monitorização" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Fornece as definições por-modelo." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Ferramenta de definições Por-Modelo" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Fornece capacidades para ler e gravar perfis de material com base em XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Perfis de Materiais" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Presta apoio na escrita de ficheiros 3MF e UCP." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Gravador 3MF" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Permite a gravação de arquivos Ultimaker Format." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Gravador de UFP" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Grava o g-code num ficheiro." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Gravador de G-code" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Mín. Y (\"-\" para trás)" diff --git a/resources/i18n/pt_PT/fdmextruder.def.json.po b/resources/i18n/pt_PT/fdmextruder.def.json.po index a201b0ea6b..0ac413d57a 100644 --- a/resources/i18n/pt_PT/fdmextruder.def.json.po +++ b/resources/i18n/pt_PT/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Diâmetro" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "G-code final para executar ao mudar deste extrusor." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Extrusor" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ventoinha de arrefecimento de impressão do Extrusor" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "G-Code Final do Extrusor" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "G-code final para executar ao mudar deste extrusor." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Duração do código G final da extrusora" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "O tempo que demora a executar o código G final, ao deixar esta extrusora." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Posição Final Absoluta do Extrusor" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Posição X Final do Extrusor" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "A coordenada X da posição final ao desligar o extrusor." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Posição Y Final do Extrusor" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Posição Z para Preparação do Extrusor" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "A coordenada Y da posição final ao desligar o extrusor." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ventoinha de arrefecimento de impressão do Extrusor" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "G-Code Inicial do Extrusor" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "G-code inicial para executar ao mudar para este extrusor." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Duração do código G inicial da extrusora" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "O tempo que demora a executar o código G inicial, ao mudar para esta extrusora." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Posição Inicial Absoluta do Extrusor" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Posição X Inicial do Extrusor" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Posição Y Inicial do Extrusor" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Define a posição final do extrusor, absoluta em vez de relativa à última posição conhecida da cabeça de impressão." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Define a posição inicial do extrusor, de forma absoluta em vez, de relativa à última posição conhecida da cabeça de impressão." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "ID do Nozzle" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Posição X Inicial do Extrusor" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "A coordenada X da posição inicial ao ligar o extrusor." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Posição Y Inicial do Extrusor" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "A coordenada Y da posição inicial ao ligar o extrusor." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Desvio X do Nozzle" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "A coordenada X do desvio do nozzle." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Desvio Y do Nozzle" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "G-code inicial para executar ao mudar para este extrusor." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "O núcleos de extrusão utilizado para imprimir. Definição usada com múltiplos extrusores." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "O número de ventoinhas de arrefecimento de impressão associadas a este extrusor. Apenas alterar o valor predefinido de 0 quando tiver uma ventoinha de arrefecimento de impressão diferente para cada extrusor." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "O tempo que demora a executar o código G final, ao deixar esta extrusora." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "O tempo que demora a executar o código G inicial, ao mudar para esta extrusora." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "A coordenada X da posição final ao desligar o extrusor." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "A coordenada X do desvio do nozzle." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "A coordenada X da posição inicial ao ligar o extrusor." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "A coordenada Y da posição final ao desligar o extrusor." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "A coordenada Y do desvio do nozzle." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "A coordenada Y da posição inicial ao ligar o extrusor." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do bocal" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "A diferença de altura entre a extremidade do bocal e a parte mais baixa da cabeça da impressão." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Duração da mudança de extrusora" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "Código-G do pré-arranque da extrusora" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "O código-G de pré-arranque a executar antes de mudar para esta extrusora." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Quando é utilizada uma configuração com ferramentas múltiplas, este valor é o tempo da mudança de ferramenta em segundos. Este valor será adicionado ao tempo estimado com base no número de mudanças que ocorrerem." diff --git a/resources/i18n/pt_PT/fdmprinter.def.json.po b/resources/i18n/pt_PT/fdmprinter.def.json.po index 36c9f75929..40af1e1dcb 100644 --- a/resources/i18n/pt_PT/fdmprinter.def.json.po +++ b/resources/i18n/pt_PT/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Máquina" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Como gerar a torre principal:
    • Normal: criar um balde no qual os materiais secundários são preparados
    • Intercalado: criar uma torre de preparação o mais esparsa possível. Assim, irá poupar-se tempo e filamento, mas tal apenas será possível se os materiais aderirem uns aos outros
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Definições específicas da máquina" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Tipo de Máquina" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "O nome do seu modelo de impressora 3D." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Mostrar Variantes da Máquina" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code Inicial" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Comandos G-code a serem executados no início – separados por " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code Final" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Comandos G-code a serem executados no fim – separados por " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID do material" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "GUID do material. Este é definido automaticamente." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Tipo de material" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "O tipo de material utilizado." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Marca do material" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "A marca do material utilizado." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Diâmetro" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Esperar pelo Aquecimento da Base de Construção" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Esperar pelo aquecimento do nozzle" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Incluir Temperaturas do Material" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Incluir Temperatura da Base de Construção" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Largura da Máquina" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "A largura (direção X) da área de impressão." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Profundidade da Máquina" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "A profundidade (direção Y) da área de impressão." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Altura da Máquina" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "A altura (direção Z) da área de impressão." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Forma da Base de Construção" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Retangular" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Elíptica" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Material da Base de Construção" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "O material da base de construção instalada na impressora." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Vidro" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alumínio" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Tem Base de Construção Aquecida" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Se a máquina tem ou não uma base de construção aquecida." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Tem estabilização da temperatura do volume de construção" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Ferramenta ativa escrever sempre" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "O Centro é a Origem" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Número de Extrusores" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Número de extrusores ativos" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Diâmetro externo do nozzle" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "O diâmetro externo da ponta do nozzle." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Comprimento do nozzle" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Ângulo do nozzle" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Comprimento da zona de aquecimento" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Ativar controlo de temperatura do nozzle" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Velocidade de aquecimento" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Velocidade de arrefecimento" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Tempo Mínimo da Temperatura em Modo de Espera" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Variante do G-code" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "O tipo de G-code a ser gerado." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumétrico)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Retração em Firmware" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Se se deve utilizar os comandos de retração do firmware (G10/G11), em vez da propriedade E dos comandos G1, para realizar a retração do material." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Extrusoras Partilham Aquecedor" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Extrusoras partilham bocal" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Retração inicial do bocal partilhado" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Áreas não permitidas" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Áreas não permitidas ao nozzle" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Polígono da cabeça e do ventilador da máquina" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Altura do pórtico" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "ID do Nozzle" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Diâmetro do Nozzle" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Desviar com extrusor" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Posição Z para Preparação do Extrusor" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Z da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Posição Absoluta Preparação Extrusor" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Velocidade X Máxima" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "A velocidade máxima do motor da direção X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Velocidade Y Máxima" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "A velocidade máxima do motor da direção Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Velocidade Z Máxima" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "A velocidade máxima do motor da direção Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Velocidade Máxima de E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "A velocidade máxima do filamento." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Aceleração X Máxima" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "A aceleração máxima do motor da direção X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Aceleração Y Máxima" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "A aceleração máxima do motor da direção Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Aceleração Z Máxima" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "A aceleração máxima do motor da direção Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Aceleração Máxima do Filamento" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "A aceleração máxima do motor do filamento." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Aceleração Predefinida" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "A aceleração predefinida do movimento da cabeça de impressão." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Jerk X-Y Predefinido" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "O jerk predefinido do movimento no plano horizontal." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Jerk Z Predefinido" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "O jerk predefinido do motor da direção Z." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Jerk Predefinido do Filamento" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "O jerk predefinido do motor do filamento." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Passos por Milímetro (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Passos por Milímetro (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Passos por Milímetro (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Passos por Milímetro (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Endstop X no Sentido Positivo" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Endstop Y no Sentido Positivo" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Endstop Z no Sentido Positivo" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Velocidade Mínima de Alimentação" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "A velocidade mínima de movimento da cabeça de impressão." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Diâmetro Roda do Alimentador" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "O diâmetro da roda que conduz o material pelo alimentador." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Ajustar a velocidade do ventilador entre 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Qualidade" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Espessura das Camadas" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Espessura da Camada Inicial" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Diâmetro da Linha" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Diâmetro Linha Parede" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "O diâmetro de uma única linha de parede." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Diâmetro Linha Parede Exterior" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Diâmetro Linha Parede(s) Interior" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Diâmetro Linha Superior / Inferior" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "O diâmetro de uma única linha das superfícies superior/inferior." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Diâmetro Linha Enchimento" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "O diâmetro de uma única linha de enchimento." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Diâmetro Linha Contorno/Aba" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "O diâmetro de uma única linha do contorno ou da aba." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Diâmetro Linha Suportes" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "O diâmetro de uma única linha da estrutura de suporte." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Diâmetro Linha Interface Suporte" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "O diâmetro de uma única linha do chão ou tecto de suporte." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Diâmetro Linha Tecto Suporte" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "O diâmetro de uma única linha do tecto de suporte." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Diâmetro Linha Piso Suporte" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "O diâmetro de uma única linha do piso de suporte." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Diâmetro Linha Torre Preparação" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "O diâmetro de uma única linha da torre de preparação." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Diâmetro Linha Camada Inicial" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção." - -msgctxt "shell label" -msgid "Walls" -msgstr "Paredes" - -msgctxt "shell description" -msgid "Shell" -msgstr "Invólucro" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Extrusor Paredes" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Extrusor Parede Exterior" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Extrusor Paredes Interiores" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Espessura das Paredes" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Número Linhas Paredes" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Comprimento de transição de paredes" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Número de paredes distribuídas" - -msgctxt "wall_distribution_count description" -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 "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Ângulo do limiar de transição de paredes" - -msgctxt "wall_transition_angle description" -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 "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Distância do filtro de transição de paredes" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Margem do filtro de transição de paredes" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Distância Limpeza Parede Exterior" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Desvio Parede Exterior" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Otimizar Ordem Paredes" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Ordenação de paredes" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências. Quando há uma quantidade desigual de paredes internas totais, a \"última linha central\" é sempre impressa em último lugar." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "De dentro para fora" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "De fora para dentro" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternar Parede Adicional" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Par" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede Ímpar" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede ímpar maior provoca um maior diâmetro máximo de linha da parede par. O diâmetro máximo de linha da parede ímpar é calculado como 2 * diâmetro mínimo de linha da parede par." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Imprimir Paredes Finas" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Tamanho mínimo da característica" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Diâmetro mínimo de linha da parede fina" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Expansão Horizontal" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Expansão Horizontal Camada Inicial" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Expansão horizontal de buraco" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Quando superior a zero, a expansão horizontal de orifícios é o valor do desvio aplicado a todos os orifícios em cada camada. Os valores positivos aumentam a dimensão dos orifícios e os valores negativos reduzem a dimensão dos orifícios. Quando esta definição está ativa pode ser otimizada adicionalmente com o diâmetro máximo da expansão horizontal de orifícios." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Diâmetro máximo da Expansão Horizontal de Buraco" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Alinhamento da Junta-Z" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Definido pelo utilizador" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Mais curto" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Aleatório" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Canto mais Acentuado" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Posição da Junta-Z" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Posterior esquerda" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Anterior" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Posterior direita" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Direita" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Frontal direita" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Frontal" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Frontal esquerda" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Esquerda" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X da Junta-Z" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y da Junta-Z" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Preferência Canto Junta" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Nenhum" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Ocultar Junta" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Expor Junta" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Ocultar ou Expor Junta" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Ocultação Inteligente" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Relativo à Junta-Z" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Superior / Inferior" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Superior / Inferior" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Extrusor Revestimento Superior" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Camadas Revestimento Superior" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Diâmetro Linha Revestimento Superior" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Padrão Revestimento Superior" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "O padrão geométrico das camadas de revestimento da superfície superior." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Ordem da superfície superior em \"Monotonic\"" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Direções Linha Revestimento Superior" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Extrusor Superior / Inferior" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Espessura Superior / Inferior" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Espessura Superior" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Camadas Superiores" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Espessura Inferior" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Camadas Inferiores" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Camadas inferiores iniciais" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado para um número inteiro." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Padrão Superior / Inferior" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "O padrão geométrico das camadas superiores / inferiores." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Padrão da Base na Camada Inicial" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "O padrão geométrico da base da peça na camada inicial." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Ligar polígonos superiores/inferiores" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Ordem Superior/Inferior em \"Monotonic\"" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Direções Linha Superior / Inferior" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Largura Mínima Superior/Inferior" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "As regiões superiores/inferiores pequenas são preenchidas com paredes em vez do padrão superior/inferior padrão. Isto ajuda a evitar movimentos bruscos. Desativado para as camadas mais superiores (expostas ao ar) por predefinição (consulte \"Superfície superior/inferior pequena\")." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Superfície superior/inferior pequena" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Sem Revestimento nos Espaços Z" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Paredes Revestimento Extra" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ativar Engomar (Ironing)" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Engomar Só Última Camada" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Padrão de Engomar" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Ordem de Engomar em \"Monotonic\"" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Distância Linhas de Engomar" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "A distância entre as linhas de engomar." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Fluxo de Engomar" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Desvio Interior de Engomar" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Uma borda ao redor de um modelo poderá tocar noutro modelo num ponto onde o utilizador não quer que tal aconteça. Esta ação remove toda a borda neste espaço entre modelos sem borda. " msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "A distância a manter em relação às extremidades do modelo. \"Engomar\" até à extremidade da superfície pode resultar em arestas irregulares na impressão." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Velocidade de Engomar" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas de revestimento da superfície superior utilizarem o padrão de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Aceleração de Engomar" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar quando as camadas da superfície superiores/inferiores utilizarem os padrões de Linhas ou Ziguezague. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus)." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "A aceleração com a qual se realiza o processo de engomar." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Jerk de Engomar" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "A mudança de velocidade instantânea máxima ao engomar." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Sobreposição Revestimento (%)" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Sobreposição Revestimento (mm)" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Largura Remoção Revestimento" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Largura Remoção Revestimento Superior" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Largura Remoção Revestimento Inferior" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Distância Expansão Revestimento" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Distância Expansão Revestimento Superior" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Expansão Revestimento Inferior" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Ângulo Revestimento para Expansão" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Largura Mínima Revestimento para Expansão" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "As áreas de revestimento mais pequenas do que este valor não são expandidas. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo apresenta uma inclinação quase vertical." - -msgctxt "infill label" -msgid "Infill" -msgstr "Enchimento" - -msgctxt "infill description" -msgid "Infill" -msgstr "Enchimento" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Extrusor Enchimento" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Densidade do Enchimento" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Ajusta a densidade do enchimento da impressão." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Distância Linhas Enchimento" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Padrão de Enchimento" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Tri-Hexágono" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Cúbico" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Subdivisão Cúbica" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Octeto" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Quarto Cúbico" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Cruz 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Relâmpago" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Ligar Linhas Enchimento" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Ligar polígonos de enchimento" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Direções Linhas Enchimento" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito a lista está vazia, o que significa a utilização dos ângulos predefinidos tradicionais (45 e 135 graus para os padrões de Linhas ou Ziguezague e 45 graus para todos os outros padrões)." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Deslocar Enchimento em X" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Uma lista de polígonos com áreas onde o nozzle não pode entrar." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Uma lista de polígonos com áreas onde a cabeça de impressão não pode entrar." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Deslocar Enchimento em Y" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Posição Absoluta Preparação Extrusor" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Início aleatório do enchimento" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Variação máxima das camadas adaptáveis" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Dimensão da topografia das camadas adaptáveis" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Multiplicador de linhas de enchimento" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Tamanho da fase de variação das camadas adaptáveis" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Contagem de paredes de enchimento adicionais" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Adicionar paredes adicionais em torno da área de enchimento. Essas paredes podem fazer com que as linhas de revestimento superiores/inferiores desçam menos, o que significa que são necessárias menos camadas de revestimento superior/inferior para a mesma qualidade à custa de algum material adicional." "Esta funcionalidade pode ser combinada com a opção Ligar polígonos de enchimento para unir todo o enchimento num único caminho de extrusão sem necessidade de deslocações ou retrações, se configurado corretamente." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Invólucro Subdivisão Cúbica" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Sobreposição Enchimento (%)" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Sobreposição Enchimento (mm)" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Distância Limpeza Enchimento" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Espessura Camada Enchimento" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Degraus Enchimento Gradual" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Altura Degraus Enchimento Gradual" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Enchimento antes das paredes" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Área de enchimento mínimo" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Enchimento como Suporte" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Ângulo Saliência Enchimento" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Espessura do Suporte da Aresta de Revestimento" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Camadas do Suporte da Aresta de Revestimento" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Ângulo de suporte de enchimento relâmpago" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Ângulo de saliência do enchimento relâmpago" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Ângulo de corte do enchimento relâmpago" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Ângulo de alisamento do enchimento relâmpago" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." - -msgctxt "material label" -msgid "Material" -msgstr "Material" - -msgctxt "material description" -msgid "Material" -msgstr "Material" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Temperatura Impressão Predefinida" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Temperatura do volume de construção" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Temperatura de Impressão" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "A temperatura utilizada para a impressão." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Temperatura Impressão Camada Inicial" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "A temperatura usada para imprimir a primeira camada." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Temperatura de impressão inicial" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Temperatura de impressão final" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Modificador da velocidade de arrefecimento da extrusão" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Temperatura Predefinida Base Construção" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Temperatura Base de Construção" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Temperatura da base de construção da camada inicial" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Aderência à Base de Construção" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Tendência de aderência" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "A tendência de aderência à superfície." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento, como percentagem das larguras de linha das linhas de revestimento e da parede mais interna. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer percentagem acima de 50% pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede neste ponto." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Energia da superfície" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Ajuste a quantidade de sobreposição entre as paredes e (as extremidades) das linhas centrais de revestimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao revestimento. Observe que no caso de um revestimento e uma largura de revestimento da parede iguais, qualquer valor acima da metade da largura da parede pode fazer com que o revestimento ultrapasse a parede, visto que a posição do nozzle do extrusor de revestimento pode já ultrapassar o centro da parede." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Energia da superfície." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Compensação de redução do fator de escala" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento horizontal" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Compensação de contração do fator de dimensionamento vertical" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Material Cristalino" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Posição Retraída Antiescorrimento" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Velocidade de Retração Antiescorrimento" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Posição Retraída de Preparação da Separação" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Velocidade de Retração de Preparação da Separação" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Temperatura de preparação da separação" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Posição Retraída de Separação" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "A distância de retração do filamento para separá-lo de forma regular." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Velocidade de Retração de Separação" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "A velocidade de retração do filamento para separá-lo de forma regular." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Temperatura de Separação" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "A temperatura a que o filamento se quebra para uma separação regular." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Velocidade da purga da descarga" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "A velocidade com que deve preparar o material após mudar para um material diferente." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Comprimento da purga da descarga" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Velocidade da purga do fim do filamento" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Comprimento da purga do fim do filamento" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Duração máxima do parqueamento" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Fator do movimento sem carregamento" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Um factor que indica a dimensão da compressão dos filamentos entre o alimentador e a câmara do bocal, utilizado para determinar a distância a que se deve mover o material para efetuar uma substituição de filamentos." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Fluxo" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Fluxo da Parede" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Compensação de fluxo nas linhas de parede." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Fluxo de Parede Exterior" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Compensação de fluxo na linha de parede exterior." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Parede de Parede(s) Interior(es)" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Fluxo da parede mais externa da superfície superior" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Fluxo da parede interna da superfície superior" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Fluxo Superior/Inferior" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Compensação de fluxo nas linhas superiores/inferiores." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Fluxo de Revestimento da Superfície Superior" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Fluxo de Enchimento" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Compensação de fluxo nas linhas de enchimento." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Fluxo de Contorno/Aba" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Compensação de fluxo nas linhas de contorno ou abas." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Fluxo de Suporte" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Compensação de fluxo nas linhas das estruturas de suporte." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Fluxo da Interface do Suporte" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Fluxo do Teto do Suporte" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Compensação de fluxo nas linhas do teto do suporte." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Fluxo do Chão do Suporte" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Compensação de fluxo nas linhas do chão do suporte." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Fluxo da torre de preparação" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Compensação de fluxo nas linhas da torre de preparação." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Fluxo Camada Inicial" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Fluxo da parede interna da camada inicial" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Compensação de fluxo em linhas de parede para todas as linhas de parede, exceto a mais externa, mas somente para a primeira camada" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Fluxo da parede externa da camada inicial" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Fluxo inferior da camada inicial" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Compensação de fluxo nos resultados da primeira camada" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Temperatura em Espera" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "É um material de suporte" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Este material é utilizado como material de suporte durante a impressão." - -msgctxt "speed label" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "speed description" -msgid "Speed" -msgstr "Velocidade" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Velocidade de Impressão" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "A velocidade a que é efetuada a impressão." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Velocidade Enchimento" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "A velocidade a que o enchimento é impresso." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Velocidade Paredes" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "A velocidade a que as paredes são impressas." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Velocidade Parede Exterior" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Velocidade Parede Interior" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Velocidade da parede mais externa da superfície superior" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Velocidade da parede interna da superfície superior" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "A velocidade com que as paredes internas da superfície superior são impressas." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Velocidade Revestimento Superior" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Velocidade Superior/Inferior" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "A velocidade a que as camadas superiores/inferiores são impressas." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Velocidade Suporte" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Velocidade de enchimento do suporte" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Velocidade da interface de suporte" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Velocidade do tecto de suporte" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Velocidade do piso de suporte" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Velocidade da torre de preparação" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Velocidade de deslocação" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "A velocidade a que os movimentos de deslocação são efetuados." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Velocidade Camada Inicial" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Velocidade de impressão da camada inicial" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Velocidade de deslocação da camada inicial" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Velocidade Contorno/Aba" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Velocidade do Salto Z" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Número de camadas mais lentas" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Proporção de equalização do fluxo" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Ativar controlo da aceleração" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Ativar a aceleração da viagem" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa no seu destino." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Aceleração de impressão" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "A aceleração com que é efetuada a impressão." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Aceleração de enchimento" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "A aceleração com que o enchimento é impresso." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Aceleração de parede" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "A aceleração com que as paredes são impressas." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Aceleração da parede exterior" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "A aceleração com que as paredes exteriores são impressas." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Aceleração da parede interior" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "A aceleração com que todas as paredes interiores são impressas." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Aceleração da parede externa da superfície superior" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Aceleração da parede interna da superfície superior" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Aceleração Revestimento Superior" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Aceleração superior/inferior" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "A aceleração com que as camadas superiores/inferiores são impressas." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Aceleração de suporte" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "A aceleração com que a estrutura de suporte é impressa." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Aceleração de enchimento do suporte" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "A aceleração com que o enchimento do suporte é impresso." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Aceleração da interface de suporte" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Aceleração do tecto de suporte" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Aceleração do piso de suporte" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Aceleração da torre de preparação" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "A aceleração com que a torre de preparação é impressa." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Aceleração de deslocação" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "A aceleração com que os movimentos de deslocação são efetuados." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Aceleração da camada inicial" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "A aceleração da camada inicial." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Aceleração de impressão da camada inicial" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "A aceleração durante a impressão da camada inicial." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Aceleração de deslocação da camada inicial" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A aceleração dos movimentos de deslocação na camada inicial." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Aceleração Contorno/Aba" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Ativar Controlo do Jerk" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão em detrimento da qualidade de impressão." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Ativar Jerk de Viagem" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no seu destino." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Jerk da Impressão" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Jerk do Enchimento" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Jerk das Paredes" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Jerk da Parede Exterior" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Jerk das Paredes Interiores" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Jerk das Paredes Interiores da Superfície Superior" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Jerk da Parede Exterior da Superfície Superior" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Jerk Revestimento Superior" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Jerk Superior/Inferior" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Jerk do Suporte" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Jerk do Enchimento do Suporte" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Jerk da Interface do Suporte" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Jerk do Tecto do Suporte" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Jerk do Piso do Suporte" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Jerk da Torre de Preparação" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Jerk de Deslocação" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Jerk da Camada Inicial" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Jerk Impressão Camada Inicial" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Jerk Deslocação Camada Inicial" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "A aceleração dos movimentos de deslocação na camada inicial." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Jerk de Contorno/Aba" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos." - -msgctxt "travel label" -msgid "Travel" -msgstr "Deslocação" - -msgctxt "travel description" -msgid "travel" -msgstr "deslocação" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Ativar Retração" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Retrair na Mudança Camada" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Retrai o filamento quando o nozzle se está a deslocar para a camada seguinte." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Distância de Retração" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "O comprimento do material retraído durante um movimento de retração." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Velocidade de Retração" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Velocidade Retrair na Retração" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "A velocidade a que o filamento é retraído durante um movimento de retração." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Velocidade de preparação na retração" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "A velocidade a que o filamento é preparado durante um movimento de retração." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Preparação Adicional de Retração" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Deslocação Mínima da Retração" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Número Máximo Retrações" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Intervalo Mínimo Distância Extrusão" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Modo de Combing" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Desligado" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tudo" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Não na Superfície Exterior" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Não no Revestimento" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "No Enchimento" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Distância Max. de Combing sem Retração" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Retrair Antes Parede Exterior" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Retrair sempre quando se vai começar uma parede exterior." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Evitar Áreas Impressas Durante Movimento" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Evitar Suportes na Deslocação" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Distância para evitar peças durante a deslocação" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X Início Camada" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y Início Camada" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Salto Z ao retrair" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Sempre que for efetuada uma retração, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Salto Z apenas sobre as peças impressas" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Altura do salto Z" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Salto Z após mudança extrusor" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Altura do salto Z após mudança do extrusor" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Arrefecimento" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Arrefecimento" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Ativar Arrefecimento Impressão" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Velocidade Ventiladores" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Velocidade Normal Ventiladores" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Velocidade Máxima Ventiladores" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Limiar Normal / Máximo Velocidade Ventilador" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Velocidade Inicial do ventilador" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Altura Velocidade Normal Ventilador" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Camada Velocidade Normal Ventilador" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Tempo mínimo por camada" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Velocidade Mínima" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Elevar Cabeça" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Temperatura de impressão de camada pequena" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada." - -msgctxt "support label" -msgid "Support" -msgstr "Suportes" - -msgctxt "support description" -msgid "Support" -msgstr "Suportes" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Criar Suportes" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Extrusor dos Suportes" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Extrusor de enchimento do suporte" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Extrusor de suporte da primeira camada" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Extrusor de interface de suporte" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Extrusor de tecto de suporte" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Extrusor de piso de suporte" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Estrutura de suporte" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Árvore" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Ângulo Máximo dos Ramos" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Diâmetro do Ramo" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Diâmetro do Tronco" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "O diâmetro dos ramos mais amplos do suporte de árvores. Um ramo mais grosso é mais resistente; um ramo mais fino ocupa menos espaço na base de construção." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Ângulo dos Ramos" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Colocação do suporte" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "A Tocar na base de construção" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Em todo o lado" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Ângulo dos Ramos preferido" - -msgctxt "support_tree_angle_slow description" -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 "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Aumento do Diâmetro Apoio no Modelo" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Altura Mínima ao Modelo" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Diâmetro da Camada Inicial" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Densidade dos Ramos" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Diâmetro da Ponta do Ramo" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Limitar o Alcance dos Ramos" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Alcance dos Ramos Ideal" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Uma recomendação sobre qual a distância que os ramos podem percorrer a partir dos pontos que apoiam. Os ramos podem desrespeitar este valor, para alcançar o seu destino (placa de construção ou uma parte do modelo). Reduzir esse valor pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Preferência de Apoio" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Na placa de construção quando possível" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "No modelo, se necessário" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Ângulo Saliência para Suportes" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Padrão de Suportes" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Cruz" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Número Linhas Paredes Suporte" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Contagem das linhas de parede da interface de suporte" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Contagem das linhas de parede do telhado de suporte" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Contagem das linhas da parede inferior de suporte" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Ligar Linhas de Suporte" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Ligar ziguezagues de suporte" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Densidade do Suporte" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Distância da linha de suporte" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Distância da linha de suporte da camada inicial" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Direção da linha de enchimento do suporte" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos de 0 graus." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Ativar aba de suporte" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Largura da aba do suporte" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Contagem de linhas da aba do suporte" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Distância Z de suporte" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Distância do topo/base da estrutura de suporte até a impressão. Este espaço permite a remoção dos suportes após a impressão do modelo. A camada de suporte mais alta abaixo do modelo pode ser uma fração das camadas regulares." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Distância superior do suporte" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "A distância entre a parte superior do suporte e a impressão." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Distância inferior do suporte" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Distância da impressão até a base do suporte. Note que isso é arredondado para a próxima altura de camada." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Distância X/Y do suporte" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Prioridade da distância de suporte" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y substitui Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z substitui X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Distância X/Y mínima de suporte" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Altura Degraus Suporte" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Largura Máxima Degraus Suporte" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Ângulo de declive mínimo do degrau da escada de suporte" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Distância da junção do suporte" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Expansão horizontal de suporte" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Espessura da camada de enchimento de suporte" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Enchimento Gradual Suporte" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Altura do degrau de enchimento gradual de suporte" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Área de suporte mínimo" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Ativar interface de suporte" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Ativar tecto de suporte" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Ativar piso de suporte" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Espessura Interface Suporte" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Espessura do tecto de suporte" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Espessura do piso de suporte" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Densidade da interface de suporte" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Ajusta a densidade do enchimento da impressão." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Ajusta a densidade dos tectos e pisos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Densidade do tecto de suporte" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Ajusta a densidade da estrutura de suporte usada para gerar as pontas dos ramos. Um valor mais alto resulta em melhor saliências, mas os suportes são mais difíceis de remover. Use um Teto de Suporte se os valores forem muito altos ou certificar-se de que a densidade dos suportes é igualmente elevada no topo." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Ajusta a densidade da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Distância da linha do tecto de suporte" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Ajusta o diâmetro do filamento utilizado. Faça corresponder este valor com o diâmetro do filamento utilizado." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Densidade do piso de suporte" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Distância da linha do piso de suporte" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Padrão da interface de suporte" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Padrão do tecto de suporte" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "O padrão geométrico com que os tectos do suporte são impressos." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Padrão Piso Suporte" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "O padrão geométrico com que os pisos do suporte são impressos." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Linhas" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Grelha" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Triângulos" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Concêntrico" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Ziguezague" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Área mínima da interface de suporte" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Área mínima do teto de suporte" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Área mínima do piso de suporte" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Expansão horizontal da interface de suporte" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Expansão horizontal do teto de suporte" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Quantidade do desvio aplicado aos tetos de suporte." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Expansão horizontal do piso de suporte" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Quantidade do desvio aplicado aos pisos de suporte." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Prioridade da Interface e Suporte" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Estrutura suporte preferida" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Interface preferida" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Tipo de linhas de suporte preferidas" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Linhas de interface preferidas" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Ambas se sobrepõem" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Direções da linha da interface do suporte" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Direções da linha do teto do suporte" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Uma lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Direções da linha do piso do suporte" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Lista de ângulos (números inteiros) relativos às direções de linha a utilizar. Os valores da lista são utilizados em sequência, à medida que as camadas progridem, voltando ao início assim que a lista chega ao fim. Os itens da lista são separados por vírgulas e a lista completa é escrita entre parênteses retos. Por defeito, a lista está vazia, o que significa a utilização dos ângulos predefinidos (que alternam entre 45 e 135 graus se as interfaces forem bastante espessas ou 90 graus)." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Substituir velocidade da ventoinha" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Velocidade da ventoinha de revestimento suportada" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Utilizar torres" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Diâmetro da torre" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "O diâmetro de uma torre especial." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Diâmetro Máximo Suportado pela Torre" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Ângulo do tecto da torre" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Malha de suporte pendente" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "O cenário tem malhas de suporte" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Aderência à Base Construção" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Aderência" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "\"Blob\" de Preparação" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Posição X Preparação do Extrusor" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada X da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Posição Y Preparação do Extrusor" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "A coordenada Y da posição onde o nozzle é preparado ao iniciar a impressão." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Modos de Aderência" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Contorno" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Aba" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Nenhum" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Extrusor para Aderência" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Extrusor do contorno/aba" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Extrusor da base do raft" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Extrusor do meio do raft" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir a camada do meio do raft. Isto é utilizado em impressoras com extrusores múltiplos." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Extrusora superior do raft" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Número Linhas Contorno" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Altura do contorno" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Distância Contorno" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão." -"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Comprimento Mínimo Contorno/Aba" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Largura da Aba" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Número Linhas da Aba" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "O número de linhas utilizado para uma aba. Um maior número de linhas da aba melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Distância da Aba" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "A aba substitui o suporte" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Localização da borda" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Imprima uma borda no exterior ou interior do modelo, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de borda que será necessário remover mais tarde, garantindo ao mesmo tempo uma aderência à base adequada." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Apenas no exterior" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Apenas no interior" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Em todo o lado" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Margem para evitar borda" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Uma borda ao redor de um modelo poderá tocar noutro modelo num ponto onde o utilizador não quer que tal aconteça. Esta ação remove toda a borda neste espaço entre modelos sem borda. " - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Aba Inteligente" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Margem Adicional Raft" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Margem extra da base da plataforma" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se a base da plataforma estiver habilitada, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Margem extra do centro da plataforma" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o centro da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Margem extra do topo da plataforma" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Se o topo da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Remover cantos interiores do raft" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Remover ângulos internos da base da plataforma" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Remova ângulos internos da base da plataforma, fazendo com que a plataforma fique convexa." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Remover ângulos internos do centro da plataforma" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Remova ângulos internos do centro da plataforma, fazendo com que a plataforma fique convexa." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Remover ângulos internos do topo da plataforma " - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Remova ângulos internos do topo da plataforma, fazendo com que a plataforma fique convexa." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Suavização Raft" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Alisamento da base da plataforma" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Esta configuração controla o quanto os ângulos internos no contorno da base da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Alisamento do centro da plataforma" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Esta configuração controla o quanto os ângulos internos no contorno do centro da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Alisamento do topo da plataforma" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Esta configuração controla o quanto os ângulos internos no contorno do topo da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Caixa de Ar do Raft" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Sobreposição Z Camada Inicial" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Faça com que a primeira e segunda camadas do modelo se sobreponham na direção Z para compensar a perda de filamento na caixa de ar. Todos os modelos acima da primeira camada do modelo serão deslocadas para baixo segundo este valor.\nNote-se que, por vezes, a segunda camada é imprimida por baixo da camada inicial por causa desta configuração. Este comportamento é intencional." - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Espessura da Base do Raft" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Diâmetro Linha Base do Raft" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Espaçamento da Linha Base do Raft" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Camadas do meio do raft" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Espessura do Meio do Raft" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "A espessura da camada do meio do raft. (segunda camada)" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Diâmetro Linha do Meio do Raft" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Espaçamento do Meio do Raft" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Camadas Superiores do Raft" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Espessura Camada Superior Raft" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "A espessura das camadas superiores do raft." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Diâmetro Linha Superior do Raft" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Espaçamento Superior do Raft" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Ordem de superfície do topo da plataforma monotónica" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Imprima as linhas de superfície do topo da plataforma numa ordem que as leve a sobrepor-se a linhas adjacentes numa única direção. Desta forma, a impressão poderá demorar mais algum tempo, mas dá um aspeto mais consistente à superfície, o que também é visível na superfície inferior do modelo. " - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Número de paredes da plataforma" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "O número de contornos a imprimir à volta do padrão linear da plataforma." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Número de paredes da base do raft" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Número de paredes do centro da plataforma" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas centrais da plataforma." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Número de paredes do topo da plataforma" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas superiores da plataforma." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Velocidade Impressão do Raft" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "A velocidade a que o raft é impresso." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Velocidade da Base do Raft" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Velocidade do Meio do Raft" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Velocidade do Topo do Raft" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Aceleração Impressão do Raft" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "A aceleração com que o raft é impresso." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Aceleração da Base do Raft" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "A aceleração com que a camada inferior (base) do raft é impressa." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Aceleração do Meio do Raft" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "A aceleração com que a camada do meio do raft é impressa." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Aceleração do Topo do Raft" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "A aceleração com que as camadas superiores do raft são impressas." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Jerk de impressão do raft" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "O jerk com que o raft é impresso." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Jerk de impressão inferior do raft" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "O jerk com que a camada da base do raft é impressa." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Jerk de impressão do meio do raft" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "O jerk com que a camada do meio do raft é impressa." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Jerk de impressão superior do raft" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "O jerk com que as camadas superiores do raft são impressas." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Velocidade do ventilador do raft" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "A velocidade do ventilador do raft." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Velocidade do ventilador inferior do raft" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "A velocidade do ventilador da camada inferior do raft." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Velocidade do ventilador do meio do raft" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "A velocidade do ventilador da camada do meio do raft." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Velocidade do ventilador superior do raft" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "A velocidade do ventilador das camadas superiores do raft." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Dupla Extrusão" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Definições utilizadas para imprimir com vários extrusores." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Ativar torre de preparação" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Tipo de torre de preparação" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "Como gerar a torre principal:
    • Normal: criar um balde no qual os materiais secundários são preparados
    • Intercalado: criar uma torre de preparação o mais esparsa possível. Assim, irá poupar-se tempo e filamento, mas tal apenas será possível se os materiais aderirem uns aos outros
    " - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Intercalado" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Tamanho Torre de Preparação" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "A largura da torre de preparação." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Volume mínimo da torre de preparação" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Distância transitória máxima da torre de preparação" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "O comprimento máximo dos ramos que podem ser imprimidos sobre o ar." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "Posição X da torre de preparação" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "A coordenada X da posição da torre de preparação." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Posição Y da torre de preparação" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "A coordenada Y da posição da torre de preparação." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Limpar nozzle inativo na torre de preparação" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Após a impressão da torre de preparação com um nozzle, limpe o material que vazou do nozzle para a torre de preparação." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Base da Torre de Primagem" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Após a máquina mudar de um extrusor para outro, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle deixe, na parte exterior de uma impressão, algum material que possa escorrer quando acaba de imprimir." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Tamanho da Base da Torre de Primagem" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "A largura da aba/base da torre de primagem. Uma base maior melhora a aderência à placa de construção, mas também reduz a área efetiva de impressão." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Altura da Base da Torre de Primagem" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "A altura da base da torre de primagem. Aumentar esse valor resultará em uma torre de primagem mais robusta, pois a base será mais larga. Se esta configuração for muito baixa, a torre de primagem não terá uma base sólida." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Inclinação da Base da Torre de Primagem" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "O fator de magnitude usado para a inclinação da base da torre de primagem. Se você aumentar este valor, a base ficará mais fina. Se diminuir, a base ficará mais espessa." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Espaçamento das Linhas da Jangada da Torre de Primagem" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "A distância entre as linhas da jangada para a única camada da jangada da torre de primagem. Um espaçamento largo facilita a remoção da jangada da placa de construção." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Ativar proteção contra escorrimento" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Ângulo da proteção contra escorrimentos" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Distância da proteção contra escorrimentos" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Distância de retração de substituição do nozzle" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Velocidade de retração de substituição do nozzle" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Velocidade de recolha de substituição do nozzle" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Velocidade de preparação de substituição do nozzle" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Material extra a preparar após a substituição do nozzle." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Correção de Objectos (Mesh)" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Torne os objetos mais adequados para impressão 3D." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Unir Volumes Sobrepostos" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Remover Todos Buracos" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Costura Extensiva" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Manter Faces Soltas" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Sobreposição Malhas Combinadas" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Remover interceção de malhas" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternar remoção de malha" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Remover Camadas Iniciais Vazias" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Resolução Máxima" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Resolução Máxima Deslocação" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Desvio máximo" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Desvio máximo da área de extrusão" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Ativar o movimento fluido" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Distância da alteração do movimento fluido" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Os pontos de distância são alterados para suavizar o percurso" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Distância pequena do movimento fluido" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Os pontos de distância são alterados para suavizar o percurso" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Ângulo do movimento fluido" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Se o segmento de um percurso de ferramenta se desviar mais do que este ângulo em relação ao movimento geral, o mesmo é suavizado." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Modos Especiais" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Formas não tradicionais de imprimir os seus modelos." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Sequência de impressão" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tudo" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Simultaneamente" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Individualmente" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Definir sequência de impressão manualmente" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Todas as definições que influenciam a resolução da impressão. Estas definições têm um grande impacto na qualidade. (e no tempo de impressão)." msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Permite-lhe ordenar a lista de modo a definir manualmente a sequência de impressão. O primeiro objeto na lista será imprimido primeiro." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Objecto de Enchimento" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternar Parede Adicional" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Classificação de processamento de malha" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Malha de corte" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Molde" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Largura mínima do molde" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Altura do tecto do molde" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Ângulo do molde" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Malha de suporte" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Malha antissaliências" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Modo de superfície" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Superfície" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Ambos" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "\"Spiralize\" Contorno Exterior" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "\"Spiralize\" Suavizar Contornos" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Extrusão relativa" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Experimental" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Funcionalidades que ainda não foram totalmente lançadas." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Tolerância do Seccionamento" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Centro" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Exclusivo" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Inclusivo" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Optimização Deslocação Enchimento" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Gráfico de temperatura de fluxo" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Circunferência Mínima do Polígono" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Gerar estrutura de interligação" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Largura do feixe de interligação" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "A largura das vigas da estrutura de interligação." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Orientação da estrutura de interligação" - -msgctxt "interlocking_orientation description" -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 "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Contagem de camada de feixe de interligação" - -msgctxt "interlocking_beam_layer_count description" -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 "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Profundidade de interligação" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Evitar a interligação de fronteiras" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Separar Suportes em Blocos" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Tamanho do bloco de suporte" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Número de linhas do bloco de suporte" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Barreira contra correntes de ar" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Distância X/Y da proteção contra correntes de ar" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Limite de proteção contra correntes de ar" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Máximo" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Limitado" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Altura da proteção contra correntes de ar" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Tornar Saliência Imprimível" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Ângulo máximo do modelo" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Área máxima do buraco da saliência" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Ativar desaceleração" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Volume de desaceleração" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Volume mínimo antes da desaceleração" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Velocidade de desaceleração" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Tamanho da bolsa de cruz 3D" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Imagem Densidade Enchimento Cruz" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Imagem Densidade Suporte em Cruz" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Ativar suporte cónico" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Ângulo do suporte cónico" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Largura mínima do suporte cónico" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Revestimento Difuso" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Revestimento difuso apenas no exterior" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Vibrar apenas os contornos das peças e não os buracos das peças." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Espessura Revestimento Difuso" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Densidade Revestimento Difuso" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Distância do ponto de revestimento difuso" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Fator de compensação da taxa de fluxo" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer num segundo de extrusão." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Utilizar camadas adaptáveis" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Camadas Adaptáveis calcula as espessuras das camadas conforme a forma do modelo." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Variação máxima das camadas adaptáveis" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Tamanho da fase de variação das camadas adaptáveis" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "A diferença de espessura da camada seguinte em comparação com a anterior." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Dimensão da topografia das camadas adaptáveis" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar mais os contornos das camadas." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Ângulo da parede de saliências" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Velocidade da parede de saliências" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Ativar Definições de Bridge" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Comprimento mínimo da parede de Bridge" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Paredes sem suporte com comprimento menor que este valor serão impressas utilizando as definições de parede normais. Paredes sem suporte mais longas serão impressas utilizando as definições da parede de Bridge." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Limiar do suporte do revestimento de Bridge" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Densidade Máx. Enchimento Disperso de Bridge" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Desaceleração da parede de Bridge" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Velocidade da parede de Bridge" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "A velocidade a que as paredes de Bridge são impressas." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Fluxo da parede de Bridge" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Velocidade do revestimento de Bridge" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Fluxo do revestimento de Bridge" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Densidade do revestimento de Bridge" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Velocidade da ventoinha de Bridge" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Bridge com múltiplas camadas" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Velocidade do segundo revestimento de Bridge" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Fluxo do segundo revestimento de Bridge" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Densidade do segundo revestimento de Bridge" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Velocidade do terceiro revestimento de Bridge" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Fluxo do terceiro revestimento de Bridge" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Densidade do terceiro revestimento de Bridge" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Limpar nozzle entre camadas" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Volume de material entre limpezas" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Retração de limpeza ativada" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Distância de retração da limpeza" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Quantidade de preparação adicional de retração de limpeza" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Velocidade de retração de limpeza" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Velocidade de retração na retração de limpeza" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Velocidade de preparação da retração de limpeza" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Pausa na limpeza" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Coloca a limpeza em pausa após anular a retração." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Salto Z de limpeza" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Altura do salto Z de limpeza" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "A diferença de altura ao efetuar um salto Z." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Velocidade do salto de limpeza" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Velocidade para mover o eixo Z durante o salto." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Posição X da escova de limpeza" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Localização X onde o script de limpeza será iniciado." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Contagem de repetições de limpeza" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Número de vezes que o nozzle deve ser passado pela escova." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Distância do movimento de limpeza" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Tamanho máximo do buraco pequeno" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Comprimento máximo do elemento pequeno" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Velocidade de elemento pequeno" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Velocidade da camada inicial de partes pequenas" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Os elementos pequenos na primeira camada serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternar remoção de malha" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Alterne as inserções e as direções das parede em camadas em cada camada. Útil para materiais que podem acumular tensão, como para a impressão de metal." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Agrupar as paredes externas" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alumínio" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Ferramenta ativa escrever sempre" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Comunicação do processo de impressão" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Retrair sempre quando se vai começar uma parede exterior." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Eventos de comunicação que ultrapassam os limites definidos" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Quantidade de desvio aplicado a todos os polígonos em cada camada. Valores positivos podem compensar buracos demasiado grandes; os valores negativos podem compensar buracos demasiado pequenos." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Permitir comunicação do processo de impressão" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Quantidade de desvio aplicado a todos os polígonos na primeira camada. Um valor negativo pode compensar o \"esmagamento\" da camada inicial, conhecido como \"pé de elefante\"." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Permitir comunicação do processo de impressão para definir valores limite para possível deteção de falhas." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Quantidade de desvio aplicado a todos os polígonos de suporte em cada camada. Os valores positivos podem uniformizar as áreas de suporte e produzir suportes mais robustos." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Aviso de fluxo" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Quantidade do desvio aplicado aos pisos de suporte." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Limite sobre o aviso de fluxo para deteção." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Quantidade do desvio aplicado aos tetos de suporte." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Limite de fluxo" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Quantidade do desvio aplicado aos polígonos da interface de suporte." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Limite sobre a anomalia de fluxo para deteção." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Quantidade de filamento a retrair para não escorrer durante a sequência de limpeza." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Aviso de temperatura de impressão" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Um acréscimo ao raio a partir do centro de cada cubo para encontrar os limites do modelo, de forma a decidir se este cubo deve ser subdividido. Valores mais elevados resultam num invólucro mais espesso com cubos pequenos perto do limite do modelo." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Limite sobre o aviso de temperatura de impressão para deteção." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Malha antissaliências" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Limite da temperatura de impressão" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Posição Retraída Antiescorrimento" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Limite sobre a anomalia de temperatura de impressão para deteção." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Velocidade de Retração Antiescorrimento" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Aviso de temperatura do volume de construção" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Aplique o desvio do alinhamento da extrusora ao sistema de coordenadas. Afeta todas as extrusoras." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Limite sobre o aviso de temperatura do volume de construção para deteção." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Nos locais onde os modelos tocam, gere uma estrutura de vigas interligadas. Isto melhora a adesão entre os modelos, especialmente os modelos impressos em materiais diferentes." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Evitar Áreas Impressas Durante Movimento" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Evitar Suportes na Deslocação" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Anterior" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Posterior esquerda" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Posterior direita" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Ambos" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Ambas se sobrepõem" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Camadas Inferiores" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Padrão da Base na Camada Inicial" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Expansão Revestimento Inferior" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Largura Remoção Revestimento Inferior" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Espessura Inferior" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Densidade dos Ramos" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Diâmetro do Ramo" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Ângulo dos Ramos" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Posição Retraída de Preparação da Separação" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Velocidade de Retração de Preparação da Separação" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Temperatura de preparação da separação" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Posição Retraída de Separação" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Velocidade de Retração de Separação" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Temperatura de Separação" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Separar Suportes em Blocos" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Velocidade da ventoinha de Bridge" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Bridge com múltiplas camadas" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Densidade do segundo revestimento de Bridge" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Velocidade da ventoinha do segundo revestimento de Bridge" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Fluxo do segundo revestimento de Bridge" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Velocidade do segundo revestimento de Bridge" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Densidade do revestimento de Bridge" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Fluxo do revestimento de Bridge" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Velocidade do revestimento de Bridge" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Limiar do suporte do revestimento de Bridge" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Densidade Máx. Enchimento Disperso de Bridge" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Densidade do terceiro revestimento de Bridge" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Velocidade da ventoinha do terceiro revestimento de Bridge" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Fluxo do terceiro revestimento de Bridge" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Velocidade do terceiro revestimento de Bridge" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Desaceleração da parede de Bridge" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Fluxo da parede de Bridge" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Velocidade da parede de Bridge" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Aba" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Margem para evitar borda" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Distância da Aba" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Número Linhas da Aba" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Localização da borda" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "A aba substitui o suporte" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Largura da Aba" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Aderência" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Extrusor para Aderência" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Modos de Aderência" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Material da Base de Construção" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Forma da Base de Construção" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Temperatura Base de Construção" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Temperatura da base de construção da camada inicial" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Temperatura do volume de construção" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Limite de temperatura do volume de construção" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Limite sobre a anomalia de temperatura do volume de construção para deteção." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Aviso de temperatura do volume de construção" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Definições de linha de comando" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Ao ativar esta configuração, sua torre de primagem terá uma aba, mesmo que o modelo não tenha. Se você deseja uma base mais robusta para uma torre alta, pode aumentar a altura da base." msgctxt "center_object label" msgid "Center Object" msgstr "Centrar Objeto" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Altera a geometria do modelo impresso de forma que seja necessário suporte mínimo. Saliências acentuadas tornar-se-ão saliências rasas. As áreas de saliências irão baixar para se tornarem mais verticais." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Escolhe entre as técnicas disponíveis para gerar suporte. O suporte \"Normal\" cria uma estrutura de suporte diretamente por baixo das saliências e leva estas áreas para baixo. O suporte \"Árvore\" cria ramos nas áreas salientes que suportam o modelo nas pontas destes ramos e permite que os ramos rastejem à volta do modelo de modo a suportá-lo o máximo possível a partir da base de construção." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Velocidade de desaceleração" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Volume de desaceleração" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "\"Coasting\" substitui a última parte de um percurso de extrusão por um percurso de deslocamento. O material que escorreu é utilizado para imprimir a última parte do percurso de extrusão de forma a reduzir o surgimento de fios." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Modo de Combing" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Combing mantém o nozzle em áreas já impressas durante a deslocação. Isto resulta em movimentos de deslocação ligeiramente mais longos, mas reduz a necessidade de retrações. Se o combing estiver desativado, o material será retraído e o nozzle irá deslocar-se em linha reta para o próximo ponto. Também é possível evitar o combing em áreas de revestimento superiores/inferiores ou apenas efetuar o combing no enchimento." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Definições de linha de comando" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Ângulo do suporte cónico" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Largura mínima do suporte cónico" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Ligar Linhas Enchimento" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Ligar polígonos de enchimento" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Ligar Linhas de Suporte" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Ligar ziguezagues de suporte" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Ligar polígonos superiores/inferiores" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Ligar caminhos de enchimento quando as trajetórias são paralelas. Para padrões de enchimento que consistem em vários polígonos fechados, ativar esta definição reduz consideravelmente o tempo de deslocação." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Liga os ziguezagues. Isto irá aumentar a resistência da estrutura de suporte em ziguezague." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Ligar as extremidades das linhas de suporte. Ativar esta definição permite que os suportes sejam mais robustos e também diminuir o risco de \"under-extrusion\", mas tem um gasto maior de material." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Ligar as extremidades onde o padrão de enchimento entra em contacto com a parede interior utilizando uma linha que acompanha a forma da parede interior. Ativar esta definição pode melhorar a adesão do enchimento às paredes e reduzir os efeitos do enchimento na qualidade das superfícies verticais. Desativar esta definição reduz a quantidade de material utilizado." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Ligar caminhos de revestimento superiores/inferiores quando as trajetórias são paralelas. Para o padrão concêntrico, ativar esta definição reduz consideravelmente o tempo de deslocação mas, uma vez que as ligações podem suceder num ponto intermediário sobre o enchimento, esta funcionalidade pode reduzir a qualidade da superfície superior." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Controla se os cantos do contorno do modelo influenciam a posição da junta. Nenhum significa que os cantos não influenciam a posição da junta. Ocultar Junta faz com que seja mais provável que a junta surja num canto interior. Expor Junta faz com que seja mais provável que a junta aconteça num canto exterior. Ocultar ou Expor Junta faz com que seja mais provável que a junta aconteça num canto interior ou exterior. Ocultação Inteligente permite os cantos interiores e exteriores, mas opta pelos cantos interiores com mais frequência, se apropriado." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Converter cada linha de enchimento em determinado número de linhas. As linhas adicionais não se cruzam, mas sim evitam-se. Isto torna o enchimento mais duro, mas também aumenta o tempo de impressão e o gasto de material." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Velocidade de arrefecimento" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Arrefecimento" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Arrefecimento" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Cruz" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Cruz 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Tamanho da bolsa de cruz 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Imagem Densidade Suporte em Cruz" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Imagem Densidade Enchimento Cruz" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Material Cristalino" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Cúbico" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Subdivisão Cúbica" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Invólucro Subdivisão Cúbica" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Malha de corte" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Os dados que ligam o fluxo de material (em mm3 por segundo) à temperatura (graus Celsius)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Aceleração Predefinida" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Temperatura Predefinida Base Construção" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Jerk Predefinido do Filamento" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Temperatura Impressão Predefinida" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Jerk X-Y Predefinido" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Jerk Z Predefinido" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "O jerk predefinido do movimento no plano horizontal." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "O jerk predefinido do motor da direção Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "O jerk predefinido do motor do filamento." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Detetar vãos (bridges) e modificar as definições da velocidade de impressão, do fluxo e da ventoinha durante a impressão de vãos ou saliências." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Determina a ordem pela qual as paredes são impressas. Imprimir paredes externas antecipadamente ajuda em termos de precisão dimensional, uma vez que as falhas de paredes internas não se podem propagar para o exterior. No entanto, imprimi-las mais tarde permite empilhá-las melhor quando são impressas saliências. Quando há uma quantidade desigual de paredes internas totais, a \"última linha central\" é sempre impressa em último lugar." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Determina a prioridade desta malha para resolver a sobreposição de várias malhas de enchimento. As áreas com sobreposição de várias malhas de enchimento vão assumir as definições da malha com a prioridade mais alta. Uma malha de enchimento com uma prioridade superior irá modificar o enchimento das malhas de enchimento com uma prioridade inferior e também as malhas normais." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar algo acima da mesma. Medido como um ângulo conforme a espessura da camada." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Determina o momento em que uma camada de enchimento relâmpago tem de suportar o modelo acima da mesma. Medido como um ângulo conforme a espessura." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Diâmetro" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Aumento do Diâmetro Apoio no Modelo" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Diâmetro que cada ramo tenta atingir quando chega à placa de construção. Melhora a adesão à base." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Diferentes modos que ajudam a melhorar a aderência à base de construção, assim como a preparação inicial da extrusão. \"Aba\" acrescenta uma única camada em torno da base do modelo para prevenir empenos ou deformações na parte inferior dos modelos. \"Raft\" adiciona uma plataforma, composta por uma grelha espessa e um teto, entre o modelo e a base de construção. \"Contorno\" é uma linha impressa à volta do modelo, mas que não está ligada ao modelo." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Áreas não permitidas" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "A distância entre as linhas de enchimento impressas. O valor desta definição é calculada através da densidade de enchimento e do diâmetro da linha de enchimento." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Distância entre as linhas da estrutura de suporte da camada inicial impressas. Esta definição é calculada pela densidade do suporte." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "A distância entre as linhas do piso de suporte impressas. Esta definição é calculada através da Densidade do piso de suporte, mas pode ser ajustada em separado." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "A distância entre as linhas do tecto de suporte impressas. Esta definição é calculada através da Densidade do tecto de suporte, mas pode ser ajustada em separado." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "A distância entre as linhas da estrutura de suporte impressas. Esta definição é calculada através da densidade do suporte." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Distância da impressão até a base do suporte. Note que isso é arredondado para a próxima altura de camada." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "A distância entre a parte superior do suporte e a impressão." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Distância do topo/base da estrutura de suporte até a impressão. Este espaço permite a remoção dos suportes após a impressão do modelo. A camada de suporte mais alta abaixo do modelo pode ser uma fração das camadas regulares." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "A distância de um movimento de deslocação inserido depois de cada linha de enchimento, para melhorar a união do enchimento às paredes. Esta opção é semelhante à sobreposição de enchimento, mas sem extrusão e apenas numa das extremidades da linha de enchimento." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "A distância de um movimento de deslocação inserido depois da parede exterior, para ocultar melhor a junta Z." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "A distância da proteção contra correntes de ar relativamente à impressora nas direções X/Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "A distância da proteção contra escorrimentos relativamente à impressão nas direções X/Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "A distância da estrutura de suporte relativamente às saliências nas direções X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "A distância entre a estrutura de suporte e a impressão nas direções X/Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Os pontos de distância são alterados para suavizar o percurso" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Os pontos de distância são alterados para suavizar o percurso" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Não criar áreas de enchimento mais pequenas do que este valor (em vez disso, utiliza o revestimento)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Altura da proteção contra correntes de ar" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Limite de proteção contra correntes de ar" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Distância X/Y da proteção contra correntes de ar" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Malha de suporte pendente" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Dupla Extrusão" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Elíptica" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Ativar controlo da aceleração" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Ativar Definições de Bridge" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Ativar desaceleração" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Ativar suporte cónico" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Barreira contra correntes de ar" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Ativar o movimento fluido" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ativar Engomar (Ironing)" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Ativar Controlo do Jerk" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Ativar controlo de temperatura do nozzle" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Ativar proteção contra escorrimento" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "\"Blob\" de Preparação" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Ativar torre de preparação" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Ativar Arrefecimento Impressão" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Permitir comunicação do processo de impressão" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Ativar Retração" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Ativar aba de suporte" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Ativar piso de suporte" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Ativar interface de suporte" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Ativar tecto de suporte" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Ativar a aceleração da viagem" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Ativar Jerk de Viagem" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Ativa a proteção exterior contra escorrimentos. Isto irá criar um invólucro em torno do modelo que deverá limpar um segundo nozzle, caso este se encontre à mesma altura que o primeiro nozzle." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Permitir comunicação do processo de impressão para definir valores limite para possível deteção de falhas." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Ative as regiões pequenas (até à \"Largura superior/interior pequena\") na camada mais superior (exposta ao ar) para que sejam preenchidas com paredes em vez do padrão predefinido." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Permite ajustar o jerk da cabeça de impressão quando a velocidade nos eixos X ou Y muda. Aumentar o jerk pode reduzir o tempo de impressão em detrimento da qualidade de impressão." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Permite o ajuste da aceleração da cabeça de impressão. Aumentar as acelerações pode reduzir o tempo de impressão em detrimento da qualidade de impressão." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Ativa os ventiladores de arrefecimento durante a impressão. Os ventiladores melhoram a qualidade de impressão, nas camadas que têm uma curta duração de impressão e / ou nas partes do modelo que contêm vãos / saliências." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code Final" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Comprimento da purga do fim do filamento" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Velocidade da purga do fim do filamento" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Aplicar a aba para ser impressa em torno do modelo, mesmo se esse espaço fosse ocupado de outra forma pelo suporte. Isto substitui algumas regiões da primeira camada do suporte por regiões de aba." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Em todo o lado" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Exclusivo" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Experimental" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Expor Junta" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Costura Extensiva" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "A costura extensiva tenta coser buracos abertos na malha, ao fechá-los com os polígonos adjacentes. Esta opção pode acrescentar bastante tempo de processamento." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Contagem de paredes de enchimento adicionais" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Paredes Revestimento Extra" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Material extra a preparar após a substituição do nozzle." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Posição X Preparação Extrusor" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Posição Y Preparação Extrusor" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Posição Z para Preparação Extrusor" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Extrusoras Partilham Aquecedor" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Extrusoras partilham bocal" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Modificador da velocidade de arrefecimento da extrusão" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Fator de correção baseado no diâmetro de extrusão sobre a velocidade. A 0% a velocidade de movimento mantém-se constante à Velocidade de impressão. A 100% a velocidade de movimento é ajustada de modo a que o fluxo (em mm³/s) seja mantido constante, ou seja, linhas metade do Diâmetro da linha normal são impressas duas vezes mais depressa e as linhas duas vezes mais largas são impressas a metade da rapidez. Um valor superior a 100% pode ajudar a compensar a pressão mais elevada necessária para efetuar a extrusão de linhas largas." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Velocidade Ventiladores" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Substituir velocidade da ventoinha" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Os contornos do elemento com um comprimento inferior a este serão impressos à Velocidade de elemento pequeno." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Funcionalidades que ainda não foram totalmente lançadas." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Diâmetro Roda do Alimentador" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Temperatura de impressão final" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Retração em Firmware" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Extrusor de suporte da primeira camada" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Fluxo" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Proporção de equalização do fluxo" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Limite de fluxo" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Fator de compensação da taxa de fluxo" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Desvio de extrusão máximo de compensação da taxa de fluxo" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Gráfico de temperatura de fluxo" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Aviso de fluxo" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Compensação de fluxo para a camada inicial: a quantidade de material extrudido na camada inicial é multiplicada por este valor." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Compensação de fluxo nos resultados da primeira camada" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Compensação de fluxo nas linhas de enchimento." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Compensação de fluxo nas linhas de suporte do teto ou do chão." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Compensação de fluxo nas linhas das áreas na parte superior da impressora." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Compensação de fluxo nas linhas da torre de preparação." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Compensação de fluxo nas linhas de contorno ou abas." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Compensação de fluxo nas linhas do chão do suporte." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Compensação de fluxo nas linhas do teto do suporte." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Compensação de fluxo nas linhas das estruturas de suporte." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Compensação de fluxo na linha de parede mais externa da primeira camada." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Compensação de fluxo na linha de parede exterior." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Compensação de fluxo na linha da parede mais externa da superfície superior." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Compensação de fluxo nas linhas de parede da superfície superior para todas as linhas de parede, exceto a mais externa." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Compensação de fluxo nas linhas superiores/inferiores." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Compensação de fluxo em linhas de parede para todas as linhas de parede, exceto a mais externa, mas somente para a primeira camada" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "A compensação de fluxo nas linhas de parede para todas as linhas de parede exceto a mais exterior." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Compensação de fluxo nas linhas de parede." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Compensação de fluxo: a quantidade de material extrudido é multiplicada por este valor." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Ângulo do movimento fluido" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Distância da alteração do movimento fluido" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Distância pequena do movimento fluido" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Comprimento da purga da descarga" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Velocidade da purga da descarga" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Para estruturas finas de cerca de uma ou duas vezes o tamanho do bocal, os diâmetros da linha têm de ser alterados para aderir à espessura do modelo. Esta definição controla o diâmetro mínimo da linha permitido para as paredes. Os diâmetros mínimos de linha determinam também os diâmetros máximos de linha, uma vez que fazemos a transição de paredes N para N+1 com uma determinada espessura da geometria em que as paredes N são largas e as paredes N+1 são estreitas. A linha de parede mais larga possível é o dobro do diâmetro mínimo de linha da parede." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Frontal" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Frontal esquerda" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Frontal direita" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Máximo" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Revestimento Difuso" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Densidade Revestimento Difuso" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Revestimento difuso apenas no exterior" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Distância do ponto de revestimento difuso" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Espessura Revestimento Difuso" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Variante do G-code" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Comandos G-code a serem executados no fim – separados por " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Comandos G-code a serem executados no início – separados por " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "GUID do material. Este é definido automaticamente." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Altura do pórtico" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Gerar estrutura de interligação" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Criar Suportes" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Gera uma aba dentro das regiões de enchimento do suporte da primeira camada. Esta aba é impressa na parte por baixo do suporte e não em torno do mesmo. Ativar esta definição aumenta a aderência do suporte à base de construção." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Gera uma interface densa entre o modelo e o suporte. Isto irá criar um revestimento na parte superior do suporte, onde o modelo é impresso, e na parte inferior do suporte, onde este é apoiado sobre o modelo." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Gera uma base densa de material entre a parte inferior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Gera uma base densa de material entre a parte superior do suporte e o modelo. Isto irá criar um revestimento entre o modelo e o suporte." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Criar estruturas para suportar partes do modelo, suspensas ou com saliências. Sem estas estruturas, essas partes do modelo podem desmoronar durante a impressão." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Vidro" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Passar novamente sobre o revestimento superior, mas desta vez extrudindo muito pouco material. O objetivo é derreter mais o plástico da camada superior, criando uma superfície mais suave. A pressão na câmara do nozzle é mantida elevada de modo que os vincos existentes na superfície sejam preenchidos com material." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Altura Degraus Enchimento Gradual" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Degraus Enchimento Gradual" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Altura do degrau de enchimento gradual de suporte" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Enchimento Gradual Suporte" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Reduz gradualmente para esta temperatura ao imprimir a velocidades reduzidas devido ao tempo mínimo da camada." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Grelha" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Agrupar as paredes externas" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Tem estabilização da temperatura do volume de construção" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Tem Base de Construção Aquecida" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Velocidade de aquecimento" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Comprimento da zona de aquecimento" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Limite de altura da proteção contra correntes de ar. Não será impressa qualquer proteção contra correntes de ar acima desta altura." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Ocultar Junta" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Ocultar ou Expor Junta" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Expansão horizontal de buraco" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Diâmetro máximo da Expansão Horizontal de Buraco" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Os buracos e os contornos das peças com um diâmetro inferior a este valor serão impressos à Velocidade de elemento pequeno." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Expansão Horizontal" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento horizontal" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "A distância a que o filamento pode ser esticado antes de se separar, enquanto é aquecido." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "A distância a que o material tem de ser retraído antes de parar o escorrimento." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Até que distância o filamento se deve mover para compensar as alterações na taxa de fluxo, como uma percentagem da distância que o filamento iria percorrer num segundo de extrusão." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "A distância de retração do filamento para separá-lo de forma regular." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "A velocidade a que o filamento tem de ser retraído imediatamente antes de se separar numa retração." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "A velocidade a que o material tem de ser retraído durante uma substituição de filamentos para evitar o escorrimento." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "A velocidade com que deve preparar o material após substituir uma bobina vazia por uma bobina nova do mesmo material." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "A velocidade com que deve preparar o material após mudar para um material diferente." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "O tempo que o material pode ficar fora do armazenamento seco em segurança." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "O numero de passos do motor de passos (stepper motor) que irão resultar no movimento de um milímetro na direção Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "O número de passos do motor de passos (stepper motor) que irá resultar no movimento de um milímetro da roda do alimentador à volta da respetiva circunferência." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao substituir uma bobina vazia por uma bobina nova do mesmo material." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "A quantidade de material que deve usar para purgar o material anterior para fora do bocal (em comprimento de filamento) ao mudar para um material diferente." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Até que ponto se assume que o filamento de cada extrusora foi retraído a partir da ponta do bocal partilhado após a conclusão do script gcode de arranque da impressora; o valor deverá ser igual ou superior ao comprimento da parte comum das condutas do bocal." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Como a interface de suporte e a estrutura de suporte interagem quando se sobrepõem. Atualmente implementado apenas para o teto de suporte." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "A altura mínima que um ramo deve ter quando apoiado no modelo. Evita pequenas bolhas de suporte. Esta definição é ignorada quando um ramo está a suportar um teto do suporte." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Se uma região de revestimento for suportada por menos do que esta percentagem da sua área, imprima-a utilizando as definições de Bridge. Caso contrário, será impressa utilizando as definições de revestimento normais." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Se o segmento de um percurso de ferramenta se desviar mais do que este ângulo em relação ao movimento geral, o mesmo é suavizado." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Se ativada, a segunda e a terceira camada sobre o ar são impressas utilizando as seguintes definições. Caso contrário, essas camadas são impressas utilizando as definições normais." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Se estiver a efetuar a transição para trás e para a frente entre diferentes números de paredes numa rápida sucessão, não efetuar qualquer transição. Remover as transições se estiverem mais juntas do que esta distância." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se a base da plataforma estiver habilitada, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o Raft estiver ativado, esta será a área de raft adicional em torno do modelo que também terá um raft. Aumentar o valor desta margem irá criar um raft mais robusto, mas ao mesmo tempo utiliza mais material e reduz a área disponível para a impressão." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o centro da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Se o topo da plataforma estiver habilitado, constitui a área da plataforma extra em redor do modelo, que também recebe uma plataforma. Aumentar esta margem irá criar uma plataforma resistente, utilizando ao mesmo tempo mais material e deixando menos área para a sua impressão." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Ignorar a geometria interna provocada pela sobreposição de volumes num objecto e imprime os volumes como um só. Pode provocar o desaparecimento indesejado de cavidades interiores." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Incluir Temperatura da Base de Construção" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Incluir Temperaturas do Material" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Inclusivo" + +msgctxt "infill description" +msgid "Infill" +msgstr "Enchimento" + +msgctxt "infill label" +msgid "Infill" +msgstr "Enchimento" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Aceleração de enchimento" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Enchimento antes das paredes" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Densidade do Enchimento" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Extrusor Enchimento" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Fluxo de Enchimento" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Jerk do Enchimento" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Espessura Camada Enchimento" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Direções Linhas Enchimento" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Distância Linhas Enchimento" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Multiplicador de linhas de enchimento" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Diâmetro Linha Enchimento" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Objecto de Enchimento" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Ângulo Saliência Enchimento" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Sobreposição Enchimento (mm)" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Sobreposição Enchimento (%)" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Padrão de Enchimento" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Velocidade Enchimento" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Enchimento como Suporte" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Optimização Deslocação Enchimento" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Distância Limpeza Enchimento" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Deslocar Enchimento em X" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Deslocar Enchimento em Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Camadas inferiores iniciais" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Velocidade Inicial do ventilador" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Aceleração da camada inicial" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Fluxo inferior da camada inicial" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Diâmetro da Camada Inicial" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Fluxo Camada Inicial" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Espessura da Camada Inicial" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Expansão Horizontal Camada Inicial" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Fluxo da parede interna da camada inicial" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Jerk da Camada Inicial" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Diâmetro Linha Camada Inicial" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Fluxo da parede externa da camada inicial" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Aceleração de impressão da camada inicial" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Jerk Impressão Camada Inicial" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Velocidade de impressão da camada inicial" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Velocidade Camada Inicial" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Distância da linha de suporte da camada inicial" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Aceleração de deslocação da camada inicial" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Jerk Deslocação Camada Inicial" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Velocidade de deslocação da camada inicial" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Sobreposição Z Camada Inicial" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Temperatura de impressão inicial" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Aceleração da parede interior" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Extrusor Paredes Interiores" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Jerk das Paredes Interiores" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Velocidade Parede Interior" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Parede de Parede(s) Interior(es)" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Diâmetro Linha Parede(s) Interior" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Desvio aplicado à trajetória da parede exterior. Se a parede exterior for menor que o nozzle e impressa depois das paredes interiores, utilize este desvio para que o buraco do nozzle se sobreponha às paredes interiores e não ao exterior do modelo." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Apenas no interior" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "De dentro para fora" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Linhas de interface preferidas" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Interface preferida" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Intercalado" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Contagem de camada de feixe de interligação" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Largura do feixe de interligação" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Evitar a interligação de fronteiras" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Profundidade de interligação" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Orientação da estrutura de interligação" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Engomar Só Última Camada" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Aceleração de Engomar" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Fluxo de Engomar" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Desvio Interior de Engomar" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Jerk de Engomar" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Distância Linhas de Engomar" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Padrão de Engomar" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Velocidade de Engomar" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "O Centro é a Origem" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "É um material de suporte" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Este tipo de material é daquele que se separa de forma regular quando aquecido (cristalino) ou daquele que cria longas cadeias de polímero entrelaçado (não cristalino)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Este material é utilizado como material de suporte durante a impressão." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Vibrar apenas os contornos das peças e não os buracos das peças." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Manter Faces Soltas" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Espessura das Camadas" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X Início Camada" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y Início Camada" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "A espessura da camada inferior (base) do raft. Esta deve ser uma camada espessa para aderir firmemente à base de construção da impressora." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "A espessura da camada do meio do raft. (segunda camada)" + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "A espessura das camadas superiores do raft." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Omitir uma ligação entre as linhas de suporte a cada \"x\" milímetros para facilitar a separação da estrutura de suporte." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Esquerda" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Elevar Cabeça" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Relâmpago" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Ângulo de saliência do enchimento relâmpago" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Ângulo de corte do enchimento relâmpago" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Ângulo de alisamento do enchimento relâmpago" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Ângulo de suporte de enchimento relâmpago" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Limitar o Alcance dos Ramos" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Limita a distância que cada ramo deve percorrer a partir do ponto que apoia. Isto pode tornar o suporte mais resistente, contudo vai aumentar a quantidade de ramos (e, por conseguinte, também o uso de mais material e tempo de impressão)" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Limite sobre o aviso de temperatura do volume de construção para deteção." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Limite sobre a anomalia de temperatura do volume de construção para deteção." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Limite sobre a anomalia de temperatura de impressão para deteção." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Limite sobre o aviso de temperatura de impressão para deteção." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Limite sobre a anomalia de fluxo para deteção." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Limite sobre o aviso de fluxo para deteção." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Limita o volume desta malha para o interior de outras malhas. Pode utilizar esta opção para fazer com que determinadas áreas de uma malha sejam impressas com diferentes definições e com um extrusor distinta." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Limitado" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Diâmetro da Linha" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Máquina" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Profundidade da Máquina" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Polígono da cabeça e do ventilador da máquina" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Altura da Máquina" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Tipo de Máquina" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Largura da Máquina" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Definições específicas da máquina" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Tornar Saliência Imprimível" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Faz com que as malhas em contacto se sobreponham ligeiramente. Isto melhora a sua ligação." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Torna as áreas de suporte mais reduzidas na parte inferior do que na saliência." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Cria suporte em qualquer local abaixo da malha de suporte, para que não existam saliências na malha de suporte." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Definir como absoluta, a posição para a preparação do extrusor, em vez de relativa à última posição conhecida da cabeça." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Faça com que a primeira e segunda camadas do modelo se sobreponham na direção Z para compensar a perda de filamento na caixa de ar. Todos os modelos acima da primeira camada do modelo serão deslocadas para baixo segundo este valor." +"Note-se que, por vezes, a segunda camada é imprimida por baixo da camada inicial por causa desta configuração. Este comportamento é intencional." + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Torne os objetos mais adequados para impressão 3D." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumétrico)" + +msgctxt "material description" +msgid "Material" +msgstr "Material" + +msgctxt "material label" +msgid "Material" +msgstr "Material" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Marca do material" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID do material" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Tipo de material" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Volume de material entre limpezas" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Distância Max. de Combing sem Retração" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Aceleração X Máxima" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Aceleração Y Máxima" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Aceleração Z Máxima" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Ângulo Máximo dos Ramos" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Desvio máximo" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Desvio máximo da área de extrusão" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Velocidade Máxima Ventiladores" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Aceleração Máxima do Filamento" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Ângulo máximo do modelo" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Área máxima do buraco da saliência" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Duração máxima do parqueamento" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Resolução Máxima" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Número Máximo Retrações" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Ângulo Revestimento para Expansão" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Velocidade Máxima de E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Velocidade X Máxima" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Velocidade Y Máxima" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Velocidade Z Máxima" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Diâmetro Máximo Suportado pela Torre" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Resolução Máxima Deslocação" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "A aceleração máxima do motor da direção X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "A aceleração máxima do motor da direção Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "A aceleração máxima do motor da direção Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "A aceleração máxima do motor do filamento." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Densidade máxima do enchimento considerado como disperso. O revestimento sobre o enchimento disperso não é considerado como ter suportes, pelo que pode ser tratado como um revestimento de Bridge." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "O diâmetro máximo nas direções X/Y de uma pequena área que deverá ser suportada por uma torre de suporte especializada." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Quantidade máxima de material que pode ser extrudido antes de ser iniciada outra limpeza do nozzle. Se este valor for inferior ao volume do material necessário numa camada, esta definição não tem qualquer influência nessa camada, ou seja, está limitada a uma limpeza por camada." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Sobreposição Malhas Combinadas" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Correção de Objectos (Mesh)" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Posição X do Objeto" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Desvio aplicado ao objeto na direção X." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Posição Y do Objeto" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Desvio aplicado ao objeto na direção Y." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Posição Z do Objeto" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Classificação de processamento de malha" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Matriz Rotação do Objeto" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Centro" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Largura mínima do molde" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Tempo Mínimo da Temperatura em Modo de Espera" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Comprimento mínimo da parede de Bridge" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Par" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Intervalo Mínimo Distância Extrusão" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Tamanho mínimo da característica" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Velocidade Mínima de Alimentação" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Altura Mínima ao Modelo" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Área de enchimento mínimo" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Tempo mínimo por camada" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede Ímpar" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Circunferência Mínima do Polígono" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Largura Mínima Revestimento para Expansão" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Velocidade Mínima" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Área de suporte mínimo" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Área mínima do piso de suporte" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Área mínima da interface de suporte" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Área mínima do teto de suporte" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Distância X/Y mínima de suporte" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede fina" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Volume mínimo antes da desaceleração" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Diâmetro mínimo de linha da parede" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamanho mínimo da área para polígonos da interface do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Tamanho mínimo da área para polígonos de suporte. Os polígonos com uma área inferior a este valor não serão gerados." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamanho mínimo da área para os pisos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Tamanho mínimo da área para os tetos do suporte. Os polígonos com uma área inferior a este valor serão impressos como suporte normal." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Espessura mínima dos elementos finos. Os elementos do modelo mais finos do que este valor não serão impressos, enquanto que os elementos mais espessos do que o Tamanho mínimo do elemento serão alargados para o Diâmetro mínimo de linha da parede." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "O diâmetro mínima para a qual a base da área do suporte cónico é reduzida. Larguras reduzidas podem originar estruturas de suporte instáveis." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Molde" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Ângulo do molde" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Altura do tecto do molde" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Ordem de Engomar em \"Monotonic\"" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Ordem de superfície do topo da plataforma monotónica" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Ordem da superfície superior em \"Monotonic\"" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Ordem Superior/Inferior em \"Monotonic\"" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Varias linhas de contorno ajudam a preparar melhor a extrusão para modelos pequenos. Definir este valor como 0 desactiva o contorno." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Multiplicador do diâmetro da linha da camada inicial. Aumentar o diâmetro poderá melhorar a aderência à base de construção." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Fator do movimento sem carregamento" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Sem Revestimento nos Espaços Z" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Formas não tradicionais de imprimir os seus modelos." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Nenhum" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Nenhum" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Geralmente, o Cura tenta remendar pequenos buracos na malha e remover partes de uma camada com buracos grandes. Ativar esta opção conserva as peças que não podem ser remendadas. Esta opção deve ser utilizada como último recurso quando tudo o resto não produz um G-code adequado." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Não no Revestimento" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Não na Superfície Exterior" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Ângulo do nozzle" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Diâmetro do Nozzle" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Áreas não permitidas ao nozzle" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "ID do Nozzle" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Comprimento do nozzle" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Quantidade de Preparação Extra de Substituição do Nozzle" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Velocidade de preparação de substituição do nozzle" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Velocidade de recolha de substituição do nozzle" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Distância de retração de substituição do nozzle" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Velocidade de retração de substituição do nozzle" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Número de Extrusores" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Número de extrusores ativos" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Número de camadas mais lentas" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Número de núcleos de extrusão que estão activos; definido automaticamente em software" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Número de núcleos de extrusão. Um núcleo de extrusão é o conjunto de um alimentador (feeder), tubo bowden e nozzle." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Número de vezes que o nozzle deve ser passado pela escova." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "O número de vezes que a densidade de enchimento deve ser reduzida para metade consoante a distância às superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores têm uma maior densidade, até ao definido na Densidade de Enchimento." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "O número de vezes que a densidade de enchimento do suporte deve ser reduzida para metade, quanto maior for o afastamento das superfícies superiores. As áreas que se encontram mais próximas das superfícies superiores obtêm uma maior densidade, até ao limite do valor da Densidade do Suporte." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Octeto" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Desligado" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Desvio aplicado ao objeto na direção X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Desvio aplicado ao objeto na direção Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Desvio aplicado ao objeto na direção Z. Com esta opção, é possível realizar o que se costumava designar como \"Afundamento de objetos\"." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Desviar com extrusor" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Na placa de construção quando possível" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "No modelo, se necessário" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Individualmente" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Efetua um salto Z apenas ao deslocar-se sobre as peças impressas que não podem ser evitadas pelo movimento horizontal através da opção Evitar Peças impressas durante a deslocação." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Engomar apenas a última camada do modelo. Isto permite poupar tempo se as camadas inferiores não precisarem de ter um acabamento mais suave." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Ângulo da proteção contra escorrimentos" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Distância da proteção contra escorrimentos" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Alcance dos Ramos Ideal" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Otimizar Ordem Paredes" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Otimizar a ordem pela qual as paredes são impressas de forma a reduzir o número de retrações e a distância percorrida. A maioria das peças irá beneficiar com a ativação desta opção, mas algumas podem na realidade demorar mais tempo, portanto, por favor compare as estimativas do tempo de impressão com e sem a otimização." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Diâmetro externo do nozzle" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da parede exterior" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Extrusor Parede Exterior" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Fluxo de Parede Exterior" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Desvio Parede Exterior" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Jerk da Parede Exterior" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Diâmetro Linha Parede Exterior" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Velocidade Parede Exterior" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Distância Limpeza Parede Exterior" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "As paredes externas de diferentes ilhas na mesma camada são impressas em sequência. Quando habilitado, a quantidade de mudanças no fluxo é limitada porque as paredes são impressas um tipo de cada vez; quando desabilitado, o número de deslocamentos entre ilhas é reduzido porque as paredes nas mesmas ilhas são agrupadas." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Apenas no exterior" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "De fora para dentro" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Ângulo da parede de saliências" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Velocidade da parede de saliências" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "As paredes de saliências serão impressas a esta percentagem da sua velocidade de impressão normal." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Coloca a limpeza em pausa após anular a retração." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Percentagem da velocidade da ventoinha a utilizar ao imprimir o revestimento e as paredes de Bridge." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Velocidade percentual da ventoinha a utilizar ao imprimir as regiões de revestimento imediatamente acima do suporte. A utilização de uma velocidade de ventoinha elevada facilita a remoção do suporte." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Percentagem da velocidade da ventoinha a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Os polígonos em camadas seccionadas que apresentem uma circunferência mais pequena do que este valor serão filtrados. Valores mais reduzidos originam malhas de resolução superior à custa do tempo de seccionamento. Destina-se principalmente a impressoras SLA de alta resolução e a modelos 3D muito pequenos com muitos detalhes." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Ângulo dos Ramos preferido" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Evite a transição para trás e para a frente entre uma parede extra e uma a menos. Esta margem alarga o alcance dos diâmetros de linha que seguem [Diâmetro mínimo da linha da parede - Margem, 2 * Diâmetro mínimo de linha da parede + Margem]. O aumento desta margem reduz o número de transições, o que reduz o número de inícios/paragens de extrusão e o tempo de viagem. No entanto, a variação do diâmetro de linha grande pode levar a problemas de excesso ou defeito de extrusão." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Aceleração da torre de preparação" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Base da Torre de Primagem" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Altura da Base da Torre de Primagem" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Tamanho da Base da Torre de Primagem" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Inclinação da Base da Torre de Primagem" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Fluxo da torre de preparação" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Jerk da Torre de Preparação" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Diâmetro Linha Torre Preparação" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Distância transitória máxima da torre de preparação" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Volume mínimo da torre de preparação" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Espaçamento das Linhas da Jangada da Torre de Primagem" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Tamanho Torre de Preparação" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Velocidade da torre de preparação" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Tipo de torre de preparação" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "Posição X da torre de preparação" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Posição Y da torre de preparação" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Aceleração de impressão" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Jerk da Impressão" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Comunicação do processo de impressão" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Sequência de impressão" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Velocidade de Impressão" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Imprimir Paredes Finas" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Imprima uma borda no exterior ou interior do modelo, ou ambos. Dependendo do modelo, isto ajuda a reduzir a quantidade de borda que será necessário remover mais tarde, garantindo ao mesmo tempo uma aderência à base adequada." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Imprime uma torre próxima da impressão que prepara o material depois de cada substituição do nozzle." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Imprimir as estruturas de enchimento só onde os revestimentos superiores necessitam de suporte. Activar esta definição reduz o tempo de impressão e material usado, mas faz com que a peça não tenha uma resistência uniforme." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas de engomar numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Imprime modelos como moldes, os quais podem ser fundidos de forma a obter um modelo que se assemelhe aos modelos da base de construção." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Imprimir paredes do modelo que são mais finas horizontalmente do que o tamanho do nozzle." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Imprima as linhas de superfície do topo da plataforma numa ordem que as leve a sobrepor-se a linhas adjacentes numa única direção. Desta forma, a impressão poderá demorar mais algum tempo, mas dá um aspeto mais consistente à superfície, o que também é visível na superfície inferior do modelo. " + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Velocidade de impressão a ser utilizada ao imprimir a segunda camada do revestimento de Bridge." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Velocidade de impressão a ser utilizada ao imprimir a terceira camada do revestimento de Bridge." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Limite da temperatura de impressão" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Aviso de temperatura de impressão" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Imprime o enchimento antes de imprimir as paredes. Imprimir as paredes em primeiro lugar pode resultar em paredes mais precisas, embora as saliências sejam impressas com menor qualidade. Imprimir o enchimento em primeiro lugar resulta em paredes mais robustas, embora, por vezes, o padrão geométrico de enchimento possa ser visto através da superfície." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas da superfície superior numa ordem que faz com que ocorra sempre uma sobreposição com linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas superiores/inferiores numa ordem que faz com que ocorra sempre uma sobreposição com as linhas adjacentes numa única direção. Este processo demora ligeiramente mais tempo a imprimir, mas torna o aspeto das superfícies planas mais consistente." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Temperatura de Impressão" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Temperatura Impressão Camada Inicial" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Imprimir a linha do contorno mais interior com múltiplas camadas facilita a remoção do contorno." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Imprimir uma parede adicional em camadas alternadas. Deste modo, o enchimento é \"capturado\" entre estas paredes adicionais, resultando em impressões mais robustas." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Qualidade" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Quarto Cúbico" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Caixa de Ar do Raft" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Margem extra da base da plataforma" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Extrusor da base do raft" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Velocidade do ventilador inferior do raft" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Espaçamento da Linha Base do Raft" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Diâmetro Linha Base do Raft" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Aceleração da Base do Raft" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Jerk de impressão inferior do raft" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Velocidade da Base do Raft" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Alisamento da base da plataforma" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Espessura da Base do Raft" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Número de paredes da base do raft" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Margem Adicional Raft" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Velocidade do ventilador do raft" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Margem extra do centro da plataforma" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Extrusor do meio do raft" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Velocidade do ventilador do meio do raft" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Camadas do meio do raft" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Diâmetro Linha do Meio do Raft" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Aceleração do Meio do Raft" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Jerk de impressão do meio do raft" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Velocidade do Meio do Raft" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Alisamento do centro da plataforma" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Espaçamento do Meio do Raft" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Espessura do Meio do Raft" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Número de paredes do centro da plataforma" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Aceleração Impressão do Raft" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Jerk de impressão do raft" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Velocidade Impressão do Raft" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Suavização Raft" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Margem extra do topo da plataforma" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Extrusora superior do raft" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Velocidade do ventilador superior do raft" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Espessura Camada Superior Raft" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Camadas Superiores do Raft" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Diâmetro Linha Superior do Raft" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Aceleração do Topo do Raft" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Jerk de impressão superior do raft" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Velocidade do Topo do Raft" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Alisamento do topo da plataforma" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Espaçamento Superior do Raft" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Número de paredes do topo da plataforma" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Número de paredes da plataforma" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Aleatório" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Início aleatório do enchimento" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "A linha de enchimento que é impressa primeiro é aleatória. Isso impede que um segmento se torne o mais forte, mas exige um movimento adicional." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Vibra aleatoriamente enquanto imprime a parede exterior, para que a superfície apresente um aspeto rugoso e difuso." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Retangular" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Velocidade Normal Ventiladores" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Altura Velocidade Normal Ventilador" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Camada Velocidade Normal Ventilador" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Limiar Normal / Máximo Velocidade Ventilador" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Extrusão relativa" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Remover Todos Buracos" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Remover Camadas Iniciais Vazias" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Remover interceção de malhas" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Remover ângulos internos da base da plataforma" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Remover cantos interiores do raft" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Remover ângulos internos do centro da plataforma" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Remover ângulos internos do topo da plataforma " + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Remover as áreas onde várias malhas se sobrepõem entre si. Isto pode ser utilizado se houver uma sobreposição dos objetos com diferentes materiais que estejam combinados." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Remove as camadas vazias por baixo da primeira camada impressa, se existirem. Desativar esta definição pode causar primeiras camadas vazias, se a definição Tolerância de Seccionamento estiver definida como Exclusivo ou Centro." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Remova ângulos internos da base da plataforma, fazendo com que a plataforma fique convexa." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Remova ângulos internos do centro da plataforma, fazendo com que a plataforma fique convexa." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Remova ângulos internos do topo da plataforma, fazendo com que a plataforma fique convexa." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Remover os cantos interiores do raft, fazendo com que o raft se torne convexo." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Remove os buracos em cada camada e mantém apenas a forma exterior. Isto irá ignorar qualquer geometria interna invisível. No entanto, também ignora buracos de camadas que podem ser vistos por cima ou por baixo." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Substitui a parte mais exterior do padrão superior/inferior por um número de linhas concêntricas. Usar uma ou duas linhas melhora os tectos que começam no material de enchimento." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Eventos de comunicação que ultrapassam os limites definidos" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Preferência de Apoio" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Retrair Antes Parede Exterior" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Retrair na Mudança Camada" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Retrai o filamento quando o nozzle está em movimento numa área sem impressão." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Retrai o filamento quando o nozzle se está a deslocar para a camada seguinte." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Distância de Retração" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Preparação Adicional de Retração" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Deslocação Mínima da Retração" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Velocidade de preparação na retração" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Velocidade Retrair na Retração" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Velocidade de Retração" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Direita" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Ajustar a velocidade do ventilador entre 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Ajustar a velocidade do ventilador para esta ser definida entre 0 e 1 em vez de entre 0 e 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Compensação de redução do fator de escala" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "O cenário tem malhas de suporte" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Preferência Canto Junta" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Definir sequência de impressão manualmente" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Define a altura da proteção contra correntes de ar. Opte por imprimir a proteção contra correntes de ar com a altura máxima do modelo ou com uma altura limitada." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Definições utilizadas para imprimir com vários extrusores." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Definições que só são utilizadas se o CuraEngine não for ativado a partir do front-end do Cura." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Retração inicial do bocal partilhado" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Canto mais Acentuado" + +msgctxt "shell description" +msgid "Shell" +msgstr "Invólucro" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Mais curto" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Mostrar Variantes da Máquina" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Camadas do Suporte da Aresta de Revestimento" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Espessura do Suporte da Aresta de Revestimento" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Distância Expansão Revestimento" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Sobreposição Revestimento (mm)" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Sobreposição Revestimento (%)" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Largura Remoção Revestimento" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "As áreas de revestimento mais pequenas do que este valor não são expandidas. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo apresenta uma inclinação quase vertical." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Ignorar uma em cada \"x\" linhas de ligação para facilitar a separação da estrutura de suporte." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Ignorar algumas ligações das linhas de suporte para facilitar a separação da estrutura de suporte. Esta definição é aplicável ao padrão em Ziguezague do enchimento de suporte." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Contorno" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Distância Contorno" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Altura do contorno" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Número Linhas Contorno" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Aceleração Contorno/Aba" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Extrusor do contorno/aba" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Fluxo de Contorno/Aba" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Jerk de Contorno/Aba" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Diâmetro Linha Contorno/Aba" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Comprimento Mínimo Contorno/Aba" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Velocidade Contorno/Aba" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Tolerância do Seccionamento" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Velocidade da camada inicial de partes pequenas" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Comprimento máximo do elemento pequeno" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Velocidade de elemento pequeno" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Tamanho máximo do buraco pequeno" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Temperatura de impressão de camada pequena" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Superfície superior/inferior pequena" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Largura Mínima Superior/Inferior" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Os elementos pequenos na primeira camada serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Os elementos pequenos serão impressos a esta percentagem da respetiva velocidade de impressão normal. Uma impressão mais lenta pode ajudar em termos de aderência e precisão." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "As regiões superiores/inferiores pequenas são preenchidas com paredes em vez do padrão superior/inferior padrão. Isto ajuda a evitar movimentos bruscos. Desativado para as camadas mais superiores (expostas ao ar) por predefinição (consulte \"Superfície superior/inferior pequena\")." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Aba Inteligente" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Ocultação Inteligente" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "\"Spiralize\" Suavizar Contornos" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Suaviza os contornos, criados pelo \"Spiralize\", para reduzir a visibilidade da junta Z (a junta Z deve ser praticamente impercetível na impressão, mas continuará a ser visível na visualização por camadas). Tenha em conta que a suavização tenderá a reduzir/desfocar pequenos detalhes da superfície." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação, o qual pode ser compensado aqui." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Pode ocorrer escorrimento de material durante um movimento de deslocação de limpeza, o qual pode ser compensado aqui." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Modos Especiais" + +msgctxt "speed description" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "speed label" +msgid "Speed" +msgstr "Velocidade" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Velocidade para mover o eixo Z durante o salto." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "\"Spiralize\" Contorno Exterior" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "\"Spiralize\" é uma opção que uniformiza o movimento em Z do contorno exterior. Isto irá criar uma elevação em Z, constante, em toda a peça. Esta funcionalidade transforma um modelo sólido numa impressão com uma única parede e com uma base sólida. Esta funcionalidade só deve ser ativada quando cada camada contiver apenas uma única peça." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Temperatura em Espera" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code Inicial" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Ponto inicial de cada trajetória de uma camada. Quando as trajetórias em camadas consecutivas começam no mesmo ponto, pode aparecer uma junta vertical na impressão. Ao alinhar o inicio das trajectórias próximo a uma posição definida pelo utilizador, é mais fácil remover a linha de junta. Quando dispostas aleatoriamente, as imprecisões no início das trajetórias serão menos perceptíveis. Ao adoptar a trajetória mais curta, a impressão será mais rápida." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Passos por Milímetro (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Passos por Milímetro (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Passos por Milímetro (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Passos por Milímetro (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Suportes" + +msgctxt "support label" +msgid "Support" +msgstr "Suportes" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Aceleração de suporte" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Distância inferior do suporte" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Contagem das linhas da parede inferior de suporte" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Contagem de linhas da aba do suporte" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Largura da aba do suporte" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Número de linhas do bloco de suporte" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Tamanho do bloco de suporte" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Densidade do Suporte" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Prioridade da distância de suporte" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Extrusor dos Suportes" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Aceleração do piso de suporte" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Densidade do piso de suporte" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Extrusor de piso de suporte" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Fluxo do Chão do Suporte" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Expansão horizontal do piso de suporte" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Jerk do Piso do Suporte" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Direções da linha do piso do suporte" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Distância da linha do piso de suporte" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Diâmetro Linha Piso Suporte" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Padrão Piso Suporte" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Velocidade do piso de suporte" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Espessura do piso de suporte" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Fluxo de Suporte" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Expansão horizontal de suporte" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Aceleração de enchimento do suporte" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Extrusor de enchimento do suporte" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Jerk do Enchimento do Suporte" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Espessura da camada de enchimento de suporte" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Direção da linha de enchimento do suporte" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Velocidade de enchimento do suporte" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Aceleração da interface de suporte" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Densidade da interface de suporte" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Extrusor de interface de suporte" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Fluxo da Interface do Suporte" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Expansão horizontal da interface de suporte" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Jerk da Interface do Suporte" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Direções da linha da interface do suporte" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Diâmetro Linha Interface Suporte" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Padrão da interface de suporte" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Prioridade da Interface e Suporte" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Velocidade da interface de suporte" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Espessura Interface Suporte" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Contagem das linhas de parede da interface de suporte" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Jerk do Suporte" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Distância da junção do suporte" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Distância da linha de suporte" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Diâmetro Linha Suportes" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Malha de suporte" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Ângulo Saliência para Suportes" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Padrão de Suportes" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Colocação do suporte" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Aceleração do tecto de suporte" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Densidade do tecto de suporte" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Extrusor de tecto de suporte" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Fluxo do Teto do Suporte" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Expansão horizontal do teto de suporte" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Jerk do Tecto do Suporte" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Direções da linha do teto do suporte" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Distância da linha do tecto de suporte" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Diâmetro Linha Tecto Suporte" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Padrão do tecto de suporte" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Velocidade do tecto de suporte" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Espessura do tecto de suporte" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Contagem das linhas de parede do telhado de suporte" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Velocidade Suporte" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Altura Degraus Suporte" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Largura Máxima Degraus Suporte" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Ângulo de declive mínimo do degrau da escada de suporte" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Estrutura de suporte" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Distância superior do suporte" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Número Linhas Paredes Suporte" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Distância X/Y do suporte" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Distância Z de suporte" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Tipo de linhas de suporte preferidas" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Estrutura suporte preferida" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Velocidade da ventoinha de revestimento suportada" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Superfície" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Energia da superfície" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Modo de superfície" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "A tendência de aderência à superfície." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Energia da superfície." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Trocar a ordem de impressão da linha mais interior e da segunda linha mais interior da aba. Isto permite facilitar a remoção da aba." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Altera para os volumes de interceção de malha que pertencerão a cada camada, para que as malhas sobrepostas fiquem entrelaçadas. Desativar esta definição poderá fazer com que uma das malhas obtenha todo o volume na sobreposição, sendo removido das outras malhas." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Distância horizontal pretendida entre duas camadas adjacentes. Reduzir o valor desta definição faz com que camadas mais finas sejam utilizadas para juntar mais os contornos das camadas." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada X da posição próxima do local onde se situa a peça pela qual iniciar a impressão de cada camada." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada X da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada X da posição onde o é feita a preparação do nozzle no inicio da impressão." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "A coordenada Y da posição do local onde se situa a peça pela qual iniciar a impressão de cada camada." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "A coordenada Y da posição próxima do local onde a impressão de cada parte de uma camada será iniciada." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Y da posição onde o é feita a preparação do nozzle no inicio da impressão." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "A coordenada Z da posição onde fazer a preparação do nozzle no inicio da impressão." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "A aceleração durante a impressão da camada inicial." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "A aceleração da camada inicial." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A aceleração dos movimentos de deslocação na camada inicial." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "A aceleração dos movimentos de deslocação na camada inicial." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "A aceleração com que todas as paredes interiores são impressas." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "A aceleração com que o enchimento é impresso." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "A aceleração com a qual se realiza o processo de engomar." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "A aceleração com que é efetuada a impressão." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "A aceleração com que a camada inferior (base) do raft é impressa." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "A aceleração com que os pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a aderência do suporte na parte superior do modelo." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "A aceleração com que o enchimento do suporte é impresso." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "A aceleração com que a camada do meio do raft é impressa." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "A aceleração com que as paredes exteriores são impressas." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "A aceleração com que a torre de preparação é impressa." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "A aceleração com que o raft é impresso." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tectos e pisos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "A aceleração com que os tectos de suporte são impressos. Imprimi-los com uma aceleração inferior pode melhorar a qualidade das saliências." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "A aceleração com que o contorno e a aba são impressos. Normalmente, isto é efetuado com a aceleração da camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba com uma aceleração diferente." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "A aceleração com que a estrutura de suporte é impressa." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "A aceleração com que as camadas superiores do raft são impressas." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "A aceleração com a qual as paredes internas da superfície superior são impressas." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "A aceleração com a qual as paredes mais externas da superfície superior são impressas." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "A aceleração com que as paredes são impressas." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "A aceleração com que as camadas de revestimento da superfície superior são impressas." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "A aceleração com que as camadas superiores/inferiores são impressas." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "A aceleração com que os movimentos de deslocação são efetuados." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "A quantidade de material, em relação a uma linha de revestimento normal, a ser extrudido durante o processo de engomar. Manter o nozzle cheio ajuda a preencher algumas das fissuras da superfície superior, mas cheio de mais, provoca sobre-extrusão e pequenos pontos ou \"bolhas\" na parte lateral da superfície." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A percentagem de sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes sejam ligadas firmemente ao enchimento." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A distância em milímetros da sobreposição entre o enchimento e as paredes. Uma ligeira sobreposição permite que as paredes se unam firmemente ao enchimento." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "A quantidade de retração ao mudar de extrusor. Defina como 0 para não obter qualquer retração. Normalmente, esta deve ser a mesma que o comprimento da zona de aquecimento." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "O ângulo entre o plano horizontal e a parte cónica imediatamente acima da ponta do nozzle." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "O ângulo do topo de uma torre. Um valor mais elevado resulta em tectos de torre pontiagudos, enquanto um valor mais reduzido resulta em tectos de torre achatados." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "O ângulo da saliência das paredes exteriores criadas para o molde. 0° irá tornar o invólucro exterior do molde vertical, enquanto 90° fará com que o exterior do modelo siga o contorno do mesmo." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "O ângulo do diâmetro dos ramos conforme estes ficam progressivamente mais grossos quanto mais perto estiverem da base. Um ângulo de 0º faz com que os ramos tenham um espessura constante em todo o seu comprimento. Um pequeno ângulo pode aumentar a estabilidade dos suporte tipo árvore." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "O ângulo da inclinação do suporte cónico. 0 graus é vertical e 90 graus é horizontal. Ângulos mais reduzidos tornam o suporte mais robusto, mas consomem mais material. Ângulos negativos tornam a base do suporte mais larga do que a parte superior." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "A densidade média dos pontos introduzidos em cada polígono numa camada. Observe que os pontos originais do polígono são eliminados, pelo que uma densidade baixa resulta numa redução da resolução." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "A distância média entre os pontos aleatórios introduzidos em cada segmento de linha. Observe que os pontos originais do polígono são eliminados, pelo que uma suavidade elevada resulta numa redução da resolução. Este valor deve ser superior a metade da Espessura do revestimento difuso." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "A marca do material utilizado." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "A aceleração predefinida do movimento da cabeça de impressão." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "A temperatura predefinida utilizada para a impressão. Esta deve ser a temperatura \"base\" de um material. Todas as outras temperaturas de impressão devem ser baseadas neste valor" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "A temperatura predefinida utilizada para a base de construção aquecida. Esta deve ser a temperatura \"base\" de uma base de construção. Todas as outras temperaturas de impressão devem ser baseadas neste valor" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "A densidade dos pisos da estrutura de suporte. Um valor mais elevado resulta numa melhor aderência do suporte na parte superior do modelo." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "A densidade dos tectos da estrutura de suporte. Um valor mais elevado resulta em melhores saliências, embora os suportes sejam mais difíceis de remover." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da segunda camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "A densidade da terceira camada do revestimento de Bridge. Valores inferiores a 100 irão aumentar as folgas entre as linhas revestimento." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "A profundidade (direção Y) da área de impressão." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "O diâmetro de uma torre especial." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "O diâmetro dos ramos mais finos dos suportes tipo árvore. Ramos mais grossos são mais robustos. Os ramos serão progressivamente mais grossos do que este diâmetro quanto mais perto estiverem da base." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "O diâmetro do topo da ponta dos ramos do suporte de árvore." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "O diâmetro da roda que conduz o material pelo alimentador." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "O diâmetro dos ramos mais amplos do suporte de árvores. Um ramo mais grosso é mais resistente; um ramo mais fino ocupa menos espaço na base de construção." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "A diferença de espessura da camada seguinte em comparação com a anterior." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "A distância entre as linhas de engomar." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "A distância entre o nozzle e as peças já impressas ao evitá-las durante os movimentos de deslocação." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre linhas na camada inferior (base) do raft. Um maior espaçamento facilita a remoção do raft da base de construção." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "A distância entre linhas na camada do meio do raft. O espaçamento entre as linhas da camada do meio, deve ser grande, mas ao mesmo tempo suficientemente denso para conseguir suportar as camadas superiores do raft." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "A distância entre linhas nas camadas superiores do raft. O espaçamento deve ser, igual ao Diâmetro da Linha, para que a superfície seja uniforme." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "A distância entre as linhas da jangada para a única camada da jangada da torre de primagem. Um espaçamento largo facilita a remoção da jangada da placa de construção." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "A distância do limite entre modelos para gerar estrutura de interligação medida em células. Um pequeno número de células resultará numa fraca adesão." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A distância desde o modelo até à linha mais exterior da Aba. Uma Aba mais larga melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "A distância do lado de fora de um modelo onde estruturas interligadas não serão geradas, medidas nas células." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "A distância, a partir da ponta do nozzle, na qual o calor do nozzle é transferido para o filamento." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos inferiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência do revestimento às paredes da camada anterior. Valores mais baixos reduzem a quantidade de material utilizado." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos para dentro do enchimento. Valores mais elevados melhoram tanto a fixação do revestimento ao padrão geométrico de enchimento, assim como a aderência ao revestimento das paredes de camadas adjacentes. Valores mais baixos reduzem a quantidade de material utilizado." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "A distância da expansão dos revestimentos superiores para dentro do enchimento. Valores mais elevados melhoram, tanto, a fixação do revestimento ao padrão geométrico do enchimento, assim como a aderência ao revestimento das paredes da camada seguinte. Valores mais baixos reduzem a quantidade de material utilizado." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "A distância de deslocação da cabeça para trás e para a frente pela escova." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "As extremidades das linhas de enchimento são encurtadas para poupar material. Esta definição é o ângulo da saliência das extremidades destas linhas." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "A velocidade adicional a que o nozzle arrefece durante a extrusão. É utilizado o mesmo valor para indicar a velocidade de aquecimento perdida ao aquecer durante a extrusão." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a primeira camada de enchimento dos suportes. Definição usada com múltiplos extrusores." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir a primeira camada do raft. Isto é utilizado em impressoras com extrusores múltiplos." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os pisos do suporte. Definição usada com múltiplos extrusores." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o enchimento dos suportes. Definição usada com múltiplos extrusores." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir a camada do meio do raft. Isto é utilizado em impressoras com extrusores múltiplos." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os tectos e pisos do suporte. Definição usada com múltiplos extrusores." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os tectos do suporte. Definição usada com múltiplos extrusores." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir o contorno ou a aba. Isto é utilizado em impressoras com extrusores múltiplos." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o Contorno/Aba/Raft. Definição usada com múltiplos extrusores." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir os suportes. Definição usada com múltiplos extrusores." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "O núcleo de extrusão a utilizar para imprimir as camadas superiores do raft. Isto é utilizado em impressoras com extrusores múltiplos." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir o enchimento. Definição usada com múltiplos extrusores." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as paredes interiores. Definição usada com múltiplos extrusores." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a parede exterior. Definição usada com múltiplos extrusores." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as camadas superiores e inferiores da impressão. Definição usada com múltiplos extrusores." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir a(s) camada(s) de revestimento das superfícies mais superiores. Definição usada com múltiplos extrusores." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "O núcleo de extrusão utilizado para imprimir as paredes. Definição usada com múltiplos extrusores." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "A velocidade do ventilador da camada inferior do raft." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "A velocidade do ventilador da camada do meio do raft." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "A velocidade do ventilador do raft." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "A velocidade do ventilador das camadas superiores do raft." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente no enchimento da impressão." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "A localização de uma imagem em que os valores de luminosidade desta determinam a densidade mínima na posição correspondente nos suportes." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "As primeiras camadas são impressas mais lentamente do que o resto do modelo para obter uma melhor aderência à base de construção e melhorar a taxa de sucesso geral das impressões. A velocidade é aumentada gradualmente nessas camadas." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "A espaço entre a camada final do raft e a primeira camada do modelo. Apenas a primeira camada do modelo é elevada por este valor, para assim reduzir a união entre o raft e o modelo. Isto facilita a remoção do raft." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "A altura (direção Z) da área de impressão." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "A altura acima das partes horizontais do modelo em que deve imprimir o molde." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura em que os ventiladores giram à velocidade normal. Nas camadas anteriores, a velocidade do ventilador aumenta gradualmente da Velocidade Inicial até à Velocidade Normal do ventilador." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "A diferença de altura entre a ponta do nozzle e o sistema de pórtico (eixos X e Y)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "A diferença de altura entre a ponta do nozzle e o extremo inferior da cabeça de impressão." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "A diferença de altura ao efetuar um salto Z após uma mudança do extrusor." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "A diferença de altura ao efetuar um salto Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "A espessura (altura) de cada camada em milímetros. Espessuras maiores produzem impressões rápidas com baixa resolução, e, espessuras pequenas, produzem impressões mais lentas mas com uma maior resolução/qualidade." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "A altura de enchimento de uma determinada densidade antes de mudar para metade da densidade." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "A altura do enchimento de suporte de uma determinada densidade antes de mudar para metade da densidade." + +msgctxt "interlocking_beam_layer_count description" +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 "A altura das vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." + +msgctxt "interlocking_orientation description" +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 "A altura dos vigas da estrutura de interligação, medida em número de camadas. Menos camadas são mais fortes, mas mais propensas a defeitos." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "A espessura da camada inicial em milímetros. Uma camada inicial mais espessa facilita a aderência à base de construção." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "A altura da base da torre de primagem. Aumentar esse valor resultará em uma torre de primagem mais robusta, pois a base será mais larga. Se esta configuração for muito baixa, a torre de primagem não terá uma base sólida." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "A altura dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis. Definir como zero para desativar o comportamento semelhante a uma escada." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "A distância horizontal entre a primeira linha da aba e o contorno da primeira camada da impressão. Uma pequena folga pode tornar a aba mais fácil de remover, e, ao mesmo tempo, proporcionar as vantagens térmicas." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "A distância horizontal entre o contorno e o perímetro exterior da primeira camada da impressão." +"Esta é a distância mínima. Linhas múltiplas de contorno serão impressas para o exterior." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "As linhas de enchimento são simplificadas para poupar tempo de impressão. Este é o ângulo máximo permitido de saliência ao longo da linha de enchimento." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "O padrão geométrico de enchimento é deslocado por esta distância ao longo do eixo Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "O diâmetro interno do nozzle. Altere esta definição quando utilizar um nozzle com um tamanho não convencional." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "O jerk com que a camada da base do raft é impressa." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "O jerk com que a camada do meio do raft é impressa." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "O jerk com que o raft é impresso." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "O jerk com que as camadas superiores do raft são impressas." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento inferior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento inferior nas superfícies inclinadas do modelo." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior/inferior nas superfícies inclinadas do modelo." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "A largura máxima das áreas do revestimento superior a serem removidas. Todas as áreas de revestimento mais pequenas do que este valor irão desaparecer. Isto pode ajudar a limitar a quantidade de tempo e material gastos na impressão do revestimento superior nas superfícies inclinadas do modelo." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "A camada na qual os ventiladores giram à velocidade normal do ventilador. Se a Altura para Velocidade Normal do ventilador estiver definida , este valor é calculado e arredondado para um número inteiro." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "O tempo de camada que define o limiar entre a velocidade normal e a velocidade máxima do ventilador. As camadas que são impressas mais lentamente utilizam a velocidade normal do ventilador. Para camadas mais rápidas, a velocidade do ventilador aumenta gradualmente até à velocidade máxima." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "O comprimento do material retraído durante um movimento de retração." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "O fator de magnitude usado para a inclinação da base da torre de primagem. Se você aumentar este valor, a base ficará mais fina. Se diminuir, a base ficará mais espessa." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "O material da base de construção instalada na impressora." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "A diferença máxima de espessura permitida em relação ao valor base definido em Espessura das Camadas." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "O ângulo máximo que uma peça da proteção contra escorrimentos poderá ter. 0 graus é vertical e 90 graus é horizontal. Um ângulo menor resulta em menos falhas na proteção contra escorrimentos, mas mais material." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "O ângulo máximo das saliências após se terem tornado imprimíveis. Com um valor de 0°, todas as saliências são substituídas por um modelo ligado à base de construção e, com um valor de 90°, o modelo não será alterado de forma alguma." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "O ângulo máximo dos ramos enquanto estes crescem ao redor do modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Use um ângulo maior para poderem ter um maior alcance." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "A área máxima de um buraco na base do modelo antes que seja removido por Tornar Saliência Imprimível. Buracos mais pequenos do que este valor serão mantidos. Um valor de 0 mm² preencherá todos os buracos na base do modelo." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "O desvio máximo permitido ao reduzir a resolução da definição de Resolução máxima. Se aumentar esta definição, a impressão será menos precisa, mas o G-code será menor. O Desvio máximo é um limite para a Resolução máxima, pelo que, se estiverem em conflito, o Desvio máximo é sempre considerado verdadeiro." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "A distância máxima entre as estruturas de suporte nas direções X/Y. Quando a distância entre as estruturas de suporte for menor do que este valor, as estruturas fundem-se numa só." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "A distância máxima em mm de deslocação do filamento para compensar alterações na taxa de fluxo." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "O desvio máximo da área de extrusão que é permitido quando se faz a remoção dos pontos intermédios de uma linha recta. Um ponto intermédio pode servir de ponto de alteração do diâmetro numa linha recta longa. Por isso, se for removido, fará com que a linha tenha um diâmetro uniforme e, como resultado, vai perder (ou ganhar) um pouco de área de extrusão. Se aumentar este valor, poderá notar um ligeiro excesso (ou defeito) de extrusão entre paredes paralelas retas, uma vez que os pontos de alteração dos diâmetros mais intermédios poderão ser removidos. A sua impressão será menos precisa, mas o G-code será mais pequeno." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "A mudança de velocidade instantânea máxima durante a impressão da camada inicial." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "A velocidade instantânea máxima num movimento brusco da cabeça de impressão." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "A mudança de velocidade instantânea máxima ao engomar." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual todas as paredes interiores são impressas." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento é impresso." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os pisos de suporte são impressos." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o enchimento do suporte é impresso." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as paredes exteriores são impressas." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual a torre de preparação é impressa." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os tectos e pisos de suporte são impressos." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual os tectos de suporte são impressos." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual o contorno e a aba são impressos." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "A mudança de velocidade instantânea máxima com a qual a estrutura de suporte é impressa." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes mais externas da superfície superior são impressas." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "A mudança máxima de velocidade instantânea com a qual as paredes internas da superfície superior são impressas." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as paredes são impressas." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as camadas de revestimento da superfície superior são impressas." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "A mudança de velocidade instantânea máxima com a qual as camadas superiores/inferiores são impressas." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "A mudança de velocidade instantânea máxima com a qual os movimentos de deslocação são impressos." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "O comprimento máximo dos ramos que podem ser imprimidos sobre o ar." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "A velocidade máxima do motor da direção X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "A velocidade máxima do motor da direção Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "A velocidade máxima do motor da direção Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "A velocidade máxima do filamento." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "A largura máxima dos degraus da parte inferior, semelhante a uma escada, do suporte apoiado sobre o modelo. Um valor pequeno dificulta a remoção do suporte, mas valores demasiado grandes podem resultar em estruturas de suporte instáveis." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "A distância mínima entre o exterior do molde e o exterior do modelo." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "A velocidade mínima de movimento da cabeça de impressão." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "A temperatura mínima ao aquecer até à Temperatura de impressão à qual a impressão já pode começar." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "O tempo mínimo durante o qual um extrusor tem de estar inativo antes de o nozzle ser arrefecido. Apenas é permitido começar a arrefecer até à temperatura de Modo de Espera quando um extrusor não for utilizado por um período de tempo superior a este." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "O ângulo mínimo das saliências internas ao qual é adicionado enchimento. Com um valor de 0° os objetos são totalmente preenchidos com enchimento, e com um valor de 90° não é produzido qualquer enchimento." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "O ângulo mínimo das saliências ao qual é adicionado suportes. Com um valor de 0°, todas as saliências são suportadas e um valor de 90° não irá gerar qualquer suporte." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "A distância mínima de deslocação necessária para que ocorra uma retração. Isto ajuda a obter menos retrações numa área reduzida." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "O comprimento mínimo do Contorno ou da Aba. Se este comprimento não for alcançado pelo conjunto de todas as linhas do Contorno ou da Aba, serão acrescentadas mais linhas ao Contorno ou à Aba até o comprimento mínimo ser alcançado. Nota: Se o valor do Número de Linhas for 0, esta definição é ignorada." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Diâmetro mínimo da linha para as paredes poligonais de enchimento de folgas das linhas do meio. Esta definição determina a espessura do modelo em que passamos da impressão de duas linhas da parede para a impressão de duas paredes exteriores e de uma única parede central no meio. Um diâmetro mínimo da parede ímpar maior provoca um maior diâmetro máximo de linha da parede par. O diâmetro máximo de linha da parede ímpar é calculado como 2 * diâmetro mínimo de linha da parede par." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "O diâmetro mínimo da linha para as paredes poligonais normais. Esta definição determina a espessura do modelo em que passamos da impressão de uma única linha fina de parede para a impressão de duas linhas de parede. Um maior diâmetro mínimo de linha da parede Par causa um maior diâmetro máximo de linha da parede Ímpar. O diâmetro máximo de linha da parede Par é calculado como o diâmetro da linha da parede externa + 0,5 * diâmetro mínimo da linha da parede Ímpar." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "A velocidade mínima de impressão, apesar do abrandamento devido ao tempo mínimo por camada. Se a impressora abrandar demasiado, a pressão no nozzle será demasiado baixa, o que resultará numa má qualidade de impressão." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "O tamanho mínimo de um segmento após o seccionamento. Se aumentar este valor, a malha terá uma resolução menor. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code e irá aumentar a velocidade de seccionamento ao remover os detalhes da malha que não podem ser processados." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "O tamanho mínimo de um segmento de deslocação após o seccionamento. Se aumentar este valor, o movimento de deslocação nos cantos será menos suave. Isto poderá permitir que a impressora acompanhe a velocidade que tem para processar o G-code, mas pode reduzir a precisão do movimento ao evitar as peças já impressas." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "O declive mínimo da área para o efeito de degrau de escada. Valores baixos fazem com que seja mais fácil remover o suporte em declives com pouca profundidade, mas valores muito baixos podem proporcionar resultados verdadeiramente contraintuitivos noutras partes do modelo." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo gasto numa camada. Isto força a impressora a abrandar para que, no mínimo, o tempo aqui definido seja gasto numa camada. Isto permite que o material impresso arrefeça devidamente antes de imprimir a camada seguinte. Ainda assim, as camadas podem demorar menos do que o tempo mínimo por camada se a opção Elevar Cabeça estiver desativada e se a Velocidade Mínima for desrespeitada." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "O volume mínimo para cada camada da torre de preparação para preparar material suficiente." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "O diâmetro máximo que um ramo, que tem de se apoiar no modelo, pode ter ao unir-se com os ramos que podem alcançar a placa de construção. Aumentar este valor reduz o tempo de impressão, mas aumenta a área de suporte que assenta no modelo" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "O nome do seu modelo de impressora 3D." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "O ID do nozzle de um núcleo de extrusão, tal como \"AA 0.4\" e \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "O nozzle evita as áreas já impressas durante a deslocação. Esta opção só está disponível quando o combing está ativado." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "O nozzle evita os suportes já impressos durante a deslocação. Esta opção só está disponível quando o Combing está ativado." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores. Quando calculado através da Espessura Inferior, este valor é arredondado para um número inteiro." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "O número de contornos a imprimir em torno do padrão linear na camada base do raft." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas centrais da plataforma." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear nas camadas superiores da plataforma." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "O número de contornos a imprimir à volta do padrão linear da plataforma." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "O número de camadas de enchimento que suportam as arestas do revestimento." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "O número de camadas inferiores iniciais, a partir da base de construção no sentido ascendente. Quando calculado pela espessura inferior, este valor é arredondado para um número inteiro." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "O número de camadas entre a base e a superfície do raft. Estas incluem a espessura principal do raft. Aumentar este valor cria um raft mais espesso e mais resistente." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "O número de linhas utilizado para uma aba. Um maior número de linhas da aba melhora a aderência à base de construção, mas também reduz a área de impressão efetiva." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "O número de linhas utilizado para a aba do suporte. Uma aba com mais linhas melhora a aderência à base de construção à custa de algum material adicional." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "O número de camadas superiores impressas em cima da camada do meio do raft. Estas são as camadas, totalmente preenchidas, onde o modelo assenta. Duas camadas resultam numa superfície superior mais uniforme do que só uma camada." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "O número de camadas superiores. Quando calculado através da Espessura Superior, este valor é arredondado para um número inteiro." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "O número de camadas de revestimento da superfície superior. Por norma, uma só camada superior é suficiente para gerar superfícies superiores de maior qualidade." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes que envolvem o enchimento de suporte. Acrescentar uma parede pode tornar a impressão do suporte mais fiável e pode suportar melhor as saliências, mas aumenta o tempo de impressão assim como a quantidade de material utilizado." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais cercar o piso da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais envolver o telhado da interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "O número de paredes com as quais envolver a interface de suporte. Adicionar uma parede pode tornar a impressão de suporte mais fiável e pode suportar as saliências melhor, mas aumenta o tempo de impressão e o material usado." + +msgctxt "wall_distribution_count description" +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 "O número de paredes, contadas a partir do centro, sobre as quais a variação tem de ser distribuída. Valores mais baixos significam que as paredes exteriores não mudam de diâmetro." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "O número de paredes. Quando calculado através da espessura das paredes, este valor é arredondado para um número inteiro." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "O diâmetro externo da ponta do nozzle." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "O padrão do material de enchimento da impressão. A linha e o enchimento em ziguezague mudam de direção em camadas alternativas, o que reduz o custo do material. Os padrões de grelha, triângulo, tri-hexágono, cubo, octeto, quarto cúbico, cruz e concêntrico são totalmente impressos em cada camada. Os enchimentos gyroid, cúbico, quarto cúbico e octeto mudam em cada camada para proporcionar uma distribuição mais uniforme da resistência em cada direção. O enchimento relâmpago tenta minimizar o enchimento, ao suportar apenas a parte superior do objeto." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "O padrão geométrico das estruturas de suporte da impressão. As diferentes opções disponíveis resultam num suporte robusto ou de fácil remoção." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "O padrão geométrico das camadas de revestimento da superfície superior." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "O padrão geométrico das camadas superiores / inferiores." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "O padrão geométrico da base da peça na camada inicial." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "O padrão geométrico a utilizar para engomar as superfícies superiores." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "O padrão geométrico com que os pisos do suporte são impressos." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "O padrão geométrico com que a interface do suporte com o modelo, é impressa." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "O padrão geométrico com que os tectos do suporte são impressos." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "A posição próxima do local onde a impressão de cada parte de uma camada será iniciada." + +msgctxt "support_tree_angle_slow description" +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 "O ângulo preferido dos ramos, quando estes não têm de evitar o modelo. Utilize um ângulo menor para os tornar mais verticais e mais estáveis. Utilize um ângulo maior para que os ramos se unam mais rapidamente." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "O posicionamento preferencial das estruturas de suporte. Se as estruturas não puderem ser posicionadas no local preferido, serão posicionadas noutro local, mesmo que isso signifique assentá-las sobre parte do modelo." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "A mudança de velocidade instantânea máxima de impressão para a camada inicial." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "A forma da base de construção sem ter em consideração as áreas onde não é possível imprimir." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "A forma da cabeça de impressão. Estas coordenadas são relativas à posição da cabeça de impressão, que normalmente é a posição do primeiro extrusor. As coordenadas à esquerda e à frente da cabeça de impressão têm de ser valores negativos." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "O tamanho das bolsas em cruzamentos de quatro vias no padrão de cruz 3D em alturas onde o padrão está em contacto consigo próprio." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "O menor volume que um caminho de extrusão deve ter antes de permitir a desaceleração. Para caminhos de extrusão mais curtos, é acumulada menos pressão no tubo Bowden e, como tal, o volume de desaceleração adota uma escala linear. Este valor deve sempre ser superior ao Volume de desaceleração." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "A velocidade média (°C/s) a que o nozzle é arrefecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "A velocidade média (°C/s) a que o nozzle é aquecido, média calculada com base nos valores das temperaturas normais de impressão, e a temperatura em modo de espera." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "A velocidade a que todas as paredes interiores são impressas. Imprimir a parede interior mais rapidamente do que a parede exterior irá reduzir o tempo de impressão. O resultado é melhor quando este valor é entre a velocidade de parede exterior e a velocidade de enchimento." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "A velocidade a que as regiões do revestimento de Bridge são impressas." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "A velocidade a que o enchimento é impresso." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "A velocidade a que é efetuada a impressão." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada inferior (base) do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "A velocidade a que as paredes de Bridge são impressas." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "A velocidade a que os ventiladores giram ao iniciar a impressão. Nas camadas subsequentes, a velocidade do ventilador aumenta gradualmente até à camada correspondente à Velocidade normal do ventilador em altura." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "A velocidade a que os ventiladores giram antes de atingir o limiar. Quando uma camada é impressa mais rapidamente do que o limiar, a velocidade do ventilador tende gradualmente a aproximar-se da velocidade máxima." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "A velocidade a que os ventiladores giram no tempo mínimo de camada. A velocidade do ventilador aumenta gradualmente entre a velocidade normal do ventilador e a velocidade máxima do ventilador quando o limiar é alcançado." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "A velocidade a que o filamento é preparado durante um movimento de retração." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "A velocidade a que o filamento é preparado durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "A velocidade a que o filamento é empurrado após uma retração de substituição do nozzle." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "A velocidade a que o filamento é retraído e preparado durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "A velocidade a que o filamento é retraído durante uma recolha de substituição do nozzle." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "A velocidade a que o filamento é retraído durante um movimento de retração." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "A velocidade a que o filamento é retraído durante um movimento de retração de limpeza." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "A velocidade a que o filamento é retraído. Uma maior velocidade de retração funciona melhor, mas uma velocidade de retração muito elevada pode resultar na trituração do filamento." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "A velocidade a que o piso de suporte é impresso. Imprimi-lo a uma velocidade baixa pode melhorar a aderência do suporte na parte superior do modelo." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "A velocidade a que o enchimento do suporte é impresso. Imprimir o enchimento a velocidades baixas melhora a estabilidade." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "A velocidade a que a camada do meio do raft é impressa. Esta deve ser impressa bastante devagar, uma vez que o volume de material que vai sair pelo nozzle é bastante elevado." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "A velocidade a que as paredes exteriores são impressas. Imprimir a parede exterior a uma velocidade mais reduzida melhora a qualidade final do revestimento. No entanto, a existência de uma grande diferença entre a velocidade da parede interior e a velocidade de parede exterior afetará a qualidade de uma forma negativa." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "A velocidade à qual a torre de preparação é impressa. Imprimir a torre de preparação mais lentamente pode torná-la mais estável quando a aderência entre os diferentes filamentos é insuficiente." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "A velocidade de rotação dos ventiladores de arrefecimento da impressão." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "A velocidade a que o raft é impresso." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade a que os tectos e os pisos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "A velocidade a que os tectos de suporte são impressos. Imprimi-los a velocidades baixas pode melhorar a qualidade das saliências." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "A velocidade a que o contorno e a aba são impressos. Geralmente, isto é efetuado à velocidade de camada inicial, mas, por vezes, pode preferir imprimir o contorno ou a aba a uma velocidade diferente." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "A velocidade a que a estrutura de suporte é impressa. Imprimir o suporte a velocidades elevadas pode reduzir consideravelmente o tempo de impressão. A qualidade da superfície da estrutura de suporte não é importante, uma vez que esta é removida após a impressão." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "A velocidade a que as camadas superiores do raft são impressas. Estas devem ser impressas um pouco mais devagar, para que o nozzle possa uniformizar lentamente as linhas adjacentes da superfície." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "A velocidade com que as paredes internas da superfície superior são impressas." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "A velocidade com que as paredes mais externas da superfície superior são impressas." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "A velocidade a que o movimento Z vertical é efetuado para Saltos Z. Este valor é geralmente inferior à velocidade de impressão, uma vez que é mais difícil mover a base de construção ou o pórtico da máquina." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "A velocidade a que as paredes são impressas." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "A velocidade da passagem do nozzle (engomar) sobre a superfície superior." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "A velocidade de retração do filamento para separá-lo de forma regular." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "A velocidade a que as camadas de revestimento da superfície superior são impressas." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "A velocidade a que as camadas superiores/inferiores são impressas." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "A velocidade a que os movimentos de deslocação são efetuados." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "A velocidade de movimento durante a desaceleração, relativa à velocidade do caminho de extrusão. É recomendado um valor ligeiramente abaixo de 100%, uma vez que durante o movimento de desaceleração, a pressão no tubo Bowden diminui." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "A velocidade da camada inicial. Recomenda-se um valor baixo para melhorar a aderência à base de construção. Não afeta as estruturas de aderência da base de construção propriamente ditas, como aba e raft." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "A velocidade de impressão da camada inicial. É recomendado um valor inferior para melhorar a aderência à base de construção." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "A velocidade dos movimentos de deslocação na camada inicial. É recomendado um valor inferior para evitar que as peças anteriormente impressas sejam separadas da base de construção. O valor desta definição pode ser automaticamente calculado a partir da proporção entre a Velocidade de deslocação e a Velocidade de impressão." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "A temperatura a que o filamento se quebra para uma separação regular." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "A temperatura do ambiente para a impressão. Se este valor for 0, a temperatura do volume de construção não será ajustada." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "A temperatura do nozzle quando outro nozzle está a ser utilizado para a impressão." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "A temperatura à qual o arrefecimento é iniciado imediatamente antes do final da impressão." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "A temperatura usada para imprimir a primeira camada." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "A temperatura utilizada para a impressão." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "A temperatura utilizada para a base de construção aquecida na primeira camada. Se este valor for 0, a temperatura da base de construção não é aquecida durante a primeira camada." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "A temperatura utilizada na base de construção aquecida. Se este valor for 0, a temperatura da base de construção não é aquecida." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "A temperatura utilizada para purgar o material deve ser aproximadamente igual à temperatura de impressão mais alta possível." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "A espessura total das camadas inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas inferiores." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "A espessura do enchimento adicional que suporta as arestas do revestimento." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "A espessura da interface de suporte onde esta entra em contacto com o modelo na parte inferior ou superior." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "A espessura dos pisos de suporte. Isto controla o número de camadas densas que são impressas por cima de locais de um modelo no qual o suporte é apoiado." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "A espessura dos tectos de suporte. Isto controla a quantidade de camadas densas na parte superior do suporte na qual o modelo é apoiado." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "A espessura total das camadas superiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "A espessura total das camadas superiores e inferiores na impressão. Este valor, dividido pela Espessura das Camadas, define o número de camadas superiores / inferiores." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "A espessura das paredes na direção horizontal. Este valor, dividido pelo diâmetro da linha de parede, define o número de paredes." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de enchimento. Este valor deve ser sempre um múltiplo da Espessura das Camadas, ou será arredondado." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "A espessura por camada de material de enchimento de suporte. Este valor deve ser sempre um múltiplo do valor da espessura das camadas. Caso contrário, será arredondado." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "O tipo de G-code a ser gerado." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "O tipo de material utilizado." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "O volume que de outra forma iria escorrer. Geralmente, este valor deve ser próximo ao diâmetro cúbico do nozzle." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "A largura (direção X) da área de impressão." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "A largura da aba para imprimir na parte por baixo do suporte. Uma aba mais larga melhora a aderência à base de construção à custa de algum material adicional." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "A largura das vigas da estrutura de interligação." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "A largura da aba/base da torre de primagem. Uma base maior melhora a aderência à placa de construção, mas também reduz a área efetiva de impressão." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "A largura da torre de preparação." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "O diâmetro dentro da qual deve ser produzida vibração. É recomendado mantê-la abaixo do diâmetro da parede exterior, uma vez que as paredes interiores não são alteradas." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "O intervalo no qual o número máximo de retrações é aplicado. Este valor deve ser aproximadamente o mesmo que o da Distância de Retração, de forma a limitar, efectivamente, o número de vezes que uma retração acontece na mesma área do filamento." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "A coordenada X da posição da torre de preparação." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "A coordenada Y da posição da torre de preparação." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Existem malhas de suporte presentes no cenário. Esta definição é controlada pelo Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Isto controla a distância que o extrusor deve desacelerar imediatamente antes do início de uma parede de Bridge. Desacelerar antes do início de Bridge pode reduzir a pressão no nozzle e poderá produzir um vão mais liso." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno da base da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno do centro da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta definição controla o nível do arredondamento dos cantos internos do contorno do raft. Os cantos internos são arredondados para um semicírculo com um raio igual ao valor aqui fornecido. Esta definição também remove buracos no contorno do raft que sejam menores que esse semicírculo." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Esta configuração controla o quanto os ângulos internos no contorno do topo da plataforma são arredondados. Os ângulos internos são arredondados até formar um semi-círculo com um raio igual ao valor apresentado aqui. Esta configuração também remove buracos no contorno da plataforma mais pequenos do que tal círculo." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Esta definição limita o número de retrações que ocorrem no intervalo mínimo de distância de extrusão. As retrações adicionais dentro deste intervalo serão ignoradas. Isto evita a retração repetida no mesmo filamento, uma vez que tal pode achatar o filamento e causar problemas de trituração." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Isto irá criar uma parede em torno do modelo, que retém o ar (quente) e protege contra correntes de ar externas. Esta opção é especialmente útil para materiais que se deformam com facilidade." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Diâmetro da Ponta do Ramo" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção X/Y (horizontalmente)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Para compensar a contração do material à medida que arrefece, o modelo será dimensionado com este fator na direção Z (verticalmente)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Para compensar a redução do material quando arrefece, o modelo vai ser dimensionado com este fator." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Camadas Superiores" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Distância Expansão Revestimento Superior" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Largura Remoção Revestimento Superior" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Aceleração da parede interna da superfície superior" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Jerk da Parede Exterior da Superfície Superior" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Velocidade da parede interna da superfície superior" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Fluxo da parede interna da superfície superior" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Aceleração da parede externa da superfície superior" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Fluxo da parede mais externa da superfície superior" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Jerk das Paredes Interiores da Superfície Superior" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Velocidade da parede mais externa da superfície superior" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Aceleração Revestimento Superior" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Extrusor Revestimento Superior" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Fluxo de Revestimento da Superfície Superior" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Jerk Revestimento Superior" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Camadas Revestimento Superior" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Direções Linha Revestimento Superior" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Diâmetro Linha Revestimento Superior" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Padrão Revestimento Superior" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Velocidade Revestimento Superior" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Espessura Superior" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "O revestimento superior/inferior não será expandido, quando as superfícies superiores e/ou inferiores do objeto tiverem um ângulo maior que este valor. Isto evita a expansão das pequenas áreas de revestimento que são criadas quando a superfície do modelo tem uma inclinação quase vertical. Um ângulo de 0° é horizontal e fará com que nenhum revestimento seja expandido, enquanto um ângulo de 90° é vertical e fará com que todo o revestimento seja expandido." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Superior / Inferior" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Superior / Inferior" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Aceleração superior/inferior" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Extrusor Superior / Inferior" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Fluxo Superior/Inferior" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Jerk Superior/Inferior" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Direções Linha Superior / Inferior" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Diâmetro Linha Superior / Inferior" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Padrão Superior / Inferior" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Velocidade Superior/Inferior" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Espessura Superior / Inferior" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "A Tocar na base de construção" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Diâmetro da torre" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Ângulo do tecto da torre" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Matriz de transformação a ser aplicada ao modelo quando abrir o ficheiro." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Ajusta a colocação das estruturas de suporte. A colocação pode ser definida para tocar na base de construção ou em todo o lado. Quando definida para tocar em todo o lado, as estruturas de suporte também serão impressas no modelo." +msgctxt "travel label" +msgid "Travel" +msgstr "Deslocação" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Aceleração de deslocação" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Distância para evitar peças durante a deslocação" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Jerk de Deslocação" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Velocidade de deslocação" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Tratar o modelo como um volume, apenas como uma superfície ou como volumes com superfícies soltas. O modo de impressão \"Normal\" imprime apenas volumes fechados. O modo \"Superfície\" imprime uma única parede que acompanha a superfície do objecto sem enchimento ou revestimento superior/inferior. O modo \"Ambos\" imprime volumes fechados como \"Normal\" e quaisquer polígonos soltos como superfícies." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Árvore" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Tri-Hexágono" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Triângulos" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Diâmetro do Tronco" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Unir Volumes Sobrepostos" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Paredes sem suporte com comprimento menor que este valor serão impressas utilizando as definições de parede normais. Paredes sem suporte mais longas serão impressas utilizando as definições da parede de Bridge." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Utilizar camadas adaptáveis" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Utilizar torres" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Utilizar uma taxa de aceleração separada para movimentos de viagem. Se desativados, os movimentos de viagem utilizarão o valor da aceleração da linha impressa no seu destino." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Utilizar uma taxa de jerk separada para movimentos de viagem. Se for desativado, os movimentos de viagem utilizarão o valor do jerk da linha impressa no seu destino." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Utilizar a extrusão relativa em vez da extrusão absoluta. A utilização de passos-E relativos facilita o pós-processamento do G-code. Contudo, isto não é compatível com todas as impressoras e poderá produzir ligeiros desvios na quantidade de material depositado em comparação com os passos-E absolutos. Não considerando esta definição, o modo de extrusão será sempre definido como absoluto antes da exportação de qualquer script g-code." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Utilizar torres especializadas para suportar pequenas áreas de saliências. Estas torres têm um diâmetro maior do que a região que suportam. Junto às saliências, o diâmetro das torres diminui, criando um tecto." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Utilize este objecto para modificar o enchimento de outros objectos com os quais se sobrepõe. Substitui as regiões de enchimento de outros objectos por regiões deste objecto. É recomendado imprimir este objecto apenas com uma Parede e sem Superfícies Superior/Inferior." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Utilize esta malha para especificar áreas de suporte. Esta opção pode ser utilizada para gerar estruturas de suporte." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Utilize esta malha para especificar a parte do modelo que não deve ser detetada como saliência. Esta opção pode ser utilizada para remover estruturas de suporte indesejadas." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Definido pelo utilizador" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Compensação de contração do fator de dimensionamento vertical" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Tolerância vertical nas camadas seccionadas. Os contornos de uma camada são geralmente gerados passando as secções cruzadas através do centro de cada espessura da camada (Centro). Como alternativa, cada camada pode conter as áreas que se encontram no interior do volume ao longo de toda a espessura da camada (Exclusivo) ou uma camada pode conter as áreas que se encontram em qualquer sítio do interior da camada (Inclusivo). A opção Inclusivo retém o maior número de detalhes, a opção Exclusivo garante a melhor adaptação ao modelo e a opção Centro permanece próximo da superfície original." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Esperar pelo Aquecimento da Base de Construção" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Esperar pelo aquecimento do nozzle" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Aceleração de parede" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Número de paredes distribuídas" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Extrusor Paredes" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Fluxo da Parede" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Jerk das Paredes" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Número Linhas Paredes" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Diâmetro Linha Parede" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Ordenação de paredes" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Velocidade Paredes" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Espessura das Paredes" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Comprimento de transição de paredes" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Distância do filtro de transição de paredes" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Margem do filtro de transição de paredes" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Ângulo do limiar de transição de paredes" + +msgctxt "shell label" +msgid "Walls" +msgstr "Paredes" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "As paredes com saliências que ultrapassem este ângulo serão impressas utilizando definições de parede de saliências. Quando o valor é 90, nenhuma parede é considerada como sendo uma saliência. As saliências suportadas por suporte também não serão consideradas como saliências." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Quando ativados, os percursos da ferramenta são corrigidos para impressoras com planeadores de movimento suave. Os pequenos movimentos que se desviam da direção do percurso da ferramenta geral são suavizados para melhorar a fluidez dos movimentos." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Quando activado, a ordem, pela qual as linhas de enchimento são impressas, é optimizada para poder reduzir a distância percorrida. A redução do tempo total de deslocação depende de muitos factores tais como, o modelo que está a ser seccionado, o padrão de enchimento, a densidade, etc. Ter em atenção que para modelos que tenham muitas áreas pequenas de enchimento, o tempo de seccionamento pode aumentar consideravelmente." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Quando ativada, a velocidade da ventoinha de arrefecimento de impressão é alterada para as regiões de revestimento imediatamente acima do suporte." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Quando ativado, as coordenadas da junta-Z são relativas ao centro de cada peça. Quando desativado, as coordenadas definem uma posição absoluta na base de construção." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Os movimentos de deslocação de Combing com uma distância maior que este valor, quando este é superior a zero, utilizam retrações. Se o valor for definido como zero, não existirá qualquer valor máximo e os movimentos Combing não utilizarão retrações." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Quando este valor for superior a zero, a Expansão Horizontal de Buraco é aplicada de forma progressiva nos buracos pequenos (os buracos pequenos serão mais expandidos). Com um valor de zero, a Expansão Horizontal de Buraco será aplicada a todos os buracos. Os buracos maiores que o Diâmetro Máximo de Expansão Horizontal de Buraco não serão expandidos." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Quando superior a zero, a expansão horizontal de orifícios é o valor do desvio aplicado a todos os orifícios em cada camada. Os valores positivos aumentam a dimensão dos orifícios e os valores negativos reduzem a dimensão dos orifícios. Quando esta definição está ativa pode ser otimizada adicionalmente com o diâmetro máximo da expansão horizontal de orifícios." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir as regiões do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir as paredes de Bridge, a quantidade de material extrudido é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a segunda camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Ao imprimir a terceira camada do revestimento de Bridge, a quantidade de material extrudido é multiplicada por este valor." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Quando a velocidade mínima for alcançada devido ao tempo mínimo por camada, elevar e afastar a cabeça da impressão e aguardar o tempo adicional até atingir o tempo mínimo por camada." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Quando o modelo tem pequenos espaços verticais de apenas algumas camadas, deverá normalmente existir revestimento à volta dessas camadas no espaço estreito. Ative esta definição para não gerar revestimento se o espaço vertical for muito pequeno. Isto melhora o tempo de impressão e o tempo de seccionamento, mas deixa tecnicamente o enchimento exposto ao ar." + +msgctxt "wall_transition_angle description" +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 "Quando devem ser criadas transições entre números pares e ímpares de paredes. Uma forma em cunha com um ângulo superior a esta definição não terá transições e nenhuma parede será impressa no centro para preencher o espaço restante. Reduzir esta definição reduz o número e o comprimento destas paredes centrais, mas pode deixar lacunas ou provocar um excesso de extrusão." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Quando uma peça fica mais fina e seja necessário haver uma transição entre um numero diferente de paredes, é reservado um espaço para se puder separar ou unir as linhas das paredes." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Quando efetuar a limpeza, a base de construção é descida para criar um espaço entre o nozzle e a impressão. Impede o nozzle de atingir a impressão durante os movimentos de deslocação, reduzindo a possibilidade de derrubar a impressão da base de construção." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Sempre que for efetuada uma retração, a base de construção é rebaixada para criar uma folga entre o nozzle e a impressão. Desta forma, evita-se que o nozzle atinja a impressão durante os movimentos de deslocação, reduzindo a probabilidade de derrubar a impressão da base de construção." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Se a Distância X/Y de suporte substitui a Distância Z de suporte ou vice-versa. Quando X/Y substitui Z, a distância X/Y pode afastar o suporte do modelo, influenciando a distância Z real relativamente às saliências. É possível desativar esta opção não aplicando a distância X/Y em torno das saliências." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Se as coordenadas X/Y da posição zero (origem) da impressora são o centro da área de impressão." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Se o endstop do eixo X está no sentido positivo (coordenada X superior) ou negativo (coordenada X inferior)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Se o endstop do eixo Y está no sentido positivo (coordenada Y superior) ou negativo (coordenada Y inferior)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Se o endstop do eixo Z está no sentido positivo (coordenada Z superior) ou negativo (coordenada Z inferior)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Se, as extrusoras partilham um único aquecedor em vez de cada extrusora ter o seu próprio aquecedor." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Se as extrusoras partilham um único bocal, em vez de cada extrusora ter um bocal próprio. Quando definido como verdadeiro, espera-se que o script gcode de arranque da impressora configure corretamente todas as extrusoras num estado de retração inicial conhecido e mutuamente compatível (seja zero ou um filamento não retraído); nesse caso, o estado de retração inicial é descrito, por extrusora, pelo parâmetro 'machine_extruders_shared_nozzle_initial_retraction'." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Se a máquina tem ou não uma base de construção aquecida." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Se a máquina consegue ou não estabilizar a temperatura do volume de construção." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Permite centrar o objeto no centro da base de construção (0,0), em vez de utilizar o sistema de coordenadas no qual o objeto foi guardado." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Controlar ou não a temperatura a partir do Cura. Desative esta opção para controlar a temperatura do nozzle a partir de fora do Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Incluir ou não os comandos de temperatura da base de construção no início do gcode. Se o gcode_inicial já incluir os comandos de temperatura da base de construção, o front-end do Cura desativará automaticamente esta definição." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Incluir ou não os comandos de temperatura do nozzle no início do G-code. Se o gcode_inicial já incluir os comandos de temperatura do nozzle, o front-end do Cura desativará automaticamente esta definição." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Se, se deve incluir o G-Code para a limpeza do nozzle entre camadas (máximo de 1 por camada). Ativar esta definição pode influenciar o comportamento da retração na mudança da camada. Utilize as definições da Retração de Limpeza para controlar a retração em camadas onde o script de limpeza estará a funcionar." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Introduzir ou não um comando para esperar até que a temperatura da base de construção seja atingida durante o arranque." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Preparar, ou não, o filamento com um \"blob\" (borrão) antes da impressão. Ativar esta definição irá assegurar que o extrusor terá material disponível no nozzle ao iniciar a impressão. Imprimir com Aba ou Contorno também pode actuar como preparação do filamento, e nesses casos, desativar esta definição permite poupar algum tempo." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Imprimir todos os modelos uma camada de cada vez ou aguardar que um modelo termine, antes de passar para o seguinte. O modo individual é possível se a) apenas uma extrusora estiver ativa, e b) todos os modelos estiverem separados de forma a que a cabeça de impressão se possa mover por entre todos os modelos, e em que altura destes seja inferior à distância entre o nozzle e os eixos X/Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Mostrar ou não as diferentes variantes desta máquina, as quais são descritas em ficheiros json separados." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Se se deve utilizar os comandos de retração do firmware (G10/G11), em vez da propriedade E dos comandos G1, para realizar a retração do material." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Esperar ou não até que a temperatura do nozzle seja atingida durante o arranque." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "O diâmetro de uma única linha de enchimento." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "O diâmetro de uma única linha do chão ou tecto de suporte." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "O diâmetro de uma única linha das superfícies de revestimento na parte superior da impressão." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "O diâmetro (largura) de uma única linha. Normalmente, o diâmetro de cada linha deve corresponder ao diâmetro do nozzle. No entanto, reduzir ligeiramente este valor pode produzir melhores impressões." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "O diâmetro de uma única linha da torre de preparação." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "O diâmetro de uma única linha do contorno ou da aba." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "O diâmetro de uma única linha do piso de suporte." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "O diâmetro de uma única linha do tecto de suporte." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "O diâmetro de uma única linha da estrutura de suporte." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "O diâmetro de uma única linha das superfícies superior/inferior." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "O diâmetro de uma única linha de parede para todas as linhas de parede excepto a mais exterior." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "O diâmetro de uma única linha de parede." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "O diâmetro das linhas na camada inferior (base) do raft. Devem ser linhas espessas para auxiliar na aderência à base de construção." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "O diâmetro das linhas na camada do meio do raft. Extrudir mais a segunda camada provoca a aderência das linhas à base de construção." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "O diâmetro das linhas da superfície superior do raft. Estas podem ser linhas finas para que a parte superior do raft seja uniforme e liso." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "O diâmetro da linha de parede mais exterior. Ao reduzir este valor, é possível imprimir com maior nível de detalhe." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Diâmetro da parede que substituirá elementos finos (de acordo com o Tamanho mínimo do elemento) do modelo. Se o Diâmetro mínimo de linha da parede for mais fino do que a espessura do elemento, a parede tornar-se-á tão espessa como o próprio elemento." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Posição X da escova de limpeza" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Velocidade do salto de limpeza" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Limpar nozzle inativo na torre de preparação" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Distância do movimento de limpeza" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Limpar nozzle entre camadas" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Pausa na limpeza" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Contagem de repetições de limpeza" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Distância de retração da limpeza" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Retração de limpeza ativada" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Quantidade de preparação adicional de retração de limpeza" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Velocidade de preparação da retração de limpeza" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Velocidade de retração na retração de limpeza" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Velocidade de retração de limpeza" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Salto Z de limpeza" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Altura do salto Z de limpeza" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "No Enchimento" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Escreva a ferramenta ativa depois de enviar comandos temporários para a ferramenta inativa. Necessário para Extrusora Dupla com Smoothie ou outro firmware com comandos de ferramentas modais." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Endstop X no Sentido Positivo" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Localização X onde o script de limpeza será iniciado." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y substitui Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Endstop Y no Sentido Positivo" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Endstop Z no Sentido Positivo" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Salto Z após mudança extrusor" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Altura do salto Z após mudança do extrusor" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Altura do salto Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Salto Z apenas sobre as peças impressas" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Velocidade do Salto Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Salto Z ao retrair" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Alinhamento da Junta-Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Posição da Junta-Z" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Relativo à Junta-Z" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X da Junta-Z" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y da Junta-Z" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z substitui X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" + +msgctxt "travel description" +msgid "travel" +msgstr "deslocação" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "Se as ventoinhas de arrefecimento serão ativadas durante uma mudança de bocal. Isto pode ajudar a reduzir o escorrimento, ao arrefecer o bocal mais rapidamente:
    • Sem alterações: manter as ventoinhas como estavam anteriormente
    • Apenas a última extrusora: liga a ventoinha da última extrusora utilizada, desliga as outras (se existirem). É útil se houverem extrusoras completamente separadas.
    • Todas as ventoinhas: liga todas as ventoinhas durante a mudança de bocal. É útil se houver uma única ventoinha de arrefecimento, ou várias ventoinhas próximas umas das outras.
    " + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Todas as ventoinhas" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Arrefecimento durante a troca de extrusora" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Gere a relação espacial entre a junta z da estrutura de suporte e o modelo 3D real. Este controlo é crucial, uma vez que assegura aos utilizadores a remoção sem problemas das estruturas de suporte após a impressão, sem causar danos ou deixar marcas no modelo impresso." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Distância mínima entre a junta Z e o modelo" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Multiplicador para o enchimento nas camadas iniciais do suporte. Aumentá-lo pode ajudar a adesão ao leito." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Apenas a última extrusora" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Posicione a junta z no vértice de um polígono. Desativar esta opção também pode posicionar a junta entre vértices. (Tenha em mente que isto não anula as restrições sobre o posicionamento da junta numa saliência não suportada)." + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Espessura mínima da carcaça da torre principal" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Fluxo de base da jangada" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Sobreposição de enchimento na base de jangada " + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Percentagem de sobreposição do enchimento na base da jangada" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Fluxo da jangada" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Fluxo da interface da jangada" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Sobreposição do enchimento na interface da jangada " + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Percentagem de sobreposição do enchimento na interface da jangada " + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Desvio Z da interface da jangada" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Fluxo de superfície da jangada" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Sobreposição do enchimento na superfície da jangada " + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Percentagem de sobreposição do enchimento da superfície da jangada" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Desvio Z da superfície da jangada" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Ângulo da parede saliente da junta" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Camada inicial do multiplicador de densidade do enchimento de suporte" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Apoiar a junta Z longe do modelo" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material, relativamente a uma linha de extrusão normal, a extrudir durante a impressão da base da jangada. O aumento do fluxo pode melhorar a aderência e a resistência estrutural da jangada." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material, relativamente a uma linha de extrusão normal, a extrudir durante a impressão da interface da jangada. O aumento do fluxo pode melhorar a aderência e a resistência estrutural da jangada." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material, relativamente a uma linha de extrusão normal, a extrudir durante a impressão da jangada. O aumento do fluxo pode melhorar a aderência e a resistência estrutural da jangada." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "A quantidade de material, relativamente a uma linha de extrusão normal, a extrudir durante a impressão da superfície da jangada. O aumento do fluxo pode melhorar a aderência e a resistência estrutural da jangada." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o enchimento e as paredes da base da jangada, como percentagem da largura da linha de enchimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao enchimento." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o enchimento e as paredes da base da jangada. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao enchimento." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o enchimento e as paredes da interface da jangada, em percentagem da largura da linha de enchimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao enchimento." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o enchimento e as paredes da interface da jangada. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao enchimento." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o enchimento e as paredes da superfície da jangada, como percentagem da largura da linha de enchimento. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao enchimento." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "A quantidade de sobreposição entre o enchimento e as paredes da superfície da jangada. Uma ligeira sobreposição permite que as paredes se liguem firmemente ao enchimento." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "A distância entre o modelo e a sua estrutura de suporte na junta do eixo z." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "A espessura mínima da carcaça da torre principal. Pode aumentá-la para tornar a torre principal mais forte." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Tente evitar juntas em paredes que estejam mais salientes do que este ângulo. Quando o valor é 90, nenhuma parede será tratada como saliente." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Sem alterações" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Ao imprimir a primeira camada da interface da jangada, traduza por este desvio para personalizar a adesão entre a base e a interface. Um desvio negativo deve melhorar a aderência." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Ao imprimir a primeira camada da superfície da jangada, traduza por este desvio para personalizar a aderência entre a interface e a superfície. Um desvio negativo deverá melhorar a aderência." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Junta Z no vértice" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Adicione linhas extra ao padrão de preenchimento para suportar as películas superiores. Esta opção previne o surgimento de buracos ou bolhas de plástico que por vezes surgem em películas de forma complexa devido ao facto de o preenchimento inferior não suportar corretamente a camada da película a ser impressa acima. A opção \"Paredes\" suporta apenas os contornos da película, ao passo que a opção \"Paredes e Linhas\" também suporta as extremidades das linhas que compôem a película." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Velocidade da ventoinha de montagem em altura" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Velocidade da ventoinha de montagem em camada" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Número da ventoinha de volume de montagem" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Determina o comprimento de cada etapa na variação de fluxo ao expelir ao longo da costura do encaixe. Uma menor distância irá resultar num código G mais preciso mas também mais complexo." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Determina o comprimento da costura do encaixe, um tipo de costura que deverá tornar a costura Z menos visível. Deve ser superior a 0 de modo a ser eficaz." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Duração de cada etapa da mudança gradual de fluxo" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Ativar alterações graduais de fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído para o fluxo alvo. Isto é útil para impressoras com um tubo bowden em que o fluxo não é imediatamente alterado quando o motor da extrusora arranca/para." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Linhas de preenchimento extra para suportar as películas" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Para qualquer deslocação superior a este valor, o fluxo de material é reposto no fluxo teórico das vias" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Tamanho do passo de discretização do fluxo gradual" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Fluxo gradual ativado" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Aceleração máxima do fluxo gradual" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Aceleração do fluxo máximo da camada inicial" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Aceleração máxima para mudanças graduais de fluxo" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Velocidade mínima para mudanças graduais de fluxo para a primeira camada" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Nenhuma" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Aceleração da parede externa" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Desaceleração da parede externa" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Taxa de velocidade da extremidade da parede externa" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Distância de separação de velocidade da parede externa" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Taxa de velocidade de início da parede externa" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Redefinir a duração do fluxo" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Comprimento da costura do encaixe" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Altura de início da costura do encaixe" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Comprimento da etapa de costura do encaixe" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "A altura a que as ventoinhas giram a uma velocidade normal. Nas camadas inferiores, a velocidade da ventoinha aumenta gradualmente, desde a Velocidade de Ventoinha Inicial a Velocidade de Ventoinha Normal." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "A camada em que as ventoinhas de montagem giram a uma velocidade de ventoinha total. Este valor é calculado e arredondado para um número inteiro." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "O número da ventoinha que arrefece o volume de montagem. Se este número estiver programado para 0, tal significa que não existe ventoinha de volume de montagem." + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "A taxa de altura da camada selecionada a que terá início a costura do enciaxe. Um número mais baixo irá resultar numa maior altura de costura. Deve ser inferior a 100 para ser eficaz. " + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Trata-se da aceleração com que se poderá alcançar a velocidade máxima ao imprimir uma parede externa." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Trata-se da desaceleração com que se poderá concluir a impressão da parede externa." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Trata-se do comprimento máximo de uma direção de extrusão ao dividir uma trajetória mais longa para aplicar a aceleração/desaceleração da parede externa. Uma distância menor irá criar um código G mais preciso, mas também mais verboso." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Trata-se da taxa de velocidade máxima de conclusão de impressão de uma parede externa." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Trata-se da taxa de velocidade máxima de início de impressão de uma parede externa." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Apenas paredes" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Paredes e linhas" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "As paredes com um excedente que ultrapassa este ângulo serão impressas utilizando as definições de parede excendente. Quando o valor é igual a 90, nenhuma parede será tratada como excedente. O excedente suportado pelo suporte também não será tratado como excedente. Adicionalmente, qualquer linha que seja inferior à metade excedente também não será tratada como excedente." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Uma lista de direções de linhas inteiras a utilizar quando as camadas de pele da superfície inferior utilizam o padrão de linhas ou ziguezague. Os elementos da lista são utilizados sequencialmente à medida que as camadas progridem, e quando o fim da lista é alcançado começa-se de novo do início. Os itens da lista são separados por vírgulas e a lista completa está contida entre colchetes. A predefinição é uma lista vazia, o que significa que são utilizados os ângulos predefinidos tradicionais (45 e 135 graus)." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Aceleração da parede interior da superfície inferior" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Jerk da parede interior da superfície inferior" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Velocidade da superfície inferior da parede interior" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Fluxo da(s) parede(s) interior(es) da superfície inferior" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Aceleração da parede exterior da superfície inferior" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Fluxo da parede exterior da superfície inferior" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Jerk da parede exterior da superfície inferior" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Velocidade da parede exterior da superfície inferior" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Aceleração da pele da superfície inferior" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Extrusora da pele da superfície inferior" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Fluxo da pele da superfície inferior" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Jerk da pele da superfície inferior" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Camadas de pele da superfície inferior" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Direções da linha da pele da superfície inferior" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Largura da linha de pele da superfície inferior" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Padrão da pele da superfície inferior" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Velocidade da pele da superfície inferior" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Concêntrico" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Extrusora" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Compensação do fluxo nas linhas da parede da superfície inferior para todas as linhas da parede exceto a mais exterior." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Compensação do fluxo nas linhas das áreas na parte inferior da impressão." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Compensação do fluxo na linha da parede mais exterior da superfície inferior." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Distância de exclusão no percurso interior" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Linhas" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Tempo mínimo da camada com saliência" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Comprimento mínimo do segmento da saliência" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Ordem monotónica da superfície inferior" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Desaceleração do fim da parede exterior" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Aceleração inicial da parede exterior" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Velocidades da parede saliente" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "As paredes salientes serão impressas a uma percentagem da sua velocidade de impressão normal. Pode especificar valores múltiplos, para que ainda mais paredes salientes sejam impressas mais lentamente, definindo por exemplo [75, 50, 25]" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Fator de avanço da pressão" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Imprimir núcleo" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Imprimir as linhas da superfície inferior numa ordem que faça com que se sobreponham sempre às linhas adjacentes numa única direção. Isto demora um pouco mais de tempo a imprimir, mas dá um aspeto mais consistente às superfícies planas." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "O GCode inicial deve ser o primeiro" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "A aceleração com que as camadas de pele da superfície inferior são impressas." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "A aceleração com que as paredes interiores da superfície inferior são impressas." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "A aceleração com que as paredes exteriores da superfície inferior são impressas." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "As dimensões da cabeça de impressão utilizadas para determinar a \"distância segura do modelo\" quando se imprime \"um de cada vez\". Estes números referem-se à linha central do primeiro bocal da extrusora. A esquerda do bocal é \"Mín. X\" e deve ser negativa. A traseira do bocal é \"Mín. Y\" e deve ser negativa. Máx. X (direita) e Máx. Y (frente) são números positivos. A altura do pórtico é a dimensão entre a placa de construção e a viga do pórtico X." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "A distância entre o bocal e as paredes exteriores já impressas quando se viaja dentro de um modelo." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "O trem de extrusão utilizado para imprimir a pele mais inferior. É utilizado na multi-extrusão." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "A alteração máxima instantânea da velocidade com que são impressas as camadas da pele da superfície inferior." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "A alteração máxima instantânea da velocidade com que as paredes interiores da superfície inferior são impressas." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "A alteração máxima instantânea da velocidade com que as paredes mais exteriores da superfície inferior são impressas." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "O tempo mínimo gasto numa camada que contém extrusões salientes. Isto obriga a impressora a abrandar, para gastar pelo menos o tempo aqui definido numa camada. Isto permite que o material impresso arrefeça corretamente antes daa camada seguinte ser imprimida. As camadas podem demorar ainda menos do que o tempo mínimo de camada se a Cabeça de Elevação estiver desativada e se a Velocidade Mínima for violada." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "O número de camadas de pele mais inferiores. Normalmente, uma única camada inferior é suficiente para gerar superfícies inferiores de maior qualidade." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "O padrão das camadas mais inferiores." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "A velocidade a que as camadas de pele da superfície inferior são impressas." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "A velocidade a que as paredes interiores da superfície inferior são impressas." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "A velocidade a que a parede exterior da superfície inferior é impressa." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Esta definição controla se o código-g inicial é forçado a ser sempre o primeiro código-g. Sem esta opção, é possível inserir outro código-g, como um T0, antes do código-g inicial." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "O fator de afinação para o avanço da pressão, que serve para sincronizar a extrusão com o movimento" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Quando se tenta aplicar o tempo mínimo de camada específico para camadas salientes, este só será aplicado se pelo menos um movimento de extrusão saliente consecutivo for superior a este valor." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Largura de uma única linha das áreas na parte inferior da impressão." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Ziguezague" diff --git a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po b/resources/i18n/pt_PT/gradual_flow_settings.def.json.po deleted file mode 100644 index 5f02a114f3..0000000000 --- a/resources/i18n/pt_PT/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: pt_PT\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Fluxo gradual ativado" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Ativar alterações graduais de fluxo. Quando ativado, o fluxo é gradualmente aumentado/diminuído para o fluxo alvo. Isto é útil para impressoras com um tubo bowden em que o fluxo não é imediatamente alterado quando o motor da extrusora arranca/para." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Aceleração máxima do fluxo gradual" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Aceleração máxima para mudanças graduais de fluxo" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Aceleração do fluxo máximo da camada inicial" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Velocidade mínima para mudanças graduais de fluxo para a primeira camada" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Tamanho do passo de discretização do fluxo gradual" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Duração de cada etapa da mudança gradual de fluxo" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Redefinir a duração do fluxo" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Para qualquer deslocação superior a este valor, o fluxo de material é reposto no fluxo teórico das vias" diff --git a/resources/i18n/ru_RU/cura.po b/resources/i18n/ru_RU/cura.po index ed37461df9..40dbf6f146 100644 --- a/resources/i18n/ru_RU/cura.po +++ b/resources/i18n/ru_RU/cura.po @@ -24,7 +24,6 @@ msgctxt "@action:label" msgid "%1 out of %2" msgstr "%1 из %2" -#, fuzzy msgctxt "@action:label" msgid "%1 override" msgid_plural "%1 overrides" @@ -33,7 +32,6 @@ msgstr[1] "%1 перекрыто" msgstr[2] "%1 перекрыто" msgstr[3] "" -#, fuzzy msgctxt "@action:label" msgid "%1, %2 override" msgid_plural "%1, %2 overrides" @@ -176,6 +174,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "Файл 3MF" +msgctxt "name" +msgid "3MF Reader" +msgstr "Чтение 3MF" + +msgctxt "name" +msgid "3MF Writer" +msgstr "Запись 3MF" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "Подключаемый модуль для записи 3MF поврежден." @@ -233,7 +239,6 @@ msgctxt "@label" msgid "A USB print is in progress, closing Cura will stop this print. Are you sure?" msgstr "Выполняется печать через USB, закрытие Cura остановит эту печать. Вы уверены?" -#, fuzzy msgctxt "info:status" msgid "A cloud connection is not available for a printer" msgid_plural "A cloud connection is not available for some printers" @@ -254,6 +259,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "Файл AMF" +msgctxt "name" +msgid "AMF Reader" +msgstr "Средство чтения AMF" + msgctxt "@label" msgid "Abort" msgstr "Прервать" @@ -290,6 +299,10 @@ msgctxt "@button" msgid "Accept" msgstr "Принять" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "Принимает G-Code и отправляет его на принтер. Плагин также может обновлять прошивку." + msgctxt "@label" msgid "Account synced" msgstr "Учетная запись синхронизирована" @@ -430,6 +443,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Разрешить отправку анонимных данных" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "Позволяет загружать и отображать файлы G-code." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Всегда спрашивать меня" @@ -480,7 +497,7 @@ msgstr "Применить к" msgctxt "@label" msgid "Apply Extruder offsets to GCode" -msgstr "Применить смещения экструдера к G-коду" +msgstr "Применить смещения экструдера к GCode" msgctxt "@info:title" msgid "Are you ready for cloud printing?" @@ -586,6 +603,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Резервное копирование и сброс конфигурации" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Резервное копирование и восстановление конфигурации." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Выполняйте резервное копирование и синхронизацию своих настроек материалов и плагинов" @@ -612,7 +633,7 @@ msgstr "Вид снизу" msgctxt "@label" msgid "Brand" -msgstr "Бренд" +msgstr "Брэнд" msgctxt "@title" msgid "Build Plate Leveling" @@ -688,7 +709,7 @@ msgstr "Невозможно импортировать профиль из network printing troubleshooting guide" msgstr "Если ваш принтер отсутствует в списке, обратитесь к руководству по решению проблем с сетевой печатью" +msgctxt "name" +msgid "Image Reader" +msgstr "Чтение изображений" + msgctxt "@action:button" msgid "Import" msgstr "Импорт" @@ -2141,6 +2242,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Вид слева" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Чтение устаревших профилей Cura" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Сообщите разработчикам о неполадках." @@ -2221,6 +2326,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Журналы" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Потеряно соединение с принтером" @@ -2229,6 +2338,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Параметры принтера" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Параметры принтера действие" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Принтеры" @@ -2239,12 +2352,16 @@ msgstr "Убедитесь, что все ваши принтеры включе msgctxt "@info:generic" msgid "Make sure the g-code is suitable for your printer and printer configuration before sending the file to it. The g-code representation may not be accurate." -msgstr "Перед отправкой G-кода на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-кода." +msgstr "Перед отправкой G-code на принтер удостоверьтесь в его соответствии вашему принтеру и его настройкам. Возможны неточности в G-code." msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Файл печати Makerbot" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Модуль записи файлов печати Makerbot" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter не может сохранить файл в указанное место." @@ -2301,6 +2418,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "Здесь можно управлять встраиваемыми модулями Ultimaker Cura и профилями материалов. Регулярно обновляйте встраиваемые модули и создавайте резервные копии настроек." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "Управляет сетевыми соединениями с сетевыми принтерами UltiMaker." + msgctxt "@label" msgid "Manufacturer" msgstr "Производитель" @@ -2313,6 +2438,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Магазин" +msgctxt "name" +msgid "Marketplace" +msgstr "Магазин" + msgctxt "@action:label" msgid "Material" msgstr "Материал" @@ -2329,6 +2458,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Цвет материала" +msgctxt "name" +msgid "Material Profiles" +msgstr "Профили материалов" + msgctxt "@label" msgid "Material Type" msgstr "Тип материала" @@ -2373,6 +2506,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Режим" +msgctxt "name" +msgid "Model Checker" +msgstr "Средство проверки моделей" + msgctxt "@info:title" msgid "Model Errors" msgstr "Ошибки модели" @@ -2389,6 +2526,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Монитор" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Этап мониторинга" + msgctxt "@action:button" msgid "Monitor print" msgstr "Мониторинг печати" @@ -2429,7 +2570,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Multiply Selected" msgstr "Размножить выбранное" -#, fuzzy msgctxt "@title:window" msgid "Multiply Selected Model" msgid_plural "Multiply Selected Models" @@ -2486,7 +2626,6 @@ msgctxt "@action:button" msgid "New materials installed" msgstr "Установлены новые материалы" -#, fuzzy msgctxt "info:status" msgid "New printer detected from your Ultimaker account" msgid_plural "New printers detected from your Ultimaker account" @@ -2665,7 +2804,7 @@ msgstr "Показать только верхние слои" msgctxt "@info:status" msgid "Only one G-code file can be loaded at a time. Skipped importing {0}" -msgstr "Только один файл G-кода может быть загружен в момент времени. Пропускаю импортирование {0}" +msgstr "Только один G-code файла может быть загружен в момент времени. Пропускаю импортирование {0}" msgctxt "@message" msgid "Oops! We encountered an unexpected error during your slicing process. Rest assured, we've automatically received the crash logs for analysis, if you have not disabled data sharing in your preferences. To assist us further, consider sharing your project details on our issue tracker." @@ -2681,7 +2820,7 @@ msgstr "Открыть недавние" msgctxt "@item:inlistbox 'Open' is part of the name of this file format." msgid "Open Compressed Triangle Mesh" -msgstr "Открыть сжатую треугольную сетку" +msgstr "Open Compressed Triangle Mesh" msgctxt "@title:window" msgid "Open File(s)" @@ -2782,7 +2921,6 @@ msgctxt "@label" msgid "Override will use the specified settings with the existing printer configuration. This may result in a failed print." msgstr "При переопределении к имеющейся конфигурации принтера будут применены указанные настройки. Это может привести к ошибке печати." -#, fuzzy msgctxt "@label %1 is the number of settings it overrides." msgid "Overrides %1 setting." msgid_plural "Overrides %1 settings." @@ -2809,7 +2947,7 @@ msgstr "Упаковка Python-приложений" msgctxt "@info:status" msgid "Parsing G-code" -msgstr "Обработка G-кода" +msgstr "Обработка G-code" msgctxt "@action:inmenu menubar:edit" msgid "Paste from clipboard" @@ -2839,6 +2977,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Параметры модели" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Инструмент для настройки каждой модели" + msgid "Perspective" msgstr "Перспективная" @@ -2964,6 +3106,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Пост-обработка" +msgctxt "name" +msgid "Post Processing" +msgstr "Пост обработка" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Плагин пост-обработки" @@ -2980,6 +3126,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Подготовка" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Подготовительный этап" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Подготовка..." @@ -3000,6 +3150,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Предварительный просмотр" +msgctxt "name" +msgid "Preview Stage" +msgstr "Этап предварительного просмотра" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Черновая башня" @@ -3016,7 +3170,6 @@ msgctxt "@action:inmenu menubar:edit" msgid "Print Before" msgstr "Печатать до" -#, fuzzy msgctxt "@label" msgid "Print Selected Model With:" msgid_plural "Print Selected Models With:" @@ -3025,7 +3178,6 @@ msgstr[1] "Печать выбранных моделей:" msgstr[2] "Печать выбранных моделей:" msgstr[3] "" -#, fuzzy msgctxt "@label %1 is filled in with the name of an extruder" msgid "Print Selected Model with %1" msgid_plural "Print Selected Models with %1" @@ -3250,6 +3402,106 @@ msgctxt "@label" msgid "Properties" msgstr "Свойства" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Обеспечение действий принтера для обновления прошивки." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Обеспечивает этап мониторинга в Cura." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Предоставляет просмотр твёрдого тела." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Обеспечивает подготовительный этап в Cura." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Предоставляет поддержку для экспорта профилей Cura." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Предоставляет поддержку для импорта профилей Cura." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "Предоставляет поддержку для импортирования профилей из G-Code файлов." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "Предоставляет поддержку для чтения 3MF файлов." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "Обеспечивает поддержку чтения файлов AMF." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "Предоставляет поддержку для чтения X3D файлов." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Предоставляет поддержку для чтения файлов моделей." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "Обеспечивает поддержку записи файлов 3MF и UCP." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "Обеспечивает поддержку записи пакетов формата MakerBot." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Предоставляет параметры для каждой модели." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Предоставляет рентгеновский вид." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "Предоставляет интерфейс к движку CuraEngine." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." + msgctxt "@label" msgid "PyQt version" msgstr "Версия PyQt" @@ -3286,6 +3538,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "Выйти из %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Считывает G-код из сжатого архива." + msgctxt "@button" msgid "Recommended" msgstr "Рекомендован" @@ -3338,6 +3594,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Внешний носитель" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Плагин для работы с внешним носителем" + msgctxt "@action:button" msgid "Remove" msgstr "Удалить" @@ -3618,6 +3878,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Отправка материалов на принтер" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Контрольный журнал" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Библиотека последовательного интерфейса" @@ -3826,6 +4090,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "Войдите на платформу UltiMaker" +msgctxt "name" +msgid "Simulation View" +msgstr "Вид моделирования" + msgctxt "@tooltip" msgid "Skin" msgstr "Покрытие" @@ -3854,6 +4122,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Нарезать автоматически при изменении настроек." +msgctxt "name" +msgid "Slice info" +msgstr "Информация о нарезке модели" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Нарезка на слои не выполнена" @@ -3870,6 +4142,10 @@ msgctxt "@label" msgid "Solid" msgstr "Сплошной" +msgctxt "name" +msgid "Solid View" +msgstr "Обзор" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Просмотр модели" @@ -3964,6 +4240,10 @@ msgctxt "@label" msgid "Strength" msgstr "Прочность" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Материал успешно экспортирован в %1" @@ -4008,6 +4288,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Блокировщик поддержки" +msgctxt "name" +msgid "Support Eraser" +msgstr "Средство стирания элемента поддержки" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Заполнение поддержек" @@ -4104,7 +4388,6 @@ msgctxt "@text" msgid "The annealing profile requires post-processing in an oven after the print is finished. This profile retains the dimensional accuracy of the printed part after annealing and improves strength, stiffness, and thermal resistance." msgstr "Профиль отжига требует последующей обработки в печи после завершения печати. Этот профиль сохраняет точность размеров напечатанной детали после отжига и повышает прочность, жесткость и термостойкость." -#, fuzzy msgctxt "@label" msgid "The assigned printer, %1, requires the following configuration change:" msgid_plural "The assigned printer, %1, requires the following configuration changes:" @@ -4205,7 +4488,6 @@ msgctxt "@title:header" msgid "The following printers will receive the new material profiles:" msgstr "Следующие принтеры получат новые профили материалов:" -#, fuzzy msgctxt "@info:tooltip" msgid "The following script is active:" msgid_plural "The following scripts are active:" @@ -4385,7 +4667,6 @@ msgctxt "@label" msgid "This printer cannot be added because it's an unknown printer or it's not the host of a group." msgstr "Этот принтер невозможно добавить, поскольку это неизвестный принтер либо он не управляет группой." -#, fuzzy msgctxt "info:status" msgid "This printer is not linked to the Digital Factory:" msgid_plural "These printers are not linked to the Digital Factory:" @@ -4427,7 +4708,6 @@ msgctxt "@item:tooltip" msgid "This setting has been hidden by the active machine and will not be visible." msgstr "Данный параметр был скрыт текущим принтером и не будет отображаться." -#, fuzzy msgctxt "@item:tooltip %1 is list of setting names" msgid "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible." msgid_plural "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible." @@ -4487,7 +4767,7 @@ msgstr "Сейчас вы можете отрегулировать ваш ст msgctxt "@label" msgid "To print directly to your printer over the network, please make sure your printer is connected to the network using a network cable or by connecting your printer to your WIFI network. If you don't connect Cura with your printer, you can still use a USB drive to transfer g-code files to your printer." -msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-кода на принтер." +msgstr "Для печати непосредственно на принтере через сеть необходимо подключить принтер к сети с помощью сетевого кабеля или подключить его к сети Wi-Fi. Если вы не подключили Cura к принтеру, вы можете использовать USB-накопитель для переноса файлов G-Code на принтер." msgctxt "@message {printer_name} is replaced with the name of the printer" msgid "To remove {printer_name} permanently, visit {digital_factory_link}" @@ -4537,6 +4817,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Попытка восстановить резервную копию Cura при отсутствии необходимых данных или метаданных." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Средство чтения Trimesh" + msgctxt "@button" msgid "Troubleshooting" msgstr "Поиск и устранение неисправностей" @@ -4557,10 +4841,22 @@ msgctxt "@label" msgid "Type" msgstr "Тип" +msgctxt "name" +msgid "UFP Reader" +msgstr "Средство считывания UFP" + +msgctxt "name" +msgid "UFP Writer" +msgstr "Средство записи UFP" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "Печать через USB" +msgctxt "name" +msgid "USB printing" +msgstr "Печать через USB" + msgctxt "@button" msgid "UltiMaker Account" msgstr "Учетная запись UltiMaker" @@ -4577,6 +4873,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "Пакет формата UltiMaker" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Соединение с сетью UltiMaker" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "Проверенный пакет UltiMaker" @@ -4585,6 +4885,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "Проверенный плагин UltiMaker" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Действия с принтерами UltiMaker" + msgctxt "@button" msgid "UltiMaker printer" msgstr "Принтер UltiMaker" @@ -4597,6 +4901,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Невозможно добавить профиль." @@ -4770,6 +5078,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Обновление..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Обновление настроек Cura 3.0 до Cura 3.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Обновляет конфигурации с Cura 5.6 до Cura 5.7." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Залить собственную прошивку" @@ -4806,6 +5222,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Значение" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "Обновление версии 2.1 до 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "Обновление версии 2.2 до 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "Обновление версии 2.5 до 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "Обновление версии 2.6 до 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "Обновление версии 2.7 до 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "Обновление версии 3.0 до 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "Обновление версии 3.2 до 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "Обновление версии 3.3 до 3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "Обновление версии 3.4 до 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "Обновление версии 3.5 до 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "Обновление версии 4.0 до 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Обновление версии 4.1 до 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "Обновление версии 4.11 до 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "Обновление версии 4.13 до 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "Обновление версии 4.2 до 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "Обновление версии 4.3 до 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "Обновление версии 4.4 до 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "Обновление версии 4.5 до 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "Обновление версии с 4.6.0 до 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "Обновление версии с 4.6.2 до 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "Обновление версии 4.7 до 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "Обновление версии 4.8 до 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "Обновление версии 4.9 до 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "Обновление версии 5.2 до 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "Обновление версии 5.3 до 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "Обновление версии 5.4 до 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "Обновление версии с 5.6 до 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Просмотреть принтеры в Digital Factory" @@ -4922,6 +5446,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Ширина (мм)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "Записывает G-код в сжатый архив." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "Записывает G-код в файл." + msgctxt "@label" msgid "X (Width)" msgstr "X (Ширина)" @@ -4934,6 +5466,10 @@ msgctxt "@label" msgid "X min" msgstr "X минимум" +msgctxt "name" +msgid "X-Ray View" +msgstr "Просмотр в рентгене" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Просмотр в рентгене" @@ -4946,6 +5482,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "Файл X3D" +msgctxt "name" +msgid "X3D Reader" +msgstr "Чтение X3D" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Глубина)" @@ -4966,7 +5506,6 @@ msgctxt "@label" msgid "You are about to remove all printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgstr "Вы удаляете все принтеры из Cura. Это действие невозможно будет отменить.Продолжить?" -#, fuzzy msgctxt "@label" msgid "You are about to remove {0} printer from Cura. This action cannot be undone.\nAre you sure you want to continue?" msgid_plural "You are about to remove {0} printers from Cura. This action cannot be undone.\nAre you sure you want to continue?" @@ -5094,554 +5633,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "Встраиваемые модули ({} шт.) не загружены" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "Управляет сетевыми подключениями к сетевым принтерам UltiMaker." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Соединение с сетью UltiMaker" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "Предоставляет поддержку для импортирования профилей из G-код файлов." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "Средство считывания профиля из G-кода" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Предоставляет просмотр твёрдого тела." - -msgctxt "name" -msgid "Solid View" -msgstr "Обзор" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Плагин CuraEngine для постепенного сглаживания потока и ограничения резких скачков потока" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "Предоставляет поддержку для чтения 3MF файлов." - -msgctxt "name" -msgid "3MF Reader" -msgstr "Чтение 3MF" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "Принимает G-код и отправляет его на принтер. Плагин также может обновлять прошивку." - -msgctxt "name" -msgid "USB printing" -msgstr "Печать через USB" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Проверяет наличие обновлений ПО." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Проверка обновлений" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Позволяет управлять расширениями приложения и просматривать расширения с веб-сайта UltiMaker." - -msgctxt "name" -msgid "Marketplace" -msgstr "Магазин" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Резервное копирование и восстановление конфигурации." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Резервные копии Cura" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Предоставляет возможность изменения параметров принтера (такие как рабочий объём, диаметр сопла и так далее)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Параметры принтера действие" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Обновляет настройки Cura 2.5 до Cura 2.6." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "Обновление версии 2.5 до 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Обновляет конфигурации Cura 4.7 до Cura 4.8." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "Обновление версии 4.7 до 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Обновляет конфигурации Cura 4.4 до Cura 4.5." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "Обновление версии 4.4 до 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Обновление настроек Cura 3.0 до Cura 3.1." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "Обновление версии 3.0 до 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Обновляет конфигурации Cura 4.11 до Cura 4.12." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "Обновление версии 4.11 до 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Обновляет конфигурации Cura 4.1 до Cura 4.2." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Обновление версии 4.1 до 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Обновляет настройки Cura 2.6 до Cura 2.7." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "Обновление версии 2.6 до 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Обновляет конфигурацию Cura 4.6.0 до Cura 4.6.2." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "Обновление версии с 4.6.0 до 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Обновляет настройки Cura 3.3 до Cura 3.4." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "Обновление версии 3.3 до 3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Обновляет конфигурации Cura 4.8 до Cura 4.9." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "Обновление версии 4.8 до 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Обновляет конфигурации Cura 4.5 до Cura 4.6." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "Обновление версии 4.5 до 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Обновляет конфигурации Cura 4.2 до Cura 4.3." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "Обновление версии 4.2 до 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Обновляет настройки Cura 3.2 до Cura 3.3." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "Обновление версии 3.2 до 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Обновляет конфигурации Cura 4.3 до Cura 4.4." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Комбинация не рекомендуется. Для повышения надежности установите сердечник BB в слот 1 (слева)." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "Обновление версии 4.3 до 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Обновляет конфигурации с Cura 5.6 до Cura 5.7." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Файл для печати эскиза Makerbot" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "Обновление версии с 5.6 до 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Поиск принтера" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Обновляет настройки Cura 2.1 до Cura 2.2." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Это файл проекта Cura Universal. Вы хотите открыть его как Cura Universal Project или импортировать модели из него?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "Обновление версии 2.1 до 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Экспортировать пакет для технической поддержки" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Обновляет конфигурации с Cura 5.3 до Cura 5.4." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Не удается отправить данные модели в устройство. Повторите попытку или обратитесь в службу поддержки." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "Обновление версии 5.3 до 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Не удается отправить данные модели в устройство. Попробуйте использовать менее подробную модель или уменьшите количество копий." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Обновляет конфигурации Cura 4.9 до Cura 4.10." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Обновляет конфигурации с Cura 5.8 до Cura 5.9." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "Обновление версии 4.9 до 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Обновляет настройки Cura 2.7 до Cura 3.0." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "Обновление версии 5.8 до 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "Обновление версии 2.7 до 3.0" +msgid "3DConnexion mouses" +msgstr "Мыши 3Dconnexion" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Обновляет конфигурации Cura 3.5 до Cura 4.0." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Позволяет работать в Cura, используя 3D-мыши." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "Обновление версии 3.5 до 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Продолжительность смены экструдера" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Обновляет настройки Cura 5.2 до Cura 5.3." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "G-код для предстартовой рутины экструдера" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "Обновление версии 5.2 до 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Инвертировать ось Y для toolhandle модели (требуется перезапуск)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Обновляет конфигурации Cura 4.0 до Cura 4.1." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "Лицензия для %1 %2" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "Обновление версии 4.0 до 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Файл для печати Makerbot Replicator+" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Обновляет конфигурации Cura 4.13 до Cura 5.0." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Следует ли инвертировать ось Y для трансляции toolhandle модели? Данная настройка изменяет только ось Y модели, все остальные параметры, включая настройки печатающей головки, остаются неизменными и будут работать по-старому." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "Обновление версии 4.13 до 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Обновляет настройки Cura 3.4 до Cura 3.5." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "Обновление версии 3.4 до 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Обновляет настройки Cura 2.2 до Cura 2.4." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "Стартовый GCode должен идти первый" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "Обновление версии 2.2 до 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Эта конфигурация недоступна из-за несоответствия или другой проблемы с core-type %1. Зайдите на страницу поддержки, чтобы узнать, какие ядра поддерживают данный тип принтера, включая новые срезы." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Обновляет конфигурацию Cura 4.6.2 до Cura 4.7." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Обновляет конфигурацию с Cura версии 5.9 до Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "Обновление версии с 4.6.2 до 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "Обновить версию с 5.9 до 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Обновляет конфигурации с Cura 5.4 до Cura 5.5." - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "Обновление версии 5.4 до 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "Позволяет загружать и отображать файлы G-код." - -msgctxt "name" -msgid "G-code Reader" -msgstr "Чтение G-кода" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Макс. Y ( '+' к передней части)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Отправляет анонимную информацию о нарезке моделей. Может быть отключено через настройки." - -msgctxt "name" -msgid "Slice info" -msgstr "Информация о нарезке модели" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Предоставляет поддержку для подключения и записи на внешний носитель." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Плагин для работы с внешним носителем" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Создание объекта стирания для блокировки печати элемента поддержки в определенных местах" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Средство стирания элемента поддержки" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Проверка моделей и конфигурации печати для выявления возможных проблем печати; рекомендации." - -msgctxt "name" -msgid "Model Checker" -msgstr "Средство проверки моделей" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Обеспечивает подготовительный этап в Cura." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Подготовительный этап" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Обеспечивает предварительный просмотр нарезанных данных слоя." - -msgctxt "name" -msgid "Simulation View" -msgstr "Вид моделирования" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "Обеспечивает поддержку чтения файлов AMF." - -msgctxt "name" -msgid "AMF Reader" -msgstr "Средство чтения AMF" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Предоставляет рентгеновский вид." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Просмотр в рентгене" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Обеспечение действий принтера для обновления прошивки." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Средство обновления прошивки" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Предоставляет поддержку для импортирования профилей из устаревших версий Cura." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Чтение устаревших профилей Cura" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Расширение, которое позволяет пользователю создавать скрипты для постобработки" - -msgctxt "name" -msgid "Post Processing" -msgstr "Пост обработка" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Регистрирует определенные события в журнале, чтобы их можно было использовать в отчетах об аварийном завершении работы" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Контрольный журнал" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "Обеспечивает поддержку записи пакетов формата MakerBot." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Модуль записи файлов печати Makerbot" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Предоставляет поддержку для импорта профилей Cura." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Чтение профиля Cura" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Предоставляет поддержку для чтения пакетов формата UltiMaker." - -msgctxt "name" -msgid "UFP Reader" -msgstr "Средство считывания UFP" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "Обеспечивает возможность генерировать печатаемую геометрию из файлов двухмерных изображений." - -msgctxt "name" -msgid "Image Reader" -msgstr "Чтение изображений" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "Предоставляет интерфейс к движку CuraEngine." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "Движок CuraEngine" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "Записывает G-код в сжатый архив." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Средство записи сжатого G-кода" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Предоставляет дополнительные возможности для принтеров UltiMaker (такие как мастер выравнивания стола, выбора обновления и так далее)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Действия с принтерами UltiMaker" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Считывает G-код из сжатого архива." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Средство считывания сжатого G-кода" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Обеспечивает действия на этапе предварительного просмотра в Cura." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Этап предварительного просмотра" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Подключается к цифровой библиотеке, позволяя Cura открывать файлы из цифровой библиотеки и сохранять файлы в нее." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Предоставляет поддержку для экспорта профилей Cura." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Запись профиля Cura" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "Предоставляет поддержку для чтения X3D файлов." - -msgctxt "name" -msgid "X3D Reader" -msgstr "Чтение X3D" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Предоставляет поддержку для чтения файлов моделей." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Средство чтения Trimesh" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Обеспечивает этап мониторинга в Cura." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Этап мониторинга" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Предоставляет параметры для каждой модели." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Инструмент для настройки каждой модели" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "Предоставляет возможности по чтению и записи профилей материалов в виде XML." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Профили материалов" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "Обеспечивает поддержку записи файлов 3MF и UCP." - -msgctxt "name" -msgid "3MF Writer" -msgstr "Запись 3MF" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Предоставляет поддержку для записи пакетов формата UltiMaker." - -msgctxt "name" -msgid "UFP Writer" -msgstr "Средство записи UFP" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "Записывает G-код в файл." - -msgctxt "name" -msgid "G-code Writer" -msgstr "Средство записи G-кода" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Мин. Y ( '-' к задней части)" diff --git a/resources/i18n/ru_RU/fdmextruder.def.json.po b/resources/i18n/ru_RU/fdmextruder.def.json.po index 94d2f5b945..cd334e38df 100644 --- a/resources/i18n/ru_RU/fdmextruder.def.json.po +++ b/resources/i18n/ru_RU/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Диаметр" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Экструдер" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Завершающий G-код экструдера" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Завершающий G-код, запускающийся при переключении с данного экструдера." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Продолжительность G-кода на конце экструдера" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "Время, необходимое для выполнения конечного g-кода при выходе из этого экструдера." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Абсолютная конечная позиция экструдера" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Конечная X позиция экструдера" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "X координата конечной позиции при отключении экструдера." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Конечная Y позиция экструдера" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Z координата начала печати" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Y координата конечной позиции при отключении экструдера." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Охлаждающий вентилятор экструдера, используемый во время печати" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Стартовый G-код экструдера" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Продолжительность G-кода запуска экструдера" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "Время, необходимое для выполнения стартового g-кода при переключении на этот экструдер." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Абсолютная стартовая позиция экструдера" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Стартовая X позиция экструдера" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Стартовая Y позиция экструдера" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Устанавливает абсолютную конечную позицию экструдера, а не относительно последней известной позиции головы." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Устанавливает абсолютную стартовую позицию экструдера, а не относительно последней известной позиции головы." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Идентификатор сопла" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Стартовая X позиция экструдера" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "X координата стартовой позиции при включении экструдера." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Стартовая Y позиция экструдера" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Y координата стартовой позиции при включении экструдера." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "X смещение сопла" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Смещение сопла по оси X." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Y смещение сопла" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Стартовый G-код, запускающийся при переключении на данный экструдер." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Экструдер, который используется для печати. Имеет значение при использовании нескольких экструдеров." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Номер охлаждающего вентилятора, используемого при печати и ассоциированного с этим экструдером. Применяемое по умолчанию значение 0 следует менять только при наличии другого охлаждающего вентилятора, используемого при печати, для каждого экструдера." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Время, необходимое для выполнения конечного g-кода при выходе из этого экструдера." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Время, необходимое для выполнения стартового g-кода при переключении на этот экструдер." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "X координата конечной позиции при отключении экструдера." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Смещение сопла по оси X." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "X координата стартовой позиции при включении экструдера." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Y координата конечной позиции при отключении экструдера." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Смещение сопла по оси Y." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Y координата стартовой позиции при включении экструдера." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Длина сопла" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Разница высот между кончиком сопла и самой нижней частью печатающей головки." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Продолжительность смены экструдера" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "G-код для предстартовой рутины экструдера" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "G-код для выполнения до переключения на этот экструдер." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "При использовании нескольких инструментов это значение представляет собой время смены инструмента в секундах. Оно будет прибавлено к расчетному времени с учетом количества смен инструментов." diff --git a/resources/i18n/ru_RU/fdmprinter.def.json.po b/resources/i18n/ru_RU/fdmprinter.def.json.po index a629762179..e42d39492a 100644 --- a/resources/i18n/ru_RU/fdmprinter.def.json.po +++ b/resources/i18n/ru_RU/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Принтер" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Как создать основную башню:
    • Нормально: создайте корзину, в которую будут загружены вторичные материалы
    • С чередованием: создайте как можно более редкую основную башню. Это сэкономит время и нить, но это возможно только в том случае, если используемые материалы прилипают друг к другу
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Параметры, относящиеся к принтеру" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Тип принтера" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "Название модели вашего 3D принтера." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Показать варианты принтера" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "Стартовый G-код" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью " -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "Завершающий G-код" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью " -"." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID материала" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Идентификатор материала, устанавливается автоматически." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Тип материала" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "Тип используемого материала." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Марка материала" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "Марка используемого материала." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Диаметр" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Укажите диаметр используемой нити." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Ожидать пока прогреется стол" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Ожидать пока прогреется сопло" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Использовать температуру из материала" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Добавлять температуру стола" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Ширина принтера" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Ширина (по оси X) области печати." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Глубина принтера" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Ширина (по оси Y) области печати." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Высота принтера" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Ширина (по оси Z) области печати." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Форма стола" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Форма стола без учёта непечатаемых областей." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Прямоугольная" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Эллиптическая" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Материал рабочего стола" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Материал рабочего стола, установленного на принтере." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Стекло" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Алюминий" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Имеет подогреваемый стол" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Имеет ли принтер подогреваемый стол." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Есть стабилизация температуры для объема печати" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Всегда выполнять запись активного инструмента" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Начало координат в центре" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Следует ли считать центром координат по осям X/Y в центре области печати." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Количество экструдеров" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Количество включенных экструдеров" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Внешний диаметр сопла" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Внешний диаметр кончика сопла." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Длина сопла" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Высота между кончиком сопла и нижней частью головы." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Угол сопла" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Длина зоны нагрева" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Разрешить управление температурой сопла" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Скорость нагрева" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Скорость охлаждения" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Время перехода в ожидание" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "Вариант G-кода" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Генерируемый тип G-кода." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volumetric)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Откат встроенного программного обеспечения" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Общий нагреватель экструдеров" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Общее сопло экструдеров" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Начальный откат общего сопла" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "Запрещенные области" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Список полигонов с областями, в которые голове запрещено заходить." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Запрещённые зоны для сопла" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Список полигонов с областями, в которые не должно заходить сопло." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Полигон головки принтера и вентилятора" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Высота портала" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Идентификатор сопла" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Диаметр сопла" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Смещение с экструдером" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Z координата начала печати" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Позиция кончика сопла на оси Z при старте печати." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Абсолютная позиция экструдера при старте" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Максимальная скорость по оси X" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "Максимальная скорость для мотора оси X." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Максимальная скорость по оси Y" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Максимальная скорость для мотора оси Y." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Максимальная скорость по оси Z" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Максимальная скорость для мотора оси Z." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Максимальная скорость по оси E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Максимальная скорость подачи материала." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Максимальное ускорение по оси X" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "Максимальное ускорение для мотора оси X" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Максимальное ускорение по оси Y" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Максимальное ускорение для мотора оси Y." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Максимальное ускорение по оси Z" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Максимальное ускорение для мотора оси Z." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Максимальное ускорение материала" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Максимальное ускорение мотора подачи материала." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Стандартное ускорение" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Стандартное ускорение для движений головы." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Обычный X-Y рывок" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Обычный Z рывок" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Стандартное изменение ускорения для мотора по оси Z." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Обычный рывок материала" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Стандартное изменение ускорения для мотора, подающего материал." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Количество шагов на миллиметр (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Количество шагов на миллиметр (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Количество шагов на миллиметр (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Количество шагов на миллиметр (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "Ограничитель хода на оси X в прямом направлении" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Y в прямом направлении" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Ограничитель хода на оси Z в прямом направлении" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Минимальная подача" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Минимальная скорость движения головы." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Диаметр колесика питателя" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Диаметр колесика, перемещающего материал в питатель." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Масштабирование скорости вентилятора до 0-1" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Масштабируйте скорость вентилятора таким образом, чтобы она находилась в диапазоне от 0 до 1, а не от 0 до 256." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Качество" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Высота слоя" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "Высота первого слоя" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Ширина линии" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Ширина линии стенки" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Ширина одной линии стенки." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Ширина линии внешней стенки" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "Ширина линии внутренней стенки" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Ширина линии дна/крышки" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Ширина одной линии дна/крышки." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Ширина линии заполнения" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Ширина одной линии заполнения." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Ширина линии юбки/каймы" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Ширина одной линии юбки или каймы." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Ширина линии поддержки" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Ширина одной линии поддержки." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Ширина линии поддерживающей крыши" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Ширина одной линии поддержки крышки или дна." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Ширина линии крыши поддержки" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Ширина одной линии крыши поддержки." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Ширина линии дна поддержки" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Ширина одной линии дна поддержки." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "Ширина линии черновой башни" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Ширина отдельной линии черновой башни." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "Ширина линии первого слоя" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." - -msgctxt "shell label" -msgid "Walls" -msgstr "Стенки" - -msgctxt "shell description" -msgid "Shell" -msgstr "Ограждение" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Экструдер стенок" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Экструдер внешних стенок" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "Экструдер внутренней стенки" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Толщина стенки" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Количество линий стенки" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Длина перехода к стенке" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Счетчик распределений по стенкам" - -msgctxt "wall_distribution_count description" -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 "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Пороговый угол перехода между стенками" - -msgctxt "wall_transition_angle description" -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 "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Расстояние фильтра при переходе между стенками" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Поле фильтра при переходе между стенками" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Предотвратите переход туда и обратно между одной лишней стенкой и одной недостающей. Это поле расширяет диапазон значений ширины линии, который определяется как [Минимальная ширина линии стенки - Поле, 2 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Расстояние очистки внешней стенки" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Вставка внешней стенки" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Оптимизация порядка печати стенок" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Порядок стенок" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "От внутренних к внешним" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "От внешних к внутренним" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Чередующаяся стенка" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Минимальная ширина линии стенки" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Минимальная ширина линии четных стенок" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Минимальная ширина линии обычных многоугольных стенок. Этот параметр определяет, при какой толщине модели выполняется переключение с печати тонкой стенки в одну линию на печать стенок в две линии. Чем выше значение минимальной ширины линии четной стенки, тем выше максимальная ширина линии нечетной стенки. Максимальная ширина линии четной стенки вычисляется по формуле: Ширина линии внешней стенки + 0,5 * Минимальная ширина линии нечетной стенки." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Минимальная ширина линии для полилинейных стенок, заполняющих зазоры средней линии. Этот параметр определяет, при какой толщине модели выполняется переключение с печати стенки в две линии на печать двух внешних стенок и одной центральной стенки посередине. Чем выше значение минимальной ширины линии нечетной стенки, тем выше максимальная ширина линии четной стенки. Максимальная ширина линии нечетной стенки вычисляется по формуле: 2 * минимальную ширину линии четной стенки." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "Печать тонких стенок" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Минимальный размер элемента" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Минимальная ширина линии нечетных стенок" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Горизонтальное расширение" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "Горизонтальное расширение первого слоя" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Горизонтальное расширение отверстия" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Если значение больше нуля, то горизонтальное расширение отверстия представляет собой величину смещения, применяемую ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий, отрицательные значения уменьшают размер отверстий. Если этот параметр включен, то его можно дополнительно настроить с помощью максимального диаметра горизонтального расширения отверстия." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Максимальный диаметр горизонтального расширения отверстия" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Если значение больше нуля, то горизонтальное расширение отверстия постепенно применяется к маленьким отверстиям (маленькие отверстия расширяются больше). Если установлено нулевое значение, то горизонтальное расширение отверстия будет применено ко всем отверстиям. Отверстия, превышающие максимальный диаметр горизонтального расширения отверстия, не расширяются." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Выравнивание шва по оси Z" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Пользовательский" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "Короткий путь" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Случайно" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "Острейший угол" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Позиция Z шва" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Сзади слева" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Назад" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Сзади справа" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Справа" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Спереди справа" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Спереди" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Спереди слева" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Слева" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "X координата для Z шва" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Y координата для Z шва" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Настройки угла шва" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Нет" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Спрятать шов" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Показать шов" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Спрятать или показать" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Интеллектуальное скрытие" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Привязка Z шва" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Дно / крышка" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Дно / крышка" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Экструдер для печати крышки" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Слои верхней оболочки" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Ширина линии крышки" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Ширина одной линии крышки." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Шаблон верхней оболочки" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "Шаблон, используемый для верхних слоёв оболочки." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Монотонный порядок верхней оболочки" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Направление линий верхней оболочки" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Экструдер дна/крышки" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Толщина дна/крышки" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Толщина крышки" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Слои крышки" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Толщина дна" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Слои дна" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "Начальные слои дна" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Шаблон для крышки/дна" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Шаблон слоёв для крышки/дна." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Нижний шаблон начального слоя" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Шаблон низа печати на первом слое." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Концентрический" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Соединение верхних/нижних полигонов" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Монотонный порядок дна/крышки" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Направление линии дна/крышки" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Маленькая ширина верха/низа" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Небольшие области вверху/внизу заполняются стенками вместо шаблона верха/низа по умолчанию. Это помогает избежать резких движений. По умолчанию отключено для самого верхнего (подверженного воздействию воздуха) слоя (см. Маленький верх/низ на поверхности)." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Маленькие вверху/внизу на поверхности" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Нет оболочки в Z-зазорах" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Количество внешних дополнительных оболочек" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Разрешить разглаживание" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Самый высокий слой разглаживания" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Шаблон разглаживания" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Монотонный порядок разглаживания" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Расстояние между линиями разглаживания" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Расстояние между линиями разглаживания." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Поток разглаживания" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Границы разглаживания" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Кромка вокруг модели может касаться другой модели там, где это нежелательно. При этом у моделей без кромок удаляются все кромки на этом расстоянии." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Расстояние от краёв модели. Разглаживание от края до края может выразиться в загибании краёв при печати." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Скорость разглаживания" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Скорость, на которой голова проходит над верхней оболочкой." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ускорение разглаживания" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список направлений линии при печати слоёв дна/крышки линиями или зигзагом. Элементы списка используются последовательно по мере печати слоёв, и, когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов)." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ускорение, с которым производится разглаживание." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Рывок разглаживания" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Процент перекрытия оболочек" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Перекрытие оболочек" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Ширина удаляемой оболочки" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Ширина удаляемой оболочки сверху" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Ширина удаляемой оболочки снизу" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Дистанция расширения оболочки" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Дистанция расширения оболочки сверху" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Расстояние расширения оболочки снизу" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Максимальный угол оболочки при расширении" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Минимальная ширина оболочки при расширении" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." - -msgctxt "infill label" -msgid "Infill" -msgstr "Заполнение" - -msgctxt "infill description" -msgid "Infill" -msgstr "Заполнение" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Экструдер для заполнения" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Плотность заполнения" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Отрегулируйте плотность заполнения при печати." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Дистанция линий заполнения" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Шаблон заполнения" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Треугольник" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Шестигранник из треугольников" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Куб" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Динамический куб" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Восьмигранник" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Четверть куба" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Концентрическое" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Крестовое" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Крестовое 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Молния" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Соединять линии заполнения" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Соединение полигонов заполнения" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Направления линии заполнения" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Список направлений линии при печати слоёв. Элементы списка используются последовательно по мере печати слоёв и когда конец списка будет достигнут, он начнётся сначала. Элементы списка отделяются запятыми и сам список заключён в квадратные скобки. По умолчанию, он пустой, что означает использование стандартных углов (45 и 135 градусов для линий из зигзага и 45 градусов для всех остальных шаблонов)." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Смещение заполнения по X" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Список полигонов с областями, в которые не должно заходить сопло." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Расстояние перемещения шаблона заполнения по оси X." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Список полигонов с областями, в которые голове запрещено заходить." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Смещение заполнения по Y" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Расстояние перемещения шаблона заполнения по оси Y." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Абсолютная позиция экструдера при старте" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Рандомизация начала заполнения" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Максимальная вариация адаптивных слоев" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Размер топографии адаптивных слоев" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Множитель для линии заполнения" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Размер шага вариации адаптивных слоев" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Количество дополнительных стенок заполнения" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Добавление дополнительных стенок вокруг области заполнения. Эти стенки могут уменьшить провисание верхних/нижних линий оболочки, что уменьшает необходимое количество верхних/нижних слоев оболочки без ухудшения качества за счет небольшого увеличения количества материала." "Эта функция может сочетаться с соединением полигонов заполнения для соединения всего участка заполнения в один путь экструзии без необходимости в движениях или откатах в случае правильной настройки." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Стенка динамического куба" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Процент перекрытие заполнения" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Перекрытие заполнения" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Дистанция окончания заполнения" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Толщина слоя заполнения" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Изменение шага заполнения" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Высота изменения шага заполнения" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Заполнение перед печатью стенок" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Минимальная область заполнения" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Поддержка заполнения" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Угол нависания при заполнении" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Толщина опоры края оболочки" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Толщина дополнительного объема, который поддерживает края оболочки." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Слои, которые поддерживают края оболочки" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Количество слоев, которые поддерживают края оболочки." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Угол поддержки шаблона заполнения «молния»" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Угол выступа шаблона заполнения «молния»" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Угол обрезки шаблона заполнения «молния»" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Угол выпрямления шаблона заполнения «молния»" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." - -msgctxt "material label" -msgid "Material" -msgstr "Материал" - -msgctxt "material description" -msgid "Material" -msgstr "Материал" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Температура сопла" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Температура для объема печати" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Температура сопла" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Температура, используемая при печати." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "Температура печати первого слоя" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "Температура, используемая для печати первого слоя." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "Начальная температура печати" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Конечная температура печати" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Модификатор скорости охлаждения экструзии" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Температура рабочего стола по умолчанию" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Температура стола" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "Температура стола для первого слоя" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Прилипание" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Тенденция к прилипанию" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Тенденция к прилипанию к поверхности." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками) в виде процентного отношения значений ширины линии для линий оболочки и внутренней стенки. Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое процентное значение, превышающее 50%, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Поверхностная энергия" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Настройте величину перекрытия между стенками и центральными линиями оболочки (конечными точками). Небольшое перекрытие позволяет стенкам надежно соединяться с оболочкой. Обратите внимание, что при одинаковой толщине оболочки и ширине линии стенки любое значение, превышающее половину ширины стенки, может привести к размещению любой оболочки за пределами стенки. Это обусловлено тем, что в этот момент расположение сопла экструдера оболочки может сместиться за середину стенки." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Поверхностная энергия." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Коэффициент масштабирования для компенсации усадки" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении XY (горизонтально)." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении Z (вертикально)." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Кристаллический материал" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Положение отката для защиты от капель" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Скорость отката для защиты от капель" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Положение отката для подготовки к отламыванию" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Скорость отката для подготовки к отламыванию" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Насколько быстро следует убирать материал, чтобы он отломился." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Температура подготовки к отламыванию" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Положение отката для отламывания" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Скорость отката для отламывания" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Скорость, при которой убираемый материал отломится чисто." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Температура отламывания" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Температура, при которой материал отломится чисто." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Скорость выдавливания заподлицо" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Скорость подачи материала после переключения на другой материал." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Длина выдавливания заподлицо" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Скорость выдавливания заканчивающегося материала" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Длина выдавливания заканчивающегося материала" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Максимальная продолжительность парковки" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Срок хранения материала вне сухого хранилища." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Коэффициент движения без нагрузки" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Коэффициент сжатия материала между питателем и камерой сопла, позволяющий определить, как далеко требуется продвинуть материал для переключения нити." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Поток" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Поток для стенки" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Компенсация потока на линиях стенки." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Поток для внешней стенки" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "Компенсация потока на внешней линии стенки." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "Поток для внутренних стенок" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Поток на самой внешней линии верхней поверхности" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Компенсация потока на самой внешней линии верхней поверхности." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Поток внутренней стены верхней поверхности" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Поток для верхних/нижних линий" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Компенсация потока на верхних/нижних линиях." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Поток для верхней оболочки" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Компенсация потока на линиях наверху печатаемой детали." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Поток для заполнения" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Компенсация потока на линиях заполнения." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Поток для юбки/каймы" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Компенсация потока на линиях юбки или каймы." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Поток для поддержек" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Компенсация потока на линиях структуры поддержек." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Поток для связующего слоя поддержек" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Компенсация потока на линиях крыши или низа поддержек." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Поток для крыши поддержек" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Компенсация потока на линиях крыши поддержек." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Поток для низа поддержек" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Компенсация потока на линиях низа поддержек." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "Поток черновой башни" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Компенсация потока на линиях черновой башни." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "Поток для первого слоя" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "Поток внутренней стенки первого слоя" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "Поток внешней стенки первого слоя" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "Компенсация потока на внешней линии стенки первого слоя." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "Поток низа первого слоя" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "Компенсация потока на нижних линиях первого слоя." - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Температура ожидания" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Температура сопла в момент, когда для печати используется другое сопло." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Является поддерживающим материалом" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Используется ли обычно этот материал в качестве поддерживающего материала при печати." - -msgctxt "speed label" -msgid "Speed" -msgstr "Скорость" - -msgctxt "speed description" -msgid "Speed" -msgstr "Скорость" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Скорость печати" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Скорость, на которой происходит печать." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Скорость заполнения" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Скорость, на которой печатается заполнение." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Скорость печати стенок" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Скорость, на которой происходит печать стенок." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Скорость печати внешней стенки" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "Скорость печати внутренних стенок" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Скорость самых внешних стен верхней поверхности" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Скорость печати самых внешних стен верхней поверхности." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Скорость внутренней поверхности верхней стены" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Скорость верхней оболочки" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Скорость, на которой печатаются слои верхней оболочки." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Скорость крышки/дна" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Скорость, на которой печатаются слои крышки/дна." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Скорость печати поддержек" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Скорость заполнения поддержек" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Скорость границы поддержек" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Скорость печати крыши поддержек" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Скорость печати низа поддержек" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "Скорость черновых башен" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Скорость перемещения" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Скорость, с которой выполняется перемещение." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "Скорость первого слоя" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "Скорость первого слоя" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "Скорость перемещений на первом слое" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Скорость юбки/каймы" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Скорость поднятия оси Z" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Количество медленных слоёв" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Коэффициент выравнивания потока" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "Разрешить управление ускорением" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Включить ускорение перемещения" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Ускорение печати" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Ускорение, с которым происходит печать." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Ускорение заполнения" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Ускорение, с которым печатается заполнение." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Ускорение стенок" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Ускорение, с которым происходит печать стенок." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Ускорение внешней стенки" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "Ускорение, с которым происходит печать внешних стенок." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "Ускорение внутренней стенки" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "Ускорение, с которым происходит печать внутренних стенок." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Ускорение внешней поверхности верхней стены" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Ускорение внутренней поверхности верхней стены" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Ускорение верхней оболочки" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Ускорение, с которым печатаются слои верхней оболочки." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Ускорение крышки/дна" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Ускорение, с которым печатаются слои крышки/дна." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Ускорение поддержек" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Ускорение, с которым печатаются структуры поддержки." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Ускорение заполнение поддержек" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Ускорение, с которым печатается заполнение поддержек." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Ускорение края поддержек" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Ускорение крыши поддержек" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Ускорение низа поддержек" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "Ускорение черновой башни" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "Ускорение, с которым печатается черновая башня." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Ускорение перемещения" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Ускорение, с которым выполняется перемещение." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "Ускорение первого слоя" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "Ускорение для первого слоя." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "Ускорение печати первого слоя" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "Ускорение при печати первого слоя." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "Ускорение перемещений первого слоя" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Ускорение юбки/каймы" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Включить управление рывком" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Включить рывок перемещения" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Рывок печати" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Изменение максимальной мгновенной скорости печатающей головки." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Рывок заполнения" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Рывок стены" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Рывок внешних стен" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "Рывок внутренних стен" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Рывок внутренних стен верхней поверхности" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Рывок внешних стен верхней поверхности" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Рывок верхней оболочки" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Рывок крышки/дна" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Рывок поддержек" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Рывок заполнение поддержек" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Рывок связи поддержек" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Рывок крыши поддержек" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Рывок низа поддержек" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "Рывок черновых башен" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Рывок перемещения" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "Рывок первого слоя" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "Изменение максимальной мгновенной скорости на первом слое." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "Рывок печати первого слоя" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "Рывок перемещения первого слоя" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "Ускорение для перемещения на первом слое." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Рывок юбки/каймы" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." - -msgctxt "travel label" -msgid "Travel" -msgstr "Перемещение" - -msgctxt "travel description" -msgid "travel" -msgstr "перемещение" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Разрешить откат" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Откат при смене слоя" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Откат нити при перемещении сопла на следующий слой." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Величина отката" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Длина нити материала, которая будет извлечена по время отката." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Скорость отката" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Скорость извлечения при откате" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Скорость с которой нить будет извлечена при откате." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Скорость заправки при откате" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Скорость с которой материал будет возвращён при откате." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объём при откате" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Минимальное перемещение при откате" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Максимальное количество откатов" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Окно минимальной расстояния экструзии" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Режим комбинга" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Выключен" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Везде" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Не на внешней поверхности" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Не в оболочке" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "В области заполнения" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Макс. расстояние комб. без отката" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Откат перед внешней стенкой" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Всегда откатывать материал при движении к началу внешней стенки." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Избегать напечатанных частей при перемещении" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Избегать поддержек при перемещении" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Дистанция обхода" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "X координата начала" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Y координата начала" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Поднятие оси Z при откате" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Поднятие оси Z только над напечатанными частями" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Высота поднятия оси Z" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Поднятие оси Z после смены экструдера" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Высота поднятия оси Z после смены экструдера" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Высота, на которую приподнимается ось Z после смены экструдера." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Охлаждение" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Охлаждение" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Включить вентиляторы" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Скорость вентилятора" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Скорость, с которой вращаются вентиляторы." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Обычная скорость вентилятора" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Максимальная скорость вентилятора" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Порог переключения на повышенную скорость" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "Начальная скорость вентилятора" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Обычная скорость вентилятора на высоте" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Обычная скорость вентилятора на слое" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Минимальное время слоя" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Минимальная скорость" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Подъём головы" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Температура малослойной печати" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." - -msgctxt "support label" -msgid "Support" -msgstr "Поддержки" - -msgctxt "support description" -msgid "Support" -msgstr "Поддержки" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Генерация поддержек" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Экструдер поддержек" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Экструдер заполнения поддержек" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "Экструдер первого слоя поддержек" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Экструдер связующего слоя поддержек" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Экструдер крыши поддержек" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Экструдер низа поддержек" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Структура поддержки" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Нормаль" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Дерево" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Максимальный угол ответвления" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Максимальный угол наклона ответвлений при их росте вокруг модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Диаметр ответвления" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Диаметр ствола" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Угол диаметра ответвления" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Размещение поддержек" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "От стола" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Везде" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Предпочтительный угол ответвления" - -msgctxt "support_tree_angle_slow description" -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 "Предпочтительный угол ответвлений, когда им не нужно избегать модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Используйте больший угол, чтобы ветки сливались быстрее." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Увеличение диаметра до модели" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Наибольшее увеличение диаметра ответвления, которое должно быть соединено с моделью, может произойти за счет слияния с ответвлениями, которые могут достигать печатной пластины. Увеличение этого значения сокращает время печати, но увеличивает площадь поддержки, которая опирается на модель" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Минимальная высота до модели" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Какой высоты должно быть ответвление, если оно размещено на модели. Предотвращает образование небольших пузырей поддержки. Этот параметр игнорируется, если ответвление поддерживает крышу поддержки." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "Диаметр первого слоя" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Диаметр, которого каждое ответвление пытается достичь при достижении печатной пластины. Улучшает адгезию к столу." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Плотность ответвлений" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Регулирует плотность поддержки, используемой для создания кончиков ответвлений. Большее значение приводит к улучшению качества выступов, но такие поддержки сложнее удалять. Используйте крышу поддержки для очень высоких значений или убедитесь, что плотность одинаково высокая сверху." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Диаметр кончика" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Диаметр верхушек кончиков ответвлений древовидной поддержки." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Ограничить охват ответвлений" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Оптимальный охват ответвлений" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Рекомендация относительно того, как далеко ответвления могут отходить от точек, которые они поддерживают. Ответвления могут нарушать это значение, чтобы добраться до места назначения (рабочей пластины или плоской части модели). Снижение этого значения может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Предпочтение опоры" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Предпочтительное размещение поддерживающих конструкций. Если структуры не могут быть размещены в предпочтительном месте, они будут размещены в другом месте, даже если это приведет к их размещению на модели." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "По возможности на печатной пластине" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "На модели, если требуется" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Угол нависания поддержки" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Шаблон поддержек" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Концентрические" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Крест" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Гироид" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Количество линий стенки поддержки" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Количество линий стенок связующего слоя поддержки" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Количество линий стенок крыши" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Количество линий стенок основания" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Соединение линий поддержки" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Соединённый зигзаг" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Плотность поддержек" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Дистанция между линиями поддержки" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "Дистанция между линиями поддержки первого слоя" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Направление линии заполнения поддержек" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартного угла 0 градусов." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Разрешить кайму поддержек" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Ширина каймы поддержки" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Количество линий каймы поддержки" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Зазор поддержки по оси Z" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Расстояние от верха/низа поддерживающей конструкции до печатаемого объекта. Этот зазор обеспечивает возможность удаления поддержек после печати модели. Верхний слой поддержки под моделью может быть долей обычного слоя." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Зазор поддержки сверху" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Расстояние между верхом поддержек и печатаемой моделью." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Дистанция поддержки снизу" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Расстояние от печатаемого объекта до нижней части поддержки. Обратите внимание, что это значение округляется в большую сторону до высоты следующего слоя." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Зазор поддержки по осям X/Y" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Приоритет зазоров поддержки" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y перекрывает Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z перекрывает X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Минимальный X/Y зазор поддержки" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Высота шага лестничной поддержки" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Максимальная ширина шага лестничной поддержки" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Минимальный угол уклона шага лестничной поддержки" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Расстояние объединения поддержки" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Горизонтальное расширение поддержки" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Толщина слоя заполнения поддержек" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Степень заполнения поддержек" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Высота шага изменения заполнения поддержек" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Минимальная зона поддержек" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Разрешить связующий слой поддержки" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Разрешить крышу поддержек" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Разрешить дно поддержек" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Толщина связующего слоя поддержки" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Толщина крыши" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Толщина низа поддержки" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Плотность связующего слоя поддержки" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Отрегулируйте плотность заполнения при печати." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Настройте плотность верха и низа структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Плотность крыши поддержек" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Регулирует плотность поддержки, используемой для создания кончиков ответвлений. Большее значение приводит к улучшению качества выступов, но такие поддержки сложнее удалять. Используйте крышу поддержки для очень высоких значений или убедитесь, что плотность одинаково высокая сверху." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Настраивает плотность структуры поддержек. Большее значение приводит к улучшению качества навесов, но такие поддержки сложнее удалять." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Дистанция линии крыши поддержек" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Укажите диаметр используемой нити." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Плотность низа поддержек" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Дистанция линии низа поддержек" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Шаблон связующего слоя" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Шаблон крыши поддержек" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Шаблон низа поддержек" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Линии" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Сетка" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Треугольники" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Концентрический" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Зигзаг" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Минимальная зона связующего слоя" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Минимальная зона верхней части поддержек" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Минимальная зона нижней части поддержек" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Горизонтальное расширение связующего слоя" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Величина смещения, применяемая к полигонам связующего слоя." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Горизонтальное расширение верхней части поддержек" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Величина смещения, применяемая к верхней части поддержек." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Горизонтальное расширение нижней части поддержек" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Величина смещения, применяемая к нижней части поддержек." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Приоритет интерфейса поддержки" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Как интерфейс поддержки и поддержка будут взаимодействовать при пересечении. В настоящее время реализовано только для крыши поддержки." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Предпочитать поддержку" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Предпочитать интерфейс" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Предпочитать линии поддержки" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Предпочитать линии интерфейса" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Оба пересекаются" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Направления линии связующего слоя поддержек" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Направления линии крыши поддержек" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Направления линии низа поддержек" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Список целочисленных направлений линии. Элементы списка используются последовательно по мере печати слоев, и, когда конец списка будет достигнут, он начнется сначала. Элементы списка отделяются запятыми, и сам список заключен в квадратные скобки. По умолчанию список пустой, что означает использование стандартных углов (45 либо 135 градусов, если связующий слой довольно толстый, или 90 градусов)." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Переопределение скорости вентилятора" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Поддерживаемая скорость вентилятора для оболочки" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Использовать башни" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Диаметр башен" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Диаметр специальных башен." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Максимальный диаметр, поддерживаемый башней" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Угол крыши башен" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Объект поддержки нависаний" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "На сцене есть объекты поддержки" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Прилипание к столу" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Прилипание" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "Разрешить наполнение материалом" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Начальная X позиция экструдера" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "X координата позиции, в которой сопло начинает печать." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Начальная Y позиция экструдера" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Y координата позиции, в которой сопло начинает печать." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Тип прилипания к столу" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Юбка" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Кайма" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Подложка" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Нет" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Экструдер первого слоя" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Экструдер юбки/каймы" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Экструдер нижних подложек" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Этот экструдер используется для печати первого слоя подложек. Используется при наличии нескольких экструдеров." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Экструдер серединных подложек" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Этот комплекс экструдеров используется для печати среднего слоя подложек. Используется при наличии нескольких экструдеров." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Экструдер верхних подложек" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Количество линий юбки" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Высота юбки" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "Печать внутренней линии юбки несколькими слоями позволяет легко ее удалить." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Дистанция до юбки" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Горизонтальное расстояние между юбкой и первым слоем печати." -"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Минимальная длина юбки/каймы" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Ширина каймы" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Количество линий каймы" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Расстояние до каймы" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Кайма заменяет поддержку" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Расположение кромки" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Напечата поля снаружи, внутри или на обеих сторонах модели. В зависимости от модели это помогает уменьшить количество козырьков, которые необходимо потом снять, обеспечивая при этом надлежащее прилегание к основе." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Только снаружи" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Только внутри" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Везде" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Поля для избегания кромки" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Кромка вокруг модели может касаться другой модели там, где это нежелательно. При этом у моделей без кромок удаляются все кромки на этом расстоянии." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Умная кайма" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "Меняет местами порядок печати внутренней и следующей внутренней линий каймы. Это упрощает удаление каймы." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Дополнительное поле подложки" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Дополнительная базовая кромка фундамента" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Если основание фундамента включено, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Средняя дополнительная кромка фундамента" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Если включена средняя часть фундамента, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Дополнительная кромка фундамента сверху" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Если фундамент сверху включен, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Удаление внутренних углов подложки" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Удаление основания фундамента внутри углов" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Удалите внутренние углы основания фундамента, в результате чего фундамент станет выпуклым." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Удалить среднюю часть фундамента в углах" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Удалите внутренние углы средней части фундамента, в результате чего фундамент станет выпуклым." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Удалить верхнюю часть фундамента внутри углов" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Удалите внутреннюю часть из верхней части фундамента, в результате чего фундамент станет выпуклым." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Сглаживание подложки" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Сглаживание основания фундамента" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Этот параметр определяет, насколько закруглены внутренние углы контура основания фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Сглаживание средней части фундамента" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Этот параметр определяет, насколько закруглены внутренние углы среднего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Сглаживание верхней части фуендамента" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Этот параметр определяет, насколько закруглены внутренние углы верхнего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Воздушный зазор подложки" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "Z наложение первого слоя" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Сделайте так, чтобы первый и второй слои модели перекрывались в направлении Z, чтобы компенсировать потерю нити в воздушном зазоре. Все модели выше первого слоя модели будут сдвинуты вниз на эту величину.\nМожно отметить, что иногда из-за этой настройки второй слой печатается ниже начального слоя. Это предполагаемое поведение" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Толщина нижнего слоя подложки" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Ширина линии нижнего слоя подложки" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Дистанция между линиями нижнего слоя подложки" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Серединные слои подложек" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Толщина середины подложки" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Толщина слоёв середины подложки." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Ширина линий середины подложки" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Дистанция между слоями середины подложки" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Верхние слои подложки" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Толщина верхнего слоя подложки" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Толщина верхних слоёв поддержки." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Ширина линий верха подложки" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Дистанция между линиями верха поддержки" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Порядок монотонной верхней поверхности фундамента" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Печатайте линии верхней поверхности фундамента в таком порядке, чтобы они всегда перекрывались со смежными линиями в одном направлении. Печать займет немного больше времени, но поверхность будет выглядеть более единообразной, что также видно на нижней поверхности модели." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Количество стен на фундаменте" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "Количество контуров для печати вокруг линейного рисунка фундамента." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Счетчик стен основания подложки" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Количество промежуточных стен на фундаменте" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "Количество контуров для печати вокруг линейного рисунка в средних слоях фундамента." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Количество стен наверху фундамента " - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "Количество контуров для печати вокруг линейного рисунка в верхних слоях фундамента." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Скорость печати подложки" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Скорость, на которой печатается подложка." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Скорость печати низа подложки" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Скорость печати середины подложки" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Скорость печати верха подложки" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Ускорение печати подложки" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Ускорение, с которым печатается подложка." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Ускорение печати низа подложки" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Ускорение, с которым печатаются нижние слои подложки." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Ускорение печати середины подложки" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Ускорение, с которым печатаются средние слои подложки." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Ускорение печати верха подложки" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Ускорение, с которым печатаются верхние слои подложки." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Рывок подложки" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Скорость изменения ускорений при печати подложки." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Рывок печати низа подложки" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Рывок печати середины подложки" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Рывок печати верха подложки" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Скорость вентилятора для подложки" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Скорость вращения вентилятора при печати подложки." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Скорость вентилятора для низа подложки" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Скорость вентилятора при печати нижнего слоя подложки." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Скорость вентилятора для середины подложки" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Скорость вентилятора при печати средних слоёв подложки." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Скорость вентилятора для верха подложки" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Скорость вентилятора при печати верхних слоёв подложки." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "Два экструдера" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Параметры, используемые для печати несколькими экструдерами." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "Разрешить черновую башню" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Тип основной башни" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "Как создать основную башню:
    • Нормально: создайте корзину, в которую будут загружены вторичные материалы
    • С чередованием: создайте как можно более редкую основную башню. Это сэкономит время и нить, но это возможно только в том случае, если используемые материалы прилипают друг к другу
    " - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Нормальная" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Чередующаяся" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "Размер черновой башни" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "Ширина черновой башни." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "Минимальный объём черновой башни" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Максимальное расстояние моста основной башни" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "Максимальная длина ветвей, которые можно напечатать по воздуху." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "X позиция черновой башни" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "X координата позиции черновой башни." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "Y позиция черновой башни" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "Y координата позиции черновой башни." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "Очистка неактивного сопла на черновой башне" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "После печати черновой башни одним соплом, вытирает вытекший материал из другого сопла об эту башню." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Основание башни подготовки" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "При переключении принтера на другой экструдер между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность вытекания материала и его прилипание к внешней части печатаемой модели." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Размер основания башни подготовки" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Ширина бортика/основания башни подготовки. Большее основание улучшает адгезию к платформе для печати, но также уменьшает эффективную площадь печати." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Высота основания башни подготовки" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Высота основания башни подготовки. Увеличение этого значения приведет к созданию более устойчивой башни подготовки, так как основание будет шире. Если это значение слишком низкое, основание башни подготовки не будет достаточно устойчивым." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Наклон основания башни подготовки" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Множитель, используемый для наклона основания башни подготовки. Если увеличить это значение, основание станет более узким. Если уменьшить - основание станет толще." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Шаг линий рафта башни подготовки" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Расстояние между линиями рафта уникального слоя рафта башни подготовки. Большой шаг облегчает удаление рафта с платформы для печати." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Печатать защиту от капель" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Угол защиты от капель" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Дистанция до защиты от капель" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки защиты от модели, по осям X/Y." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Величина отката при смене экструдера" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Скорость отката при смене экструдера" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Скорость отката при смене экструдера" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Скорость наполнения при смене экструдера" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при смене экструдера" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Дополнительный объем материала для заполнения после смены экструдера." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ремонт объектов" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Сделайте объекты более подходящими для 3D-печати." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Объединение перекрывающихся объёмов" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Удаляет все отверстия" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Обширное сшивание" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Сохранить отсоединённые поверхности" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Перекрытие касающихся объектов" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Удалить пересечения объектов" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Чередование объектов" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Удалить первые пустые слои" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Максимальное разрешение" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Максимальное разрешение перемещения" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Максимальное отклонение" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Максимальное отклонение площади экструзии" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Максимальное допустимое отклонение площади экструдирования при удалении промежуточных точек от прямой линии. Промежуточная точка может служить точкой изменения ширины длинной прямой линии. Следовательно, если ее удалить, линия будет иметь одинаковую ширину и вследствие этого площадь экструдирования немного сократится (или увеличится). Если увеличить это значение, можно будет заметить небольшой эффект недостаточного (или чрезмерного) экструдирования между прямыми параллельными стенками, так как будет разрешено удалить больше промежуточных точек изменения ширины. При увеличении этого значения точность печати понизится, а значение g-кода уменьшится." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Включить плавное движение" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Расстояние смещения движения жидкости" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Точки расстояния смещаются для сглаживания пути" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Движение жидкости на небольшом расстоянии" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Точки расстояния смещаются для сглаживания пути" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Угол движения жидкости" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Если сегмент траектории отклоняется более, чем на этот угол от общего движения, он сглаживается." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Специальные режимы" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Нетрадиционные способы печати моделей." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Последовательная печать" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Везде" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Все за раз" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "По отдельности" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Установить последовательность печати вручную" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Все параметры, которые влияют на разрешение печати. Эти параметры сильно влияют на качество (и время печати)" msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Позволяет упорядочить список объектов, чтобы вручную установить последовательность печати. Первым будет напечатан первый объект из списка." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Заполнение объекта" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Чередующаяся стенка" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Порядок обработки объекта" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Ограничивающий объект" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Форма" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Минимальная ширина формы" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Минимальное расстояние между внешними сторонами формы и модели." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Высота крыши формы" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Угол формы" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Поддерживающий объект" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Блокиратор поддержек" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Поверхностный режим" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Нормаль" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Поверхность" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Оба варианта" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Спирально печатать внешний контур" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Сглаживать спиральные контуры" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Относительная экструзия" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Экспериментальное" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Функции, еще не раскрытые до конца." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Допуск слайсинга" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Середина" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Исключение" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Включение" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Оптимизация перемещения заполнения" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "График температуры потока" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Минимальная длина окружности полигона" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "Создать взаимосвязанную структуру" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "Ширина взаимосвязанных балок" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "Ширина балок взаимосвязанной конструкции." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "Ориентация взаимосвязанной структуры" - -msgctxt "interlocking_orientation description" -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 "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "Количество слоев взаимосвязанных балок" - -msgctxt "interlocking_beam_layer_count description" -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 "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "Глубина взаимосвязанной структуры" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "Избегание границ взаимосвязанной структуры" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Разбить поддержки на части" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Размер части поддержек" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Количество частей линий поддержки" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Разрешить печать кожуха" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Дистанция X/Y до кожуха" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Ограничение кожуха" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Полная" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Ограниченная" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Высота кожуха" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Сделать нависания печатаемыми" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Максимальный угол модели" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Максимальная площадь отверстия выступа" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Разрешить накат" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Объём наката" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Минимальный объём перед накатом" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Скорость наката" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Размер карманов креста 3D" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Изображение плотности перекрестного заполнения" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Изображение плотности перекрестного заполнения для поддержки" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Конические поддержки" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Нижняя часть поддержек становится меньше, чем верхняя." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Угол конических поддержек" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Минимальная ширина конических поддержек" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Нечёткая оболочка" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Только шершавая оболочка снаружи" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Дрожание только контуров деталей, но не отверстий." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Толщина шершавости оболочки" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Плотность шершавой оболочки" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Дистанция между точками шершавой оболочки" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Макс. смещение экструзии для компенсации расхода" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Коэффициент компенсации расхода" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Использовать адаптивные слои" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "В случае адаптивных слоев расчет высоты слоя осуществляется в зависимости от формы модели." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Максимальная вариация адаптивных слоев" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Размер шага вариации адаптивных слоев" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Размер топографии адаптивных слоев" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Угол нависающей стенки" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Скорость печати нависающей стенки" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Активация настроек мостиков" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Минимальная длина стенки мостика" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Пороговое значение поддержки для оболочки мостика" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Максимальная плотность разреженного заполнения мостика" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Накат стенки мостика" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Скорость печати стенки мостика" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Скорость, с которой происходит печать стенок мостика." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Поток для стенки мостика" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Скорость печати оболочки мостика" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Скорость, с которой печатаются области оболочки мостика." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Поток для оболочки мостика" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Плотность оболочки мостика" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Скорость вентилятора для мостика" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "В мостике несколько слоев" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Скорость печати второй оболочки мостика" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "Скорость, с которой печатается слой второй оболочки мостика." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Поток для второй оболочки мостика" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Плотность второй оболочки мостика" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Скорость вентилятора для второй оболочки мостика" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Скорость печати третьей оболочки мостика" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Скорость, с которой печатается слой третьей оболочки мостика." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Поток для третьей оболочки мостика" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Плотность третьей оболочки мостика" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Скорость вентилятора для третьей оболочки мостика" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Очистка сопла между слоями" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Объем материала между очистками" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Включение отката с очисткой" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Откат нити при движении сопла вне зоны печати." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Расстояние отката с очисткой" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Дополнительно заполняемый объем при откате с очисткой" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Скорость отката с очисткой" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Скорость отката при откате с очисткой" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Скорость заправки при откате с очисткой" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Скорость, с которой нить заправляется при откате с очисткой." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Приостановка очистки" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Приостановка после отмены отката." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Поднятие оси Z при очистке" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Высота поднятия оси Z при очистке" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Расстояние, на которое приподнимается ось Z." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Скорость поднятия при очистке" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Скорость перемещения оси Z во время поднятия." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Позиция X очистной щетки" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Расположение X, в котором запустится скрипт очистки." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Количество повторов очистки" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Количество перемещений сопла поперек щетки." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Расстояние перемещения при очистке" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Расстояние перемещения головки назад и вперед поперек щетки." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Максимальный размер малого отверстия" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Максимальная длина малого элемента" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Скорость для малых элементов" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Скорость первого слоя для небольших объектов" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Чередование объектов" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Чередуйте направления стенок каждые вторые слой и вставку. Это полезно для материалов, которые могут накапливать напряжение, например для металлической печати." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Группировать внешние стены" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Алюминий" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Всегда выполнять запись активного инструмента" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Печать отчетов о процессе" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Всегда откатывать материал при движении к началу внешней стенки." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Отчеты о событиях, выходящих за установленные пороговые значения" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Сумма смещения, применяемая ко всем полигонам на каждом слое. Позитивные значения могут возместить потери для слишком больших отверстий; негативные значения могут возместить потери для слишком малых отверстий." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Включить отчеты о процессе печати" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "Сумма смещений, применяемая ко всем полигонам первого слоя. Отрицательное значение может компенсировать \"хлюпанье\" первого слоя, известное как \"слоновая нога\"." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Включите отчеты о процессе печати для установки пороговых значений для возможного обнаружения дефектов." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Величина смещения, применяемая ко всем полигонам поддержки в каждом слое. Положительные значения могут сглаживать зоны поддержки и приводить к укреплению структур поддержек." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Предупреждение о потоке" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Величина смещения, применяемая к нижней части поддержек." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Ограничение предупреждения о потоке для обнаружения." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Величина смещения, применяемая к верхней части поддержек." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Ограничение потока" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Величина смещения, применяемая к полигонам связующего слоя." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Ограничение аномалий потока для обнаружения." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Величина отката нити, предотвращающего просачивание во время последовательности очистки." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Предупреждение о Температуре печати " +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Дополнение к радиусу от центра каждого куба для проверки границ модели, используется для принятия решения о разделении куба. Большие значения приводят к утолщению стенок мелких кубов по мере приближения к границе модели." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Ограничение на предупреждение о температуре печати для обнаружения." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Блокиратор поддержек" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Ограничение температуры печати" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Положение отката для защиты от капель" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Ограничение на обнаружение аномалий температуры печати." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Скорость отката для защиты от капель" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Предупреждение о температуре объема сборки " +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Применить смещение экструдера к системе координат. Влияет на все экструдеры." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Ограничение предупреждения о температуре объема сборки для обнаружения." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Создать взаимосвязанную структуру балок в местах соприкосновения моделей. Это улучшит адгезию между моделями, особенно моделями из разных материалов." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Избегать напечатанных частей при перемещении" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Избегать поддержек при перемещении" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Назад" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Сзади слева" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Сзади справа" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Оба варианта" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Оба пересекаются" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Слои дна" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Нижний шаблон начального слоя" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Расстояние расширения оболочки снизу" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Ширина удаляемой оболочки снизу" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Толщина дна" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Плотность ответвлений" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Диаметр ответвления" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Угол диаметра ответвления" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Положение отката для подготовки к отламыванию" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Скорость отката для подготовки к отламыванию" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Температура подготовки к отламыванию" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Положение отката для отламывания" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Скорость отката для отламывания" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Температура отламывания" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Разбить поддержки на части" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Скорость вентилятора для мостика" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "В мостике несколько слоев" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Плотность второй оболочки мостика" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Скорость вентилятора для второй оболочки мостика" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Поток для второй оболочки мостика" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Скорость печати второй оболочки мостика" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Плотность оболочки мостика" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Поток для оболочки мостика" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Скорость печати оболочки мостика" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Пороговое значение поддержки для оболочки мостика" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Максимальная плотность разреженного заполнения мостика" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Плотность третьей оболочки мостика" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Скорость вентилятора для третьей оболочки мостика" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Поток для третьей оболочки мостика" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Скорость печати третьей оболочки мостика" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Накат стенки мостика" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Поток для стенки мостика" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Скорость печати стенки мостика" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Кайма" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Поля для избегания кромки" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Расстояние до каймы" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Количество линий каймы" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Расположение кромки" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Кайма заменяет поддержку" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Ширина каймы" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Тип прилипания к столу" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Экструдер первого слоя" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Тип прилипания к столу" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Материал рабочего стола" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Форма стола" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Температура стола" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "Температура стола для первого слоя" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Температура для объема печати" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Предел температуры объема сборки" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Ограничение на аномалию температуры объема сборки для обнаружения." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Предупреждение о температуре объема сборки " -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Параметры командной строки" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Активируя эту настройку, ваша башня подготовки получит бортик, даже если модель его не требует. Если вам нужна более устойчивая основа для высокой башни, вы можете увеличить высоту основания." msgctxt "center_object label" msgid "Center Object" msgstr "Центрирование объекта" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "Изменяет геометрию печатаемой модели так, чтобы снизить требования к объёму поддержек. Крутые навесы станут поменьше. Нависающие области опустятся и станут более вертикальными." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Выберите одну из доступных техник создания поддержки. Поддержка со стандартной структурой создается непосредственно под выступающими деталями, и затем опускает эти области вниз линейно. У поддержки с древовидной структурой ветви тянутся к выступающим областям и модель опирается на концы этих ветвей, которые охватывают модель с разных сторон, чтобы таким образом максимально поддерживать ее по всей площади печатной пластины." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Скорость наката" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Объём наката" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Накат отключает экструзию материала на завершающей части пути. Вытекающий материал используется для печати на завершающей части пути, уменьшая строчность." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Режим комбинга" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Комбинг удерживает сопло внутри напечатанных зон при перемещении. Это выражается в небольшом увеличении пути, но уменьшает необходимость в откатах. При отключенном комбинге выполняется откат материала, а сопло передвигается в следующую точку по прямой. Также можно не применять комбинг над верхними/нижними областями оболочки либо разрешить комбинг только в области заполнения." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Параметры командной строки" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Концентрическое" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Концентрический" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Концентрический" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Угол конических поддержек" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Минимальная ширина конических поддержек" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Соединять линии заполнения" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Соединение полигонов заполнения" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Соединение линий поддержки" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Соединённый зигзаг" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Соединение верхних/нижних полигонов" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Соединение путей заполнения на участках, где они проходят рядом. Для шаблонов заполнения, состоящих из нескольких замкнутых полигонов, активация данной настройки значительно сокращает время перемещения." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Соединяет зигзаги. Это увеличивает прочность такой поддержки." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Соединяет концы линий поддержки. Активация этой настройки может сделать поддержку более крепкой и компенсировать недостаточную экструзию, но для этого потребуется больше материала." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "Соединение мест пересечения шаблона заполнения и внутренних стенок с использованием линии, повторяющей контур внутренней стенки. Использование этой функции улучшает сцепление заполнения со стенками и снижает влияние заполнения на качество вертикальных поверхностей. Отключение этой функции снижает расход материала." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Соединение верхних/нижних путей оболочки на участках, где они проходят рядом. При использовании концентрического шаблона активация данной настройки значительно сокращает время перемещения, но, учитывая возможность наличия соединений на полпути над заполнением, эта функция может ухудшить качество верхней поверхности." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Управляет влиянием углов на контуре модели на позицию шва. «Нет» означает отсутствие влияния. «Спрятать шов» означает размещение шва с наибольшей вероятностью внутри угла. «Показать шов» означает размещение шва с наибольшей вероятностью снаружи угла. «Спрятать или показать» означает выбор варианта в зависимости от ситуации. Функция «Интеллектуальное скрытие» допускает размещение швов как внутри, так и снаружи углов, но чаще размещает их внутри." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Преобразовывать каждую линию заполнения во множество линий. Дополнительные линии не пересекаются, а уклоняются от столкновения друг с другом. Благодаря этому заполнение становится более плотным, но время печати и расход материалов увеличиваются." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Скорость охлаждения" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Охлаждение" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Охлаждение" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Крестовое" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Крест" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Крестовое 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Размер карманов креста 3D" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Изображение плотности перекрестного заполнения для поддержки" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Изображение плотности перекрестного заполнения" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Кристаллический материал" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Куб" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Динамический куб" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Стенка динамического куба" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Ограничивающий объект" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "График, объединяющий поток (в мм3 в секунду) с температурой (в градусах Цельсия)." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Стандартное ускорение" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Температура рабочего стола по умолчанию" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Обычный рывок материала" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Температура сопла" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Обычный X-Y рывок" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Обычный Z рывок" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Стандартное изменение ускорения для движения в горизонтальной плоскости." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Стандартное изменение ускорения для мотора по оси Z." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Стандартное изменение ускорения для мотора, подающего материал." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Обнаружение мостиков и изменение скорости печати, настроек потока и вентилятора во время печати мостиков." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Определяет порядок печати стенок. Если сначала печатать наружные стенки, это поможет более точно определять размеры стенок, поскольку дефекты внутренних стенок не смогут распространяться наружу. Если печатать внешние стенки позже, это позволит лучше укладывать их друг на друга при печати выступов. При неравномерном количестве общих внутренних стен «центральная последняя линия» всегда печатается последней." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Определяет приоритет данного объекта при вычислении нескольких перекрывающихся заполняющих объектов. К областям с несколькими перекрывающимися заполняющими объектами будут применяться настройки объекта более высокого порядка. Заполняющий объект более высокого порядка будет модифицировать заполнение объектов более низких порядков и обычных объектов." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать что-либо над ним. Измеряется под углом с учетом толщины слоя." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Определяет, когда слой шаблона заполнения «молния» должен поддерживать модель над ним. Измеряется под углом с учетом толщины." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Диаметр" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Увеличение диаметра до модели" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Диаметр, которого каждое ответвление пытается достичь при достижении печатной пластины. Улучшает адгезию к столу." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Различные варианты, которые помогают улучшить прилипание пластика к столу. Кайма добавляет однослойную плоскую область вокруг основания печатаемой модели, предотвращая её деформацию. Подложка добавляет толстую сетку с крышей под модель. Юбка - это линия, печатаемая вокруг модели, но не соединённая с ней." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "Запрещенные области" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Дистанция между линиями заполнения. Этот параметр вычисляется из плотности заполнения и ширины линии заполнения." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линиями структуры поддержек первого слоя. Этот параметр вычисляется по плотности поддержек." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Дистанция между линиями низа поддержек. Этот параметр вычисляется из Плотности низа поддержек, но может быть указан отдельно." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Дистанция между линиями крыши поддержек. Этот параметр вычисляется из Плотности крыши поддержек, но может быть указан отдельно." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Дистанция между напечатанными линями структуры поддержек. Этот параметр вычисляется по плотности поддержек." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Расстояние от печатаемого объекта до нижней части поддержки. Обратите внимание, что это значение округляется в большую сторону до высоты следующего слоя." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Расстояние между верхом поддержек и печатаемой моделью." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Расстояние от верха/низа поддерживающей конструкции до печатаемого объекта. Этот зазор обеспечивает возможность удаления поддержек после печати модели. Верхний слой поддержки под моделью может быть долей обычного слоя." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Расстояние, на которое продолжается движение сопла после печати каждой линии заполнения, для обеспечения лучшего связывания заполнения со стенками. Этот параметр похож на перекрытие заполнения, но без экструзии и только с одной стороны линии заполнения." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Расстояние перемещения, добавленное после печати внешней стенки, чтобы лучше спрятать Z шов." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки кожуха от модели, по осям X/Y." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Дистанция до стенки защиты от модели, по осям X/Y." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Зазор между структурами поддержек и нависанием по осям X/Y." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Расстояние между структурами поддержек и печатаемой модели по осям X/Y." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Точки расстояния смещаются для сглаживания пути" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Точки расстояния смещаются для сглаживания пути" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Не генерировать области заполнения меньше чем указано здесь (вместо этого использовать оболочку)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Высота кожуха" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Ограничение кожуха" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Дистанция X/Y до кожуха" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Объект поддержки нависаний" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "Два экструдера" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Эллиптическая" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "Разрешить управление ускорением" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Активация настроек мостиков" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Разрешить накат" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Конические поддержки" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Разрешить печать кожуха" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Включить плавное движение" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Разрешить разглаживание" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Включить управление рывком" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Разрешить управление температурой сопла" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Печатать защиту от капель" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "Разрешить наполнение материалом" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "Разрешить черновую башню" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Включить вентиляторы" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Включить отчеты о процессе печати" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Разрешить откат" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Разрешить кайму поддержек" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Разрешить дно поддержек" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Разрешить связующий слой поддержки" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Разрешить крышу поддержек" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Включить ускорение перемещения" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Включить рывок перемещения" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Разрешает печать внешней защиты от вытекших капель. Создаёт ограду вокруг модели, о которую вытирается материал, вытекший из второго сопла, если оно находится на той же высоте, что и первое сопло." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Включите отчеты о процессе печати для установки пороговых значений для возможного обнаружения дефектов." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "Включите заполнение небольших областей (до «маленькой ширины вверху/внизу») в самом верхнем слое оболочки (которые подвержены воздействию воздуха) стенками вместо шаблона по умолчанию." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "Разрешает управление скоростью изменения ускорений головы по осям X или Y. Увеличение данного значения может сократить время печати за счёт его качества." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Разрешает регулирование ускорения головы. Увеличение ускорений может сократить время печати за счёт качества печати." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Разрешает использование вентиляторов во время печати. Применение вентиляторов улучшает качество печати слоёв с малой площадью, а также мостов и нависаний." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "Завершающий G-код" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Длина выдавливания заканчивающегося материала" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Скорость выдавливания заканчивающегося материала" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "Принудительная печать каймы вокруг модели, даже если пространство в ином случае было бы занято поддержкой. При этом некоторые участки первого слоя поддержки заменяются участками каймы." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Везде" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Везде" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Исключение" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Экспериментальное" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Показать шов" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Обширное сшивание" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Обширное сшивание пытается сшить открытые отверстия в объекте, закрывая их полигонами. Эта опция может добавить дополнительное время во время обработки." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Количество дополнительных стенок заполнения" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Количество внешних дополнительных оболочек" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Дополнительный объем материала для заполнения после смены экструдера." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Начальная X позиция экструдера" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Начальная Y позиция экструдера" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Z координата начала печати" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Общий нагреватель экструдеров" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Общее сопло экструдеров" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Модификатор скорости охлаждения экструзии" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Поправочный коэффициент ширины экструзии в зависимости от скорости. При значении 0 % скорость перемещения сохраняется на уровне скорости печати. При значении 100 % скорость перемещения корректируется таким образом, чтобы расход (в мм3/с) оставался постоянным, то есть линии в половину нормальной ширины линии, печатаются в два раза быстрее, а линии вдвое шире — в два раза быстрее. Значение выше 100 % может помочь компенсировать более высокое давление, необходимое для экструдирования широких линий." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Скорость вентилятора" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Переопределение скорости вентилятора" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Контуры элементов с длиной меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Функции, еще не раскрытые до конца." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Диаметр колесика питателя" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Конечная температура печати" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Откат встроенного программного обеспечения" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "Экструдер первого слоя поддержек" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Поток" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Коэффициент выравнивания потока" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Ограничение потока" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Коэффициент компенсации расхода" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Макс. смещение экструзии для компенсации расхода" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "График температуры потока" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Предупреждение о потоке" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "Компенсация потока для первого слоя: объем выдавленного материала на первом слое умножается на этот коэффициент." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "Компенсация потока на нижних линиях первого слоя." + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Компенсация потока на линиях заполнения." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Компенсация потока на линиях крыши или низа поддержек." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Компенсация потока на линиях наверху печатаемой детали." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Компенсация потока на линиях черновой башни." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Компенсация потока на линиях юбки или каймы." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Компенсация потока на линиях низа поддержек." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Компенсация потока на линиях крыши поддержек." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Компенсация потока на линиях структуры поддержек." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "Компенсация потока на внешней линии стенки первого слоя." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "Компенсация потока на внешней линии стенки." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Компенсация потока на самой внешней линии верхней поверхности." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стены верхней поверхности для всех линий стены, кроме самой внешней." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Компенсация потока на верхних/нижних линиях." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней, но только для первого слоя." + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "Компенсация потока на линиях стенки для всех линий, за исключением внешней." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Компенсация потока на линиях стенки." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Компенсация потока: объём выдавленного материала умножается на этот коэффициент." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Угол движения жидкости" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Расстояние смещения движения жидкости" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Движение жидкости на небольшом расстоянии" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Длина выдавливания заподлицо" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Скорость выдавливания заподлицо" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Для тонких структур, шириной не более одного или двух размеров сопла, ширину линии необходимо изменить таким образом, чтобы она соответствовала толщине модели. Этот параметр задает минимальную допустимую ширину линии стенки. Минимальная ширина линии одновременно определяет максимальную ширину линии, поскольку выполняется переход от N к N+1 стенкам при некоторой геометрической толщине, где N стенок —— широкие, а N+1 стенок — узкие. Самая широкая возможная линия стенки в два раза превышает минимальную ширину линии стенки." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Спереди" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Спереди слева" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Спереди справа" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Полная" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Нечёткая оболочка" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Плотность шершавой оболочки" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Только шершавая оболочка снаружи" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Дистанция между точками шершавой оболочки" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Толщина шершавости оболочки" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "Вариант G-кода" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "Команды в G-коде, которые будут выполнены в самом конце, разделенные с помощью " +"." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "Команды в G-коде, которые будут выполнены в самом начале, разделенные с помощью " +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Идентификатор материала, устанавливается автоматически." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Высота портала" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "Создать взаимосвязанную структуру" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Генерация поддержек" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "Создайте кайму внутри участков заполнения поддержек первого слоя. Эта кайма печатается под поддержкой, а не вокруг нее. Включение этого параметра увеличивает адгезию поддержки к рабочему столу." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Генерирует плотный слой между моделью и поддержкой. Создаёт поверхность сверху поддержек, на которой печатается модель, и снизу, при печати поддержек на модели." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Генерирует плотный слой материала между низом поддержки и моделью. Создаёт поверхность между моделью и поддержкой." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Генерирует плотный слой материала между крышей поддержки и моделью. Создаёт поверхность между моделью и поддержкой." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Генерация структур для поддержки нависающих частей модели. Без этих структур такие части будут складываться во время печати." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Стекло" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Проходить по верхней оболочке еще раз, но на этот раз выдавливая очень мало материала. Это приводит к плавлению пластика, что создает более гладкую поверхность. Давление в камере сопла поддерживается на высоком уровне, благодаря чему складки на поверхности заполняются материалом." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Высота изменения шага заполнения" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Изменение шага заполнения" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Высота шага изменения заполнения поддержек" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Степень заполнения поддержек" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Постепенно снижать температуру до этой температуры при печати на пониженных скоростях из-за минимального времени нанесения слоя." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Сетка" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Группировать внешние стены" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Гироид" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Есть стабилизация температуры для объема печати" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Имеет подогреваемый стол" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Скорость нагрева" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Длина зоны нагрева" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Ограничение по высоте для кожуха. Выше указанного значение кожух печататься не будет." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Спрятать шов" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Спрятать или показать" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Горизонтальное расширение отверстия" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Максимальный диаметр горизонтального расширения отверстия" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Отверстия и контуры деталей с диаметром меньше этого значения будут напечатаны с использованием функции «Скорость для малых элементов»." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Горизонтальное расширение" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Горизонтальный коэффициент масштабирования для компенсации усадки" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Насколько сильно можно растянуть материал при нагревании, до тех пор пока он не отломится." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Насколько далеко необходимо убрать материал, чтобы он перестал капать." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Означает, насколько далеко следует переместить материал, чтобы компенсировать изменение расхода, в процентах от расстояния, на которое перемещается материал за одну секунду экструзии." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Насколько далеко следует убрать материал, чтобы он отломился чисто." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Насколько быстро следует убирать материал, чтобы он отломился." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Насколько быстро необходимо убрать материал во время его замены, чтобы не допустить появления капель." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Скорость подачи материала после замены пустой катушки на новую катушку с тем же материалом." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Скорость подачи материала после переключения на другой материал." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Срок хранения материала вне сухого хранилища." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси X." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Y." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Количество шагов шагового двигателя, приводящее к перемещению на один миллиметр по оси Z." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Количество шагов шаговых двигателей, приводящее к перемещению колесика питателя на один миллиметр по его окружности." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при замене пустой катушки на новую катушку с тем же материалом." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Объем материала, используемый для выдавливания предыдущего материала из сопла (измеряется длиной нити) при переключении на другой материал." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Показывает, насколько материал каждого экструдера предположительно вытянут от наконечника общего сопла по завершении запуска сценария gcode принтера; значение должно быть равно длине общей части каналов сопла или превышать ее." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Как интерфейс поддержки и поддержка будут взаимодействовать при пересечении. В настоящее время реализовано только для крыши поддержки." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Какой высоты должно быть ответвление, если оно размещено на модели. Предотвращает образование небольших пузырей поддержки. Этот параметр игнорируется, если ответвление поддерживает крышу поддержки." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Если поддержка области оболочки составляет меньше указанного процентного значения от ее площади, печать должна быть выполнена с использованием настроек мостика. В противном случае печать осуществляется с использованием стандартных настроек оболочки." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Если сегмент траектории отклоняется более, чем на этот угол от общего движения, он сглаживается." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Если настройка активна, второй и третий слои над воздушным зазором печатаются с использованием указанных далее настроек. В противном случае эти слои печатаются с использованием стандартных настроек." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Если ожидаются переходы туда и обратно между разным количеством стенок в быстрой последовательности, не выполняйте переходы совсем. Удалите переходы, если расстояние между ними меньше значения этого параметра." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если основание фундамента включено, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если подложка включена, это дополнительное поле вокруг модели, которая также имеет подложку. Увеличение этого значения создаст более крепкую поддержку, используя больше материала и оставляя меньше свободной области для печати." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если включена средняя часть фундамента, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Если фундамент сверху включен, это дополнительная область фундамента вокруг модели, которой также предоставляется фундамент. Увеличение этого запаса позволит создать более прочную основу, используя при этом больше материала и оставляя меньше места для печати." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Игнорирует внутреннюю геометрию, являющуюся результатом перекрытия объёмов в модели, и печатает эти объёмы как один. Это может приводить к непреднамеренному исчезновению внутренних полостей." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Добавлять температуру стола" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Использовать температуру из материала" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Включение" + +msgctxt "infill description" +msgid "Infill" +msgstr "Заполнение" + +msgctxt "infill label" +msgid "Infill" +msgstr "Заполнение" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Ускорение заполнения" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Заполнение перед печатью стенок" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Плотность заполнения" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Экструдер для заполнения" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Поток для заполнения" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Рывок заполнения" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Толщина слоя заполнения" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Направления линии заполнения" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Дистанция линий заполнения" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Множитель для линии заполнения" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Ширина линии заполнения" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Заполнение объекта" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Угол нависания при заполнении" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Перекрытие заполнения" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Процент перекрытие заполнения" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Шаблон заполнения" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Скорость заполнения" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Поддержка заполнения" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Оптимизация перемещения заполнения" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Дистанция окончания заполнения" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Смещение заполнения по X" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Смещение заполнения по Y" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "Начальные слои дна" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "Начальная скорость вентилятора" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "Ускорение первого слоя" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "Поток низа первого слоя" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "Диаметр первого слоя" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "Поток для первого слоя" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "Высота первого слоя" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "Горизонтальное расширение первого слоя" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "Поток внутренней стенки первого слоя" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "Рывок первого слоя" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "Ширина линии первого слоя" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "Поток внешней стенки первого слоя" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "Ускорение печати первого слоя" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "Рывок печати первого слоя" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "Скорость первого слоя" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "Скорость первого слоя" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "Дистанция между линиями поддержки первого слоя" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "Ускорение перемещений первого слоя" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "Рывок перемещения первого слоя" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "Скорость перемещений на первом слое" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "Z наложение первого слоя" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "Начальная температура печати" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "Ускорение внутренней стенки" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "Экструдер внутренней стенки" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "Рывок внутренних стен" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "Скорость печати внутренних стенок" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "Поток для внутренних стенок" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "Ширина линии внутренней стенки" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Вставка применяется для внешних стенок. Если внешняя стенка меньше диаметра сопла и печатается после внутренних стенок, то используйте это смещение для захода соплом на внутренние стенки, вместо выхода за модель." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Только внутри" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "От внутренних к внешним" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Предпочитать линии интерфейса" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Предпочитать интерфейс" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Чередующаяся" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "Количество слоев взаимосвязанных балок" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "Ширина взаимосвязанных балок" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "Избегание границ взаимосвязанной структуры" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "Глубина взаимосвязанной структуры" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "Ориентация взаимосвязанной структуры" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Самый высокий слой разглаживания" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ускорение разглаживания" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Поток разглаживания" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Границы разглаживания" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Рывок разглаживания" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Расстояние между линиями разглаживания" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Шаблон разглаживания" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Скорость разглаживания" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Начало координат в центре" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Является поддерживающим материалом" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Это материал, который при нагревании легко ломается по четким линиям (кристаллический) или образует длинные сплетающиеся полимерные цепочки (некристаллический)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Используется ли обычно этот материал в качестве поддерживающего материала при печати." + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Дрожание только контуров деталей, но не отверстий." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Сохранить отсоединённые поверхности" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Высота слоя" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "X координата начала" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Y координата начала" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Толщина нижнего слоя подложки. Она должна быть достаточной для хорошего прилипания подложки к столу." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Толщина слоёв середины подложки." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Толщина верхних слоёв поддержки." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Пропускать соединение между линиями поддержки каждые N миллиметров для облегчения последующего удаления поддержек." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Слева" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Подъём головы" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Молния" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Угол выступа шаблона заполнения «молния»" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Угол обрезки шаблона заполнения «молния»" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Угол выпрямления шаблона заполнения «молния»" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Угол поддержки шаблона заполнения «молния»" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Ограничить охват ответвлений" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Ограничьте расстояние, на которое каждое ответвление должно удаляться от опорной точки. Это может сделать поддержку прочнее, но увеличит количество ответвлений (и, как следствие, расход материала и время печати)" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Ограничение предупреждения о температуре объема сборки для обнаружения." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Ограничение на аномалию температуры объема сборки для обнаружения." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Ограничение на обнаружение аномалий температуры печати." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Ограничение на предупреждение о температуре печати для обнаружения." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Ограничение аномалий потока для обнаружения." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Ограничение предупреждения о потоке для обнаружения." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Ограничивает объём объекта внутри других объектов. Вы можете использовать это для печати определённых областей одного объекта, применяя различные параметры печати и даже другой экструдер." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Ограниченная" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Ширина линии" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Принтер" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Глубина принтера" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Полигон головки принтера и вентилятора" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Высота принтера" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Тип принтера" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Ширина принтера" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Параметры, относящиеся к принтеру" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Сделать нависания печатаемыми" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Если объекты немного касаются друг друга, то сделаем их перекрывающимися. Это позволит им соединиться крепче." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Нижняя часть поддержек становится меньше, чем верхняя." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Будет поддерживать всё ниже объекта, никаких нависаний не будет." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Сделать стартовую позицию экструдера абсолютной, а не относительной от последней известной позиции головы." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Сделайте так, чтобы первый и второй слои модели перекрывались в направлении Z, чтобы компенсировать потерю нити в воздушном зазоре. Все модели выше первого слоя модели будут сдвинуты вниз на эту величину." +"Можно отметить, что иногда из-за этой настройки второй слой печатается ниже начального слоя. Это предполагаемое поведение" + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Сделайте объекты более подходящими для 3D-печати." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volumetric)" + +msgctxt "material description" +msgid "Material" +msgstr "Материал" + +msgctxt "material label" +msgid "Material" +msgstr "Материал" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Марка материала" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID материала" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Тип материала" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Объем материала между очистками" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Макс. расстояние комб. без отката" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Максимальное ускорение по оси X" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Максимальное ускорение по оси Y" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Максимальное ускорение по оси Z" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Максимальный угол ответвления" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Максимальное отклонение" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Максимальное отклонение площади экструзии" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Максимальная скорость вентилятора" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Максимальное ускорение материала" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Максимальный угол модели" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Максимальная площадь отверстия выступа" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Максимальная продолжительность парковки" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Максимальное разрешение" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Максимальное количество откатов" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Максимальный угол оболочки при расширении" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Максимальная скорость по оси E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Максимальная скорость по оси X" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Максимальная скорость по оси Y" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Максимальная скорость по оси Z" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Максимальный диаметр, поддерживаемый башней" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Максимальное разрешение перемещения" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "Максимальное ускорение для мотора оси X" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Максимальное ускорение для мотора оси Y." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Максимальное ускорение для мотора оси Z." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Максимальное ускорение мотора подачи материала." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Максимальная плотность заполнения, считающегося разреженным. Оболочка поверх разреженного заполнения считается неподдерживаемой и, соответственно, может обрабатываться как оболочка мостика." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Максимальный диаметр по осям X/Y небольшой области, который должен поддерживаться определенной башней." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Максимальный объем материала, который можно выдавить перед очередной очисткой сопла. Если это значение меньше объема материала, требуемого для слоя, данная настройка в этом слое не действует (т. е. максимум одна очистка на слой)." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Перекрытие касающихся объектов" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ремонт объектов" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "X позиция объекта" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Смещение, применяемое к объекту по оси X." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Y позиция объекта" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Смещение, применяемое к объекту по оси Y." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Z позиция объекта" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Порядок обработки объекта" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Матрица вращения объекта" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Середина" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Минимальная ширина формы" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Время перехода в ожидание" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Минимальная длина стенки мостика" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Минимальная ширина линии четных стенок" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Окно минимальной расстояния экструзии" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Минимальный размер элемента" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Минимальная подача" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Минимальная высота до модели" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Минимальная область заполнения" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Минимальное время слоя" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Минимальная длина окружности полигона" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Минимальная ширина оболочки при расширении" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Минимальная скорость" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Минимальная зона поддержек" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Минимальная зона нижней части поддержек" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Минимальная зона связующего слоя" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Минимальная зона верхней части поддержек" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Минимальный X/Y зазор поддержки" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Минимальная ширина линии нечетных стенок" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Минимальный объём перед накатом" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Минимальная ширина линии стенки" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Минимальная площадь зоны для полигонов связующего слоя. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Минимальная площадь зоны для полигонов поддержек. Полигоны с площадью меньше данного значения не будут генерироваться." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Минимальная площадь зоны для нижних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Минимальная площадь зоны для верхних частей поддержек. Полигоны с площадью меньше данного значения будут печататься как поддержки нормали." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "Минимальная толщина тонких элементов. Элементы модели, которые тоньше этого значения, не будут напечатаны, в то время как элементы с толщиной, превышающей минимальный размер элемента, будут расширены до минимальной ширины линии стенки." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Минимальная ширина, до которой может быть уменьшен низ конуса. Малая ширина может сделать такую структуру поддержек нестабильной." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Форма" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Угол формы" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Высота крыши формы" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Монотонный порядок разглаживания" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Порядок монотонной верхней поверхности фундамента" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Монотонный порядок верхней оболочки" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Монотонный порядок дна/крышки" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Несколько линий юбки помогают лучше начать укладывание материала при печати небольших моделей. Установка этого параметра в 0 отключает печать юбки." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "Множитель для ширины линии первого слоя. Увеличение значения улучшает прилипание к столу." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Коэффициент движения без нагрузки" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Нет оболочки в Z-зазорах" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Нетрадиционные способы печати моделей." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Нет" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Нет" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Нормаль" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Нормальная" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Нормаль" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Обычно Cura пытается закрыть небольшие отверстия в объекте и убрать части слоя с большими отверстиями. Включение этого параметра сохраняет те части, которые не могут быть сшиты. Этот параметр должен применяться в качестве крайней меры, когда уже ничего не помогает получить надлежащий G-код." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Не в оболочке" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Не на внешней поверхности" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Угол сопла" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Диаметр сопла" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Запрещённые зоны для сопла" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Идентификатор сопла" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Длина сопла" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при смене экструдера" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Скорость наполнения при смене экструдера" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Скорость отката при смене экструдера" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Величина отката при смене экструдера" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Скорость отката при смене экструдера" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Количество экструдеров" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Количество включенных экструдеров" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Количество медленных слоёв" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Количество включенных экструдеров; это значение автоматически устанавливается программным обеспечением" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Количество экструдеров. Экструдер - это комбинация механизма подачи, трубы и сопла." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Количество перемещений сопла поперек щетки." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Количество шагов уменьшения наполовину плотности заполнения вглубь модели. Области, располагающиеся ближе к краю модели, получают большую плотность, до указанной в \"Плотность заполнения." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Количество раз, на которое на половину можно уменьшать плотность заполнения поддержек при проходе вглубь структуры от поверхности. Области ближе к оболочке имеют большую плотность, вплоть до значения \"Плотность заполнения поддержек\"." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Восьмигранник" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Выключен" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Смещение, применяемое к объекту по оси X." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Смещение, применяемое к объекту по оси Y." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Смещение, применяемое к объекту по оси Z. Это позволяет выполнять операцию, ранее известную как проваливание объекта под поверхность стола." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Смещение с экструдером" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "По возможности на печатной пластине" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "На модели, если требуется" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "По отдельности" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Выполнять поднятие оси Z только в случае движения над напечатанными частями, которые нельзя обогнуть горизонтальным движением, используя «Обход напечатанных деталей» при перемещении." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Выполняет разглаживание только на самом последнем слое модели. Экономит время, когда нижние слои не требуют сглаживания поверхности." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Угол защиты от капель" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Дистанция до защиты от капель" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Оптимальный охват ответвлений" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Оптимизация порядка печати стенок" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Оптимизирует порядок, в котором печатаются стенки, для уменьшения количества откатов и перемещений. Большинство моделей будут распечатываться быстрее, но не все. Сравнивайте оценочное время печати с оптимизацией и без нее. При выборе каймы в качестве типа приклеивания к рабочему столу первый слой не оптимизируется." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Внешний диаметр сопла" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Ускорение внешней стенки" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Экструдер внешних стенок" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Поток для внешней стенки" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Вставка внешней стенки" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Рывок внешних стен" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Ширина линии внешней стенки" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Скорость печати внешней стенки" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Расстояние очистки внешней стенки" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Внешние стены разных островов в одном слое печатаются последовательно. При включении количество изменений потока ограничено, поскольку стены печатаются один тип за раз, при отключении количество перемещений между островами уменьшается, потому что стены на одних и тех же островах группируются." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Только снаружи" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "От внешних к внутренним" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Угол нависающей стенки" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Скорость печати нависающей стенки" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Нависающие стенки будут напечатаны с данным процентным значением нормальной скорости печати." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Приостановка после отмены отката." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Скорость вентилятора в процентах, которую необходимо использовать при печати стенок и оболочки мостика." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой второй оболочки мостика." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Скорость вентилятора в процентах, с которой печатаются области оболочки непосредственно над поддержкой. Использование высоких значений скорости вентилятора может упростить снятие поддержки." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Скорость вентилятора в процентах, с которой печатается слой третьей оболочки мостика." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Полигоны в разделенных слоях, длина окружности которых меньше указанной величины, будут отфильтрованы. Пониженные значения приводят к увеличению разрешения объекта за счет времени разделения. Это предназначено главным образом для принтеров SLA с высоким разрешением и миниатюрных 3D-моделей с множеством деталей." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Предпочтительный угол ответвления" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Предотвратите переход туда и обратно между одной лишней стенкой и одной недостающей. Это поле расширяет диапазон значений ширины линии, который определяется как [Минимальная ширина линии стенки - Поле, 2 * Минимальная ширина линии стенки + Поле]. Расширение этого поля позволяет сократить количество переходов, что в свою очередь позволяет сократить количество запусков/остановок экструдирования и время перемещения. Однако большой разброс значений ширины линии может привести к проблемам с недостаточным или чрезмерным экструдированием материала." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "Ускорение черновой башни" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Основание башни подготовки" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Высота основания башни подготовки" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Размер основания башни подготовки" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Наклон основания башни подготовки" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "Поток черновой башни" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "Рывок черновых башен" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "Ширина линии черновой башни" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Максимальное расстояние моста основной башни" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "Минимальный объём черновой башни" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Шаг линий рафта башни подготовки" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "Размер черновой башни" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "Скорость черновых башен" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Тип основной башни" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "X позиция черновой башни" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "Y позиция черновой башни" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Ускорение печати" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Рывок печати" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Печать отчетов о процессе" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Последовательная печать" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Скорость печати" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "Печать тонких стенок" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Напечата поля снаружи, внутри или на обеих сторонах модели. В зависимости от модели это помогает уменьшить количество козырьков, которые необходимо потом снять, обеспечивая при этом надлежащее прилегание к основе." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Печатает башню перед печатью модели, чем помогает выдавить старый материал после смены экструдера." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Печать заполненных структур только там, где должны поддерживаться верхние части моделей. Активация этой функции сокращает время печати и расход материалов, однако приводит к неравномерной прочности." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии разглаживания в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Печатать модель в виде формы, которая может использоваться для отливки оригинальной модели." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Печать частей модели, которые по горизонтали тоньше диаметра сопла." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Печатайте линии верхней поверхности фундамента в таком порядке, чтобы они всегда перекрывались со смежными линиями в одном направлении. Печать займет немного больше времени, но поверхность будет выглядеть более единообразной, что также видно на нижней поверхности модели." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "Скорость, с которой печатается слой второй оболочки мостика." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Скорость, с которой печатается слой третьей оболочки мостика." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Ограничение температуры печати" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Предупреждение о Температуре печати " + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Печатать заполнение до печати стенок. Если печатать сначала стенки, то это может сделать их более точными, но нависающие стенки будут напечатаны хуже. Если печатать сначала заполнение, то это сделает стенки более крепкими, но шаблон заполнения может иногда прорываться сквозь поверхность стенки." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии верхней оболочки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатайте линии дна/крышки в таком порядке, чтобы они всегда перекрывали соседние линии в одном направлении. На печать уходит немного больше времени, но плоские поверхности выглядят более единообразными." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Температура сопла" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "Температура печати первого слоя" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "Печать внутренней линии юбки несколькими слоями позволяет легко ее удалить." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Печатает дополнительную стенку через слой. Таким образом, заполнение заключается между этими дополнительными стенками, что приводит к повышению прочности печати." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Качество" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Четверть куба" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Подложка" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Воздушный зазор подложки" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Дополнительная базовая кромка фундамента" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Экструдер нижних подложек" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Скорость вентилятора для низа подложки" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Дистанция между линиями нижнего слоя подложки" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Ширина линии нижнего слоя подложки" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Ускорение печати низа подложки" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Рывок печати низа подложки" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Скорость печати низа подложки" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Сглаживание основания фундамента" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Толщина нижнего слоя подложки" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Счетчик стен основания подложки" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Дополнительное поле подложки" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Скорость вентилятора для подложки" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Средняя дополнительная кромка фундамента" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Экструдер серединных подложек" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Скорость вентилятора для середины подложки" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Серединные слои подложек" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Ширина линий середины подложки" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Ускорение печати середины подложки" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Рывок печати середины подложки" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Скорость печати середины подложки" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Сглаживание средней части фундамента" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Дистанция между слоями середины подложки" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Толщина середины подложки" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Количество промежуточных стен на фундаменте" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Ускорение печати подложки" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Рывок подложки" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Скорость печати подложки" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Сглаживание подложки" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Дополнительная кромка фундамента сверху" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Экструдер верхних подложек" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Скорость вентилятора для верха подложки" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Толщина верхнего слоя подложки" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Верхние слои подложки" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Ширина линий верха подложки" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Ускорение печати верха подложки" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Рывок печати верха подложки" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Скорость печати верха подложки" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Сглаживание верхней части фуендамента" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Дистанция между линиями верха поддержки" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Количество стен наверху фундамента " + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Количество стен на фундаменте" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Случайно" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Рандомизация начала заполнения" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Рандомизировать, какая линия заполнения печатается первой. Это препятствует тому, чтобы один сегмент стал самым сильным, но делает это за счет дополнительного перемещения." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Вносит небольшое дрожание при печати внешней стенки, что придаёт поверхности шершавый вид." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Прямоугольная" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Обычная скорость вентилятора" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Обычная скорость вентилятора на высоте" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Обычная скорость вентилятора на слое" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Порог переключения на повышенную скорость" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Относительная экструзия" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Удаляет все отверстия" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Удалить первые пустые слои" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Удалить пересечения объектов" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Удаление основания фундамента внутри углов" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Удаление внутренних углов подложки" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Удалить среднюю часть фундамента в углах" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Удалить верхнюю часть фундамента внутри углов" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Удаляет области, где несколько объектов перекрываются друг с другом. Можно использовать, для объектов, состоящих из двух материалов и пересекающихся друг с другом." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Удаление пустых слоёв под первым печатаемым слоем, если они имеются. Отключение этой функции может привести к созданию первых пустых слоев, если для параметра «Допуск слайсинга» установлено значение «Включение» или «Середина»." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Удалите внутренние углы основания фундамента, в результате чего фундамент станет выпуклым." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Удалите внутренние углы средней части фундамента, в результате чего фундамент станет выпуклым." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Удалите внутреннюю часть из верхней части фундамента, в результате чего фундамент станет выпуклым." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Удаляйте внутренние углы с подложки, чтобы она стала выпуклой." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Удаляет отверстия в каждом слое, оставляя только внешнюю форму. Вся невидимая внутренняя геометрия будет проигнорирована. Однако, также будут проигнорированы отверстия в слоях, которые могут быть видны сверху или снизу." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Заменяет внешнюю часть шаблона крышки/дна рядом концентрических линий. Использование одной или двух линий улучшает мосты, которые печатаются поверх материала заполнения." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Отчеты о событиях, выходящих за установленные пороговые значения" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Предпочтение опоры" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Откат перед внешней стенкой" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Откат при смене слоя" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Откат нити при движении сопла вне зоны печати." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Откат нити при перемещении сопла на следующий слой." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Величина отката" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объём при откате" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Минимальное перемещение при откате" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Скорость заправки при откате" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Скорость извлечения при откате" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Скорость отката" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Справа" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Масштабирование скорости вентилятора до 0-1" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Масштабируйте скорость вентилятора таким образом, чтобы она находилась в диапазоне от 0 до 1, а не от 0 до 256." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Коэффициент масштабирования для компенсации усадки" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "На сцене есть объекты поддержки" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Настройки угла шва" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Установить последовательность печати вручную" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Устанавливает высоту кожуха. Можно печать кожух высотой с модель или указать определённую высоту." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Параметры, используемые для печати несколькими экструдерами." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Параметры, которые используются в случае, когда CuraEngine вызывается напрямую." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Начальный откат общего сопла" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "Острейший угол" + +msgctxt "shell description" +msgid "Shell" +msgstr "Ограждение" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "Короткий путь" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Показать варианты принтера" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Слои, которые поддерживают края оболочки" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Толщина опоры края оболочки" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Дистанция расширения оболочки" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Перекрытие оболочек" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Процент перекрытия оболочек" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Ширина удаляемой оболочки" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Области оболочек уже указанного значения не расширяются. Это предотвращает расширение узких областей оболочек, которые создаются, если наклон поверхности модели близок к вертикальному." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Пропускать одну линию на каждые N соединительных линий, облегчая последующее удаление поддержек." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Пропускать некоторые соединения в поддержках для облегчения их последующего удаления. Этот параметр влияет на зиг-заг шаблон заполнения." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Юбка" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Дистанция до юбки" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Высота юбки" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Количество линий юбки" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Ускорение юбки/каймы" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Экструдер юбки/каймы" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Поток для юбки/каймы" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Рывок юбки/каймы" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Ширина линии юбки/каймы" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Минимальная длина юбки/каймы" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Скорость юбки/каймы" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Допуск слайсинга" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Скорость первого слоя для небольших объектов" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Максимальная длина малого элемента" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Скорость для малых элементов" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Максимальный размер малого отверстия" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Температура малослойной печати" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Маленькие вверху/внизу на поверхности" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Маленькая ширина верха/низа" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Малые элементы на первом слое будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Малые элементы будут напечатаны со скоростью, составляющей этот процент от их нормальной скорости печати. Более медленная печать может улучшить адгезию и точность." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Небольшие области вверху/внизу заполняются стенками вместо шаблона верха/низа по умолчанию. Это помогает избежать резких движений. По умолчанию отключено для самого верхнего (подверженного воздействию воздуха) слоя (см. Маленький верх/низ на поверхности)." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Умная кайма" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Интеллектуальное скрытие" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Сглаживать спиральные контуры" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Сглаживает спиральные контуры для уменьшения видимости шва по оси Z (такой шов должен быть едва виден при печати, но виден при послойном просмотре). Следует отметить, что сглаживание ведет к размыванию мелких деталей поверхности." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Небольшое количество материала может выдавиться во время движения, что может быть скомпенсировано с помощью данного параметра." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Небольшое количество материала может просочиться при перемещении во время очистки, что можно скомпенсировать с помощью данного параметра." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Специальные режимы" + +msgctxt "speed description" +msgid "Speed" +msgstr "Скорость" + +msgctxt "speed label" +msgid "Speed" +msgstr "Скорость" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Скорость перемещения оси Z во время поднятия." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Спирально печатать внешний контур" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Спирально сглаживает движение по оси Z. Во время печати происходит постоянное увеличение по оси Z. Этот параметр превращает модель в одностенный объект с крепким дном. Параметр можно использовать только когда каждый слой состоит из одной части модели." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Температура ожидания" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "Стартовый G-код" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Начальная точка каждого пути на слое. Когда пути последовательных слоёв начинаются в одной точке, то в процессе печати может появиться вертикальный шов. Выравнивая место точки в указанной пользователем области, шов несложно убрать. При случайном размещении неточность в начале пути становится не так важна. При выборе кратчайшего пути, печать становится быстрее." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Количество шагов на миллиметр (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Количество шагов на миллиметр (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Количество шагов на миллиметр (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Количество шагов на миллиметр (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Поддержки" + +msgctxt "support label" +msgid "Support" +msgstr "Поддержки" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Ускорение поддержек" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Дистанция поддержки снизу" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Количество линий стенок основания" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Количество линий каймы поддержки" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Ширина каймы поддержки" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Количество частей линий поддержки" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Размер части поддержек" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Плотность поддержек" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Приоритет зазоров поддержки" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Экструдер поддержек" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Ускорение низа поддержек" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Плотность низа поддержек" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Экструдер низа поддержек" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Поток для низа поддержек" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Горизонтальное расширение нижней части поддержек" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Рывок низа поддержек" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Направления линии низа поддержек" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Дистанция линии низа поддержек" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Ширина линии дна поддержки" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Шаблон низа поддержек" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Скорость печати низа поддержек" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Толщина низа поддержки" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Поток для поддержек" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Горизонтальное расширение поддержки" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Ускорение заполнение поддержек" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Экструдер заполнения поддержек" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Рывок заполнение поддержек" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Толщина слоя заполнения поддержек" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Направление линии заполнения поддержек" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Скорость заполнения поддержек" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Ускорение края поддержек" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Плотность связующего слоя поддержки" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Экструдер связующего слоя поддержек" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Поток для связующего слоя поддержек" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Горизонтальное расширение связующего слоя" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Рывок связи поддержек" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Направления линии связующего слоя поддержек" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Ширина линии поддерживающей крыши" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Шаблон связующего слоя" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Приоритет интерфейса поддержки" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Скорость границы поддержек" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Толщина связующего слоя поддержки" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Количество линий стенок связующего слоя поддержки" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Рывок поддержек" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Расстояние объединения поддержки" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Дистанция между линиями поддержки" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Ширина линии поддержки" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Поддерживающий объект" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Угол нависания поддержки" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Шаблон поддержек" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Размещение поддержек" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Ускорение крыши поддержек" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Плотность крыши поддержек" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Экструдер крыши поддержек" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Поток для крыши поддержек" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Горизонтальное расширение верхней части поддержек" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Рывок крыши поддержек" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Направления линии крыши поддержек" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Дистанция линии крыши поддержек" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Ширина линии крыши поддержки" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Шаблон крыши поддержек" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Скорость печати крыши поддержек" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Толщина крыши" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Количество линий стенок крыши" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Скорость печати поддержек" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Высота шага лестничной поддержки" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Максимальная ширина шага лестничной поддержки" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Минимальный угол уклона шага лестничной поддержки" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Структура поддержки" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Зазор поддержки сверху" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Количество линий стенки поддержки" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Зазор поддержки по осям X/Y" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Зазор поддержки по оси Z" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Предпочитать линии поддержки" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Предпочитать поддержку" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Поддерживаемая скорость вентилятора для оболочки" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Поверхность" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Поверхностная энергия" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Поверхностный режим" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Тенденция к прилипанию к поверхности." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Поверхностная энергия." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "Меняет местами порядок печати внутренней и следующей внутренней линий каймы. Это упрощает удаление каймы." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Чередует какой из объектов, пересекающихся в объёме, будет участвовать в печати каждого слоя таким образом, что пересекающиеся объекты становятся вплетёнными друг в друга. Выключение этого параметра приведёт к тому, что один из объектов займёт весь объём пересечения, в то время как данный объём будет исключён из других объектов." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "Целевое расстояние по горизонтали между двумя соседними слоями. Уменьшение этого значения приведет к сокращению толщины слоев, и края слоев станут ближе друг к другу." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "X координата позиции, вблизи которой следует искать часть модели для начала печати слоя." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "X координата позиции, вблизи которой следует начинать путь на каждом слое." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "X координата позиции, в которой сопло начинает печать." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Y координата позиции, вблизи которой следует искать часть модели для начала печати слоя." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Y координата позиции, вблизи которой следует начинать путь на каждом слое." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Y координата позиции, в которой сопло начинает печать." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Позиция кончика сопла на оси Z при старте печати." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "Ускорение при печати первого слоя." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "Ускорение для первого слоя." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "Ускорение для перемещения на первом слое." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "Ускорение, с которым происходит печать внутренних стенок." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Ускорение, с которым печатается заполнение." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ускорение, с которым производится разглаживание." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Ускорение, с которым происходит печать." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Ускорение, с которым печатаются нижние слои подложки." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Ускорение, с которым происходит печать низа поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Ускорение, с которым печатается заполнение поддержек." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Ускорение, с которым печатаются средние слои подложки." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "Ускорение, с которым происходит печать внешних стенок." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "Ускорение, с которым печатается черновая башня." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Ускорение, с которым печатается подложка." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Ускорение, с которым печатаются верх и низ поддержек. Их печать с пониженными ускорениями может улучшить качество печати нависающих частей." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Ускорение, с которым происходит печать верха поддержек. Печать поддержек с пониженными ускорениями может улучшить качество печати нависающих краёв модели." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Ускорение, с которым происходит печать юбки и каймы. Обычно, их печать происходит с ускорениями первого слоя, но иногда вам может потребоваться печатать юбку с другими ускорениями." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Ускорение, с которым печатаются структуры поддержки." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Ускорение, с которым печатаются верхние слои подложки." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Ускорение, с которым печатаются внутренние стены верхней поверхности." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Ускорение, с которым печатаются самые внешние стены верхней поверхности." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Ускорение, с которым происходит печать стенок." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Ускорение, с которым печатаются слои верхней оболочки." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Ускорение, с которым печатаются слои крышки/дна." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Ускорение, с которым выполняется перемещение." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Объём материала, относительно от обычной линии, который будет выдавлен в процессе разглаживания. Наличие в сопле наличие материала помогает заполнять щели на верхней оболочке, но слишком большое значение приводит к излишнему выдавливанию материала и ухудшает качество оболочки." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнением и стенками в виде процентного отношения от ширины линии заполнения. Небольшое перекрытие позволяет стенкам надежно соединяться с заполнением." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнением и стенками. Небольшое перекрытие позволяет стенкам плотно соединиться с заполнением." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Величина отката при переключении экструдеров. Установите 0 для отключения отката. Обычно соответствует длине зоны нагрева." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Угол между горизонтальной плоскостью и конической частью над кончиком сопла." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Угол верхней части башен. Большие значения приводят уменьшению площади крыши, меньшие наоборот делают крышу плоской." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Угол нависания внешних стенок создаваемой формы. 0° приведёт к вертикальным стенкам формы, а 90° - заставит следовать контурам модели." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "Угол диаметра ответвлений по мере их постепенного утолщения к основанию. Если значение угла равно 0, ответвления будут иметь одинаковую толщину по всей своей длине. Небольшой угол может повысить устойчивость древовидной поддержки." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Угол наклона конических поддержек. При 0 градусах поддержки будут вертикальными, при 90 градусах будут горизонтальными. Меньшее значение углов укрепляет поддержки, но требует больше материала для них. Отрицательные углы приводят утолщению основания поддержек по сравнению с их верхней частью." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Средняя плотность точек, добавленных на каждом полигоне в слое. Следует отметить, что оригинальные точки полигона отбрасываются, следовательно низкая плотность приводит к уменьшению разрешения." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Среднее расстояние между случайными точками, который вносятся в каждый сегмент линии. Следует отметить, что оригинальные точки полигона отбрасываются, таким образом, сильное сглаживание приводит к уменьшению разрешения. Это значение должно быть больше половины толщины шершавой оболочки." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Марка используемого материала." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Стандартное ускорение для движений головы." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Стандартная температура сопла, используемая при печати. Значением должна быть \"базовая\" температура для материала. Все другие температуры печати должны быть выражены смещениями от основного значения" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Температура по умолчанию, используемая для разогретого рабочего стола. Это значение является базовой температурой рабочего стола. Для всех остальных значений температуры печати используется смещение относительно данного значения" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Плотность низа структуры поддержек. Большее значение приведёт к улучшению прилипания поддержек к модели." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Плотность крыши структуры поддержек. Большее значение приведёт к улучшению нависаний, но такие поддержки будет труднее удалять." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя второй оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Плотность слоя третьей оболочки мостика. Значения менее 100 увеличат зазоры между линиями оболочки." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Ширина (по оси Y) области печати." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Диаметр специальных башен." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Диаметр самых тонких ответвлений древовидной поддержки. Чем толще ответвление, тем оно крепче. Ответвления возле основания будут иметь толщину, превышающую данное значение." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Диаметр верхушек кончиков ответвлений древовидной поддержки." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Диаметр колесика, перемещающего материал в питатель." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Диаметр самых широких веток древовидной поддержки. Более толстый ствол будет более прочным; более тонкий ствол займет меньше места на печатной пластине." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Разница между высотой следующего слоя и высотой предыдущего слоя." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Расстояние между линиями разглаживания." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Дистанция между соплом и уже напечатанными частями, выдерживаемая при перемещении." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями нижнего слоя подложки. Большее значение упрощает снятие модели со стола." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Расстояние между линиями средних слоёв подложки. Дистанция в средних слоях должна быть достаточно широкой, чтобы создавать нужной плотность для поддержки верхних слоёв подложки." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Расстояние между линиями подложки на её верхних слоях. Расстояние должно быть равно ширине линии, тогда поверхность будет сплошной." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Расстояние между линиями рафта уникального слоя рафта башни подготовки. Большой шаг облегчает удаление рафта с платформы для печати." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "Расстояние от границы между моделями для создания взаимосвязанной структуры, измеряемое в ячейках. Слишком малое количество ячеек приведет к плохой адгезии." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Расстояние между моделью и самой удалённой линией каймы. Более широкая кайма увеличивает прилипание к столу, но также уменьшает эффективную область печати." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "Расстояние от внешней стороны модели, где взаимосвязанные структуры не будут создаваться, измеряемое в ячейках." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Расстояние от кончика сопла до места, где тепло передаётся материалу." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Расстояние на которое нижние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Расстояние на которое оболочки внедряются в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Расстояние на которое верхние оболочки входят в заполнение. Большие значения лучше связывают оболочку с шаблоном заполнения и стенками. Меньшие значения сохраняют используемый материал." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Расстояние перемещения головки назад и вперед поперек щетки." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Конечные точки линий заполнения укорачиваются для экономии материала. Эта настройка представляет собой угол нависания конечных точек этих линий." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Дополнительная скорость, с помощью которой сопло охлаждается во время экструзии. Это же значение используется для ускорения нагрева сопла при экструзии." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати первого слоя заполнения поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати первого слоя подложек. Используется при наличии нескольких экструдеров." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати низа поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати заполнения поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Этот комплекс экструдеров используется для печати среднего слоя подложек. Используется при наличии нескольких экструдеров." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати верха и низа поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати крыши поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Этот комплекс экструдеров используется для печати юбки или каймы. Используется при наличии нескольких экструдеров." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати юбки/каймы/подложки. Используется при наличии нескольких экструдеров." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати поддержек. Используется при наличии нескольких экструдеров." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Этот комплекс экструдеров используется для печати верхнего слоя (или нескольких слоев) подложек. Используется при наличии нескольких экструдеров." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати заполнения. Используется при наличии нескольких экструдеров." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внутренних стенок. Используется при наличии нескольких экструдеров." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати внешних стенок. Используется при наличии нескольких экструдеров." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхней и нижней оболочек. Используется при наличии нескольких экструдеров." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "Экструдер, используемый для печати верхних оболочек. Используется при наличии нескольких экструдеров." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Этот экструдер используется для печати стенок. Используется при наличии нескольких экструдеров." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Скорость вентилятора при печати нижнего слоя подложки." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Скорость вентилятора при печати средних слоёв подложки." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Скорость вращения вентилятора при печати подложки." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Скорость вентилятора при печати верхних слоёв подложки." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте заполнения при печати." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Путь к файлу изображения, из которого значения яркости определяют минимальную плотность в соответствующем месте поддержки." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Первые несколько слоёв печатаются на медленной скорости, чем вся остальная модель, чтобы получить лучшее прилипание к столу и увеличить вероятность успешной печати. Скорость последовательно увеличивается по мере печати указанного количества слоёв." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Зазор между последним слоем подложки и первым слоем модели. Первый слой будет приподнят на указанное расстояние, чтобы уменьшить связь между слоем подложки и модели. Упрощает процесс последующего отделения подложки." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Ширина (по оси Z) области печати." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Высота над горизонтальными частями вашей модели, по которой создаётся форма." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Высота, на которой вентилятор вращается с обычной скоростью. На предыдущих слоях скорость вращения вентилятора постепенно увеличивается с начальной." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Высота между кончиком сопла и портальной системой (по осям X и Y)." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Высота между кончиком сопла и нижней частью головы." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Высота, на которую приподнимается ось Z после смены экструдера." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Расстояние, на которое приподнимается ось Z." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Высота каждого слоя в миллиметрах. Большие значения приводят к быстрой печати при низком разрешении, малые значения приводят к замедлению печати с высоким разрешением." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Высота заполнения с указанной плотностью перед переключением на половину плотности." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Высота заполнения поддержек, по достижению которой происходит снижение плотности." + +msgctxt "interlocking_beam_layer_count description" +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 "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." + +msgctxt "interlocking_orientation description" +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 "Высота балок взаимосвязанной структуры, измеряемая в количестве слоев. Чем меньше слоев, тем она будет прочнее, но более подвержена дефектам." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "Высота первого слоя в миллиметрах. Более толстый слой упрощает прилипание пластика к столу." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Высота основания башни подготовки. Увеличение этого значения приведет к созданию более устойчивой башни подготовки, так как основание будет шире. Если это значение слишком низкое, основание башни подготовки не будет достаточно устойчивым." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Высота в шагах низа лестничной поддержки, лежащей на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной. Установите ноль для выключения лестничной поддержки." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Горизонтальное расстояние между первой линией каймы и контуром первого слоя изделия. Небольшой зазор облегчит удаление каймы и позволит сохранить термические преимущества." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Горизонтальное расстояние между юбкой и первым слоем печати." +"Минимальное расстояние. Несколько линий юбки будут расширяться от этого расстояния." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Линии заполнения выравниваются для сокращения время печати. Это максимально допустимый угол нависания по всей длине линии заполнения." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Расстояние перемещения шаблона заполнения по оси X." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Расстояние перемещения шаблона заполнения по оси Y." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Внутренний диаметр сопла. Измените этот параметр при использовании сопла нестандартного размера." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются нижние слои подложки." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются средние слои подложки." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Скорость изменения ускорений при печати подложки." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние слои подложки." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати нижних оболочек наклонных поверхностей модели." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних/нижних оболочек наклонных поверхностей модели." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Наибольшая ширина областей оболочки, которые будут удалены. Каждая область оболочки, которая меньше указанного значения, будет удалена. Это может помочь с сокращением затрат времени и материала при печати верхних оболочек наклонных поверхностей модели." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Слой, на котором вентилятор должен вращаться с обыкновенной скоростью. Если определена обычная скорость для вентилятора на высоте, это значение вычисляется и округляется до целого." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Время печати слоя, которое устанавливает порог для переключения с обычной скорости вращения вентилятора на максимальную. Слои, которые будут печататься дольше указанного значения, будут использовать обычную скорость вращения вентилятора. Для быстрых слоёв скорость вентилятора постепенно будет повышаться до максимальной." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Длина нити материала, которая будет извлечена по время отката." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Множитель, используемый для наклона основания башни подготовки. Если увеличить это значение, основание станет более узким. Если уменьшить - основание станет толще." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Материал рабочего стола, установленного на принтере." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Максимальная разрешенная высота по сравнению с высотой базового уровня." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Максимальный угол, который может иметь часть защиты от капель. При 0 градусов будет вертикаль, при 90 - будет горизонталь. Малые значения угла приводят к лучшему качеству, но тратят больше материала." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Максимальный угол нависания, после которого они становятся печатаемыми. При значении в 0° все нависания заменяются частью модели, соединённой со столом, при 90° в модель не вносится никаких изменений." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Максимальный угол наклона ответвлений при их росте вокруг модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Для получения большего охвата указывайте более высокий угол." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Максимальная площадь отверстия в основании модели, при достижении которой оно удаляется функцией «Сделать нависания печатаемыми». Более мелкие отверстия сохраняются. Значение 0 мм² приведет к заполнению всех отверстий в основании модели." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Максимальное допустимое отклонение при снижении разрешения для параметра максимального разрешения. Увеличение этого значения понизит точность печати и уменьшит значение G-кода. Максимальное отклонение является пределом для максимального разрешения, поэтому, если они конфликтуют, истинным считается максимальное отклонение." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "Максимальное расстояние между структурами поддержек по осям X/Y. Если отдельные структуры находятся ближе, чем определено данным значением, они объединяются в одну." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Максимальное расстояние (в мм) перемещения материала для компенсации изменения расхода." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Максимальное допустимое отклонение площади экструдирования при удалении промежуточных точек от прямой линии. Промежуточная точка может служить точкой изменения ширины длинной прямой линии. Следовательно, если ее удалить, линия будет иметь одинаковую ширину и вследствие этого площадь экструдирования немного сократится (или увеличится). Если увеличить это значение, можно будет заметить небольшой эффект недостаточного (или чрезмерного) экструдирования между прямыми параллельными стенками, так как будет разрешено удалить больше промежуточных точек изменения ширины. При увеличении этого значения точность печати понизится, а значение g-кода уменьшится." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается первый слой." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Изменение максимальной мгновенной скорости печатающей головки." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняется разглаживание." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внутренние стенки." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны низ поддержек." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается заполнение поддержек." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются внешние стенки." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается черновая башня." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши и низ поддержек." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Максимальное изменение мгновенной скорости, с которым напечатаны крыши поддержек." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатается юбка и кайма." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются поддержки." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются самые внешние стены верхней поверхности." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которым печатаются внутренние стены верхней поверхности." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой будут напечатаны стены." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются слои верхней оболочки." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Изменение максимальной мгновенной скорости, с которой печатаются верхние и нижние слои." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Изменение максимальной мгновенной скорости, с которой выполняются перемещения." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Максимальная длина ветвей, которые можно напечатать по воздуху." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "Максимальная скорость для мотора оси X." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Максимальная скорость для мотора оси Y." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Максимальная скорость для мотора оси Z." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Максимальная скорость подачи материала." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Максимальная ширина шагов низа лестничной поддержки, располагающейся на модели. Малые значения усложняют удаление поддержки, а большие значения могут сделать структуру поддержек нестабильной." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Минимальное расстояние между внешними сторонами формы и модели." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Минимальная скорость движения головы." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Минимальная температура, в процессе нагрева до температуры печати, на которой можно запустить процесс печати." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Минимальное время, которое экструдер должен быть неактивен, чтобы сопло начало охлаждаться. Только когда экструдер не используется дольше, чем указанное время, он может быть охлаждён до температуры ожидания." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Минимальный угол внутренних нависаний, для которых добавляется заполнение. При 0° объекты полностью заполняются, при 90° заполнение отсутствует." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Минимальный угол нависания при котором добавляются поддержки. При значении в 0° все нависания обеспечиваются поддержками, при 90° не получат никаких поддержек." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Минимальное расстояние на которое необходимо переместиться для отката, чтобы он произошёл. Этот параметр помогает уменьшить количество откатов на небольшой области печати." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Минимальная длина печатаемой линии юбки или каймы. Если при печати юбки или каймы эта длина не будет выбрана, то будут добавляться дополнительные кольца юбки или каймы. Следует отметить, если количество линий установлено в 0, то этот параметр игнорируется." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Минимальная ширина линии для полилинейных стенок, заполняющих зазоры средней линии. Этот параметр определяет, при какой толщине модели выполняется переключение с печати стенки в две линии на печать двух внешних стенок и одной центральной стенки посередине. Чем выше значение минимальной ширины линии нечетной стенки, тем выше максимальная ширина линии четной стенки. Максимальная ширина линии нечетной стенки вычисляется по формуле: 2 * минимальную ширину линии четной стенки." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Минимальная ширина линии обычных многоугольных стенок. Этот параметр определяет, при какой толщине модели выполняется переключение с печати тонкой стенки в одну линию на печать стенок в две линии. Чем выше значение минимальной ширины линии четной стенки, тем выше максимальная ширина линии нечетной стенки. Максимальная ширина линии четной стенки вычисляется по формуле: Ширина линии внешней стенки + 0,5 * Минимальная ширина линии нечетной стенки." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Минимальная скорость печати, независящая от замедления печати до минимального времени печати слоя. Если принтер начнёт слишком замедляться, давление в сопле будет слишком малым, что отрицательно скажется на качестве печати." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Минимальный размер сегмента линии после слайсинга. Увеличение значения этого параметра понизит разрешение модели. Это может позволить принтеру поддерживать скорость обработки кода G и увеличит скорость слайсинга за счет удаления деталей модели, которые он в любом случае не сможет обработать." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Минимальный размер сегмента линии перемещения после разделения на слои. При увеличении этого значения углы при перемещении будут менее сглаженными. Это может помочь принтеру поддерживать скорость обработки G-кода, однако при этом может снизиться точность избегания моделей." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Минимальный уклон области, где применяется лестничный шаг. При низких значениях удаление поддержки на более пологих уклонах должно быть проще, но слишком низкие значения могут приводить к очень неожиданным результатам на других деталях модели." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Минимальное время, затрачиваемое на печать слоя. Этот параметр заставляет принтер замедляться, как минимум, чтобы потратить на печать слоя время, указанное в этом параметре. Это позволяет напечатанному материалу достаточно охладиться перед печатью следующего слоя. Слои могут печататься быстрее, чем указано в этом параметре, если поднятие головы отключено и если будет нарушено требование по минимальной скорости печати." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Минимальный объём материала на каждый слой черновой башни, который требуется выдавить." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Наибольшее увеличение диаметра ответвления, которое должно быть соединено с моделью, может произойти за счет слияния с ответвлениями, которые могут достигать печатной пластины. Увеличение этого значения сокращает время печати, но увеличивает площадь поддержки, которая опирается на модель" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "Название модели вашего 3D принтера." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Идентификатор сопла для экструдера, например \"AA 0.4\" и \"BB 0.8\"." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Сопло избегает уже напечатанных частей при перемещении. Эта опция доступна только при включенном комбинге." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "При перемещении сопла оно будет избегать напечатанных поддержек. Эта опция доступна только при включенном комбинге." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Количество слоёв в дне. При вычислении толщины дна это значение округляется до целого." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Количество контуров, которые необходимо напечатать вокруг линейного рисунка в слое основания подложки." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка в средних слоях фундамента." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка в верхних слоях фундамента." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Количество контуров для печати вокруг линейного рисунка фундамента." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Количество слоев, которые поддерживают края оболочки." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Количество начальных слоев дна, вверх от рабочего стола. При вычислении толщины дна это значение округляется до целого." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Количество слоев между основанием и поверхностью подложки. Они составляют основную толщину подложки. Увеличение этого значения позволяет создать более прочную положку большей толщины." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Количество линий, используемых для печати каймы. Большее количество линий каймы улучшает прилипание к столу, но уменьшает эффективную область печати." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Количество линий, используемых для каймы поддержки. При увеличении линий каймы улучшается адгезия к рабочему столу и увеличивается расход материала." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "Количество верхних слоёв над вторым слоем подложки. Это такие полностью заполненные слои, на которых размещается модель. Два слоя приводят к более гладкой поверхности чем один." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Количество слоёв в крышке. При вычислении толщины крышки это значение округляется до целого." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "Количество верхних слоёв оболочки. Обычно достаточно одного слоя для получения верхних поверхностей в хорошем качестве." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, окружающих заполнение поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать нависания поддержки, однако оно увеличивает время печати и расход материалов." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, которыми можно окружить основание связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стенок, которыми можно окружить крышу связующего слоя поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Количество стен, которыми можно окружить связующий слой крыши поддержек. Добавление стенки может повысить надежность печати поддержки и оптимизировать выступы поддержки, однако оно увеличивает время печати и расход материалов." + +msgctxt "wall_distribution_count description" +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 "Количество стенок, считая от центра, на которые необходимо распространить вариацию. Более низкое значение означает, что ширина внешних стенок не изменяется." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Количество линий стенки. При вычислении толщины стенки, это значение округляется до целого." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Внешний диаметр кончика сопла." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Шаблон заполняющего материала печати. Линейное и зигзагообразное заполнение меняет направление на чередующихся слоях, снижая расходы на материал. Шаблоны «сетка», «треугольник», «шестигранник из треугольников», «куб», «восьмигранник», «четверть куба», «крестовое», «концентрическое» полностью печатаются в каждом слое. Шаблоны заполнения «гироид», «куб», «четверть куба» и «восьмигранник» меняются в каждом слое, чтобы обеспечить более равномерное распределение прочности в каждом направлении. Шаблон заполнения «молния» пытается минимизировать заполнение, поддерживая только верхнюю область объекта." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Шаблон печатаемой структуры поддержек. Имеющиеся варианты отличаются крепкостью или простотой удаления поддержек." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "Шаблон, используемый для верхних слоёв оболочки." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Шаблон слоёв для крышки/дна." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Шаблон низа печати на первом слое." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Шаблон, который будет использоваться для разглаживания верхней оболочки." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Шаблон, который будет использоваться для печати нижней части поддержек." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Шаблон, который будет использоваться для печати связующего слоя поддержек." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Шаблон, который будет использоваться для печати верхней части поддержек." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Позиция, рядом с которой следует начинать путь на каждом слое." + +msgctxt "support_tree_angle_slow description" +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 "Предпочтительный угол ответвлений, когда им не нужно избегать модели. При указании меньшего угла поддержка будет более вертикальной и устойчивой. Используйте больший угол, чтобы ветки сливались быстрее." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Предпочтительное размещение поддерживающих конструкций. Если структуры не могут быть размещены в предпочтительном месте, они будут размещены в другом месте, даже если это приведет к их размещению на модели." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "Изменение максимальной мгновенной скорости на первом слое." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Форма стола без учёта непечатаемых областей." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Форма печатающей головки. Это координаты относительно положения печатной головки, которое обычно совпадает с положением ее первого экструдера. Координаты слева от печатной головки и перед ней должны иметь отрицательные значения." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Размер карманов при печати шаблоном крест 3D по высоте, когда шаблон касается сам себя." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Минимальный объём экструзии, который должен быть произведён перед выполнением наката. Для малых путей меньшее давление будет создаваться в боудене и таким образом, объём наката будет изменяться линейно. Это значение должно всегда быть больше \"Объёма наката\"." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Скорость (°C/сек.), с которой сопло охлаждается, усреднённая в окне температур при обычной печати и температура ожидания." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Скорость (°C/сек.), с которой сопло греет, усреднённая в окне температур при обычной печати и температура ожидания." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Скорость, на которой происходит печать внутренних стенок. Печать внутренних стенок на скорости, большей скорости печати внешней стенки, ускоряет печать. Отлично работает, если значение скорости находится между скоростями печати внешней стенки и скорости заполнения." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Скорость, с которой печатаются области оболочки мостика." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Скорость, на которой печатается заполнение." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Скорость, на которой происходит печать." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Скорость, на которой печатается нижний слой подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Скорость, с которой происходит печать стенок мостика." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Скорость, с которой вращается вентилятор в начале печати. На последующих слоях скорость вращения постепенно увеличивается до слоя, соответствующего параметру обычной скорости вращения вентилятора на указанной высоте." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Скорость, с которой вращается вентилятор до достижения порога. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться быстрее." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Скорость, с которой вращается вентилятор при минимальной площади слоя. Если слой печатается быстрее установленного порога, то вентилятор постепенно начинает вращаться с указанной скоростью." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Скорость с которой материал будет возвращён при откате." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Скорость, с которой нить заправляется при откате с очисткой." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Скорость, с которой материал будет возвращён обратно при смене экструдера." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Скорость, с которой материал будет извлечён и возвращён обратно при откате." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться и заправляться при откате с очисткой." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Скорость, с которой материал будет извлечён при откате для смены экструдера." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Скорость с которой нить будет извлечена при откате." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Скорость, с которой нить будет втягиваться при откате с очисткой." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Скорость с которой материал будет извлечён и возвращён обратно при откате. Высокая скорость отката работает лучше, но очень большая скорость портит материал." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Скорость, на которой происходит печать низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Скорость, на которой заполняются поддержки. Печать заполнения на пониженных скоростях улучшает стабильность." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Скорость, на которой печатаются средние слои подложки. Она должна быть достаточно низкой, так как объём материала, выходящего из сопла, достаточно большой." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "Скорость, на которой происходит печать внешних стенок. Печать внешней стенки на пониженной скорости улучшает качество поверхности модели. Однако, при большой разнице между скоростями печати внутренних и внешних стенок возникает эффект, негативно влияющий на качество." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "Скорость, на которой печатается черновая башня. Замедленная печать черновой башни может сделать её стабильнее при недостаточном прилипании различных материалов." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Скорость, с которой вращаются вентиляторы." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Скорость, на которой печатается подложка." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Скорость, на которой происходит печать верха и низа поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Скорость, на которой происходит печать верха поддержек. Печать поддержек на пониженных скоростях может улучшить качество печати нависающих краёв модели." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Скорость, на которой происходит печать юбки и каймы. Обычно, их печать происходит на скорости печати первого слоя, но иногда вам может потребоваться печатать юбку или кайму на другой скорости." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Скорость, на которой происходит печать структуры поддержек. Печать поддержек на повышенной скорости может значительно уменьшить время печати. Качество поверхности структуры поддержек не имеет значения, так как эта структура будет удалена после печати." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Скорость, на которой печатаются верхние слои подложки. Верх подложки должен печататься немного медленнее, чтобы сопло могло медленно разглаживать линии поверхности." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Скорость, с которой печатаются внутренние стены верхней поверхности." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Скорость печати самых внешних стен верхней поверхности." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Скорость вертикального движения по оси Z. Обычно она ниже, чем скорость печати, поскольку рабочий стол или портал машины тяжелее сдвинуть." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Скорость, на которой происходит печать стенок." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Скорость, на которой голова проходит над верхней оболочкой." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Скорость, при которой убираемый материал отломится чисто." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Скорость, на которой печатаются слои верхней оболочки." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Скорость, на которой печатаются слои крышки/дна." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Скорость, с которой выполняется перемещение." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Скорость, с которой производятся движения во время наката, относительно скорости печати. Рекомендуется использовать значение чуть меньше 100%, так как во время наката давление в боудене снижается." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "Скорость печати первого слоя. Пониженное значение улучшает прилипание материала к печатной пластине. Не влияет на сами адгезионные структуры печатной пластины, такие как край и основание." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "Скорость печати первого слоя. Пониженное значение помогает улучшить прилипание материала к столу." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "Скорость перемещений на первом слое. Малые значения помогают предотвращать отлипание напечатанных частей от стола. Значение этого параметра может быть вычислено автоматически из отношения между скоростями перемещения и печати." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Температура, при которой материал отломится чисто." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Температура среды печати. Если это значение равно 0, температура для объема печати не будет регулироваться." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Температура сопла в момент, когда для печати используется другое сопло." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Температура, до которой можно начать охлаждать сопло, перед окончанием печати." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "Температура, используемая для печати первого слоя." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Температура, используемая при печати." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "Температура, задаваемая для нагреваемой печатной пластины на первом слое. Если значение равно 0, печатная пластина не нагревается при печати первого слоя." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Температура, задаваемая для нагреваемой печатной пластины. Если значение равно 0, печатная пластина не нагревается." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Температура, используемая для выдавливания материала, должна быть примерно равна максимальной температуре при печати." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Толщина дна при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Толщина дополнительного объема, который поддерживает края оболочки." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Толщина связующего слоя поддержек, который касается модели снизу или сверху." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Толщина низа поддержки. Управляет количеством плотных слоёв, которые печатаются поверх модели для последующего построения поддержек." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Толщина крыши поддержек. Управляет величиной плотности верхних слоёв поддержек, на которых располагается вся модель." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Толщина крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в крышке." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Толщина слоя дна/крышки при печати. Это значение, разделённое на высоту слоя, определяет количество слоёв в дне/крышке." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Толщина внешних стенок в горизонтальном направлении. Это значение, разделённое на ширину линии стенки, определяет количество стенок." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Толщина слоя для материала заполнения. Данное значение должно быть всегда кратно толщине слоя и всегда округляется." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Толщина слоя для материала заполнения поддержек. Это значение должно быть всегда кратно высоте слоя, в противном случае оно будет округлено." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Генерируемый тип G-кода." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Тип используемого материала." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Объём, который бы сочился. Это значение должно обычно быть близко к возведенному в куб диаметру сопла." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Ширина (по оси X) области печати." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Ширина каймы для печати под поддержкой. При увеличении каймы улучшается адгезия к рабочему столу и увеличивается расход материала." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "Ширина балок взаимосвязанной конструкции." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Ширина бортика/основания башни подготовки. Большее основание улучшает адгезию к платформе для печати, но также уменьшает эффективную площадь печати." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "Ширина черновой башни." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Величина амплитуды дрожания. Рекомендуется придерживаться толщины внешней стенки, так как внутренние стенки не изменяются." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Окно, в котором может быть выполнено максимальное количество откатов. Это значение приблизительно должно совпадать с расстоянием отката таким образом, чтобы количество выполненных откатов распределялось на величину выдавленного материала." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "X координата позиции черновой башни." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "Y координата позиции черновой башни." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "На сцене присутствуют объекты поддержки. Эта настройка контролируется приложением Cura." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Эта настройка управляет расстоянием наката экструдера непосредственно перед началом стенки мостика. Накат перед началом мостика может уменьшить давление в сопле и создать более ровный мостик." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы контура основания фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы среднего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр регулирует величину скругления внутренних углов контура подложки. Внутренние углы скругляются до полукруга с радиусом, равным установленному здесь значению. Этот параметр также приводит к удалению отверстий в контуре подложки, которые меньше такого круга." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Этот параметр определяет, насколько закруглены внутренние углы верхнего контура фундамента. Внутренние углы закруглены до полукруга с радиусом, равным указанному здесь значению. Эта настройка также удаляет отверстия в контуре фундамента, которые меньше такого круга." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Данный параметр ограничивает число откатов, которые происходят внутри окна минимальной дистанции экструзии. Дальнейшие откаты внутри этого окна будут проигнорированы. Это исключает выполнение множества повторяющихся откатов над одним и тем же участком нити, что позволяет избежать проблем с истиранием нити." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Создаёт стенку вокруг модели, которая удерживает (горячий) воздух и препятствует обдуву модели внешним воздушным потоком. Очень пригодится для материалов, которые легко деформируются." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Диаметр кончика" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении XY (горизонтально)." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом в направлении Z (вертикально)." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Для компенсации усадки материала при остывании модель будет масштабирована с этим коэффициентом." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Слои крышки" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Дистанция расширения оболочки сверху" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Ширина удаляемой оболочки сверху" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Ускорение внутренней поверхности верхней стены" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Рывок внешних стен верхней поверхности" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Скорость внутренней поверхности верхней стены" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Поток внутренней стены верхней поверхности" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Ускорение внешней поверхности верхней стены" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Поток на самой внешней линии верхней поверхности" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Рывок внутренних стен верхней поверхности" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Скорость самых внешних стен верхней поверхности" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Ускорение верхней оболочки" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Экструдер для печати крышки" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Поток для верхней оболочки" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Рывок верхней оболочки" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Слои верхней оболочки" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Направление линий верхней оболочки" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Ширина линии крышки" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Шаблон верхней оболочки" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Скорость верхней оболочки" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Толщина крышки" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Для верхней и (или) нижней поверхностей вашего объекта с углом больше указанного в данном параметре верхняя и нижняя оболочки не будут расширены. Это предотвращает расширение узких областей оболочек, которые создаются, если поверхность модели имеет почти вертикальный наклон. Угол 0° является горизонтальным и не вызывает расширения оболочки, угол 90° является вертикальным и вызывает расширение всей оболочки." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Дно / крышка" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Дно / крышка" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Ускорение крышки/дна" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Экструдер дна/крышки" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Поток для верхних/нижних линий" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Рывок крышки/дна" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Направление линии дна/крышки" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Ширина линии дна/крышки" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Шаблон для крышки/дна" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Скорость крышки/дна" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Толщина дна/крышки" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "От стола" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Диаметр башен" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Угол крыши башен" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Матрица преобразования, применяемая к модели при её загрузке из файла." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Настраивает размещение структур поддержки. Размещение может быть выбрано с касанием стола или везде. Для последнего случая структуры поддержки печатаются даже на самой модели." +msgctxt "travel label" +msgid "Travel" +msgstr "Перемещение" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Ускорение перемещения" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Дистанция обхода" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Рывок перемещения" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Скорость перемещения" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Рассматривать модель только в виде поверхности или как объёмы со свободными поверхностями. При нормальном режиме печатаются только закрытые объёмы. В режиме \"Поверхность\" печатается одиночная стенка по границе объекта, без заполнения, без верхних и нижних оболочек. В режиме \"Оба варианта\" печатаются закрытые объёмы как нормальные, а любые оставшиеся полигоны как поверхности." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Дерево" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Шестигранник из треугольников" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Треугольник" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Треугольники" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Диаметр ствола" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Объединение перекрывающихся объёмов" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Стенки без поддержки, которые короче указанного значения, будут напечатаны с использованием стандартных настроек стенок. Более длинные стенки без поддержки будут напечатаны с использованием настроек стенки мостика." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Использовать адаптивные слои" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Использовать башни" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Использовать отдельный коэффициент ускорения для перемещения. Если опция отключена, то при перемещении будет использоваться значение ускорения строки в пункте назначения." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Использовать отдельный коэффициент рывка для перемещения. Если опция отключена, то при перемещении будет использоваться значение рывка строки в пункте назначения." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Использование относительной, а не абсолютной экструзии. Шаги относительной экструзии упрощают последующую обработку G-кода. Однако она не поддерживается всеми принтерами и может приводить к очень незначительным отклонениям в количестве наносимого материала в сравнении с шагами абсолютной экструзии. Независимо от этой настройки, перед выводом любого скрипта G-кода всегда будет установлен абсолютный режим экструзии." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Использование специальных башен для поддержки крошечных нависающих областей. Такие башни имеют диаметр больший, чем поддерживаемый ими регион. Вблизи нависаний диаметр башен увеличивается, формируя крышу." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Использовать указанный объект для изменения заполнения других объектов, с которыми он перекрывается. Заменяет области заполнения других объектов областями для этого объекта. Предлагается только для печати одной стенки без верхних и нижних оболочек." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Используйте этот объект для указания области поддержек. Может использоваться при генерации структуры поддержек." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Используйте этот объект для указания частей модели, которые не должны рассматриваться как нависающие. Может использоваться для удаления нежелаемых структур поддержки." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Пользовательский" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Вертикальный коэффициент масштабирования для компенсации усадки" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Вертикальный допуск в нарезанных слоях. В общем случае контуры слоя создаются путем снятия поперечных сечений по середине толщины каждого слоя (Середина). Кроме того, каждый слой может иметь области, попадающие в объем по всей толщине слоя (Исключение), или области, попадающие в любое место слоя (Включение). Способ «Включение» сохраняет больше деталей, способ «Исключение» обеспечивает наилучшую подгонку, а способ «Середина» — наиболее близкое соответствие оригинальной поверхности." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Ожидать пока прогреется стол" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Ожидать пока прогреется сопло" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Ускорение стенок" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Счетчик распределений по стенкам" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Экструдер стенок" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Поток для стенки" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Рывок стены" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Количество линий стенки" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Ширина линии стенки" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Порядок стенок" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Скорость печати стенок" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Толщина стенки" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Длина перехода к стенке" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Расстояние фильтра при переходе между стенками" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Поле фильтра при переходе между стенками" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Пороговый угол перехода между стенками" + +msgctxt "shell label" +msgid "Walls" +msgstr "Стенки" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Стенки, выступающие под углом больше указанного, будут напечатаны с использованием настроек выступающей стенки. Если значение составляет 90, стенки не считаются выступающими. Выступающие элементы, для которых имеется поддержка, также не считаются выступающими." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "При включении траектории инструмента корректируются для принтеров с планировщиками плавного движения. Небольшие движения, отклоняющиеся от общего направления траектории инструмента, сглаживаются для улучшения плавности движений." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Если включено, порядок, в котором печатаются линии заполнения, оптимизируется для сокращения пройденного расстояния. Достигнутое сокращение времени перемещения в очень большой степени зависит от модели, разделяемой на слои, шаблона заполнения, плотности и т. п. Обратите внимание, что для некоторых моделей, имеющих множество небольших заполняемых областей, время разделения на слои может существенно возрасти." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Если включено, скорость охлаждающего вентилятора, используемого во время печати, изменяется для областей оболочки непосредственно над поддержкой." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Когда включено, координаты Z шва привязаны к центру каждой части. Когда отключено, координаты определяются от абсолютной позиции на столе." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "При значении параметра выше нуля перемещения комбинга, превышающие заданное расстояние, будут выполняться с откатом. Когда значение параметра равно нулю, то максимума нет и перемещения комбинга выполняются без отката." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Если значение больше нуля, то горизонтальное расширение отверстия постепенно применяется к маленьким отверстиям (маленькие отверстия расширяются больше). Если установлено нулевое значение, то горизонтальное расширение отверстия будет применено ко всем отверстиям. Отверстия, превышающие максимальный диаметр горизонтального расширения отверстия, не расширяются." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Если значение больше нуля, то горизонтальное расширение отверстия представляет собой величину смещения, применяемую ко всем отверстиям в каждом слое. Положительные значения увеличивают размер отверстий, отрицательные значения уменьшают размер отверстий. Если этот параметр включен, то его можно дополнительно настроить с помощью максимального диаметра горизонтального расширения отверстия." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Во время печати областей оболочки мостика объем выдавленного материала умножается на указанное значение." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Во время печати стенок мостика объем выдавленного материала умножается на указанное значение." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Во время печати слоя второй оболочки мостика объем выдавленного материала умножается на указанное значение." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Во время печати слоя третьей оболочки мостика объем выдавленного материала умножается на указанное значение." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Когда произойдёт конфликт между параметрами минимальной скорости печати и минимальным временем печати слоя, голова принтера будет отведена от печатаемой модели и будет выдержана необходимая пауза для достижения минимального времени печати слоя." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Если у модели имеются небольшие вертикальные зазоры, состоящие всего из нескольких слоев, вокруг этих слоев в узком пространстве, как правило, присутствует оболочка. Выбор данного параметра предотвратит создание оболочки в ситуациях, когда вертикальные зазоры очень маленькие. Это позволит сократить время печати и нарезки, но с технической точки зрения область заполнения останется открытой." + +msgctxt "wall_transition_angle description" +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 "Когда требуется создавать переходы между четным и нечетным количеством стенок. Клиновидная форма с углом, превышающим этот параметр, не будет иметь переходов, и стенки не будут напечатаны в центре для заполнения оставшегося пространства. Уменьшение значения этого параметра позволяет сократить количество и длину этих центральных стенок, но при этом могут остаться зазоры или произойти чрезмерное экструдирование." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "При переходе между разным количеством стенок по мере того, как деталь становится тоньше, выделяется определенное пространство для разделения или соединения линий стенок." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "При очистке рабочий стол опускается для создания зазора между соплом и печатаемой деталью. Это предотвращает соударение сопла и печатаемой детали во время движений, снижая вероятность смещения печатаемой детали на рабочем столе." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "При выполнении отката между соплом и печатаемой деталью создаётся зазор. Это предотвращает возможность касания сопла частей детали при его перемещении, снижая вероятность смещения детали на столе." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Будет ли зазор по осям X/Y перекрывать зазор по оси Z и наоборот. Если X/Y перекрывает Z, то X/Y может выдавить поддержку из модели, влияя на реальный зазор по оси Z до нависания. Мы можем исправить это, не применяя X/Y зазор около нависаний." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Следует ли считать центром координат по осям X/Y в центре области печати." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "Ограничитель хода на оси X в прямом направлении (верхняя координата X) или в обратном направлении (нижняя координата X)." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Ограничитель хода на оси Y в прямом направлении (верхняя координата Y) или в обратном направлении (нижняя координата Y)." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Ограничитель хода на оси Z в прямом направлении (верхняя координата Z) или в обратном направлении (нижняя координата Z)." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Указывает, используют ли для все экструдеры общий нагреватель или у каждого имеется отдельный." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Указывает, используют ли все экструдеры общее сопло или у каждого имеется отдельное. Если установлено значение true, ожидается, что сценарий gcode запуска принтера правильно переводит все экструдеры в известное и взаимно совместимое начальное состояние отката (либо ноль, либо один материал не втянут); в этом случае начальное состояние отката описывается для каждого экструдера параметром machine_extruders_shared_nozzle_initial_retraction." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Имеет ли принтер подогреваемый стол." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Имеет ли принтер возможность стабилизации температуры для объема печати." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Следует ли размещать объект в центре стола (0, 0), вместо использования координатной системы, в которой был сохранён объект." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Следует ли управлять температурой из Cura. Выключение этого параметра предполагает управление температурой сопла вне Cura." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Следует ли добавлять команды управления температурой стола в начало G-кода. Если в коде уже используются команды для управления температурой стола, то Cura автоматически проигнорирует этот параметр." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Следует ли добавлять команды управления температурой сопла в начало G-кода. Если в коде уже используются команды для управления температурой сопла, то Cura автоматически проигнорирует этот параметр." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Следует ли добавлять G-код очистки сопла между слоями (максимум один на слой). Включение этого параметра может повлиять на ход отката при смене слоя. Используйте параметры отката с очисткой для управления откатом на слоях, для которых используется скрипт очистки." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева стола до нужной температуры перед началом печати." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Следует ли выдавливать материал перед началом печати. Активация этого параметра обеспечивает наполнение материалом сопла экструдера перед началом печати. Печать каймы или юбки может выполнять такое же действие, тогда выключения этого параметра экономит некоторое время." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Печатать все модели послойно или ждать завершения одной модели, прежде чем переходить к следующей. Режим «один за раз» может использоваться, если а) активен только один экструдер и б) все модели разделены таким образом, что печатающая головка может двигаться между ними и все модели ниже, чем расстояние между соплом и осями X/Y." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Следует ли показывать различные варианты этого принтера, которые описаны в отдельных JSON файлах." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Определяет, использовать ли команды отката встроенного программного обеспечения (G10/G11) вместо применения свойства E в командах G1 для отката материала." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Следует ли добавлять команду ожидания прогрева сопла перед началом печати." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Ширина одной линии заполнения." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Ширина одной линии поддержки крышки или дна." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Ширина одной линии крышки." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Ширина одной линии. Обычно, ширина каждой линии должна соответствовать диаметру сопла. Однако небольшое уменьшение этого значение приводит к лучшей печати." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Ширина отдельной линии черновой башни." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Ширина одной линии юбки или каймы." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Ширина одной линии дна поддержки." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Ширина одной линии крыши поддержки." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Ширина одной линии поддержки." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Ширина одной линии дна/крышки." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "Ширина одной линии стенки для всех линий стенки, кроме самой внешней." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Ширина одной линии стенки." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Ширина линий нижнего слоя подложки. Она должна быть достаточной, чтобы улучшить прилипание к столу." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Толщина линий средних слоёв подложки. Приводит к повышенному выдавливанию материала на втором слое, для лучшего прилипания к столу." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Ширина линий верхних слоёв подложки. Это могут быть тонкие линии, которые делают подложку гладкой." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "Ширина линии внешней стенки. Уменьшая данное значение, можно печатать более тонкие детали." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Ширина стенки, которая заменит тонкие элементы (согласно минимальному размеру элемента) модели. Если минимальная ширина линии стенки меньше толщины элемента, толщина стенки будет приведена к толщине самого элемента." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Позиция X очистной щетки" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Скорость поднятия при очистке" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "Очистка неактивного сопла на черновой башне" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Расстояние перемещения при очистке" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Очистка сопла между слоями" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Приостановка очистки" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Количество повторов очистки" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Расстояние отката с очисткой" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Включение отката с очисткой" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Дополнительно заполняемый объем при откате с очисткой" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Скорость заправки при откате с очисткой" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Скорость отката при откате с очисткой" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Скорость отката с очисткой" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Поднятие оси Z при очистке" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Высота поднятия оси Z при очистке" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "В области заполнения" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Выполняйте запись активного инструмента после отправки временных команд неактивному инструменту. Требуется для печати с двойным экструдером под управлением Smoothie или другой прошивки с модальными командами инструментов." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "Ограничитель хода на оси X в прямом направлении" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Расположение X, в котором запустится скрипт очистки." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y перекрывает Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Y в прямом направлении" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Ограничитель хода на оси Z в прямом направлении" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Поднятие оси Z после смены экструдера" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Высота поднятия оси Z после смены экструдера" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Высота поднятия оси Z" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Поднятие оси Z только над напечатанными частями" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Скорость поднятия оси Z" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Поднятие оси Z при откате" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Выравнивание шва по оси Z" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Позиция Z шва" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Привязка Z шва" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "X координата для Z шва" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Y координата для Z шва" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z перекрывает X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" + +msgctxt "travel description" +msgid "travel" +msgstr "перемещение" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "Следует ли включать охлаждающие вентиляторы при переключении сопел. Это может помочь уменьшить просачивание за счет более быстрого охлаждения сопла:
    • Без изменений: оставить вентиляторы в прежнем режиме
    • Только последний экструдер: включить вентилятор последнего использованного экструдера, но выключить остальные (если они есть). Это полезно, если у вас полностью раздельные экструдеры.
    • Все вентиляторы: включить все вентиляторы во время переключения сопел. Это полезно, если у вас один охлаждающий вентилятор или несколько вентиляторов, расположенных близко друг к другу.
    " + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Все вентиляторы" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Охлаждение при переключении экструдеров" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Управляйте пространственным соотношением между Z-швом опорной конструкции и фактической 3D-моделью. Это управление крайне важно, поскольку позволяет пользователям обеспечить плавное удаление опорных конструкций после печати, не нанося повреждений и не оставляя следов на напечатанной модели." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Минимальное расстояние Z-шва от модели" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Коэффициент заполнения начальных слоев опоры. Увеличение этого показателя может способствовать повышению адгезии платформы." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Только последний экструдер" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Разместить Z-шов на вершине многоугольника. При отключении этого параметра шов также может располагаться между вершинами. (Имейте в виду, что это не отменяет ограничений на размещение шва на безопорном выступе.)" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Минимальная толщина оболочки основной башни" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Поток основания рафта" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Перекрытие заполнения основания рафта" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Процент перекрытия заполнения основания рафта" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Поток рафта" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Поток стыка рафта" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Перекрытие заполнения стыка рафта" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Процент перекрытия заполнения стыка рафта" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Z-смещение стыка рафта" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Поток поверхности рафта" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Перекрытие заполнения поверхности рафта" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Процент перекрытия заполнения поверхности рафта" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Z-смещение поверхности рафта" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Угол нависания стенки, выше которого не следует размещать шов" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Поддерживать коэффициент плотности заполнения начального слоя " + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Поддерживать Z-шов в стороне от модели" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Количество материала, которое необходимо выдавить во время печати основания рафта, по сравнению с обычной экструзионной линией. Увеличение потока может улучшить адгезию и прочность конструкции." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Количество материала, которое необходимо выдавить во время печати стыка рафта, по сравнению с обычной экструзионной линией. Увеличение потока может улучшить адгезию и прочность конструкции." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Количество материала, которое необходимо выдавить во время печати рафта, по сравнению с обычной экструзионной линией. Увеличение потока может улучшить адгезию и прочность конструкции." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Количество материала, которое необходимо выдавить во время печати поверхности рафта, по сравнению с обычной экструзионной линией. Увеличение потока может улучшить адгезию и прочность конструкции." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнителем и стенками основания рафта, выраженная в процентах от ширины линии заполнения. Небольшое перекрытие позволяет стенкам плотно прилегать к заполнителю." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнителем и стенками основания рафта. Небольшое перекрытие позволяет стенкам плотно прилегать к заполнителю." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнителем и стенками стыка рафта, выраженная в процентах от ширины линии заполнения. Небольшое перекрытие позволяет стенкам плотно прилегать к заполнителю." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнителем и стенками стыка рафта. Небольшое перекрытие позволяет стенкам плотно прилегать к заполнителю." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнителем и стенками поверхности рафта, выраженная в процентах от ширины линии заполнения. Небольшое перекрытие позволяет стенкам плотно прилегать к заполнителю." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Величина перекрытия между заполнителем и стенками поверхности рафта. Небольшое перекрытие позволяет стенкам плотно прилегать к заполнителю." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "Расстояние между моделью и ее опорной конструкцией у шва по оси z." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "Минимальная толщина оболочки основной башни. Вы можете увеличить ее, чтобы сделать основную башню прочнее." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Старайтесь избегать швов на стенках, которые нависают под большим углом, чем этот. Если значение равно 90, ни одна стенка не будет считаться нависающей." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Без изменений" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "При печати первого слоя стыка рафта переместите с учетом этого смещения, чтобы настроить адгезию между основанием и стыком. Отрицательное смещение должно улучшить адгезию." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "При печати первого слоя поверхности рафта переместите с учетом этого смещения, чтобы настроить адгезию между стыком и поверхностью. Отрицательное смещение должно улучшить адгезию." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Z-шов на вершине" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Добавьте дополнительные линии в шаблон заполнения для поддержки оболочек выше. Эта опция предотвращает появление отверстий или капель пластика, которые иногда появляются в оболочках сложной формы из-за того, что заполнение внизу не поддерживает правильно слой оболочки, печатаемый выше. \"Стены\" поддерживают только контуры оболочки, тогда как \"стены и линии\" поддерживают также концы линий, которые образуют оболочку." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Скорость вентилятора построения в высоту" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Скорость вентилятора построения на уровне" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Номер вентилятора объема построения" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Определяет длину каждого шага изменения потока при экструзии вдоль косого шва. Меньшее расстояние приведет к более точному, но и более сложному G-коду." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Определяет длину косого шва, типа шва, который должен сделать шов Z менее заметным. Для эффективности должно быть больше 0." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Продолжительность каждого шага изменения плавного потока" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Включите изменения плавного потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Дополнительные линии заполнения для поддержки оболочек" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути." + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Размер шага дискретизации плавного потока" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Плавный поток включен" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Максимальное ускорение плавного потока" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "Максимальное ускорение потока начального слоя" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Максимальное ускорение для изменения плавного потока" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "Минимальная скорость изменения плавного потока для первого слоя" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Нет" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Ускорение на внешних стенках" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Замедление на внешних станках" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Коэффициент скорости в конце внешней стенки" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Интервал скорости на внешней стенке" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Коэффициент начальной скорости на внешней стенке" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Сбросить продолжительность потока" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Длина косого шва" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Начальная высота косого шва" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Длина шага косого шва" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Высота, на которой вентиляторы вращаются на обычной скорости. На нижних уровнях скорость вентилятора постепенно увеличивается от начальной скорости вентилятора до обычной скорости вентилятора." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "Слой, на котором вентиляторы построения вращаются на полной скорости. Это значение рассчитывается и округляется до целого числа." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "Номер вентилятора, охлаждающего объем построения. Если установлено значение 0, это означает, что вентилятора объема построения нет" + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "Коэффициент выбранной высоты слоя, при котором начнется косой шов. Меньшее число приведет к большей высоте шва. Для эффективности должно быть ниже 100." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Это ускорение, с которым можно достичь максимальной скорости при печати наружной стенки." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Это замедление, с которым следует завершить печать внешней стенки." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Это максимальная длина пути экструзии при разделении более длинного пути для применения ускорения/замедления на внешней стенке. Меньшее расстояние создаст более точный, но и более сложный G-код." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Это коэффициент максимальной скорости для завершения печати внешней стенки." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Это коэффициент максимальной скорости, с которой следует начинать печать внешней стенки." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Только стенки" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Стенки и линии" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Стены, которые нависают больше, чем на этот угол, будут напечатаны с использованием настроек для нависающих стен. Если значение равно 90, ни одна стенка не будет считаться нависающей. Нависание, поддерживаемое опорой, также не будет считаться нависанием. Кроме того, любая линия, которая нависает меньше, чем на половину, также не будет считаться нависанием." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Список целочисленных значений направлений линий, которые следует использовать при печати прямыми или зигзагом внешних слоев нижней поверхности. Элементы списка используются последовательно по мере печати слоев, и когда достигается конец списка, цикл повторяется. Элементы списка перечисляются внутри квадратных скобок и разделяются запятыми. По умолчанию используется пустой список, соответствующий стандартным углам (45 и 135 градусов)." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Ускорение для внутренней стенки нижней поверхности" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Рывок (jerk) для внутренней стенки нижней поверхности" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Скорость для внутренней стенки нижней поверхности" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Скорость подачи материала для внутренней стенки нижней поверхности" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Ускорение для внешней стенки нижней поверхности" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Скорость подачи материала для внешней стенки нижней поверхности" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Рывок (jerk) для внутренней стенки нижней поверхности" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Скорость для внешней стенки нижней поверхности" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Ускорение для внешних слоев нижней поверхности" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Экструдер для внешних слоев нижней поверхности" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Скорость подачи материала для внешних слоев нижней поверхности" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Рывок (jerk) для внешних слоев нижней поверхности" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Количество внешних слоев нижней поверхности" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Направления линий печати внешних слоев нижней поверхности" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Ширина линий печати внешних слоев нижней поверхности" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Паттерн печати внешних слоев нижней поверхности" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Скорость печати внешних слоев нижней поверхности" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Концентрические окружности" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Экструдер" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "Компенсация скорости подачи материала по линиям стенок, кроме самой внешней." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Компенсация скорости подачи материала в линиях нижних поверхностей модели." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Компенсация скорости подачи материала для самой внешней стенки нижней поверхности." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "Запрещенное расстояние при печати внутри модели" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Линии" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Минимальное время укладки слоя при печати навесом" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Минимальная длина нависающего сегмента" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Монотонный порядок печати нижней поверхности" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Отрицательное ускорение в конце наружной стенки" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Ускорение в начале наружной стенки" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Скорость печати нависающих стенок" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Скорость печати нависающих стенок указывается в процентах от скорости печати обычных. Вы можете указать несколько значений, чтобы еще более нависающие стенки печатались еще медленнее, например [75, 50, 25]." + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Коэффициент увеличения давления" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Print Core" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Печатать линии нижней поверхности так, чтобы они всегда перекрывали соседние линии в одном направлении. Печать в таком режиме занимает немного больше времени, но готовые плоские поверхности будут выглядеть более однородно." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "Первым должен быть стартовый GCode" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "Ускорение, с которым будут печататься внешние слои нижней поверхности." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "Ускорение, с которым будут печататься внутренние стенки нижней поверхности." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "Ускорение, с которым будут печататься самые внешние стенки нижней поверхности." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "Размеры печатающей головки для определения 'Безопасного расстояния до модели' при печати 'По одной'. Значения указываются относительно центра первого сопла экструдера. Расстояние от сопла до левого края называется 'Мин. X' и должно быть отрицательным. Расстояние от сопла до заднего края называется 'Мин. Y' и должно быть отрицательным. Макс. X (до правого края) и Макс. Y (до переднего края) должны иметь положительные значения. Высота портала — это расстояние от печатной поверхности до поперечной балки портала оси X." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "Расстояние между соплом и уже напечатанными стенками модели при перемещении внутри нее." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "Головка экструдера для печати внешних слоев нижней поверхности. Используется при наличии нескольких экструдеров." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "Максимальное мгновенное изменение скорости, с которой печатаются внешние слои нижней поверхности." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которой печатаются внутренние стенки нижней поверхности." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "Максимальное мгновенное изменение скорости, с которой печатаются самые внешние стенки нижней поверхности." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Минимальное время, затрачиваемое на печать слоя с наличием навеса. Замедляет работу принтера на одном слое минимум на указанное время. Это позволяет материалу хорошо остыть перед нанесением следующего слоя. Время укладки слоев все равно может быть меньше установленного минимального, если отключена функция подъема головки или если будет нарушена настройка минимальной скорости печати." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "Количество внешних слоев нижней поверхности. Обычно для получения качественных поверхностей низа модели достаточно только одного самого нижнего слоя." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "Паттерн самых нижних слоев нижней части модели." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "Скорость, с которой будут печататься внешние слои нижней поверхности." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "Скорость, с которой будут печататься внутренние стенки нижней поверхности." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "Скорость, с которой будет печататься самая внешняя стенка нижней поверхности." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Эта функция определяет, должен ли начальный g-код всегда быть самым первым. Если она отключена, то перед начальным g-кодом может быть вставлен другой, например T0." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Коэффициент повышения давления, предназначенный для синхронизации подачи материала со скоростью движения" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Если указать минимальное время печати слоя с навесом, то оно будет применено только в том случае, если есть хотя бы одно движение экструдера на слое с навесом, время выполнения которого превышает указанное." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Ширина одной линии на нижних поверхностях модели." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Зигзаг" diff --git a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po b/resources/i18n/ru_RU/gradual_flow_settings.def.json.po deleted file mode 100644 index f4e98a6eba..0000000000 --- a/resources/i18n/ru_RU/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: ru_RU\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 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Плавный поток включен" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Включите изменения плавного потока. Если эта функция включена, поток постепенно увеличивается/уменьшается до целевого значения. Это полезно для принтеров с трубкой Боудена, где поток не меняется сразу при запуске/остановке двигателя экструдера." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Максимальное ускорение плавного потока" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Максимальное ускорение для изменения плавного потока" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "Максимальное ускорение потока начального слоя" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "Минимальная скорость изменения плавного потока для первого слоя" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Размер шага дискретизации плавного потока" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Продолжительность каждого шага изменения плавного потока" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Сбросить продолжительность потока" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Для любого перемещения, превышающего это значение, поток материала сбрасывается до целевого потока пути." diff --git a/resources/i18n/tr_TR/cura.po b/resources/i18n/tr_TR/cura.po index f2185d2100..d5751242d7 100644 --- a/resources/i18n/tr_TR/cura.po +++ b/resources/i18n/tr_TR/cura.po @@ -170,6 +170,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF Dosyası" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF Okuyucu" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF Yazıcı" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF Writer eklentisi bozuk." @@ -245,6 +253,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF Dosyası" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF Okuyucu" + msgctxt "@label" msgid "Abort" msgstr "Durdur" @@ -281,6 +293,10 @@ msgctxt "@button" msgid "Accept" msgstr "Kabul et" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." + msgctxt "@label" msgid "Account synced" msgstr "Hesap senkronize edildi" @@ -421,6 +437,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "Anonim veri gönderilmesine izin ver" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "Her zaman sor" @@ -577,6 +597,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "Yapılandırmayı Yedekle ve Sıfırla" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "Malzeme ayarlarınızı ve eklentilerinizi yedekleyin ve senkronize edin" @@ -749,6 +773,14 @@ msgctxt "@label" msgid "Checking..." msgstr "Kontrol ediliyor..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "Bellenim güncellemelerini denetler." + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." @@ -829,6 +861,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "Sıkıştırılmış G-code Dosyası" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "Sıkıştırılmış G-code Okuyucusu" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "Sıkıştırılmış G-code Yazıcısı" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "Yapılandırma Değişiklikleri" @@ -901,6 +941,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "Bulut üzerinden bağlı" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "UltiMaker Topluluğundan yardım alın." @@ -1036,6 +1080,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "Digital Library'de baskı projeleri oluşturun." +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "Yedeklemeniz oluşturuluyor..." @@ -1048,10 +1096,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura Yedeklemeleri" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura Yedeklemeleri" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura Profili" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura Profil Okuyucu" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura Profili Yazıcı" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura Projesi 3MF dosyası" @@ -1081,6 +1141,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura sürümü" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine Arka Uç" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "Para Birimi:" @@ -1365,6 +1437,10 @@ msgctxt "@label" msgid "Enabled" msgstr "Etkin" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." + msgctxt "@title:label" msgid "End G-code" msgstr "G-code’u Sonlandır" @@ -1453,6 +1529,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "UltiMaker Cura'yı eklentilerle ve malzeme profilleriyle genişletin." +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" + msgctxt "@label" msgid "Extruder" msgstr "Ekstrüder" @@ -1601,6 +1681,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "Aygıt Yazılımı Güncellemesi" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "Bellenim Güncelleme Denetleyicisi" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "Aygıt Yazılımı Güncelleyici" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "Yazıcı bağlantısı aygıt yazılımını yükseltmeyi desteklemediği için aygıt yazılımı güncellenemiyor." @@ -1700,6 +1788,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "G-code dosyası" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code Profil Okuyucu" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code Okuyucu" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code Yazıcı" + msgctxt "@label" msgid "G-code flavor" msgstr "G-code türü" @@ -1848,6 +1948,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "Yazıcınız listede yoksa ağ yazdırma sorun giderme kılavuzunu okuyun" +msgctxt "name" +msgid "Image Reader" +msgstr "Resim Okuyucu" + msgctxt "@action:button" msgid "Import" msgstr "İçe Aktar" @@ -2132,6 +2236,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "Sol görünüm" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "Eski Cura Profil Okuyucu" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "Geliştiricileri sorunlarla ilgili bilgilendirin." @@ -2212,6 +2320,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "Günlükler" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "Yazıcı bağlantısı koptu" @@ -2220,6 +2332,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "Makine Ayarları" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "Makine Ayarları eylemi" + msgctxt "@backuplist:label" msgid "Machines" msgstr "Makineler" @@ -2236,6 +2352,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot Baskı Dosyası" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot Baskı Dosyası Yazarı" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter belirlenen yola kaydedemedi." @@ -2292,6 +2412,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "UltiMaker Cura eklentilerinizi ve malzeme profillerini burada yönetin. Eklentilerinizi güncel tuttuğunuzdan ve ayarınızı düzenli olarak yedeklediğinizden emin olun." +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "UltiMaker ağındaki yazıcılar için ağ bağlantılarını yönetir." + msgctxt "@label" msgid "Manufacturer" msgstr "Üretici" @@ -2304,6 +2432,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "Mağaza" +msgctxt "name" +msgid "Marketplace" +msgstr "Mağaza" + msgctxt "@action:label" msgid "Material" msgstr "Malzeme" @@ -2320,6 +2452,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "Malzeme Rengi" +msgctxt "name" +msgid "Material Profiles" +msgstr "Malzeme Profilleri" + msgctxt "@label" msgid "Material Type" msgstr "Malzeme Türü" @@ -2364,6 +2500,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "Mod" +msgctxt "name" +msgid "Model Checker" +msgstr "Model Kontrol Edici" + msgctxt "@info:title" msgid "Model Errors" msgstr "Model hataları" @@ -2380,6 +2520,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "Görüntüle" +msgctxt "name" +msgid "Monitor Stage" +msgstr "Görüntüleme Aşaması" + msgctxt "@action:button" msgid "Monitor print" msgstr "Baskı izleme" @@ -2821,6 +2965,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "Model Başına Ayarlar" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "Model Başına Ayarlar Aracı" + msgid "Perspective" msgstr "Perspektif" @@ -2946,6 +3094,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "Son İşleme" +msgctxt "name" +msgid "Post Processing" +msgstr "Son İşleme" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "Son İşleme Uzantısı" @@ -2962,6 +3114,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "Hazırla" +msgctxt "name" +msgid "Prepare Stage" +msgstr "Hazırlık Aşaması" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "Hazırlanıyor..." @@ -2982,6 +3138,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "Önizleme" +msgctxt "name" +msgid "Preview Stage" +msgstr "Öz İzleme Aşaması" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "Astarlama Direği" @@ -3226,6 +3386,106 @@ msgctxt "@label" msgid "Properties" msgstr "Özellikler" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "Cura’da görüntüleme aşaması sunar." + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "Normal gerçek bir ağ görünümü sağlar." + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "Cura’da hazırlık aşaması sunar." + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "Cura’da ön izleme aşaması sunar." + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "Cura profillerinin dışa aktarılması için destek sağlar." + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "Cura profillerinin içe aktarılması için destek sağlar." + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "3MF dosyalarının okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "AMF dosyalarının okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "X3D dosyalarının okunması için destek sağlar." + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "Model dosyalarını okuma desteği sağlar." + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "3MF ve UCP dosyalarının yazılması için destek sağlar." + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "MakerBot Format Paketleri yazmayı destekler." + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "Model Başına Ayarları sağlar." + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "Röntgen Görüntüsü sağlar." + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." + msgctxt "@label" msgid "PyQt version" msgstr "PyQt Sürümü" @@ -3262,6 +3522,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "%1 uygulamasından çık" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "Bir sıkıştırılmış arşivden g-code okur." + msgctxt "@button" msgid "Recommended" msgstr "Önerilen" @@ -3314,6 +3578,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "Çıkarılabilir Sürücü" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" + msgctxt "@action:button" msgid "Remove" msgstr "Kaldır" @@ -3594,6 +3862,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "Malzemeler yazıcıya gönderiliyor" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Nöbetçi Günlükçü" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "Seri iletişim kitaplığı" @@ -3802,6 +4074,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "UltiMaker platformuna giriş yapın" +msgctxt "name" +msgid "Simulation View" +msgstr "Simülasyon Görünümü" + msgctxt "@tooltip" msgid "Skin" msgstr "Yüzey Alanı" @@ -3830,6 +4106,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "Ayarlar değiştirilirken otomatik olarak dilimle." +msgctxt "name" +msgid "Slice info" +msgstr "Dilim bilgisi" + msgctxt "@message:title" msgid "Slicing failed" msgstr "Dilimleme başarısız" @@ -3846,6 +4126,10 @@ msgctxt "@label" msgid "Solid" msgstr "Katı" +msgctxt "name" +msgid "Solid View" +msgstr "Gerçek Görünüm" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "Gerçek görünüm" @@ -3940,6 +4224,10 @@ msgctxt "@label" msgid "Strength" msgstr "Sağlamlık" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "Malzeme %1 dosyasına başarıyla dışa aktarıldı" @@ -3984,6 +4272,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "Destek Engelleyici" +msgctxt "name" +msgid "Support Eraser" +msgstr "Destek Silici" + msgctxt "@tooltip" msgid "Support Infill" msgstr "Destek Dolgusu" @@ -4501,6 +4793,10 @@ msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." msgstr "Uygun veri veya meta veri olmadan Cura yedeği geri yüklenmeye çalışıldı." +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh Okuyucu" + msgctxt "@button" msgid "Troubleshooting" msgstr "Sorun giderme" @@ -4521,10 +4817,22 @@ msgctxt "@label" msgid "Type" msgstr "Tür" +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP Okuyucu" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UPF Yazıcı" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB yazdırma" +msgctxt "name" +msgid "USB printing" +msgstr "USB yazdırma" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker hesabı" @@ -4541,6 +4849,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker Biçim Paketi" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "Ultimaker Ağ Bağlantısı" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker Tarafından Doğrulanmış Paket" @@ -4549,6 +4861,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker Tarafından Doğrulanmış Eklenti" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "Ultimaker makine eylemleri" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker yazıcı" @@ -4561,6 +4877,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "Profil eklenemiyor." @@ -4734,6 +5054,114 @@ msgctxt "@button" msgid "Updating..." msgstr "Güncelleniyor..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "Yapılandırmaları, Cura 5.6'dan Cura 5.7'ye yükseltir." + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "Özel Aygıt Yazılımı Yükle" @@ -4770,6 +5198,114 @@ msgctxt "@title:column" msgid "Value" msgstr "Değer" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "2.1’den 2.2’ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "2.2’den 2.4’e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "2.7’den 3.0’a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "3.0'dan 3.1'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "3.2'dan 3.3'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "3.3'dan 3.4'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "3.4’ten 3.5’e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "3.5’ten 4.0’a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "4.0’dan 4.1’e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "4.11'den 4.12'ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "4.13'ten 5.0'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "4.2'den 4.3'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "4.3'ten 4.4'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "4.4'ten 4.5'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "4.7'den 4.8'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "4.8'den 4.9'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "4.9'dan 4.10'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "5.2'dan 5.3'a Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "5.3'ten 5.4'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "5.4'ten 5.5'e Sürüm Yükseltme" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "5.6'dan 5.7'ye Sürüm Yükseltme" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "Yazıcıları Digital Factory’de görüntüleyin" @@ -4886,6 +5422,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "Genişlik (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "G-code’u bir sıkıştırılmış arşive yazar." + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "G-code’u bir dosyaya yazar." + msgctxt "@label" msgid "X (Width)" msgstr "X (Genişlik)" @@ -4898,6 +5442,10 @@ msgctxt "@label" msgid "X min" msgstr "X min" +msgctxt "name" +msgid "X-Ray View" +msgstr "Röntgen Görüntüsü" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "Röntgen Görüntüsü" @@ -4910,6 +5458,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D Dosyası" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D Okuyucu" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (Derinlik)" @@ -5056,554 +5608,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} eklenti indirilemedi" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "UltiMaker ağ bağlantılı yazıcılara olan ağ bağlantılarını yönetir." - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "Ultimaker Ağ Bağlantısı" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "G-code dosyalarından profilleri içe aktarmak için destek sağlar." - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code Profil Okuyucu" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "Normal gerçek bir ağ görünümü sağlar." - -msgctxt "name" -msgid "Solid View" -msgstr "Gerçek Görünüm" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "Yüksek akışlı sıçramaları sınırlamak amacıyla akışı kademeli olarak düzelten CuraEngine eklentisi" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "3MF dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF Okuyucu" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "G-Code’ları kabul eder ve bir yazıcıya gönderir. Eklenti aynı zamanda üretici sürümünü güncelleyebilir." - -msgctxt "name" -msgid "USB printing" -msgstr "USB yazdırma" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "Bellenim güncellemelerini denetler." - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "Bellenim Güncelleme Denetleyicisi" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "Uygulamanın uzantılarını yönetir ve Ultimaker web sitesinden uzantıların incelenmesini sağlar." - -msgctxt "name" -msgid "Marketplace" -msgstr "Mağaza" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "Yapılandırmanızı yedekleyin ve geri yükleyin." - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura Yedeklemeleri" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "Makine ayarlarının değiştirilmesini sağlar (yapı hacmi, nozül boyutu vb.)" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "Makine Ayarları eylemi" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "Yapılandırmaları Cura 2.5’ten Cura 2.6’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "2.5’ten 2.6’ya Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "Yapılandırmaları Cura 4.7'den Cura 4.8'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "4.7'den 4.8'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "Yapılandırmaları Cura 4.4'ten Cura 4.5'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "4.4'ten 4.5'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "Yapılandırmaları Cura 3.0'dan Cura 3.1'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "3.0'dan 3.1'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "Yapılandırmaları Cura 4.11'den Cura 4.12'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "4.11'den 4.12'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "Yapılandırmaları Cura 4.1'den Cura 4.2'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "Sürüm 4.1'den 4.2'ye Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "Yapılandırmaları Cura 2.6’dan Cura 2.7’ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "2.6’dan 2.7’ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "Yapılandırmaları Cura 4.6.0'dan Cura 4.6.2'ye yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "4.6.0'dan 4.6.2'ye Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "Yapılandırmaları Cura 3.3’ten Cura 3.4’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "3.3'dan 3.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "Yapılandırmaları Cura 4.8'den Cura 4.9'a yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "4.8'den 4.9'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "Yapılandırmaları Cura 4.5'ten Cura 4.6'ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "4.5'ten 4.6'ya Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "Yapılandırmaları Cura 4.2'den Cura 4.3'e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "4.2'den 4.3'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "Yapılandırmaları Cura 3.2’ten Cura 3.3’ya yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "3.2'dan 3.3'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "Yapılandırmaları Cura 4.3'ten Cura 4.4'e yükseltir." +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "Kombinasyon önerilmez. Daha iyi güvenilirlik için BB core'u 1. yuvaya (solda) yükleyin." -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "4.3'ten 4.4'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "Yapılandırmaları, Cura 5.6'dan Cura 5.7'ye yükseltir." +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot Çizim Baskı Dosyası" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "5.6'dan 5.7'ye Sürüm Yükseltme" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "Yazıcı Ara" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "Yapılandırmaları Cura 2.1’den Cura 2.2’ye yükseltir." +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "Bu, bir Cura Universal projesi dosyasıdır. Cura Universal Projesi olarak açmak mı yoksa modelleri buradan içe aktarmak mı istiyorsunuz?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "2.1’den 2.2’ye Sürüm Yükseltme" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "Teknik Destek İçin Dışa Aktarma Paketi" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "Cura 5.3'ten Cura 5.4'e yükseltme yapılandırmaları" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "Model verileri motora gönderilemiyor. Lütfen tekrar deneyin veya destek ekibiyle iletişime geçin." -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "5.3'ten 5.4'e Sürüm Yükseltme" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "Model verileri motora gönderilemiyor. Lütfen daha az ayrıntılı bir model kullanmayı deneyin veya örnek sayısını azaltın." msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "Yapılandırmaları Cura 4.9'dan Cura 4.10'a yükseltir." +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "Yapılandırmaları Cura 5.8'den Cura 5.9'a yükseltir." msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "4.9'dan 4.10'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "Yapılandırmaları Cura 2.7’den Cura 3.0’a yükseltir." +msgid "Version Upgrade 5.8 to 5.9" +msgstr "5.8'den 5.9'a Sürüm Yükseltmesi" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "2.7’den 3.0’a Sürüm Yükseltme" +msgid "3DConnexion mouses" +msgstr "3DConnexion fareleri" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "Yapılandırmaları Cura 3.5’ten Cura 4.0’a yükseltir." +msgid "Allows working with 3D mouses inside Cura." +msgstr "Cura içerisinde 3D farelerle çalışma imkânı sağlar." -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "3.5’ten 4.0’a Sürüm Yükseltme" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "Ekstruder Değişim süresi" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "Yapılandırmaları Cura 5.2'dan Cura 5.3'a yükseltir." +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "Ekstruder Ön Başlangıç G kodu" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "5.2'dan 5.3'a Sürüm Yükseltme" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "Model alet sapı Y eksenini çevirir (yeniden başlatma gerekir)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "Yapılandırmaları Cura 4.0’dan Cura 4.1’e yükseltir." +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "%1 %2 için lisans" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "4.0’dan 4.1’e Sürüm Yükseltme" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ Printfile" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "Yapılandırmaları Cura 4.13'ten Cura 5.0'a yükseltir." +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "Öteleme araç sapının Y ekseni çevrilmeli mi? Bu, sadece modelin Y koordinatını etkileyecektir, makinenin Baskı Başlığı ayarları gibi diğer tüm ayarlar etkilenmeyecek ve hâlâ eskisi gibi davranacaktır." -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "4.13'ten 5.0'a Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "Yapılandırmaları Cura 3.4’ten Cura 3.5’e yükseltir." - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "3.4’ten 3.5’e Sürüm Yükseltme" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "Yapılandırmaları Cura 2.2’den Cura 2.4’e yükseltir." +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "GCode'u Başlat, ilk olmalıdır" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "2.2’den 2.4’e Sürüm Yükseltme" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "Bu yapılandırma, %1 çekirdek türü ile uyumsuzluk veya başka bir sorun olduğu için kullanılamaz. Bu yazıcı tipinin yeni dilimlere göre hangi çekirdekleri desteklediğini kontrol etmek için lütfen destek sayfasını ziyaret edin." msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "Yapılandırmaları Cura 4.6.2'den Cura 4.7'ye yükseltir." +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "Yapılandırmaları Cura 5.9'dan Cura 5.10'a yükseltir" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "4.6.2'den 4.7'ye Sürüm Yükseltme" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "5.9'dan 5.10'a Sürüm Yükseltmesi" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "Cura 5.4'ten Cura 5.5'e yükseltme yapılandırmaları" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "5.4'ten 5.5'e Sürüm Yükseltme" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "G-code dosyalarının yüklenmesine ve görüntülenmesine olanak tanır." - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code Okuyucu" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y max ( '+' öne doğru)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "Anonim dilim bilgisi gönderir. Tercihlerden devre dışı bırakılabilir." - -msgctxt "name" -msgid "Slice info" -msgstr "Dilim bilgisi" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "Çıkarılabilir sürücünün takılıp çıkarılmasını ve yazma desteği sağlar." - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "Çıkarılabilir Sürücü Çıkış Cihazı Eklentisi" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "Belirli yerlerde desteğin yazdırılmasını engellemek için bir silici yüzey oluşturur" - -msgctxt "name" -msgid "Support Eraser" -msgstr "Destek Silici" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "Olası yazdırma sorunlarına karşı modelleri ve yazdırma yapılandırmasını kontrol eder ve öneriler verir." - -msgctxt "name" -msgid "Model Checker" -msgstr "Model Kontrol Edici" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "Cura’da hazırlık aşaması sunar." - -msgctxt "name" -msgid "Prepare Stage" -msgstr "Hazırlık Aşaması" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "Dilimlenen katman verilerinin önizlemesini sağlar." - -msgctxt "name" -msgid "Simulation View" -msgstr "Simülasyon Görünümü" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "AMF dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF Okuyucu" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "Röntgen Görüntüsü sağlar." - -msgctxt "name" -msgid "X-Ray View" -msgstr "Röntgen Görüntüsü" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "Aygıt yazılımını güncellemeye yönelik makine eylemleri sağlar." - -msgctxt "name" -msgid "Firmware Updater" -msgstr "Aygıt Yazılımı Güncelleyici" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "Eski Cura sürümlerinden profilleri içe aktarmak için destek sağlar." - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "Eski Cura Profil Okuyucu" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "Kullanıcının oluşturduğu komut dosyalarına son işleme için izin veren uzantı" - -msgctxt "name" -msgid "Post Processing" -msgstr "Son İşleme" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "Çökme raporlayıcının kullanabilmesi için belirli olayları günlüğe kaydeder" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Nöbetçi Günlükçü" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "MakerBot Format Paketleri yazmayı destekler." - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot Baskı Dosyası Yazarı" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "Cura profillerinin içe aktarılması için destek sağlar." - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura Profil Okuyucu" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketlerinin okunması için destek sağlar." - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP Okuyucu" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "2D resim dosyasından yazdırılabilir geometri oluşturulmasını sağlar." - -msgctxt "name" -msgid "Image Reader" -msgstr "Resim Okuyucu" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "CuraEngine arka dilimleme ucuna bağlantı sağlar." - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine Arka Uç" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "G-code’u bir sıkıştırılmış arşive yazar." - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "Sıkıştırılmış G-code Yazıcısı" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "Ultimaker makineleri için makine eylemleri sunar (yatak dengeleme sihirbazı, yükseltme seçme vb.)" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "Ultimaker makine eylemleri" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "Bir sıkıştırılmış arşivden g-code okur." - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "Sıkıştırılmış G-code Okuyucusu" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "Cura’da ön izleme aşaması sunar." - -msgctxt "name" -msgid "Preview Stage" -msgstr "Öz İzleme Aşaması" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "Digital Library'ye bağlanarak Cura'nın Digital Library'deki dosyaları açmasına ve kaydetmesine olanak tanır." - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "Cura profillerinin dışa aktarılması için destek sağlar." - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura Profili Yazıcı" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "X3D dosyalarının okunması için destek sağlar." - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D Okuyucu" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "Model dosyalarını okuma desteği sağlar." - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh Okuyucu" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "Cura’da görüntüleme aşaması sunar." - -msgctxt "name" -msgid "Monitor Stage" -msgstr "Görüntüleme Aşaması" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "Model Başına Ayarları sağlar." - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "Model Başına Ayarlar Aracı" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "XML tabanlı malzeme profillerini okuma ve yazma olanağı sağlar." - -msgctxt "name" -msgid "Material Profiles" -msgstr "Malzeme Profilleri" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "3MF ve UCP dosyalarının yazılması için destek sağlar." - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF Yazıcı" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "Ultimaker Biçim Paketleri yazmak için destek sağlar." - -msgctxt "name" -msgid "UFP Writer" -msgstr "UPF Yazıcı" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "G-code’u bir dosyaya yazar." - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code Yazıcı" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y min ('-' arkaya doğru)" diff --git a/resources/i18n/tr_TR/fdmextruder.def.json.po b/resources/i18n/tr_TR/fdmextruder.def.json.po index 737842eac8..16fa04a753 100644 --- a/resources/i18n/tr_TR/fdmextruder.def.json.po +++ b/resources/i18n/tr_TR/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "Çap" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." + msgctxt "extruder_nr label" msgid "Extruder" msgstr "Ekstrüder" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "Ekstrüder Yazıcı Soğutma Fanı" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "Ekstruder G-Code'u Sonlandırma" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "Bu ekstrüderden geçiş yaparken çalıştırmak üzere G Code’u sonlandırın." - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "Ekstruder Bitiş G Kodu Süresi" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "Bu ekstruderden ayrılırken son g kodunun uygulanması için gereken süre." - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "Ekstruderin Mutlak Bitiş Konumu" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "Ekstruderin X Bitiş Konumu" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "Ekstruderin Y Bitiş Konumu" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "Ekstruder İlk Z konumu" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "Ekstrüder Yazıcı Soğutma Fanı" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "Ekstruder G-Code'u Başlatma" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "Ekstruder Başlangıç ​​G Kodu Süresi" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "Bu ekstrudere geçiş sırasında başlangıç ​​g kodunun uygulanması için gereken süre." - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "Ekstruderin Mutlak Başlangıç Konumu" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "Ekstruder X Başlangıç Konumu" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "Ekstruder Y Başlangıç Konumu" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder bitiş konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "Ekstruder başlama konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "Nozül Kimliği" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "Ekstruder X Başlangıç Konumu" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı." - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "Ekstruder Y Başlangıç Konumu" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "Nozül NX Ofseti" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "Nozül ofsetinin x koordinatı." - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "Nozül Y Ofseti" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "Bu ekstrüdere geçiş yaparken çalıştırmak üzere G Code’u başlatın." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "Yazdırma için kullanılan ekstruder dişli çark. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "Bu ekstrüdere bağlı yazıcı soğutma fanı sayısı. Yalnızca her bir ekstrüder için farklı yazıcı soğutma fanınız varsa bunu 0 varsayılan değeri olarak değiştirin." + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "Bu ekstruderden ayrılırken son g kodunun uygulanması için gereken süre." + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "Bu ekstrudere geçiş sırasında başlangıç ​​g kodunun uygulanması için gereken süre." + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "Ekstruder kapatılırken bitiş konumunun x koordinatı." + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "Nozül ofsetinin x koordinatı." + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "Ekstruder açılırken başlangıç konumunun x koordinatı." + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "Ekstruder kapatılırken bitiş konumunun Y koordinatı." + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "Nozül ofsetinin y koordinatı." + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "Ekstruder açılırken başlangıç konumunun Y koordinatı." + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Püskürtme Memesi Uzunluğu" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Püskürtme memesinin ucu ile yazıcı kafasının en alt kısmı arasındaki yükseklik farkı." + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "Ekstruder Değişim süresi" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "Ekstruder Ön Başlatma G Kodu" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "Bu ekstrudere geçmeden önce çalıştırılacak g kodunu önden başlatır." + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "Çoklu alet kurulumu kullanıldığında bu değer, saniye cinsinden alet değiştirme süresidir. Bu değer, meydana gelen değişiklik sayısına bağlı olarak tahmini süreye eklenecektir." diff --git a/resources/i18n/tr_TR/fdmprinter.def.json.po b/resources/i18n/tr_TR/fdmprinter.def.json.po index b7d6b866f2..f26f42db1b 100644 --- a/resources/i18n/tr_TR/fdmprinter.def.json.po +++ b/resources/i18n/tr_TR/fdmprinter.def.json.po @@ -12,5557 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "Makine" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "Asal kule nasıl oluşturulur:
    • Normal: İkincil malzemelerin astarlandığı bir kova oluşturur.
    • Aralıklı: Olabildiğince seyrek bir asal kule oluşturur. Bu, zamandan ve filamentten tasarruf sağlayacaktır ama bu yalnızca kullanılan malzemelerin birbirine yapışması durumunda mümkündür.
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "Makine özel ayarları" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "Makine Türü" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "3B yazıcı modelinin adı." - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "Makine Varyantlarını Göster" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi." - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "G-code’u Başlat" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları" -"." - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "G-code’u Sonlandır" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "En son çalıştırılacak G-code komutları (" -" ile ayrılır)." - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "GUID malzeme" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." - -msgctxt "material_type label" -msgid "Material Type" -msgstr "Malzeme Türü" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "Kullanılan malzemenin türü." - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "Malzeme Markası" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "Kullanılan malzemenin markası." - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "Çap" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "Yapı Levhasının Isınmasını Bekle" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe." - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "Nozülün Isınmasını Bekle" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe." - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "Malzeme Sıcaklıklarını Ekle" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığını Ekle" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "Makine Genişliği" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "Yazdırılabilir alan genişliği (X yönü)." - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "Makine Derinliği" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "Yazdırılabilir alan derinliği (Y yönü)." - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "Makine Yüksekliği" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "Yapı Levhası Şekli" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli." - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "Dikdörtgen" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "Eliptik" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "Yapı Levhası Malzemesi" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "Yazıcıya takılı yapı levhasının malzemesi." - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "Cam" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "Alüminyum" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "Isıtılmış Yapı Levhası İçerir" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı." - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği." - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "Her Zaman Aktif Aracı Yaz" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir." - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "Merkez Nokta" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı." - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "Ekstrüder Sayısı" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur." - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "Etkinleştirilmiş Ekstruder Sayısı" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "Dış Nozül Çapı" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "Nozül ucunun dış çapı." - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "Nozül Uzunluğu" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı." - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "Nozül Açısı" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı." - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "Isı Bölgesi Uzunluğu" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe." - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin." - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "Isınma Hızı" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "Soğuma hızı" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "Minimum Sürede Bekleme Sıcaklığı" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir." - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code türü" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "Oluşturulacak g-code türü." - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin (Volümetrik)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "Üretici Yazılımı Geri Çekme" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "Malzemeyi geri çekmek için G1 komutlarında E özelliği yerine aygıt yazılımı çekme komutlarının (G10/G11) kullanılıp kullanılmayacağı." - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "Ekstrüderler Isıtıcıyı Paylaşır" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı." - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "Ekstrüder Nozül Paylaşımı" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır." - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "Paylaşılan Nozül İlk Geri Çekme" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır." - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "İzin Verilmeyen Alanlar" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "Nozül İzni Olmayan Alanlar" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi." - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "Makinenin Başlığı ve Fan Poligonu" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır." - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "Portal Yüksekliği" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "Nozül Kimliği" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "Nozül Çapı" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "Ekstruder Ofseti" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "Ekstruder İlk Z konumu" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "Mutlak Ekstruder İlk Konumu" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "Maksimum X Hızı" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X yönü motoru için maksimum hız." - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Maksimum Y Hızı" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y yönü motoru için maksimum hız." - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Maksimum Z Hızı" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z yönü motoru için maksimum hız." - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "Maksimum Hız E" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "Filamanın maksimum hızı." - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "Maksimum X İvmesi" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X yönü motoru için maksimum ivme" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "Maksimum Y İvmesi" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y yönü motoru için maksimum ivme." - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Maksimum Z İvmesi" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z yönü motoru için maksimum ivme." - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "Maksimum Filaman İvmesi" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "Filaman motoru için maksimum ivme." - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "Varsayılan İvme" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "Varsayılan X-Y Salınımı" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "Yatay düzlemdeki hareketler için varsayılan salınım." - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "Varsayılan Z Salınımı" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z yönü motoru için varsayılan salınım." - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "Varsayılan Filaman Salınımı" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "Filaman motoru için varsayılan salınım." - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "Milimetre Başına Adım (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı." - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "Milimetre Başına Adım (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı." - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "Milimetre Başına Adım (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı." - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "Milimetre Başına Adım (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "X Kapaması Pozitif Yönde" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu." - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "Y Kapaması Pozitif Yönde" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu." - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "Z Kapaması Pozitif Yönde" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu." - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "Minimum Besleme Hızı" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "Yazıcı başlığının minimum hareket hızı." - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "Besleyici Çark Çapı" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "Besleyiciye malzeme veren çarkın çapı." - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin." - -msgctxt "resolution label" -msgid "Quality" -msgstr "Kalite" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "Katman Yüksekliği" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir." - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "İlk Katman Yüksekliği" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." - -msgctxt "line_width label" -msgid "Line Width" -msgstr "Hat Genişliği" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir." - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "Duvar Hattı Genişliği" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "Tek bir duvar hattının genişliği." - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "Dış Duvar Hattı Genişliği" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir." - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "İç Duvar(lar) Hattı Genişliği" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği." - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "Üst/Alt Hat Genişliği" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "Tek bir üst/alt hattın genişliği." - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "Dolgu Hattı Genişliği" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "Tek bir dolgu hattının genişliği." - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "Etek/Kenar Hattı Genişliği" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "Tek bir etek veya kenar hattının genişliği." - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "Destek Hattı Genişliği" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "Tek bir destek yapısı hattının genişliği." - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "Destek Arayüz Hattı Genişliği" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "Destek çatısı veya zemininin tek çizgi genişliği." - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "Destek Çatısı Çizgi Genişliği" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "Tek bir destek çatısının çizgi genişliği." - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "Destek Zemini Çizgi Genişliği" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "Tek bir destek zemininin çizgi genişliği." - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "İlk Direk Hattı Genişliği" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "Tek bir ilk direk hattının genişliği." - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "İlk Katman Hat Genişliği" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir." - -msgctxt "shell label" -msgid "Walls" -msgstr "Duvarlar" - -msgctxt "shell description" -msgid "Shell" -msgstr "Kovan" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "Duvar Ekstruderi" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "Dış Duvar Ekstruderi" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "İç Duvar Ekstrüderi" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "Duvar Kalınlığı" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler." - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "Duvar Hattı Sayısı" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır." - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "Duvar Geçişi Uzunluğu" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır." - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "Duvar Dağılım Sayısı" - -msgctxt "wall_distribution_count description" -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 "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir." - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "Duvar Geçişi Eşik Açısı" - -msgctxt "wall_transition_angle description" -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 "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir." - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "Duvar Geçişi Filtresi Mesafesi" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir." - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "Dış Duvar Sürme Mesafesi" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi." - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "Dış Duvar İlavesi" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "Duvar Yazdırma Sırasını Optimize Et" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez." - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "Duvar Sıralaması" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır." - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "İçten Dışa" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "Dıştan İçe" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "Alternatif Ek Duvar" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar." - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "Minimum Duvar Hattı Genişliği" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "Minimum Çift Duvar Hattı Genişliği" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır." - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "Minimum Tek Duvar Hattı Genişliği" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır." - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "İnce Duvarları Yazdır" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "Minimum Yüz Hattı Boyutu" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir." - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "Minimum İnce Duvar Hattı Genişliği" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır." - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "Yatay Büyüme" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir." - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "İlk Katmanın Yatay Genişlemesi" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir." - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "Delik Yatay Büyüme" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "Delik Yatay Genişlemesi, sıfırdan büyük olmak koşuluyla, her katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerlerde delikler büyür, negatif değerlerde ise küçülür. Bu ayar etkinleştirildiğinde, Delik Yatay Genişleme Maksimum Çapı ile daha detaylı bir ayarlama yapılabilir." - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "Delik Yatay Büyüme Maksimum Çapı" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez." - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z Dikiş Hizalama" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır." - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "Kullanıcı Tarafından Belirtilen" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "En kısa" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "Gelişigüzel" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "En Keskin Köşe" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z Dikişi Konumu" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum." - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "Sol Arka" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "Geri" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "Sağ Arka" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "Sağ" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "Sağ Ön" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "Ön" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "Sol Ön" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "Sol" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z Dikişi X" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı." - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z Dikişi Y" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı." - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "Dikiş Köşesi Tercihi" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer." - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "Hiçbiri" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "Dikişi Gizle" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "Dikişi Açığa Çıkar" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "Dikişi Gizle veya Açığa Çıkar" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "Akıllı Gizleme" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z Dikişi Göreliliği" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir." - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "Üst / Alt" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "Üst / Alt" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "Üst Yüzey Ekstruderi" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "Üst Yüzey Katmanları" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir." - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "Üst Yüzey Hat Genişliği" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği." - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "Üst Yüzey Şekli" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "En üst yüzeyin şekli." - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "Monotonik Üst Yüzey Düzeni" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "Üst Yüzey Hat Yönleri" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "Üst/Alt Ekstruderi" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "Üst/Alt Kalınlık" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir." - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "Üst Kalınlık" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir." - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "Üst Katmanlar" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır." - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "Alt Kalınlık" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir." - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "Alt katmanlar" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "İlk Alt Katmanlar" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "Üst/Alt Şekil" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "Üst/alt katmanların şekli." - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "Alt Şekil İlk Katmanı" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil." - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "Üst/Alt Poligonları Bağla" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "Monotonik Üst/Alt Düzeni" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "Üst/Alt Çizgi Yönleri" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "Küçük Üst/​Alt Genişlik" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "Küçük üst/alt bölgeler, varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketleri önlemeye yardımcı olur. Varsayılan ayarda, en üstteki (havaya maruz kalan) katman için kapalıdır (bkz. 'Yüzeyde Küçük Üst/Alt')." - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "Yüzeyde Küçük Üst/Alt" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z Boşluklarında Dış Katman Oluşturma" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır." - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "Ek Dış Katman Duvar Sayısı" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "Ütülemeyi Etkinleştir" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır." - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "Sadece En Yüksek Katmanı Ütüle" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "Ütüleme Modeli" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "Üst yüzeyleri ütülemek için kullanılacak model." - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "Monotonik Ütüleme Düzeni" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "Ütüleme Hattı Boşluğu" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "Ütüleme hatları arasında bulunan mesafe." - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "Ütüleme Akışı" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur." - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "Ütüleme İlave Mesafesi" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "Bir modelin etrafındaki brim, istemediğiniz yerden başka bir modele değebilir. Bu, brim olmayan modellerde bu mesafedeki tüm brimleri ortadan kaldırır." msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "Modelin kenarlarından bırakılması gereken mesafe. Ağın kenarlarına kadar ütülemek baskınızın kenarlarının pürüzlü olmasına neden olabilir." -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "Ütüleme Hızı" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır." -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "Üst yüzeyi geçmek için gereken süre." +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Üst yüzey katmanları çizgi veya zikzak biçimindeyken kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında tekrar başa dönülür. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "Ütüleme İvmesi" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Üst/alt katmanlar çizgi veya zikzak şekillerini kullandığında kullanılacak tam sayı çizgi yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar (45 ve 135 derece) kullanılır." -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "Ütülemenin gerçekleştiği ivme." +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır." -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "Ütüleme İvmesi Değişimi" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi." +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "Yüzey Çakışma Oranı" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "Yüzey Çakışması" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "Yüzey Kaldırma Genişliği" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "Üst Yüzey Kaldırma Genişliği" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "Alt Yüzey Kaldırma Genişliği" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "Yüzey Genişleme Mesafesi" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "Üst Yüzey Genişleme Mesafesi" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "Alt Yüzey Genişleme Mesafesi" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "Genişleme için Maksimum Yüzey Açısı" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur." - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "Genişleme için Minimum Yüzey Genişliği" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "Bu değerden daha dar olan yüzey alanları genişletilmez. Böylece model yüzeyinin dikeye yakın bir eğime sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur." - -msgctxt "infill label" -msgid "Infill" -msgstr "Dolgu" - -msgctxt "infill description" -msgid "Infill" -msgstr "Dolgu" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "Dolgu Ekstruderi" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "Dolgu Yoğunluğu" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "Dolgu Hattı Mesafesi" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır." - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "Dolgu Şekli" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "Üçlü Altıgen" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "Kübik" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "Kübik Alt Bölüm" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "Sekizlik" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "Çeyrek Kübik" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "Çapraz" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "Çapraz 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "Yıldırım" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "Dolgu Hatlarını Bağlayın" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "Dolgu Poligonlarını Bağla" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır." - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "Dolgu Hattı Yönleri" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "Kullanılacak tam sayı hat yönü listesi. Listedeki öğeler, katmanlar ilerledikçe sıralı olarak kullanılır. Listenin sonuna ulaşıldığında baştan başlanır. Liste öğeleri virgülle ayrılır ve tüm liste köşeli parantez içine alınır. Varsayılan ayar boş listedir ve geleneksel varsayılan açılar kullanılır (çizgiler ve zikzak şekiller için 45 ve 135 derece; diğer tüm şekiller için 45 derece)." -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "Dolgu X Kayması" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "Nozülün girmesine izin verilmeyen alanlara sahip poligon listesi." -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır." +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "Yazıcı başlığının giremediği alanları olan poligon listesi." -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "Dolgu Y Kayması" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "Mutlak Ekstruder İlk Konumu" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "Rastgele Boşluk Doldurma Başlat" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir." +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "Uyarlanabilir Katman Topografisi Boyutu" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "Dolgu Hattı Çoğaltıcı" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır." - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "Ekstra Dolgu Duvar Sayısı" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar." msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "Dolgu alanının etrafına ekstra duvar ekle. Bu duvarlar üst/alt yüzey hatlarının daha az aşağı düşmesini sağlar. Yani biraz fazla materyal kullanarak, daha az üst/alt yüzey katmanı ile aynı kaliteyi yakalayabilirsiniz." "Bu özellik, doğru konfigüre edildiğinde, harekete veya geri çekmeye gerek kalmadan Dolgu Poligonlarını Bağlama ile birlikte tüm dolguyu tek bir ekstrüzyon yoluna bağlayabilir." -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "Kübik Alt Bölüm Kalkanı" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur." - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "Dolgu Çakışma Oranı" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "Dolgu Çakışması" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "Dolgu Sürme Mesafesi" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır." - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "Dolgu Katmanı Kalınlığı" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır." - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "Aşamalı Dolgu Basamakları" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir." - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "Aşamalı Dolgu Basamak Yüksekliği" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği." - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "Duvarlardan Önce Dolgu" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "Minimum Dolgu Alanı" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)." - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "Dolgu Desteği" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar." - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "Dolum Çıkıntı Açısı" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz." - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "Kaplamanın Kenar Desteği Kalınlığı" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı." - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "Kaplamanın Kenar Desteği Katmanları" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "Yıldırım Dolgu Destek Açısı" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "Yıldırım Dolgu Çıkıntı Açısı" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "Yıldırım Dolgu Budama Açısı" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "Yıldırım Dolgu Düzleştirme Açısı" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." - -msgctxt "material label" -msgid "Material" -msgstr "Malzeme" - -msgctxt "material description" -msgid "Material" -msgstr "Malzeme" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "Varsayılan Yazdırma Sıcaklığı" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "Yapı Disk Bölümü Sıcaklığı" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz." - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "Yazdırma Sıcaklığı" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "Yazdırma için kullanılan sıcaklık." - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "İlk Katman Yazdırma Sıcaklığı" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "İlk katmanın basımında kullanılan sıcaklık." - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "İlk Yazdırma Sıcaklığı" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık." - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "Son Yazdırma Sıcaklığı" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık." - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır." - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "Varsayılan Yapı Levhası Sıcaklığı" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "Yapı Levhası Sıcaklığı" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz." - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "İlk Katman Yapı Levhası Sıcaklığı" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz." +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "Yapıştırma" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "Yapışma Eğilimi" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "Yüzeye yapışma eğilimi." +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını yüzey hatlarının hat genişliği ile en içteki duvarın bir yüzdesi olarak ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, %50’nin üstündeki yüzdelerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "Yüzey Enerjisi" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "Duvarlar ile yüzey ekseni (uçları) arasındaki çakışma miktarını ayarlayın. Az miktar çakışma duvarların yüzeye sıkıca bağlanmasını sağlar. Eşit yüzey ve duvar hattı genişliği söz konusu olduğunda, duvar kalınlığının yarısından fazla değerlerde bu noktada yüzey ekstrüderinin nozül konumu halihazırda duvarın ortasına ulaşmış olacağından yüzeyin duvarı geçmiş olabileceğini unutmayın." -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "Yüzey enerjisi." - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "Ölçekleme Faktörü Büzülme Telafisi" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir." - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir." - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir." - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "Kristalli Malzeme" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "Sızma Önleme Geri Çekme Mesafesi" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir." - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "Sızma Önleme Geri Çekme Hızı" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır." - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir." - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "Durma Payına Uygun Geri Çekme Hızı" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir." - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "Kopma Hazırlığı Sıcaklığı" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır." - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "Kopma Geri Çekme Mesafesi" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir." - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "Kopma Geri Çekme Hızı" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır." - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "Kopma Sıcaklığı" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir." - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "Temizleme Hızı" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "Temizleme Uzunluğu" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "Filament Temizliği Bitiş Hızı" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "Filament Temizliği Bitiş Uzunluğu" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "Maksimum Durma Süresi" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir." - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "Yük Taşıma Çarpanı Yok" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "Besleme ünitesi ile nozül haznesi arasına sıkıştırılacak filamenti belirten faktördür ve filament değişimi için malzemenin ne kadar hareket ettirileceğini belirlemek için kullanılır." - -msgctxt "material_flow label" -msgid "Flow" -msgstr "Akış" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır." - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "Duvar Akışı" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "Duvar hatlarının akış telafisidir." - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "Dış Duvar Akışı" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "En dıştaki duvar hattının akış telafisidir." - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "İç Duvar Akışı" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "Üst Yüzeyin En Dış Duvar Akışı" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "Üst Yüzey İç Duvar Akışı" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "Üst/Alt Akış" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "Üst/alt hatların akış telafisidir." - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "Üst Yüzeyin Dış Katman Akışı" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "Baskının üst bölümlerindeki hatların akış telafisidir." - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "Dolgu Akışı" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "Dolgu hatlarının akış telafisidir." - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "Etek/Kenar Akışı" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "Etek veya kenar hatlarının akış telafisidir." - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "Destek Akışı" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "Destek yapı hatlarının akış telafisidir." - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "Destek Ara Yüzeyi Akışı" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "Destek çatı ve zemin hatlarının akış telafisidir." - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "Destek Çatı Akışı" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "Destek çatı hatlarının akış telafisidir." - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "Destek Zemin Akışı" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "Destek zemin hatlarının akış telafisidir." - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "İlk Direk Akışı" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "Temel kule hatlarının akış telafisidir." - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "İlk Katman Akışı" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır." - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "İlk Katman İç Duvar Akışı" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir." - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "İlk Katman Dış Duvar Akışı" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "İlk katmanın en dış duvar hattında akış telafisi." - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "İlk Katman Alt Akışı" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "İlk katmanın alt hatlarında akış telafisi" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "Bekleme Sıcaklığı" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı." - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "Destek malzemesi mi" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır" - -msgctxt "speed label" -msgid "Speed" -msgstr "Hız" - -msgctxt "speed description" -msgid "Speed" -msgstr "Hız" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "Yazdırma Hızı" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "Yazdırmanın gerçekleştiği hız." - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "Dolgu Hızı" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "Dolgunun gerçekleştiği hız." - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "Duvar Hızı" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "Duvarların yazdırıldığı hız." - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "Dış Duvar Hızı" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir." - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "İç Duvar Hızı" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "Üst Yüzeyin En Dış Duvar Hızı" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "Üst Yüzey İç Duvar Hızı" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "Üst Yüzey Hızı" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı hız." - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "Üst/Alt Hız" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı hız." - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "Destek Hızı" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir." - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "Destek Dolgu Hızı" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır." - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "Destek Arayüzü Hızı" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "Destek Çatısı Hızı" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "Destek Zemini Hızı" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "İlk Direk Hızı" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir." - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "Hareket Hızı" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "Hareket hamlelerinin hızı." - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "İlk Katman Hızı" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez." - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "İlk Katman Yazdırma Hızı" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "İlk Katman Hareket Hızı" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir." - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Etek/Kenar Hızı" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz." - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z Atlama Hızı" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür." - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "Daha Yavaş Katman Sayısı" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar." - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "Akış Eşitleme Oranı" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir." - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "İvme Kontrolünü Etkinleştir" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "Hareket İvmesini Etkinleştir" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "Yazdırma İvmesi" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "Yazdırmanın gerçekleştiği ivme." - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "Dolgu İvmesi" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "Dolgunun yazdırıldığı ivme." - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "Duvar İvmesi" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "Duvarların yazdırıldığı ivme." - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "Dış Duvar İvmesi" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "En dış duvarların yazdırıldığı ivme." - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "İç Duvar İvmesi" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "İç duvarların yazdırıldığı ivme." - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "Üst Yüzey Dış Duvar Hızlanması" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "Üst Yüzey İç Duvar Hızlanması" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "Üst Yüzey İvmesi" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı ivme." - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "Üst/Alt İvme" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı ivme." - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "Destek İvmesi" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı ivme." - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "Destek Dolgusu İvmesi" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "Destek dolgusunun yazdırıldığı ivme." - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "Destek Arayüzü İvmesi" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "Destek Çatısı İvmesi" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "Destek Zemini İvmesi" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "İlk Direk İvmesi" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı ivme." - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "Hareket İvmesi" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "Hareket hamlelerinin ivmesi." - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "İlk Katman İvmesi" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "İlk katman için belirlenen ivme." - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "İlk Katman Yazdırma İvmesi" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı ivme." - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "İlk Katman Hareket İvmesi" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Etek/Kenar İvmesi" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz." - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "Salınım Kontrolünü Etkinleştir" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "Hareket Salınımını Etkinleştir" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "Yazdırma İvmesi Değişimi" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "Yazıcı başlığının maksimum anlık hız değişimi." - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "Dolgu Salınımı" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "Duvar Salınımı" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "Dış Duvar Salınımı" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "İç Duvar Salınımı" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "Üst Yüzeyin İç Duvar Darbesi" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "Üst Yüzeyin En Dış Duvar Darbesi" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "Üst Yüzey İvmesi Değişimi" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "Üst/Alt Salınımı" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "Destek Salınımı" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "Destek Dolgu İvmesi Değişimi" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "Destek Arayüz Salınımı" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "Destek Çatısı Sarsıntısı" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "Destek Zemini Sarsıntısı" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "İlk Direk Salınımı" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "Hareket Salınımı" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "İlk Katman Salınımı" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "İlk Katman Yazdırma Salınımı" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi." - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "İlk Katman Hareket Salınımı" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "İlk katmandaki hareket hamlelerinin ivmesi." - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Etek/Kenar İvmesi Değişimi" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi." - -msgctxt "travel label" -msgid "Travel" -msgstr "Hareket" - -msgctxt "travel description" -msgid "travel" -msgstr "hareket" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "Geri Çekmeyi Etkinleştir" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "Katman Değişimindeki Geri Çekme" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin." - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "Geri Çekme Mesafesi" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "Geri Çekme Hızı" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız." - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "Geri Çekme Sırasındaki Çekim Hızı" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız." - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "Geri Çekme Sırasındaki Astar Hızı" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız." - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir." - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "Minimum Geri Çekme Hareketi" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur." - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "Maksimum Geri Çekme Sayısı" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler." - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "Minimum Geri Çekme Mesafesi Penceresi" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır." - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "Tarama Modu" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir." - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "Kapalı" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "Tümü" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "Dış Yüzeyde Değil" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "Yüzey Alanında Değil" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "Dolgu İçinde" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "Dış Duvardan Önce Geri Çek" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "Dış duvar başlatmaya giderken her zaman geri çeker." - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir." - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "Hareket Sırasında Destekleri Atla" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir." - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "Hareket Atlama Mesafesi" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe." - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "Katman Başlangıcı X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı." - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "Katman Başlangıcı Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı." - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "Geri Çekildiğinde Z Sıçraması" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler." - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin." - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z Sıçraması Yüksekliği" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler." - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı." - -msgctxt "cooling label" -msgid "Cooling" -msgstr "Soğuma" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "Soğuma" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "Yazdırma Soğutmayı Etkinleştir" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır." - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "Fan Hızı" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "Yazdırma soğutma fanlarının dönüş hızı." - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "Olağan Fan Hızı" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir." - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "Maksimum Fan Hızı" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir." - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "Olağan/Maksimum Fan Hızı Sınırı" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar." - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "İlk Fan Hızı" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar." - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "Yüksekteki Olağan Fan Hızı" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar." - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "Katmandaki Olağan Fan Hızı" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır." - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "Minimum Katman Süresi" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir." - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "Minimum Hız" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır." - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "Yazıcı Başlığını Kaldır" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin." - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "Küçük Katman Yazdırma Sıcaklığı" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün." - -msgctxt "support label" -msgid "Support" -msgstr "Destek" - -msgctxt "support description" -msgid "Support" -msgstr "Destek" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "Oluşturma Desteği" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "Destek Ekstruderi" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "Destek Dolgu Ekstruderi" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "İlk Katman Destek Ekstruderi" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "Destek Arayüz Ekstruderi" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "Destek Çatısı Ekstrüderi" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "Destek Zemini Ekstrüderi" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "Destek Yapısı" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "Ağaç" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "Maksimum Dal Açısı" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "Dal Çapı" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır." - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "Gövde Çapı" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar." - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "Dal Çapı Açısı" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir." - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "Destek Yerleştirme" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "Yapı Levhasına Dokunma" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "Her bölüm" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "Tercih Edilen Dal Açısı" - -msgctxt "support_tree_angle_slow description" -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 "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın." - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "Modele Göre Çap Artışı" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "Modele Göre Minimum Yükseklik" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir." - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "İlk Katman Çapı" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir." - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "Dal Yoğunluğu" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın." - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "Uç Çapı" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı." - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "Dal Erişimini Sınırla" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "Optimum Dal Aralığı" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "Dalların destekledikleri noktalardan ne kadar uzağa hareket edebileceğine dair bir tavsiye. Dallar hedeflerine (yapı levhası veya modelin düz bir parçası) ulaşmak için bu değeri ihlal edebilir. Bu değeri düşürmek, desteği daha sağlam hale getirecek, ancak dal miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "Yerleştirme Tercihi" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir." - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "Mümkün olduğunda yapı levhası üzerinde" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "Gerektiğinde model üzerinde" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "Destek Çıkıntı Açısı" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz." - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "Destek Şekli" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir." - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "Çapraz" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "Gyroid" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "Duvar Hattı Sayısını Destekle" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır." - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "Destek Arayüzü Duvar Hattı Sayısı" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "Destek Çatı Duvar Hattı Sayısı" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "Destek Alt Duvar Hattı Sayısı" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "Destek Çizgilerini Bağla" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır." - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "Destek Zikzaklarını Bağla" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır." - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "Destek Yoğunluğu" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır." - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "Destek Hattı Mesafesi" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "İlk Katman Destek Hattı Mesafesi" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır." - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "Destek Dolgu Hattı Yönü" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar listenin boş olmasıdır ve bu durumda varsayılan açı 0'dır." - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "Destek Kenarını Etkinleştir" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır." - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "Destek Kenar Genişliği" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "Destek Kenar Hattı Sayısı" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "Destek Z Mesafesi" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "Desteğin üstü/altı ile baskı arasındaki mesafe. Bu boşluk, model basıldıktan sonra desteklerin kolayca çıkarılabilmesini sağlar. Modelin altındaki en üst destek katmanı, düzenli katmanların bir kısmı olabilir." - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "Destek Üst Mesafesi" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "Yazdırılıcak desteğin üstüne olan mesafe." - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "Destek Alt Mesafesi" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "Baskıdan desteğin altına kadar olan mesafe. Bunun bir sonraki katman yüksekliğine yuvarlandığını unutmayın." - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "Destek X/Y Mesafesi" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi." - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "Destek Mesafesi Önceliği" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz." - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y, Z’den fazla" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z, X/Y’den fazla" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "Minimum Destek X/Y Mesafesi" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi." - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "Destek Merdiveni Basamak Yüksekliği" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın." - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "Destek Merdiveni Maksimum Basamak Genişliği" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir." - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "Basamak Desteğinin Minimum Eğim Açısı" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir." - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "Destek Birleşme Mesafesi" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir." - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "Destek Yatay Büyüme" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir." - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "Destek Dolgusu Katmanı Kalınlığı" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır." - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "Kademeli Destek Dolgusu Aşamaları" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir." - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği." - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "Minimum Destek Bölgesi" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "Destek Arayüzünü Etkinleştir" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur." - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "Destek Çatısını Etkinleştir" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "Destek Zeminini Etkinleştir" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "Destek Arayüzü Kalınlığı" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı." - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "Destek Tavanı Kalınlığı" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder." - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "Destek Zemini Kalınlığı" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "Destek Arayüzü Yoğunluğu" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "Yazdırma dolgusunun yoğunluğunu ayarlar." msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "Destek yapısının çatılarının ve zeminlerinin yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "Destek Çatısı Yoğunluğu" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "Dalların uçlarını oluşturmak için kullanılan destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar sağlar, ancak desteklerin çıkarılması daha zordur. Çok yüksek değerler için Destek Çatısı’nı kullanın veya destek yoğunluğunun en üstte benzer şekilde yüksek olmasını sağlayın." -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısının yoğunluğunu ayarlar. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken desteklerin kaldırılmasını zorlaştırır." -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "Destek Çatısı Çizgi Mesafesi" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "Kullanılan filamanın çapını ayarlar. Bu değeri kullanılan filaman çapı ile eşitleyin." -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "Destek Zemini Yoğunluğu" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar." - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "Destek Zemini Çizgi Mesafesi" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "Destek Arayüzü Şekli" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil." - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "Eş merkezli" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zik Zak" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "Destek Çatısı Deseni" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "Destek çatısının yazdırıldığı desen." - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "Destek Zemini Deseni" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "Destek zeminlerinin yazdırıldığı desen." - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "Çizgiler" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "Izgara" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "Üçgenler" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "Eş Merkezli" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "Zikzak" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "Minimum Destek Arayüzü Bölgesi" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "Minimum Destek Çatısı Bölgesi" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "Minimum Destek Zemini Bölgesi" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "Destek Arayüzü Yatay Büyüme" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "Destek Çatısı Yatay Büyüme" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "Destek çatılarına uygulanan ofset miktarı." - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "Destek Zemini Yatay Büyüme" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "Destek zeminlerine uygulanan ofset miktarı." - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "Destek Arayüzü Önceliği" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır." - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "Tercih edilen destek" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "Tercih edilen arayüz" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "Tercih edilen destek hatları" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "Tercih edilen arayüz hatları" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "Her ikisi de çakışıyor" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "Destek Arabirim Hattı Yönleri" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "Destek Çatı Hattı Yönleri" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Katmanlar ilerledikçe listedeki öğeler sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "Destek Zemin Hattı Yönleri" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "Kullanılacak tam hat yönlerinin listesi. Listedeki öğeler katmanlar ilerledikçe sırayla kullanılır ve listenin sonuna gelindiğinde tekrar baştan başlanır. Liste öğeleri virgülle ayrılır ve listenin tamamı köşeli paranteze alınır. Varsayılan ayar, varsayılan açıların kullanıldığı (ara birimler biraz kalınsa 45 ile 135 derece arasında değişir veya 90 derecedir) boş listedir." - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "Fan Hızı Geçersiz Kılma" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir." - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "Desteklenen Yüzey Fan Hızı" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir." - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "Direkleri kullan" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur." - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "Direk Çapı" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "Özel bir direğin çapı." - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "Kule Destekli Maksimum Çap" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır." - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "Direk Tavanı Açısı" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir." - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "Alçalan Destek Örgüsü" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın." - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "Sahnede Destek Örgüsü Var" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "Yapı Levhası Yapıştırması" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "Yapıştırma" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "İlk Damlayı Etkinleştir" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "Extruder İlk X konumu" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "Extruder İlk Y konumu" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "Yapı Levhası Türü" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir." - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Etek" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Kenar" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Radye" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "Hiçbiri" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "Yapı Levhası Yapıştırma Ekstruderi" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Etek/Kenar Ekstrüderi" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Radye Taban Ekstrüderi" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Radye Orta Ekstrüderi" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Radye Üst Ekstrüderi" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Etek Hattı Sayısı" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır." - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "Etek Yüksekliği" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır." - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Etek Mesafesi" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe." -"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Minimum Etek/Kenar Uzunluğu" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır." - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Kenar Genişliği" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Kenar Hattı Sayısı" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "Bir kenar için kullanılan hatların sayısı Daha fazla kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "Uç Mesafesi" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır." - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Kenar, Desteği Değiştirir" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "Brim Konumu" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "Modelin dışına, içine veya her ikisine de bir brim yazdırın. Modele bağlı olarak bu, daha sonra çıkarmanız gereken brim miktarının azaltılmasına yardımcı olurken yatağın düzgünce yapışmasını sağlar." - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "Yalnızca Dışarıda" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "Yalnızca İçeride" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "Her Yerde" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "Brim Engelleme Toleransı" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "Bir modelin etrafındaki brim, istemediğiniz yerden başka bir modele değebilir. Bu, brim olmayan modellerde bu mesafedeki tüm brimleri ortadan kaldırır." - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "Akıllı Kenar" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır." - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Ek Radye Boşluğu" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "Raft Tabanı Ekstra Tolerans" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Raft tabanı etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "Raft Ortası Ekstra Tolerans" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Raft ortası etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "Raft Üstü Ekstra Tolerans" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "Raft üstü etkinleştirilmişse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "Radye İç Köşelerini Kaldır" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "Raft Tabanını İç Köşelerini Kaldır" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "Raftın dışbükey olmasına neden olan raftın tabanındaki iç köşeleri çıkarır." - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "Raft Ortası İç Köşelerini Kaldır" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "Raftın dışbükey olmasına neden olan raftın orta kısmındaki iç köşeleri çıkarır." - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "Raft Üstü İç Köşelerini Çıkar" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "Raftın dışbükey olmasına neden olan raftın üst kısmındaki iç köşeleri çıkarır." - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Radye Düzeltme" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "Raft Tabanı Düzeltme" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bu ayar, raft tabanı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "Raft Orta Düzeltme" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bu ayar, raft orta kısmı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "Raft Üst Düzeltme" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "Bu ayar, raft üstü taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Radye Hava Boşluğu" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır." - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "İlk Katman Z Çakışması" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "Hava boşluğundaki filament kaybını telafi etmek için modelin birinci ve ikinci katmanını Z yönünde üst üste getirir. İlk model katmanının üzerindeki tüm modeller bu miktarda aşağı kaydırılacaktır.\nBu ayar nedeniyle bazen ikinci katmanın ilk katmanın altına yazdırıldığı belirtilebilir. Bu istenilen davranıştır" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Radye Taban Kalınlığı" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Radyenin Taban Hat Genişliği" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Radye Taban Hat Genişliği" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Radye Orta Katmanları" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur." - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Radye Orta Kalınlığı" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "Radyenin orta katmanının katman kalınlığı." - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Radyenin Orta Hat Genişliği" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur." - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Radye Orta Boşluğu" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Radyenin Üst Katmanları" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Radyenin Üst Katman Kalınlığı" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "Üst radye katmanlarının katman kalınlığı." - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Radyenin Üst Hat Genişliği" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Radyenin Üst Boşluğu" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "Monotonik Raft Üst Yüzey Düzeni" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "Raftın üst yüzey çizgilerini, her zaman bitişik çizgilerle tek bir yönde üst üste binmelerine neden olacak bir sırayla yazdırır. Bu, yazdırmanın biraz daha fazla zaman almasını sağlar ama yüzeyin daha tutarlı görünmesini sağlar, bu da modelin alt yüzeyinde de görülebilir." - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "Raft Duvar Sayısı" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "Raft doğrusal modelinin etrafına yazdırılacak konturların sayısı." - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Radye Tabanı Duvar Sayısı" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "Raft Orta Duvar Sayısı" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "Raftın orta katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "Raft Üstü Duvar Sayısı" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "Raftın üst katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Radye Yazdırma Hızı" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "Radyenin yazdırıldığı hız." - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Radyenin Taban Yazdırma Hızı" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Radyenin Orta Yazdırma Hızı" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Radye Üst Yazdırma Hızı" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Radye Yazdırma İvmesi" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "Radyenin yazdırıldığı ivme." - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Radyenin Taban Yazdırma İvmesi" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivme." - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Radyenin Orta Yazdırma İvmesi" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "Orta radye katmanının yazdırıldığı ivme." - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Radye Üst Yazdırma İvmesi" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı ivme." - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Radye Yazdırma Salınımı" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "Radyenin yazdırıldığı salınım." - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Radyenin Taban Yazdırma Salınımı" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Radyenin Orta Yazdırma Salınımı" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "Orta radye katmanının yazdırıldığı salınım." - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Radye Üst Yazdırma Salınımı" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "Üst radye katmanların yazdırıldığı salınım." - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Radye Fan Hızı" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Radye için fan hızı." - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Radyenin Taban Fan Hızı" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "Radyenin taban katmanı için fan hızı." - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Radyenin Orta Fan Hızı" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "Radyenin orta katmanı için fan hızı." - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Radye Üst Fan Hızı" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "Üst radye katmanları için fan hızı." - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "İkili ekstrüzyon" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "İlk Direği Etkinleştir" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "Asal Kule Türü" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "Asal kule nasıl oluşturulur:
    • Normal: İkincil malzemelerin astarlandığı bir kova oluşturur.
    • Aralıklı: Olabildiğince seyrek bir asal kule oluşturur. Bu, zamandan ve filamentten tasarruf sağlayacaktır ama bu yalnızca kullanılan malzemelerin birbirine yapışması durumunda mümkündür.
    " - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "Aralıklı" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "İlk Direk Boyutu" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "İlk Direk Genişliği." - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "İlk Direğin Minimum Hacmi" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "Asal Kule Maksimum Köprüleme Mesafesi" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "Havadan basılabilecek dalların maksimum uzunluğu." - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "İlk Direk X Konumu" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "İlk direk konumunun x koordinatı." - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "İlk Direk Y Konumu" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "İlk direk konumunun y koordinatı." - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "İlk Direkteki Sürme İnaktif Nozülü" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "Bir nozül ile ilk direği yazdırdıktan sonra, diğer nozülden ilk direğe sızdırılan malzemeyi silin." -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "Başlangıç Kulesi Tabanı" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "Makine bir ekstruderden diğerine geçtikten sonra, nozül ve baskı arasında açıklık oluşması için yapı levhası indirilir. Nozülün baskı dışına malzeme sızdırmasını önler." -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "Başlangıç Kulesi Taban Boyutu" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Prime tower brim/tabanının genişliği. Daha büyük bir taban yapışmayı artırır, ancak etkili baskı alanını da azaltır." - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "Başlangıç Kulesi Taban Yüksekliği" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Prime tower tabanının yüksekliği. Bu değeri artırmak, taban daha geniş olacağı için daha sağlam bir prime tower oluşturur. Eğer bu ayar çok düşükse, prime tower sağlam bir tabana sahip olmayacaktır." - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Prime Tower Taban Eğimi" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "Prime tower tabanının eğiminde kullanılan büyüklük faktörü. Bu değeri artırırsanız, taban daha ince hale gelir. Azaltırsanız, taban daha kalın olur." - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "Başlangıç Kulesi Salı İzi Aralığı" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "Tek başlangıç kulesi sal katmanı için sal izleri arasındaki mesafe. Geniş aralıklar, salın yapıştırma tablasından kolay çıkarılmasını sağlar." - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "Sızdırma Kalkanını Etkinleştir" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "Sızdırma Kalkanı Açısı" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar." - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "Sızdırma Kalkanı Mesafesi" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi." - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "Nozül Anahtarı Geri Çekme Mesafesi" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir." - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "Nozül Anahtarı Geri Çekme Hızı" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir." - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "Nozül Değişiminin Geri Çekme Hızı" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız." - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "Nozül Değişiminin İlk Hızı" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız." - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir." - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "Ağ Onarımları" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "Kafesleri 3D baskı için daha uygun hale getirir." - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "Bağlantı Çakışma Hacimleri" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "Tüm Boşlukları Kaldır" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder." - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "Geniş Dikiş" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir." - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "Bağlı Olmayan Yüzleri Tut" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "Birleştirilmiş Bileşim Çakışması" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir." - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "Bileşim Kesişimini Kaldırın" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "Alternatif Örgü Giderimi" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur." - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "Boş İlk Katmanları Kaldır" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "Maksimum Çözünürlük" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır." - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "Maksimum Hareket Çözünürlüğü" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir." - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "Maksimum Sapma" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir." - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "Maksimum Ekstrüzyon Alanı Sapması" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır." - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "Akışkan Hareketini Etkinleştir" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "Akışkan Hareketi Kaydırma Mesafesi" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "Akışkan Hareketi Küçük Mesafe" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "Akışkan Hareket Açısı" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "Bir takım yolu parçası, genel harekete göre bu açıdan daha fazla bir sapma gösterirse düzeltilir." - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "Özel Modlar" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "Yazdırma Dizisi" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." +msgctxt "retraction_combing option all" +msgid "All" +msgstr "Tümü" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "Tümünü birden" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "Birer Birer" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "Baskı Sırasını Manuel Olarak Ayarla" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "Yazdırma çözünürlüğünü etkileyen tüm ayarlar. Bu ayarların (ve yazdırma süresinin) kalite üzerinde büyük bir etkisi vardır" msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "Yazdırma sırasını manuel olarak ayarlamak için nesne listesini sıralamanızı sağlar. Listedeki ilk nesne ilk olarak yazdırılacaktır." -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "Dolgu Ağı" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "Alternatif Ek Duvar" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir." - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "Örgü İşleme Sıralaması" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "Kesme Örgüsü" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "Kalıp" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır." - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "Minimum Kalıp Genişliği" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "Kalıp Çatı Yüksekliği" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik." - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "Kalıp Açısı" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır." - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "Destek Örgüsü" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir." - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "Çıkıntı Önleme Örgüsü" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir." - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "Yüzey Modu" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır." - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "Normal" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "Yüzey" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "Her İkisi" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "Spiral Dış Çevre" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir." - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "Helezon Şeklinde Düzeltme" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun." - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "Bağıl Ekstrüzyon" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." - -msgctxt "experimental label" -msgid "Experimental" -msgstr "Deneysel" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "Dilimleme Toleransı" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar." - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Ortalayıcı" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "Dışlayıcı" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "Kapsayıcı" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "Dolgu Hareket Optimizasyonu" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir." - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "Akış Sıcaklık Grafiği" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "Minimum Poligon Çevre Uzunluğu" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır." - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "İç İçe Geçen Yapı Oluşturma" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir." - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "İç İçe Geçme Genişliği" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "İç içe geçen yapı kirişlerinin genişliği." - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "İç İçe Geçen Yapı Uyumlaması" - -msgctxt "interlocking_orientation description" -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 "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "İç İçe Geçen Kiriş Katman Sayısı" - -msgctxt "interlocking_beam_layer_count description" -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 "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "İç İçe Geçme Derinliği" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur." - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "İç İçe Geçme Sınırından Kaçınma" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe." - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "Parçalarda Döküm Desteği" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir." - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "Destek Parçasının Boyutu" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın." - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "Destek Parçası Hattı Sayısı" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "Cereyan Kalkanını Etkinleştir" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır." - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "Cereyan Kalkanı X/Y Mesafesi" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi." - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "Cereyan Kalkanı Sınırlaması" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "Tam" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "Sınırlı" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "Cereyan Kalkanı Yüksekliği" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır." - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "Çıkıntıyı Yazdırılabilir Yap" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır." - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "Maksimum Model Açısı" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez." - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "Maksimum Çıkıntı Deliği Alanı" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır." - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "Taramayı Etkinleştir" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır." - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "Tarama Hacmi" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "Tarama Öncesi Minimum Hacim" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür." - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "Tarama Hızı" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor." - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "Çapraz 3D Cebin Boyutu" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur." - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "Konik Desteği Etkinleştir" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın." - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "Konik Destek Açısı" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar." - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "Koni Desteğinin Minimum Genişliği" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur." - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "Belirsiz Dış Katman" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer." - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "Yalnızca Belirsiz Dış Katman" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir." - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "Belirsiz Dış Katman Kalınlığı" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor." - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "Belirsiz Dış Katman Yoğunluğu" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir." - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "Belirsiz Dış Katman Noktası Mesafesi" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe." - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "Akış hızı dengeleme çarpanı" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar uzağa hareket ettirileceği." - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "Uyarlanabilir Katmanların Kullanımı" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "Uyarlanabilir katmanlar modelin şekline bağlı olarak katman yüksekliğini hesaplar." - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "Uyarlanabilir Katmanların Azami Değişkenliği" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik." - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "Uyarlanabilir Katmanların Değişkenlik Adım Boyu" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı." - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "Uyarlanabilir Katman Topografisi Boyutu" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına neden olur." - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "Çıkıntılı Duvar Açısı" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir." - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "Çıkıntılı Duvar Hızı" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır." - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "Köprü Ayarlarını Etkinleştir" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin." - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "Minimum Köprü Duvarı Uzunluğu" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "Bundan daha kısa desteklenmeyen duvarlar normal duvar ayarları kullanılarak yazdırılacaktır. Daha uzun desteklenmeyen duvarlar köprü duvarı ayarları kullanılarak yazdırılacaktır." - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "Köprü Yüzey Alanı Destek Eşiği" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır." - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir." - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "Köprü Duvarı Tarama" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "Köprü Duvarı Hızı" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "Köprü duvarlarının yazdırıldığı hız." - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "Köprü Duvarı Akışı" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "Köprü Yüzey Alanı Hızı" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız." - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "Köprü Yüzey Alanı Akışı" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "Köprü Yüzey Alanı Yoğunluğu" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "Köprü Fan Hızı" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı." - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "Köprüde Birden Fazla Katman Var" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır." - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "Köprü İkinci Yüzey Alanı Hızı" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "Köprü İkinci Yüzey Alanı Akışı" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Hızı" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "Köprü Üçüncü Yüzey Alanı Akışı" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "Katmanlar Arasındaki Sürme Nozülü" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın." - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır." - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "Sürme Geri Çekme Mesafesi" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı." - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir." - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "Sürme Geri Çekme Hızı" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız." - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız." - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız." - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "Sürmeyi Durdurma" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "Geri çekmenin geri alınmasından sonraki duraklama." - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "Sürme Z Sıçraması" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır." - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "Sürme Z Sıçraması Yüksekliği" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "Sürme Sıçrama Hızı" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız." - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "Sürme Fırçası X Konumu" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "Sürme komutunun başlatılacağı X konumu." - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "Sürme Tekrar Sayısı" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "Nozülün fırçadan geçirilme sayısı." - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "Sürme Hareket Mesafesi" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi." - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "Maksimum Küçük Delik Boyutu" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır." - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "Maksimum Küçük Özellik Uzunluğu" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır." - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "Küçük Özellik Hızı" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "Küçük Özellik İlk Katman Hızı" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "Alternatif Örgü Giderimi" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5572,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "Duvar yönlerini her katmanda ve iç dolguda değiştirin. Metal baskıdaki gibi stres oluşturabilen malzemeler için kullanışlıdır." -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "Dış Duvarları Grupla" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "Alüminyum" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "Her Zaman Aktif Aracı Yaz" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "Yazdırma Süreci Raporlaması" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "Dış duvar başlatmaya giderken her zaman geri çeker." -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "Belirlenen eşiklerin dışına çıkan etkinliklerin raporlanması" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "Her katmandaki poligonlara uygulanan ofset miktarı. Pozitif değerler büyük boşlukları telafi ederken negatif değerler küçük boşlukları telafi edebilir." -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "Yazdırma İşlemi Raporlamasını Etkinleştir" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "İlk katmandaki tüm poligonlara uygulanan ofset miktarı. Negatif bir değer “fil ayağı” olarak bilinen ilk katman ezilmesini dengeleyebilir." -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "Olası hata tespitine yönelik eşik değerlerini ayarlamak için yazdırma işlemi raporlamasını etkinleştirin." +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "Her katmandaki tüm destek poligonlarına uygulanan ofset miktarı. Pozitif değerler destek alanlarını pürüzsüzleştirebilir ve daha sağlam destek sağlayabilir." -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "Akış Uyarısı" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "Destek zeminlerine uygulanan ofset miktarı." -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "Tespit için akış uyarısı sınırı." +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "Destek çatılarına uygulanan ofset miktarı." -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "Akış Sınırı" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "Destek arayüzü poligonlarına uygulanan ofset miktarı." -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "Tespit için akış anormalliği sınırı." +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "Filamanın sürme dizisi sırasında sızıntı yapmaması için filanın geri çekilme miktarı." -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "Yazdırma sıcaklığı Uyarısı" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "Bu küpün bölünüp bölünmemesine karar vermek için modelin sınırını kontrol eden ve her bir küpün merkezinden alınan yarıçapa ekleme. Büyük değerler modelin sınırının yanında daha kalın küçük küp kalkanları oluşmasına neden olur." -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "Tespit için Yazdırma sıcaklığı uyarısı sınır." +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "Çıkıntı Önleme Örgüsü" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "Yazdırma sıcaklığı Sınırı" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "Sızma Önleme Geri Çekme Mesafesi" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "Tespit için Yazdırma Sıcaklığı anormalliği sınırı." +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "Sızma Önleme Geri Çekme Hızı" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "Yapı Hacmi sıcaklığı Uyarısı" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "Ekstrüder ofsetini koordinat sistemine uygulayın. Tüm ekstrüderleri etkiler." -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "Tespit için Yapı Hacmi Sıcaklığı Sınırı uyarısı." +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "Modellerin temas ettiği yerlerde, iç içe geçen bir kiriş yapısı oluşturun. Bu, özellikle farklı malzemelerden basılmış modellerde, modeller arasındaki yapışmayı iyileştirir." + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "Hareket Sırasında Yazdırılan Bölümleri Atlama" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "Hareket Sırasında Destekleri Atla" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "Geri" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "Sol Arka" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "Sağ Arka" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "Her İkisi" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "Her ikisi de çakışıyor" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "Alt katmanlar" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "Alt Şekil İlk Katmanı" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "Alt Yüzey Genişleme Mesafesi" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "Alt Yüzey Kaldırma Genişliği" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "Alt Kalınlık" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "Dal Yoğunluğu" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "Dal Çapı" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "Dal Çapı Açısı" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "Geri Çekme Pozisyonunda Durma Mesafesi" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "Durma Payına Uygun Geri Çekme Hızı" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "Kopma Hazırlığı Sıcaklığı" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "Kopma Geri Çekme Mesafesi" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "Kopma Geri Çekme Hızı" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "Kopma Sıcaklığı" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "Parçalarda Döküm Desteği" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "Köprü Fan Hızı" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "Köprüde Birden Fazla Katman Var" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "Köprü İkinci Yüzey Alanı Yoğunluğu" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "Köprü İkinci Yüzey Alanı Fan Hızı" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "Köprü İkinci Yüzey Alanı Akışı" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "Köprü İkinci Yüzey Alanı Hızı" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "Köprü Yüzey Alanı Yoğunluğu" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "Köprü Yüzey Alanı Akışı" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "Köprü Yüzey Alanı Hızı" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "Köprü Yüzey Alanı Destek Eşiği" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "Maksimum Köprü Seyrek Dolgu Yoğunluğu" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "Köprü Üçüncü Yüzey Alanı Yoğunluğu" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Fan Hızı" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "Köprü Üçüncü Yüzey Alanı Akışı" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "Köprü Üçüncü Yüzey Alanı Hızı" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "Köprü Duvarı Tarama" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "Köprü Duvarı Akışı" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "Köprü Duvarı Hızı" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Kenar" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "Brim Engelleme Toleransı" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "Uç Mesafesi" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Kenar Hattı Sayısı" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "Brim Konumu" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Kenar, Desteği Değiştirir" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Kenar Genişliği" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "Yapı Levhası Yapıştırması" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "Yapı Levhası Yapıştırma Ekstruderi" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "Yapı Levhası Türü" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "Yapı Levhası Malzemesi" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "Yapı Levhası Şekli" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığı" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "İlk Katman Yapı Levhası Sıcaklığı" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "Yapı Disk Bölümü Sıcaklığı" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "Yapı Hacmi Sıcaklık Sınırı" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "Tespit için Yapı Hacmi Sıcaklığı Anormallik Sınırı." +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "Yapı Hacmi sıcaklığı Uyarısı" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "Komut Satırı Ayarları" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar." +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "Bu ayarı etkinleştirmeniz, modelinizde olmasa bile prime tower'ınıza bir brim kazandırır. Eğer yüksek bir kule için daha sağlam bir taban istiyorsanız, taban yüksekliğini artırabilirsiniz." msgctxt "center_object label" msgid "Center Object" msgstr "Nesneyi ortalayın" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi." +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "En az desteğin istenmesi için yazdırılan modelin geometrisini değiştirin. Dik çıkıntılar sığlaşacaktır. Çıkıntılı alanlar daha dikey biçimde olmak için alçalacaktır." + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "Destek oluşturmak için kullanılabilir teknikler arasından seçim yapar. \"Normal\" destek, çıkıntılı parçaların hemen altında bir destek yapısı oluşturur ve bu alanları dümdüz aşağı indirir. \"Ağaç\"destek, çıkıntılı alanlara doğru dallar oluşturur ve bu dalların uçlarıyla model desteklenir; dallar modelin etrafına sarılarak yapı plakasından olabildiğince destek alır." + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "Tarama Hızı" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "Tarama Hacmi" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "Tarama, ekstrüzyon yolunun son parçasını hareket parça ile değiştirir. Dizimli azaltmak amacıyla sızdırılan malzeme ekstrüzyon yolunun son parçasını yazdırmak için kullanılır." + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "Tarama Modu" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "Tarama, hareket sırasında nozülü daha önce yazdırılmış alanlarda tutar. Bu durum hareketleri biraz uzatır ancak geri çekme ihtiyacını azaltır. Tarama kapalıysa malzeme geri çekilecektir, nozül ise bir sonraki noktaya düz bir çizgi üzerinden gider. Üst/alt yüzey alanlarının üzerinde tarama yapılmayabilir veya sadece dolgu içerisinde tarama yapılabilir." + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "Komut Satırı Ayarları" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "Eş Merkezli" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "Konik Destek Açısı" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "Koni Desteğinin Minimum Genişliği" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "Dolgu Hatlarını Bağlayın" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "Dolgu Poligonlarını Bağla" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "Destek Çizgilerini Bağla" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "Destek Zikzaklarını Bağla" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "Üst/Alt Poligonları Bağla" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "Yan yana giden dolgu yollarını bağla. Birkaç kapalı poligondan oluşan dolgu şekilleri için bu ayarı etkinleştirmek hareket süresini büyük ölçüde kısaltır." + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "Zikzakları Bağla Zik zak destek yapısının sağlamlığını artırır." + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "Destek çizgilerinin uçlarını birbirine bağlayın. Bu ayarın etkinleştirilmesi, desteğinizi daha sağlam hale getirebilir ve ekstruzyonu azaltabilir ancak bu daha fazla malzemeye mal olacaktır." + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "İç duvarın şeklini takip eden bir hattı kullanarak dolgu şeklinin iç duvarla buluştuğu noktada uçları bağlar. Bu ayarın etkinleştirilmesi, dolgunun duvarlara daha iyi yapışmasını sağlayabilir ve dolgunun dikey yüzeylerin kalitesinin etkilerini azaltabilir. Bu ayarın devre dışı bırakılması, kullanılan malzemenin miktarını azaltır." + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "Üst/alt yüzey yollarını yan yana ise bağla. Eş merkezli şekil için bu ayarı etkinleştirmek, hareket süresini önemli ölçüde kısaltır ancak bağlantılar dolgunun üzerinde meydana gelebileceğinden bu özellik üst yüzeyin kalitesini düşürebilir." + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "Modelin ana hatlarında yer alan köşelerin dikişin konumunu etkileyip etkilemediğini kontrol edin. Hiçbiri, köşelerin dikişin konumunu etkilemediği anlamına gelir. Dikişi Gizle, dikişin daha büyük olasılıkla bir iç köşe üzerinde oluşmasını sağlar. Dikişi Açığa Çıkar, dikişin daha büyük olasılıkla bir dış köşe üzerinde oluşmasını sağlar. Dikişi Gizle veya Açığa Çıkar, dikişin daha büyük olasılıkla bir iç veya dış köşe üzerinde oluşmasını sağlar. Akıllı Gizleme, hem iç hem de dış köşelere izin verir ancak uygun olduğu durumlarda iç köşeleri daha sık seçer." + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "Her bir dolgu hattını bu sayıda hatta dönüştür. Ekstra hatlar birbirlerini kesmez, birbirlerinden bağımsız kalırlar. Bu dolguyu sertleştirir, ancak yazdırma süresini uzatırken materyal kullanımını artırır." + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "Soğuma hızı" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "Soğuma" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "Soğuma" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "Çapraz" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "Çapraz" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "Çapraz 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "Çapraz 3D Cebin Boyutu" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "Destek için Çapraz Dolgu Yoğunluğu Görüntüsü" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "Çapraz Dolgu Yoğunluğu Görüntüsü" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "Kristalli Malzeme" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "Kübik" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "Kübik Alt Bölüm" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "Kübik Alt Bölüm Kalkanı" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "Kesme Örgüsü" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "Malzeme akışını (saniye başına mm3 bazında) sıcaklığa (santigrat derece) bağlayan veri." + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "Varsayılan İvme" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "Varsayılan Yapı Levhası Sıcaklığı" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "Varsayılan Filaman Salınımı" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "Varsayılan Yazdırma Sıcaklığı" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "Varsayılan X-Y Salınımı" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "Varsayılan Z Salınımı" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "Yatay düzlemdeki hareketler için varsayılan salınım." + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z yönü motoru için varsayılan salınım." + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "Filaman motoru için varsayılan salınım." + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "Köprüleri tespit edin ve köprüler yazdırılırken yazdırma hızını, akışı ve fan ayarlarını değiştirin." + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "Duvarların basılacağı sırayı belirler. Dış duvarların önce basılması, iç duvarlardaki hataların dışarıya taşmasını önleyerek boyutların doğru olmasını sağlar. Bu duvarların daha sonra basılması ise çıkıntılar basılırken daha iyi yığınlanma sağlar. Toplam iç duvar miktarı eşit değilse ”ortadaki son hat” her zaman en son yazdırılır." + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "Çakışan birden çok dolgu örgüsünü göz önüne alarak bu örgünün önceliğini belirler. Birden çok dolgu örgüsünün çakıştığı alanlar en yüksek sıralamaya sahip örgünün ayarlarını alacaktır. Daha yüksek sıralamaya sahip dolgu örgüsü, dolgu örgülerinin dolgusunu daha düşük sıralı ve normal örgüler ile değiştirecektir." + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "Bir yıldırım dolgu tabakasının üstünde kalanları ne zaman desteklenmesi gerektiğini belirler. Bir katmanın kalınlığı verilen açıyla ölçülür." + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "Bir yıldırım dolgu tabakasının üstündeki modeli ne zaman desteklemesi gerektiğini belirler. Dalların açısı olarak ölçülür." + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "Çap" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "Modele Göre Çap Artışı" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "Her dalın yapı levhasına ulaşırken elde etmeye çalıştığı çap. Yatak yapışmasını geliştirir." + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "Ekstrüzyon işlemine hazırlamayı ve yapı levhasına yapışmayı artıran farklı seçenekler. Kenar, eğilmeyi önlemek için model tabanının etrafına tek katmanlı düz bir alan ekler. Radye, modelin altına çatısı olan kalın bir ızgara ekler. Etek modelin etrafına yazdırılan bir hattır fakat modele bağlı değildir." + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "İzin Verilmeyen Alanlar" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "Yazdırılan dolgu hatları arasındaki mesafe. Bu ayar, dolgu yoğunluğu ve dolgu hattı genişliği ile hesaplanır." + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "Yazdırılan ilk katman destek yapı hatları arasındaki mesafedir. Bu ayar destek yoğunluğuna göre hesaplanır." + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "Yazdırılan destek zemini çizgileri arasındaki mesafe. Bu ayar Destek Zemini Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "Yazdırılan destek çatısı çizgileri arasındaki mesafe. Bu ayar Destek Çatısı Yoğunluğu ile hesaplanır, ancak ayrıca ayarlanabilir." + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "Yazdırılan destek yapısı hatları arasındaki mesafe. Bu ayar, destek yoğunluğu ile hesaplanır." + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "Baskıdan desteğin altına kadar olan mesafe. Bunun bir sonraki katman yüksekliğine yuvarlandığını unutmayın." + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "Yazdırılıcak desteğin üstüne olan mesafe." + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "Desteğin üstü/altı ile baskı arasındaki mesafe. Bu boşluk, model basıldıktan sonra desteklerin kolayca çıkarılabilmesini sağlar. Modelin altındaki en üst destek katmanı, düzenli katmanların bir kısmı olabilir." + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "Dolgunun duvarlara daha iyi yapışması için her dolgu hattından sonra eklenen hareket mesafesi. Bu seçenek, dolgu çakışmasına benzer, ancak ekstrüzyon yoktur ve sadece dolgu hattının bir ucunda çakışma vardır." + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "Z dikişini daha iyi gizlemek için dış duvardan sonra eklenen hareket mesafesi." + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "Cereyan kalkanını X/Y yönlerindeki baskıya mesafesi." + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "Sızdırma kalkanını X/Y yönlerindeki baskıya mesafesi." + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "Destek yapısının X/Y yönlerindeki çıkıntıya mesafesi." + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "Destek yapısının X/Y yönlerindeki baskıya mesafesi." + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "Yolu düzeltmek için mesafe noktaları kaydırılır" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "Bundan küçük dolgu alanları oluşturma (onun yerine yüzey kullan)." + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "Cereyan Kalkanı Yüksekliği" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "Cereyan Kalkanı Sınırlaması" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "Cereyan Kalkanı X/Y Mesafesi" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "Alçalan Destek Örgüsü" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "İkili ekstrüzyon" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "Eliptik" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "İvme Kontrolünü Etkinleştir" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "Köprü Ayarlarını Etkinleştir" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "Taramayı Etkinleştir" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "Konik Desteği Etkinleştir" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "Cereyan Kalkanını Etkinleştir" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "Akışkan Hareketini Etkinleştir" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "Ütülemeyi Etkinleştir" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "Salınım Kontrolünü Etkinleştir" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "Nozül Sıcaklığı Kontrolünü Etkinleştir" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "Sızdırma Kalkanını Etkinleştir" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "İlk Damlayı Etkinleştir" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "İlk Direği Etkinleştir" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "Yazdırma Soğutmayı Etkinleştir" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "Yazdırma İşlemi Raporlamasını Etkinleştir" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "Geri Çekmeyi Etkinleştir" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "Destek Kenarını Etkinleştir" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "Destek Zeminini Etkinleştir" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "Destek Arayüzünü Etkinleştir" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "Destek Çatısını Etkinleştir" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "Hareket İvmesini Etkinleştir" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "Hareket Salınımını Etkinleştir" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "Dış sızdırma kalkanını etkinleştirir. Modelin etrafında, ilk nozül ile aynı yükseklikte olması halinde ikinci bir nozülü temizleyebilecek olan bir kalkan oluşturacaktır." + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "Olası hata tespitine yönelik eşik değerlerini ayarlamak için yazdırma işlemi raporlamasını etkinleştirin." + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "En üstteki yüzey alanı katmanındaki (havaya maruz kalan) küçük (\"Küçük Üst/Alt Genişliği\"ne kadar) bölgeleri varsayılan desen yerine duvarlarla dolduran ayarı etkinleştirin." + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "X veya Y eksenlerindeki hareket hızı değiştiğinde yazıcı başlığının salınımının ayarlanmasını sağlar. Salınımı artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "Yazıcı başlığı ivmesinin ayarlanmasını sağlar. İvmeleri artırmak, yazdırma süresini azaltırken yazma kalitesinden ödün verir." + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "Yazdırma sırasında yazdırma soğutma fanlarını etkinleştirir. Fanlar, katman süresi kısa olan katmanlar ve kemerlerde/çıkıntılarda yazdırma kalitesini artırır." + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "G-code’u Sonlandır" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "Filament Temizliği Bitiş Uzunluğu" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "Filament Temizliği Bitiş Hızı" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "İlgili alan üzerinde destek olsa bile kenarı modelin çevresine yazdırmaya zorlayın. Desteğin ilk katmanının bazı alanlarını kenar alanları ile değiştirir." + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "Her Yerde" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "Her bölüm" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "Dışlayıcı" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "Deneysel" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "Dikişi Açığa Çıkar" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "Geniş Dikiş" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "Geniş Dikiş, bitişik poligonlarla dikişleri kapatarak ağdaki açık boşlukların dikmeye çalışır. Bu seçenek çok fazla işlem süresi ortaya çıkarabilir." + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "Ekstra Dolgu Duvar Sayısı" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "Ek Dış Katman Duvar Sayısı" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "Nozül değişiminin ardından çalışmaya hazırlanacak ek malzemedir." + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "Extruder İlk X konumu" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "Extruder İlk Y konumu" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "Ekstruder İlk Z konumu" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "Ekstrüderler Isıtıcıyı Paylaşır" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "Ekstrüder Nozül Paylaşımı" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "Ekstrüzyon Sırasında Soğuma Hızı Düzenleyici" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "Hız için ekstrüzyon genişliği bazlı düzeltme faktörüdür. %0 değerinde hareket hızı Baskı Hızında sabit tutulur. %100 değerinde ise hareket hızı akış (mm³/s cinsinden) sabit tutulacak şekilde ayarlanır, yani normal Hat Genişliğinin yarısı iki kat daha hızlı basılır ve hatlar iki kat daha hızlı basılır. %100'den büyük değerler belirlenmesi, geniş hatların ekstrüde edilmesi için gereken yüksek basıncın telafi edilmesine yardımcı olabilir." + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "Fan Hızı" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "Fan Hızı Geçersiz Kılma" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "Bu uzunluktan kısa olan özellik ana hatları Kısa Özellik Hızı kullanılarak basılacaktır." + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "Henüz tamamen detaylandırılmamış özelliklerdir." + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "Besleyici Çark Çapı" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "Son Yazdırma Sıcaklığı" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "Üretici Yazılımı Geri Çekme" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "İlk Katman Destek Ekstruderi" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "Akış" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "Akış Eşitleme Oranı" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "Akış Sınırı" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "Akış hızı dengeleme çarpanı" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "Akış hızı dengelemesi maksimum ekstrüzyon kayması" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "Akış Sıcaklık Grafiği" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "Akış Uyarısı" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "İlk katman için akış dengelemesi: ilk katmana ekstrude edilen malzeme miktarı bu değerle çarpılır." + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "İlk katmanın alt hatlarında akış telafisi" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "Dolgu hatlarının akış telafisidir." + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "Destek çatı ve zemin hatlarının akış telafisidir." + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "Baskının üst bölümlerindeki hatların akış telafisidir." + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "Temel kule hatlarının akış telafisidir." + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "Etek veya kenar hatlarının akış telafisidir." + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "Destek zemin hatlarının akış telafisidir." + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "Destek çatı hatlarının akış telafisidir." + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "Destek yapı hatlarının akış telafisidir." + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "İlk katmanın en dış duvar hattında akış telafisi." + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "En dıştaki duvar hattının akış telafisidir." + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "Üst Yüzeyin En Dış Duvar Hattında Akış Telafisi." + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "Tüm duvar hatları için dıştaki hariç üst yüzey duvar hatlarında akış telafi." + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "Üst/alt hatların akış telafisidir." + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "En dıştaki duvar hatları hariç tüm duvar hatları için duvar hatlarında akış telafisi, ancak sadece ilk katman içindir." + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "En dıştaki duvar hattı hariç diğer duvar hatlarının akış telafisidir." + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "Duvar hatlarının akış telafisidir." + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "Akış dengeleme: sıkıştırılan malzeme miktarı bu değerle çoğaltılır." + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "Akışkan Hareket Açısı" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "Akışkan Hareketi Kaydırma Mesafesi" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "Akışkan Hareketi Küçük Mesafe" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "Temizleme Uzunluğu" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "Temizleme Hızı" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "Nozül boyutunun bir veya iki katı kadar olan ince yapılarda modelin kalınlığına bağlı olarak hat genişliklerinin değiştirilmesi gerekir. Bu ayar, duvarlar için izin verilen minimum hat genişliğini kontrol eder. Minimum hat genişlikleri, N duvarlarının geniş ve N+1 duvarlarının dar olduğu bazı geometrik kalınlıklarda N duvardan N+1 duvara geçildiği için maksimum hat genişliklerini de belirler. Mümkün olan en geniş duvar hattı Minimum Duvar Hattı Genişliğinin iki katıdır." + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "Ön" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "Sol Ön" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "Sağ Ön" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "Tam" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "Belirsiz Dış Katman" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "Belirsiz Dış Katman Yoğunluğu" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "Yalnızca Belirsiz Dış Katman" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "Belirsiz Dış Katman Noktası Mesafesi" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "Belirsiz Dış Katman Kalınlığı" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code türü" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "En son çalıştırılacak G-code komutları (" +" ile ayrılır)." + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "ile ayrılan, başlangıçta yürütülecek G-code komutları" +"." + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "Malzemedeki GUID Otomatik olarak ayarlanır." + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "Portal Yüksekliği" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "İç İçe Geçen Yapı Oluşturma" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "Oluşturma Desteği" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "İlk katmanın destek dolgu alanı içinde bir kenar oluşturun. Bu kenar, desteğin çevresine değil, altına yazdırılır. Bu ayarı etkinleştirmek, desteğin baskı tablasına yapışma alanını artırır." + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "Model ve destek arasında yoğun bir arayüz oluştur. Modelin yazdırıldığı desteğin üstünde ve modelin üzerinde durduğu desteğin altında bir yüzey oluşturur." + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "Desteğin alt kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "Desteğin üst kısmı ile model arasında yoğun bir levha oluşturur. Bu işlem, model ile destek arasında bir yüzey alanı oluşturacaktır." + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "Modellerin askıda kalan kısımlarını destekleyen yapılar oluşturun. Bu yapılar olmadan, yazdırma sırasında söz konusu kısımlar düşebilir." + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "Cam" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "Üst yüzey üzerinden bir kere daha geçilir, ancak bu defa çok küçük malzeme ekstrüde edilir. Bu işlem en üstte bulunan plastiği eriterek daha pürüzsüz bir yüzey oluşturur. Nozül haznesindeki baskı yüksek tutularak yüzeydeki kıvrımların malzemeyle dolması sağlanır." + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "Aşamalı Dolgu Basamak Yüksekliği" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "Aşamalı Dolgu Basamakları" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "Aşamalı Destek Dolgusu Basamak Yüksekliği" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "Kademeli Destek Dolgusu Aşamaları" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "Minimum katman süresi nedeniyle düşük hızlarda yazdırırken bu sıcaklığa kademeli olarak düşürün." + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "Izgara" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "Dış Duvarları Grupla" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "Gyroid" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "Yapı Hacmi Sıcaklığı Dengesi Mevcut" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "Isıtılmış Yapı Levhası İçerir" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "Isınma Hızı" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "Isı Bölgesi Uzunluğu" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "Cereyan kalkanının yükseklik sınırı. Bundan daha fazla bir yükseklikte cereyan kalkanı yazdırılmayacaktır." + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "Dikişi Gizle" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "Dikişi Gizle veya Açığa Çıkar" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "Delik Yatay Büyüme" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "Delik Yatay Büyüme Maksimum Çapı" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "Bu değerden daha küçük çaptaki delik ve parça ana hatları Küçük Özellik Hızı kullanılarak basılacaktır." + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "Yatay Büyüme" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "Yatay Ölçekleme Faktörü Büzülme Telafisi" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "Filamentin ısıtıldığında kopmadan esneyebileceği mesafedir." + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "Malzemenin sızma yapmaması için gereken geri çekilme mesafesidir." + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "Akış hızındaki değişiklikleri telafi edebilmek için filamentin bir saniyelik ekstrüzyonda hareket ettirileceği mesafenin yüzdesi olarak filamentin ne kadar uzağa hareket ettirileceği." + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken mesafedir." + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "Filamentin kopmadan ne kadar hızlı geri çekilmesi gerektiğidir." + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "Filament değişimi sırasında malzemenin sızma yapmaması için gereken geri çekilme hızıdır." + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "Farklı bir malzemeye geçildikten sonra malzemenin kullanıma hazır hale getirileceği süredir." + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "Malzemenin kuru olmadığı durumda güvenli şekilde saklanabileceği süredir." + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "Kademeli motorun kaç adımının, X yönünde bir milimetre hareketle sonuçlanacağı." + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "Kademeli motorun kaç adımının, Y yönünde bir milimetre hareketle sonuçlanacağı." + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "Kademeli motorun kaç adımının, Z yönünde bir milimetre hareketle sonuçlanacağı." + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "Kademeli motorların kaç adımının besleme ünitesi tekerleğini çevresi etrafında bir milimetre hareket ettirmekle sonuçlanacağı." + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "Boş bir makara aynı malzemeden yeni bir makara ile değiştirilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "Farklı bir malzemeye geçilirken nozülün önceki malzemeden temizlenmesi için kullanılacak malzeme (filament parçası) miktarıdır." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "Printer-start gcode betiğinin tamamlanmasında her bir ekstrüder filamentinin paylaşılan nozül ucundan ne kadar geri çekildiğinin varsayıldığıdır. Değer, nozül kanallarının ortak parçasının uzunluğuna eşit veya daha büyük olmalıdır." + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "Destek arayüzü ve destek çakıştıklarında nasıl etkileşime girerler? Şu anda sadece destek çatısı için uygulanmaktadır." + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "Model üzerine yerleştirilmesi gereken bir dalın ne kadar uzun olması gerektiği. Küçük destek lekelerini önler. Bir dalın bir destek çatısını desteklemesi durumunda bu ayar göz ardı edilir." + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "Eğer bir yüzey alanı bölgesi, alanının bu yüzdeden daha azı için destekleniyorsa, köprü ayarlarını kullanarak yazdırın. Aksi halde normal yüzey alanı ayarları kullanılarak yazdırılır." + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "Bir takım yolu parçası, genel harekete göre bu açıdan daha fazla bir sapma gösterirse düzeltilir." + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "Eğer etkinleştirilirse, havanın üzerindeki ikinci ve üçüncü katmanlar aşağıdaki ayarlar kullanılarak yazdırılır. Aksi halde bu katmanlar normal ayarlar kullanılarak yazdırılır." + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "Farklı sayıda duvar arasında arka arkaya hızlıca ileri geri geçiş yapılacaksa duvarlar arasında geçiş yapmayın. Duvarlar bir arada bu mesafeden daha yakındaysa geçişleri kaldırın." + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft tabanı etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Radye etkinleştirildiğinde, ayrıca radye verilen model etrafındaki ek radye alanıdır. Bu boşluğu artırmak, daha fazla malzeme kullanırken ve yazdırma için daha az alan bırakırken daha sağlam bir radye oluşturacaktır." + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft ortası etkinleştirilirse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "Raft üstü etkinleştirilmişse bu, ayrıca bir raft verilen modelin etrafındaki ekstra raft alanıdır. Bu toleransın arttırılması daha güçlü bir raft oluşturacak, daha fazla malzeme kullanacak ve baskınız için daha az alan bırakacaktır." + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "Bir örgü içinde çakışan hacimlerden kaynaklanan iç geometriyi yok sayın ve hacimleri tek bir hacim olarak yazdırın. Bu durum, istenmeyen iç boşlukların kaybolmasını sağlar." + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "Yapı Levhası Sıcaklığını Ekle" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "Malzeme Sıcaklıklarını Ekle" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "Kapsayıcı" + +msgctxt "infill description" +msgid "Infill" +msgstr "Dolgu" + +msgctxt "infill label" +msgid "Infill" +msgstr "Dolgu" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "Dolgu İvmesi" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "Duvarlardan Önce Dolgu" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "Dolgu Yoğunluğu" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "Dolgu Ekstruderi" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "Dolgu Akışı" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "Dolgu Salınımı" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "Dolgu Katmanı Kalınlığı" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "Dolgu Hattı Yönleri" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "Dolgu Hattı Mesafesi" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "Dolgu Hattı Çoğaltıcı" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "Dolgu Hattı Genişliği" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "Dolgu Ağı" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "Dolum Çıkıntı Açısı" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "Dolgu Çakışması" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "Dolgu Çakışma Oranı" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "Dolgu Şekli" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "Dolgu Hızı" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "Dolgu Desteği" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "Dolgu Hareket Optimizasyonu" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "Dolgu Sürme Mesafesi" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "Dolgu X Kayması" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "Dolgu Y Kayması" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "İlk Alt Katmanlar" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "İlk Fan Hızı" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "İlk Katman İvmesi" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "İlk Katman Alt Akışı" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "İlk Katman Çapı" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "İlk Katman Akışı" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "İlk Katman Yüksekliği" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "İlk Katmanın Yatay Genişlemesi" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "İlk Katman İç Duvar Akışı" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "İlk Katman Salınımı" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "İlk Katman Hat Genişliği" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "İlk Katman Dış Duvar Akışı" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "İlk Katman Yazdırma İvmesi" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "İlk Katman Yazdırma Salınımı" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "İlk Katman Yazdırma Hızı" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "İlk Katman Hızı" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "İlk Katman Destek Hattı Mesafesi" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "İlk Katman Hareket İvmesi" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "İlk Katman Hareket Salınımı" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "İlk Katman Hareket Hızı" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "İlk Katman Z Çakışması" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "İlk Yazdırma Sıcaklığı" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "İç Duvar İvmesi" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "İç Duvar Ekstrüderi" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "İç Duvar Salınımı" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "İç Duvar Hızı" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "İç Duvar Akışı" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "İç Duvar(lar) Hattı Genişliği" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "Dış duvar yoluna uygulanan ilave. Dış duvar nozülden küçükse ve iç duvardan sonra yazdırılmışsa, nozüldeki deliği modelin dış kısmı yerine iç duvarlar ile üst üste bindirmek için bu ofseti kullanın." + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "Yalnızca İçeride" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "İçten Dışa" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "Tercih edilen arayüz hatları" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "Tercih edilen arayüz" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "Aralıklı" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "İç İçe Geçen Kiriş Katman Sayısı" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "İç İçe Geçme Genişliği" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "İç İçe Geçme Sınırından Kaçınma" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "İç İçe Geçme Derinliği" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "İç İçe Geçen Yapı Uyumlaması" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "Sadece En Yüksek Katmanı Ütüle" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "Ütüleme İvmesi" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "Ütüleme Akışı" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "Ütüleme İlave Mesafesi" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "Ütüleme İvmesi Değişimi" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "Ütüleme Hattı Boşluğu" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "Ütüleme Modeli" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "Ütüleme Hızı" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "Merkez Nokta" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "Destek malzemesi mi" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "Bu malzeme ısıtıldığında temiz bir şekilde parçalanan tür de mi (kristalli) yoksa uzun iç içe polimer zincirler (kristal olmayan) oluşturan türde mi?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "Bu malzeme genellikle baskı sırasında destek malzemesi olarak mı kullanılır" + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "Parçalardaki delikleri değil, yalnızca ana hatlarını titretir." + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "Bağlı Olmayan Yüzleri Tut" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "Katman Yüksekliği" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "Katman Başlangıcı X" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "Katman Başlangıcı Y" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "Radyenin taban katmanının katman kalınlığı. Bu, yazıcı yapı levhasına sıkıca yapışan kalın bir katman olmalıdır." + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "Radyenin orta katmanının katman kalınlığı." + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "Üst radye katmanlarının katman kalınlığı." + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "Destek yapısının daha kolay kırılması için her N milimetresinde bir destek hatları arasında bağlantı atlayın." + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "Sol" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "Yazıcı Başlığını Kaldır" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "Yıldırım" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "Yıldırım Dolgu Çıkıntı Açısı" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "Yıldırım Dolgu Budama Açısı" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "Yıldırım Dolgu Düzleştirme Açısı" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "Yıldırım Dolgu Destek Açısı" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "Dal Erişimini Sınırla" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "Her dalın desteklediği noktadan ne kadar uzağa gitmesi gerektiğini sınırlayın. Bu sınırlama, desteği daha sağlam hale getirebilir, ancak dalların miktarını (ve bu nedenle, malzeme kullanımı/baskı süresini) artıracaktır" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "Tespit için Yapı Hacmi Sıcaklığı Sınırı uyarısı." + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "Tespit için Yapı Hacmi Sıcaklığı Anormallik Sınırı." + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "Tespit için Yazdırma Sıcaklığı anormalliği sınırı." + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "Tespit için Yazdırma sıcaklığı uyarısı sınır." + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "Tespit için akış anormalliği sınırı." + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "Tespit için akış uyarısı sınırı." + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "Bu örgünün hacmini diğer örgülere göre sınırlandırın. Bir örgünün belirli alanlarını farklı ayarlarla ve tamamen farklı bir ekstrüder ile yazdırmak için bunu kullanabilirsiniz." + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "Sınırlı" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "Hat Genişliği" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "Çizgiler" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "Makine" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "Makine Derinliği" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "Makinenin Başlığı ve Fan Poligonu" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "Makine Yüksekliği" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "Makine Türü" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "Makine Genişliği" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "Makine özel ayarları" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "Çıkıntıyı Yazdırılabilir Yap" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "Birbirine dokunan örgülerin az oranda üst üste binmesini sağlayın. Böylelikle bunlar daha iyi birleşebilir." + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "Alttaki destek alanlarını çıkıntıda olanlardan daha küçük yapın." + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "Destek örgüsünde askıda kalan herhangi bir kısım olmaması için destek örgüsünün altındaki her yere destek yapın." + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "Ekstruder ilk konumunu, yazıcı başlığının son konumuna göre ayarlamak yerine mutlak olarak ayarlayın." + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "Hava boşluğundaki filament kaybını telafi etmek için modelin birinci ve ikinci katmanını Z yönünde üst üste getirir. İlk model katmanının üzerindeki tüm modeller bu miktarda aşağı kaydırılacaktır." +"Bu ayar nedeniyle bazen ikinci katmanın ilk katmanın altına yazdırıldığı belirtilebilir. Bu istenilen davranıştır" + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "Kafesleri 3D baskı için daha uygun hale getirir." + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin (Volümetrik)" + +msgctxt "material description" +msgid "Material" +msgstr "Malzeme" + +msgctxt "material label" +msgid "Material" +msgstr "Malzeme" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "Malzeme Markası" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "GUID malzeme" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "Malzeme Türü" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "Sürme Hareketleri Arasındaki Malzeme Hacmi" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "Geri Çekmesiz Maks. Tarama Mesafesi" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "Maksimum X İvmesi" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "Maksimum Y İvmesi" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Maksimum Z İvmesi" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "Maksimum Dal Açısı" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "Maksimum Sapma" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "Maksimum Ekstrüzyon Alanı Sapması" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "Maksimum Fan Hızı" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "Maksimum Filaman İvmesi" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "Maksimum Model Açısı" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "Maksimum Çıkıntı Deliği Alanı" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "Maksimum Durma Süresi" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "Maksimum Çözünürlük" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "Maksimum Geri Çekme Sayısı" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "Genişleme için Maksimum Yüzey Açısı" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "Maksimum Hız E" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "Maksimum X Hızı" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Maksimum Y Hızı" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Maksimum Z Hızı" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "Kule Destekli Maksimum Çap" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "Maksimum Hareket Çözünürlüğü" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X yönü motoru için maksimum ivme" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y yönü motoru için maksimum ivme." + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z yönü motoru için maksimum ivme." + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "Filaman motoru için maksimum ivme." + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "Seyrek olması düşünülen dolgunun maksimum yoğunluğu. Seyrek dolgu üzerindeki kaplama, desteksiz olacağı düşünülerek köprü kaplaması olarak değerlendirilir." + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "Özel bir destek kulesiyle desteklenecek küçük bir alanın X/Y yönlerindeki maksimum çapıdır." + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "Başka bir nozül sürme işlemi başlatılmadan önce ekstrüde edilebilecek maksimum malzeme miktarı. Bu değer, bir katmanda gereken malzeme hacminden daha düşükse ayarın bu katmanda bir etkisi olmayacaktır, yani katman başına bir sürme sınırı vardır." + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "Birleştirilmiş Bileşim Çakışması" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "Ağ Onarımları" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "Bileşim konumu X" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "Nesneye x yönünde uygulanan ofset." - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "Bileşim konumu Y" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "Nesneye y yönünde uygulanan ofset." - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "Bileşim konumu Z" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz." +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "Örgü İşleme Sıralaması" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "Bileşim Rotasyon Matrisi" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Ortalayıcı" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "Minimum Kalıp Genişliği" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "Minimum Sürede Bekleme Sıcaklığı" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "Minimum Köprü Duvarı Uzunluğu" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "Minimum Çift Duvar Hattı Genişliği" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "Minimum Geri Çekme Mesafesi Penceresi" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "Minimum Yüz Hattı Boyutu" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "Minimum Besleme Hızı" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "Modele Göre Minimum Yükseklik" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "Minimum Dolgu Alanı" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "Minimum Katman Süresi" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "Minimum Tek Duvar Hattı Genişliği" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "Minimum Poligon Çevre Uzunluğu" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "Genişleme için Minimum Yüzey Genişliği" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "Minimum Hız" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "Minimum Destek Bölgesi" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "Minimum Destek Zemini Bölgesi" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "Minimum Destek Arayüzü Bölgesi" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "Minimum Destek Çatısı Bölgesi" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "Minimum Destek X/Y Mesafesi" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "Minimum İnce Duvar Hattı Genişliği" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "Tarama Öncesi Minimum Hacim" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "Minimum Duvar Hattı Genişliği" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Destek arayüzü çokgenlerinin minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "Destek poligonları için minimum alan boyutu. Alanı bu değerden daha düşük olan poligonlar oluşturulmayacaktır." + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Destek tabanlarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "Destek çatılarının minimum alan boyutu. Alanı bu değerden küçük olan poligonlar normal destekle basılacaktır." + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "İnce yüz hatlarının minimum kalınlığıdır. Bu değerden daha ince olan model yüz hatları yazdırılmaz, Minimum Yüz Hattı Boyutundan daha kalın olan modeller ise Minimum Duvar Hattı Genişliği değerine kadar genişletilir." + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "Koni desteği tabanının indirildiği minimum genişlik. Küçük genişlikler, destek tabanlarının dengesiz olmasına neden olur." + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "Kalıp" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "Kalıp Açısı" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "Kalıp Çatı Yüksekliği" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "Monotonik Ütüleme Düzeni" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "Monotonik Raft Üst Yüzey Düzeni" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "Monotonik Üst Yüzey Düzeni" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "Monotonik Üst/Alt Düzeni" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "Çoklu etek hatları küçük modeller için daha iyi ekstrüzyon işlemi hazırlanmasına yardımcı olur. Bu değeri 0’a ayarlamak eteği devre dışı bırakacaktır." + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "İlk katman üzerinde bulunan hat genişliği çoğaltıcı. Çoğaltmayı artırmak yatak yapışmasını iyileştirebilir." + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "Yük Taşıma Çarpanı Yok" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z Boşluklarında Dış Katman Oluşturma" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "Modellerinizi yazdırmanın geleneksel olmayan yollarıdır." + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "Hiçbiri" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "Hiçbiri" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "Normal" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "Normal koşullarda, Cura ağdaki küçük boşlukları diker ve büyük boşluklu katman parçalarını ortadan kaldırır. Bu seçeneği etkinleştirmek, dikilemeyen parçaları muhafaza eder. Bu seçenek, hiçbir işlemin uygun bir g-code oluşturamaması durumunda başvurulacak son seçenek olarak kullanılmalıdır." + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "Yüzey Alanında Değil" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "Dış Yüzeyde Değil" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "Nozül Açısı" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "Nozül Çapı" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "Nozül İzni Olmayan Alanlar" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "Nozül Kimliği" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "Nozül Uzunluğu" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "Nozül Değişimiyle Çalışmaya Hazırlanacak Ek Miktar" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "Nozül Değişiminin İlk Hızı" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "Nozül Değişiminin Geri Çekme Hızı" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "Nozül Anahtarı Geri Çekme Mesafesi" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "Nozül Anahtarı Geri Çekme Hızı" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "Ekstrüder Sayısı" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "Etkinleştirilmiş Ekstruder Sayısı" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "Daha Yavaş Katman Sayısı" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "Etkinleştirilmiş ekstruder dişli çarklarının sayısı; yazılımda otomatik olarak ayarlanır" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "Ekstruder dişli çarklarının sayısı. Ekstruder dişli çarkı besleyici, bowden tüpü ve nozülden oluşur." + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "Nozülün fırçadan geçirilme sayısı." + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "Üst yüzeylerin altına indikçe dolgu yoğunluğunu yarıya indirme sayısı. Üst yüzeylere daha yakın olan alanlarda, Dolgu Yoğunluğuna kadar yoğunluk daha yüksektir." + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "Üst yüzeylerin altına inerken destek dolgusu yoğunluğunu yarıya indirmek için inilecek yüzey sayısı. Üst yüzeylere daha yakın olan alanlarda yoğunluk daha fazladır ve Destek Dolgusu Yoğunluğuna kadar çıkabilir." + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "Sekizlik" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "Kapalı" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "Nesneye x yönünde uygulanan ofset." + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "Nesneye y yönünde uygulanan ofset." + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "Nesneye z yönünde uygulanan ofset. Bununla birlikte “Nesne Havuzu” olarak adlandırılan malzemeyi de kullanabilirsiniz." + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "Ekstruder Ofseti" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "Mümkün olduğunda yapı levhası üzerinde" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "Gerektiğinde model üzerinde" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "Birer Birer" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "Sadece Hareket Sırasında Yazdırılan Bölümleri Atlama yoluyla yatay hareket sayesinde atlanamayan yazdırılmış parçalar üzerinde hareket ederken Z Sıçramasını gerçekleştirin." + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "Ütüleme işlemini bileşimin sadece en son katmanı üzerinde gerçekleştirin. Bu, alt katmanlarda pürüzsüz bir yüzey tesviyesine gerek olmadığı durumlarda zaman kazandırır." + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "Sızdırma Kalkanı Açısı" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "Sızdırma Kalkanı Mesafesi" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "Optimum Dal Aralığı" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "Duvar Yazdırma Sırasını Optimize Et" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "Geri çekmelerin sayısını ve kat edilen mesafeyi azaltmak için duvarların yazdırıldığı sırayı optimize edin. Çoğu parça, bunun etkinleştirilmesinden yararlanır, ancak bazılarının yararlanması için gerçekte daha uzun süre gerekebilir. Bu yüzden, yazdırma süresi tahminlerini optimizasyonlu ve optimizasyonsuz olarak karşılaştırın. Kenar, yapı levhası yapıştırması tipi olarak seçildiğinde ilk katman optimize edilmez." + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "Dış Nozül Çapı" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "Dış Duvar İvmesi" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "Dış Duvar Ekstruderi" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "Dış Duvar Akışı" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "Dış Duvar İlavesi" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "Dış Duvar Salınımı" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "Dış Duvar Hattı Genişliği" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "Dış Duvar Hızı" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "Dış Duvar Sürme Mesafesi" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "Aynı katman içindeki farklı adalardaki dış duvarlar sırayla basılır. Etkinleştirildiğinde, akış değişiklik miktarı duvarlar tür türüne basıldığı için sınırlıdır, devre dışı bırakıldığında ise aynı adalardaki duvarlar gruplandığı için adalar arasındaki seyahat sayısı azalır." + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "Yalnızca Dışarıda" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "Dıştan İçe" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "Çıkıntılı Duvar Açısı" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "Çıkıntılı Duvar Hızı" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "Çıkıntılı duvarlar, normal yazdırma hızına göre bu yüzdeye denk bir hızda yazdırılacaktır." + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "Geri çekmenin geri alınmasından sonraki duraklama." + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "Köprü duvarları ve yüzey alanı yazdırılırken kullanılacak yüzde fan hızı." + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "Desteğin hemen üzerindeki yüzey bölgeleri yazdırılırken kullanılacak yüzdelik fan hızıdır. Yüksek fan hızı kullanmak desteğin daha kolay kaldırılmasını sağlayabilir." + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yüzde fan hızı." + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "Bu miktardan daha kısa çevre uzunluğuna sahip dilimlenmiş katmanlardaki poligonlar filtre ile elenecektir. Daha düşük değerler dilimleme süresini uzatacak ancak daha yüksek çözünürlükte bir ağ oluşturacaktır. Genellikle yüksek çözünürlüklü SLA yazıcılarına yöneliktir ve çok fazla detay içeren çok küçük 3D modellerinde kullanılır." + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "Tercih Edilen Dal Açısı" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "Bir fazla ve bir az duvar arasında ileri geri geçişi önleyin. Bu kenar boşluğu, [Minimum Duvar Hattı Genişliği - Kenar Boşluğu, 2 * Minimum Duvar Hattı Genişliği+Kenar Boşluğu] olarak takip edilen hat genişliklerinin aralığını genişletir. Bu kenar boşluğunun artırılması geçişlerin sayısını azaltır, bu da ekstrüzyon başlatma/durdurma sayısını ve hareket süresini azaltır. Bununla birlikte, geniş hat varyasyonları düşük veya aşırı ekstrüzyon sorunlarına yol açabilir." + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "İlk Direk İvmesi" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "Başlangıç Kulesi Tabanı" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "Başlangıç Kulesi Taban Yüksekliği" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "Başlangıç Kulesi Taban Boyutu" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Prime Tower Taban Eğimi" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "İlk Direk Akışı" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "İlk Direk Salınımı" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "İlk Direk Hattı Genişliği" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "Asal Kule Maksimum Köprüleme Mesafesi" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "İlk Direğin Minimum Hacmi" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "Başlangıç Kulesi Salı İzi Aralığı" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "İlk Direk Boyutu" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "İlk Direk Hızı" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "Asal Kule Türü" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "İlk Direk X Konumu" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "İlk Direk Y Konumu" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "Yazdırma İvmesi" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "Yazdırma İvmesi Değişimi" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "Yazdırma Süreci Raporlaması" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "Yazdırma Dizisi" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "Yazdırma Hızı" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "İnce Duvarları Yazdır" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "Modelin dışına, içine veya her ikisine de bir brim yazdırın. Modele bağlı olarak bu, daha sonra çıkarmanız gereken brim miktarının azaltılmasına yardımcı olurken yatağın düzgünce yapışmasını sağlar." + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "Malzemenin hazırlanmasına yardımcı olan yazıcının yanındaki direği her nozül değişiminden sonra yazdırın." + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "Yazdırma dolgusu, yalnızca model tepelerinin desteklenmesi gereken yerleri yapılandırır. Bu özelliğin etkinleştirilmesi yazdırma süresini ve malzeme kullanımını azaltır ancak üniform olmayan nesne kuvvetine yol açar." + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle hatları ütüleyerek baskı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "Yapı levhası üzerinde modelleri toplayan bir model elde etmek amacıyla döküm olabilecek modelleri kalıp olarak yazdırır." + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "Yatay olarak nozül boyutundan daha ince olan model parçalarını yazdırır." + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "Raftın üst yüzey çizgilerini, her zaman bitişik çizgilerle tek bir yönde üst üste binmelerine neden olacak bir sırayla yazdırır. Bu, yazdırmanın biraz daha fazla zaman almasını sağlar ama yüzeyin daha tutarlı görünmesini sağlar, bu da modelin alt yüzeyinde de görülebilir." + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken kullanılacak yazdırma hızı." + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "Yazdırma sıcaklığı Sınırı" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "Yazdırma sıcaklığı Uyarısı" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "Duvarları yazdırmadan önce dolguyu yazdırın. Önce duvarları yazdırmak daha düzgün duvarlar oluşturabilir ama yazdırmayı olumsuz etkiler. Önce dolguyu yazdırmak duvarların daha sağlam olmasını sağlar, fakat dolgu şekli bazen yüzeyden görünebilir." + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst yüzey hatlarının baskısını yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Her zaman bitişik hatlarla tek yönde çakışmaya neden olan bir düzenle üst/alt hat baskısı yapın. Bu baskı biraz daha uzun sürer, fakat düz yüzeylerin daha tutarlı görünmesini sağlar." + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "Yazdırma Sıcaklığı" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "İlk Katman Yazdırma Sıcaklığı" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "En içteki etek çizgisinin birden fazla katmanla yazdırılması, eteğin çıkarılmasını kolaylaştırır." + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "Her katmanda ek duvar yazdırır. Bu şekilde dolgu ek duvarların arasında alır ve daha sağlam baskılar ortaya çıkar." + +msgctxt "resolution label" +msgid "Quality" +msgstr "Kalite" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "Çeyrek Kübik" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Radye" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Radye Hava Boşluğu" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "Raft Tabanı Ekstra Tolerans" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Radye Taban Ekstrüderi" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Radyenin Taban Fan Hızı" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Radye Taban Hat Genişliği" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Radyenin Taban Hat Genişliği" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Radyenin Taban Yazdırma İvmesi" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Radyenin Taban Yazdırma Salınımı" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Radyenin Taban Yazdırma Hızı" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "Raft Tabanı Düzeltme" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Radye Taban Kalınlığı" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Radye Tabanı Duvar Sayısı" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Ek Radye Boşluğu" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Radye Fan Hızı" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "Raft Ortası Ekstra Tolerans" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Radye Orta Ekstrüderi" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Radyenin Orta Fan Hızı" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Radye Orta Katmanları" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Radyenin Orta Hat Genişliği" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Radyenin Orta Yazdırma İvmesi" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Radyenin Orta Yazdırma Salınımı" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Radyenin Orta Yazdırma Hızı" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "Raft Orta Düzeltme" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Radye Orta Boşluğu" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Radye Orta Kalınlığı" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "Raft Orta Duvar Sayısı" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Radye Yazdırma İvmesi" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Radye Yazdırma Salınımı" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Radye Yazdırma Hızı" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Radye Düzeltme" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "Raft Üstü Ekstra Tolerans" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Radye Üst Ekstrüderi" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Radye Üst Fan Hızı" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Radyenin Üst Katman Kalınlığı" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Radyenin Üst Katmanları" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Radyenin Üst Hat Genişliği" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Radye Üst Yazdırma İvmesi" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Radye Üst Yazdırma Salınımı" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Radye Üst Yazdırma Hızı" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "Raft Üst Düzeltme" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Radyenin Üst Boşluğu" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "Raft Üstü Duvar Sayısı" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "Raft Duvar Sayısı" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "Gelişigüzel" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "Rastgele Boşluk Doldurma Başlat" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "Önce hangi boşluk doldurma hattının yapılacağını rastgele belirler. Böylece tek bir segmentin en güçlü yapıda olması önlenir ancak bu işlem ilave gezinti hamlelerine neden olabilir." + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "Yüzeyin sert ve belirsiz bir görüntü alması için dış duvarları yazdırırken rastgele titrer." + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "Dikdörtgen" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "Olağan Fan Hızı" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "Yüksekteki Olağan Fan Hızı" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "Katmandaki Olağan Fan Hızı" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "Olağan/Maksimum Fan Hızı Sınırı" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "Bağıl Ekstrüzyon" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "Tüm Boşlukları Kaldır" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "Boş İlk Katmanları Kaldır" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "Bileşim Kesişimini Kaldırın" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "Raft Tabanını İç Köşelerini Kaldır" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "Radye İç Köşelerini Kaldır" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "Raft Ortası İç Köşelerini Kaldır" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "Raft Üstü İç Köşelerini Çıkar" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "Birden fazla bileşimin çakıştığı alanları kaldırın. Bu, birleştirilmiş ikili malzemeler çakıştığında kullanılabilir." + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "Basılan ilk katmanın altındaki varsa boş katmanları kaldır. Bu ayarın devre dışı bırakılması, Dilimleme Toleransı Dışlayıcı veya Ortalayıcı olarak ayarlanmışsa, boş ilk katmanlar oluşmasına neden olabilir." + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın tabanındaki iç köşeleri çıkarır." + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın orta kısmındaki iç köşeleri çıkarır." + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "Raftın dışbükey olmasına neden olan raftın üst kısmındaki iç köşeleri çıkarır." + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "Radyenin iç köşelerini kaldırır ve radyenin dışbükey olmasına yol açar." + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "Her katmandaki boşlukları ortadan kaldırır ve sadece dış şekli korur. Görünmez tüm iç geometriyi yok sayar. Bununla birlikte, üstten ve alttan görünebilen katman boşluklarını da göz ardı eder." + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "Üst/alt şeklin en dıştaki parçasını eş merkezli hatlar ile değiştirir. Bir veya iki hat kullanmak, dolgu malzemesinde başlayan tavanları geliştirir." + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "Belirlenen eşiklerin dışına çıkan etkinliklerin raporlanması" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "Yerleştirme Tercihi" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "Dış Duvardan Önce Geri Çek" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "Katman Değişimindeki Geri Çekme" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "Nozül yazdırılamayan alana doğru hareket ettiğinde filamanı geri çeker." + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "Nozül bir sonraki katmana doğru hareket ettiğinde filamanı geri çekin." + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "Geri Çekme Mesafesi" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "Geri Çekme Sırasındaki İlave Astar Miktarı" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "Minimum Geri Çekme Hareketi" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "Geri Çekme Sırasındaki Astar Hızı" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "Geri Çekme Sırasındaki Çekim Hızı" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "Geri Çekme Hızı" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "Sağ" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "Fan Hızını 0 - 1 Arasında Ölçeklendir" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "Fan hızını 0 - 256 arasında değil 0 - 1 arasında ölçeklendirin." + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "Ölçekleme Faktörü Büzülme Telafisi" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "Sahnede Destek Örgüsü Var" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "Dikiş Köşesi Tercihi" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "Baskı Sırasını Manuel Olarak Ayarla" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "Cereyan kalkanının yüksekliğini ayarlayın. Cereyan kalkanını model yüksekliğinde veya sınırlı yükseklikte yazdırmayı seçin." + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "Çoklu ekstruderler ile yapılan yazdırmalar için kullanılan ayarlar." + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "Sadece Cura ön ucundan CuraEngine istenmediğinde kullanılan ayarlar." + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "Paylaşılan Nozül İlk Geri Çekme" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "En Keskin Köşe" + +msgctxt "shell description" +msgid "Shell" +msgstr "Kovan" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "En kısa" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "Makine Varyantlarını Göster" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "Kaplamanın Kenar Desteği Katmanları" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "Kaplamanın Kenar Desteği Kalınlığı" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "Yüzey Genişleme Mesafesi" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "Yüzey Çakışması" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "Yüzey Çakışma Oranı" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "Yüzey Kaldırma Genişliği" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "Bu değerden daha dar olan yüzey alanları genişletilmez. Böylece model yüzeyinin dikeye yakın bir eğime sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur." + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "Destek yapısının daha kolay kırılması için her N bağlantı hattında bir zikzak atlayın." + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "Destek yapısının daha kolay kırılması için bazı destek hattı bağlantılarını atlayın. Bu ayar, Zikzak destek dolgusu şekli için geçerlidir." + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Etek" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Etek Mesafesi" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "Etek Yüksekliği" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Etek Hattı Sayısı" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Etek/Kenar İvmesi" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Etek/Kenar Ekstrüderi" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "Etek/Kenar Akışı" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Etek/Kenar İvmesi Değişimi" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "Etek/Kenar Hattı Genişliği" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Minimum Etek/Kenar Uzunluğu" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Etek/Kenar Hızı" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "Dilimleme Toleransı" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "Küçük Özellik İlk Katman Hızı" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "Maksimum Küçük Özellik Uzunluğu" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "Küçük Özellik Hızı" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "Maksimum Küçük Delik Boyutu" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "Küçük Katman Yazdırma Sıcaklığı" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "Yüzeyde Küçük Üst/Alt" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "Küçük Üst/​Alt Genişlik" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "İlk katman üzerindeki küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "Küçük özellikler normal baskı hızının bu yüzdesinde basılacaktır. Daha yavaş baskı, yapışma ve doğruluğu artırmaya yardımcı olabilir." + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "Küçük üst/alt bölgeler, varsayılan üst/alt deseni yerine duvarlarla doldurulur. Bu, sarsıntılı hareketleri önlemeye yardımcı olur. Varsayılan ayarda, en üstteki (havaya maruz kalan) katman için kapalıdır (bkz. 'Yüzeyde Küçük Üst/Alt')." + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "Akıllı Kenar" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "Akıllı Gizleme" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "Helezon Şeklinde Düzeltme" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "Z dikişinin görünürlüğünü azaltmak için helezon şeklindeki konturları düzeltin (Z dikişi baskıda zor görünmeli ancak katman görünümünde görünür olmalıdır). Düzeltme işleminin ince yüzey detaylarında bulanıklığa neden olabileceğini göz önünde bulundurun." + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "Hareket sırasında bazı malzemeler eksilebilir, bu malzemeler burada telafi edebilir." + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "Sürme hareketi sırasında bazı malzemeler eksilebilir; bu malzemeler burada telafi edebilir." + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "Özel Modlar" + +msgctxt "speed description" +msgid "Speed" +msgstr "Hız" + +msgctxt "speed label" +msgid "Speed" +msgstr "Hız" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "Sıçrama sırasında z eksenini hareket ettirmek için gerekli hız." + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "Spiral Dış Çevre" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "Dış kenarın Z hareketini helezon şeklinde düzeltir. Böylece yazdırmanın tamamında sabit bir Z artışı oluşur. Bu özellik katı bir modeli, tabanı katı tek bir duvar yazdırmasına dönüştürür. Bu özelliğin sadece tek bir parça içeren tüm tabakalarda etkinleştirilmesi gerekir." + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "Bekleme Sıcaklığı" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "G-code’u Başlat" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "Bir katmandaki her yolun başlangıç noktası. Ardışık katmanlardaki yollar aynı noktadan başladığında, çıktıda dikey bir ek yeri görünebilir. Bunları kullanıcının belirlediği bir konumun yakınına hizalarken ek yerinin kaldırılması kolaylaşır. Gelişigüzel yerleştirildiğinde yolların başlangıcındaki düzensizlikler daha az fark edilecektir. En kısa yol kullanıldığında yazdırma hızlanacaktır." + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "Milimetre Başına Adım (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "Milimetre Başına Adım (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "Milimetre Başına Adım (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "Milimetre Başına Adım (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "Destek" + +msgctxt "support label" +msgid "Support" +msgstr "Destek" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "Destek İvmesi" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "Destek Alt Mesafesi" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "Destek Alt Duvar Hattı Sayısı" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "Destek Kenar Hattı Sayısı" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "Destek Kenar Genişliği" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "Destek Parçası Hattı Sayısı" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "Destek Parçasının Boyutu" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "Destek Yoğunluğu" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "Destek Mesafesi Önceliği" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "Destek Ekstruderi" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "Destek Zemini İvmesi" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "Destek Zemini Yoğunluğu" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "Destek Zemini Ekstrüderi" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "Destek Zemin Akışı" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "Destek Zemini Yatay Büyüme" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "Destek Zemini Sarsıntısı" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "Destek Zemin Hattı Yönleri" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "Destek Zemini Çizgi Mesafesi" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "Destek Zemini Çizgi Genişliği" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "Destek Zemini Deseni" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "Destek Zemini Hızı" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "Destek Zemini Kalınlığı" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "Destek Akışı" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "Destek Yatay Büyüme" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "Destek Dolgusu İvmesi" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "Destek Dolgu Ekstruderi" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "Destek Dolgu İvmesi Değişimi" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "Destek Dolgusu Katmanı Kalınlığı" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "Destek Dolgu Hattı Yönü" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "Destek Dolgu Hızı" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "Destek Arayüzü İvmesi" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "Destek Arayüzü Yoğunluğu" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "Destek Arayüz Ekstruderi" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "Destek Ara Yüzeyi Akışı" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "Destek Arayüzü Yatay Büyüme" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "Destek Arayüz Salınımı" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "Destek Arabirim Hattı Yönleri" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "Destek Arayüz Hattı Genişliği" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "Destek Arayüzü Şekli" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "Destek Arayüzü Önceliği" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "Destek Arayüzü Hızı" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "Destek Arayüzü Kalınlığı" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "Destek Arayüzü Duvar Hattı Sayısı" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "Destek Salınımı" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "Destek Birleşme Mesafesi" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "Destek Hattı Mesafesi" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "Destek Hattı Genişliği" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "Destek Örgüsü" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "Destek Çıkıntı Açısı" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "Destek Şekli" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "Destek Yerleştirme" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "Destek Çatısı İvmesi" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "Destek Çatısı Yoğunluğu" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "Destek Çatısı Ekstrüderi" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "Destek Çatı Akışı" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "Destek Çatısı Yatay Büyüme" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "Destek Çatısı Sarsıntısı" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "Destek Çatı Hattı Yönleri" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "Destek Çatısı Çizgi Mesafesi" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "Destek Çatısı Çizgi Genişliği" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "Destek Çatısı Deseni" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "Destek Çatısı Hızı" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "Destek Tavanı Kalınlığı" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "Destek Çatı Duvar Hattı Sayısı" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "Destek Hızı" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "Destek Merdiveni Basamak Yüksekliği" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "Destek Merdiveni Maksimum Basamak Genişliği" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "Basamak Desteğinin Minimum Eğim Açısı" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "Destek Yapısı" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "Destek Üst Mesafesi" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "Duvar Hattı Sayısını Destekle" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "Destek X/Y Mesafesi" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "Destek Z Mesafesi" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "Tercih edilen destek hatları" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "Tercih edilen destek" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "Desteklenen Yüzey Fan Hızı" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "Yüzey" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "Yüzey Enerjisi" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "Yüzey Modu" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "Yüzeye yapışma eğilimi." + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "Yüzey enerjisi." + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "En içteki ve ikinci en içteki kenar çizgilerinin baskı sırasını değiştirin. Bu, kenarın çıkarılmasını kolaylaştırır." + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "Çakışan bileşimlerin birbirine karışması için her bir katmanda bileşim kesişimi hacimlerine göre değişiklik yapın. Bu ayarın kapatılması, bir bileşimin diğer bileşimlerden ayrılarak çakışmadaki tüm hacmi almasına neden olur." + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "İki bitişik katman arasındaki hedef yatay mesafe. Bu ayarın azaltılması, katmanların kenarlarını birbirine yakınlaştırmak için daha ince katmanlar kullanılmasına neden olur." + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun X koordinatı." + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun X koordinatı." + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun X koordinatı." + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "Her bir katmanın yazdırılmaya başlanacağı bölgeye yakın konumun Y koordinatı." + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın yazdırılmaya başlanacağı yere yakın konumun Y koordinatı." + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Y koordinatı." + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "Nozül yazdırma işlemini başlatmaya hazırlandığında konumun Z koordinatı." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı ivme." + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "İlk katman için belirlenen ivme." + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "İlk katmandaki hareket hamlelerinin ivmesi." + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "İç duvarların yazdırıldığı ivme." + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "Dolgunun yazdırıldığı ivme." + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "Ütülemenin gerçekleştiği ivme." + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "Yazdırmanın gerçekleştiği ivme." + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivme." + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "Destek zemininin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "Destek dolgusunun yazdırıldığı ivme." + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "Orta radye katmanının yazdırıldığı ivme." + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "En dış duvarların yazdırıldığı ivme." + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı ivme." + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "Radyenin yazdırıldığı ivme." + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Destek çatıları ve zeminlerinin yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "Destek çatısının yazdırıldığı ivme. Daha düşük ivmelerle yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "Etek ve kenarın yazdırıldığı ivme. Bu işlem normalde ilk katman ivmesi ile yapılır, ama etek ve kenarı farklı bir ivmede yazdırmak isteyebilirsiniz." + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı ivme." + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı ivme." + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "Üst yüzey iç duvarlarının hangi hızla basıldığı." + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "Duvarların yazdırıldığı ivme." + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı ivme." + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı ivme." + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "Hareket hamlelerinin ivmesi." + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "Ütüleme sırasında normal yüzey hattına göre ekstrude edilecek malzeme miktarı. Nozülü dolu tutmak üst yüzeyde oluşan çatlakların bir kısmının doldurulmasını sağlar fakat nozülün fazla dolu olması aşırı ekstrüzyona ve yüzey yanlarında noktalar oluşmasına neden olur." + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ve duvarların arasındaki çakışma miktarı. Ufak bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu ve duvarlar arasındaki çakışma miktarı. Hafif bir çakışma duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "Ekstrüderler değiştirilirken oluşan geri çekme miktarı. Geri çekme yoksa 0 olarak ayarlayın. Bu genellikle ısı bölgesinin uzunluğuna eşittir." + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "Yatay düzlem ve nozül ucunun sağ üzerinde bulunan konik parça arasındaki açı." + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "Direk tavanı açısı Yüksek bir değer, direk tavanını sivrileştirirken, daha düşük bir değer direk tavanlarını düzleştirir." + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "Kalıp için oluşturulan dış duvarların çıkıntı açısı. 0° kalıbın dış kovanını dikey hale getirirken, 90° ise modelin dış kısmının model konturunu takip etmesini sağlayacaktır." + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "Alta doğru gidildikçe kademeli olarak kalınlaşan dalların açısı. 0 derecelik bir açı dalların uzunluklarını gözetmeksizin tekdüze bir kalınlığa sahip olmalarını sağlayacaktır. Birazcık açı ağaç desteğin sabitliğini artırabilir." + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "Konik desteğin eğim açısı. Dikey 0 derece ve yatay 90 derece. Daha küçük açılar desteğin daha sağlam olmasını sağlar, ancak çok fazla malzeme içerir. Negatif açılar destek tabanının üst kısımdan daha geniş olmasına yol açar." + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "Bir katmandaki her bir poligona tanınan noktaların ortalama yoğunluğu. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda düşük yoğunluk sonuçları çözünürlük azalmasıyla sonuçlanabilir." + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "Her bir hat dilimine tanıtılan rastgele noktalar arasındaki ortalama mesafe. Poligonların asıl noktalarının çıkarıldığını dikkate alın; bunun sonucunda yüksek pürüzsüzlük sonuçları çözünürlük azalmasıyla sonuçlanabilir. Bu değer, Belirsiz Dış Katman Kalınlığından yüksek olmalıdır." + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "Kullanılan malzemenin markası." + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "Yazıcı başlığı hareketinin varsayılan ivmesi." + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "Yazdırma için kullanılan varsayılan sıcaklık. Bu sıcaklık malzemenin “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "Isınan yapı levhası için kullanılan varsayılan sıcaklık. Bu sıcaklık yapı levhasının “temel” sıcaklığı olmalıdır. Diğer tüm yazıcı sıcaklıkları bu değere dayanan ofsetler kullanmalıdır" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "Destek yapısı zeminlerinin yoğunluğu. Daha yüksek bir değer, desteğin modelin üzerine daha iyi yapışmasını sağlar." + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "Destek yapısı çatılarının yoğunluğu. Daha yüksek bir değer daha iyi çıkıntılar ortaya çıkarırken, desteklerin kaldırılmasını zorlaştırır." + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "İkinci köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "Üçüncü köprü yüzey alanı katmanının yoğunluğu. 100’den az değerler, yüzey alanı çizgileri arasındaki boşlukları artıracaktır." + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "Yazdırılabilir alan derinliği (Y yönü)." + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "Özel bir direğin çapı." + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "Ağaç desteğin en ince dallarının çapı. Daha kalın dallar daha dayanıklı olur. Tabana doğru uzanan dallar bundan daha kalın olacaktır." + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "Ağaç desteğinin dallarının ucunun en üstteki çapı." + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "Besleyiciye malzeme veren çarkın çapı." + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "Ağaç desteğinin en geniş dallarının çapı. Daha kalın bir gövde daha sağlamdır; daha ince bir gövde, yapı plakasında daha az yer kaplar." + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "Bir önceki ve bir sonraki katman yüksekliği arasındaki yükseklik farkı." + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "Ütüleme hatları arasında bulunan mesafe." + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "Hareket esnasında atlama yaparken nozül ve daha önce yazdırılmış olan bölümler arasındaki mesafe." + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Radyenin taban katmanı için radye hatları arasındaki mesafe. Geniş aralık bırakılması radyenin yapı levhasından kolayca kaldırılmasını sağlar." + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "Radyenin orta katmanı için radye hatları arasındaki mesafe. Ortadaki aralığın oldukça geniş olması gerekirken, üst radye katmanlarını desteklemek için de yeteri kadar yoğun olması gerekir." + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "Üst radye katmanları için radye hatları arasındaki mesafe. Yüzeyin katı olabilmesi için aralık hat genişliğine eşit olmalıdır." + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "Tek başlangıç kulesi sal katmanı için sal izleri arasındaki mesafe. Geniş aralıklar, salın yapıştırma tablasından kolay çıkarılmasını sağlar." + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "İç içe geçen yapı oluşturmak için modeller arası sınırdan hücre sayısı olarak ölçülen mesafe. Çok az hücre kullanmak zayıf yapışmaya neden olur." + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Modelin en dış kenar hattını olan mesafesi. Daha büyük kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "İç içe geçen yapıların oluşturulmayacağı bir modelin dışından hücre cinsinden ölçülen mesafe." + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "Nozülden gelen ısının filamana aktarıldığı nozül ucuna olan mesafe." + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "Alt yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yüzeyin aşağıdaki katmandaki duvara daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "Yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi komşu katmanlardaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "Üst yüzeylerin dolgunun içine doğru genişleyeceği mesafedir. Daha yüksek değerler, yüzeyin dolgu şekline daha iyi tutunmasını sağladığı gibi yukarıdaki katmandaki duvarların yüzeye daha iyi yapışmasını sağlar. Daha düşük değerler, kullanılan malzemenin miktarından tasarruf yapılmasını sağlar." + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "Başlığı fırçada ileri ve geri hareket ettirme mesafesi." + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "Malzemeden tasarruf etmek için dolgu hatlarının uç noktaları kısaltılır. Bu ayar, bu hatların uç noktalarının çıkıntı açısıdır." + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "Ekstrüzyon sırasında nozülün soğuduğu ilave hız. Aynı değer, ekstrüzyon sırasında ısınırken kaybedilen ısınma hızını göstermek için de kullanılır." + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "Destek dolgusunun ilk katmanı için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "Radyenin ilk katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "Desteğin zemininin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "Destek dolgusu için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "Radyenin orta katmanının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "Desteğin çatıları ve zeminlerinin yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "Desteğin çatısının yazdırılması için kullanılacak ekstrüder dizisi. Çoklu ekstrüzyon sırasında kullanılır." + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "Etek veya kenar baskısı için kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "Etek/kenar/radye yazdırmak için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "Destek için kullanılacak ekstruder Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "Radyenin üst katmanlarının baskısında kullanılacak ekstrüderdir. Çoklu ekstrüzyonlarda kullanılır." + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "Dolgu yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "İç duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "Dış Duvarı yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "Üst ve alt yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "En üstteki yüzeyi yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "Duvarları yazdırmak için kullanılan ekstruder dişli çarkı. Çoklu ekstrüzyon işlemi için kullanılır." + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "Radyenin taban katmanı için fan hızı." + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "Radyenin orta katmanı için fan hızı." + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Radye için fan hızı." + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "Üst radye katmanları için fan hızı." + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "Parlaklık değerlerinin, yazdırma dolgusunun ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "Parlaklık değerlerinin, desteğin ilgili konumundaki minimum yoğunluğu belirlediği görüntünün dosya konumu." + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "Yapı levhasına daha iyi yapışma sağlamak ve yazdırmanın genel başarı oranını artırmak için ilk birkaç katman modelin kalan kısmından daha yavaş yazdırılır. Bu hız katmanlar üzerinde giderek artar." + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "Son radye katmanı ve modelin ilk katmanı arasındaki boşluk. Radye katmanı ve model arasındaki yapışmayı azaltmak için sadece ilk katman yükseltilir. Radyeyi sıyırmayı kolaylaştırır." + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "Yazdırılabilir alan yüksekliği (Z yönü)." + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "Kalıp yazdıracak modelinizin yatay kısımlarının üzerindeki yükseklik." + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Fanların olağan fan hızında döndüğü yükseklik. Alttaki katmanlarda fan hızı, İlk Fan Hızından Olağan Fan Hızına kadar kademeli olarak artar." + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "Nozül ucu ve portal sistemi (X ve Y aksları) arasındaki yükseklik farkı." + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "Nozül ucu ve yazıcı başlığının en alt parçası arasındaki yükseklik farkı." + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "Ekstruder değişiminden sonra Z Sıçraması yapılırken oluşan yükseklik farkı." + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "Z Sıçraması yapılırken oluşan yükseklik farkı." + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "Her katmanın milimetre cinsinden yüksekliği. Daha yüksek değerler düşük çözünürlükte hızlı baskılar üretir; daha düşük değerler ise yüksek çözünürlükte daha yavaş baskılar üretir." + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "Yoğunluğun yarısına inmeden önce verilen bir yoğunluktaki dolgunun yüksekliği." + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "Yoğunluğun yarısına inmeden önce belirli bir yoğunluktaki destek dolgusunun yüksekliği." + +msgctxt "interlocking_beam_layer_count description" +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 "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." + +msgctxt "interlocking_orientation description" +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 "İç içe geçen yapı kirişlerinin katman sayısı olarak ölçülen yüksekliği. Daha az katman daha güçlüdür, ama kusurlara daha yatkındır." + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "İlk katmanın milimetre cinsinden yüksekliği. Kalın ilk katmanlar yapı levhasına yapışmayı kolaylaştırır." + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Prime tower tabanının yüksekliği. Bu değeri artırmak, taban daha geniş olacağı için daha sağlam bir prime tower oluşturur. Eğer bu ayar çok düşükse, prime tower sağlam bir tabana sahip olmayacaktır." + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının basamak yüksekliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir. Merdiven benzeri davranışı kapatmak için sıfır değerine ayarlayın." + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "Baskının ilk katmanının uçtaki ilk hattı ile ana hattı arasındaki yatay mesafe. Küçük bir boşluk baskının uç kısmının kolayca çıkarılmasını sağlamasının yanı sıra ısı bakımından da avantajlıdır." + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "Baskının eteği ve ilk katmanı arasındaki yatay mesafe." +"Minimum mesafedir. Bu mesafeden çok sayıda etek hattı dışarı doğru uzanır." + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "Dolgu hatları, baskı süresinden tasarruf etmek için düzleştirilir. Bu, dolgu hattının uzunluğu boyunca izin verilen maksimum çıkıntı açısıdır." + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "Dolgu şekli X ekseni boyunca bu mesafe kadar kaydırılır." + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "Dolgu şekli Y ekseni boyunca bu mesafe kadar kaydırılır." + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "Nozül iç çapı. Standart olmayan nozül boyutu kullanırken bu ayarı değiştirin." + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "Taban radye katmanının yazdırıldığı ivmesi değişimi." + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "Orta radye katmanının yazdırıldığı salınım." + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "Radyenin yazdırıldığı salınım." + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "Üst radye katmanların yazdırıldığı salınım." + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan alt yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde alt/üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "Kaldırılacak olan üst yüzey alanlarının en büyük genişliğidir. Bu değerden daha küçük olan her yüzey alanı kaybolacaktır. Bu, modeldeki eğimli yüzeylerde üst yüzeyin yazdırılması için harcanan süreyi ve malzemeyi sınırlamaya yardımcı olabilir." + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "Fanların olağan fan hızında döndüğü katman Yüksekteki olağan fan hızı ayarlanırsa bu değer hesaplanır ve tam sayıya yuvarlanır." + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "Sınır değerini olağan ve maksimum fan hızı arasında ayarlayan katman süresi. Bundan daha kısa sürede yazdıran katmanlar olağan fan hızı kullanır. Daha hızlı katmanlar için, fan hızı maksimum fan hızına doğru kademeli olarak artar." + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "Geri çekme hareketi sırasında geri çekilen malzemenin uzunluğu." + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "Prime tower tabanının eğiminde kullanılan büyüklük faktörü. Bu değeri artırırsanız, taban daha ince hale gelir. Azaltırsanız, taban daha kalın olur." + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "Yazıcıya takılı yapı levhasının malzemesi." + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "Taban katmanı yüksekliğine göre izin verilen azami yükseklik." + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "Sızdırma kalkanında bir bölümün sahip olacağı en büyük açı. Dikey 0 derece ve yatay 90 derece. Daha küçük bir açı sızdırma kalkanının daha sorunsuz olmasını sağlarken daha fazla malzeme kullanılmasına yol açar." + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "Yazdırılabilir yapıldıktan sonra çıkıntıların en büyük açısı. 0° değerindeyken tüm modeller yapı levhasına bağlı bir model parçasıyla değiştirilirken 90° modeli hiçbir şekilde değiştirmez." + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "Dalların modelin etrafında büyürken aldıkları maksimum açı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Daha fazla erişim için daha yüksek bir açı kullanın." + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "Çıkıntıyı Yazdırılabilir Yap işlemiyle çıkarılmadan önce modelin tabanındaki deliğin maksimum alanı. Bu değerden küçük delikler korunacaktır. 0 mm²'lik değer modellerin tabanındaki tüm delikleri dolduracaktır." + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "Maksimum Çözünürlük ayarı için çözünürlük azaltıldığında izin verilen maksimum sapma. Bu değeri artırırsanız baskının doğruluğu azalacak ancak g kodu daha küçük olacaktır. Maksimum Sapma, Maksimum Çözünürlük için sınırdır, dolayısıyla iki değer çelişirse Maksimum Sapma her zaman doğru kabul edilir." + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "X/Y yönlerinde destek yapıları arasındaki maksimum mesafedir. Ayrı yapılar birbirlerine bu değerden daha yakınsa yapılar birleşerek tek bir yapı haline gelir." + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "Akış hızındaki değişiklikleri telafi etmek için filamentin hareket ettirileceği mm cinsinden maksimum mesafe." + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "Ara noktaları düz bir hattan çıkarırken izin verilen maksimum ekstrüzyon alanı sapmasıdır. Bir ara nokta, uzun düz bir hatta genişlik değiştiren nokta olarak hizmet edebilir. Bu nedenle, ara noktanın çıkarılması hattın tek boyutlu bir genişliğe sahip olmasına ve dolayısıyla bir miktar ekstrüzyon alanı kaybetmesine (veya kazanmasına) neden olur. Bu değeri artırırsanız daha fazla ara genişlik değiştiren noktaların kaldırılmasına izin verileceğinden, düz paralel duvarlar arasında az (veya çok) ekstrüzyon görebilirsiniz. Baskının doğruluğu azalacak fakat g kodu daha küçük olacaktır." + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "İlk katmanın yazdırıldığı maksimum anlık yazdırma hızı değişimi." + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "Yazıcı başlığının maksimum anlık hız değişimi." + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "Ütüleme sırasında oluşan maksimum anlık hız değişimi." + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "Tüm iç duvarların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "Dolgunun yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "Desteğin zeminlerinin yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "Desteğin dolgusunun yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "En dıştaki duvarların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "İlk direğin yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "Desteğin çatıları ve zeminlerinin yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "Desteğin çatılarının yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "Etek ve kenarların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "Destek yapısının yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "Üst Yüzeyin İç Duvarlarının Basıldığı Anki Maksimum Hız Değişikliği." + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "Duvarların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "Hareket hamlelerinin yapıldığı maksimum anlık hız değişimi." + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "Havadan basılabilecek dalların maksimum uzunluğu." + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X yönü motoru için maksimum hız." + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y yönü motoru için maksimum hız." + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z yönü motoru için maksimum hız." + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "Filamanın maksimum hızı." + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "Modelin üzerinde sabit duran desteğin merdiven benzeri alt kısmının maksimum basamak genişliği. Daha düşük bir değer desteğin hareket ettirilmesini zorlaştırırken, daha yüksek bir değer kararsız destek yapılarına yol açabilir." + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "Kalıbın dış tarafı ile modelin dış tarafı arasındaki minimum mesafedir." + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "Yazıcı başlığının minimum hareket hızı." + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "Yazdırmanın başlayacağı Yazdırma Sıcaklığına ulaşırken görülen minimum sıcaklık." + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "Nozül soğumadan önce ekstruderin etkin olmaması gerektiği minimum süre. Ekstruder sadece bu süreden daha uzun bir süre kullanılmadığında bekleme sıcaklığına inebilecektir." + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "Dolum eklenen dahili çıkıntıların minimum açısı. 0° değerde nesneler tamamen doldurulur, 90°’de dolgu yapılmaz." + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "Desteğin eklendiği çıkıntıların minimum açısı. 0°’de tüm çıkıntılar desteklenirken 90°‘de destek sağlanmaz." + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "Geri çekme işleminin yapılması için gerekli olan minimum hareket mesafesi. Küçük bir alanda daha az geri çekme işlemi yapılmasına yardımcı olur." + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "Etek veya kenarın minimum uzunluğu. Tüm etek veya kenar hatları birlikte bu uzunluğa ulaşmazsa minimum uzunluğa ulaşılana kadar daha fazla etek veya kenar hattı eklenecektir. Not: Hat sayısı 0’a ayarlanırsa, bu yok sayılır." + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "Orta hat boşluğunu dolduran çok hatlı duvarlar için minimum hat genişliğidir. Bu ayar, iki duvar hattı baskısının hangi model kalınlığında iki dış duvar ve tek bir merkezi orta duvar baskısına geçirileceğini belirler. Daha yüksek Minimum Tek Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum çift duvar hattı genişliği oluşturur. Maksimum tek duvar hattı genişliği, 2 * Minimum Çift Duvar Hattı Genişliği formülüyle hesaplanır." + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "Normal çokgen duvarlar için minimum hat genişliğidir. Bu ayar, tek bir ince duvar hattının basılmasından iki duvar hattına hangi model kalınlığında geçileceğini belirler. Daha yüksek Minimum Çift Duvar Hattı Genişliği değeri belirlenmesi daha yüksek maksimum tek duvar hattı genişliği oluşmasına yol açar. Maksimum çift duvar hattı genişliği, Dış Duvar Hattı Genişliği + 0,5 * Minimum Tek Duvar Hattı Genişliği formülüyle hesaplanır." + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "Düşük katman süresi nedeniyle yavaşlamaya karşın minimum yazdırma hızı. Yazıcı çok yavaşladığında nozüldeki basınç çok düşük olacak ve kötü yazdırma kalitesiyle sonuçlanacaktır." + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "Bir çizginin dilimlemeden sonraki minimum boyutu. Bu değer artırıldıktan sonra örgünün çözünürlüğü düşer. Bu, yazıcının g-kodunu işlemek için gereken hıza yetişmesine olanak tanır ve örtünün zaten işlenemeyecek ayrıntılarını kaldırarak dilimleme hızını artırır." + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "Bir hareket çizgisinin dilimlemeden sonraki minimum boyutu. Bunu artırmanız durumunda, hareketlerde köşelerin yumuşaklığı azalır. Bu seçenek, yazıcının g-code işlemek için gereken hızı yakalamasına olanak tanıyabilir ancak model kaçınmasının doğruluğunu azaltabilir." + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "Basamaklı alanın etkili olması için gereken minimum eğimdir. Düşük değerler, derinliği daha düşük olan eğimlerde desteğin kaldırılmasını kolaylaştırırken, gerçekten düşük değerler ise modelin diğer parçalarında tersine sonuçlar doğurabilir." + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Bir katmanda harcanan minimum süre. Bu süre yazıcıyı yavaşlamaya ve burada en azından bir katmanda ayarlanan süreyi kullanmaya zorlar. Bir sonraki katman yazdırılmadan önce yazdırılan materyalin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılır ve Minimum Hız değeri başka bir şekilde ihlal edilmezse katmanlar yine de minimal katman süresinden daha kısa sürebilir." + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "Yeterince malzeme temizlemek için ilk direğin her bir katmanı için minimum hacim." + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "Modele bağlanması gereken dalın çapının, yapı levhasına erişebilecek dallarla birleşerek en fazla ne kadar artabileceği. Bunu artırmak baskı süresini azaltır, ancak modele dayanan destek alanını artırır" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "3B yazıcı modelinin adı." + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "Ekstruder dişli çarkı için nozül kimliği, “AA 0.4” ve “BB 0.8” gibi." + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "Nozül hareket esnasında daha önce yazdırılmış bölümleri atlar. Bu seçenek sadece tarama etkinleştirildiğinde kullanılabilir." + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "Nozül hareket ederken önceden yazdırılmış destekleri atlar. Bu seçenek yalnızca tarama etkin olduğunda kullanılabilir." + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Alt katman sayısı. Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "Radyenin taban katmanındaki doğrusal desen etrafına basılacak kontur sayısıdır." + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "Raftın orta katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "Raftın üst katmanlarındaki doğrusal desenin etrafına yazdırılacak kontur sayısı." + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "Raft doğrusal modelinin etrafına yazdırılacak konturların sayısı." + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "Kaplamanın kenarlarını destekleyen dolgu katmanının kalınlığı." + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "Yapı plakasından itibaren ilk alt katman sayısı Bu değer, alt kalınlığıyla hesaplandığında tam sayıya yuvarlanır." + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Radyenin tabanı ve yüzeyi arasındaki katman sayısıdır. Bunlar radyenin temel kalınlığını oluşturur. Bu değerin artırılması daha kalın ve sağlam bir radye oluşturur." + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "Bir kenar için kullanılan hatların sayısı Daha fazla kenar hattı yapı levhasına yapışmayı artırmanın yanı sıra etkin yazdırma alanını da azaltır." + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "Bir destek kenarı için kullanılan hatların sayısı. Daha fazla kenar hattı, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "İkinci radye katmanındaki üst katmanların sayısı. Bunlar modelin üstünde durduğu tamamı dolgulu katmanlardır. İki katman bir katmandan daha pürüzsüz bir üst yüzey oluşturur." + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "Üst katman sayısı. Bu değer, üst kalınlığıyla hesaplandığında tam sayıya yuvarlanır." + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "En üstteki yüzey katmanlarının sayısı. Yüksek kalitede üst yüzeyler oluşturmak için genellikle tek bir üst yüzey katmanı yeterlidir." + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek dolgusunun çevreleneceği duvar sayısı. Bir duvarın eklenmesi destek yazdırmasını daha güvenilir kılabilir ve çıkıntıları daha iyi destekleyebilir. Ancak yazdırma süresini ve kullanılan malzemeyi artırır." + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüz zeminini çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüz çatısını çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "Destek arayüzünü çevreleyecek duvar sayısı. Duvar eklemek, destek baskıyı daha güvenilir hale getirebilir ve çıkıntıları daha iyi destekleyebilir, ama baskı süresini ve kullanılan malzemeyi artırır." + +msgctxt "wall_distribution_count description" +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 "Varyasyonun yayılması gereken, merkezden itibaren sayılan duvar sayısı. Düşük değerler olması dış duvarların genişliğinin değişmeyeceğini gösterir." + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "Duvar sayısı. Bu değer, duvar kalınlığıyla hesaplandığında tam sayıya yuvarlanır." + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "Nozül ucunun dış çapı." + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "Baskının dolgu malzemesinin şeklidir. Hat ve zikzak dolgu, farklı katmanlar üzerinde yön değiştirerek malzeme maliyetini azaltır. Izgara, üçgen, üçlü altıgen, kübik, sekizlik, çeyrek kübik, çapraz ve eşmerkezli şekiller her katmana tam olarak basılır. Gyroid, kübik, çeyrek kübik ve sekizlik dolgu, her yönde daha eşit bir kuvvet dağılımı sağlamak için her katmanda değişir. Yıldırım dolgu, objenin yalnızca tavanını destekleyerek dolgu miktarını en aza indirmeye çalışır." + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "Yazdırma destek yapılarının şekli. Bulunan farklı seçenekler sağlam veya kolay çıkarılabilir destek oluşturabilir." + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "En üst yüzeyin şekli." + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "Üst/alt katmanların şekli." + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "Yazdırmanın altında ilk katmanda yer alacak şekil." + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "Üst yüzeyleri ütülemek için kullanılacak model." + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "Destek zeminlerinin yazdırıldığı desen." + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "Model ile birlikte destek arayüzünün yazdırıldığı şekil." + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "Destek çatısının yazdırıldığı desen." + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "Bir katmandaki her kısmın basılmaya başlanacağı yere yakın konum." + +msgctxt "support_tree_angle_slow description" +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 "Modelden kaçınmak zorunda olmadıklarında dalların tercih edilen açısı. Daha dikey ve daha dengeli hale getirmek için daha düşük bir açı kullanın. Dalların daha hızlı birleşmesi için daha yüksek bir açı kullanın." + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "Destek yapılarının tercih edilen yerleşimi. Yapılar tercih edilen yere yerleştirilemiyorsa başka bir yere yerleştirilecektir. Bu, onları modelin üzerine yerleştirmek anlamına da gelebilir." + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "İlk katman için maksimum anlık yazdırma hızı değişimi." + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "Yazdırılamayan alanların haricinde yapı levhasının şekli." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "Baskı kafasının şekli. Bunlar baskı kafasının konumuna göre koordinatlardır ve genellikle ilk ekstrüderin konumunu gösterir. Baskı kafasının sol ve önündeki boyutlar negatif koordinatlar olmalıdır." + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "Şeklin kendisine temas ettiği yüksekliklerde, çapraz 3D şekilde dört yönlü kesişme yerlerinde bulunan ceplerin boyutudur." + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "Taramaya izin verilmeden önce ekstrüzyon yolunda olması gereken en küçük hacim. Daha küçük ekstrüzyon yolları için bowden tüpünde daha az basınç geliştirilir ve bu nedenle taranan hacim doğrusal olarak ölçeklendirilir. Bu değer her zaman Tarama Değerinden daha büyüktür." + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Ortalama nozül soğumasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "Ortalama nozül ısınmasının normal yazdırma sıcaklıkları ve bekleme sıcaklığı penceresinin üzerinde olduğu hız (°C/sn)." + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "Tüm iç duvarların yazdırıldığı hız. İç duvarları dış duvarlardan daha hızlı yazdırmak yazdırma süresini azaltacaktır. Bu ayarı dış duvar hızı ve dolgu hızı arasında yapmak faydalı olacaktır." + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "Köprü yüzey alanı bölgelerinin yazdırıldığı hız." + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "Dolgunun gerçekleştiği hız." + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "Yazdırmanın gerçekleştiği hız." + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Radyenin taban katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "Köprü duvarlarının yazdırıldığı hız." + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "Fanların, yazdırma işleminin başındaki dönme hızı. Sonraki katmanlarda fan hızı, Yüksekteki Olağan Fan Hızına karşılık gelen katmana kadar kademeli olarak artar." + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "Katmanların sınıra ulaşmadan önceki dönüş hızı Katman sınır değerinden daha hızlı yazdırdığında fan hızı giderek maksimum fan hızına yönelir." + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "Katmanların minimum katman süresindeki dönüş hızı. Sınır değerine ulaşıldığında, fan hızı olağan ve maksimum fan hızı arasında kademeli artış gösterir." + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "Filamanın geri çekme hareketi sırasında astarlandığı hız." + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "Filamanın sürme geri çekme hareketi sırasında astarlandığı hız." + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "Nozül değişiminin çekmesi sonucunda filamanın geriye doğru itildiği hız." + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "Filamanın geri çekildiği ve geri çekme hareketi sırasında astarlandığı hız." + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "Filamanın geri çekildiği ve sürme geri çekme hareketi sırasında astarlandığı hız." + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "Nozül değişiminin çekmesi sırasında filamanın geri çekildiği hız." + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "Filamanın geri çekme hareketi sırasında geri çekildiği hız." + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "Filamanın sürme geri çekme hareketi sırasında geri çekildiği hız." + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "Filamanın geri çekildiği hız. Daha yüksek bir geri çekme hızı daha çok işe yarar, fakat çok yüksek geri çekme hızı filaman aşınmasına neden olabilir." + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "Destek zemininin yazdırılma hızı. Daha düşük hızlarda yazdırma, desteğin modelin üzerine yapışmasını iyileştirebilir." + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "Dolgu desteğinin yazdırıldığı hız. Dolguyu daha düşük hızlarda yazdırmak sağlamlığı artırır." + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "Orta radye katmanının yazdırıldığı hız. Nozülden gelen malzemenin hacmi çok büyük olduğu için bu kısım yavaş yazdırılmalıdır." + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "En dış duvarların yazdırıldığı hız. Dış duvarı düşük hızda yazdırmak son yüzey kalitesini artırır. Öte yandan, iç duvar hızı ve dış duvar hızı arasındaki farkın fazla olması kaliteyi olumsuz etkileyecektir." + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "İlk direğin yazdırıldığı hız. Farklı filamanlar arasındaki yapışma standardın altında olduğunda, ilk direği daha yavaş yazdırmak dayanıklılığı artırabilir." + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "Yazdırma soğutma fanlarının dönüş hızı." + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "Radyenin yazdırıldığı hız." + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Destek çatıları ve zeminlerinin yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "Destek çatısının yazdırılma hızı. Daha düşük hızlarda yazdırma, askıda kalan kısımların kalitesini iyileştirebilir." + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "Etek ve kenarın yazdırıldığı hız. Bu işlem normalde ilk katman hızında yapılır, ama etek ve kenarı farklı hızlarda yazdırmak isteyebilirsiniz." + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "Destek yapısının yazdırıldığı hız. Yüksek hızlardaki yazdırma desteği yazdırma süresini büyük oranda azaltabilir. Destek yapısının yüzey kalitesi, yazdırma işleminden sonra çıkartıldığı için önemli değildir." + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "Radye katmanlarının yazdırıldığı hız. Nozülün bitişik yüzey hatlarını yavaşça düzeltebilmesi için, bu kısımlar biraz daha yavaş yazdırılmalıdır." + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "Üst Yüzey İç Duvarların Hangi Hızda Basıldığı." + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "Üst Yüzeyin En Dış Duvarlarının Hangi Hızda Basıldığı." + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z Atlamaları için yapılan dikey Z hareketinin gerçekleştirileceği hızdır. Yapı plakasının veya makine tezgahının hareket etmesi daha zor olduğundan genelde baskı hızından daha düşüktür." + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "Duvarların yazdırıldığı hız." + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "Üst yüzeyi geçmek için gereken süre." + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "Sorunsuz kopması için filamentin geri çekilmesi gereken hızdır." + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "Üst yüzey katmanların yazdırıldığı hız." + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "Üst/alt katmanların yazdırıldığı hız." + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "Hareket hamlelerinin hızı." + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "Ekstrüzyon yolu hızına göre tarama sırasındaki hareket hızı. Tarama hareketi sırasında bowden tüpündeki basınç düştüğü için değerin %100’ün altında olması öneriliyor." + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "İlk katman için hız. Yapı plakasında yapışmayı iyileştirmek için düşük bir değer tavsiye edilir. Yapı plakasının kenar ve radye gibi yapışma yapılarını etkilemez." + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "İlk katmanın yazdırılması için belirlenen hız. Yapı tahtasına yapışmayı artırmak için daha düşük bir değer önerilmektedir." + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "İlk katmandaki hareket hamlelerinin hızı. Daha önce yazdırılan bölümlerin yapı levhasından ayrılmasını önlemek için daha düşük bir değer kullanılması önerilir. Bu ayar değeri, Hareket Hızı ve Yazdırma Hızı arasındaki orana göre otomatik olarak hesaplanabilir." + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "Sorunsuz kopması için filament koptuğundaki sıcaklık değeridir." + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "Baskı yapılacak ortamın sıcaklığı. Bu değer 0 ise yapı hacminin sıcaklığı ayarlanmaz." + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "Yazdırma için başka bir nozül kullanılırken nozülün sıcaklığı." + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "Yazdırma bitmeden hemen önce soğuma işleminin başladığı sıcaklık." + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "İlk katmanın basımında kullanılan sıcaklık." + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "Yazdırma için kullanılan sıcaklık." + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "İlk katmanda ısıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ilk katman boyunca ısıtılmaz." + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "Isıtıcı yapı plakası için kullanılan sıcaklık. Bu değer 0 olduğunda yapı plakası ısıtılmaz." + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "Malzemeyi temizlemek için kullanılan sıcaklık; kabaca mümkün olan en yüksek baskı sıcaklığına eşit olmalıdır." + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "Yazdırmadaki alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer alt katmanların sayısını belirtir." + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "Kaplamanın kenarlarını destekleyen ekstra dolgunun kalınlığı." + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "Alt veya üst kısımdaki modele değdiği yerde destek arayüzü kalınlığı." + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "Destek zeminlerinin kalınlığı. Desteğin üzerinde durduğu modelin üst kısımlarına yazdırılan yoğun katmanların sayısını kontrol eder." + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "Destek tavanlarının kalınlığı. Modelin bulunduğu desteğin üst kısmındaki yoğun katmanların sayısını kontrol eder." + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "Yazdırmadaki üst katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst katmanların sayısını belirtir." + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "Yazdırmadaki üst/alt katmanların kalınlığı. Katman yüksekliğiyle ayrılan bu değer üst/alt katmanların sayısını belirtir." + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "Yatay yönde duvar kalınlığı. Bu değer duvar hattı genişliğiyle bölündüğünde duvar sayısını belirler." + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Dolgu malzemesinin her bir katmanının kalınlığı Bu değer her zaman katman yüksekliğinin katı olmalıdır, aksi takdirde yuvarlanır." + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "Her katmandaki destek dolgusu malzemesinin kalınlığı. Bu değer her zaman katman yüksekliğinin bir katı olmalıdır, aksi takdirde değer yuvarlanır." + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "Oluşturulacak g-code türü." + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "Kullanılan malzemenin türü." + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "Aksi takdirde hacim sızdırılır. Bu değer, genellikle nozül çapının küpüne yakındır." + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "Yazdırılabilir alan genişliği (X yönü)." + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "Desteğin altına yazdırılacak kenarın genişliği. Daha geniş kenar, ekstra malzeme karşılığında baskı tablasına daha fazla alanın yapışacağı anlamına gelir." + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "İç içe geçen yapı kirişlerinin genişliği." + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Prime tower brim/tabanının genişliği. Daha büyük bir taban yapışmayı artırır, ancak etkili baskı alanını da azaltır." + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "İlk Direk Genişliği." + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "Titremenin yapılacağı genişlik. İç duvarlar değiştirilmediği için, bunun dış duvar genişliğinin altında tutulması öneriliyor." + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "Maksimum geri çekme sayısının uygulandığı pencere. Bu değer, geri çekme mesafesi ile hemen hemen aynıdır, bu şekilde geri çekmenin aynı malzeme yolundan geçme sayısı etkin olarak sınırlandırılır." + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "İlk direk konumunun x koordinatı." + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "İlk direk konumunun y koordinatı." + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "Bunlar sahnedeki mevcut destek örgüleridir. Bu ayar Cura tarafından kontrol edilir." + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "Bu, ekstruderin bir köprü duvarı başlamadan hemen önce taraması gereken mesafeyi kontrol eder. Köprü başlamadan önce tarama, nozüldeki basıncı azaltabilir ve daha düz bir köprü üretebilir." + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft tabanı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft orta kısmı taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, radye ana hattında yer alan iç köşelerin ne kadar yuvarlanacağını kontrol eder. İç köşeler, burada belirtilen değere eşit yarıçapa sahip yarım daire şeklinde yuvarlanır. Ayrıca bu ayar, söz konusu daireden daha küçük olan radye ana hattındaki delikleri ortadan kaldırır." + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "Bu ayar, raft üstü taslağındaki iç köşelerin ne kadarının yuvarlak olacağını kontrol eder. İç köşeler, yarıçapı burada verilen değere eşit olacak şekilde yarım daire şeklinde yuvarlanır. Bu ayar aynı zamanda raft dış hattındaki böyle bir daireden daha küçük olan delikleri de kaldırır." + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "Bu ayar, düşük ekstrüzyon mesafesi penceresinde oluşan ekstrüzyon sayısını sınırlandırır. Bu penceredeki geri çekmeler yok sayılacaktır. Filamanı düzleştirebildiği ve aşındırma sorunlarına yol açabileceği için aynı filaman parçası üzerinde tekrar tekrar geri çekme yapılmasını önler." + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "Modelin etrafında (sıcak) hava ve kalkanlara dışarıdaki hava akımına karşı set çeken bir duvar oluşturur. Özellikle kolayca eğrilebilen malzemeler için kullanışlıdır." + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "Uç Çapı" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre XY yönünde (yatay olarak) ölçeklenecektir." + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre Z yönünde (dikey olarak) ölçeklenecektir." + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "Malzemenin soğudukça büzülmesini telafi etmek için model bu faktöre göre ölçeklenecektir." + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "Üst Katmanlar" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "Üst Yüzey Genişleme Mesafesi" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "Üst Yüzey Kaldırma Genişliği" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "Üst Yüzey İç Duvar Hızlanması" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "Üst Yüzeyin En Dış Duvar Darbesi" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "Üst Yüzey İç Duvar Hızı" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "Üst Yüzey İç Duvar Akışı" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "Üst Yüzey Dış Duvar Hızlanması" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "Üst Yüzeyin En Dış Duvar Akışı" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "Üst Yüzeyin İç Duvar Darbesi" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "Üst Yüzeyin En Dış Duvar Hızı" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "Üst Yüzey İvmesi" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "Üst Yüzey Ekstruderi" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "Üst Yüzeyin Dış Katman Akışı" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "Üst Yüzey İvmesi Değişimi" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "Üst Yüzey Katmanları" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "Üst Yüzey Hat Yönleri" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "Üst Yüzey Hat Genişliği" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "Üst Yüzey Şekli" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "Üst Yüzey Hızı" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "Üst Kalınlık" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "Nesnenizin bu ayardan daha geniş açıya sahip üst ve/veya alt zeminlerinin yüzeyleri genişletilmez. Böylece model yüzeyinin neredeyse dik açıya sahip olduğu durumlarda ortaya çıkan dar yüzey alanlarının genişletilmesi önlenmiş olur. 0°’lik bir açı yataydır ve yüzey alanının genişlemesine neden olmaz; 90°’lik bir açı dikeydir ve tüm yüzey alanlarının genişlemesine neden olur." + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "Üst / Alt" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "Üst / Alt" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "Üst/Alt İvme" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "Üst/Alt Ekstruderi" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "Üst/Alt Akış" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "Üst/Alt Salınımı" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "Üst/Alt Çizgi Yönleri" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "Üst/Alt Hat Genişliği" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "Üst/Alt Şekil" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "Üst/Alt Hız" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "Üst/Alt Kalınlık" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "Yapı Levhasına Dokunma" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "Direk Çapı" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "Direk Tavanı Açısı" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "Modeli dosyadan indirirken modele uygulanacak olan dönüşüm matrisi." -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "Destek yapılarının yerleştirilmesini ayarlar. Yerleştirme, temas eden yapı levhasına veya her bölüme ayarlanabilir. Her bölüme ayarlandığında, destek yapıları da modelde yazdırılacaktır." +msgctxt "travel label" +msgid "Travel" +msgstr "Hareket" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "Hareket İvmesi" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "Hareket Atlama Mesafesi" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "Hareket Salınımı" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "Hareket Hızı" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "Modeli sadece bir yüzey, gevşek yüzeyli hacim veya hacimler şeklinde işleyin. Normal yazdırma modu sadece kapalı hacimleri yazdırır. “Yüzey”, dolgusu ve üst/alt dış katmanı olmayan birleşim yüzeyini takip eden tek bir duvar yazdırır. “Her ikisi” kapalı hacimleri normal şekilde ve kalan poligonları yüzey şeklinde yazdırır." + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "Ağaç" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "Üçlü Altıgen" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "Üçgenler" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "Gövde Çapı" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "Bağlantı Çakışma Hacimleri" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "Bundan daha kısa desteklenmeyen duvarlar normal duvar ayarları kullanılarak yazdırılacaktır. Daha uzun desteklenmeyen duvarlar köprü duvarı ayarları kullanılarak yazdırılacaktır." + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "Uyarlanabilir Katmanların Kullanımı" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "Direkleri kullan" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "Hareket hamleleri için ayrı bir ivme oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "Hareket hamleleri için ayrı bir salınım oranı kullanın. Hareket hamleleri devre dışı bırakılırsa varış noktasında yazdırılan hattın ivme değerini kullanır." + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "Mutlak ekstrüzyon yerine bağıl ekstrüzyon uygulayın. Bağıl E-adımlarının uygulanması, g-code’un sonradan işlenmesini kolaylaştırır. Ancak bu, tüm yazıcılar tarafından desteklenmemektedir ve mutlak E-adımları ile karşılaştırıldığında birikmiş malzemenin miktarında hafif farklılıklar yaratabilir. Bu ayara bakılmaksızın, herhangi bir g-code komut dosyası çıkartılmadan önce ekstrüzyon modu her zaman mutlak değere ayarlı olacaktır." + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "Küçük çıkıntı alanlarını desteklemek için özel direkler kullanın. Bu direkler desteklediğimiz bölgeden daha büyük çaptadır. Çıkıntıyı yaklaştırırsanız direklerin çapı azalır ve bir tavan oluşturur." + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "Çakıştığı diğer dolgu ağını düzeltmek için bu ağı kullanın. Bu birleşim için olan bölgelerle diğer birleşimlerin dolgu bölgelerini değiştirir. Bu birleşim için Üst/Alt Dış Katmanı değil sadece bir Duvarı yazdırmak önerilir." + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "Destek alanlarını belirlemek için bu örgüyü kullanın. Bu örgü, destek yapısını oluşturmak için kullanılabilir." + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "Bu bileşimi, modelin hiçbir parçasının çıkıntı olarak algılanmadığı durumları belirlemek için kullanın. Bu, istenmeyen destek yapısını kaldırmak için kullanılabilir." + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "Kullanıcı Tarafından Belirtilen" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "Dikey Ölçekleme Faktörü Büzülme Telafisi" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "Dilimlenmiş katmanlardaki dikey tolerans. Bir katmanın konturları her katmanın kalınlığının ortasından enine kesitler (Ortalayan) alınarak normal şekilde oluşturulur. Alternatif olarak, her katman, katmanın tüm kalınlığı boyunca hacmin iç kısmına düşen alanlara (Dışlayan) sahip olabilir; veya bir katman, katman içinde herhangi bir yere düşen alanlara (İçeren) sahip olabilir. İçeren seçeneğinde katmandaki çoğu ayrıntı korunur, Dışlayan seçeneği en iyi uyum içindir ve Ortalayan seçeneği ise katmanı orijinal yüzeyin en yakınında tutar." + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "Yapı Levhasının Isınmasını Bekle" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "Nozülün Isınmasını Bekle" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "Duvar İvmesi" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "Duvar Dağılım Sayısı" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "Duvar Ekstruderi" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "Duvar Akışı" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "Duvar Salınımı" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "Duvar Hattı Sayısı" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "Duvar Hattı Genişliği" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "Duvar Sıralaması" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "Duvar Hızı" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "Duvar Kalınlığı" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "Duvar Geçişi Uzunluğu" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "Duvar Geçişi Filtresi Mesafesi" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "Duvar Geçişi Filtresi Kenar Boşluğu" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "Duvar Geçişi Eşik Açısı" + +msgctxt "shell label" +msgid "Walls" +msgstr "Duvarlar" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "Bu açıdan daha yüksek çıkıntıya sahip duvarlar çıkıntılı duvar ayarları kullanılarak basılacaktır. Değer 90 ise hiçbir duvarda çıkıntı olmadığı varsayılacaktır. Destek ile desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir." + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "Bu ayar etkinleştirildiğinde, düzgün hareket planlayıcıları olan yazıcılar için takım yolları düzeltilir. Genel takım yolu yönünden sapan küçük hareketler, akışkan hareketlerini iyileştirmek için düzeltilir." + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "Aktifleştirildiğinde, dolgu hatlarının baskı düzeni, hareketi azaltmak için optimize edilir. Elde edilen hareket zamanındaki azalma dilimlenen modele, dolgu şekline ve yoğunluğuna vs. bağlıdır. Birçok ufak dolgu bölgesine sahip bazı modeller için modelin dilimlenme süresi önemli ölçüde artabilir." + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "Bu ayar etkinleştirildiğinde, yazıcı soğutma fanının hızı desteğin hemen üzerindeki yüzey bölgeleri için değiştirilir." + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "Etkin olduğunda, z dikişi koordinatları her parçanın merkezine göre hizalıdır. Devre dışı olduğunda, koordinatlar yapı levhası üzerinde mutlak bir pozisyonu belirtir." + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "Sıfırdan büyük olduğunda, bu mesafeden daha uzun tarama mesafelerinde geri çekme yapılır. Sıfıra ayarlandığında, bir maksimum belirlenmez ve tarama hareketlerinde geri çekme kullanılmaz." + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "Sıfırdan büyük olduğunda, Delik Yatay Büyüme küçük deliklere kademeli olarak uygulanır (küçük delikler daha fazla büyütülür). Sıfır olarak ayarlandığında Delik Yatay Büyüme tüm deliklere uygulanacaktır. Delik Yatay Büyüme Maksimum Çapı’ndan daha büyük delikler genişletilmez." + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "Delik Yatay Genişlemesi, sıfırdan büyük olmak koşuluyla, her katmandaki tüm deliklere uygulanan ofset miktarıdır. Pozitif değerlerde delikler büyür, negatif değerlerde ise küçülür. Bu ayar etkinleştirildiğinde, Delik Yatay Genişleme Maksimum Çapı ile daha detaylı bir ayarlama yapılabilir." + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "Köprü yüzey alanı bölgeleri yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "Köprü duvarları yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "İkinci köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "Üçüncü köprü yüzey alanı katmanı yazdırılırken, ekstrude edilen malzeme miktarı bu değerle çarpılır." + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "Düşük katman süresi nedeniyle minimum hıza inildiğinde yazıcı başlığını yazıcıdan kaldırıp düşük katman süresine ulaşana kadar olan ek süreyi bekleyin." + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "Modelde yalnızca birkaç katmanda küçük dikey boşluklar varsa normal şartlarda dar alandaki bu katmanların etrafında dış bir katman olmalıdır. Dikey boşluğun çok küçük olduğu durumlarda dış katman oluşturulmaması için bu ayarı etkinleştirin. Böylece baskı ve dilimleme süresi kısalır ancak teknik olarak bakıldığında havayla temasa açık dolgular kalır." + +msgctxt "wall_transition_angle description" +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 "Çift ve tek sayıdaki duvarlar arasında ne zaman geçiş oluşturulacağını gösterir. Bu ayardan daha geniş açıya sahip bir kama şekline geçiş eklenmez ve kalan alanının doldurulması sırasında merkez noktada duvar baskısı yapılmaz. Bu ayarın düşürülmesi bu merkez duvarların sayısını ve uzunluğunu azaltır fakat boşluklara ve aşırı ekstrüzyona neden olabilir." + +msgctxt "wall_transition_length description" +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 lines." +msgstr "Farkı sayıda duvar arasından geçerken parça daha ince hale geldiğinden duvar hatlarını bölmek veya birleştirmek için belirli bir alan ayrılır." + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Sürme sırasında yapı plakası nozül ve baskı arasında açıklık oluşturmak üzere alçaltılır. Bu işlem, hareket sırasında nozülün baskıya çarpmasını önler ve baskının devrilerek yapı plakasından düşme olasılığını azaltır." + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "Geri çekme her yapıldığında, nozül ve baskı arasında açıklık oluşturmak için yapı levhası indirilir. Yapı levhasından baskıya çarpma şansını azaltarak nozülün hareket sırasında baskıya değmesini önler." + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "Destek X/Y Mesafesinin Destek Z Mesafesinden veya tersi yönde fazla olup olmadığı. X/Y, Z’den fazla olursa, X/Y mesafesi çıkıntıya olan asıl Z mesafesini etkileyerek desteği modelden iter. Çıkıntıların etrafına X/Y mesafesi uygulayarak bunu engelleyebiliriz." + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "Yazıcı sıfır noktasının X/Y koordinatlarının yazdırılabilir alanın merkezinde olup olmadığı." + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "X ekseninin kapamasının pozitif yönde mi (yüksek X koordinatı) yoksa negatif yönde mi (düşük X koordinatı) olduğu." + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "Y ekseninin kapamasının pozitif yönde mi (yüksek Y koordinatı) yoksa negatif yönde mi (düşük Y koordinatı) olduğu." + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "Z ekseninin kapamasının pozitif yönde mi (yüksek Z koordinatı) yoksa negatif yönde mi (düşük Z koordinatı) olduğu." + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "Ekstrüderlerin tek bir ısıtıcıyı mı paylaşacağı yoksa her bir ekstrüderin kendi ısıtıcısı mı olacağı." + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "Ekstrüderlerin tek bir nozülü mü paylaşacağı yoksa her bir ekstrüderin kendi nozülü mü olacağıdır. True olarak ayarlandığında printer-start gcode betiğinin tüm ekstrüderleri bilinen ve karşılıklı olarak uyumlu olan bir ilk geri çekme durumunda (sıfır veya geri çekilmemiş bir filament) düzgün bir şekilde ayarlaması beklenir. Bu durumda ilk geri çekme, ekstrüder başına \"machine_extruders_shared_nozzle_initial_retraction\" parametresi ile açıklanır." + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "Makinenin mevcut yapı levhasını ısıtıp ısıtmadığı." + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "Makinenin yapı hacmi sıcaklığını dengeleyip dengelemediği." + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "Nesnenin kaydedildiği koordinat sistemini kullanmak yerine nesnenin yapı platformunun (0,0) ortasına yerleştirilmesi." + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "Cura üzerinden sıcaklığın kontrol edilip edilmeme ayarı. Nozül sıcaklığını Cura dışından kontrol etmek için bu ayarı kapalı konuma getirin." + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "Gcode başlangıcında yapı levhası sıcaklık komutlarını ekleyip eklememe. start_gcode zaten yapı levhası sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "Gcode başlangıcında nozül sıcaklık komutlarını ekleyip eklememe. start_gcode zaten nozül sıcaklığı içeriyorsa Cura ön ucu otomatik olarak bu ayarı devre dışı bırakır." + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "Katmanlar arasına nozül sürme G-Code'u eklenip eklenmeyeceği (katman başına maksimum 1). Bu ayarın etkinleştirilmesi katman değişiminde geri çekme davranışını etkileyebilir. Sürme komutunun çalıştığı katmanlarda geri çekmeyi kontrol etmek için lütfen Sürme Geri Çekme ayarlarını kullanın." + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleme komutu ekleyip eklememe." + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "Yazdırma öncesinde bir damla ile filamanın astarlanıp astarlanmayacağı. Bu ayar açık olarak ayarlandığında, yazdırma öncesinde ekstrüder nozülünde malzeme hazır olacaktır. Kenar veya Etek Yazdırma da astarlama etkisi yapabilir; bu durumda bu ayarın kapatılmasıyla biraz zaman kazanılabilir." + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "Sıradakine geçmeden önce, tüm modellerin tek seferde bir katmanla mı yazdırılacağı yoksa bir modelin bitmesinin mi bekleneceği. Teker teker modu a) yalnızca bir ekstrüder etkinleştirildiğinde b) tüm modeller baskı kafası aralarında hareket edecek veya nozül ile X/Y eksenleri arasındaki mesafeden az olacak şekilde ayrıldığında kullanılabilir." + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "Ayrı json dosyalarında belirtilen bu makinenin farklı varyantlarının gösterilip gösterilmemesi." + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "Malzemeyi geri çekmek için G1 komutlarında E özelliği yerine aygıt yazılımı çekme komutlarının (G10/G11) kullanılıp kullanılmayacağı." + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "Yapı levhası sıcaklığı başlangıca ulaşana kadar bekleyip beklememe." + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "Tek bir dolgu hattının genişliği." + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "Destek çatısı veya zemininin tek çizgi genişliği." + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "Baskının üst tarafında bulunan alanlardaki tek bir hattın genişliği." + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "Tek bir hattın genişliği Genellikle her hattın genişliği nozül genişliğine eşit olmalıdır. Ancak, bu değeri biraz azaltmak daha iyi baskılar üretilmesini sağlayabilir." + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "Tek bir ilk direk hattının genişliği." + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "Tek bir etek veya kenar hattının genişliği." + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "Tek bir destek zemininin çizgi genişliği." + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "Tek bir destek çatısının çizgi genişliği." + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "Tek bir destek yapısı hattının genişliği." + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "Tek bir üst/alt hattın genişliği." + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "En dış duvar haricindeki tüm duvar hatları için tek bir duvar hattı genişliği." + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "Tek bir duvar hattının genişliği." + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "Radyenin taban katmanındaki hatların genişliği. Bunlar, yapı levhasına yapışma işlemine yardımcı olan kalın hatlar olmalıdır." + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "Radyenin orta katmanındaki hatların genişliği. İkinci katmanın daha fazla sıkılması hatların yapı levhasına yapışmasına neden olur." + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Radyenin üst yüzeyindeki hatların genişliği. Radyenin üstünün pürüzsüz olması için bunlar ince hat olabilir." + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "En dıştaki duvar hattının genişliği. Bu değeri azaltarak daha yüksek seviyede ayrıntılar yazdırılabilir." + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "Modelin ince yüz hatlarının yerini alacak duvarın genişliğidir (Minimum Yüz Hattı Boyutuna göre). Minimum Duvar Hattı Genişliği, yüz hattının kalınlığından daha inceyse duvar da yüz hattının kendisi kadar kalınlaştırılacaktır." + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "Sürme Fırçası X Konumu" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "Sürme Sıçrama Hızı" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "İlk Direkteki Sürme İnaktif Nozülü" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "Sürme Hareket Mesafesi" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "Katmanlar Arasındaki Sürme Nozülü" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "Sürmeyi Durdurma" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "Sürme Tekrar Sayısı" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "Sürme Geri Çekme Mesafesi" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "Sürme Geri Çekmenin Etkinleştirilmesi" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "Sürme Geri Çekme Sırasındaki İlave Astar Miktarı" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "Sürme Geri Çekme Sırasındaki Çalışmaya Hazırlama Hızı" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "Sürme Geri Çekme Sırasındaki Çekim Hızı" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "Sürme Geri Çekme Hızı" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "Sürme Z Sıçraması" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "Sürme Z Sıçraması Yüksekliği" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "Dolgu İçinde" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "Aktif olmayan araca geçici komut gönderildikten sonra aktif aracı yazın. Smoothie veya modal araç komutlarına sahip diğer donanım yazılımları ile Çift Ekstrüderli baskı için gereklidir." + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "X Kapaması Pozitif Yönde" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "Sürme komutunun başlatılacağı X konumu." + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y, Z’den fazla" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "Y Kapaması Pozitif Yönde" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "Z Kapaması Pozitif Yönde" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "Ekstruder Değişimi Sonrasındaki Z Sıçraması" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "Ekstruder Yüksekliği Değişimi Sonrasındaki Z Sıçraması" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z Sıçraması Yüksekliği" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "Sadece Yazdırılan Parçalar Üzerindeki Z Sıçraması" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z Atlama Hızı" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "Geri Çekildiğinde Z Sıçraması" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z Dikiş Hizalama" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z Dikişi Konumu" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z Dikişi Göreliliği" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z Dikişi X" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z Dikişi Y" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z, X/Y’den fazla" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zik Zak" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" + +msgctxt "travel description" +msgid "travel" +msgstr "hareket" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "Bir nozül değişimi sırasında soğutma fanlarının etkinleştirilip etkinleştirilmeyeceği. Bu, nozülü daha hızlı soğutarak sızıntıyı azaltmaya yardımcı olabilir:
    • Değişmemiş: Fanları daha önce olduğu gibi tutun
    • Sadece son ekstrüder: Son kullanılan ekstrüderin fanını açın ama diğerlerini (varsa) kapatın. Bu, tamamen ayrı ekstrüderleriniz varsa kullanışlıdır.
    • Tüm fanlar: Nozül değişimi sırasında tüm fanları açın. Bu, tek bir soğutma fanınız veya birbirine yakın duran birden fazla fanınız varsa kullanışlıdır.
    " + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "Tüm fanlar" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "Ekstruder değişimi sırasında soğutma" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "Destek yapısının z dikiş izi ile gerçek 3D model arasındaki uzamsal ilişkiyi yönetin. Bu kontrol, kullanıcıların baskı sonrası destek yapılarının, basılan modelde hasara yol açmadan veya iz bırakmadan hatasız bir şekilde çıkarılmasını sağlaması nedeniyle çok önemlidir." + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "Modelden Min Z Dikiş İzi Mesafesi" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "Desteğin ilk katmanlarındaki dolgu çarpanı. Bunu artırmak, yatak yapışmasına yardımcı olabilir." + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "Sadece son ekstrüder" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "Z dikiş izini bir çokgen tepe noktasına yerleştirin. Bunu kapatmak, dikiş izini köşeler arasına da yerleştirebilir. (Bunun, dikiş izinin desteklenmeyen bir çıkıntıya yerleştirilmesiyle ilgili kısıtlamaları geçersiz kılmayacağını unutmayın.)" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "Ana Kule Minimum Kabuk Kalınlığı" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "Raft Tabanı Akış" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "Raft Tabanı Dolgu Örtüşmesi" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "Raft Tabanı Dolgu Örtüşmesi Yüzdesi" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "Raft Akış" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "Raft Arayüzü Akış" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "Raft Arayüzü Dolgu Örtüşmesi" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "Raft Arayüzü Dolgu Örtüşme Yüzdesi" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "Raft Arayüzü Z Ofseti" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "Raft Yüzey Akışı" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "Raft Yüzey Dolgusu Örtüşmesi" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "Raft Yüzey Dolgusu Örtüşme Yüzdesi" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "Raft Yüzeyi Z Ofseti" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "Dikiş İzi Çıkıntılı Duvar Açısı" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "Destek Dolgu Yoğunluğu Çarpanı İlk Katman" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "Destek Z Dikiş İzi Modelden Mesafe" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Raft tabanı baskısı sırasında normal bir ekstrüzyon hattına göre ekstrüzyona tabi tutulacak malzeme miktarı. Artan bir akışa sahip olmak yapışmayı ve raft yapısal mukavemetini artırabilir." + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Raft arayüzü baskısı sırasında normal bir ekstrüzyon hattına göre ekstrüzyona tabi tutulacak malzeme miktarı. Artan bir akışa sahip olmak yapışmayı ve raft yapısal mukavemetini artırabilir." + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Raft baskısı sırasında normal bir ekstrüzyon hattına göre ekstrüzyona tabi tutulacak malzeme miktarı. Artan bir akışa sahip olmak yapışmayı ve raft yapısal mukavemetini artırabilir." + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "Raft yüzey baskısı sırasında normal bir ekstrüzyon hattına göre ekstrüzyona tabi tutulacak malzeme miktarı. Artan bir akışa sahip olmak yapışmayı ve raft yapısal mukavemetini artırabilir." + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ile raft tabanının duvarları arasındaki örtüşme miktarı. Hafif bir örtüşme, duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu ile raft tabanının duvarları arasındaki örtüşme miktarı. Hafif bir örtüşme, duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ile raft arayüzünün duvarları arasındaki örtüşme miktarı. Hafif bir örtüşme, duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu ile raft arayüzünün duvarları arasındaki örtüşme miktarı. Hafif bir örtüşme, duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu hattı genişliğinin yüzdesi olarak dolgu ile raft yüzeyinin duvarları arasındaki örtüşme miktarı. Hafif bir örtüşme, duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "Dolgu ile raft yüzeyinin duvarları arasındaki örtüşme miktarı. Hafif bir örtüşme, duvarların dolguya sıkıca bağlanmasını sağlar." + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "Model ile z ekseni dikiş izindeki destek yapısı arasındaki mesafe." + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "Ana kule kabuğunun minimum kalınlığı. Ana kuleyi güçlendirmek için artırabilirsiniz." + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "Bu açıdan daha fazla çıkıntı yapan duvarlardaki dikiş izlerini önlemeye çalışın. Değer 90 olduğunda hiçbir duvar çıkıntı olarak kabul edilmeyecektir." + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "Değişmemiş" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "Raft arayüzünün ilk katmanını yazdırırken taban ile arayüz arasındaki yapışmayı özelleştirmek için bu ofset ile öteleyin. Negatif bir ofset yapışmayı iyileştirmelidir." + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "Raft yüzeyinin ilk katmanını yazdırırken arayüz ve yüzey arasındaki yapışmayı özelleştirmek için bu ofset ile öteleyin. Negatif bir ofset yapışmayı iyileştirmelidir." + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "Tepe Noktasında Z Dikiş İzi" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "Yukarıdaki kaplamaları desteklemek için dolgu desenine ekstra hatlar ekleyin. Bu seçenek, karmaşık şekilli kaplamalarda alttaki dolgunun üstte basılan kaplama katmanını doğru şekilde desteklememesi nedeniyle bazen ortaya çıkan delikleri veya plastik lekeleri önler. \"Duvarlar\" sadece kaplamanın ana hatlarını desteklerken, \"Duvarlar ve Hatlar\" kaplamayı oluşturan hatların uçlarını da destekler." + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "Yükseklikteki Yapı Fan Hızı" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "Katmandaki Yapı Fan Hızı" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "Yapı hacmi fan sayısı" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "Atkı dikişi boyunca kalıptan geçirirken akış değişimindeki her adımın uzunluğunu belirler. Daha küçük bir mesafe, daha hassas ama aynı zamanda daha karmaşık bir G koduna sebep olacaktır." + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "Z dikişini daha az görünür hâle getirmesi gereken bir dikiş türü olan atkı dikişinin uzunluğunu belirler. Etkili olması için 0'dan büyük olmalıdır." + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "Kademeli akış değişimindeki her adımın süresi" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "Kademeli akış değişikliklerini etkinleştirin. Etkinleştirildiğinde akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, akışın ekstrüder motoru çalıştığında/durduğunda hemen değişmediği bowden tüplü yazıcılar için kullanışlıdır." + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "Kaplamaları Desteklemek İçin Ekstra Dolgu Hatları" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "Bu değerden daha uzun herhangi bir seyahat hareketi için malzeme akışı, hedef akış yollarına sıfırlanır" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "Kademeli akış ayrıklaştırma adım boyutu" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "Kademeli akış etkinleştirildi" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "Kademeli akış maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "İlk katman maksimum akış ivmesi" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "Kademeli akış değişiklikleri için maksimum ivme" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "İlk katman için kademeli akış değişiklikleri için minimum hız" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "Hiçbiri" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "Dış Duvar Hızlanması" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "Dış Duvar Yavaşlaması" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "Dış Duvar Bitiş Hız Oranı" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "Dış Duvar Hızı Bölünme Mesafesi" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "Dış Duvar Başlangıç Hız Oranı" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "Akış süresini sıfırla" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "Atkı Dikişi Uzunluğu" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "Atkı Dikişi Başlangıç Yüksekliği" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "Atkı Dikişi Adım Uzunluğu" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "Fanların normal fan hızında döndüğü yükseklik. Aşağıdaki katmanlarda fan hızı, Başlangıç Fan Hızından Normal Fan Hızına doğru kademeli olarak artar." + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "Yapı fanlarının tam fan hızında döndüğü katman. Bu değer hesaplanır ve bir tam sayıya yuvarlanır." + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "Yapı hacmini soğutan fan sayısı. Bu, 0 olarak ayarlanırsa hiç yapı hacmi fanı olmadığı anlamına gelir" + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "Atkı dikişinin başlatılacağı, seçilen katman yüksekliğinin oranı. Daha düşük bir sayı, daha büyük bir dikiş yüksekliği ile sonuçlanacaktır. Etkili olması için 100'den düşük olmalıdır." + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "Bu değer, bir dış duvar yazdırılırken en yüksek hıza ulaşmak için gereken hızlanmayı ifade eder." + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "Bu değer, bir dış duvar yazdırma işleminin sonlandırılacağı yavaşlamayı ifade eder." + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "Bu değer, dış duvar hızlanmasını/yavaşlamasını uygulamak için daha uzun bir yolu bölerken bir kalıptan basma yolunun maksimum uzunluğudur. Daha küçük bir mesafe daha hassas ama aynı zamanda daha karmaşık bir G Kodu oluşturacaktır." + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "Bu değer, bir dış duvar yazdırılırken işlemin sonlandırılacağı en yüksek hızın oranını ifade eder." + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "Bu değer, bir dış duvar yazdırılırken işlemin başlayacağı en yüksek hızın oranını ifade eder." + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "Sadece Duvarlar" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "Duvarlar ve Hatlar" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "Bu açıdan daha fazla çıkıntı yapan duvarlar, çıkıntılı duvar ayarları kullanılarak yazdırılacaktır. Değer 90 olduğunda, hiçbir duvar çıkıntı olarak değerlendirilmeyecektir. Dayanak tarafından desteklenen çıkıntılar da çıkıntı olarak değerlendirilmeyecektir. Ayrıca, çıkıntının yarısından az olan herhangi bir hat da çıkıntı olarak değerlendirilmeyecektir." + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "Alt yüzey kabuk katmanları çizgi veya zikzak desenini kullandığında kullanılacak tam sayı çizgi yönlerinin listesi. Katmanlar ilerledikçe listedeki elemanlar sırayla kullanılır ve listenin sonuna ulaşıldığında tekrar baştan başlanır. Liste ögeleri virgülle ayrılır ve listenin tamamı köşeli parantez içinde yer alır. Liste ögeleri virgülle ayrılır ve listenin tamamı köşeli parantez içinde yer alır. Varsayılan, geleneksel varsayılan açıları (45 ve 135 derece) kullanmak anlamına gelen boş bir listedir." + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "Alt Yüzey İç Duvar İvmesi" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "Alt Yüzey İç Duvar Sarsıntısı" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "Alt Yüzey İç Duvar Hızı" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "Alt Yüzey İç Duvar(lar) Akışı" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "Alt Yüzey Dış Duvar İvmesi" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "Alt Yüzey Dış Duvar Akışı" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "Alt Yüzey Dış Duvar Sarsıntısı" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "Alt Yüzey Dış Duvar Hızı" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "Alt Yüzey Kabuk İvmesi" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "Alt Yüzey Kabuk Ekstruderi" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "Alt Yüzey Kabuk Akışı" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "Alt Yüzey Kabuk Sarsıntısı" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "Alt Yüzey Kabuk Katmanları" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "Alt Yüzey Kabuk Çizgisi Yönleri" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "Alt Yüzey Kabuk Çizgisi Genişliği" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "Alt Yüzey Kabuk Deseni" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "Alt Yüzey Kabuk Hızı" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "Eş merkezli" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "Ekstruder" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "En dıştaki hariç tüm duvar hatları için alt yüzey duvar hatlarında akış dengelemesi." + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "Baskının alt kısmındaki alanların çizgilerinde akış dengelemesi." + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "Alt yüzey dış duvar hattında akış dengelemesi." + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Çita" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "İç Seyahat Mesafeden Kaçın" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "Hatlar" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "Çıkıntı ile Minimum Katman Süresi" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "Minimum Çıkıntı Segment Uzunluğu" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "Monotonik Alt Yüzey Düzeni" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "Dış Duvar Sonu Yavaşlaması" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "Dış Duvar Başlangıç ​​İvmesi" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "Sarkık Duvar Hızları" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "Duvarların sarkması durumunda baskı normal baskı hızının belirli bir yüzdesi oranında yapılacaktır. Örneğin [75, 50, 25] ayarlayarak birden fazla değer belirtebilirsiniz, böylece daha fazla sarkan duvar daha da yavaş yazdırılır." + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "Basınç ilerleme faktörü" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "Baskı Çekirdeği" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "Alt yüzey çizgilerini, her zaman aynı yöndeki bitişik çizgilerle örtüşecek şekilde sıralayın. Bu, baskı için biraz daha fazla zaman alır ama düz yüzeylerin daha tutarlı görünmesini sağlar." + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "GCode'u Başlat, ilk sırada olmalıdır" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "Alt yüzey kabuk katmanlarının basıldığı ivme." + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "Alt yüzey iç duvarlarının basıldığı ivme." + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "Alt yüzeyin en dış duvarlarının basıldığı ivme." + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "'Birer Birer' yazdırırken 'Güvenli Model Mesafesi'ni belirlemek için kullanılan baskı başlığının boyutları. Bu sayılar, ilk ekstruder nozülünün merkez hattına aittir. Nozülün solu 'X Min'dir ve negatif olmalı. Nozülün arkası 'Y Min'dir ve negatif olmalı. X Max (sağ) ve Y Max (ön) pozitif sayılardır. Vinç yüksekliği, yapı plakasından X vinci kirişine kadar olan boyuttur." + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "Bir modelin içinde hareket ederken nozül ile önceden basılmış dış duvarlar arasındaki mesafe." + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "En alttaki kabuğu basmak için kullanılan ekstruder treni. Çoklu ekstrüzyonda kullanılır." + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "Alt yüzey kabuk katmanlarının basıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "Alt yüzey iç duvarlarının basıldığı maksimum anlık hız değişimi." + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "Alt yüzeyin en dış duvarlarının basıldığı maksimum anlık hız değişimi." + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "Sarkan ekstrüzyonlar içeren bir katmanda harcanan minimum süre. Bu, yazıcının yavaşlamasına, en azından burada ayarlanan süreyi tek katmanda geçirmesine neden olur. Bu, bir sonraki katmanın basılmasından önce basılı malzemenin düzgün bir şekilde soğumasını sağlar. Kaldırma Başlığı devre dışı bırakılmışsa ve aksi takdirde Minimum Hız ihlal edilecekse, katmanlar yine de minimum katman süresinden daha kısa sürebilir." + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "Kabuğun en alt katmanlarının sayısı. Genellikle daha kaliteli alt yüzeyler elde etmek için sadece en alttaki tek bir katman yeterlidir." + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "En alttaki katmanların deseni." + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "Alt yüzey kabuk katmanlarının basılma hızı." + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "Alt yüzey iç duvarlarının basılma hızı." + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "Alt yüzeyin en dış duvarının basılma hızı." + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "Bu ayar, başlangıç ​​g kodunun her zaman ilk g kodu olmaya zorlanıp zorlanmayacağını kontrol eder. Bu seçenek olmadan başlangıç ​​g-kodundan önce T0 gibi başka bir g kodu eklenebilir." + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "Ekstrüzyonu hareketle senkronize etmeyi amaçlayan basınç avansı için ayar faktörü" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "Sarkan katmanlara özgü minimum katman süresi uygulanmaya çalışıldığı zaman yalnızca en az bir ardışık sarkan ekstrüzyon hareketi bu değerden daha uzunsa uygulanacaktır." + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "Baskının alt kısmındaki alanların tek bir çizgisinin genişliği." + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "Zikzak" diff --git a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po b/resources/i18n/tr_TR/gradual_flow_settings.def.json.po deleted file mode 100644 index 025c28a10f..0000000000 --- a/resources/i18n/tr_TR/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: tr_TR\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "Kademeli akış etkinleştirildi" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "Kademeli akış değişikliklerini etkinleştirin. Etkinleştirildiğinde akış, hedef akışa doğru kademeli olarak artırılır/azaltılır. Bu, akışın ekstrüder motoru çalıştığında/durduğunda hemen değişmediği bowden tüplü yazıcılar için kullanışlıdır." - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "Kademeli akış maksimum ivme" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "Kademeli akış değişiklikleri için maksimum ivme" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "İlk katman maksimum akış ivmesi" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "İlk katman için kademeli akış değişiklikleri için minimum hız" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "Kademeli akış ayrıklaştırma adım boyutu" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "Kademeli akış değişimindeki her adımın süresi" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "Akış süresini sıfırla" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "Bu değerden daha uzun herhangi bir seyahat hareketi için malzeme akışı, hedef akış yollarına sıfırlanır" diff --git a/resources/i18n/zh_CN/cura.po b/resources/i18n/zh_CN/cura.po index 8f1bffe45d..d3574a7561 100644 --- a/resources/i18n/zh_CN/cura.po +++ b/resources/i18n/zh_CN/cura.po @@ -168,6 +168,14 @@ msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 文件" +msgctxt "name" +msgid "3MF Reader" +msgstr "3MF 读取器" + +msgctxt "name" +msgid "3MF Writer" +msgstr "3MF 写入器" + msgctxt "@error:zip" msgid "3MF Writer plug-in is corrupt." msgstr "3MF 编写器插件已损坏。" @@ -202,9 +210,8 @@ msgstr "
  • OpenGL 版本: {version}
  • " msgctxt "@label crash message" msgid "

    A fatal error has occurred in Cura. Please send us this Crash Report to fix the problem

    \n

    Please use the \"Send report\" button to post a bug report automatically to our servers

    \n " -msgstr "" -"

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    \n" -"

    请使用“发送报告”按钮将错误报告自动发送到我们的服务器

    \n" +msgstr "

    Cura 发生了严重错误。请将这份错误报告发送给我们以便修复问题

    " +"

    请使用“发送报告”按钮将错误报告自动发布到我们的服务器

    " " " msgctxt "@label crash message" @@ -219,7 +226,7 @@ msgctxt "@info:status" msgid "

    One or more 3D models may not print optimally due to the model size and material configuration:

    \n

    {model_names}

    \n

    Find out how to ensure the best possible print quality and reliability.

    \n

    View print quality guide

    " msgstr "

    由于模型的大小和材质的配置,一个或多个3D模型可能无法最优地打印:

    " "

    {model_names}

    " -"

    找到确保最好的打印质量与可靠性的方法.

    \n" +"

    找出如何确保最好的打印质量和可靠性.

    " "

    查看打印质量指南

    " msgctxt "@label" @@ -243,6 +250,10 @@ msgctxt "@item:inlistbox" msgid "AMF File" msgstr "AMF 文件" +msgctxt "name" +msgid "AMF Reader" +msgstr "AMF 读取器" + msgctxt "@label" msgid "Abort" msgstr "中止" @@ -279,6 +290,10 @@ msgctxt "@button" msgid "Accept" msgstr "接受" +msgctxt "description" +msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." +msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" + msgctxt "@label" msgid "Account synced" msgstr "帐户已同步" @@ -419,6 +434,10 @@ msgctxt "@text:window" msgid "Allow sending anonymous data" msgstr "允许发送匿名数据" +msgctxt "description" +msgid "Allows loading and displaying G-code files." +msgstr "允许加载和显示 G-code 文件。" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "总是询问" @@ -575,6 +594,10 @@ msgctxt "@action:button" msgid "Backup and Reset Configuration" msgstr "备份并重置配置" +msgctxt "description" +msgid "Backup and restore your configuration." +msgstr "备份和还原配置。" + msgctxt "@text" msgid "Backup and sync your material settings and plugins" msgstr "备份和同步材料设置和插件" @@ -747,6 +770,14 @@ msgctxt "@label" msgid "Checking..." msgstr "正在检查..." +msgctxt "description" +msgid "Checks for firmware updates." +msgstr "检查以进行固件更新。" + +msgctxt "description" +msgid "Checks models and print configuration for possible printing issues and give suggestions." +msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" + msgctxt "@label" msgid "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" @@ -827,6 +858,14 @@ msgctxt "@item:inlistbox" msgid "Compressed G-code File" msgstr "压缩 G-code 文件" +msgctxt "name" +msgid "Compressed G-code Reader" +msgstr "压缩 G-code 读取器" + +msgctxt "name" +msgid "Compressed G-code Writer" +msgstr "压缩 G-code 写入器" + msgctxt "@title:window" msgid "Configuration Changes" msgstr "配置更改" @@ -899,6 +938,10 @@ msgctxt "@info:status" msgid "Connected via cloud" msgstr "通过云连接" +msgctxt "description" +msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." +msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" + msgctxt "@tooltip:button" msgid "Consult the UltiMaker Community." msgstr "咨询 UltiMaker 社区。" @@ -1034,6 +1077,10 @@ msgctxt "@tooltip:button" msgid "Create print projects in Digital Library." msgstr "在 Digital Library 中创建打印项目。" +msgctxt "description" +msgid "Creates an eraser mesh to block the printing of support in certain places" +msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" + msgctxt "@info:backup_status" msgid "Creating your backup..." msgstr "正在创建您的备份..." @@ -1046,10 +1093,22 @@ msgctxt "@title:window" msgid "Cura Backups" msgstr "Cura 备份" +msgctxt "name" +msgid "Cura Backups" +msgstr "Cura 备份" + msgctxt "@item:inlistbox" msgid "Cura Profile" msgstr "Cura 配置文件" +msgctxt "name" +msgid "Cura Profile Reader" +msgstr "Cura 配置文件读取器" + +msgctxt "name" +msgid "Cura Profile Writer" +msgstr "Cura 配置文件写入器" + msgctxt "@item:inlistbox" msgid "Cura Project 3MF file" msgstr "Cura 项目 3MF 文件" @@ -1079,6 +1138,18 @@ msgctxt "@label Cura version number" msgid "Cura version" msgstr "Cura 版本" +msgctxt "name" +msgid "CuraEngine Backend" +msgstr "CuraEngine 后端" + +msgctxt "description" +msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" +msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" + +msgctxt "name" +msgid "CuraEngineGradualFlow" +msgstr "CuraEngineGradualFlow" + msgctxt "@label" msgid "Currency:" msgstr "币种:" @@ -1363,6 +1434,10 @@ msgctxt "@label" msgid "Enabled" msgstr "已启用" +msgctxt "description" +msgid "Enables ability to generate printable geometry from 2D image files." +msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" + msgctxt "@title:label" msgid "End G-code" msgstr "结束 G-code" @@ -1451,6 +1526,10 @@ msgctxt "@tooltip:button" msgid "Extend UltiMaker Cura with plugins and material profiles." msgstr "用插件和材料配置文件扩展 UltiMaker Cura。" +msgctxt "description" +msgid "Extension that allows for user created scripts for post processing" +msgstr "扩展程序(允许用户创建脚本进行后期处理)" + msgctxt "@label" msgid "Extruder" msgstr "挤出机" @@ -1599,6 +1678,14 @@ msgctxt "@title:window" msgid "Firmware Update" msgstr "固件升级" +msgctxt "name" +msgid "Firmware Update Checker" +msgstr "固件更新检查程序" + +msgctxt "name" +msgid "Firmware Updater" +msgstr "固件更新程序" + msgctxt "@label" msgid "Firmware can not be updated because the connection with the printer does not support upgrading firmware." msgstr "与打印机间的连接不支持固件更新,因此无法更新固件。" @@ -1698,6 +1785,18 @@ msgctxt "@item:inlistbox" msgid "G-code File" msgstr "GCode 文件" +msgctxt "name" +msgid "G-code Profile Reader" +msgstr "G-code 配置文件读取器" + +msgctxt "name" +msgid "G-code Reader" +msgstr "G-code 读取器" + +msgctxt "name" +msgid "G-code Writer" +msgstr "G-code 写入器" + msgctxt "@label" msgid "G-code flavor" msgstr "G-code 风格" @@ -1788,7 +1887,7 @@ msgstr "热床(官方版本或自制)" msgctxt "@label" msgid "Heated bed" -msgstr "热床" +msgstr "加热床" msgctxt "@label" msgid "Heated build volume" @@ -1846,6 +1945,10 @@ msgctxt "@label" msgid "If your printer is not listed, read the network printing troubleshooting guide" msgstr "如果您的打印机未列出,请阅读网络打印故障排除指南" +msgctxt "name" +msgid "Image Reader" +msgstr "图像读取器" + msgctxt "@action:button" msgid "Import" msgstr "导入" @@ -2130,6 +2233,10 @@ msgctxt "@info:tooltip" msgid "Left View" msgstr "左视图" +msgctxt "name" +msgid "Legacy Cura Profile Reader" +msgstr "旧版 Cura 配置文件读取器" + msgctxt "@tooltip:button" msgid "Let developers know that something is going wrong." msgstr "向开发人员报错。" @@ -2210,6 +2317,10 @@ msgctxt "@title:groupbox" msgid "Logs" msgstr "日志" +msgctxt "description" +msgid "Logs certain events so that they can be used by the crash reporter" +msgstr "记录某些事件,以使其可供崩溃报告器使用" + msgctxt "@label:MonitorStatus" msgid "Lost connection with the printer" msgstr "与打印机的连接中断" @@ -2218,6 +2329,10 @@ msgctxt "@action" msgid "Machine Settings" msgstr "打印机设置" +msgctxt "name" +msgid "Machine Settings Action" +msgstr "打印机设置操作" + msgctxt "@backuplist:label" msgid "Machines" msgstr "机器" @@ -2234,6 +2349,10 @@ msgctxt "@item:inlistbox" msgid "Makerbot Printfile" msgstr "Makerbot 打印文件" +msgctxt "name" +msgid "Makerbot Printfile Writer" +msgstr "Makerbot 打印文件编写器" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "MakerbotWriter 无法保存至指定路径。" @@ -2290,6 +2409,14 @@ msgctxt "@text" msgid "Manage your UltiMaker Cura plugins and material profiles here. Make sure to keep your plugins up to date and backup your setup regularly." msgstr "在此处管理您的 UltiMaker Cura 插件和材料配置文件。请确保将插件保持为最新,并定期备份设置。" +msgctxt "description" +msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." +msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" + +msgctxt "description" +msgid "Manages network connections to UltiMaker networked printers." +msgstr "管理 UltiMaker 联网打印机的网络连接。" + msgctxt "@label" msgid "Manufacturer" msgstr "制造商" @@ -2302,6 +2429,10 @@ msgctxt "@label" msgid "Marketplace" msgstr "市场" +msgctxt "name" +msgid "Marketplace" +msgstr "市场" + msgctxt "@action:label" msgid "Material" msgstr "材料" @@ -2318,6 +2449,10 @@ msgctxt "@label:listbox" msgid "Material Color" msgstr "材料颜色" +msgctxt "name" +msgid "Material Profiles" +msgstr "材料配置文件" + msgctxt "@label" msgid "Material Type" msgstr "材料类型" @@ -2362,6 +2497,10 @@ msgctxt "@action:label" msgid "Mode" msgstr "模式" +msgctxt "name" +msgid "Model Checker" +msgstr "模型检查器" + msgctxt "@info:title" msgid "Model Errors" msgstr "模型错误" @@ -2378,6 +2517,10 @@ msgctxt "@item:inmenu" msgid "Monitor" msgstr "监控" +msgctxt "name" +msgid "Monitor Stage" +msgstr "监视阶段" + msgctxt "@action:button" msgid "Monitor print" msgstr "监控打印" @@ -2453,7 +2596,7 @@ msgstr "网络错误" msgctxt "@info:title The %s gets replaced with the printer name." msgid "New %s stable firmware available" -msgstr "新 %s 稳定版固件可用" +msgstr "新 %s 稳定固件可用" msgctxt "@textfield:placeholder" msgid "New Custom Profile" @@ -2566,7 +2709,7 @@ msgstr "正常模式" msgctxt "@info:title" msgid "Not a group host" -msgstr "非位于组中的主机" +msgstr "非组中的主机" msgctxt "@label:MonitorStatus" msgid "Not connected to a printer" @@ -2816,6 +2959,10 @@ msgctxt "@label" msgid "Per Model Settings" msgstr "单一模型设置" +msgctxt "name" +msgid "Per Model Settings Tool" +msgstr "单一模型设置工具" + msgid "Perspective" msgstr "透视" @@ -2941,6 +3088,10 @@ msgctxt "@item:inmenu" msgid "Post Processing" msgstr "后期处理" +msgctxt "name" +msgid "Post Processing" +msgstr "后期处理" + msgctxt "@title:window" msgid "Post Processing Plugin" msgstr "后期处理插件" @@ -2957,6 +3108,10 @@ msgctxt "@item:inmenu" msgid "Prepare" msgstr "准备" +msgctxt "name" +msgid "Prepare Stage" +msgstr "准备阶段" + msgctxt "@label:MonitorStatus" msgid "Preparing..." msgstr "初始化中..." @@ -2977,6 +3132,10 @@ msgctxt "@item:inmenu" msgid "Preview" msgstr "预览" +msgctxt "name" +msgid "Preview Stage" +msgstr "预览阶段" + msgctxt "@tooltip" msgid "Prime Tower" msgstr "装填塔" @@ -3219,6 +3378,106 @@ msgctxt "@label" msgid "Properties" msgstr "属性" +msgctxt "description" +msgid "Provides a machine actions for updating firmware." +msgstr "为固件更新提供操作选项。" + +msgctxt "description" +msgid "Provides a monitor stage in Cura." +msgstr "在 Cura 中提供监视阶段。" + +msgctxt "description" +msgid "Provides a normal solid mesh view." +msgstr "提供一个基本的实体网格视图。" + +msgctxt "description" +msgid "Provides a prepare stage in Cura." +msgstr "在 Cura 中提供准备阶段。" + +msgctxt "description" +msgid "Provides a preview stage in Cura." +msgstr "在 Cura 中提供预览阶段。" + +msgctxt "description" +msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." +msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" + +msgctxt "description" +msgid "Provides capabilities to read and write XML-based material profiles." +msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" + +msgctxt "description" +msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." +msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" + +msgctxt "description" +msgid "Provides removable drive hotplugging and writing support." +msgstr "提供可移动磁盘热插拔和写入文件的支持。" + +msgctxt "description" +msgid "Provides support for exporting Cura profiles." +msgstr "提供了对导出 Cura 配置文件的支持。" + +msgctxt "description" +msgid "Provides support for importing Cura profiles." +msgstr "提供了对导入 Cura 配置文件的支持。" + +msgctxt "description" +msgid "Provides support for importing profiles from g-code files." +msgstr "提供了从 GCode 文件中导入配置文件的支持。" + +msgctxt "description" +msgid "Provides support for importing profiles from legacy Cura versions." +msgstr "支持从 Cura 旧版本导入配置文件。" + +msgctxt "description" +msgid "Provides support for reading 3MF files." +msgstr "提供对读取 3MF 格式文件的支持。" + +msgctxt "description" +msgid "Provides support for reading AMF files." +msgstr "提供对读取 AMF 文件的支持。" + +msgctxt "description" +msgid "Provides support for reading Ultimaker Format Packages." +msgstr "为读取 Ultimaker 格式包提供支持。" + +msgctxt "description" +msgid "Provides support for reading X3D files." +msgstr "支持读取 X3D 文件。" + +msgctxt "description" +msgid "Provides support for reading model files." +msgstr "提供对读取模型文件的支持。" + +msgctxt "description" +msgid "Provides support for writing 3MF and UCP files." +msgstr "支持写为 3MF 和 UCP 文件。" + +msgctxt "description" +msgid "Provides support for writing MakerBot Format Packages." +msgstr "提供对写入 MakerBot 格式包的支持。" + +msgctxt "description" +msgid "Provides support for writing Ultimaker Format Packages." +msgstr "为写入 Ultimaker 格式包提供支持。" + +msgctxt "description" +msgid "Provides the Per Model Settings." +msgstr "提供对每个模型的单独设置。" + +msgctxt "description" +msgid "Provides the X-Ray view." +msgstr "提供透视视图。" + +msgctxt "description" +msgid "Provides the link to the CuraEngine slicing backend." +msgstr "提供 CuraEngine 切片后端的路径。" + +msgctxt "description" +msgid "Provides the preview of sliced layerdata." +msgstr "提供切片层数据的预览。" + msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" @@ -3255,6 +3514,10 @@ msgctxt "@info:button, %1 is the application name" msgid "Quit %1" msgstr "退出 %1" +msgctxt "description" +msgid "Reads g-code from a compressed archive." +msgstr "从压缩存档文件读取 G-code。" + msgctxt "@button" msgid "Recommended" msgstr "推荐" @@ -3307,6 +3570,10 @@ msgctxt "@item:intext" msgid "Removable Drive" msgstr "可移动磁盘" +msgctxt "name" +msgid "Removable Drive Output Device Plugin" +msgstr "可移动磁盘输出设备插件" + msgctxt "@action:button" msgid "Remove" msgstr "删除" @@ -3587,6 +3854,10 @@ msgctxt "@info:title" msgid "Sending materials to printer" msgstr "正在将材料发送到打印机" +msgctxt "name" +msgid "Sentry Logger" +msgstr "Sentry 日志记录" + msgctxt "@label Description for application dependency" msgid "Serial communication library" msgstr "串口通讯库" @@ -3795,6 +4066,10 @@ msgctxt "@label" msgid "Sign in to the UltiMaker platform" msgstr "登录 UltiMaker 平台" +msgctxt "name" +msgid "Simulation View" +msgstr "仿真视图" + msgctxt "@tooltip" msgid "Skin" msgstr "表层" @@ -3823,6 +4098,10 @@ msgctxt "@info:tooltip" msgid "Slice automatically when changing settings." msgstr "当设置被更改时自动进行切片。" +msgctxt "name" +msgid "Slice info" +msgstr "切片信息" + msgctxt "@message:title" msgid "Slicing failed" msgstr "切片失败" @@ -3839,6 +4118,10 @@ msgctxt "@label" msgid "Solid" msgstr "固体" +msgctxt "name" +msgid "Solid View" +msgstr "实体视图" + msgctxt "@item:inmenu" msgid "Solid view" msgstr "实体视图" @@ -3933,6 +4216,10 @@ msgctxt "@label" msgid "Strength" msgstr "强度" +msgctxt "description" +msgid "Submits anonymous slice info. Can be disabled through preferences." +msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" + msgctxt "@info:status Don't translate the XML tag !" msgid "Successfully exported material to %1" msgstr "成功导出材料至: %1" @@ -3977,6 +4264,10 @@ msgctxt "@label" msgid "Support Blocker" msgstr "支撑拦截器" +msgctxt "name" +msgid "Support Eraser" +msgstr "支持橡皮擦" + msgctxt "@tooltip" msgid "Support Infill" msgstr "支撑填充" @@ -4484,11 +4775,15 @@ msgstr "空驶" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup that is higher than the current version." -msgstr "尝试从高于当前版本的 Cura 备份恢复。" +msgstr "尝试恢复的 Cura 备份版本高于当前版本。" msgctxt "@info:backup_failed" msgid "Tried to restore a Cura backup without having proper data or meta data." -msgstr "尝试在没有适当数据或元数据的情况下恢复Cura备份。" +msgstr "试图在没有适当数据或元数据的情况下恢复Cura备份。" + +msgctxt "name" +msgid "Trimesh Reader" +msgstr "Trimesh 阅读器" msgctxt "@button" msgid "Troubleshooting" @@ -4510,10 +4805,22 @@ msgctxt "@label" msgid "Type" msgstr "类型" +msgctxt "name" +msgid "UFP Reader" +msgstr "UFP 读取器" + +msgctxt "name" +msgid "UFP Writer" +msgstr "UFP 写入器" + msgctxt "@item:inmenu" msgid "USB printing" msgstr "USB 联机打印" +msgctxt "name" +msgid "USB printing" +msgstr "USB 联机打印" + msgctxt "@button" msgid "UltiMaker Account" msgstr "UltiMaker 帐户" @@ -4530,6 +4837,10 @@ msgctxt "@item:inlistbox" msgid "UltiMaker Format Package" msgstr "UltiMaker 格式包" +msgctxt "name" +msgid "UltiMaker Network Connection" +msgstr "UltiMaker 网络连接" + msgctxt "@info" msgid "UltiMaker Verified Package" msgstr "UltiMaker 验证包" @@ -4538,6 +4849,10 @@ msgctxt "@info" msgid "UltiMaker Verified Plug-in" msgstr "UltiMaker 验证插件" +msgctxt "name" +msgid "UltiMaker machine actions" +msgstr "UltiMaker 车床操作" + msgctxt "@button" msgid "UltiMaker printer" msgstr "UltiMaker 打印机" @@ -4550,6 +4865,10 @@ msgctxt "info:name" msgid "Ultimaker Digital Factory" msgstr "Ultimaker Digital Factory" +msgctxt "name" +msgid "Ultimaker Digital Library" +msgstr "Ultimaker Digital Library" + msgctxt "@info:status" msgid "Unable to add the profile." msgstr "无法添加配置文件。" @@ -4723,6 +5042,114 @@ msgctxt "@button" msgid "Updating..." msgstr "正在更新..." +msgctxt "description" +msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." +msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." +msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." +msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." +msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." +msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." +msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." +msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." +msgstr "从Cura 3.3升级到Cura 3.4。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." +msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." +msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." +msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." +msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." +msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." +msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." +msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." +msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." +msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." +msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." +msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." +msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." +msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." +msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." +msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." +msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." +msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." +msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." +msgstr "将配置从 Cura 5.6 升级到 Cura 5.7。" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "上传自定义固件" @@ -4759,6 +5186,114 @@ msgctxt "@title:column" msgid "Value" msgstr "值" +msgctxt "name" +msgid "Version Upgrade 2.1 to 2.2" +msgstr "版本自 2.1 升级到 2.2" + +msgctxt "name" +msgid "Version Upgrade 2.2 to 2.4" +msgstr "版本自 2.2 升级到 2.4" + +msgctxt "name" +msgid "Version Upgrade 2.5 to 2.6" +msgstr "版本自 2.5 升级到 2.6" + +msgctxt "name" +msgid "Version Upgrade 2.6 to 2.7" +msgstr "版本自 2.6 升级到 2.7" + +msgctxt "name" +msgid "Version Upgrade 2.7 to 3.0" +msgstr "版本自 2.7 升级到 3.0" + +msgctxt "name" +msgid "Version Upgrade 3.0 to 3.1" +msgstr "版本自 3.0 升级到 3.1" + +msgctxt "name" +msgid "Version Upgrade 3.2 to 3.3" +msgstr "版本自 3.2 升级到 3.3" + +msgctxt "name" +msgid "Version Upgrade 3.3 to 3.4" +msgstr "版本升级3.3到3.4" + +msgctxt "name" +msgid "Version Upgrade 3.4 to 3.5" +msgstr "版本自 3.4 升级到 3.5" + +msgctxt "name" +msgid "Version Upgrade 3.5 to 4.0" +msgstr "版本自 3.5 升级到 4.0" + +msgctxt "name" +msgid "Version Upgrade 4.0 to 4.1" +msgstr "版本自 4.0 升级到 4.1" + +msgctxt "name" +msgid "Version Upgrade 4.1 to 4.2" +msgstr "版本自 4.1 升级到 4.2" + +msgctxt "name" +msgid "Version Upgrade 4.11 to 4.12" +msgstr "版本从 4.11 升级到 4.12" + +msgctxt "name" +msgid "Version Upgrade 4.13 to 5.0" +msgstr "版本从 4.13 升级到 5.0" + +msgctxt "name" +msgid "Version Upgrade 4.2 to 4.3" +msgstr "版本自 4.2 升级至 4.3" + +msgctxt "name" +msgid "Version Upgrade 4.3 to 4.4" +msgstr "版本自 4.3 升级至 4.4" + +msgctxt "name" +msgid "Version Upgrade 4.4 to 4.5" +msgstr "版本从 4.4 升级至 4.5" + +msgctxt "name" +msgid "Version Upgrade 4.5 to 4.6" +msgstr "版本从 4.5 升级至 4.6" + +msgctxt "name" +msgid "Version Upgrade 4.6.0 to 4.6.2" +msgstr "版本从 4.6.0 升级到 4.6.2" + +msgctxt "name" +msgid "Version Upgrade 4.6.2 to 4.7" +msgstr "版本从 4.6.2 升级到 4.7" + +msgctxt "name" +msgid "Version Upgrade 4.7 to 4.8" +msgstr "将版本从 4.7 升级到 4.8" + +msgctxt "name" +msgid "Version Upgrade 4.8 to 4.9" +msgstr "版本从 4.8 升级到 4.9" + +msgctxt "name" +msgid "Version Upgrade 4.9 to 4.10" +msgstr "版本从 4.9 升级到 4.10" + +msgctxt "name" +msgid "Version Upgrade 5.2 to 5.3" +msgstr "版本自 5.2 升级到 5.3" + +msgctxt "name" +msgid "Version Upgrade 5.3 to 5.4" +msgstr "版本 5.3 升级到 5.4" + +msgctxt "name" +msgid "Version Upgrade 5.4 to 5.5" +msgstr "版本 5.4 升级到 5.5" + +msgctxt "name" +msgid "Version Upgrade 5.6 to 5.7" +msgstr "升级版本 5.6 至 5.7" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "在 Digital Factory 中查看打印机" @@ -4825,7 +5360,7 @@ msgstr "我们已经在您所选择的文件中找到一个或多个项目文件 msgctxt "@info" msgid "Webcam feeds for cloud printers cannot be viewed from UltiMaker Cura. Click \"Manage printer\" to visit Ultimaker Digital Factory and view this webcam." -msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头的反馈数据。请单击“管理打印机”以访问 UltiMaker Digital Factory 并查看此网络摄像头。" +msgstr "无法从 UltiMaker Cura 中查看云打印机的网络摄像头馈送。请单击“管理打印机”以访问 Ultimaker Digital Factory 并查看此网络摄像头。" msgctxt "@button" msgid "Website" @@ -4875,6 +5410,14 @@ msgctxt "@action:label" msgid "Width (mm)" msgstr "宽度 (mm)" +msgctxt "description" +msgid "Writes g-code to a compressed archive." +msgstr "将 G-code 写入至压缩存档文件。" + +msgctxt "description" +msgid "Writes g-code to a file." +msgstr "将 G-code 写入至文件。" + msgctxt "@label" msgid "X (Width)" msgstr "X (宽度)" @@ -4887,6 +5430,10 @@ msgctxt "@label" msgid "X min" msgstr "X 最小值" +msgctxt "name" +msgid "X-Ray View" +msgstr "透视视图" + msgctxt "@item:inlistbox" msgid "X-Ray view" msgstr "透视视图" @@ -4899,6 +5446,10 @@ msgctxt "@item:inlistbox" msgid "X3D File" msgstr "X3D 文件" +msgctxt "name" +msgid "X3D Reader" +msgstr "X3D 读取器" + msgctxt "@label" msgid "Y (Depth)" msgstr "Y (深度)" @@ -5044,554 +5595,94 @@ msgctxt "@info:generic" msgid "{} plugins failed to download" msgstr "{} 个插件下载失败" -msgctxt "description" -msgid "Manages network connections to UltiMaker networked printers." -msgstr "管理与 UltiMaker 网络打印机的网络连接。" - -msgctxt "name" -msgid "UltiMaker Network Connection" -msgstr "UltiMaker 网络连接" - -msgctxt "description" -msgid "Provides support for importing profiles from g-code files." -msgstr "提供了从 GCode 文件中导入配置文件的支持。" - -msgctxt "name" -msgid "G-code Profile Reader" -msgstr "G-code 配置文件读取器" - -msgctxt "description" -msgid "Provides a normal solid mesh view." -msgstr "提供一个基本的实体网格视图。" - -msgctxt "name" -msgid "Solid View" -msgstr "实体视图" - -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "通过逐渐平滑流量来限制高流量跳变的 CuraEngine 插件" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "CuraEngineGradualFlow" - -msgctxt "description" -msgid "Provides support for reading 3MF files." -msgstr "提供对读取 3MF 格式文件的支持。" - -msgctxt "name" -msgid "3MF Reader" -msgstr "3MF 读取器" - -msgctxt "description" -msgid "Accepts G-Code and sends them to a printer. Plugin can also update firmware." -msgstr "接受 G-Code 并将其发送到一台打印机。 插件也可以更新固件。" - -msgctxt "name" -msgid "USB printing" -msgstr "USB 联机打印" - -msgctxt "description" -msgid "Checks for firmware updates." -msgstr "检查以进行固件更新。" - -msgctxt "name" -msgid "Firmware Update Checker" -msgstr "固件更新检查程序" - -msgctxt "description" -msgid "Manages extensions to the application and allows browsing extensions from the UltiMaker website." -msgstr "管理应用程序扩展,允许从 UltiMaker 网站浏览扩展。" - -msgctxt "name" -msgid "Marketplace" -msgstr "市场" - -msgctxt "description" -msgid "Backup and restore your configuration." -msgstr "备份和还原配置。" - -msgctxt "name" -msgid "Cura Backups" -msgstr "Cura 备份" - -msgctxt "description" -msgid "Provides a way to change machine settings (such as build volume, nozzle size, etc.)." -msgstr "提供一种改变机器设置的方法(如构建体积、喷嘴大小等)。" - -msgctxt "name" -msgid "Machine Settings Action" -msgstr "打印机设置操作" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.5 to Cura 2.6." -msgstr "将配置从 Cura 2.5 版本升级至 2.6 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.5 to 2.6" -msgstr "版本自 2.5 升级到 2.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.7 to Cura 4.8." -msgstr "将配置从 Cura 4.7 升级到 Cura 4.8。" - -msgctxt "name" -msgid "Version Upgrade 4.7 to 4.8" -msgstr "将版本从 4.7 升级到 4.8" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.4 to Cura 4.5." -msgstr "将配置从 Cura 4.4 升级至 Cura 4.5。" - -msgctxt "name" -msgid "Version Upgrade 4.4 to 4.5" -msgstr "版本从 4.4 升级至 4.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.0 to Cura 3.1." -msgstr "将配置从 Cura 3.0 版本升级至 3.1 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.0 to 3.1" -msgstr "版本自 3.0 升级到 3.1" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.11 to Cura 4.12." -msgstr "将配置从 Cura 4.11 升级到 Cura 4.12。" - -msgctxt "name" -msgid "Version Upgrade 4.11 to 4.12" -msgstr "版本从 4.11 升级到 4.12" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.1 to Cura 4.2." -msgstr "请将配置从 Cura 4.1 升级至 Cura 4.2。" - -msgctxt "name" -msgid "Version Upgrade 4.1 to 4.2" -msgstr "版本自 4.1 升级到 4.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.6 to Cura 2.7." -msgstr "将配置从 Cura 2.6 版本升级至 2.7 版本。" - -msgctxt "name" -msgid "Version Upgrade 2.6 to 2.7" -msgstr "版本自 2.6 升级到 2.7" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.0 to Cura 4.6.2." -msgstr "将配置从 Cura 4.6.0 升级到 Cura 4.6.2。" - -msgctxt "name" -msgid "Version Upgrade 4.6.0 to 4.6.2" -msgstr "版本从 4.6.0 升级到 4.6.2" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.3 to Cura 3.4." -msgstr "从Cura 3.3升级到Cura 3.4。" - -msgctxt "name" -msgid "Version Upgrade 3.3 to 3.4" -msgstr "版本升级3.3到3.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.8 to Cura 4.9." -msgstr "将配置从 Cura 4.8 升级到 Cura 4.9。" - -msgctxt "name" -msgid "Version Upgrade 4.8 to 4.9" -msgstr "版本从 4.8 升级到 4.9" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.5 to Cura 4.6." -msgstr "将配置从 Cura 4.5 升级至 Cura 4.6。" - -msgctxt "name" -msgid "Version Upgrade 4.5 to 4.6" -msgstr "版本从 4.5 升级至 4.6" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.2 to Cura 4.3." -msgstr "请将配置从 Cura 4.2 升级至 Cura 4.3。" - -msgctxt "name" -msgid "Version Upgrade 4.2 to 4.3" -msgstr "版本自 4.2 升级至 4.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.2 to Cura 3.3." -msgstr "将配置从 Cura 3.2 版本升级至 3.3 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.2 to 3.3" -msgstr "版本自 3.2 升级到 3.3" - -msgctxt "description" -msgid "Upgrades configurations from Cura 4.3 to Cura 4.4." -msgstr "将配置从 Cura 4.3 升级至 Cura 4.4。" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "不推荐的组合。将 BB 内核加载到插槽 1(左侧)以获得更好的可靠性。" -msgctxt "name" -msgid "Version Upgrade 4.3 to 4.4" -msgstr "版本自 4.3 升级至 4.4" - -msgctxt "description" -msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." -msgstr "将配置从 Cura 5.6 升级到 Cura 5.7。" +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "Makerbot 粗样打印文件" -msgctxt "name" -msgid "Version Upgrade 5.6 to 5.7" -msgstr "升级版本 5.6 至 5.7" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "搜索打印机" -msgctxt "description" -msgid "Upgrades configurations from Cura 2.1 to Cura 2.2." -msgstr "将配置从 Cura 2.1 版本升级至 2.2 版本。" +msgctxt "@text:window" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" +msgstr "这是一个 Cura 通用项目文件。您想将其作为 Cura 通用项目打开还是导入其中的模型?" -msgctxt "name" -msgid "Version Upgrade 2.1 to 2.2" -msgstr "版本自 2.1 升级到 2.2" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "导出包用于技术支持" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.3 to Cura 5.4." -msgstr "将配置从 Cura 5.3 升级到 Cura 5.4。" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "无法将模型数据发送到引擎。请重试,或联系支持人员。" -msgctxt "name" -msgid "Version Upgrade 5.3 to 5.4" -msgstr "版本 5.3 升级到 5.4" +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "无法将模型数据发送到引擎。请尝试使用较少细节的模型,或减少实例数量。" msgctxt "description" -msgid "Upgrades configurations from Cura 4.9 to Cura 4.10." -msgstr "将配置从 Cura 4.9 升级到 Cura 4.10。" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "将配置从 Cura 5.8 升级到 Cura 5.9。" msgctxt "name" -msgid "Version Upgrade 4.9 to 4.10" -msgstr "版本从 4.9 升级到 4.10" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.7 to Cura 3.0." -msgstr "将配置从 Cura 2.7 版本升级至 3.0 版本。" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "版本升级 5.8 到 5.9" msgctxt "name" -msgid "Version Upgrade 2.7 to 3.0" -msgstr "版本自 2.7 升级到 3.0" +msgid "3DConnexion mouses" +msgstr "3DConnexion鼠标" msgctxt "description" -msgid "Upgrades configurations from Cura 3.5 to Cura 4.0." -msgstr "将配置从 Cura 3.5 版本升级至 4.0 版本。" +msgid "Allows working with 3D mouses inside Cura." +msgstr "允许在Cura中使用3D鼠标。" -msgctxt "name" -msgid "Version Upgrade 3.5 to 4.0" -msgstr "版本自 3.5 升级到 4.0" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "挤出机更换时间" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.2 to Cura 5.3." -msgstr "将配置从 Cura 5.2 版本升级至 5.3 版本。" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "挤出机预启动G代码" -msgctxt "name" -msgid "Version Upgrade 5.2 to 5.3" -msgstr "版本自 5.2 升级到 5.3" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "翻转模型的工具手柄Y轴(需要重启)" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.0 to Cura 4.1." -msgstr "将配置从 Cura 4.0 版本升级至 4.1 版本。" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "%1 %2的许可证" -msgctxt "name" -msgid "Version Upgrade 4.0 to 4.1" -msgstr "版本自 4.0 升级到 4.1" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "Makerbot Replicator+ 打印文件" -msgctxt "description" -msgid "Upgrades configurations from Cura 4.13 to Cura 5.0." -msgstr "将配置从 Cura 4.13 升级至 Cura 5.0。" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "是否应翻转平移工具手柄的Y轴?这只会影响模型的Y坐标,其他设置(如机器打印头设置)不受影响,仍按之前的方式运行。" -msgctxt "name" -msgid "Version Upgrade 4.13 to 5.0" -msgstr "版本从 4.13 升级到 5.0" - -msgctxt "description" -msgid "Upgrades configurations from Cura 3.4 to Cura 3.5." -msgstr "将配置从 Cura 3.4 版本升级至 3.5 版本。" - -msgctxt "name" -msgid "Version Upgrade 3.4 to 3.5" -msgstr "版本自 3.4 升级到 3.5" - -msgctxt "description" -msgid "Upgrades configurations from Cura 2.2 to Cura 2.4." -msgstr "将配置从 Cura 2.2 版本升级至 2.4 版本。" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "启动G代码必须放在首位" -msgctxt "name" -msgid "Version Upgrade 2.2 to 2.4" -msgstr "版本自 2.2 升级到 2.4" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "此配置不可用,因为核心类型%1存在不匹配问题或其他问题。请访问支持页面以查看此打印机类型在新切片方面支持哪些核心。" msgctxt "description" -msgid "Upgrades configurations from Cura 4.6.2 to Cura 4.7." -msgstr "将配置从 Cura 4.6.2 升级到 Cura 4.7。" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "将配置从Cura 5.9升级到Cura 5.10" msgctxt "name" -msgid "Version Upgrade 4.6.2 to 4.7" -msgstr "版本从 4.6.2 升级到 4.7" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "版本升级 5.9 到 5.10" -msgctxt "description" -msgid "Upgrades configurations from Cura 5.4 to Cura 5.5." -msgstr "将配置从 Cura 5.4 升级到 Cura 5.5。" - -msgctxt "name" -msgid "Version Upgrade 5.4 to 5.5" -msgstr "版本 5.4 升级到 5.5" - -msgctxt "description" -msgid "Allows loading and displaying G-code files." -msgstr "允许加载和显示 G-code 文件。" - -msgctxt "name" -msgid "G-code Reader" -msgstr "G-code 读取器" +msgctxt "@label" +msgid "Y max ( '+' towards front)" +msgstr "Y轴最大值(\"+\"朝前)" -msgctxt "description" -msgid "Submits anonymous slice info. Can be disabled through preferences." -msgstr "提交匿名切片信息。 可以通过偏好设置禁用。" - -msgctxt "name" -msgid "Slice info" -msgstr "切片信息" - -msgctxt "description" -msgid "Provides removable drive hotplugging and writing support." -msgstr "提供可移动磁盘热插拔和写入文件的支持。" - -msgctxt "name" -msgid "Removable Drive Output Device Plugin" -msgstr "可移动磁盘输出设备插件" - -msgctxt "description" -msgid "Creates an eraser mesh to block the printing of support in certain places" -msgstr "创建橡皮擦网格,以便阻止在某些位置打印支撑" - -msgctxt "name" -msgid "Support Eraser" -msgstr "支持橡皮擦" - -msgctxt "description" -msgid "Checks models and print configuration for possible printing issues and give suggestions." -msgstr "检查模型和打印配置,以了解潜在的打印问题并给出建议。" - -msgctxt "name" -msgid "Model Checker" -msgstr "模型检查器" - -msgctxt "description" -msgid "Provides a prepare stage in Cura." -msgstr "在 Cura 中提供准备阶段。" - -msgctxt "name" -msgid "Prepare Stage" -msgstr "准备阶段" - -msgctxt "description" -msgid "Provides the preview of sliced layerdata." -msgstr "提供切片层数据的预览。" - -msgctxt "name" -msgid "Simulation View" -msgstr "仿真视图" - -msgctxt "description" -msgid "Provides support for reading AMF files." -msgstr "提供对读取 AMF 文件的支持。" - -msgctxt "name" -msgid "AMF Reader" -msgstr "AMF 读取器" - -msgctxt "description" -msgid "Provides the X-Ray view." -msgstr "提供透视视图。" - -msgctxt "name" -msgid "X-Ray View" -msgstr "透视视图" - -msgctxt "description" -msgid "Provides a machine actions for updating firmware." -msgstr "为固件更新提供操作选项。" - -msgctxt "name" -msgid "Firmware Updater" -msgstr "固件更新程序" - -msgctxt "description" -msgid "Provides support for importing profiles from legacy Cura versions." -msgstr "支持从 Cura 旧版本导入配置文件。" - -msgctxt "name" -msgid "Legacy Cura Profile Reader" -msgstr "旧版 Cura 配置文件读取器" - -msgctxt "description" -msgid "Extension that allows for user created scripts for post processing" -msgstr "扩展程序(允许用户创建脚本进行后期处理)" - -msgctxt "name" -msgid "Post Processing" -msgstr "后期处理" - -msgctxt "description" -msgid "Logs certain events so that they can be used by the crash reporter" -msgstr "记录某些事件,以使其可供崩溃报告器使用" - -msgctxt "name" -msgid "Sentry Logger" -msgstr "Sentry 日志记录" - -msgctxt "description" -msgid "Provides support for writing MakerBot Format Packages." -msgstr "提供对写入 MakerBot 格式包的支持。" - -msgctxt "name" -msgid "Makerbot Printfile Writer" -msgstr "Makerbot 打印文件编写器" - -msgctxt "description" -msgid "Provides support for importing Cura profiles." -msgstr "提供了对导入 Cura 配置文件的支持。" - -msgctxt "name" -msgid "Cura Profile Reader" -msgstr "Cura 配置文件读取器" - -msgctxt "description" -msgid "Provides support for reading Ultimaker Format Packages." -msgstr "为读取 Ultimaker 格式包提供支持。" - -msgctxt "name" -msgid "UFP Reader" -msgstr "UFP 读取器" - -msgctxt "description" -msgid "Enables ability to generate printable geometry from 2D image files." -msgstr "支持从 2D 图像文件生成可打印几何模型的能力。" - -msgctxt "name" -msgid "Image Reader" -msgstr "图像读取器" - -msgctxt "description" -msgid "Provides the link to the CuraEngine slicing backend." -msgstr "提供 CuraEngine 切片后端的路径。" - -msgctxt "name" -msgid "CuraEngine Backend" -msgstr "CuraEngine 后端" - -msgctxt "description" -msgid "Writes g-code to a compressed archive." -msgstr "将 G-code 写入至压缩存档文件。" - -msgctxt "name" -msgid "Compressed G-code Writer" -msgstr "压缩 G-code 写入器" - -msgctxt "description" -msgid "Provides machine actions for Ultimaker machines (such as bed leveling wizard, selecting upgrades, etc.)." -msgstr "为 Ultimaker 车床提供机器操作(例如车床调平向导、选择升级等)。" - -msgctxt "name" -msgid "UltiMaker machine actions" -msgstr "UltiMaker 车床操作" - -msgctxt "description" -msgid "Reads g-code from a compressed archive." -msgstr "从压缩存档文件读取 G-code。" - -msgctxt "name" -msgid "Compressed G-code Reader" -msgstr "压缩 G-code 读取器" - -msgctxt "description" -msgid "Provides a preview stage in Cura." -msgstr "在 Cura 中提供预览阶段。" - -msgctxt "name" -msgid "Preview Stage" -msgstr "预览阶段" - -msgctxt "description" -msgid "Connects to the Digital Library, allowing Cura to open files from and save files to the Digital Library." -msgstr "连接到 Digital Library,以允许 Cura 从 Digital Library 打开文件并将文件保存到其中。" - -msgctxt "name" -msgid "Ultimaker Digital Library" -msgstr "Ultimaker Digital Library" - -msgctxt "description" -msgid "Provides support for exporting Cura profiles." -msgstr "提供了对导出 Cura 配置文件的支持。" - -msgctxt "name" -msgid "Cura Profile Writer" -msgstr "Cura 配置文件写入器" - -msgctxt "description" -msgid "Provides support for reading X3D files." -msgstr "支持读取 X3D 文件。" - -msgctxt "name" -msgid "X3D Reader" -msgstr "X3D 读取器" - -msgctxt "description" -msgid "Provides support for reading model files." -msgstr "提供对读取模型文件的支持。" - -msgctxt "name" -msgid "Trimesh Reader" -msgstr "Trimesh 阅读器" - -msgctxt "description" -msgid "Provides a monitor stage in Cura." -msgstr "在 Cura 中提供监视阶段。" - -msgctxt "name" -msgid "Monitor Stage" -msgstr "监视阶段" - -msgctxt "description" -msgid "Provides the Per Model Settings." -msgstr "提供对每个模型的单独设置。" - -msgctxt "name" -msgid "Per Model Settings Tool" -msgstr "单一模型设置工具" - -msgctxt "description" -msgid "Provides capabilities to read and write XML-based material profiles." -msgstr "提供读取和写入基于 XML 的材料配置文件的功能。" - -msgctxt "name" -msgid "Material Profiles" -msgstr "材料配置文件" - -msgctxt "description" -msgid "Provides support for writing 3MF and UCP files." -msgstr "支持写为 3MF 和 UCP 文件。" - -msgctxt "name" -msgid "3MF Writer" -msgstr "3MF 写入器" - -msgctxt "description" -msgid "Provides support for writing Ultimaker Format Packages." -msgstr "为写入 Ultimaker 格式包提供支持。" - -msgctxt "name" -msgid "UFP Writer" -msgstr "UFP 写入器" - -msgctxt "description" -msgid "Writes g-code to a file." -msgstr "将 G-code 写入至文件。" - -msgctxt "name" -msgid "G-code Writer" -msgstr "G-code 写入器" +msgctxt "@label" +msgid "Y min ( '-' towards back)" +msgstr "Y轴最小值(\"-\"朝后)" diff --git a/resources/i18n/zh_CN/fdmextruder.def.json.po b/resources/i18n/zh_CN/fdmextruder.def.json.po index 0b372bfc90..e4f7179a1b 100644 --- a/resources/i18n/zh_CN/fdmextruder.def.json.po +++ b/resources/i18n/zh_CN/fdmextruder.def.json.po @@ -1,4 +1,3 @@ -# msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" @@ -29,62 +28,30 @@ msgctxt "material_diameter label" msgid "Diameter" msgstr "直径" +msgctxt "machine_extruder_end_code description" +msgid "End g-code to execute when switching away from this extruder." +msgstr "在切离此挤出机时执行的结束 G-code。" + msgctxt "extruder_nr label" msgid "Extruder" msgstr "挤出机" -msgctxt "extruder_nr description" -msgid "The extruder train used for printing. This is used in multi-extrusion." -msgstr "用于打印的挤出机,在多挤出机情况下适用。" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" - -msgctxt "machine_extruder_cooling_fan_number label" -msgid "Extruder Print Cooling Fan" -msgstr "挤出机打印冷却风扇" - -msgctxt "machine_extruder_cooling_fan_number description" -msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." -msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" - msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "挤出机的结束 G-code" -msgctxt "machine_extruder_end_code description" -msgid "End g-code to execute when switching away from this extruder." -msgstr "在切离此挤出机时执行的结束 G-code。" - msgctxt "machine_extruder_end_code_duration label" msgid "Extruder End G-Code Duration" msgstr "推料器结束 G 代码持续时间" -msgctxt "machine_extruder_end_code_duration description" -msgid "The time it takes to execute the end g-code, when switching away from this extruder." -msgstr "当切走该推料器时,执行最后的 G 代码所需的时间。" - msgctxt "machine_extruder_end_pos_abs label" msgid "Extruder End Position Absolute" msgstr "挤出机终点绝对位置" -msgctxt "machine_extruder_end_pos_abs description" -msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." -msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" - msgctxt "machine_extruder_end_pos_x label" msgid "Extruder End Position X" msgstr "挤出机结束位置 X 坐标" -msgctxt "machine_extruder_end_pos_x description" -msgid "The x-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 X 坐标。" - msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "挤出机终点位置 Y 坐标" @@ -101,42 +68,42 @@ msgctxt "extruder_prime_pos_z label" msgid "Extruder Prime Z Position" msgstr "挤出机初始 Z 轴位置" -msgctxt "machine_extruder_end_pos_y description" -msgid "The y-coordinate of the ending position when turning the extruder off." -msgstr "关闭挤出机时的终止位置的 Y 坐标。" +msgctxt "machine_extruder_cooling_fan_number label" +msgid "Extruder Print Cooling Fan" +msgstr "挤出机打印冷却风扇" msgctxt "machine_extruder_start_code label" msgid "Extruder Start G-Code" msgstr "挤出机的开始 G-code" -msgctxt "machine_extruder_start_code description" -msgid "Start g-code to execute when switching to this extruder." -msgstr "在切换到此挤出机时执行的开始 G-code。" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." - msgctxt "machine_extruder_start_code_duration label" msgid "Extruder Start G-Code Duration" msgstr "推料器开始 G 代码持续时间" -msgctxt "machine_extruder_start_code_duration description" -msgid "The time it'll take to execute the start g-code, when switching to this extruder." -msgstr "当切换到该推料器时,执行起始 G 代码所需的时间。" - msgctxt "machine_extruder_start_pos_abs label" msgid "Extruder Start Position Absolute" msgstr "挤出机起点绝对位置" +msgctxt "machine_extruder_start_pos_x label" +msgid "Extruder Start Position X" +msgstr "挤出机起始位置 X 坐标" + +msgctxt "machine_extruder_start_pos_y label" +msgid "Extruder Start Position Y" +msgstr "挤出机起始位置 Y 坐标" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + +msgctxt "machine_extruder_end_pos_abs description" +msgid "Make the extruder ending position absolute rather than relative to the last-known location of the head." +msgstr "令挤出机结束位置为绝对位置,而不根据打印头的最后位置来改变。" + msgctxt "machine_extruder_start_pos_abs description" msgid "Make the extruder starting position absolute rather than relative to the last-known location of the head." msgstr "令挤出机起始位置为绝对位置,而不根据打印头的最后位置来改变。" @@ -157,42 +124,98 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "喷嘴 ID" -msgctxt "machine_extruder_start_pos_x label" -msgid "Extruder Start Position X" -msgstr "挤出机起始位置 X 坐标" - -msgctxt "machine_extruder_start_pos_x description" -msgid "The x-coordinate of the starting position when turning the extruder on." -msgstr "打开挤出机时起始位置的 X 坐标。" - -msgctxt "machine_extruder_start_pos_y label" -msgid "Extruder Start Position Y" -msgstr "挤出机起始位置 Y 坐标" - -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" - -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" - -msgctxt "machine_extruder_start_pos_y description" -msgid "The y-coordinate of the starting position when turning the extruder on." -msgstr "打开挤压机时的起始位置 Y 坐标。" - msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "喷嘴 X 轴偏移量" -msgctxt "machine_nozzle_offset_x description" -msgid "The x-coordinate of the offset of the nozzle." -msgstr "喷嘴 X 轴坐标偏移。" - msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "喷嘴 Y 轴偏移量" +msgctxt "machine_extruder_start_code description" +msgid "Start g-code to execute when switching to this extruder." +msgstr "在切换到此挤出机时执行的开始 G-code。" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +msgctxt "extruder_nr description" +msgid "The extruder train used for printing. This is used in multi-extrusion." +msgstr "用于打印的挤出机,在多挤出机情况下适用。" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" + +msgctxt "machine_extruder_cooling_fan_number description" +msgid "The number of the print cooling fan associated with this extruder. Only change this from the default value of 0 when you have a different print cooling fan for each extruder." +msgstr "打印冷却风扇的数量与该挤出机有关。仅在每个挤出机都对应不同的打印冷却风扇时,对默认值 0 进行更改。" + +msgctxt "machine_extruder_end_code_duration description" +msgid "The time it takes to execute the end g-code, when switching away from this extruder." +msgstr "当切走该推料器时,执行最后的 G 代码所需的时间。" + +msgctxt "machine_extruder_start_code_duration description" +msgid "The time it'll take to execute the start g-code, when switching to this extruder." +msgstr "当切换到该推料器时,执行起始 G 代码所需的时间。" + +msgctxt "machine_extruder_end_pos_x description" +msgid "The x-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 X 坐标。" + +msgctxt "machine_nozzle_offset_x description" +msgid "The x-coordinate of the offset of the nozzle." +msgstr "喷嘴 X 轴坐标偏移。" + +msgctxt "machine_extruder_start_pos_x description" +msgid "The x-coordinate of the starting position when turning the extruder on." +msgstr "打开挤出机时起始位置的 X 坐标。" + +msgctxt "machine_extruder_end_pos_y description" +msgid "The y-coordinate of the ending position when turning the extruder off." +msgstr "关闭挤出机时的终止位置的 Y 坐标。" + msgctxt "machine_nozzle_offset_y description" msgid "The y-coordinate of the offset of the nozzle." msgstr "喷嘴 Y 轴坐标偏移。" + +msgctxt "machine_extruder_start_pos_y description" +msgid "The y-coordinate of the starting position when turning the extruder on." +msgstr "打开挤压机时的起始位置 Y 坐标。" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "喷嘴长度" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "喷嘴尖端与打印头最低部分之间的高度差。" + +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "挤出机更换时间" + +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "挤出机预启动G代码" + +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "在切换到此挤出机之前执行的预启动G代码。" + +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "当使用多工具设置时,此值为工具更换时间(以秒为单位)。此值将根据发生的更换次数添加到估计时间中。" diff --git a/resources/i18n/zh_CN/fdmprinter.def.json.po b/resources/i18n/zh_CN/fdmprinter.def.json.po index 80d5169847..62ec57f188 100644 --- a/resources/i18n/zh_CN/fdmprinter.def.json.po +++ b/resources/i18n/zh_CN/fdmprinter.def.json.po @@ -12,5560 +12,158 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -msgctxt "machine_settings label" -msgid "Machine" -msgstr "机器" +msgctxt "prime_tower_mode description" +msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " +msgstr "如何空心主塔:
    • 通常的:创建一个桶状结构,在其中填充辅助材料
    • 交错的: 创建一个尽可能稀疏的主塔。这将节省时间和丝材,但只有当所用材料粘附在每个部件上时才有可能
    " -msgctxt "machine_settings description" -msgid "Machine specific settings" -msgstr "机器详细设置" - -msgctxt "machine_name label" -msgid "Machine Type" -msgstr "机器类型" - -msgctxt "machine_name description" -msgid "The name of your 3D printer model." -msgstr "您的 3D 打印机型号的名称。" - -msgctxt "machine_show_variants label" -msgid "Show Machine Variants" -msgstr "显示打印机变体" - -msgctxt "machine_show_variants description" -msgid "Whether to show the different variants of this machine, which are described in separate json files." -msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" - -msgctxt "machine_start_gcode label" -msgid "Start G-code" -msgstr "开始 G-code" - -msgctxt "machine_start_gcode description" -msgid "G-code commands to be executed at the very start - separated by \n." -msgstr "在开始时执行的 G-code 命令 - 以 " -" 分行。" - -msgctxt "machine_end_gcode label" -msgid "End G-code" -msgstr "结束 G-code" - -msgctxt "machine_end_gcode description" -msgid "G-code commands to be executed at the very end - separated by \n." -msgstr "在结束前执行的 G-code 命令 - 以 " -" 分行。" - -msgctxt "material_guid label" -msgid "Material GUID" -msgstr "材料 GUID" - -msgctxt "material_guid description" -msgid "GUID of the material. This is set automatically." -msgstr "材料 GUID,此项为自动设置。" - -msgctxt "material_type label" -msgid "Material Type" -msgstr "材料种类" - -msgctxt "material_type description" -msgid "The type of material used." -msgstr "所用的材料类型。" - -msgctxt "material_brand label" -msgid "Material Brand" -msgstr "材料品牌" - -msgctxt "material_brand description" -msgid "The brand of material used." -msgstr "所用材料的品牌。" - -msgctxt "material_diameter label" -msgid "Diameter" -msgstr "直径" - -msgctxt "material_diameter description" -msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." -msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" - -msgctxt "material_bed_temp_wait label" -msgid "Wait for Build Plate Heatup" -msgstr "等待打印平台加热" - -msgctxt "material_bed_temp_wait description" -msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." -msgstr "是否插入一条命令,等待开始时达到打印平台温度。" - -msgctxt "material_print_temp_wait label" -msgid "Wait for Nozzle Heatup" -msgstr "等待喷嘴加热" - -msgctxt "material_print_temp_wait description" -msgid "Whether to wait until the nozzle temperature is reached at the start." -msgstr "是否等待开始时达到喷嘴温度。" - -msgctxt "material_print_temp_prepend label" -msgid "Include Material Temperatures" -msgstr "包含材料温度" - -msgctxt "material_print_temp_prepend description" -msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." -msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。" - -msgctxt "material_bed_temp_prepend label" -msgid "Include Build Plate Temperature" -msgstr "包含打印平台温度" - -msgctxt "material_bed_temp_prepend description" -msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." -msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。" - -msgctxt "machine_width label" -msgid "Machine Width" -msgstr "机器宽度" - -msgctxt "machine_width description" -msgid "The width (X-direction) of the printable area." -msgstr "机器可打印区域宽度(X 坐标)" - -msgctxt "machine_depth label" -msgid "Machine Depth" -msgstr "机器深度" - -msgctxt "machine_depth description" -msgid "The depth (Y-direction) of the printable area." -msgstr "机器可打印区域深度(Y 坐标)" - -msgctxt "machine_height label" -msgid "Machine Height" -msgstr "机器高度" - -msgctxt "machine_height description" -msgid "The height (Z-direction) of the printable area." -msgstr "机器可打印区域高度(Z 坐标)" - -msgctxt "machine_shape label" -msgid "Build Plate Shape" -msgstr "打印平台形状" - -msgctxt "machine_shape description" -msgid "The shape of the build plate without taking unprintable areas into account." -msgstr "打印平台形状(不考虑不可打印区域)。" - -msgctxt "machine_shape option rectangular" -msgid "Rectangular" -msgstr "矩形" - -msgctxt "machine_shape option elliptic" -msgid "Elliptic" -msgstr "类圆形" - -msgctxt "machine_buildplate_type label" -msgid "Build Plate Material" -msgstr "打印平台材料" - -msgctxt "machine_buildplate_type description" -msgid "The material of the build plate installed on the printer." -msgstr "打印平台材料已安装在打印机上。" - -msgctxt "machine_buildplate_type option glass" -msgid "Glass" -msgstr "玻璃" - -msgctxt "machine_buildplate_type option aluminum" -msgid "Aluminum" -msgstr "铝" - -msgctxt "machine_heated_bed label" -msgid "Has Heated Build Plate" -msgstr "有加热打印平台" - -msgctxt "machine_heated_bed description" -msgid "Whether the machine has a heated build plate present." -msgstr "机器是否有加热打印平台。" - -msgctxt "machine_heated_build_volume label" -msgid "Has Build Volume Temperature Stabilization" -msgstr "具有构建体积温度稳定性" - -msgctxt "machine_heated_build_volume description" -msgid "Whether the machine is able to stabilize the build volume temperature." -msgstr "机器是否能够稳定构建体积温度。" - -msgctxt "machine_always_write_active_tool label" -msgid "Always Write Active Tool" -msgstr "始终写入活动工具" - -msgctxt "machine_always_write_active_tool description" -msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." -msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" - -msgctxt "machine_center_is_zero label" -msgid "Is Center Origin" -msgstr "位于中心" - -msgctxt "machine_center_is_zero description" -msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." -msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。" - -msgctxt "machine_extruder_count label" -msgid "Number of Extruders" -msgstr "挤出机数目" - -msgctxt "machine_extruder_count description" -msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." -msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" - -msgctxt "extruders_enabled_count label" -msgid "Number of Extruders That Are Enabled" -msgstr "已启用的挤出机数目" - -msgctxt "extruders_enabled_count description" -msgid "Number of extruder trains that are enabled; automatically set in software" -msgstr "已启用的挤出机组数目;软件自动设置" - -msgctxt "machine_nozzle_tip_outer_diameter label" -msgid "Outer Nozzle Diameter" -msgstr "喷嘴外径" - -msgctxt "machine_nozzle_tip_outer_diameter description" -msgid "The outer diameter of the tip of the nozzle." -msgstr "喷嘴尖端的外径。" - -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "喷嘴长度" - -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "喷嘴尖端与打印头最低部分之间的高度差。" - -msgctxt "machine_nozzle_expansion_angle label" -msgid "Nozzle Angle" -msgstr "喷嘴角度" - -msgctxt "machine_nozzle_expansion_angle description" -msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." -msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。" - -msgctxt "machine_heat_zone_length label" -msgid "Heat Zone Length" -msgstr "加热区长度" - -msgctxt "machine_heat_zone_length description" -msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." -msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" - -msgctxt "machine_nozzle_temp_enabled label" -msgid "Enable Nozzle Temperature Control" -msgstr "启用喷嘴温度控制" - -msgctxt "machine_nozzle_temp_enabled description" -msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." -msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。" - -msgctxt "machine_nozzle_heat_up_speed label" -msgid "Heat Up Speed" -msgstr "升温速度" - -msgctxt "machine_nozzle_heat_up_speed description" -msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." -msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" - -msgctxt "machine_nozzle_cool_down_speed label" -msgid "Cool Down Speed" -msgstr "冷却速度" - -msgctxt "machine_nozzle_cool_down_speed description" -msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." -msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" - -msgctxt "machine_min_cool_heat_time_window label" -msgid "Minimal Time Standby Temperature" -msgstr "最短时间待机温度" - -msgctxt "machine_min_cool_heat_time_window description" -msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." -msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" - -msgctxt "machine_gcode_flavor label" -msgid "G-code Flavor" -msgstr "G-code 风格" - -msgctxt "machine_gcode_flavor description" -msgid "The type of g-code to be generated." -msgstr "需要生成的 G-code 类型。" - -msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" -msgid "Marlin" -msgstr "Marlin" - -msgctxt "machine_gcode_flavor option RepRap (Volumetric)" -msgid "Marlin (Volumetric)" -msgstr "Marlin(容积)" - -msgctxt "machine_gcode_flavor option RepRap (RepRap)" -msgid "RepRap" -msgstr "RepRap" - -msgctxt "machine_gcode_flavor option UltiGCode" -msgid "Ultimaker 2" -msgstr "Ultimaker 2" - -msgctxt "machine_gcode_flavor option Griffin" -msgid "Griffin" -msgstr "Griffin" - -msgctxt "machine_gcode_flavor option Makerbot" -msgid "Makerbot" -msgstr "Makerbot" - -msgctxt "machine_gcode_flavor option BFB" -msgid "Bits from Bytes" -msgstr "Bits from Bytes" - -msgctxt "machine_gcode_flavor option MACH3" -msgid "Mach3" -msgstr "Mach3" - -msgctxt "machine_gcode_flavor option Repetier" -msgid "Repetier" -msgstr "Repetier" - -msgctxt "machine_firmware_retract label" -msgid "Firmware Retraction" -msgstr "固件收回" - -msgctxt "machine_firmware_retract description" -msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." -msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。" - -msgctxt "machine_extruders_share_heater label" -msgid "Extruders Share Heater" -msgstr "挤出器共用加热器" - -msgctxt "machine_extruders_share_heater description" -msgid "Whether the extruders share a single heater rather than each extruder having its own heater." -msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" - -msgctxt "machine_extruders_share_nozzle label" -msgid "Extruders Share Nozzle" -msgstr "挤出器共用喷嘴" - -msgctxt "machine_extruders_share_nozzle description" -msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." -msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction label" -msgid "Shared Nozzle Initial Retraction" -msgstr "共用喷嘴初始缩回" - -msgctxt "machine_extruders_shared_nozzle_initial_retraction description" -msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." -msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" - -msgctxt "machine_disallowed_areas label" -msgid "Disallowed Areas" -msgstr "不允许区域" - -msgctxt "machine_disallowed_areas description" -msgid "A list of polygons with areas the print head is not allowed to enter." -msgstr "包含不允许打印头进入区域的多边形列表。" - -msgctxt "nozzle_disallowed_areas label" -msgid "Nozzle Disallowed Areas" -msgstr "喷嘴不允许区域" - -msgctxt "nozzle_disallowed_areas description" -msgid "A list of polygons with areas the nozzle is not allowed to enter." -msgstr "包含不允许喷嘴进入区域的多边形列表。" - -msgctxt "machine_head_with_fans_polygon label" -msgid "Machine Head & Fan Polygon" -msgstr "机器头和风扇多边形" - -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" - -msgctxt "gantry_height label" -msgid "Gantry Height" -msgstr "十字轴高度" - -msgctxt "gantry_height description" -msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." -msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" - -msgctxt "machine_nozzle_id label" -msgid "Nozzle ID" -msgstr "喷嘴 ID" - -msgctxt "machine_nozzle_id description" -msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." -msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" - -msgctxt "machine_nozzle_size label" -msgid "Nozzle Diameter" -msgstr "喷嘴直径" - -msgctxt "machine_nozzle_size description" -msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." -msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" - -msgctxt "machine_use_extruder_offset_to_offset_coords label" -msgid "Offset with Extruder" -msgstr "挤出机偏移量" - -msgctxt "machine_use_extruder_offset_to_offset_coords description" -msgid "Apply the extruder offset to the coordinate system. Affects all extruders." -msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" - -msgctxt "extruder_prime_pos_z label" -msgid "Extruder Prime Z Position" -msgstr "挤出机初始 Z 轴位置" - -msgctxt "extruder_prime_pos_z description" -msgid "The Z coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." - -msgctxt "extruder_prime_pos_abs label" -msgid "Absolute Extruder Prime Position" -msgstr "绝对挤出机主要位置" - -msgctxt "extruder_prime_pos_abs description" -msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." -msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" - -msgctxt "machine_max_feedrate_x label" -msgid "Maximum Speed X" -msgstr "X 轴最大速度" - -msgctxt "machine_max_feedrate_x description" -msgid "The maximum speed for the motor of the X-direction." -msgstr "X 轴方向电机的最大速度。" - -msgctxt "machine_max_feedrate_y label" -msgid "Maximum Speed Y" -msgstr "Y 轴最大速度" - -msgctxt "machine_max_feedrate_y description" -msgid "The maximum speed for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大速度。" - -msgctxt "machine_max_feedrate_z label" -msgid "Maximum Speed Z" -msgstr "Z 轴最大速度" - -msgctxt "machine_max_feedrate_z description" -msgid "The maximum speed for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大速度。" - -msgctxt "machine_max_feedrate_e label" -msgid "Maximum Speed E" -msgstr "E 轴最大速度" - -msgctxt "machine_max_feedrate_e description" -msgid "The maximum speed of the filament." -msgstr "耗材的最大速度。" - -msgctxt "machine_max_acceleration_x label" -msgid "Maximum Acceleration X" -msgstr "X 轴最大加速度" - -msgctxt "machine_max_acceleration_x description" -msgid "Maximum acceleration for the motor of the X-direction" -msgstr "X 轴方向电机的最大加速度" - -msgctxt "machine_max_acceleration_y label" -msgid "Maximum Acceleration Y" -msgstr "轴最大加速度" - -msgctxt "machine_max_acceleration_y description" -msgid "Maximum acceleration for the motor of the Y-direction." -msgstr "Y 轴方向电机的最大加速度。" - -msgctxt "machine_max_acceleration_z label" -msgid "Maximum Acceleration Z" -msgstr "Z 轴最大加速度" - -msgctxt "machine_max_acceleration_z description" -msgid "Maximum acceleration for the motor of the Z-direction." -msgstr "Z 轴方向电机的最大加速度。" - -msgctxt "machine_max_acceleration_e label" -msgid "Maximum Filament Acceleration" -msgstr "挤出电机最大加速度" - -msgctxt "machine_max_acceleration_e description" -msgid "Maximum acceleration for the motor of the filament." -msgstr "耗材电机的最大加速度。" - -msgctxt "machine_acceleration label" -msgid "Default Acceleration" -msgstr "默认加速度" - -msgctxt "machine_acceleration description" -msgid "The default acceleration of print head movement." -msgstr "打印头移动的默认加速度。" - -msgctxt "machine_max_jerk_xy label" -msgid "Default X-Y Jerk" -msgstr "默认 X-Y 平面抖动速度(Jerk)" - -msgctxt "machine_max_jerk_xy description" -msgid "Default jerk for movement in the horizontal plane." -msgstr "水平面移动的默认抖动速度。" - -msgctxt "machine_max_jerk_z label" -msgid "Default Z Jerk" -msgstr "默认 Z 轴抖动速度(Jerk)" - -msgctxt "machine_max_jerk_z description" -msgid "Default jerk for the motor of the Z-direction." -msgstr "Z 轴方向电机的默认抖动速度。" - -msgctxt "machine_max_jerk_e label" -msgid "Default Filament Jerk" -msgstr "默认挤出电机 Jerk" - -msgctxt "machine_max_jerk_e description" -msgid "Default jerk for the motor of the filament." -msgstr "耗材电机的默认抖动速度。" - -msgctxt "machine_steps_per_mm_x label" -msgid "Steps per Millimeter (X)" -msgstr "每毫米步数 (X)" - -msgctxt "machine_steps_per_mm_x description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." -msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。" - -msgctxt "machine_steps_per_mm_y label" -msgid "Steps per Millimeter (Y)" -msgstr "每毫米步数 (Y)" - -msgctxt "machine_steps_per_mm_y description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." -msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。" - -msgctxt "machine_steps_per_mm_z label" -msgid "Steps per Millimeter (Z)" -msgstr "每毫米步数 (Z)" - -msgctxt "machine_steps_per_mm_z description" -msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." -msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。" - -msgctxt "machine_steps_per_mm_e label" -msgid "Steps per Millimeter (E)" -msgstr "每毫米步数 (E)" - -msgctxt "machine_steps_per_mm_e description" -msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." -msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" - -msgctxt "machine_endstop_positive_direction_x label" -msgid "X Endstop in Positive Direction" -msgstr "正向 X 限位开关" - -msgctxt "machine_endstop_positive_direction_x description" -msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." -msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。" - -msgctxt "machine_endstop_positive_direction_y label" -msgid "Y Endstop in Positive Direction" -msgstr "正向 Y 限位开关" - -msgctxt "machine_endstop_positive_direction_y description" -msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." -msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。" - -msgctxt "machine_endstop_positive_direction_z label" -msgid "Z Endstop in Positive Direction" -msgstr "正向 Z 限位开关" - -msgctxt "machine_endstop_positive_direction_z description" -msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." -msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。" - -msgctxt "machine_minimum_feedrate label" -msgid "Minimum Feedrate" -msgstr "最小进料速率" - -msgctxt "machine_minimum_feedrate description" -msgid "The minimal movement speed of the print head." -msgstr "打印头的最低移动速度。" - -msgctxt "machine_feeder_wheel_diameter label" -msgid "Feeder Wheel Diameter" -msgstr "进料装置驱动轮的直径" - -msgctxt "machine_feeder_wheel_diameter description" -msgid "The diameter of the wheel that drives the material in the feeder." -msgstr "进料装置中材料驱动轮的直径。" - -msgctxt "machine_scale_fan_speed_zero_to_one label" -msgid "Scale Fan Speed To 0-1" -msgstr "在 0 到 1 范围内设置风扇速度" - -msgctxt "machine_scale_fan_speed_zero_to_one description" -msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." -msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。" - -msgctxt "resolution label" -msgid "Quality" -msgstr "质量" - -msgctxt "resolution description" -msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" -msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" - -msgctxt "layer_height label" -msgid "Layer Height" -msgstr "层高" - -msgctxt "layer_height description" -msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." -msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" - -msgctxt "layer_height_0 label" -msgid "Initial Layer Height" -msgstr "起始层高" - -msgctxt "layer_height_0 description" -msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." -msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" - -msgctxt "line_width label" -msgid "Line Width" -msgstr "走线宽度" - -msgctxt "line_width description" -msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." -msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" - -msgctxt "wall_line_width label" -msgid "Wall Line Width" -msgstr "走线宽度(壁)" - -msgctxt "wall_line_width description" -msgid "Width of a single wall line." -msgstr "单一壁线宽度。" - -msgctxt "wall_line_width_0 label" -msgid "Outer Wall Line Width" -msgstr "走线宽度(外壁)" - -msgctxt "wall_line_width_0 description" -msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." -msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。" - -msgctxt "wall_line_width_x label" -msgid "Inner Wall(s) Line Width" -msgstr "走线宽度(内壁)" - -msgctxt "wall_line_width_x description" -msgid "Width of a single wall line for all wall lines except the outermost one." -msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" - -msgctxt "skin_line_width label" -msgid "Top/Bottom Line Width" -msgstr "走线宽度(顶层 / 底层)" - -msgctxt "skin_line_width description" -msgid "Width of a single top/bottom line." -msgstr "单一顶层/底层走线宽度。" - -msgctxt "infill_line_width label" -msgid "Infill Line Width" -msgstr "走线宽度(填充)" - -msgctxt "infill_line_width description" -msgid "Width of a single infill line." -msgstr "单一填充走线宽度。" - -msgctxt "skirt_brim_line_width label" -msgid "Skirt/Brim Line Width" -msgstr "走线宽度(Skirt / Brim)" - -msgctxt "skirt_brim_line_width description" -msgid "Width of a single skirt or brim line." -msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" - -msgctxt "support_line_width label" -msgid "Support Line Width" -msgstr "走线宽度(支撑结构)" - -msgctxt "support_line_width description" -msgid "Width of a single support structure line." -msgstr "单一支撑结构走线宽度。" - -msgctxt "support_interface_line_width label" -msgid "Support Interface Line Width" -msgstr "走线宽度(支撑接触面)" - -msgctxt "support_interface_line_width description" -msgid "Width of a single line of support roof or floor." -msgstr "支撑顶板或底板单一走线宽度。" - -msgctxt "support_roof_line_width label" -msgid "Support Roof Line Width" -msgstr "支撑顶板走线宽度" - -msgctxt "support_roof_line_width description" -msgid "Width of a single support roof line." -msgstr "单一支撑顶板走线宽度。" - -msgctxt "support_bottom_line_width label" -msgid "Support Floor Line Width" -msgstr "支撑底板走线宽度" - -msgctxt "support_bottom_line_width description" -msgid "Width of a single support floor line." -msgstr "单一支撑底板走线宽度。" - -msgctxt "prime_tower_line_width label" -msgid "Prime Tower Line Width" -msgstr "装填塔走线宽度" - -msgctxt "prime_tower_line_width description" -msgid "Width of a single prime tower line." -msgstr "单一装填走线宽度。" - -msgctxt "initial_layer_line_width_factor label" -msgid "Initial Layer Line Width" -msgstr "起始层走线宽度" - -msgctxt "initial_layer_line_width_factor description" -msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." -msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" - -msgctxt "shell label" -msgid "Walls" -msgstr "墙" - -msgctxt "shell description" -msgid "Shell" -msgstr "外壳" - -msgctxt "wall_extruder_nr label" -msgid "Wall Extruder" -msgstr "壁挤出机" - -msgctxt "wall_extruder_nr description" -msgid "The extruder train used for printing the walls. This is used in multi-extrusion." -msgstr "用于打印壁的挤出机组。 用于多重挤出。" - -msgctxt "wall_0_extruder_nr label" -msgid "Outer Wall Extruder" -msgstr "外壁挤出机" - -msgctxt "wall_0_extruder_nr description" -msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." -msgstr "用于打印外壁的挤出机组。 用于多重挤出。" - -msgctxt "wall_x_extruder_nr label" -msgid "Inner Wall Extruder" -msgstr "内壁挤出机" - -msgctxt "wall_x_extruder_nr description" -msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." -msgstr "用于打印内壁的挤出机组。 用于多重挤出。" - -msgctxt "wall_thickness label" -msgid "Wall Thickness" -msgstr "壁厚" - -msgctxt "wall_thickness description" -msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." -msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" - -msgctxt "wall_line_count label" -msgid "Wall Line Count" -msgstr "壁走线次数" - -msgctxt "wall_line_count description" -msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." -msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。" - -msgctxt "wall_transition_length label" -msgid "Wall Transition Length" -msgstr "壁过渡长度" - -msgctxt "wall_transition_length description" -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 lines." -msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" - -msgctxt "wall_distribution_count label" -msgid "Wall Distribution Count" -msgstr "壁分派次数" - -msgctxt "wall_distribution_count description" -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 "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" - -msgctxt "wall_transition_angle label" -msgid "Wall Transitioning Threshold Angle" -msgstr "壁过渡阈值角度" - -msgctxt "wall_transition_angle description" -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 "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" - -msgctxt "wall_transition_filter_distance label" -msgid "Wall Transitioning Filter Distance" -msgstr "壁过渡筛选距离" - -msgctxt "wall_transition_filter_distance description" -msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." -msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" - -msgctxt "wall_transition_filter_deviation label" -msgid "Wall Transitioning Filter Margin" -msgstr "壁过渡筛选边距" - -msgctxt "wall_transition_filter_deviation description" -msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." -msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" - -msgctxt "wall_0_wipe_dist label" -msgid "Outer Wall Wipe Distance" -msgstr "外壁擦嘴长度" - -msgctxt "wall_0_wipe_dist description" -msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." -msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。" - -msgctxt "wall_0_inset label" -msgid "Outer Wall Inset" -msgstr "外壁嵌入" - -msgctxt "wall_0_inset description" -msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." -msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" - -msgctxt "optimize_wall_printing_order label" -msgid "Optimize Wall Printing Order" -msgstr "优化壁打印顺序" - -msgctxt "optimize_wall_printing_order description" -msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." -msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" - -msgctxt "inset_direction label" -msgid "Wall Ordering" -msgstr "壁顺序" - -msgctxt "inset_direction description" -msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." -msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" - -msgctxt "inset_direction option inside_out" -msgid "Inside To Outside" -msgstr "从内到外" - -msgctxt "inset_direction option outside_in" -msgid "Outside To Inside" -msgstr "从外到内" - -msgctxt "alternate_extra_perimeter label" -msgid "Alternate Extra Wall" -msgstr "交替备用壁" - -msgctxt "alternate_extra_perimeter description" -msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." -msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" - -msgctxt "min_wall_line_width label" -msgid "Minimum Wall Line Width" -msgstr "最小壁走线宽度" - -msgctxt "min_wall_line_width description" -msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." -msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" - -msgctxt "min_even_wall_line_width label" -msgid "Minimum Even Wall Line Width" -msgstr "最小偶数壁走线宽度" - -msgctxt "min_even_wall_line_width description" -msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." -msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。" - -msgctxt "min_odd_wall_line_width label" -msgid "Minimum Odd Wall Line Width" -msgstr "最小奇数壁走线宽度" - -msgctxt "min_odd_wall_line_width description" -msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." -msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。" - -msgctxt "fill_outline_gaps label" -msgid "Print Thin Walls" -msgstr "打印薄壁" - -msgctxt "fill_outline_gaps description" -msgid "Print pieces of the model which are horizontally thinner than the nozzle size." -msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" - -msgctxt "min_feature_size label" -msgid "Minimum Feature Size" -msgstr "最小特征尺寸" - -msgctxt "min_feature_size description" -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 Line Width." -msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" - -msgctxt "min_bead_width label" -msgid "Minimum Thin Wall Line Width" -msgstr "最小薄壁走线宽度" - -msgctxt "min_bead_width description" -msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." -msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" - -msgctxt "xy_offset label" -msgid "Horizontal Expansion" -msgstr "水平扩展" - -msgctxt "xy_offset description" -msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." -msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" - -msgctxt "xy_offset_layer_0 label" -msgid "Initial Layer Horizontal Expansion" -msgstr "起始层水平扩展" - -msgctxt "xy_offset_layer_0 description" -msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." -msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" - -msgctxt "hole_xy_offset label" -msgid "Hole Horizontal Expansion" -msgstr "孔洞水平扩展" - -msgctxt "hole_xy_offset description" -msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." -msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。" - -msgctxt "hole_xy_offset_max_diameter label" -msgid "Hole Horizontal Expansion Max Diameter" -msgstr "孔洞水平扩展最大直径" - -msgctxt "hole_xy_offset_max_diameter description" -msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." -msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。" - -msgctxt "z_seam_type label" -msgid "Z Seam Alignment" -msgstr "Z 缝对齐" - -msgctxt "z_seam_type description" -msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." -msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" - -msgctxt "z_seam_type option back" -msgid "User Specified" -msgstr "用户指定" - -msgctxt "z_seam_type option shortest" -msgid "Shortest" -msgstr "最短" - -msgctxt "z_seam_type option random" -msgid "Random" -msgstr "随机" - -msgctxt "z_seam_type option sharpest_corner" -msgid "Sharpest Corner" -msgstr "最尖角" - -msgctxt "z_seam_position label" -msgid "Z Seam Position" -msgstr "Z 缝位置" - -msgctxt "z_seam_position description" -msgid "The position near where to start printing each part in a layer." -msgstr "在该位置附近开始打印层中各个部分。" - -msgctxt "z_seam_position option backleft" -msgid "Back Left" -msgstr "左后方" - -msgctxt "z_seam_position option back" -msgid "Back" -msgstr "返回" - -msgctxt "z_seam_position option backright" -msgid "Back Right" -msgstr "右后方" - -msgctxt "z_seam_position option right" -msgid "Right" -msgstr "右侧" - -msgctxt "z_seam_position option frontright" -msgid "Front Right" -msgstr "右前方" - -msgctxt "z_seam_position option front" -msgid "Front" -msgstr "前方" - -msgctxt "z_seam_position option frontleft" -msgid "Front Left" -msgstr "左前方" - -msgctxt "z_seam_position option left" -msgid "Left" -msgstr "左侧" - -msgctxt "z_seam_x label" -msgid "Z Seam X" -msgstr "Z 缝 X" - -msgctxt "z_seam_x description" -msgid "The X coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" - -msgctxt "z_seam_y label" -msgid "Z Seam Y" -msgstr "Z 缝 Y" - -msgctxt "z_seam_y description" -msgid "The Y coordinate of the position near where to start printing each part in a layer." -msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" - -msgctxt "z_seam_corner label" -msgid "Seam Corner Preference" -msgstr "缝隙角偏好设置" - -msgctxt "z_seam_corner description" -msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." -msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" - -msgctxt "z_seam_corner option z_seam_corner_none" -msgid "None" -msgstr "无" - -msgctxt "z_seam_corner option z_seam_corner_inner" -msgid "Hide Seam" -msgstr "隐藏缝隙" - -msgctxt "z_seam_corner option z_seam_corner_outer" -msgid "Expose Seam" -msgstr "外露缝隙" - -msgctxt "z_seam_corner option z_seam_corner_any" -msgid "Hide or Expose Seam" -msgstr "隐藏或外露缝隙" - -msgctxt "z_seam_corner option z_seam_corner_weighted" -msgid "Smart Hiding" -msgstr "智能隐藏" - -msgctxt "z_seam_relative label" -msgid "Z Seam Relative" -msgstr "Z 缝相对" - -msgctxt "z_seam_relative description" -msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." -msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" - -msgctxt "top_bottom label" -msgid "Top/Bottom" -msgstr "顶 / 底层" - -msgctxt "top_bottom description" -msgid "Top/Bottom" -msgstr "顶 / 底层" - -msgctxt "roofing_extruder_nr label" -msgid "Top Surface Skin Extruder" -msgstr "顶部皮肤挤出机" - -msgctxt "roofing_extruder_nr description" -msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." -msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" - -msgctxt "roofing_layer_count label" -msgid "Top Surface Skin Layers" -msgstr "顶部表面皮肤层" - -msgctxt "roofing_layer_count description" -msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." -msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" - -msgctxt "roofing_line_width label" -msgid "Top Surface Skin Line Width" -msgstr "顶部表面皮肤线宽" - -msgctxt "roofing_line_width description" -msgid "Width of a single line of the areas at the top of the print." -msgstr "打印顶部区域单一走线宽度。" - -msgctxt "roofing_pattern label" -msgid "Top Surface Skin Pattern" -msgstr "顶部表面皮肤图案" - -msgctxt "roofing_pattern description" -msgid "The pattern of the top most layers." -msgstr "最顶层图案。" - -msgctxt "roofing_pattern option lines" -msgid "Lines" -msgstr "走线" - -msgctxt "roofing_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -msgctxt "roofing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -msgctxt "roofing_monotonic label" -msgid "Monotonic Top Surface Order" -msgstr "单调顶部表面顺序" - -msgctxt "roofing_monotonic description" -msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" - -msgctxt "roofing_angles label" -msgid "Top Surface Skin Line Directions" -msgstr "顶部表面皮肤走线方向" - -msgctxt "roofing_angles description" -msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" - -msgctxt "top_bottom_extruder_nr label" -msgid "Top/Bottom Extruder" -msgstr "顶部/底部挤出机" - -msgctxt "top_bottom_extruder_nr description" -msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." -msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" - -msgctxt "top_bottom_thickness label" -msgid "Top/Bottom Thickness" -msgstr "顶层 / 底层厚度" - -msgctxt "top_bottom_thickness description" -msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." -msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" - -msgctxt "top_thickness label" -msgid "Top Thickness" -msgstr "顶层厚度" - -msgctxt "top_thickness description" -msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." -msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" - -msgctxt "top_layers label" -msgid "Top Layers" -msgstr "顶部层数" - -msgctxt "top_layers description" -msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." -msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" - -msgctxt "bottom_thickness label" -msgid "Bottom Thickness" -msgstr "底层厚度" - -msgctxt "bottom_thickness description" -msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." -msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。" - -msgctxt "bottom_layers label" -msgid "Bottom Layers" -msgstr "底部层数" - -msgctxt "bottom_layers description" -msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。" - -msgctxt "initial_bottom_layers label" -msgid "Initial Bottom Layers" -msgstr "初始底层数" - -msgctxt "initial_bottom_layers description" -msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." -msgstr "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" - -msgctxt "top_bottom_pattern label" -msgid "Top/Bottom Pattern" -msgstr "顶部 / 底部走线图案" - -msgctxt "top_bottom_pattern description" -msgid "The pattern of the top/bottom layers." -msgstr "顶层/底层图案。" - -msgctxt "top_bottom_pattern option lines" -msgid "Lines" -msgstr "直线" - -msgctxt "top_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" - -msgctxt "top_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -msgctxt "top_bottom_pattern_0 label" -msgid "Bottom Pattern Initial Layer" -msgstr "底层图案起始层" - -msgctxt "top_bottom_pattern_0 description" -msgid "The pattern on the bottom of the print on the first layer." -msgstr "打印品底部第一层上的图案。" - -msgctxt "top_bottom_pattern_0 option lines" -msgid "Lines" -msgstr "直线" - -msgctxt "top_bottom_pattern_0 option concentric" -msgid "Concentric" -msgstr "同心圆" - -msgctxt "top_bottom_pattern_0 option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -msgctxt "connect_skin_polygons label" -msgid "Connect Top/Bottom Polygons" -msgstr "连接顶部/底部多边形" - -msgctxt "connect_skin_polygons description" -msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." -msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" - -msgctxt "skin_monotonic label" -msgid "Monotonic Top/Bottom Order" -msgstr "单调顶部/底部顺序" - -msgctxt "skin_monotonic description" -msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" - -msgctxt "skin_angles label" -msgid "Top/Bottom Line Directions" -msgstr "顶层/底层走线方向" - -msgctxt "skin_angles description" -msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." -msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" - -msgctxt "small_skin_width label" -msgid "Small Top/Bottom Width" -msgstr "顶宽/底宽较小" - -msgctxt "small_skin_width description" -msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." -msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。" - -msgctxt "small_skin_on_surface label" -msgid "Small Top/Bottom On Surface" -msgstr "表面顶部/底部小区域" - -msgctxt "small_skin_on_surface description" -msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." -msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" - -msgctxt "skin_no_small_gaps_heuristic label" -msgid "No Skin in Z Gaps" -msgstr "Z 间隙内无表层" - -msgctxt "skin_no_small_gaps_heuristic description" -msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." -msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" - -msgctxt "skin_outline_count label" -msgid "Extra Skin Wall Count" -msgstr "额外皮肤壁计数" - -msgctxt "skin_outline_count description" -msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." -msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" - -msgctxt "ironing_enabled label" -msgid "Enable Ironing" -msgstr "启用熨平" - -msgctxt "ironing_enabled description" -msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." -msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" - -msgctxt "ironing_only_highest_layer label" -msgid "Iron Only Highest Layer" -msgstr "仅熨平最高层" - -msgctxt "ironing_only_highest_layer description" -msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." -msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" - -msgctxt "ironing_pattern label" -msgid "Ironing Pattern" -msgstr "熨平图案" - -msgctxt "ironing_pattern description" -msgid "The pattern to use for ironing top surfaces." -msgstr "用于熨平顶部表面的图案。" - -msgctxt "ironing_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -msgctxt "ironing_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -msgctxt "ironing_monotonic label" -msgid "Monotonic Ironing Order" -msgstr "单调熨平顺序" - -msgctxt "ironing_monotonic description" -msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." -msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" - -msgctxt "ironing_line_spacing label" -msgid "Ironing Line Spacing" -msgstr "熨平走线间距" - -msgctxt "ironing_line_spacing description" -msgid "The distance between the lines of ironing." -msgstr "熨平走线之间的距离。" - -msgctxt "ironing_flow label" -msgid "Ironing Flow" -msgstr "熨平流量" - -msgctxt "ironing_flow description" -msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." -msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" - -msgctxt "ironing_inset label" -msgid "Ironing Inset" -msgstr "熨平嵌入" +msgctxt "brim_inside_margin description" +msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." +msgstr "模型周围的裙边可能会触及您不希望接触到的其他模型。此操作会将与其他无裙边的模型小于特定距离的裙边打印区域删除。" msgctxt "ironing_inset description" msgid "A distance to keep from the edges of the model. Ironing all the way to the edge of the mesh may result in a jagged edge on your print." msgstr "与模型边缘保持的距离。 一直熨平至网格的边缘可能导致打印品出现锯齿状边缘。" -msgctxt "speed_ironing label" -msgid "Ironing Speed" -msgstr "熨平速度" +msgctxt "material_no_load_move_factor description" +msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." +msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" -msgctxt "speed_ironing description" -msgid "The speed at which to pass over the top surface." -msgstr "通过顶部表面的速度。" +msgctxt "roofing_angles description" +msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "当顶部表面皮肤层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" -msgctxt "acceleration_ironing label" -msgid "Ironing Acceleration" -msgstr "熨平加速度" +msgctxt "skin_angles description" +msgid "A list of integer line directions to use when the top/bottom layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "当顶层/底层采用线条或锯齿状图案时使用的整数走线方向的列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(45 和 135 度)。" -msgctxt "acceleration_ironing description" -msgid "The acceleration with which ironing is performed." -msgstr "执行熨平的加速度。" +msgctxt "support_infill_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。" -msgctxt "jerk_ironing label" -msgid "Ironing Jerk" -msgstr "熨平抖动速度" +msgctxt "support_bottom_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "jerk_ironing description" -msgid "The maximum instantaneous velocity change while performing ironing." -msgstr "执行熨平时的最大瞬时速度变化。" +msgctxt "support_interface_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" -msgctxt "skin_overlap label" -msgid "Skin Overlap Percentage" -msgstr "皮肤重叠百分比" - -msgctxt "skin_overlap description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" - -msgctxt "skin_overlap_mm label" -msgid "Skin Overlap" -msgstr "皮肤重叠" - -msgctxt "skin_overlap_mm description" -msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." -msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" - -msgctxt "skin_preshrink label" -msgid "Skin Removal Width" -msgstr "肤移除宽度" - -msgctxt "skin_preshrink description" -msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." -msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" - -msgctxt "top_skin_preshrink label" -msgid "Top Skin Removal Width" -msgstr "顶部皮肤移除宽度" - -msgctxt "top_skin_preshrink description" -msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." -msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" - -msgctxt "bottom_skin_preshrink label" -msgid "Bottom Skin Removal Width" -msgstr "底部皮肤移除宽度" - -msgctxt "bottom_skin_preshrink description" -msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." -msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" - -msgctxt "expand_skins_expand_distance label" -msgid "Skin Expand Distance" -msgstr "皮肤扩展距离" - -msgctxt "expand_skins_expand_distance description" -msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." -msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" - -msgctxt "top_skin_expand_distance label" -msgid "Top Skin Expand Distance" -msgstr "顶部皮肤扩展距离" - -msgctxt "top_skin_expand_distance description" -msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." -msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" - -msgctxt "bottom_skin_expand_distance label" -msgid "Bottom Skin Expand Distance" -msgstr "底部皮肤扩展距离" - -msgctxt "bottom_skin_expand_distance description" -msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." -msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" - -msgctxt "max_skin_angle_for_expansion label" -msgid "Maximum Skin Angle for Expansion" -msgstr "最大扩展皮肤角度" - -msgctxt "max_skin_angle_for_expansion description" -msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." -msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。" - -msgctxt "min_skin_width_for_expansion label" -msgid "Minimum Skin Width for Expansion" -msgstr "最小扩展皮肤宽度" - -msgctxt "min_skin_width_for_expansion description" -msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." -msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" - -msgctxt "infill label" -msgid "Infill" -msgstr "填充" - -msgctxt "infill description" -msgid "Infill" -msgstr "填充" - -msgctxt "infill_extruder_nr label" -msgid "Infill Extruder" -msgstr "填充挤出机" - -msgctxt "infill_extruder_nr description" -msgid "The extruder train used for printing infill. This is used in multi-extrusion." -msgstr "用于打印填充的挤出机组。 用于多重挤出。" - -msgctxt "infill_sparse_density label" -msgid "Infill Density" -msgstr "填充密度" - -msgctxt "infill_sparse_density description" -msgid "Adjusts the density of infill of the print." -msgstr "调整打印填充的密度。" - -msgctxt "infill_line_distance label" -msgid "Infill Line Distance" -msgstr "填充走线距离" - -msgctxt "infill_line_distance description" -msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." -msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" - -msgctxt "infill_pattern label" -msgid "Infill Pattern" -msgstr "填充图案" - -msgctxt "infill_pattern description" -msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." -msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" - -msgctxt "infill_pattern option grid" -msgid "Grid" -msgstr "网格" - -msgctxt "infill_pattern option lines" -msgid "Lines" -msgstr "直线" - -msgctxt "infill_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -msgctxt "infill_pattern option trihexagon" -msgid "Tri-Hexagon" -msgstr "内六角" - -msgctxt "infill_pattern option cubic" -msgid "Cubic" -msgstr "立方体" - -msgctxt "infill_pattern option cubicsubdiv" -msgid "Cubic Subdivision" -msgstr "立方体分区" - -msgctxt "infill_pattern option tetrahedral" -msgid "Octet" -msgstr "八角形" - -msgctxt "infill_pattern option quarter_cubic" -msgid "Quarter Cubic" -msgstr "四面体" - -msgctxt "infill_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" - -msgctxt "infill_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -msgctxt "infill_pattern option cross" -msgid "Cross" -msgstr "交叉" - -msgctxt "infill_pattern option cross_3d" -msgid "Cross 3D" -msgstr "交叉 3D" - -msgctxt "infill_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" - -msgctxt "infill_pattern option lightning" -msgid "Lightning" -msgstr "闪电形" - -msgctxt "zig_zaggify_infill label" -msgid "Connect Infill Lines" -msgstr "连接填充走线" - -msgctxt "zig_zaggify_infill description" -msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." -msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" - -msgctxt "connect_infill_polygons label" -msgid "Connect Infill Polygons" -msgstr "连接填充多边形" - -msgctxt "connect_infill_polygons description" -msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." -msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" - -msgctxt "infill_angles label" -msgid "Infill Line Directions" -msgstr "填充走线方向" +msgctxt "support_roof_angles description" +msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." +msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" msgctxt "infill_angles description" msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees for the lines and zig zag patterns and 45 degrees for all other patterns)." msgstr "要使用的整数走线方向列表。 列表中的元素随层的进度依次使用,当达到列表末尾时,它将从头开始。 列表项以逗号分隔,整个列表包含在方括号中。 默认是一个空列表,即意味着使用传统的默认角度(线条和锯齿形图案为 45 和 135 度,其他所有图案为 45 度)。" -msgctxt "infill_offset_x label" -msgid "Infill X Offset" -msgstr "填充 X 轴偏移量" +msgctxt "nozzle_disallowed_areas description" +msgid "A list of polygons with areas the nozzle is not allowed to enter." +msgstr "包含不允许喷嘴进入区域的多边形列表。" -msgctxt "infill_offset_x description" -msgid "The infill pattern is moved this distance along the X axis." -msgstr "填充图案沿 X 轴移动此距离。" +msgctxt "machine_disallowed_areas description" +msgid "A list of polygons with areas the print head is not allowed to enter." +msgstr "包含不允许打印头进入区域的多边形列表。" -msgctxt "infill_offset_y label" -msgid "Infill Y Offset" -msgstr "填充 Y 轴偏移量" +msgctxt "support_tree_branch_reach_limit description" +msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " +msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" -msgctxt "infill_offset_y description" -msgid "The infill pattern is moved this distance along the Y axis." -msgstr "填充图案沿 Y 轴移动此距离。" +msgctxt "extruder_prime_pos_abs label" +msgid "Absolute Extruder Prime Position" +msgstr "绝对挤出机主要位置" -msgctxt "infill_randomize_start_location label" -msgid "Randomize Infill Start" -msgstr "开始随机化填充" +msgctxt "adaptive_layer_height_variation label" +msgid "Adaptive Layers Maximum Variation" +msgstr "自适应图层最大变化" -msgctxt "infill_randomize_start_location description" -msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." -msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" +msgctxt "adaptive_layer_height_threshold label" +msgid "Adaptive Layers Topography Size" +msgstr "自适应图层地形尺寸" -msgctxt "infill_multiplier label" -msgid "Infill Line Multiplier" -msgstr "填充走线乘数" +msgctxt "adaptive_layer_height_variation_step label" +msgid "Adaptive Layers Variation Step Size" +msgstr "自适应图层变化步长" -msgctxt "infill_multiplier description" -msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." -msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" - -msgctxt "infill_wall_line_count label" -msgid "Extra Infill Wall Count" -msgstr "额外填充壁计数" +msgctxt "adaptive_layer_height_enabled description" +msgid "Adaptive layers computes the layer heights depending on the shape of the model." +msgstr "自适应图层根据模型形状计算图层高度。" msgctxt "infill_wall_line_count description" msgid "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\nThis feature can combine with the Connect Infill Polygons to connect all the infill into a single extrusion path without the need for travels or retractions if configured right." msgstr "在填充区域周围添加额外壁。此类壁可减少顶部/底部皮肤走线,这意味着只要付出一些额外的材料就可以使用更少的顶部/底部皮肤层达到相同的质量。" "在适当配置的情况下,此功能可结合连接填充多边形以将所有填充物连接到单一挤出路径而无需空驶或回抽。" -msgctxt "sub_div_rad_add label" -msgid "Cubic Subdivision Shell" -msgstr "立方体分区外壳" - -msgctxt "sub_div_rad_add description" -msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." -msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" - -msgctxt "infill_overlap label" -msgid "Infill Overlap Percentage" -msgstr "填充重叠百分比" - -msgctxt "infill_overlap description" -msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." -msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" - -msgctxt "infill_overlap_mm label" -msgid "Infill Overlap" -msgstr "填充重叠" - -msgctxt "infill_overlap_mm description" -msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." -msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" - -msgctxt "infill_wipe_dist label" -msgid "Infill Wipe Distance" -msgstr "填充物擦拭距离" - -msgctxt "infill_wipe_dist description" -msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." -msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" - -msgctxt "infill_sparse_thickness label" -msgid "Infill Layer Thickness" -msgstr "填充层厚度" - -msgctxt "infill_sparse_thickness description" -msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" - -msgctxt "gradual_infill_steps label" -msgid "Gradual Infill Steps" -msgstr "渐进填充步阶" - -msgctxt "gradual_infill_steps description" -msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." -msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" - -msgctxt "gradual_infill_step_height label" -msgid "Gradual Infill Step Height" -msgstr "渐进填充步阶高度" - -msgctxt "gradual_infill_step_height description" -msgid "The height of infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的填充高度。" - -msgctxt "infill_before_walls label" -msgid "Infill Before Walls" -msgstr "先填充物后壁" - -msgctxt "infill_before_walls description" -msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." -msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" - -msgctxt "min_infill_area label" -msgid "Minimum Infill Area" -msgstr "最小填充区域" - -msgctxt "min_infill_area description" -msgid "Don't generate areas of infill smaller than this (use skin instead)." -msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" - -msgctxt "infill_support_enabled label" -msgid "Infill Support" -msgstr "填充支撑" - -msgctxt "infill_support_enabled description" -msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." -msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" - -msgctxt "infill_support_angle label" -msgid "Infill Overhang Angle" -msgstr "填充悬垂角" - -msgctxt "infill_support_angle description" -msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." -msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。" - -msgctxt "skin_edge_support_thickness label" -msgid "Skin Edge Support Thickness" -msgstr "皮肤边缘支撑厚度" - -msgctxt "skin_edge_support_thickness description" -msgid "The thickness of the extra infill that supports skin edges." -msgstr "支撑皮肤边缘的额外填充物的厚度。" - -msgctxt "skin_edge_support_layers label" -msgid "Skin Edge Support Layers" -msgstr "皮肤边缘支撑层数" - -msgctxt "skin_edge_support_layers description" -msgid "The number of infill layers that supports skin edges." -msgstr "支撑皮肤边缘的填充物的层数。" - -msgctxt "lightning_infill_support_angle label" -msgid "Lightning Infill Support Angle" -msgstr "闪电形填充支撑角" - -msgctxt "lightning_infill_support_angle description" -msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." -msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" - -msgctxt "lightning_infill_overhang_angle label" -msgid "Lightning Infill Overhang Angle" -msgstr "闪电形填充悬垂角" - -msgctxt "lightning_infill_overhang_angle description" -msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." -msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" - -msgctxt "lightning_infill_prune_angle label" -msgid "Lightning Infill Prune Angle" -msgstr "闪电形填充修剪角" - -msgctxt "lightning_infill_prune_angle description" -msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." -msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" - -msgctxt "lightning_infill_straightening_angle label" -msgid "Lightning Infill Straightening Angle" -msgstr "闪电形填充矫直角" - -msgctxt "lightning_infill_straightening_angle description" -msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." -msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" - -msgctxt "material label" -msgid "Material" -msgstr "材料" - -msgctxt "material description" -msgid "Material" -msgstr "材料" - -msgctxt "default_material_print_temperature label" -msgid "Default Printing Temperature" -msgstr "默认打印温度" - -msgctxt "default_material_print_temperature description" -msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" -msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" - -msgctxt "build_volume_temperature label" -msgid "Build Volume Temperature" -msgstr "打印体积温度" - -msgctxt "build_volume_temperature description" -msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." -msgstr "打印环境温度。若为 0,将不会调整构建体积温度。" - -msgctxt "material_print_temperature label" -msgid "Printing Temperature" -msgstr "打印温度" - -msgctxt "material_print_temperature description" -msgid "The temperature used for printing." -msgstr "用于打印的温度。" - -msgctxt "material_print_temperature_layer_0 label" -msgid "Printing Temperature Initial Layer" -msgstr "打印温度起始层" - -msgctxt "material_print_temperature_layer_0 description" -msgid "The temperature used for printing the first layer." -msgstr "打印第一层时使用的温度。" - -msgctxt "material_initial_print_temperature label" -msgid "Initial Printing Temperature" -msgstr "起始打印温度" - -msgctxt "material_initial_print_temperature description" -msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." -msgstr "加热到可以开始打印的打印温度时的最低温度。" - -msgctxt "material_final_print_temperature label" -msgid "Final Printing Temperature" -msgstr "最终打印温度" - -msgctxt "material_final_print_temperature description" -msgid "The temperature to which to already start cooling down just before the end of printing." -msgstr "打印结束前开始冷却的温度。" - -msgctxt "material_extrusion_cool_down_speed label" -msgid "Extrusion Cool Down Speed Modifier" -msgstr "挤出冷却速度调节器" - -msgctxt "material_extrusion_cool_down_speed description" -msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." -msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" - -msgctxt "default_material_bed_temperature label" -msgid "Default Build Plate Temperature" -msgstr "默认打印平台温度" - -msgctxt "default_material_bed_temperature description" -msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" -msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" - -msgctxt "material_bed_temperature label" -msgid "Build Plate Temperature" -msgstr "打印平台温度" - -msgctxt "material_bed_temperature description" -msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." -msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。" - -msgctxt "material_bed_temperature_layer_0 label" -msgid "Build Plate Temperature Initial Layer" -msgstr "打印平台温度起始层" - -msgctxt "material_bed_temperature_layer_0 description" -msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." -msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。" +msgctxt "platform_adhesion description" +msgid "Adhesion" +msgstr "附着" msgctxt "material_adhesion_tendency label" msgid "Adhesion Tendency" msgstr "附着倾向" -msgctxt "material_adhesion_tendency description" -msgid "Surface adhesion tendency." -msgstr "表面附着倾向。" +msgctxt "skin_overlap description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines, as a percentage of the line widths of the skin lines and the innermost wall. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any percentage over 50% may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "调整壁和皮肤中心线的(端点)之间的重叠量,以皮肤线走线和最内壁的线宽度的百分比表示。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过 50% 的百分比可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" -msgctxt "material_surface_energy label" -msgid "Surface Energy" -msgstr "表面能" +msgctxt "skin_overlap_mm description" +msgid "Adjust the amount of overlap between the walls and (the endpoints of) the skin-centerlines. A slight overlap allows the walls to connect firmly to the skin. Note that, given an equal skin and wall line-width, any value over half the width of the wall may already cause any skin to go past the wall, because at that point the position of the nozzle of the skin-extruder may already reach past the middle of the wall." +msgstr "调整壁和皮肤中心线的(端点)之间的重叠量。稍微重叠可让各个壁与皮肤牢固连接。请注意,对于相等的皮肤和壁线宽度,任何超过壁宽度一半的值可能已经导致任何皮肤越过壁,因为在该点,皮肤挤出机的喷嘴位置可能已经达到越过壁中间的位置。" -msgctxt "material_surface_energy description" -msgid "Surface energy." -msgstr "表面能。" - -msgctxt "material_shrinkage_percentage label" -msgid "Scaling Factor Shrinkage Compensation" -msgstr "缩放因子收缩补偿" - -msgctxt "material_shrinkage_percentage description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." -msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" - -msgctxt "material_shrinkage_percentage_xy label" -msgid "Horizontal Scaling Factor Shrinkage Compensation" -msgstr "水平缩放因子收缩补偿" - -msgctxt "material_shrinkage_percentage_xy description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." -msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。" - -msgctxt "material_shrinkage_percentage_z label" -msgid "Vertical Scaling Factor Shrinkage Compensation" -msgstr "垂直缩放因子收缩补偿" - -msgctxt "material_shrinkage_percentage_z description" -msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." -msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。" - -msgctxt "material_crystallinity label" -msgid "Crystalline Material" -msgstr "晶体材料" - -msgctxt "material_crystallinity description" -msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" -msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" - -msgctxt "material_anti_ooze_retracted_position label" -msgid "Anti-ooze Retracted Position" -msgstr "防渗出回抽位置" - -msgctxt "material_anti_ooze_retracted_position description" -msgid "How far the material needs to be retracted before it stops oozing." -msgstr "材料在停止渗出前所需的回抽长度。" - -msgctxt "material_anti_ooze_retraction_speed label" -msgid "Anti-ooze Retraction Speed" -msgstr "防渗出回抽速度" - -msgctxt "material_anti_ooze_retraction_speed description" -msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." -msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" - -msgctxt "material_break_preparation_retracted_position label" -msgid "Break Preparation Retracted Position" -msgstr "断裂缓冲期回抽位置" - -msgctxt "material_break_preparation_retracted_position description" -msgid "How far the filament can be stretched before it breaks, while heated." -msgstr "耗材受热拉伸但不断裂的极限长度。" - -msgctxt "material_break_preparation_speed label" -msgid "Break Preparation Retraction Speed" -msgstr "断裂缓冲期回抽速度" - -msgctxt "material_break_preparation_speed description" -msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." -msgstr "耗材在回抽过程中恰好折断的回抽速率。" - -msgctxt "material_break_preparation_temperature label" -msgid "Break Preparation Temperature" -msgstr "断裂缓冲期温度" - -msgctxt "material_break_preparation_temperature description" -msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." -msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" - -msgctxt "material_break_retracted_position label" -msgid "Break Retracted Position" -msgstr "断裂回抽位置" - -msgctxt "material_break_retracted_position description" -msgid "How far to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的长度。" - -msgctxt "material_break_speed label" -msgid "Break Retraction Speed" -msgstr "断裂回抽速度" - -msgctxt "material_break_speed description" -msgid "The speed at which to retract the filament in order to break it cleanly." -msgstr "为完全脱落耗材而抽回耗材的速度。" - -msgctxt "material_break_temperature label" -msgid "Break Temperature" -msgstr "折断温度" - -msgctxt "material_break_temperature description" -msgid "The temperature at which the filament is broken for a clean break." -msgstr "耗材在完全脱落时的温度。" - -msgctxt "material_flush_purge_speed label" -msgid "Flush Purge Speed" -msgstr "冲洗清除速度" - -msgctxt "material_flush_purge_speed description" -msgid "How fast to prime the material after switching to a different material." -msgstr "切换到其他材料后,装填材料的速度如何。" - -msgctxt "material_flush_purge_length label" -msgid "Flush Purge Length" -msgstr "冲洗清除长度" - -msgctxt "material_flush_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." -msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" - -msgctxt "material_end_of_filament_purge_speed label" -msgid "End of Filament Purge Speed" -msgstr "耗材末端清除速度" - -msgctxt "material_end_of_filament_purge_speed description" -msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." -msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" - -msgctxt "material_end_of_filament_purge_length label" -msgid "End of Filament Purge Length" -msgstr "耗材末端清除长度" - -msgctxt "material_end_of_filament_purge_length description" -msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." -msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" - -msgctxt "material_maximum_park_duration label" -msgid "Maximum Park Duration" -msgstr "最长停放持续时间" - -msgctxt "material_maximum_park_duration description" -msgid "How long the material can be kept out of dry storage safely." -msgstr "材料能在干燥存储区之外安全存放多长时间。" - -msgctxt "material_no_load_move_factor label" -msgid "No Load Move Factor" -msgstr "空载移动系数" - -msgctxt "material_no_load_move_factor description" -msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." -msgstr "表示长丝在进料器和喷嘴室之间被压缩多少的系数,用于确定针对长丝开关将材料移动的距离。" - -msgctxt "material_flow label" -msgid "Flow" -msgstr "流量" - -msgctxt "material_flow description" -msgid "Flow compensation: the amount of material extruded is multiplied by this value." -msgstr "流量补偿:挤出的材料量乘以此值。" - -msgctxt "wall_material_flow label" -msgid "Wall Flow" -msgstr "壁流量" - -msgctxt "wall_material_flow description" -msgid "Flow compensation on wall lines." -msgstr "壁走线的流量补偿。" - -msgctxt "wall_0_material_flow label" -msgid "Outer Wall Flow" -msgstr "外壁流量" - -msgctxt "wall_0_material_flow description" -msgid "Flow compensation on the outermost wall line." -msgstr "最外壁走线的流量补偿。" - -msgctxt "wall_x_material_flow label" -msgid "Inner Wall(s) Flow" -msgstr "内壁流量" - -msgctxt "wall_x_material_flow description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one." -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" - -msgctxt "wall_0_material_flow_roofing label" -msgid "Top Surface Outer Wall Flow" -msgstr "顶面外壁挤出量" - -msgctxt "wall_0_material_flow_roofing description" -msgid "Flow compensation on the top surface outermost wall line." -msgstr "在顶面最外墙线挤出量补偿。" - -msgctxt "wall_x_material_flow_roofing label" -msgid "Top Surface Inner Wall(s) Flow" -msgstr "顶面内壁挤出量" - -msgctxt "wall_x_material_flow_roofing description" -msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." -msgstr "除最外层墙线之外,在所有墙线的顶面墙线挤出量补偿。" - -msgctxt "skin_material_flow label" -msgid "Top/Bottom Flow" -msgstr "顶部/底部流量" - -msgctxt "skin_material_flow description" -msgid "Flow compensation on top/bottom lines." -msgstr "顶部/底部走线的流量补偿。" - -msgctxt "roofing_material_flow label" -msgid "Top Surface Skin Flow" -msgstr "顶部表层流量" - -msgctxt "roofing_material_flow description" -msgid "Flow compensation on lines of the areas at the top of the print." -msgstr "打印顶部区域走线的流量补偿。" - -msgctxt "infill_material_flow label" -msgid "Infill Flow" -msgstr "填充流量" - -msgctxt "infill_material_flow description" -msgid "Flow compensation on infill lines." -msgstr "填充走线的流量补偿。" - -msgctxt "skirt_brim_material_flow label" -msgid "Skirt/Brim Flow" -msgstr "裙边/边缘流量" - -msgctxt "skirt_brim_material_flow description" -msgid "Flow compensation on skirt or brim lines." -msgstr "裙边或边缘走线的流量补偿。" - -msgctxt "support_material_flow label" -msgid "Support Flow" -msgstr "支撑流量" - -msgctxt "support_material_flow description" -msgid "Flow compensation on support structure lines." -msgstr "支撑结构走线的流量补偿。" - -msgctxt "support_interface_material_flow label" -msgid "Support Interface Flow" -msgstr "支撑接触面流量" - -msgctxt "support_interface_material_flow description" -msgid "Flow compensation on lines of support roof or floor." -msgstr "支撑顶板或底板走线的流量补偿。" - -msgctxt "support_roof_material_flow label" -msgid "Support Roof Flow" -msgstr "支撑顶板流量" - -msgctxt "support_roof_material_flow description" -msgid "Flow compensation on support roof lines." -msgstr "支撑顶板走线的流量补偿。" - -msgctxt "support_bottom_material_flow label" -msgid "Support Floor Flow" -msgstr "支撑底板流量" - -msgctxt "support_bottom_material_flow description" -msgid "Flow compensation on support floor lines." -msgstr "支撑底板走线的流量补偿。" - -msgctxt "prime_tower_flow label" -msgid "Prime Tower Flow" -msgstr "装填塔流量" - -msgctxt "prime_tower_flow description" -msgid "Flow compensation on prime tower lines." -msgstr "装填塔走线的流量补偿。" - -msgctxt "material_flow_layer_0 label" -msgid "Initial Layer Flow" -msgstr "起始层流量" - -msgctxt "material_flow_layer_0 description" -msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." -msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。" - -msgctxt "wall_x_material_flow_layer_0 label" -msgid "Initial Layer Inner Wall Flow" -msgstr "起始层内壁流量" - -msgctxt "wall_x_material_flow_layer_0 description" -msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" -msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" - -msgctxt "wall_0_material_flow_layer_0 label" -msgid "Initial Layer Outer Wall Flow" -msgstr "起始层外壁流量" - -msgctxt "wall_0_material_flow_layer_0 description" -msgid "Flow compensation on the outermost wall line of the first layer." -msgstr "第一层最外壁走线的流量补偿。" - -msgctxt "skin_material_flow_layer_0 label" -msgid "Initial Layer Bottom Flow" -msgstr "起始层底部流量" - -msgctxt "skin_material_flow_layer_0 description" -msgid "Flow compensation on bottom lines of the first layer" -msgstr "第一层底部走线的流量补偿" - -msgctxt "material_standby_temperature label" -msgid "Standby Temperature" -msgstr "待机温度" - -msgctxt "material_standby_temperature description" -msgid "The temperature of the nozzle when another nozzle is currently used for printing." -msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" - -msgctxt "material_is_support_material label" -msgid "Is support material" -msgstr "支撑材料" - -msgctxt "material_is_support_material description" -msgid "Is this material typically used as a support material during printing." -msgstr "这种材料通常被用作打印的支撑材料吗" - -msgctxt "speed label" -msgid "Speed" -msgstr "速度" - -msgctxt "speed description" -msgid "Speed" -msgstr "速度" - -msgctxt "speed_print label" -msgid "Print Speed" -msgstr "打印速度" - -msgctxt "speed_print description" -msgid "The speed at which printing happens." -msgstr "打印发生的速度。" - -msgctxt "speed_infill label" -msgid "Infill Speed" -msgstr "填充速度" - -msgctxt "speed_infill description" -msgid "The speed at which infill is printed." -msgstr "打印填充的速度。" - -msgctxt "speed_wall label" -msgid "Wall Speed" -msgstr "速度(壁)" - -msgctxt "speed_wall description" -msgid "The speed at which the walls are printed." -msgstr "打印壁的速度。" - -msgctxt "speed_wall_0 label" -msgid "Outer Wall Speed" -msgstr "速度(外壁)" - -msgctxt "speed_wall_0 description" -msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." -msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" - -msgctxt "speed_wall_x label" -msgid "Inner Wall Speed" -msgstr "速度(内壁)" - -msgctxt "speed_wall_x description" -msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." -msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" - -msgctxt "speed_wall_0_roofing label" -msgid "Top Surface Outer Wall Speed" -msgstr "顶面外壁速度" - -msgctxt "speed_wall_0_roofing description" -msgid "The speed at which the top surface outermost wall is printed." -msgstr "顶面最外壁打印完成后的速度" - -msgctxt "speed_wall_x_roofing label" -msgid "Top Surface Inner Wall Speed" -msgstr "顶面内壁速度" - -msgctxt "speed_wall_x_roofing description" -msgid "The speed at which the top surface inner walls are printed." -msgstr "顶面内壁打印完成后的速度" - -msgctxt "speed_roofing label" -msgid "Top Surface Skin Speed" -msgstr "顶部表面皮肤速度" - -msgctxt "speed_roofing description" -msgid "The speed at which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的速度。" - -msgctxt "speed_topbottom label" -msgid "Top/Bottom Speed" -msgstr "速度(顶部 / 底部)" - -msgctxt "speed_topbottom description" -msgid "The speed at which top/bottom layers are printed." -msgstr "打印顶部/底部层的速度。" - -msgctxt "speed_support label" -msgid "Support Speed" -msgstr "速度(支撑结构)" - -msgctxt "speed_support description" -msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." -msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" - -msgctxt "speed_support_infill label" -msgid "Support Infill Speed" -msgstr "速度(支撑填充)" - -msgctxt "speed_support_infill description" -msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." -msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" - -msgctxt "speed_support_interface label" -msgid "Support Interface Speed" -msgstr "支撑接触面速度" - -msgctxt "speed_support_interface description" -msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" - -msgctxt "speed_support_roof label" -msgid "Support Roof Speed" -msgstr "支撑顶板速度" - -msgctxt "speed_support_roof description" -msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." -msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" - -msgctxt "speed_support_bottom label" -msgid "Support Floor Speed" -msgstr "支撑底板速度" - -msgctxt "speed_support_bottom description" -msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." -msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" - -msgctxt "speed_prime_tower label" -msgid "Prime Tower Speed" -msgstr "装填塔速度" - -msgctxt "speed_prime_tower description" -msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." -msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" - -msgctxt "speed_travel label" -msgid "Travel Speed" -msgstr "空驶速度" - -msgctxt "speed_travel description" -msgid "The speed at which travel moves are made." -msgstr "进行空驶的速度。" - -msgctxt "speed_layer_0 label" -msgid "Initial Layer Speed" -msgstr "起始层速度" - -msgctxt "speed_layer_0 description" -msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." -msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" - -msgctxt "speed_print_layer_0 label" -msgid "Initial Layer Print Speed" -msgstr "起始层打印速度" - -msgctxt "speed_print_layer_0 description" -msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." -msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" - -msgctxt "speed_travel_layer_0 label" -msgid "Initial Layer Travel Speed" -msgstr "起始层空驶速度" - -msgctxt "speed_travel_layer_0 description" -msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." -msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" - -msgctxt "skirt_brim_speed label" -msgid "Skirt/Brim Speed" -msgstr "Skirt/Brim 速度" - -msgctxt "skirt_brim_speed description" -msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." -msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。" - -msgctxt "speed_z_hop label" -msgid "Z Hop Speed" -msgstr "Z 抬升速度" - -msgctxt "speed_z_hop description" -msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." -msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" - -msgctxt "speed_slowdown_layers label" -msgid "Number of Slower Layers" -msgstr "较慢层的数量" - -msgctxt "speed_slowdown_layers description" -msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." -msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" - -msgctxt "speed_equalize_flow_width_factor label" -msgid "Flow Equalization Ratio" -msgstr "流量均衡比" - -msgctxt "speed_equalize_flow_width_factor description" -msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." -msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" - -msgctxt "acceleration_enabled label" -msgid "Enable Acceleration Control" -msgstr "启用加速度控制" - -msgctxt "acceleration_enabled description" -msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." -msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" - -msgctxt "acceleration_travel_enabled label" -msgid "Enable Travel Acceleration" -msgstr "启用空驶加速度" - -msgctxt "acceleration_travel_enabled description" -msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." -msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" - -msgctxt "acceleration_print label" -msgid "Print Acceleration" -msgstr "打印加速度" - -msgctxt "acceleration_print description" -msgid "The acceleration with which printing happens." -msgstr "打印发生的加速度。" - -msgctxt "acceleration_infill label" -msgid "Infill Acceleration" -msgstr "填充加速度" - -msgctxt "acceleration_infill description" -msgid "The acceleration with which infill is printed." -msgstr "打印填充物的加速度。" - -msgctxt "acceleration_wall label" -msgid "Wall Acceleration" -msgstr "壁加速度" - -msgctxt "acceleration_wall description" -msgid "The acceleration with which the walls are printed." -msgstr "打印壁的加速度。" - -msgctxt "acceleration_wall_0 label" -msgid "Outer Wall Acceleration" -msgstr "外壁加速度" - -msgctxt "acceleration_wall_0 description" -msgid "The acceleration with which the outermost walls are printed." -msgstr "打印最外壁的加速度。" - -msgctxt "acceleration_wall_x label" -msgid "Inner Wall Acceleration" -msgstr "内壁加速度" - -msgctxt "acceleration_wall_x description" -msgid "The acceleration with which all inner walls are printed." -msgstr "打印所有内壁的加速度。" - -msgctxt "acceleration_wall_0_roofing label" -msgid "Top Surface Outer Wall Acceleration" -msgstr "顶面外壁加速度" - -msgctxt "acceleration_wall_0_roofing description" -msgid "The acceleration with which the top surface outermost walls are printed." -msgstr "顶面最外壁打印完成后的加速度" - -msgctxt "acceleration_wall_x_roofing label" -msgid "Top Surface Inner Wall Acceleration" -msgstr "顶面内壁加速度" - -msgctxt "acceleration_wall_x_roofing description" -msgid "The acceleration with which the top surface inner walls are printed." -msgstr "顶面内壁打印完成后的加速度" - -msgctxt "acceleration_roofing label" -msgid "Top Surface Skin Acceleration" -msgstr "顶部表面皮肤加速度" - -msgctxt "acceleration_roofing description" -msgid "The acceleration with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层的加速度。" - -msgctxt "acceleration_topbottom label" -msgid "Top/Bottom Acceleration" -msgstr "顶部/底部加速度" - -msgctxt "acceleration_topbottom description" -msgid "The acceleration with which top/bottom layers are printed." -msgstr "打印顶部/底部层的加速度。" - -msgctxt "acceleration_support label" -msgid "Support Acceleration" -msgstr "支撑加速度" - -msgctxt "acceleration_support description" -msgid "The acceleration with which the support structure is printed." -msgstr "打印支撑结构的加速度。" - -msgctxt "acceleration_support_infill label" -msgid "Support Infill Acceleration" -msgstr "支撑填充加速度" - -msgctxt "acceleration_support_infill description" -msgid "The acceleration with which the infill of support is printed." -msgstr "打印支撑填充物的加速度。" - -msgctxt "acceleration_support_interface label" -msgid "Support Interface Acceleration" -msgstr "支撑接触面加速度" - -msgctxt "acceleration_support_interface description" -msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" - -msgctxt "acceleration_support_roof label" -msgid "Support Roof Acceleration" -msgstr "支撑顶板加速度" - -msgctxt "acceleration_support_roof description" -msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." -msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" - -msgctxt "acceleration_support_bottom label" -msgid "Support Floor Acceleration" -msgstr "支撑底板加速度" - -msgctxt "acceleration_support_bottom description" -msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." -msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" - -msgctxt "acceleration_prime_tower label" -msgid "Prime Tower Acceleration" -msgstr "装填塔加速度" - -msgctxt "acceleration_prime_tower description" -msgid "The acceleration with which the prime tower is printed." -msgstr "打印装填塔的加速度。" - -msgctxt "acceleration_travel label" -msgid "Travel Acceleration" -msgstr "空驶加速度" - -msgctxt "acceleration_travel description" -msgid "The acceleration with which travel moves are made." -msgstr "进行空驶的加速度。" - -msgctxt "acceleration_layer_0 label" -msgid "Initial Layer Acceleration" -msgstr "起始层加速度" - -msgctxt "acceleration_layer_0 description" -msgid "The acceleration for the initial layer." -msgstr "起始层的加速度。" - -msgctxt "acceleration_print_layer_0 label" -msgid "Initial Layer Print Acceleration" -msgstr "起始层打印加速度" - -msgctxt "acceleration_print_layer_0 description" -msgid "The acceleration during the printing of the initial layer." -msgstr "打印起始层时的加速度。" - -msgctxt "acceleration_travel_layer_0 label" -msgid "Initial Layer Travel Acceleration" -msgstr "起始层空驶加速度" - -msgctxt "acceleration_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" - -msgctxt "acceleration_skirt_brim label" -msgid "Skirt/Brim Acceleration" -msgstr "Skirt/Brim 加速度" - -msgctxt "acceleration_skirt_brim description" -msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." -msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。" - -msgctxt "jerk_enabled label" -msgid "Enable Jerk Control" -msgstr "启用抖动速度控制" - -msgctxt "jerk_enabled description" -msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." -msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" - -msgctxt "jerk_travel_enabled label" -msgid "Enable Travel Jerk" -msgstr "启用空驶抖动速度" - -msgctxt "jerk_travel_enabled description" -msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." -msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" - -msgctxt "jerk_print label" -msgid "Print Jerk" -msgstr "打印抖动速度" - -msgctxt "jerk_print description" -msgid "The maximum instantaneous velocity change of the print head." -msgstr "打印头的最大瞬时速度变化。" - -msgctxt "jerk_infill label" -msgid "Infill Jerk" -msgstr "填充抖动速度" - -msgctxt "jerk_infill description" -msgid "The maximum instantaneous velocity change with which infill is printed." -msgstr "打印填充物时的最大瞬时速度变化。" - -msgctxt "jerk_wall label" -msgid "Wall Jerk" -msgstr "壁抖动速度" - -msgctxt "jerk_wall description" -msgid "The maximum instantaneous velocity change with which the walls are printed." -msgstr "打印壁时的最大瞬时速度变化。" - -msgctxt "jerk_wall_0 label" -msgid "Outer Wall Jerk" -msgstr "外壁抖动速度" - -msgctxt "jerk_wall_0 description" -msgid "The maximum instantaneous velocity change with which the outermost walls are printed." -msgstr "打印最外壁时的最大瞬时速度变化。" - -msgctxt "jerk_wall_x label" -msgid "Inner Wall Jerk" -msgstr "内壁抖动速度" - -msgctxt "jerk_wall_x description" -msgid "The maximum instantaneous velocity change with which all inner walls are printed." -msgstr "打印所有内壁时的最大瞬时速度变化。" - -msgctxt "jerk_wall_0_roofing label" -msgid "Top Surface Outer Wall Jerk" -msgstr "顶面外壁冲击力" - -msgctxt "jerk_wall_0_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." -msgstr "打印顶面最外壁时的最大瞬时速度变化。" - -msgctxt "jerk_wall_x_roofing label" -msgid "Top Surface Inner Wall Jerk" -msgstr "顶面内壁冲击力" - -msgctxt "jerk_wall_x_roofing description" -msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." -msgstr "打印顶面内壁时的最大瞬时速度变化。" - -msgctxt "jerk_roofing label" -msgid "Top Surface Skin Jerk" -msgstr "顶部表面皮肤抖动速度" - -msgctxt "jerk_roofing description" -msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." -msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" - -msgctxt "jerk_topbottom label" -msgid "Top/Bottom Jerk" -msgstr "顶部/底部抖动速度" - -msgctxt "jerk_topbottom description" -msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." -msgstr "打印顶部/底部层时的最大瞬时速度变化。" - -msgctxt "jerk_support label" -msgid "Support Jerk" -msgstr "支撑抖动速度" - -msgctxt "jerk_support description" -msgid "The maximum instantaneous velocity change with which the support structure is printed." -msgstr "打印支撑结构时的最大瞬时速度变化。" - -msgctxt "jerk_support_infill label" -msgid "Support Infill Jerk" -msgstr "支撑填充抖动速度" - -msgctxt "jerk_support_infill description" -msgid "The maximum instantaneous velocity change with which the infill of support is printed." -msgstr "打印支撑填充物时的最大瞬时速度变化。" - -msgctxt "jerk_support_interface label" -msgid "Support Interface Jerk" -msgstr "支撑接触面抖动速度" - -msgctxt "jerk_support_interface description" -msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." -msgstr "打印支撑顶板和底板的最大瞬时速度变化。" - -msgctxt "jerk_support_roof label" -msgid "Support Roof Jerk" -msgstr "支撑顶板抖动速度" - -msgctxt "jerk_support_roof description" -msgid "The maximum instantaneous velocity change with which the roofs of support are printed." -msgstr "打印支撑顶板的最大瞬时速度变化。" - -msgctxt "jerk_support_bottom label" -msgid "Support Floor Jerk" -msgstr "支撑底板抖动速度" - -msgctxt "jerk_support_bottom description" -msgid "The maximum instantaneous velocity change with which the floors of support are printed." -msgstr "打印支撑底板时的最大瞬时速度变化。" - -msgctxt "jerk_prime_tower label" -msgid "Prime Tower Jerk" -msgstr "装填塔抖动速度" - -msgctxt "jerk_prime_tower description" -msgid "The maximum instantaneous velocity change with which the prime tower is printed." -msgstr "打印装填塔时的最大瞬时速度变化。" - -msgctxt "jerk_travel label" -msgid "Travel Jerk" -msgstr "空驶抖动速度" - -msgctxt "jerk_travel description" -msgid "The maximum instantaneous velocity change with which travel moves are made." -msgstr "进行空驶时的最大瞬时速度变化。" - -msgctxt "jerk_layer_0 label" -msgid "Initial Layer Jerk" -msgstr "起始层抖动速度" - -msgctxt "jerk_layer_0 description" -msgid "The print maximum instantaneous velocity change for the initial layer." -msgstr "起始层的打印最大瞬时速度变化。" - -msgctxt "jerk_print_layer_0 label" -msgid "Initial Layer Print Jerk" -msgstr "起始层打印抖动速度" - -msgctxt "jerk_print_layer_0 description" -msgid "The maximum instantaneous velocity change during the printing of the initial layer." -msgstr "打印起始层时的最大瞬时速度变化。" - -msgctxt "jerk_travel_layer_0 label" -msgid "Initial Layer Travel Jerk" -msgstr "起始层空驶抖动速度" - -msgctxt "jerk_travel_layer_0 description" -msgid "The acceleration for travel moves in the initial layer." -msgstr "起始层中的空驶加速度。" - -msgctxt "jerk_skirt_brim label" -msgid "Skirt/Brim Jerk" -msgstr "Skirt/Brim 抖动速度" - -msgctxt "jerk_skirt_brim description" -msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." -msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" - -msgctxt "travel label" -msgid "Travel" -msgstr "移动" - -msgctxt "travel description" -msgid "travel" -msgstr "空驶" - -msgctxt "retraction_enable label" -msgid "Enable Retraction" -msgstr "启用回抽" - -msgctxt "retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" - -msgctxt "retract_at_layer_change label" -msgid "Retract at Layer Change" -msgstr "层变化时回抽" - -msgctxt "retract_at_layer_change description" -msgid "Retract the filament when the nozzle is moving to the next layer." -msgstr "当喷嘴移动到下一层时回抽耗材。" - -msgctxt "retraction_amount label" -msgid "Retraction Distance" -msgstr "回抽距离" - -msgctxt "retraction_amount description" -msgid "The length of material retracted during a retraction move." -msgstr "回抽移动期间回抽的材料长度。" - -msgctxt "retraction_speed label" -msgid "Retraction Speed" -msgstr "回抽速度" - -msgctxt "retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a retraction move." -msgstr "回抽移动期间耗材回抽和装填的速度。" - -msgctxt "retraction_retract_speed label" -msgid "Retraction Retract Speed" -msgstr "回抽速度" - -msgctxt "retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a retraction move." -msgstr "回抽移动期间耗材回抽的速度。" - -msgctxt "retraction_prime_speed label" -msgid "Retraction Prime Speed" -msgstr "回抽装填速度" - -msgctxt "retraction_prime_speed description" -msgid "The speed at which the filament is primed during a retraction move." -msgstr "回抽移动期间耗材装填的速度。" - -msgctxt "retraction_extra_prime_amount label" -msgid "Retraction Extra Prime Amount" -msgstr "回抽额外装填量" - -msgctxt "retraction_extra_prime_amount description" -msgid "Some material can ooze away during a travel move, which can be compensated for here." -msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" - -msgctxt "retraction_min_travel label" -msgid "Retraction Minimum Travel" -msgstr "回抽最小空驶" - -msgctxt "retraction_min_travel description" -msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." -msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" - -msgctxt "retraction_count_max label" -msgid "Maximum Retraction Count" -msgstr "最大回抽计数" - -msgctxt "retraction_count_max description" -msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." -msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" - -msgctxt "retraction_extrusion_window label" -msgid "Minimum Extrusion Distance Window" -msgstr "最小挤出距离范围" - -msgctxt "retraction_extrusion_window description" -msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." -msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" - -msgctxt "retraction_combing label" -msgid "Combing Mode" -msgstr "梳理模式" - -msgctxt "retraction_combing description" -msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." -msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" - -msgctxt "retraction_combing option off" -msgid "Off" -msgstr "关" - -msgctxt "retraction_combing option all" -msgid "All" -msgstr "所有" - -msgctxt "retraction_combing option no_outer_surfaces" -msgid "Not on Outer Surface" -msgstr "不在外表面上" - -msgctxt "retraction_combing option noskin" -msgid "Not in Skin" -msgstr "除了皮肤" - -msgctxt "retraction_combing option infill" -msgid "Within Infill" -msgstr "在填充物内" - -msgctxt "retraction_combing_max_distance label" -msgid "Max Comb Distance With No Retract" -msgstr "最大梳距,无收缩" - -msgctxt "retraction_combing_max_distance description" -msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." -msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" - -msgctxt "travel_retract_before_outer_wall label" -msgid "Retract Before Outer Wall" -msgstr "在外壁前回抽" - -msgctxt "travel_retract_before_outer_wall description" -msgid "Always retract when moving to start an outer wall." -msgstr "在移动开始打印外壁时始终回抽。" - -msgctxt "travel_avoid_other_parts label" -msgid "Avoid Printed Parts When Traveling" -msgstr "空驶时避开已打印部分" - -msgctxt "travel_avoid_other_parts description" -msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." -msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" - -msgctxt "travel_avoid_supports label" -msgid "Avoid Supports When Traveling" -msgstr "避免移动时支撑" - -msgctxt "travel_avoid_supports description" -msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." -msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" - -msgctxt "travel_avoid_distance label" -msgid "Travel Avoid Distance" -msgstr "空驶避让距离" - -msgctxt "travel_avoid_distance description" -msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." -msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" - -msgctxt "layer_start_x label" -msgid "Layer Start X" -msgstr "层开始 X" - -msgctxt "layer_start_x description" -msgid "The X coordinate of the position near where to find the part to start printing each layer." -msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。" - -msgctxt "layer_start_y label" -msgid "Layer Start Y" -msgstr "层开始 Y" - -msgctxt "layer_start_y description" -msgid "The Y coordinate of the position near where to find the part to start printing each layer." -msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。" - -msgctxt "retraction_hop_enabled label" -msgid "Z Hop When Retracted" -msgstr "回抽时 Z 抬升" - -msgctxt "retraction_hop_enabled description" -msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。" - -msgctxt "retraction_hop_only_when_collides label" -msgid "Z Hop Only Over Printed Parts" -msgstr "仅在已打印部分上 Z 抬升" - -msgctxt "retraction_hop_only_when_collides description" -msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." -msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。" - -msgctxt "retraction_hop label" -msgid "Z Hop Height" -msgstr "Z 抬升高度" - -msgctxt "retraction_hop description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" - -msgctxt "retraction_hop_after_extruder_switch label" -msgid "Z Hop After Extruder Switch" -msgstr "挤出机切换后的 Z 抬升" - -msgctxt "retraction_hop_after_extruder_switch description" -msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." -msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" - -msgctxt "retraction_hop_after_extruder_switch_height label" -msgid "Z Hop After Extruder Switch Height" -msgstr "挤出机切换后的 Z 抬升高度" - -msgctxt "retraction_hop_after_extruder_switch_height description" -msgid "The height difference when performing a Z Hop after extruder switch." -msgstr "挤出机切换后执行 Z 抬升的高度差。" - -msgctxt "cooling label" -msgid "Cooling" -msgstr "冷却" - -msgctxt "cooling description" -msgid "Cooling" -msgstr "冷却" - -msgctxt "cool_fan_enabled label" -msgid "Enable Print Cooling" -msgstr "开启打印冷却" - -msgctxt "cool_fan_enabled description" -msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." -msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" - -msgctxt "cool_fan_speed label" -msgid "Fan Speed" -msgstr "风扇速度" - -msgctxt "cool_fan_speed description" -msgid "The speed at which the print cooling fans spin." -msgstr "打印冷却风扇旋转的速度。" - -msgctxt "cool_fan_speed_min label" -msgid "Regular Fan Speed" -msgstr "正常风扇速度" - -msgctxt "cool_fan_speed_min description" -msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." -msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" - -msgctxt "cool_fan_speed_max label" -msgid "Maximum Fan Speed" -msgstr "最大风扇速度" - -msgctxt "cool_fan_speed_max description" -msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." -msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" - -msgctxt "cool_min_layer_time_fan_speed_max label" -msgid "Regular/Maximum Fan Speed Threshold" -msgstr "正常/最大风扇速度阈值" - -msgctxt "cool_min_layer_time_fan_speed_max description" -msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." -msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" - -msgctxt "cool_fan_speed_0 label" -msgid "Initial Fan Speed" -msgstr "起始风扇速度" - -msgctxt "cool_fan_speed_0 description" -msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." -msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" - -msgctxt "cool_fan_full_at_height label" -msgid "Regular Fan Speed at Height" -msgstr "正常风扇速度(高度)" - -msgctxt "cool_fan_full_at_height description" -msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." -msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" - -msgctxt "cool_fan_full_layer label" -msgid "Regular Fan Speed at Layer" -msgstr "正常风扇速度(层)" - -msgctxt "cool_fan_full_layer description" -msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." -msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" - -msgctxt "cool_min_layer_time label" -msgid "Minimum Layer Time" -msgstr "最短单层冷却时间" - -msgctxt "cool_min_layer_time description" -msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." -msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" - -msgctxt "cool_min_speed label" -msgid "Minimum Speed" -msgstr "最小风扇速度" - -msgctxt "cool_min_speed description" -msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." -msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" - -msgctxt "cool_lift_head label" -msgid "Lift Head" -msgstr "打印头提升" - -msgctxt "cool_lift_head description" -msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." -msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" - -msgctxt "cool_min_temperature label" -msgid "Small Layer Printing Temperature" -msgstr "小型层打印温度" - -msgctxt "cool_min_temperature description" -msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." -msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" - -msgctxt "support label" -msgid "Support" -msgstr "支撑" - -msgctxt "support description" -msgid "Support" -msgstr "支撑" - -msgctxt "support_enable label" -msgid "Generate Support" -msgstr "生成支撑" - -msgctxt "support_enable description" -msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." -msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" - -msgctxt "support_extruder_nr label" -msgid "Support Extruder" -msgstr "支撑用挤出机" - -msgctxt "support_extruder_nr description" -msgid "The extruder train to use for printing the support. This is used in multi-extrusion." -msgstr "用于打印支撑的挤出机组。 用于多重挤出。" - -msgctxt "support_infill_extruder_nr label" -msgid "Support Infill Extruder" -msgstr "支撑填充挤出机" - -msgctxt "support_infill_extruder_nr description" -msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." -msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。" - -msgctxt "support_extruder_nr_layer_0 label" -msgid "First Layer Support Extruder" -msgstr "第一层支撑挤出机" - -msgctxt "support_extruder_nr_layer_0 description" -msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." -msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" - -msgctxt "support_interface_extruder_nr label" -msgid "Support Interface Extruder" -msgstr "支撑接触面挤出机" - -msgctxt "support_interface_extruder_nr description" -msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." -msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" - -msgctxt "support_roof_extruder_nr label" -msgid "Support Roof Extruder" -msgstr "支撑顶板挤出机" - -msgctxt "support_roof_extruder_nr description" -msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." -msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。" - -msgctxt "support_bottom_extruder_nr label" -msgid "Support Floor Extruder" -msgstr "支撑底板挤出机" - -msgctxt "support_bottom_extruder_nr description" -msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." -msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。" - -msgctxt "support_structure label" -msgid "Support Structure" -msgstr "支撑结构" - -msgctxt "support_structure description" -msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." -msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" - -msgctxt "support_structure option normal" -msgid "Normal" -msgstr "正常" - -msgctxt "support_structure option tree" -msgid "Tree" -msgstr "树形" - -msgctxt "support_tree_angle label" -msgid "Maximum Branch Angle" -msgstr "最大分支角度" - -msgctxt "support_tree_angle description" -msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." -msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。" - -msgctxt "support_tree_branch_diameter label" -msgid "Branch Diameter" -msgstr "分支直径" - -msgctxt "support_tree_branch_diameter description" -msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." -msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" - -msgctxt "support_tree_max_diameter label" -msgid "Trunk Diameter" -msgstr "主干直径" - -msgctxt "support_tree_max_diameter description" -msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." -msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" - -msgctxt "support_tree_branch_diameter_angle label" -msgid "Branch Diameter Angle" -msgstr "分支直径角度" - -msgctxt "support_tree_branch_diameter_angle description" -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 tree support." -msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" - -msgctxt "support_type label" -msgid "Support Placement" -msgstr "支撑放置" - -msgctxt "support_type option buildplate" -msgid "Touching Buildplate" -msgstr "支撑打印平台" - -msgctxt "support_type option everywhere" -msgid "Everywhere" -msgstr "全部支撑" - -msgctxt "support_tree_angle_slow label" -msgid "Preferred Branch Angle" -msgstr "偏好分支角度" - -msgctxt "support_tree_angle_slow description" -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 "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" -msgid "Diameter Increase To Model" -msgstr "扩大直径以匹配模型" - -msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" -msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" -msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域" - -msgctxt "support_tree_min_height_to_model label" -msgid "Minimum Height To Model" -msgstr "模型的最小高度" - -msgctxt "support_tree_min_height_to_model description" -msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." -msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。" - -msgctxt "support_tree_bp_diameter label" -msgid "Initial Layer Diameter" -msgstr "起始层直径" - -msgctxt "support_tree_bp_diameter description" -msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." -msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。" - -msgctxt "support_tree_top_rate label" -msgid "Branch Density" -msgstr "分支密度" - -msgctxt "support_tree_top_rate description" -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. Use Support Roof for very high values or ensure support density is similarly high at the top." -msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。" - -msgctxt "support_tree_tip_diameter label" -msgid "Tip Diameter" -msgstr "顶端直径" - -msgctxt "support_tree_tip_diameter description" -msgid "The diameter of the top of the tip of the branches of tree support." -msgstr "树形支撑的分支顶端的直径。" - -msgctxt "support_tree_limit_branch_reach label" -msgid "Limit Branch Reach" -msgstr "限制分支长度" - -msgctxt "support_tree_limit_branch_reach description" -msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" -msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" - -msgctxt "support_tree_branch_reach_limit label" -msgid "Optimal Branch Range" -msgstr "最佳分支范围" - -msgctxt "support_tree_branch_reach_limit description" -msgid "A recomendation to how far branches can move from the points they support. Branches can violate this value to reach their destination (buildplate or a flat part of the model). Lowering this value will make the support more sturdy, but increase the amount of branches (and because of that material usage/print time) " -msgstr "建议分支离从其支撑点移动的距离。分支可以违反此值以到达其目的地(打印平台或模型的平面部分)。降低此值可以使支撑更坚固,但会增加分支数量(进而增加材料的使用/打印时间)" - -msgctxt "support_tree_rest_preference label" -msgid "Rest Preference" -msgstr "停留偏好" - -msgctxt "support_tree_rest_preference description" -msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." -msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。" - -msgctxt "support_tree_rest_preference option buildplate" -msgid "On buildplate when possible" -msgstr "在打印平台上(如可能)" - -msgctxt "support_tree_rest_preference option graceful" -msgid "On model if required" -msgstr "在模型上(如需要)" - -msgctxt "support_angle label" -msgid "Support Overhang Angle" -msgstr "支撑悬垂角度" - -msgctxt "support_angle description" -msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." -msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。" - -msgctxt "support_pattern label" -msgid "Support Pattern" -msgstr "支撑图案" - -msgctxt "support_pattern description" -msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." -msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" - -msgctxt "support_pattern option lines" -msgid "Lines" -msgstr "走线" - -msgctxt "support_pattern option grid" -msgid "Grid" -msgstr "网格" - -msgctxt "support_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -msgctxt "support_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -msgctxt "support_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -msgctxt "support_pattern option cross" -msgid "Cross" -msgstr "交叉" - -msgctxt "support_pattern option gyroid" -msgid "Gyroid" -msgstr "螺旋二十四面体" - -msgctxt "support_wall_count label" -msgid "Support Wall Line Count" -msgstr "支撑墙行数" - -msgctxt "support_wall_count description" -msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" - -msgctxt "support_interface_wall_count label" -msgid "Support Interface Wall Line Count" -msgstr "支撑接触面墙线条数" - -msgctxt "support_interface_wall_count description" -msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" - -msgctxt "support_roof_wall_count label" -msgid "Support Roof Wall Line Count" -msgstr "支撑顶板墙线条数" - -msgctxt "support_roof_wall_count description" -msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" - -msgctxt "support_bottom_wall_count label" -msgid "Support Bottom Wall Line Count" -msgstr "支撑底层墙线条数" - -msgctxt "support_bottom_wall_count description" -msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." -msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" - -msgctxt "zig_zaggify_support label" -msgid "Connect Support Lines" -msgstr "连接支撑线" - -msgctxt "zig_zaggify_support description" -msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." -msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" - -msgctxt "support_connect_zigzags label" -msgid "Connect Support ZigZags" -msgstr "连接支撑锯齿形" - -msgctxt "support_connect_zigzags description" -msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." -msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" - -msgctxt "support_infill_rate label" -msgid "Support Density" -msgstr "支撑密度" - -msgctxt "support_infill_rate description" -msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" - -msgctxt "support_line_distance label" -msgid "Support Line Distance" -msgstr "支撑走线距离" - -msgctxt "support_line_distance description" -msgid "Distance between the printed support structure lines. This setting is calculated by the support density." -msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" - -msgctxt "support_initial_layer_line_distance label" -msgid "Initial Layer Support Line Distance" -msgstr "起始层支撑走线距离" - -msgctxt "support_initial_layer_line_distance description" -msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." -msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" - -msgctxt "support_infill_angles label" -msgid "Support Infill Line Directions" -msgstr "支撑填充走线方向" - -msgctxt "support_infill_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angle 0 degrees." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“是一个空列表,即意味着使用默认角度 0 度。" - -msgctxt "support_brim_enable label" -msgid "Enable Support Brim" -msgstr "启用支撑 Brim" - -msgctxt "support_brim_enable description" -msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." -msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" - -msgctxt "support_brim_width label" -msgid "Support Brim Width" -msgstr "支撑 Brim 宽度" - -msgctxt "support_brim_width description" -msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." -msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。" - -msgctxt "support_brim_line_count label" -msgid "Support Brim Line Count" -msgstr "支撑 Brim 走线次数" - -msgctxt "support_brim_line_count description" -msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." -msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" - -msgctxt "support_z_distance label" -msgid "Support Z Distance" -msgstr "支撑 Z 距离" - -msgctxt "support_z_distance description" -msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." -msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。" - -msgctxt "support_top_distance label" -msgid "Support Top Distance" -msgstr "支撑顶部距离" - -msgctxt "support_top_distance description" -msgid "Distance from the top of the support to the print." -msgstr "从支撑顶部到打印品的距离。" - -msgctxt "support_bottom_distance label" -msgid "Support Bottom Distance" -msgstr "支撑底部距离" - -msgctxt "support_bottom_distance description" -msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." -msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。" - -msgctxt "support_xy_distance label" -msgid "Support X/Y Distance" -msgstr "支撑 X/Y 距离" - -msgctxt "support_xy_distance description" -msgid "Distance of the support structure from the print in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距打印品的距离。" - -msgctxt "support_xy_overrides_z label" -msgid "Support Distance Priority" -msgstr "支撑距离优先级" - -msgctxt "support_xy_overrides_z description" -msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." -msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。" - -msgctxt "support_xy_overrides_z option xy_overrides_z" -msgid "X/Y overrides Z" -msgstr "X/Y 覆盖 Z" - -msgctxt "support_xy_overrides_z option z_overrides_xy" -msgid "Z overrides X/Y" -msgstr "Z 覆盖 X/Y" - -msgctxt "support_xy_distance_overhang label" -msgid "Minimum Support X/Y Distance" -msgstr "最小支撑 X/Y 距离" - -msgctxt "support_xy_distance_overhang description" -msgid "Distance of the support structure from the overhang in the X/Y directions." -msgstr "支撑结构在 X/Y 方向距悬垂的距离。" - -msgctxt "support_bottom_stair_step_height label" -msgid "Support Stair Step Height" -msgstr "支撑梯步阶高度" - -msgctxt "support_bottom_stair_step_height description" -msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." -msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" - -msgctxt "support_bottom_stair_step_width label" -msgid "Support Stair Step Maximum Width" -msgstr "支撑梯步阶最大宽度" - -msgctxt "support_bottom_stair_step_width description" -msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." -msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" - -msgctxt "support_bottom_stair_step_min_slope label" -msgid "Support Stair Step Minimum Slope Angle" -msgstr "支撑阶梯最小坡度角" - -msgctxt "support_bottom_stair_step_min_slope description" -msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." -msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" - -msgctxt "support_join_distance label" -msgid "Support Join Distance" -msgstr "支撑结合部距离" - -msgctxt "support_join_distance description" -msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." -msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" - -msgctxt "support_offset label" -msgid "Support Horizontal Expansion" -msgstr "支撑水平扩展" - -msgctxt "support_offset description" -msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." -msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" - -msgctxt "support_infill_sparse_thickness label" -msgid "Support Infill Layer Thickness" -msgstr "支撑填充层厚度" - -msgctxt "support_infill_sparse_thickness description" -msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." -msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" - -msgctxt "gradual_support_infill_steps label" -msgid "Gradual Support Infill Steps" -msgstr "渐进支撑填充步阶" - -msgctxt "gradual_support_infill_steps description" -msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." -msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" - -msgctxt "gradual_support_infill_step_height label" -msgid "Gradual Support Infill Step Height" -msgstr "渐进支撑填充步阶高度" - -msgctxt "gradual_support_infill_step_height description" -msgid "The height of support infill of a given density before switching to half the density." -msgstr "在切换至密度的一半前指定密度的支撑填充高度。" - -msgctxt "minimum_support_area label" -msgid "Minimum Support Area" -msgstr "最小支撑面积" - -msgctxt "minimum_support_area description" -msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." -msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" - -msgctxt "support_interface_enable label" -msgid "Enable Support Interface" -msgstr "启用支撑接触面" - -msgctxt "support_interface_enable description" -msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." -msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" - -msgctxt "support_roof_enable label" -msgid "Enable Support Roof" -msgstr "启用支撑顶板" - -msgctxt "support_roof_enable description" -msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." -msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" - -msgctxt "support_bottom_enable label" -msgid "Enable Support Floor" -msgstr "启用支撑底板" - -msgctxt "support_bottom_enable description" -msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." -msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" - -msgctxt "support_interface_height label" -msgid "Support Interface Thickness" -msgstr "支撑接触面厚度" - -msgctxt "support_interface_height description" -msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." -msgstr "支撑与模型在底部或顶部接触的接触面厚度。" - -msgctxt "support_roof_height label" -msgid "Support Roof Thickness" -msgstr "支撑顶板厚度" - -msgctxt "support_roof_height description" -msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." -msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" - -msgctxt "support_bottom_height label" -msgid "Support Floor Thickness" -msgstr "支撑底板厚度" - -msgctxt "support_bottom_height description" -msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." -msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" - -msgctxt "support_interface_density label" -msgid "Support Interface Density" -msgstr "支撑接触面密度" +msgctxt "infill_sparse_density description" +msgid "Adjusts the density of infill of the print." +msgstr "调整打印填充的密度。" msgctxt "support_interface_density description" msgid "Adjusts the density of the roofs and floors of the support structure. A higher value results in better overhangs, but the supports are harder to remove." msgstr "调整支撑结构顶板和底板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "support_roof_density label" -msgid "Support Roof Density" -msgstr "支撑顶板密度" +msgctxt "support_tree_top_rate description" +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. Use Support Roof for very high values or ensure support density is similarly high at the top." +msgstr "调整用于生成分支顶端的支撑结构的密度。高数值可以确保悬垂质量更好,但支撑结构会更难去除。用支撑顶板获取极高数值,或者确保顶层的支撑密度同样高。" -msgctxt "support_roof_density description" -msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." -msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" +msgctxt "support_infill_rate description" +msgid "Adjusts the density of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "调整支撑结构的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" -msgctxt "support_roof_line_distance label" -msgid "Support Roof Line Distance" -msgstr "支撑顶板走线距离" +msgctxt "material_diameter description" +msgid "Adjusts the diameter of the filament used. Match this value with the diameter of the used filament." +msgstr "调整所用耗材的直径。 将此值与所用耗材的直径匹配。" -msgctxt "support_roof_line_distance description" -msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." -msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" - -msgctxt "support_bottom_density label" -msgid "Support Floor Density" -msgstr "支撑底板密度" - -msgctxt "support_bottom_density description" -msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." -msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" - -msgctxt "support_bottom_line_distance label" -msgid "Support Floor Line Distance" -msgstr "支撑底板走线距离" - -msgctxt "support_bottom_line_distance description" -msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." -msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" - -msgctxt "support_interface_pattern label" -msgid "Support Interface Pattern" -msgstr "支撑接触面图案" - -msgctxt "support_interface_pattern description" -msgid "The pattern with which the interface of the support with the model is printed." -msgstr "支撑与模型之间接触面的打印图案。" - -msgctxt "support_interface_pattern option lines" -msgid "Lines" -msgstr "走线" - -msgctxt "support_interface_pattern option grid" -msgid "Grid" -msgstr "网格" - -msgctxt "support_interface_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -msgctxt "support_interface_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -msgctxt "support_interface_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -msgctxt "support_roof_pattern label" -msgid "Support Roof Pattern" -msgstr "支撑顶板图案" - -msgctxt "support_roof_pattern description" -msgid "The pattern with which the roofs of the support are printed." -msgstr "打印支撑顶板的图案。" - -msgctxt "support_roof_pattern option lines" -msgid "Lines" -msgstr "直线" - -msgctxt "support_roof_pattern option grid" -msgid "Grid" -msgstr "网格" - -msgctxt "support_roof_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -msgctxt "support_roof_pattern option concentric" -msgid "Concentric" -msgstr "同心圆" - -msgctxt "support_roof_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿状" - -msgctxt "support_bottom_pattern label" -msgid "Support Floor Pattern" -msgstr "支撑底板图案" - -msgctxt "support_bottom_pattern description" -msgid "The pattern with which the floors of the support are printed." -msgstr "打印支撑底板的图案。" - -msgctxt "support_bottom_pattern option lines" -msgid "Lines" -msgstr "走线" - -msgctxt "support_bottom_pattern option grid" -msgid "Grid" -msgstr "网格" - -msgctxt "support_bottom_pattern option triangles" -msgid "Triangles" -msgstr "三角形" - -msgctxt "support_bottom_pattern option concentric" -msgid "Concentric" -msgstr "同心" - -msgctxt "support_bottom_pattern option zigzag" -msgid "Zig Zag" -msgstr "锯齿形" - -msgctxt "minimum_interface_area label" -msgid "Minimum Support Interface Area" -msgstr "最小支撑接触面面积" - -msgctxt "minimum_interface_area description" -msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" - -msgctxt "minimum_roof_area label" -msgid "Minimum Support Roof Area" -msgstr "最小支撑顶板面积" - -msgctxt "minimum_roof_area description" -msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" - -msgctxt "minimum_bottom_area label" -msgid "Minimum Support Floor Area" -msgstr "最小支撑底板面积" - -msgctxt "minimum_bottom_area description" -msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." -msgstr "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" - -msgctxt "support_interface_offset label" -msgid "Support Interface Horizontal Expansion" -msgstr "支撑接触面水平扩展" - -msgctxt "support_interface_offset description" -msgid "Amount of offset applied to the support interface polygons." -msgstr "应用到支撑接触面多边形的偏移量。" - -msgctxt "support_roof_offset label" -msgid "Support Roof Horizontal Expansion" -msgstr "支撑顶板水平扩展" - -msgctxt "support_roof_offset description" -msgid "Amount of offset applied to the roofs of the support." -msgstr "应用到支撑顶板的偏移量。" - -msgctxt "support_bottom_offset label" -msgid "Support Floor Horizontal Expansion" -msgstr "支撑底板水平扩展" - -msgctxt "support_bottom_offset description" -msgid "Amount of offset applied to the floors of the support." -msgstr "应用到支撑底板的偏移量。" - -msgctxt "support_interface_priority label" -msgid "Support Interface Priority" -msgstr "支撑接触面优先级" - -msgctxt "support_interface_priority description" -msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." -msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。" - -msgctxt "support_interface_priority option support_area_overwrite_interface_area" -msgid "Support preferred" -msgstr "偏好支撑" - -msgctxt "support_interface_priority option interface_area_overwrite_support_area" -msgid "Interface preferred" -msgstr "偏好接触面" - -msgctxt "support_interface_priority option support_lines_overwrite_interface_area" -msgid "Support lines preferred" -msgstr "偏好支撑线" - -msgctxt "support_interface_priority option interface_lines_overwrite_support_area" -msgid "Interface lines preferred" -msgstr "偏好接触面走线" - -msgctxt "support_interface_priority option nothing" -msgid "Both overlap" -msgstr "两者重叠" - -msgctxt "support_interface_angles label" -msgid "Support Interface Line Directions" -msgstr "支撑接触面走线方向" - -msgctxt "support_interface_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" - -msgctxt "support_roof_angles label" -msgid "Support Roof Line Directions" -msgstr "支撑顶板走线方向" - -msgctxt "support_roof_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" - -msgctxt "support_bottom_angles label" -msgid "Support Floor Line Directions" -msgstr "支撑底板走线方向" - -msgctxt "support_bottom_angles description" -msgid "A list of integer line directions to use. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the default angles (alternates between 45 and 135 degrees if interfaces are quite thick or 90 degrees)." -msgstr "要使用的整数走线方向列表。列表中的元素随层的进度依次使用,当达到列表末尾时将从头开始。列表项以逗号分隔,整个列表包含在方括号中。“默认“为一个空列表,即意味着使用默认角度(如果接触面很厚或为 90 度,则在 45 度和 135 度之间交替)。" - -msgctxt "support_fan_enable label" -msgid "Fan Speed Override" -msgstr "风扇速度覆盖" - -msgctxt "support_fan_enable description" -msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." -msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" - -msgctxt "support_supported_skin_fan_speed label" -msgid "Supported Skin Fan Speed" -msgstr "支撑的表面风扇速度" - -msgctxt "support_supported_skin_fan_speed description" -msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." -msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" - -msgctxt "support_use_towers label" -msgid "Use Towers" -msgstr "使用塔" - -msgctxt "support_use_towers description" -msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." -msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" - -msgctxt "support_tower_diameter label" -msgid "Tower Diameter" -msgstr "塔直径" - -msgctxt "support_tower_diameter description" -msgid "The diameter of a special tower." -msgstr "特殊塔的直径。" - -msgctxt "support_tower_maximum_supported_diameter label" -msgid "Maximum Tower-Supported Diameter" -msgstr "最大塔支撑直径" - -msgctxt "support_tower_maximum_supported_diameter description" -msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." -msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。" - -msgctxt "support_tower_roof_angle label" -msgid "Tower Roof Angle" -msgstr "塔顶板角度" - -msgctxt "support_tower_roof_angle description" -msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." -msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" - -msgctxt "support_mesh_drop_down label" -msgid "Drop Down Support Mesh" -msgstr "下拉式支撑网格" - -msgctxt "support_mesh_drop_down description" -msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." -msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" - -msgctxt "support_meshes_present label" -msgid "Scene Has Support Meshes" -msgstr "场景具有支撑网格" - -msgctxt "support_meshes_present description" -msgid "There are support meshes present in the scene. This setting is controlled by Cura." -msgstr "场景中存在支撑网格。此设置受 Cura 控制。" - -msgctxt "platform_adhesion label" -msgid "Build Plate Adhesion" -msgstr "打印平台附着" - -msgctxt "platform_adhesion description" -msgid "Adhesion" -msgstr "附着" - -msgctxt "prime_blob_enable label" -msgid "Enable Prime Blob" -msgstr "启用装填光点" - -msgctxt "prime_blob_enable description" -msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." -msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" - -msgctxt "extruder_prime_pos_x label" -msgid "Extruder Prime X Position" -msgstr "挤出机 X 轴坐标" - -msgctxt "extruder_prime_pos_x description" -msgid "The X coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 X 轴上初始位置。" - -msgctxt "extruder_prime_pos_y label" -msgid "Extruder Prime Y Position" -msgstr "挤出机 Y 轴起始位置" - -msgctxt "extruder_prime_pos_y description" -msgid "The Y coordinate of the position where the nozzle primes at the start of printing." -msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" - -msgctxt "adhesion_type label" -msgid "Build Plate Adhesion Type" -msgstr "打印平台附着类型" - -msgctxt "adhesion_type description" -msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." -msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。" - -msgctxt "adhesion_type option skirt" -msgid "Skirt" -msgstr "Skirt" - -msgctxt "adhesion_type option brim" -msgid "Brim" -msgstr "Brim" - -msgctxt "adhesion_type option raft" -msgid "Raft" -msgstr "Raft" - -msgctxt "adhesion_type option none" -msgid "None" -msgstr "无" - -msgctxt "adhesion_extruder_nr label" -msgid "Build Plate Adhesion Extruder" -msgstr "打印平台附着挤出机" - -msgctxt "adhesion_extruder_nr description" -msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." -msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。" - -msgctxt "skirt_brim_extruder_nr label" -msgid "Skirt/Brim Extruder" -msgstr "Skirt/Brim 挤出器" - -msgctxt "skirt_brim_extruder_nr description" -msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." -msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。" - -msgctxt "raft_base_extruder_nr label" -msgid "Raft Base Extruder" -msgstr "Raft 底层挤出器" - -msgctxt "raft_base_extruder_nr description" -msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." -msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。" - -msgctxt "raft_interface_extruder_nr label" -msgid "Raft Middle Extruder" -msgstr "Raft 中间挤出器" - -msgctxt "raft_interface_extruder_nr description" -msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." -msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。" - -msgctxt "raft_surface_extruder_nr label" -msgid "Raft Top Extruder" -msgstr "Raft 顶层挤出器" - -msgctxt "raft_surface_extruder_nr description" -msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." -msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。" - -msgctxt "skirt_line_count label" -msgid "Skirt Line Count" -msgstr "Skirt 走线计数" - -msgctxt "skirt_line_count description" -msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." -msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。" - -msgctxt "skirt_height label" -msgid "Skirt Height" -msgstr "裙边高度" - -msgctxt "skirt_height description" -msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." -msgstr "多层打印最内层裙边走线,便于移除裙边。" - -msgctxt "skirt_gap label" -msgid "Skirt Distance" -msgstr "Skirt 距离" - -msgctxt "skirt_gap description" -msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." -msgstr "skirt 和打印第一层之间的水平距离。" -"这是最小距离。多个 skirt 走线将从此距离向外延伸。" - -msgctxt "skirt_brim_minimal_length label" -msgid "Skirt/Brim Minimum Length" -msgstr "Skirt/Brim 最小长度" - -msgctxt "skirt_brim_minimal_length description" -msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." -msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。" - -msgctxt "brim_width label" -msgid "Brim Width" -msgstr "Brim 宽度" - -msgctxt "brim_width description" -msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。" - -msgctxt "brim_line_count label" -msgid "Brim Line Count" -msgstr "Brim 走线计数" - -msgctxt "brim_line_count description" -msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." -msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。" - -msgctxt "brim_gap label" -msgid "Brim Distance" -msgstr "边沿距离" - -msgctxt "brim_gap description" -msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." -msgstr "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" - -msgctxt "brim_replaces_support label" -msgid "Brim Replaces Support" -msgstr "Brim 替换支撑" - -msgctxt "brim_replaces_support description" -msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." -msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" - -msgctxt "brim_location label" -msgid "Brim Location" -msgstr "裙边位置" - -msgctxt "brim_location description" -msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." -msgstr "在模型的外侧,内侧或两侧同时打印裙边。根据模型的不同,这有助于减少随后需要去除的裙边量,同时保证所需的底座附着力。" - -msgctxt "brim_location option outside" -msgid "Outside Only" -msgstr "仅外侧" - -msgctxt "brim_location option inside" -msgid "Inside Only" -msgstr "仅内侧" - -msgctxt "brim_location option everywhere" -msgid "Everywhere" -msgstr "各处" - -msgctxt "brim_inside_margin label" -msgid "Brim Avoid Margin" -msgstr "裙边邻避边距" - -msgctxt "brim_inside_margin description" -msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." -msgstr "模型周围的裙边可能会触及您不希望接触到的其他模型。此操作会将与其他无裙边的模型小于特定距离的裙边打印区域删除。" - -msgctxt "brim_smart_ordering label" -msgid "Smart Brim" -msgstr "智能边缘" - -msgctxt "brim_smart_ordering description" -msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." -msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。" - -msgctxt "raft_margin label" -msgid "Raft Extra Margin" -msgstr "Raft 留白" - -msgctxt "raft_margin description" -msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" - -msgctxt "raft_base_margin label" -msgid "Raft Base Extra Margin" -msgstr "筏层基段额外边距" - -msgctxt "raft_base_margin description" -msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "如果设置了筏层基段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" - -msgctxt "raft_interface_margin label" -msgid "Raft Middle Extra Margin" -msgstr "筏层中段额外边距" - -msgctxt "raft_interface_margin description" -msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "如果设置了筏层中段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" - -msgctxt "raft_surface_margin label" -msgid "Raft Top Extra Margin" -msgstr "筏层顶段额外边距" - -msgctxt "raft_surface_margin description" -msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." -msgstr "如果设置了筏层顶段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" - -msgctxt "raft_remove_inside_corners label" -msgid "Remove Raft Inside Corners" -msgstr "移除 Raft 内侧角" - -msgctxt "raft_remove_inside_corners description" -msgid "Remove inside corners from the raft, causing the raft to become convex." -msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" - -msgctxt "raft_base_remove_inside_corners label" -msgid "Remove Raft Base Inside Corners" -msgstr "移除筏层基段内角" - -msgctxt "raft_base_remove_inside_corners description" -msgid "Remove inside corners from the raft base, causing the raft to become convex." -msgstr "移除筏层基段的内角,会使筏层凸起" - -msgctxt "raft_interface_remove_inside_corners label" -msgid "Remove Raft Middle Inside Corners" -msgstr "移除中段内角" - -msgctxt "raft_interface_remove_inside_corners description" -msgid "Remove inside corners from the raft middle part, causing the raft to become convex." -msgstr "移除筏层中段的内角,会使筏层凸起。" - -msgctxt "raft_surface_remove_inside_corners label" -msgid "Remove Raft Top Inside Corners" -msgstr "移除筏层顶段内角" - -msgctxt "raft_surface_remove_inside_corners description" -msgid "Remove inside corners from the raft top part, causing the raft to become convex." -msgstr "移除筏层顶段的内角,会使筏层凸起。" - -msgctxt "raft_smoothing label" -msgid "Raft Smoothing" -msgstr "Raft 平滑度" - -msgctxt "raft_smoothing description" -msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" - -msgctxt "raft_base_smoothing label" -msgid "Raft Base Smoothing" -msgstr "平滑筏层基段" - -msgctxt "raft_base_smoothing description" -msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "此设置用于调整筏层基段轮廓线内角的倒圆角大小。" -"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" - -msgctxt "raft_interface_smoothing label" -msgid "Raft Middle Smoothing" -msgstr "平滑筏层中段" - -msgctxt "raft_interface_smoothing description" -msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "此设置用于调整筏层中段轮廓线内角的倒圆角大小。" -"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" - -msgctxt "raft_surface_smoothing label" -msgid "Raft Top Smoothing" -msgstr "平滑筏层顶段" - -msgctxt "raft_surface_smoothing description" -msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." -msgstr "此设置用于调整筏层顶段轮廓线内角的倒圆角大小。" -"内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" - -msgctxt "raft_airgap label" -msgid "Raft Air Gap" -msgstr "Raft 空隙" - -msgctxt "raft_airgap description" -msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." -msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。" - -msgctxt "layer_0_z_overlap label" -msgid "Initial Layer Z Overlap" -msgstr "起始层 Z 重叠" - -msgctxt "layer_0_z_overlap description" -msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" -msgstr "使模型打印的第一层和第二层在 Z 方向上重叠,以补偿气隙中损失的丝材。模型的第一层上方的所有部分都将向下移动此量。\n您可能会发现,进行此设置后,有时第二层会打印在初始层下方。这是正常的" - -msgctxt "raft_base_thickness label" -msgid "Raft Base Thickness" -msgstr "Raft 基础厚度" - -msgctxt "raft_base_thickness description" -msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." -msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" - -msgctxt "raft_base_line_width label" -msgid "Raft Base Line Width" -msgstr "Raft 基础走线宽度" - -msgctxt "raft_base_line_width description" -msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." -msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" - -msgctxt "raft_base_line_spacing label" -msgid "Raft Base Line Spacing" -msgstr "Raft 基础走线间距" - -msgctxt "raft_base_line_spacing description" -msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" - -msgctxt "raft_interface_layers label" -msgid "Raft Middle Layers" -msgstr "Raft 中间层" - -msgctxt "raft_interface_layers description" -msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." -msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。" - -msgctxt "raft_interface_thickness label" -msgid "Raft Middle Thickness" -msgstr "Raft 中间厚度" - -msgctxt "raft_interface_thickness description" -msgid "Layer thickness of the middle raft layer." -msgstr "中间 Raft 层的层厚度。" - -msgctxt "raft_interface_line_width label" -msgid "Raft Middle Line Width" -msgstr "Raft 中间线宽度" - -msgctxt "raft_interface_line_width description" -msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." -msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" - -msgctxt "raft_interface_line_spacing label" -msgid "Raft Middle Spacing" -msgstr "Raft 中间间距" - -msgctxt "raft_interface_line_spacing description" -msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." -msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" - -msgctxt "raft_surface_layers label" -msgid "Raft Top Layers" -msgstr "Raft 顶层" - -msgctxt "raft_surface_layers description" -msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." -msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" - -msgctxt "raft_surface_thickness label" -msgid "Raft Top Layer Thickness" -msgstr "Raft 顶层厚度" - -msgctxt "raft_surface_thickness description" -msgid "Layer thickness of the top raft layers." -msgstr "顶部 Raft 层的层厚度。" - -msgctxt "raft_surface_line_width label" -msgid "Raft Top Line Width" -msgstr "Raft 顶线宽度" - -msgctxt "raft_surface_line_width description" -msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." -msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" - -msgctxt "raft_surface_line_spacing label" -msgid "Raft Top Spacing" -msgstr "Raft 顶部间距" - -msgctxt "raft_surface_line_spacing description" -msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." -msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" - -msgctxt "raft_surface_monotonic label" -msgid "Monotonic Raft Top Surface Order" -msgstr "单调递增的筏顶面顺序" - -msgctxt "raft_surface_monotonic description" -msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." -msgstr "按顺序打印筏层顶段表面线,使它们始终与单个方向上的相邻线重叠。这会花费稍微长一点的打印时间,但会使表面看起来更加一致,在模型底面上可以看出。" - -msgctxt "raft_wall_count label" -msgid "Raft Wall Count" -msgstr "筏层壁圈数" - -msgctxt "raft_wall_count description" -msgid "The number of contours to print around the linear pattern of the raft." -msgstr "围绕筏层的线性图案打印的轮廓圈数。" - -msgctxt "raft_base_wall_count label" -msgid "Raft Base Wall Count" -msgstr "Raft 底板壁数" - -msgctxt "raft_base_wall_count description" -msgid "The number of contours to print around the linear pattern in the base layer of the raft." -msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" - -msgctxt "raft_interface_wall_count label" -msgid "Raft Middle Wall Count" -msgstr "筏层中段壁圈数" - -msgctxt "raft_interface_wall_count description" -msgid "The number of contours to print around the linear pattern in the middle layers of the raft." -msgstr "围绕筏层中段的线性图案打印的轮廓圈数。" - -msgctxt "raft_surface_wall_count label" -msgid "Raft Top Wall Count" -msgstr "筏层顶段壁圈数" - -msgctxt "raft_surface_wall_count description" -msgid "The number of contours to print around the linear pattern in the top layers of the raft." -msgstr "围绕筏层顶段的线性图案打印的轮廓圈数。" - -msgctxt "raft_speed label" -msgid "Raft Print Speed" -msgstr "Raft 打印速度" - -msgctxt "raft_speed description" -msgid "The speed at which the raft is printed." -msgstr "打印 Raft 的速度。" - -msgctxt "raft_base_speed label" -msgid "Raft Base Print Speed" -msgstr "Raft 基础打印速度" - -msgctxt "raft_base_speed description" -msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" - -msgctxt "raft_interface_speed label" -msgid "Raft Middle Print Speed" -msgstr "Raft 中间打印速度" - -msgctxt "raft_interface_speed description" -msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." -msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" - -msgctxt "raft_surface_speed label" -msgid "Raft Top Print Speed" -msgstr "Raft 顶部打印速度" - -msgctxt "raft_surface_speed description" -msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." -msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" - -msgctxt "raft_acceleration label" -msgid "Raft Print Acceleration" -msgstr "Raft 打印加速度" - -msgctxt "raft_acceleration description" -msgid "The acceleration with which the raft is printed." -msgstr "打印 Raft 的加速度。" - -msgctxt "raft_base_acceleration label" -msgid "Raft Base Print Acceleration" -msgstr "Raft 基础打印加速度" - -msgctxt "raft_base_acceleration description" -msgid "The acceleration with which the base raft layer is printed." -msgstr "打印基础 Raft 层的加速度。" - -msgctxt "raft_interface_acceleration label" -msgid "Raft Middle Print Acceleration" -msgstr "Raft 中间打印加速度" - -msgctxt "raft_interface_acceleration description" -msgid "The acceleration with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的加速度。" - -msgctxt "raft_surface_acceleration label" -msgid "Raft Top Print Acceleration" -msgstr "Raft 顶部打印加速度" - -msgctxt "raft_surface_acceleration description" -msgid "The acceleration with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的加速度。" - -msgctxt "raft_jerk label" -msgid "Raft Print Jerk" -msgstr "Raft 打印抖动速度" - -msgctxt "raft_jerk description" -msgid "The jerk with which the raft is printed." -msgstr "打印 Raft 的抖动速度。" - -msgctxt "raft_base_jerk label" -msgid "Raft Base Print Jerk" -msgstr "Raft 基础打印抖动速度" - -msgctxt "raft_base_jerk description" -msgid "The jerk with which the base raft layer is printed." -msgstr "打印基础 Raft 层的抖动速度。" - -msgctxt "raft_interface_jerk label" -msgid "Raft Middle Print Jerk" -msgstr "Raft 中间打印抖动速度" - -msgctxt "raft_interface_jerk description" -msgid "The jerk with which the middle raft layer is printed." -msgstr "打印中间 Raft 层的抖动速度。" - -msgctxt "raft_surface_jerk label" -msgid "Raft Top Print Jerk" -msgstr "Raft 顶部打印抖动速度" - -msgctxt "raft_surface_jerk description" -msgid "The jerk with which the top raft layers are printed." -msgstr "打印顶部 Raft 层的抖动速度。" - -msgctxt "raft_fan_speed label" -msgid "Raft Fan Speed" -msgstr "Raft 风扇速度" - -msgctxt "raft_fan_speed description" -msgid "The fan speed for the raft." -msgstr "Raft 的风扇速度。" - -msgctxt "raft_base_fan_speed label" -msgid "Raft Base Fan Speed" -msgstr "Raft 基础风扇速度" - -msgctxt "raft_base_fan_speed description" -msgid "The fan speed for the base raft layer." -msgstr "基础 Raft 层的风扇速度。" - -msgctxt "raft_interface_fan_speed label" -msgid "Raft Middle Fan Speed" -msgstr "Raft 中间风扇速度" - -msgctxt "raft_interface_fan_speed description" -msgid "The fan speed for the middle raft layer." -msgstr "中间 Raft 层的风扇速度。" - -msgctxt "raft_surface_fan_speed label" -msgid "Raft Top Fan Speed" -msgstr "Raft 顶部风扇速度" - -msgctxt "raft_surface_fan_speed description" -msgid "The fan speed for the top raft layers." -msgstr "顶部 Raft 层的风扇速度。" - -msgctxt "dual label" -msgid "Dual Extrusion" -msgstr "双重挤出" - -msgctxt "dual description" -msgid "Settings used for printing with multiple extruders." -msgstr "利用多个挤出机进行打印所用的设置。" - -msgctxt "prime_tower_enable label" -msgid "Enable Prime Tower" -msgstr "启用装填塔" - -msgctxt "prime_tower_enable description" -msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." -msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" - -msgctxt "prime_tower_mode label" -msgid "Prime Tower Type" -msgstr "主塔类型" - -msgctxt "prime_tower_mode description" -msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " -msgstr "如何空心主塔:
    • 通常的:创建一个桶状结构,在其中填充辅助材料
    • 交错的: 创建一个尽可能稀疏的主塔。这将节省时间和丝材,但只有当所用材料粘附在每个部件上时才有可能
    " - -msgctxt "prime_tower_mode option normal" -msgid "Normal" -msgstr "通常的" - -msgctxt "prime_tower_mode option interleaved" -msgid "Interleaved" -msgstr "交错的" - -msgctxt "prime_tower_size label" -msgid "Prime Tower Size" -msgstr "装填塔尺寸" - -msgctxt "prime_tower_size description" -msgid "The width of the prime tower." -msgstr "装填塔的宽度。" - -msgctxt "prime_tower_min_volume label" -msgid "Prime Tower Minimum Volume" -msgstr "装填塔最小体积" - -msgctxt "prime_tower_min_volume description" -msgid "The minimum volume for each layer of the prime tower in order to purge enough material." -msgstr "为了清除足够的材料,装填塔每层的最小体积。" - -msgctxt "prime_tower_max_bridging_distance label" -msgid "Prime Tower Maximum Bridging Distance" -msgstr "主塔最大桥接距离" - -msgctxt "prime_tower_max_bridging_distance description" -msgid "The maximum length of the branches which may be printed over the air." -msgstr "可以跨空打印分支的最大长度。" - -msgctxt "prime_tower_position_x label" -msgid "Prime Tower X Position" -msgstr "装填塔 X 位置" - -msgctxt "prime_tower_position_x description" -msgid "The x coordinate of the position of the prime tower." -msgstr "装填塔位置的 X 坐标。" - -msgctxt "prime_tower_position_y label" -msgid "Prime Tower Y Position" -msgstr "装填塔 Y 位置" - -msgctxt "prime_tower_position_y description" -msgid "The y coordinate of the position of the prime tower." -msgstr "装填塔位置的 y 坐标。" - -msgctxt "prime_tower_wipe_enabled label" -msgid "Wipe Inactive Nozzle on Prime Tower" -msgstr "擦拭装填塔上的不活动喷嘴" +msgctxt "support_type description" +msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." +msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" msgctxt "prime_tower_wipe_enabled description" msgid "After printing the prime tower with one nozzle, wipe the oozed material from the other nozzle off on the prime tower." msgstr "在用一个喷嘴打印装填塔后,从装填塔上的另一个喷嘴擦去渗出的材料。" -msgctxt "prime_tower_brim_enable label" -msgid "Prime Tower Base" -msgstr "底漆塔座" +msgctxt "retraction_hop_after_extruder_switch description" +msgid "After the machine switched from one extruder to the other, the build plate is lowered to create clearance between the nozzle and the print. This prevents the nozzle from leaving oozed material on the outside of a print." +msgstr "当机器从一个挤出机切换到另一个时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 这将防止喷嘴在打印品外部留下渗出物。" -msgctxt "prime_tower_brim_enable description" -msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." -msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" - -msgctxt "prime_tower_base_size label" -msgid "Prime Tower Base Size" -msgstr "底漆塔座尺寸" - -msgctxt "prime_tower_base_size description" -msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." -msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。" - -msgctxt "prime_tower_base_height label" -msgid "Prime Tower Base Height" -msgstr "底漆塔座高度" - -msgctxt "prime_tower_base_height description" -msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." -msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。" - -msgctxt "prime_tower_base_curve_magnitude label" -msgid "Prime Tower Base Slope" -msgstr "Prime Tower 底座斜度" - -msgctxt "prime_tower_base_curve_magnitude description" -msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." -msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。" - -msgctxt "prime_tower_raft_base_line_spacing label" -msgid "Prime Tower Raft Line Spacing" -msgstr "底漆塔筏线间距" - -msgctxt "prime_tower_raft_base_line_spacing description" -msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." -msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。" - -msgctxt "ooze_shield_enabled label" -msgid "Enable Ooze Shield" -msgstr "启用渗出罩" - -msgctxt "ooze_shield_enabled description" -msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." -msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" - -msgctxt "ooze_shield_angle label" -msgid "Ooze Shield Angle" -msgstr "渗出罩角度" - -msgctxt "ooze_shield_angle description" -msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." -msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" - -msgctxt "ooze_shield_dist label" -msgid "Ooze Shield Distance" -msgstr "渗出罩距离" - -msgctxt "ooze_shield_dist description" -msgid "Distance of the ooze shield from the print, in the X/Y directions." -msgstr "渗出罩在 X/Y 方向距打印品的距离。" - -msgctxt "switch_extruder_retraction_amount label" -msgid "Nozzle Switch Retraction Distance" -msgstr "喷嘴切换回抽距离" - -msgctxt "switch_extruder_retraction_amount description" -msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." -msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。" - -msgctxt "switch_extruder_retraction_speeds label" -msgid "Nozzle Switch Retraction Speed" -msgstr "喷嘴切换回抽速度" - -msgctxt "switch_extruder_retraction_speeds description" -msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." -msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" - -msgctxt "switch_extruder_retraction_speed label" -msgid "Nozzle Switch Retract Speed" -msgstr "喷嘴切换回抽速度" - -msgctxt "switch_extruder_retraction_speed description" -msgid "The speed at which the filament is retracted during a nozzle switch retract." -msgstr "喷嘴切换回抽期间耗材回抽的速度。" - -msgctxt "switch_extruder_prime_speed label" -msgid "Nozzle Switch Prime Speed" -msgstr "喷嘴切换装填速度" - -msgctxt "switch_extruder_prime_speed description" -msgid "The speed at which the filament is pushed back after a nozzle switch retraction." -msgstr "喷嘴切换回抽后耗材被推回的速度。" - -msgctxt "switch_extruder_extra_prime_amount label" -msgid "Nozzle Switch Extra Prime Amount" -msgstr "喷嘴切换额外装填量" - -msgctxt "switch_extruder_extra_prime_amount description" -msgid "Extra material to prime after nozzle switching." -msgstr "喷嘴切换后的额外装填材料。" - -msgctxt "meshfix label" -msgid "Mesh Fixes" -msgstr "网格修复" - -msgctxt "meshfix description" -msgid "Make the meshes more suited for 3D printing." -msgstr "使网格更适合 3D 打印。" - -msgctxt "meshfix_union_all label" -msgid "Union Overlapping Volumes" -msgstr "联合覆盖体积" - -msgctxt "meshfix_union_all description" -msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." -msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" - -msgctxt "meshfix_union_all_remove_holes label" -msgid "Remove All Holes" -msgstr "移除所有孔洞" - -msgctxt "meshfix_union_all_remove_holes description" -msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." -msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" - -msgctxt "meshfix_extensive_stitching label" -msgid "Extensive Stitching" -msgstr "广泛缝合" - -msgctxt "meshfix_extensive_stitching description" -msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." -msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" - -msgctxt "meshfix_keep_open_polygons label" -msgid "Keep Disconnected Faces" -msgstr "保留断开连接的面" - -msgctxt "meshfix_keep_open_polygons description" -msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." -msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。" - -msgctxt "multiple_mesh_overlap label" -msgid "Merged Meshes Overlap" -msgstr "合并网格重叠" - -msgctxt "multiple_mesh_overlap description" -msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." -msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" - -msgctxt "carve_multiple_volumes label" -msgid "Remove Mesh Intersection" -msgstr "移除网格交叉" - -msgctxt "carve_multiple_volumes description" -msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." -msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" - -msgctxt "alternate_carve_order label" -msgid "Alternate Mesh Removal" -msgstr "交替网格移除" - -msgctxt "alternate_carve_order description" -msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." -msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" - -msgctxt "remove_empty_first_layers label" -msgid "Remove Empty First Layers" -msgstr "移除空白第一层" - -msgctxt "remove_empty_first_layers description" -msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." -msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" - -msgctxt "meshfix_maximum_resolution label" -msgid "Maximum Resolution" -msgstr "最大分辨率" - -msgctxt "meshfix_maximum_resolution description" -msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." -msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" - -msgctxt "meshfix_maximum_travel_resolution label" -msgid "Maximum Travel Resolution" -msgstr "空走的最大分辨率" - -msgctxt "meshfix_maximum_travel_resolution description" -msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." -msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。" - -msgctxt "meshfix_maximum_deviation label" -msgid "Maximum Deviation" -msgstr "最大偏移量" - -msgctxt "meshfix_maximum_deviation description" -msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." -msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" - -msgctxt "meshfix_maximum_extrusion_area_deviation label" -msgid "Maximum Extrusion Area Deviation" -msgstr "最大挤出面积偏移量" - -msgctxt "meshfix_maximum_extrusion_area_deviation description" -msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." -msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。" - -msgctxt "meshfix_fluid_motion_enabled label" -msgid "Enable Fluid Motion" -msgstr "启用流体运动" - -msgctxt "meshfix_fluid_motion_enabled description" -msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." -msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" - -msgctxt "meshfix_fluid_motion_shift_distance label" -msgid "Fluid Motion Shift Distance" -msgstr "流体运动移动距离" - -msgctxt "meshfix_fluid_motion_shift_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "移动距离点,使路径平滑" - -msgctxt "meshfix_fluid_motion_small_distance label" -msgid "Fluid Motion Small Distance" -msgstr "流体运动小距离" - -msgctxt "meshfix_fluid_motion_small_distance description" -msgid "Distance points are shifted to smooth the path" -msgstr "移动距离点,使路径平滑" - -msgctxt "meshfix_fluid_motion_angle label" -msgid "Fluid Motion Angle" -msgstr "流体运动角" - -msgctxt "meshfix_fluid_motion_angle description" -msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." -msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。" - -msgctxt "blackmagic label" -msgid "Special Modes" -msgstr "特殊模式" - -msgctxt "blackmagic description" -msgid "Non-traditional ways to print your models." -msgstr "打印模型的非传统方式。" - -msgctxt "print_sequence label" -msgid "Print Sequence" -msgstr "打印序列" - -msgctxt "print_sequence description" -msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." -msgstr "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。" +msgctxt "retraction_combing option all" +msgid "All" +msgstr "所有" msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "同时打印" -msgctxt "print_sequence option one_at_a_time" -msgid "One at a Time" -msgstr "排队打印" - -msgctxt "user_defined_print_order_enabled label" -msgid "Set Print Sequence Manually" -msgstr "手动设置打印顺序" +msgctxt "resolution description" +msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" +msgstr "影响打印分辨率的所有设置。 这些设置会对质量(和打印时间)产生显著影响" msgctxt "user_defined_print_order_enabled description" msgid "Allows you to order the object list to manually set the print sequence. First object from the list will be printed first." msgstr "允许您对对象列表进行排序以手动设置打印顺序。列表中的第一个对象将首先打印。" -msgctxt "infill_mesh label" -msgid "Infill Mesh" -msgstr "填充网格" +msgctxt "alternate_extra_perimeter label" +msgid "Alternate Extra Wall" +msgstr "交替备用壁" -msgctxt "infill_mesh description" -msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." -msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" - -msgctxt "infill_mesh_order label" -msgid "Mesh Processing Rank" -msgstr "网格处理等级" - -msgctxt "infill_mesh_order description" -msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." -msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" - -msgctxt "cutting_mesh label" -msgid "Cutting Mesh" -msgstr "切割网格" - -msgctxt "cutting_mesh description" -msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." -msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" - -msgctxt "mold_enabled label" -msgid "Mold" -msgstr "模具" - -msgctxt "mold_enabled description" -msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." -msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" - -msgctxt "mold_width label" -msgid "Minimal Mold Width" -msgstr "最小模具宽度" - -msgctxt "mold_width description" -msgid "The minimal distance between the outside of the mold and the outside of the model." -msgstr "模具外侧与模型外侧之间的最短距离。" - -msgctxt "mold_roof_height label" -msgid "Mold Roof Height" -msgstr "模具顶板高度" - -msgctxt "mold_roof_height description" -msgid "The height above horizontal parts in your model which to print mold." -msgstr "用于打印模具的模型水平部分上方的高度。" - -msgctxt "mold_angle label" -msgid "Mold Angle" -msgstr "模具角度" - -msgctxt "mold_angle description" -msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." -msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。" - -msgctxt "support_mesh label" -msgid "Support Mesh" -msgstr "支撑网格" - -msgctxt "support_mesh description" -msgid "Use this mesh to specify support areas. This can be used to generate support structure." -msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" - -msgctxt "anti_overhang_mesh label" -msgid "Anti Overhang Mesh" -msgstr "防悬网格" - -msgctxt "anti_overhang_mesh description" -msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." -msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" - -msgctxt "magic_mesh_surface_mode label" -msgid "Surface Mode" -msgstr "表面模式" - -msgctxt "magic_mesh_surface_mode description" -msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." -msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" - -msgctxt "magic_mesh_surface_mode option normal" -msgid "Normal" -msgstr "正常" - -msgctxt "magic_mesh_surface_mode option surface" -msgid "Surface" -msgstr "表面" - -msgctxt "magic_mesh_surface_mode option both" -msgid "Both" -msgstr "两者都" - -msgctxt "magic_spiralize label" -msgid "Spiralize Outer Contour" -msgstr "螺旋打印外轮廓" - -msgctxt "magic_spiralize description" -msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." -msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" - -msgctxt "smooth_spiralized_contours label" -msgid "Smooth Spiralized Contours" -msgstr "平滑螺旋轮廓" - -msgctxt "smooth_spiralized_contours description" -msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." -msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" - -msgctxt "relative_extrusion label" -msgid "Relative Extrusion" -msgstr "相对挤出" - -msgctxt "relative_extrusion description" -msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." -msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。" - -msgctxt "experimental label" -msgid "Experimental" -msgstr "实验性" - -msgctxt "experimental description" -msgid "Features that haven't completely been fleshed out yet." -msgstr "尚未完全充实的功能。" - -msgctxt "slicing_tolerance label" -msgid "Slicing Tolerance" -msgstr "切片公差" - -msgctxt "slicing_tolerance description" -msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." -msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" - -msgctxt "slicing_tolerance option middle" -msgid "Middle" -msgstr "Middle" - -msgctxt "slicing_tolerance option exclusive" -msgid "Exclusive" -msgstr "不包含" - -msgctxt "slicing_tolerance option inclusive" -msgid "Inclusive" -msgstr "包含" - -msgctxt "infill_enable_travel_optimization label" -msgid "Infill Travel Optimization" -msgstr "填充物空驶优化" - -msgctxt "infill_enable_travel_optimization description" -msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." -msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" - -msgctxt "material_flow_temp_graph label" -msgid "Flow Temperature Graph" -msgstr "流量温度图" - -msgctxt "material_flow_temp_graph description" -msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." -msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" - -msgctxt "minimum_polygon_circumference label" -msgid "Minimum Polygon Circumference" -msgstr "最小多边形周长" - -msgctxt "minimum_polygon_circumference description" -msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." -msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。" - -msgctxt "interlocking_enable label" -msgid "Generate Interlocking Structure" -msgstr "生成互锁结构" - -msgctxt "interlocking_enable description" -msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." -msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" - -msgctxt "interlocking_beam_width label" -msgid "Interlocking Beam Width" -msgstr "互锁梁宽度" - -msgctxt "interlocking_beam_width description" -msgid "The width of the interlocking structure beams." -msgstr "互锁结构梁的宽度。" - -msgctxt "interlocking_orientation label" -msgid "Interlocking Structure Orientation" -msgstr "互锁结构方向" - -msgctxt "interlocking_orientation description" -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 "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" - -msgctxt "interlocking_beam_layer_count label" -msgid "Interlocking Beam Layer Count" -msgstr "互锁梁层数" - -msgctxt "interlocking_beam_layer_count description" -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 "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" - -msgctxt "interlocking_depth label" -msgid "Interlocking Depth" -msgstr "互锁深度" - -msgctxt "interlocking_depth description" -msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." -msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" - -msgctxt "interlocking_boundary_avoidance label" -msgid "Interlocking Boundary Avoidance" -msgstr "互锁边界回避" - -msgctxt "interlocking_boundary_avoidance description" -msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." -msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。" - -msgctxt "support_skip_some_zags label" -msgid "Break Up Support In Chunks" -msgstr "将支撑结构分拆成块状" - -msgctxt "support_skip_some_zags description" -msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." -msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" - -msgctxt "support_skip_zag_per_mm label" -msgid "Support Chunk Size" -msgstr "支撑块大小" - -msgctxt "support_skip_zag_per_mm description" -msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." -msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" - -msgctxt "support_zag_skip_count label" -msgid "Support Chunk Line Count" -msgstr "支撑块走线数" - -msgctxt "support_zag_skip_count description" -msgid "Skip one in every N connection lines to make the support structure easier to break away." -msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。" - -msgctxt "draft_shield_enabled label" -msgid "Enable Draft Shield" -msgstr "启用防风罩" - -msgctxt "draft_shield_enabled description" -msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." -msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" - -msgctxt "draft_shield_dist label" -msgid "Draft Shield X/Y Distance" -msgstr "防风罩 X/Y 距离" - -msgctxt "draft_shield_dist description" -msgid "Distance of the draft shield from the print, in the X/Y directions." -msgstr "防风罩在 X/Y 方向与打印品的距离。" - -msgctxt "draft_shield_height_limitation label" -msgid "Draft Shield Limitation" -msgstr "防风罩限制" - -msgctxt "draft_shield_height_limitation description" -msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." -msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" - -msgctxt "draft_shield_height_limitation option full" -msgid "Full" -msgstr "完整" - -msgctxt "draft_shield_height_limitation option limited" -msgid "Limited" -msgstr "有限" - -msgctxt "draft_shield_height label" -msgid "Draft Shield Height" -msgstr "防风罩高度" - -msgctxt "draft_shield_height description" -msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." -msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" - -msgctxt "conical_overhang_enabled label" -msgid "Make Overhang Printable" -msgstr "使悬垂可打印" - -msgctxt "conical_overhang_enabled description" -msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." -msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" - -msgctxt "conical_overhang_angle label" -msgid "Maximum Model Angle" -msgstr "最大模型角度" - -msgctxt "conical_overhang_angle description" -msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." -msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。" - -msgctxt "conical_overhang_hole_size label" -msgid "Maximum Overhang Hole Area" -msgstr "最大悬垂孔面积" - -msgctxt "conical_overhang_hole_size description" -msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." -msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。" - -msgctxt "coasting_enable label" -msgid "Enable Coasting" -msgstr "启用滑行" - -msgctxt "coasting_enable description" -msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." -msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" - -msgctxt "coasting_volume label" -msgid "Coasting Volume" -msgstr "滑行体积" - -msgctxt "coasting_volume description" -msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." -msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" - -msgctxt "coasting_min_volume label" -msgid "Minimum Volume Before Coasting" -msgstr "滑行前最小体积" - -msgctxt "coasting_min_volume description" -msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." -msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" - -msgctxt "coasting_speed label" -msgid "Coasting Speed" -msgstr "滑行速度" - -msgctxt "coasting_speed description" -msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." -msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。" - -msgctxt "cross_infill_pocket_size label" -msgid "Cross 3D Pocket Size" -msgstr "交叉 3D 气槽大小" - -msgctxt "cross_infill_pocket_size description" -msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." -msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" - -msgctxt "cross_infill_density_image label" -msgid "Cross Infill Density Image" -msgstr "交叉加密图像密度" - -msgctxt "cross_infill_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." -msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" - -msgctxt "cross_support_density_image label" -msgid "Cross Fill Density Image for Support" -msgstr "交叉填充密度图象" - -msgctxt "cross_support_density_image description" -msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." -msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" - -msgctxt "support_conical_enabled label" -msgid "Enable Conical Support" -msgstr "启用锥形支撑" - -msgctxt "support_conical_enabled description" -msgid "Make support areas smaller at the bottom than at the overhang." -msgstr "使底部的支撑区域小于悬垂处的支撑区域。" - -msgctxt "support_conical_angle label" -msgid "Conical Support Angle" -msgstr "锥形支撑角度" - -msgctxt "support_conical_angle description" -msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." -msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" - -msgctxt "support_conical_min_width label" -msgid "Conical Support Minimum Width" -msgstr "锥形支撑最小宽度" - -msgctxt "support_conical_min_width description" -msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." -msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" - -msgctxt "magic_fuzzy_skin_enabled label" -msgid "Fuzzy Skin" -msgstr "模糊皮肤" - -msgctxt "magic_fuzzy_skin_enabled description" -msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." -msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" - -msgctxt "magic_fuzzy_skin_outside_only label" -msgid "Fuzzy Skin Outside Only" -msgstr "仅外部模糊皮肤" - -msgctxt "magic_fuzzy_skin_outside_only description" -msgid "Jitter only the parts' outlines and not the parts' holes." -msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" - -msgctxt "magic_fuzzy_skin_thickness label" -msgid "Fuzzy Skin Thickness" -msgstr "模糊皮肤厚度" - -msgctxt "magic_fuzzy_skin_thickness description" -msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." -msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" - -msgctxt "magic_fuzzy_skin_point_density label" -msgid "Fuzzy Skin Density" -msgstr "模糊皮肤密度" - -msgctxt "magic_fuzzy_skin_point_density description" -msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." -msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" - -msgctxt "magic_fuzzy_skin_point_dist label" -msgid "Fuzzy Skin Point Distance" -msgstr "模糊皮肤点距离" - -msgctxt "magic_fuzzy_skin_point_dist description" -msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." -msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" - -msgctxt "flow_rate_max_extrusion_offset label" -msgid "Flow Rate Compensation Max Extrusion Offset" -msgstr "流量补偿最大挤出偏移值" - -msgctxt "flow_rate_max_extrusion_offset description" -msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." -msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。" - -msgctxt "flow_rate_extrusion_offset_factor label" -msgid "Flow Rate Compensation Factor" -msgstr "流量补偿因子" - -msgctxt "flow_rate_extrusion_offset_factor description" -msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." -msgstr "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" - -msgctxt "adaptive_layer_height_enabled label" -msgid "Use Adaptive Layers" -msgstr "使用自适应图层" - -msgctxt "adaptive_layer_height_enabled description" -msgid "Adaptive layers computes the layer heights depending on the shape of the model." -msgstr "自适应图层根据模型形状计算图层高度。" - -msgctxt "adaptive_layer_height_variation label" -msgid "Adaptive Layers Maximum Variation" -msgstr "自适应图层最大变化" - -msgctxt "adaptive_layer_height_variation description" -msgid "The maximum allowed height different from the base layer height." -msgstr "最大允许高度与基层高度不同。" - -msgctxt "adaptive_layer_height_variation_step label" -msgid "Adaptive Layers Variation Step Size" -msgstr "自适应图层变化步长" - -msgctxt "adaptive_layer_height_variation_step description" -msgid "The difference in height of the next layer height compared to the previous one." -msgstr "下一层与前一层的高度差。" - -msgctxt "adaptive_layer_height_threshold label" -msgid "Adaptive Layers Topography Size" -msgstr "自适应图层地形尺寸" - -msgctxt "adaptive_layer_height_threshold description" -msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." -msgstr "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" - -msgctxt "wall_overhang_angle label" -msgid "Overhanging Wall Angle" -msgstr "悬垂壁角度" - -msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" - -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "悬垂壁速度" - -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "悬垂壁将以其正常打印速度的此百分比打印。" - -msgctxt "bridge_settings_enabled label" -msgid "Enable Bridge Settings" -msgstr "启用连桥设置" - -msgctxt "bridge_settings_enabled description" -msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." -msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" - -msgctxt "bridge_wall_min_length label" -msgid "Minimum Bridge Wall Length" -msgstr "最小桥壁长度" - -msgctxt "bridge_wall_min_length description" -msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." -msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" - -msgctxt "bridge_skin_support_threshold label" -msgid "Bridge Skin Support Threshold" -msgstr "连桥表面支撑阈值" - -msgctxt "bridge_skin_support_threshold description" -msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." -msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" - -msgctxt "bridge_sparse_infill_max_density label" -msgid "Bridge Sparse Infill Max Density" -msgstr "连桥稀疏填充物最大密度" - -msgctxt "bridge_sparse_infill_max_density description" -msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." -msgstr "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" - -msgctxt "bridge_wall_coast label" -msgid "Bridge Wall Coasting" -msgstr "桥壁滑行" - -msgctxt "bridge_wall_coast description" -msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." -msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" - -msgctxt "bridge_wall_speed label" -msgid "Bridge Wall Speed" -msgstr "桥壁速度" - -msgctxt "bridge_wall_speed description" -msgid "The speed at which the bridge walls are printed." -msgstr "打印桥壁的速度。" - -msgctxt "bridge_wall_material_flow label" -msgid "Bridge Wall Flow" -msgstr "桥壁流量" - -msgctxt "bridge_wall_material_flow description" -msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." -msgstr "打印桥壁时,将挤出的材料量乘以此值。" - -msgctxt "bridge_skin_speed label" -msgid "Bridge Skin Speed" -msgstr "连桥表面速度" - -msgctxt "bridge_skin_speed description" -msgid "The speed at which bridge skin regions are printed." -msgstr "打印连桥表面区域的速度。" - -msgctxt "bridge_skin_material_flow label" -msgid "Bridge Skin Flow" -msgstr "连桥表面流量" - -msgctxt "bridge_skin_material_flow description" -msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." -msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" - -msgctxt "bridge_skin_density label" -msgid "Bridge Skin Density" -msgstr "连桥表面密度" - -msgctxt "bridge_skin_density description" -msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。" - -msgctxt "bridge_fan_speed label" -msgid "Bridge Fan Speed" -msgstr "连桥风扇速度" - -msgctxt "bridge_fan_speed description" -msgid "Percentage fan speed to use when printing bridge walls and skin." -msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" - -msgctxt "bridge_enable_more_layers label" -msgid "Bridge Has Multiple Layers" -msgstr "连桥有多层" - -msgctxt "bridge_enable_more_layers description" -msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." -msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" - -msgctxt "bridge_skin_speed_2 label" -msgid "Bridge Second Skin Speed" -msgstr "连桥第二层表面速度" - -msgctxt "bridge_skin_speed_2 description" -msgid "Print speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的打印速度。" - -msgctxt "bridge_skin_material_flow_2 label" -msgid "Bridge Second Skin Flow" -msgstr "连桥第二层表面流量" - -msgctxt "bridge_skin_material_flow_2 description" -msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。" - -msgctxt "bridge_skin_density_2 label" -msgid "Bridge Second Skin Density" -msgstr "连桥第二层表面密度" - -msgctxt "bridge_skin_density_2 description" -msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" - -msgctxt "bridge_fan_speed_2 label" -msgid "Bridge Second Skin Fan Speed" -msgstr "连桥第二层表面风扇速度" - -msgctxt "bridge_fan_speed_2 description" -msgid "Percentage fan speed to use when printing the second bridge skin layer." -msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" - -msgctxt "bridge_skin_speed_3 label" -msgid "Bridge Third Skin Speed" -msgstr "连桥第三层表面速度" - -msgctxt "bridge_skin_speed_3 description" -msgid "Print speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的打印速度。" - -msgctxt "bridge_skin_material_flow_3 label" -msgid "Bridge Third Skin Flow" -msgstr "连桥第三层表面流量" - -msgctxt "bridge_skin_material_flow_3 description" -msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." -msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。" - -msgctxt "bridge_skin_density_3 label" -msgid "Bridge Third Skin Density" -msgstr "连桥第三层表面密度" - -msgctxt "bridge_skin_density_3 description" -msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." -msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" - -msgctxt "bridge_fan_speed_3 label" -msgid "Bridge Third Skin Fan Speed" -msgstr "连桥第三层表面风扇速度" - -msgctxt "bridge_fan_speed_3 description" -msgid "Percentage fan speed to use when printing the third bridge skin layer." -msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" - -msgctxt "clean_between_layers label" -msgid "Wipe Nozzle Between Layers" -msgstr "图层切换后擦拭喷嘴" - -msgctxt "clean_between_layers description" -msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." -msgstr "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" - -msgctxt "max_extrusion_before_wipe label" -msgid "Material Volume Between Wipes" -msgstr "擦拭之间的材料量" - -msgctxt "max_extrusion_before_wipe description" -msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." -msgstr "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" - -msgctxt "wipe_retraction_enable label" -msgid "Wipe Retraction Enable" -msgstr "启用擦拭回抽" - -msgctxt "wipe_retraction_enable description" -msgid "Retract the filament when the nozzle is moving over a non-printed area." -msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" - -msgctxt "wipe_retraction_amount label" -msgid "Wipe Retraction Distance" -msgstr "擦拭回抽距离" - -msgctxt "wipe_retraction_amount description" -msgid "Amount to retract the filament so it does not ooze during the wipe sequence." -msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" - -msgctxt "wipe_retraction_extra_prime_amount label" -msgid "Wipe Retraction Extra Prime Amount" -msgstr "擦拭回抽额外装填量" - -msgctxt "wipe_retraction_extra_prime_amount description" -msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." -msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" - -msgctxt "wipe_retraction_speed label" -msgid "Wipe Retraction Speed" -msgstr "擦拭回抽速度" - -msgctxt "wipe_retraction_speed description" -msgid "The speed at which the filament is retracted and primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" - -msgctxt "wipe_retraction_retract_speed label" -msgid "Wipe Retraction Retract Speed" -msgstr "擦拭回抽期间的回抽速度" - -msgctxt "wipe_retraction_retract_speed description" -msgid "The speed at which the filament is retracted during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材回抽的速度。" - -msgctxt "wipe_retraction_prime_speed label" -msgid "Wipe Retraction Prime Speed" -msgstr "擦拭回抽装填速度" - -msgctxt "wipe_retraction_prime_speed description" -msgid "The speed at which the filament is primed during a wipe retraction move." -msgstr "擦拭回抽移动期间耗材装填的速度。" - -msgctxt "wipe_pause label" -msgid "Wipe Pause" -msgstr "擦拭暂停" - -msgctxt "wipe_pause description" -msgid "Pause after the unretract." -msgstr "在未回抽后暂停。" - -msgctxt "wipe_hop_enable label" -msgid "Wipe Z Hop" -msgstr "擦拭 Z 抬升" - -msgctxt "wipe_hop_enable description" -msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." -msgstr "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" - -msgctxt "wipe_hop_amount label" -msgid "Wipe Z Hop Height" -msgstr "擦拭 Z 抬升高度" - -msgctxt "wipe_hop_amount description" -msgid "The height difference when performing a Z Hop." -msgstr "执行 Z 抬升的高度差。" - -msgctxt "wipe_hop_speed label" -msgid "Wipe Hop Speed" -msgstr "擦拭抬升速度" - -msgctxt "wipe_hop_speed description" -msgid "Speed to move the z-axis during the hop." -msgstr "抬升期间移动 Z 轴的速度。" - -msgctxt "wipe_brush_pos_x label" -msgid "Wipe Brush X Position" -msgstr "擦拭刷 X 轴坐标" - -msgctxt "wipe_brush_pos_x description" -msgid "X location where wipe script will start." -msgstr "擦拭开始处的 X 轴坐标。" - -msgctxt "wipe_repeat_count label" -msgid "Wipe Repeat Count" -msgstr "擦拭重复计数" - -msgctxt "wipe_repeat_count description" -msgid "Number of times to move the nozzle across the brush." -msgstr "在擦拭刷上移动喷嘴的次数。" - -msgctxt "wipe_move_distance label" -msgid "Wipe Move Distance" -msgstr "擦拭移动距离" - -msgctxt "wipe_move_distance description" -msgid "The distance to move the head back and forth across the brush." -msgstr "在擦拭刷上来回移动喷嘴头的距离。" - -msgctxt "small_hole_max_size label" -msgid "Small Hole Max Size" -msgstr "小孔最大尺寸" - -msgctxt "small_hole_max_size description" -msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" - -msgctxt "small_feature_max_length label" -msgid "Small Feature Max Length" -msgstr "微小特征最大长度" - -msgctxt "small_feature_max_length description" -msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." -msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" - -msgctxt "small_feature_speed_factor label" -msgid "Small Feature Speed" -msgstr "微小特征速度" - -msgctxt "small_feature_speed_factor description" -msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" - -msgctxt "small_feature_speed_factor_0 label" -msgid "Small Feature Initial Layer Speed" -msgstr "微小特征初始层速度" - -msgctxt "small_feature_speed_factor_0 description" -msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." -msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" +msgctxt "alternate_carve_order label" +msgid "Alternate Mesh Removal" +msgstr "交替网格移除" msgctxt "material_alternate_walls label" msgid "Alternate Wall Directions" @@ -5575,126 +173,6070 @@ msgctxt "material_alternate_walls description" msgid "Alternate wall directions every other layer and inset. Useful for materials that can build up stress, like for metal printing." msgstr "在每一层或嵌入上交替壁方向。这适用于会产生应力的材料,例如在金属打印中。" -msgctxt "group_outer_walls label" -msgid "Group Outer Walls" -msgstr "外墙编组" +msgctxt "machine_buildplate_type option aluminum" +msgid "Aluminum" +msgstr "铝" -msgctxt "group_outer_walls description" -msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." -msgstr "同一层不同组件的外墙依次进行打印。当启用此功能时,由于每次只打印一种类型的外壁,挤出量变化的数量受到限制;当禁用时,由于同一组件内的外壁被分组,组件之间的行进次数会减少。" +msgctxt "machine_always_write_active_tool label" +msgid "Always Write Active Tool" +msgstr "始终写入活动工具" -msgctxt "ppr label" -msgid "Print Process Reporting" -msgstr "打印过程报告" +msgctxt "travel_retract_before_outer_wall description" +msgid "Always retract when moving to start an outer wall." +msgstr "在移动开始打印外壁时始终回抽。" -msgctxt "ppr description" -msgid "Reporting events that go out of set thresholds" -msgstr "报告超出设定阈值的事件" +msgctxt "xy_offset description" +msgid "Amount of offset applied to all polygons in each layer. Positive values can compensate for too big holes; negative values can compensate for too small holes." +msgstr "应用到每一层所有多边形的偏移量。 正数值可以补偿过大的孔洞;负数值可以补偿过小的孔洞。" -msgctxt "ppr_enable label" -msgid "Enable Print Process Reporting" -msgstr "启用打印过程报告" +msgctxt "xy_offset_layer_0 description" +msgid "Amount of offset applied to all polygons in the first layer. A negative value can compensate for squishing of the first layer known as \"elephant's foot\"." +msgstr "应用到第一层所有多边形的偏移量。 负数值可以补偿第一层的压扁量(被称为“象脚”)。" -msgctxt "ppr_enable description" -msgid "Enable print process reporting for setting threshold values for possible fault detection." -msgstr "启用打印过程报告以设置可能的故障检测的阈值。" +msgctxt "support_offset description" +msgid "Amount of offset applied to all support polygons in each layer. Positive values can smooth out the support areas and result in more sturdy support." +msgstr "应用到每一层所有支撑多边形的偏移量。 正值可以让支撑区域更平滑,并产生更为牢固的支撑。" -msgctxt "flow_warn_limit label" -msgid "Flow Warning" -msgstr "挤出量警告" +msgctxt "support_bottom_offset description" +msgid "Amount of offset applied to the floors of the support." +msgstr "应用到支撑底板的偏移量。" -msgctxt "flow_warn_limit description" -msgid "Limit on the flow warning for detection." -msgstr "检测的挤出量警告限制。" +msgctxt "support_roof_offset description" +msgid "Amount of offset applied to the roofs of the support." +msgstr "应用到支撑顶板的偏移量。" -msgctxt "flow_anomaly_limit label" -msgid "Flow Limit" -msgstr "挤出量限制" +msgctxt "support_interface_offset description" +msgid "Amount of offset applied to the support interface polygons." +msgstr "应用到支撑接触面多边形的偏移量。" -msgctxt "flow_anomaly_limit description" -msgid "Limit on flow anomaly for detection." -msgstr "检测的挤出量异常限制。" +msgctxt "wipe_retraction_amount description" +msgid "Amount to retract the filament so it does not ooze during the wipe sequence." +msgstr "耗材回抽量,可避免耗材在擦拭期间渗出。" -msgctxt "print_temp_warn_limit label" -msgid "Print temperature Warning" -msgstr "打印温度警告" +msgctxt "sub_div_rad_add description" +msgid "An addition to the radius from the center of each cube to check for the boundary of the model, as to decide whether this cube should be subdivided. Larger values lead to a thicker shell of small cubes near the boundary of the model." +msgstr "从每个立方体的中心对半径进行添加,以检查模型的边界,进而决定是否应对此立方体进行分区。 值越大则模型边界附近的小型立方体外壳越厚。" -msgctxt "print_temp_warn_limit description" -msgid "Limit on Print temperature warning for detection." -msgstr "检测的打印温度警告限制。" +msgctxt "anti_overhang_mesh label" +msgid "Anti Overhang Mesh" +msgstr "防悬网格" -msgctxt "print_temp_anomaly_limit label" -msgid "Print temperature Limit" -msgstr "打印温度限制" +msgctxt "material_anti_ooze_retracted_position label" +msgid "Anti-ooze Retracted Position" +msgstr "防渗出回抽位置" -msgctxt "print_temp_anomaly_limit description" -msgid "Limit on Print Temperature anomaly for detection." -msgstr "检测的打印温度异常限制。" +msgctxt "material_anti_ooze_retraction_speed label" +msgid "Anti-ooze Retraction Speed" +msgstr "防渗出回抽速度" -msgctxt "bv_temp_warn_limit label" -msgid "Build Volume temperature Warning" -msgstr "打印体积温度警告" +msgctxt "machine_use_extruder_offset_to_offset_coords description" +msgid "Apply the extruder offset to the coordinate system. Affects all extruders." +msgstr "将挤出器偏移量应用到坐标轴系统。影响所有挤出器。" -msgctxt "bv_temp_warn_limit description" -msgid "Limit on Build Volume Temperature warning for detection." -msgstr "检测的打印体积温度警告限制。" +msgctxt "interlocking_enable description" +msgid "At the locations where models touch, generate an interlocking beam structure. This improves the adhesion between models, especially models printed in different materials." +msgstr "在模型接触的位置,生成互锁梁结构。这改善了模型之间的粘合力,特别是用不同材料打印的模型。" + +msgctxt "travel_avoid_other_parts label" +msgid "Avoid Printed Parts When Traveling" +msgstr "空驶时避开已打印部分" + +msgctxt "travel_avoid_supports label" +msgid "Avoid Supports When Traveling" +msgstr "避免移动时支撑" + +msgctxt "z_seam_position option back" +msgid "Back" +msgstr "返回" + +msgctxt "z_seam_position option backleft" +msgid "Back Left" +msgstr "左后方" + +msgctxt "z_seam_position option backright" +msgid "Back Right" +msgstr "右后方" + +msgctxt "machine_gcode_flavor option BFB" +msgid "Bits from Bytes" +msgstr "Bits from Bytes" + +msgctxt "magic_mesh_surface_mode option both" +msgid "Both" +msgstr "两者都" + +msgctxt "support_interface_priority option nothing" +msgid "Both overlap" +msgstr "两者重叠" + +msgctxt "bottom_layers label" +msgid "Bottom Layers" +msgstr "底部层数" + +msgctxt "top_bottom_pattern_0 label" +msgid "Bottom Pattern Initial Layer" +msgstr "底层图案起始层" + +msgctxt "bottom_skin_expand_distance label" +msgid "Bottom Skin Expand Distance" +msgstr "底部皮肤扩展距离" + +msgctxt "bottom_skin_preshrink label" +msgid "Bottom Skin Removal Width" +msgstr "底部皮肤移除宽度" + +msgctxt "bottom_thickness label" +msgid "Bottom Thickness" +msgstr "底层厚度" + +msgctxt "support_tree_top_rate label" +msgid "Branch Density" +msgstr "分支密度" + +msgctxt "support_tree_branch_diameter label" +msgid "Branch Diameter" +msgstr "分支直径" + +msgctxt "support_tree_branch_diameter_angle label" +msgid "Branch Diameter Angle" +msgstr "分支直径角度" + +msgctxt "material_break_preparation_retracted_position label" +msgid "Break Preparation Retracted Position" +msgstr "断裂缓冲期回抽位置" + +msgctxt "material_break_preparation_speed label" +msgid "Break Preparation Retraction Speed" +msgstr "断裂缓冲期回抽速度" + +msgctxt "material_break_preparation_temperature label" +msgid "Break Preparation Temperature" +msgstr "断裂缓冲期温度" + +msgctxt "material_break_retracted_position label" +msgid "Break Retracted Position" +msgstr "断裂回抽位置" + +msgctxt "material_break_speed label" +msgid "Break Retraction Speed" +msgstr "断裂回抽速度" + +msgctxt "material_break_temperature label" +msgid "Break Temperature" +msgstr "折断温度" + +msgctxt "support_skip_some_zags label" +msgid "Break Up Support In Chunks" +msgstr "将支撑结构分拆成块状" + +msgctxt "bridge_fan_speed label" +msgid "Bridge Fan Speed" +msgstr "连桥风扇速度" + +msgctxt "bridge_enable_more_layers label" +msgid "Bridge Has Multiple Layers" +msgstr "连桥有多层" + +msgctxt "bridge_skin_density_2 label" +msgid "Bridge Second Skin Density" +msgstr "连桥第二层表面密度" + +msgctxt "bridge_fan_speed_2 label" +msgid "Bridge Second Skin Fan Speed" +msgstr "连桥第二层表面风扇速度" + +msgctxt "bridge_skin_material_flow_2 label" +msgid "Bridge Second Skin Flow" +msgstr "连桥第二层表面流量" + +msgctxt "bridge_skin_speed_2 label" +msgid "Bridge Second Skin Speed" +msgstr "连桥第二层表面速度" + +msgctxt "bridge_skin_density label" +msgid "Bridge Skin Density" +msgstr "连桥表面密度" + +msgctxt "bridge_skin_material_flow label" +msgid "Bridge Skin Flow" +msgstr "连桥表面流量" + +msgctxt "bridge_skin_speed label" +msgid "Bridge Skin Speed" +msgstr "连桥表面速度" + +msgctxt "bridge_skin_support_threshold label" +msgid "Bridge Skin Support Threshold" +msgstr "连桥表面支撑阈值" + +msgctxt "bridge_sparse_infill_max_density label" +msgid "Bridge Sparse Infill Max Density" +msgstr "连桥稀疏填充物最大密度" + +msgctxt "bridge_skin_density_3 label" +msgid "Bridge Third Skin Density" +msgstr "连桥第三层表面密度" + +msgctxt "bridge_fan_speed_3 label" +msgid "Bridge Third Skin Fan Speed" +msgstr "连桥第三层表面风扇速度" + +msgctxt "bridge_skin_material_flow_3 label" +msgid "Bridge Third Skin Flow" +msgstr "连桥第三层表面流量" + +msgctxt "bridge_skin_speed_3 label" +msgid "Bridge Third Skin Speed" +msgstr "连桥第三层表面速度" + +msgctxt "bridge_wall_coast label" +msgid "Bridge Wall Coasting" +msgstr "桥壁滑行" + +msgctxt "bridge_wall_material_flow label" +msgid "Bridge Wall Flow" +msgstr "桥壁流量" + +msgctxt "bridge_wall_speed label" +msgid "Bridge Wall Speed" +msgstr "桥壁速度" + +msgctxt "adhesion_type option brim" +msgid "Brim" +msgstr "Brim" + +msgctxt "brim_inside_margin label" +msgid "Brim Avoid Margin" +msgstr "裙边邻避边距" + +msgctxt "brim_gap label" +msgid "Brim Distance" +msgstr "边沿距离" + +msgctxt "brim_line_count label" +msgid "Brim Line Count" +msgstr "Brim 走线计数" + +msgctxt "brim_location label" +msgid "Brim Location" +msgstr "裙边位置" + +msgctxt "brim_replaces_support label" +msgid "Brim Replaces Support" +msgstr "Brim 替换支撑" + +msgctxt "brim_width label" +msgid "Brim Width" +msgstr "Brim 宽度" + +msgctxt "platform_adhesion label" +msgid "Build Plate Adhesion" +msgstr "打印平台附着" + +msgctxt "adhesion_extruder_nr label" +msgid "Build Plate Adhesion Extruder" +msgstr "打印平台附着挤出机" + +msgctxt "adhesion_type label" +msgid "Build Plate Adhesion Type" +msgstr "打印平台附着类型" + +msgctxt "machine_buildplate_type label" +msgid "Build Plate Material" +msgstr "打印平台材料" + +msgctxt "machine_shape label" +msgid "Build Plate Shape" +msgstr "打印平台形状" + +msgctxt "material_bed_temperature label" +msgid "Build Plate Temperature" +msgstr "打印平台温度" + +msgctxt "material_bed_temperature_layer_0 label" +msgid "Build Plate Temperature Initial Layer" +msgstr "打印平台温度起始层" + +msgctxt "build_volume_temperature label" +msgid "Build Volume Temperature" +msgstr "打印体积温度" msgctxt "bv_temp_anomaly_limit label" msgid "Build Volume temperature Limit" msgstr "打印体积温度限制" -msgctxt "bv_temp_anomaly_limit description" -msgid "Limit on Build Volume temperature Anomaly for detection." -msgstr "检测的打印体积温度异常限制。" +msgctxt "bv_temp_warn_limit label" +msgid "Build Volume temperature Warning" +msgstr "打印体积温度警告" -msgctxt "command_line_settings label" -msgid "Command Line Settings" -msgstr "命令行设置" - -msgctxt "command_line_settings description" -msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." -msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" +msgctxt "prime_tower_brim_enable description" +msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." +msgstr "启用此设置将为您的 prime tower 添加一个边缘,即使您的模型中原本没有。如果您希望高塔有更坚固的基座,可以增加底座高度。" msgctxt "center_object label" msgid "Center Object" msgstr "中心点" -msgctxt "center_object description" -msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." -msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。" +msgctxt "conical_overhang_enabled description" +msgid "Change the geometry of the printed model such that minimal support is required. Steep overhangs will become shallow overhangs. Overhanging areas will drop down to become more vertical." +msgstr "更改打印模型的几何,以最大程度减少需要的支撑。 陡峭的悬垂物将变浅。 悬垂区域将下降变得更垂直。" + +msgctxt "support_structure description" +msgid "Chooses between the techniques available to generate support. \"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible." +msgstr "在可用于产生支撑的方法之间进行选择。“普通”支撑在悬垂部分正下方形成一个支撑结构,并直接垂下这些区域。“树形”支撑形成一些分支,它们朝向在这些分支的尖端上支撑模型的悬垂区域,并使这些分支可缠绕在模型周围以尽可能多地从构建板上支撑它。" + +msgctxt "coasting_speed label" +msgid "Coasting Speed" +msgstr "滑行速度" + +msgctxt "coasting_volume label" +msgid "Coasting Volume" +msgstr "滑行体积" + +msgctxt "coasting_enable description" +msgid "Coasting replaces the last part of an extrusion path with a travel path. The oozed material is used to print the last piece of the extrusion path in order to reduce stringing." +msgstr "滑行会用一个空驶路径替代挤出路径的最后部分。 渗出材料用于打印挤出路径的最后部分,以便减少串接。" + +msgctxt "retraction_combing label" +msgid "Combing Mode" +msgstr "梳理模式" + +msgctxt "retraction_combing description" +msgid "Combing keeps the nozzle within already printed areas when traveling. This results in slightly longer travel moves but reduces the need for retractions. If combing is off, the material will retract and the nozzle moves in a straight line to the next point. It is also possible to avoid combing over top/bottom skin areas or to only comb within the infill." +msgstr "梳理可在空驶时让喷嘴保持在已打印区域内。这会使空驶距离稍微延长,但可减少回抽需求。如果关闭梳理,则材料将回抽,且喷嘴沿着直线移动到下一个点。也可以避免顶部/底部皮肤区域的梳理或仅在填充物内进行梳理。" + +msgctxt "command_line_settings label" +msgid "Command Line Settings" +msgstr "命令行设置" + +msgctxt "infill_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" + +msgctxt "ironing_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +msgctxt "roofing_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +msgctxt "support_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +msgctxt "support_interface_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +msgctxt "support_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +msgctxt "support_roof_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" + +msgctxt "top_bottom_pattern option concentric" +msgid "Concentric" +msgstr "同心圆" + +msgctxt "top_bottom_pattern_0 option concentric" +msgid "Concentric" +msgstr "同心圆" + +msgctxt "support_conical_angle label" +msgid "Conical Support Angle" +msgstr "锥形支撑角度" + +msgctxt "support_conical_min_width label" +msgid "Conical Support Minimum Width" +msgstr "锥形支撑最小宽度" + +msgctxt "zig_zaggify_infill label" +msgid "Connect Infill Lines" +msgstr "连接填充走线" + +msgctxt "connect_infill_polygons label" +msgid "Connect Infill Polygons" +msgstr "连接填充多边形" + +msgctxt "zig_zaggify_support label" +msgid "Connect Support Lines" +msgstr "连接支撑线" + +msgctxt "support_connect_zigzags label" +msgid "Connect Support ZigZags" +msgstr "连接支撑锯齿形" + +msgctxt "connect_skin_polygons label" +msgid "Connect Top/Bottom Polygons" +msgstr "连接顶部/底部多边形" + +msgctxt "connect_infill_polygons description" +msgid "Connect infill paths where they run next to each other. For infill patterns which consist of several closed polygons, enabling this setting greatly reduces the travel time." +msgstr "在填充路径互相紧靠运行的地方连接它们。对于包含若干闭合多边形的填充图案,启用此设置可大大减少空驶时间。" + +msgctxt "support_connect_zigzags description" +msgid "Connect the ZigZags. This will increase the strength of the zig zag support structure." +msgstr "连接锯齿形。 这将增加锯齿形支撑结构的强度。" + +msgctxt "zig_zaggify_support description" +msgid "Connect the ends of the support lines together. Enabling this setting can make your support more sturdy and reduce underextrusion, but it will cost more material." +msgstr "将支撑线尾端连接在一起。启用此设置会让支撑更为牢固并减少挤出不足,但需要更多材料。" + +msgctxt "zig_zaggify_infill description" +msgid "Connect the ends where the infill pattern meets the inner wall using a line which follows the shape of the inner wall. Enabling this setting can make the infill adhere to the walls better and reduce the effects of infill on the quality of vertical surfaces. Disabling this setting reduces the amount of material used." +msgstr "使用沿内壁形状的走线连接填充图案与内壁相接的各端。启用此设置会使填充更好地粘着在壁上,减少填充物效果对垂直表面质量的影响。禁用此设置可减少使用的材料量。" + +msgctxt "connect_skin_polygons description" +msgid "Connect top/bottom skin paths where they run next to each other. For the concentric pattern enabling this setting greatly reduces the travel time, but because the connections can happen midway over infill this feature can reduce the top surface quality." +msgstr "在顶部/底部皮肤路径互相紧靠运行的地方连接它们。对于同心图案,启用此设置可大大减少空驶时间,但由于连接可在填充中途发生,此功能可能会降低顶部表面质量。" + +msgctxt "z_seam_corner description" +msgid "Control whether corners on the model outline influence the position of the seam. None means that corners have no influence on the seam position. Hide Seam makes the seam more likely to occur on an inside corner. Expose Seam makes the seam more likely to occur on an outside corner. Hide or Expose Seam makes the seam more likely to occur at an inside or outside corner. Smart Hiding allows both inside and outside corners, but chooses inside corners more frequently, if appropriate." +msgstr "控制模型轮廓上的角是否影响缝隙的位置。“无”表示各个角不影响缝隙位置。“隐藏缝隙”会使缝隙更可能出现在内侧角上。“外露缝隙”会使缝隙更可能出现在外侧角上。“隐藏或外露缝隙”会使缝隙更可能出现在内侧或外侧角上。“智能隐藏”允许缝隙出现在内侧和外侧角上,如适当,会更多地出现在内侧角上。" + +msgctxt "infill_multiplier description" +msgid "Convert each infill line to this many lines. The extra lines do not cross over each other, but avoid each other. This makes the infill stiffer, but increases print time and material usage." +msgstr "将每个填充走线转换成这种多重走线。额外走线互相不交叉,而是互相避开。这使得填充更严格,但会增加打印时间和材料使用。" + +msgctxt "machine_nozzle_cool_down_speed label" +msgid "Cool Down Speed" +msgstr "冷却速度" + +msgctxt "cooling description" +msgid "Cooling" +msgstr "冷却" + +msgctxt "cooling label" +msgid "Cooling" +msgstr "冷却" + +msgctxt "infill_pattern option cross" +msgid "Cross" +msgstr "交叉" + +msgctxt "support_pattern option cross" +msgid "Cross" +msgstr "交叉" + +msgctxt "infill_pattern option cross_3d" +msgid "Cross 3D" +msgstr "交叉 3D" + +msgctxt "cross_infill_pocket_size label" +msgid "Cross 3D Pocket Size" +msgstr "交叉 3D 气槽大小" + +msgctxt "cross_support_density_image label" +msgid "Cross Fill Density Image for Support" +msgstr "交叉填充密度图象" + +msgctxt "cross_infill_density_image label" +msgid "Cross Infill Density Image" +msgstr "交叉加密图像密度" + +msgctxt "material_crystallinity label" +msgid "Crystalline Material" +msgstr "晶体材料" + +msgctxt "infill_pattern option cubic" +msgid "Cubic" +msgstr "立方体" + +msgctxt "infill_pattern option cubicsubdiv" +msgid "Cubic Subdivision" +msgstr "立方体分区" + +msgctxt "sub_div_rad_add label" +msgid "Cubic Subdivision Shell" +msgstr "立方体分区外壳" + +msgctxt "cutting_mesh label" +msgid "Cutting Mesh" +msgstr "切割网格" + +msgctxt "material_flow_temp_graph description" +msgid "Data linking material flow (in mm3 per second) to temperature (degrees Celsius)." +msgstr "数据连接材料流量(mm3/s)到温度(摄氏度)。" + +msgctxt "machine_acceleration label" +msgid "Default Acceleration" +msgstr "默认加速度" + +msgctxt "default_material_bed_temperature label" +msgid "Default Build Plate Temperature" +msgstr "默认打印平台温度" + +msgctxt "machine_max_jerk_e label" +msgid "Default Filament Jerk" +msgstr "默认挤出电机 Jerk" + +msgctxt "default_material_print_temperature label" +msgid "Default Printing Temperature" +msgstr "默认打印温度" + +msgctxt "machine_max_jerk_xy label" +msgid "Default X-Y Jerk" +msgstr "默认 X-Y 平面抖动速度(Jerk)" + +msgctxt "machine_max_jerk_z label" +msgid "Default Z Jerk" +msgstr "默认 Z 轴抖动速度(Jerk)" + +msgctxt "machine_max_jerk_xy description" +msgid "Default jerk for movement in the horizontal plane." +msgstr "水平面移动的默认抖动速度。" + +msgctxt "machine_max_jerk_z description" +msgid "Default jerk for the motor of the Z-direction." +msgstr "Z 轴方向电机的默认抖动速度。" + +msgctxt "machine_max_jerk_e description" +msgid "Default jerk for the motor of the filament." +msgstr "耗材电机的默认抖动速度。" + +msgctxt "bridge_settings_enabled description" +msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." +msgstr "在打印连桥时,检测连桥并修改打印速度、流量和风扇设置。" + +msgctxt "inset_direction description" +msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." +msgstr "确定打印壁的顺序。先打印外壁有助于提高尺寸精度,因为内壁的误差不会传播到外壁。不过,在打印悬垂对象时,后打印外壁可以实现更好的堆叠。当总内壁数量不均匀时,“中心最后线”总是最后打印。" + +msgctxt "infill_mesh_order description" +msgid "Determines the priority of this mesh when considering multiple overlapping infill meshes. Areas where multiple infill meshes overlap will take on the settings of the mesh with the highest rank. An infill mesh with a higher rank will modify the infill of infill meshes with lower rank and normal meshes." +msgstr "在考虑多个重叠的填充网格时确定此网格的优先级。其中有多个填充网格重叠的区域将采用等级最高的网格的设置。具有较高等级的填充网格将修改具有较低等级的填充网格和普通网格的填充。" + +msgctxt "lightning_infill_support_angle description" +msgid "Determines when a lightning infill layer has to support anything above it. Measured in the angle given the thickness of a layer." +msgstr "决定闪电形填充层何时必须支撑其上方的任何物体。在给定的层厚度下测得的角度。" + +msgctxt "lightning_infill_overhang_angle description" +msgid "Determines when a lightning infill layer has to support the model above it. Measured in the angle given the thickness." +msgstr "决定闪电形填充层何时必须支撑其上方的模型。在给定的厚度下测得的角度。" + +msgctxt "material_diameter label" +msgid "Diameter" +msgstr "直径" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model label" +msgid "Diameter Increase To Model" +msgstr "扩大直径以匹配模型" + +msgctxt "support_tree_bp_diameter description" +msgid "Diameter every branch tries to achieve when reaching the buildplate. Improves bed adhesion." +msgstr "接触打印平台时,每个分支可能达到的直径。提高床附着力。" + +msgctxt "adhesion_type description" +msgid "Different options that help to improve both priming your extrusion and adhesion to the build plate. Brim adds a single layer flat area around the base of your model to prevent warping. Raft adds a thick grid with a roof below the model. Skirt is a line printed around the model, but not connected to the model." +msgstr "帮助改善挤出装填以及与打印平台附着的不同选项。 Brim 会在模型基座周围添加单层平面区域,以防止卷翘。 Raft 会在模型下添加一个有顶板的厚网格。 Skirt 是在模型四周打印的一条线,但并不与模型连接。" + +msgctxt "machine_disallowed_areas label" +msgid "Disallowed Areas" +msgstr "不允许区域" + +msgctxt "infill_line_distance description" +msgid "Distance between the printed infill lines. This setting is calculated by the infill density and the infill line width." +msgstr "打印填充走线之间的距离。 该设置是通过填充密度和填充线宽度计算。" + +msgctxt "support_initial_layer_line_distance description" +msgid "Distance between the printed initial layer support structure lines. This setting is calculated by the support density." +msgstr "已打印起始层支撑结构走线之间的距离。该设置通过支撑密度计算。" + +msgctxt "support_bottom_line_distance description" +msgid "Distance between the printed support floor lines. This setting is calculated by the Support Floor Density, but can be adjusted separately." +msgstr "已打印支撑底板走线之间的距离。 该设置是通过支撑底板密度计算,但可以单独调整。" + +msgctxt "support_roof_line_distance description" +msgid "Distance between the printed support roof lines. This setting is calculated by the Support Roof Density, but can be adjusted separately." +msgstr "已打印支撑顶板走线之间的距离。 该设置是通过支撑顶板密度计算,但可以单独调整。" + +msgctxt "support_line_distance description" +msgid "Distance between the printed support structure lines. This setting is calculated by the support density." +msgstr "已打印支撑结构走线之间的距离。 该设置通过支撑密度计算。" + +msgctxt "support_bottom_distance description" +msgid "Distance from the print to the bottom of the support. Note that this is rounded up to the next layer height." +msgstr "从打印物到支撑底部的距离。注意这个会上调到下一个层高。" + +msgctxt "support_top_distance description" +msgid "Distance from the top of the support to the print." +msgstr "从支撑顶部到打印品的距离。" + +msgctxt "support_z_distance description" +msgid "Distance from the top/bottom of the support structure to the print. This gap provides clearance to remove the supports after the model is printed. The topmost support layer below the model might be a fraction of regular layers." +msgstr "支撑结构顶部/底部到打印物的距离。这个间隙提供了清除模型打印后支撑的空间。模型下方的最顶层支撑层可能是常规层的一小部分。" + +msgctxt "infill_wipe_dist description" +msgid "Distance of a travel move inserted after every infill line, to make the infill stick to the walls better. This option is similar to infill overlap, but without extrusion and only on one end of the infill line." +msgstr "每条填充走线后插入的空驶距离,让填充物更好地粘着到壁上。 此选项与填充重叠类似,但没有挤出,且仅位于填充走线的一端。" + +msgctxt "wall_0_wipe_dist description" +msgid "Distance of a travel move inserted after the outer wall, to hide the Z seam better." +msgstr "插入外壁后的空驶距离,旨在更好地隐藏 Z 缝。" + +msgctxt "draft_shield_dist description" +msgid "Distance of the draft shield from the print, in the X/Y directions." +msgstr "防风罩在 X/Y 方向与打印品的距离。" + +msgctxt "ooze_shield_dist description" +msgid "Distance of the ooze shield from the print, in the X/Y directions." +msgstr "渗出罩在 X/Y 方向距打印品的距离。" + +msgctxt "support_xy_distance_overhang description" +msgid "Distance of the support structure from the overhang in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距悬垂的距离。" + +msgctxt "support_xy_distance description" +msgid "Distance of the support structure from the print in the X/Y directions." +msgstr "支撑结构在 X/Y 方向距打印品的距离。" + +msgctxt "meshfix_fluid_motion_shift_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "移动距离点,使路径平滑" + +msgctxt "meshfix_fluid_motion_small_distance description" +msgid "Distance points are shifted to smooth the path" +msgstr "移动距离点,使路径平滑" + +msgctxt "min_infill_area description" +msgid "Don't generate areas of infill smaller than this (use skin instead)." +msgstr "不要生成小于此面积的填充区域(使用皮肤取代)。" + +msgctxt "draft_shield_height label" +msgid "Draft Shield Height" +msgstr "防风罩高度" + +msgctxt "draft_shield_height_limitation label" +msgid "Draft Shield Limitation" +msgstr "防风罩限制" + +msgctxt "draft_shield_dist label" +msgid "Draft Shield X/Y Distance" +msgstr "防风罩 X/Y 距离" + +msgctxt "support_mesh_drop_down label" +msgid "Drop Down Support Mesh" +msgstr "下拉式支撑网格" + +msgctxt "dual label" +msgid "Dual Extrusion" +msgstr "双重挤出" + +msgctxt "machine_shape option elliptic" +msgid "Elliptic" +msgstr "类圆形" + +msgctxt "acceleration_enabled label" +msgid "Enable Acceleration Control" +msgstr "启用加速度控制" + +msgctxt "bridge_settings_enabled label" +msgid "Enable Bridge Settings" +msgstr "启用连桥设置" + +msgctxt "coasting_enable label" +msgid "Enable Coasting" +msgstr "启用滑行" + +msgctxt "support_conical_enabled label" +msgid "Enable Conical Support" +msgstr "启用锥形支撑" + +msgctxt "draft_shield_enabled label" +msgid "Enable Draft Shield" +msgstr "启用防风罩" + +msgctxt "meshfix_fluid_motion_enabled label" +msgid "Enable Fluid Motion" +msgstr "启用流体运动" + +msgctxt "ironing_enabled label" +msgid "Enable Ironing" +msgstr "启用熨平" + +msgctxt "jerk_enabled label" +msgid "Enable Jerk Control" +msgstr "启用抖动速度控制" + +msgctxt "machine_nozzle_temp_enabled label" +msgid "Enable Nozzle Temperature Control" +msgstr "启用喷嘴温度控制" + +msgctxt "ooze_shield_enabled label" +msgid "Enable Ooze Shield" +msgstr "启用渗出罩" + +msgctxt "prime_blob_enable label" +msgid "Enable Prime Blob" +msgstr "启用装填光点" + +msgctxt "prime_tower_enable label" +msgid "Enable Prime Tower" +msgstr "启用装填塔" + +msgctxt "cool_fan_enabled label" +msgid "Enable Print Cooling" +msgstr "开启打印冷却" + +msgctxt "ppr_enable label" +msgid "Enable Print Process Reporting" +msgstr "启用打印过程报告" + +msgctxt "retraction_enable label" +msgid "Enable Retraction" +msgstr "启用回抽" + +msgctxt "support_brim_enable label" +msgid "Enable Support Brim" +msgstr "启用支撑 Brim" + +msgctxt "support_bottom_enable label" +msgid "Enable Support Floor" +msgstr "启用支撑底板" + +msgctxt "support_interface_enable label" +msgid "Enable Support Interface" +msgstr "启用支撑接触面" + +msgctxt "support_roof_enable label" +msgid "Enable Support Roof" +msgstr "启用支撑顶板" + +msgctxt "acceleration_travel_enabled label" +msgid "Enable Travel Acceleration" +msgstr "启用空驶加速度" + +msgctxt "jerk_travel_enabled label" +msgid "Enable Travel Jerk" +msgstr "启用空驶抖动速度" + +msgctxt "ooze_shield_enabled description" +msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." +msgstr "启用外部渗出罩。 这将在模型周围创建一个外壳,如果与第一个喷嘴处于相同的高度,则可能会擦拭第二个喷嘴。" + +msgctxt "ppr_enable description" +msgid "Enable print process reporting for setting threshold values for possible fault detection." +msgstr "启用打印过程报告以设置可能的故障检测的阈值。" + +msgctxt "small_skin_on_surface description" +msgid "Enable small (up to 'Small Top/Bottom Width') regions on the topmost skinned layer (exposed to air) to be filled with walls instead of the default pattern." +msgstr "使最顶层蒙皮图层(暴露在空气中)的小区域(最多“小顶部/底部宽度”)用墙壁填充,而不是默认图案。" + +msgctxt "jerk_enabled description" +msgid "Enables adjusting the jerk of print head when the velocity in the X or Y axis changes. Increasing the jerk can reduce printing time at the cost of print quality." +msgstr "启用当 X 或 Y 轴的速度变化时调整打印头的抖动速度。 提高抖动速度可以通过以打印质量为代价来缩短打印时间。" + +msgctxt "acceleration_enabled description" +msgid "Enables adjusting the print head acceleration. Increasing the accelerations can reduce printing time at the cost of print quality." +msgstr "启用调整打印头加速度。 提高加速度可以通过以打印质量为代价来缩短打印时间。" + +msgctxt "cool_fan_enabled description" +msgid "Enables the print cooling fans while printing. The fans improve print quality on layers with short layer times and bridging / overhangs." +msgstr "打印时启用打印冷却风扇。 风扇可以在层时间较短和有桥接/悬垂的层上提高打印质量。" + +msgctxt "machine_end_gcode label" +msgid "End G-code" +msgstr "结束 G-code" + +msgctxt "material_end_of_filament_purge_length label" +msgid "End of Filament Purge Length" +msgstr "耗材末端清除长度" + +msgctxt "material_end_of_filament_purge_speed label" +msgid "End of Filament Purge Speed" +msgstr "耗材末端清除速度" + +msgctxt "brim_replaces_support description" +msgid "Enforce brim to be printed around the model even if that space would otherwise be occupied by support. This replaces some regions of the first layer of support by brim regions." +msgstr "强制围绕模型打印 Brim,即使该空间本该由支撑占据。此操作会将第一层的某些支撑区域替换为 Brim 区域。" + +msgctxt "brim_location option everywhere" +msgid "Everywhere" +msgstr "各处" + +msgctxt "support_type option everywhere" +msgid "Everywhere" +msgstr "全部支撑" + +msgctxt "slicing_tolerance option exclusive" +msgid "Exclusive" +msgstr "不包含" + +msgctxt "experimental label" +msgid "Experimental" +msgstr "实验性" + +msgctxt "z_seam_corner option z_seam_corner_outer" +msgid "Expose Seam" +msgstr "外露缝隙" + +msgctxt "meshfix_extensive_stitching label" +msgid "Extensive Stitching" +msgstr "广泛缝合" + +msgctxt "meshfix_extensive_stitching description" +msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." +msgstr "广泛缝合尝试通过接触多边形来闭合孔洞,以此缝合网格中的开孔。 此选项可能会产生大量的处理时间。" + +msgctxt "infill_wall_line_count label" +msgid "Extra Infill Wall Count" +msgstr "额外填充壁计数" + +msgctxt "skin_outline_count label" +msgid "Extra Skin Wall Count" +msgstr "额外皮肤壁计数" + +msgctxt "switch_extruder_extra_prime_amount description" +msgid "Extra material to prime after nozzle switching." +msgstr "喷嘴切换后的额外装填材料。" + +msgctxt "extruder_prime_pos_x label" +msgid "Extruder Prime X Position" +msgstr "挤出机 X 轴坐标" + +msgctxt "extruder_prime_pos_y label" +msgid "Extruder Prime Y Position" +msgstr "挤出机 Y 轴起始位置" + +msgctxt "extruder_prime_pos_z label" +msgid "Extruder Prime Z Position" +msgstr "挤出机初始 Z 轴位置" + +msgctxt "machine_extruders_share_heater label" +msgid "Extruders Share Heater" +msgstr "挤出器共用加热器" + +msgctxt "machine_extruders_share_nozzle label" +msgid "Extruders Share Nozzle" +msgstr "挤出器共用喷嘴" + +msgctxt "material_extrusion_cool_down_speed label" +msgid "Extrusion Cool Down Speed Modifier" +msgstr "挤出冷却速度调节器" + +msgctxt "speed_equalize_flow_width_factor description" +msgid "Extrusion width based correction factor on the speed. At 0% the movement speed is kept constant at the Print Speed. At 100% the movement speed is adjusted so that the flow (in mm³/s) is kept constant, i.e. lines half the normal Line Width are printed twice as fast and lines twice as wide are printed half as fast. A value larger than 100% can help to compensate for the higher pressure required to extrude wide lines." +msgstr "基于速度校正系数的挤出宽度。在 0% 时,移动速度保持在打印速度不变。在 100% 时,将调整移动速度以使流量(以 mm³/s 为单位)保持恒定,即以两倍的速度打印正常线宽一半的线条,以一半的速度打印两倍宽的线条。大于 100% 的值有助于为挤出宽线所需的更高压力提供补偿。" + +msgctxt "cool_fan_speed label" +msgid "Fan Speed" +msgstr "风扇速度" + +msgctxt "support_fan_enable label" +msgid "Fan Speed Override" +msgstr "风扇速度覆盖" + +msgctxt "small_feature_max_length description" +msgid "Feature outlines that are shorter than this length will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印小于此长度的特征轮廓。" + +msgctxt "experimental description" +msgid "Features that haven't completely been fleshed out yet." +msgstr "尚未完全充实的功能。" + +msgctxt "machine_feeder_wheel_diameter label" +msgid "Feeder Wheel Diameter" +msgstr "进料装置驱动轮的直径" + +msgctxt "material_final_print_temperature label" +msgid "Final Printing Temperature" +msgstr "最终打印温度" + +msgctxt "machine_firmware_retract label" +msgid "Firmware Retraction" +msgstr "固件收回" + +msgctxt "support_extruder_nr_layer_0 label" +msgid "First Layer Support Extruder" +msgstr "第一层支撑挤出机" + +msgctxt "material_flow label" +msgid "Flow" +msgstr "流量" + +msgctxt "speed_equalize_flow_width_factor label" +msgid "Flow Equalization Ratio" +msgstr "流量均衡比" + +msgctxt "flow_anomaly_limit label" +msgid "Flow Limit" +msgstr "挤出量限制" + +msgctxt "flow_rate_extrusion_offset_factor label" +msgid "Flow Rate Compensation Factor" +msgstr "流量补偿因子" + +msgctxt "flow_rate_max_extrusion_offset label" +msgid "Flow Rate Compensation Max Extrusion Offset" +msgstr "流量补偿最大挤出偏移值" + +msgctxt "material_flow_temp_graph label" +msgid "Flow Temperature Graph" +msgstr "流量温度图" + +msgctxt "flow_warn_limit label" +msgid "Flow Warning" +msgstr "挤出量警告" + +msgctxt "material_flow_layer_0 description" +msgid "Flow compensation for the first layer: the amount of material extruded on the initial layer is multiplied by this value." +msgstr "第一层的流量补偿:起始层挤出的材料量乘以此值。" + +msgctxt "skin_material_flow_layer_0 description" +msgid "Flow compensation on bottom lines of the first layer" +msgstr "第一层底部走线的流量补偿" + +msgctxt "infill_material_flow description" +msgid "Flow compensation on infill lines." +msgstr "填充走线的流量补偿。" + +msgctxt "support_interface_material_flow description" +msgid "Flow compensation on lines of support roof or floor." +msgstr "支撑顶板或底板走线的流量补偿。" + +msgctxt "roofing_material_flow description" +msgid "Flow compensation on lines of the areas at the top of the print." +msgstr "打印顶部区域走线的流量补偿。" + +msgctxt "prime_tower_flow description" +msgid "Flow compensation on prime tower lines." +msgstr "装填塔走线的流量补偿。" + +msgctxt "skirt_brim_material_flow description" +msgid "Flow compensation on skirt or brim lines." +msgstr "裙边或边缘走线的流量补偿。" + +msgctxt "support_bottom_material_flow description" +msgid "Flow compensation on support floor lines." +msgstr "支撑底板走线的流量补偿。" + +msgctxt "support_roof_material_flow description" +msgid "Flow compensation on support roof lines." +msgstr "支撑顶板走线的流量补偿。" + +msgctxt "support_material_flow description" +msgid "Flow compensation on support structure lines." +msgstr "支撑结构走线的流量补偿。" + +msgctxt "wall_0_material_flow_layer_0 description" +msgid "Flow compensation on the outermost wall line of the first layer." +msgstr "第一层最外壁走线的流量补偿。" + +msgctxt "wall_0_material_flow description" +msgid "Flow compensation on the outermost wall line." +msgstr "最外壁走线的流量补偿。" + +msgctxt "wall_0_material_flow_roofing description" +msgid "Flow compensation on the top surface outermost wall line." +msgstr "在顶面最外墙线挤出量补偿。" + +msgctxt "wall_x_material_flow_roofing description" +msgid "Flow compensation on top surface wall lines for all wall lines except the outermost one." +msgstr "除最外层墙线之外,在所有墙线的顶面墙线挤出量补偿。" + +msgctxt "skin_material_flow description" +msgid "Flow compensation on top/bottom lines." +msgstr "顶部/底部走线的流量补偿。" + +msgctxt "wall_x_material_flow_layer_0 description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one, but only for the first layer" +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿,但仅适用于第一层。" + +msgctxt "wall_x_material_flow description" +msgid "Flow compensation on wall lines for all wall lines except the outermost one." +msgstr "适用于所有壁走线(最外壁走线除外)的流量补偿。" + +msgctxt "wall_material_flow description" +msgid "Flow compensation on wall lines." +msgstr "壁走线的流量补偿。" + +msgctxt "material_flow description" +msgid "Flow compensation: the amount of material extruded is multiplied by this value." +msgstr "流量补偿:挤出的材料量乘以此值。" + +msgctxt "meshfix_fluid_motion_angle label" +msgid "Fluid Motion Angle" +msgstr "流体运动角" + +msgctxt "meshfix_fluid_motion_shift_distance label" +msgid "Fluid Motion Shift Distance" +msgstr "流体运动移动距离" + +msgctxt "meshfix_fluid_motion_small_distance label" +msgid "Fluid Motion Small Distance" +msgstr "流体运动小距离" + +msgctxt "material_flush_purge_length label" +msgid "Flush Purge Length" +msgstr "冲洗清除长度" + +msgctxt "material_flush_purge_speed label" +msgid "Flush Purge Speed" +msgstr "冲洗清除速度" + +msgctxt "min_wall_line_width description" +msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." +msgstr "对于一倍或两倍于喷嘴孔径的薄结构,需要更改走线宽度以遵循模型的厚度。此设置控制壁允许的最小走线宽度。同样,最小走线宽度内在地决定了最大走线宽度,因为我们在某些几何厚度中从 N 壁过渡到 N+1 壁时,N 壁宽而 N+1 壁窄。允许的最大壁走线宽度是最小壁走线宽度的两倍。" + +msgctxt "z_seam_position option front" +msgid "Front" +msgstr "前方" + +msgctxt "z_seam_position option frontleft" +msgid "Front Left" +msgstr "左前方" + +msgctxt "z_seam_position option frontright" +msgid "Front Right" +msgstr "右前方" + +msgctxt "draft_shield_height_limitation option full" +msgid "Full" +msgstr "完整" + +msgctxt "magic_fuzzy_skin_enabled label" +msgid "Fuzzy Skin" +msgstr "模糊皮肤" + +msgctxt "magic_fuzzy_skin_point_density label" +msgid "Fuzzy Skin Density" +msgstr "模糊皮肤密度" + +msgctxt "magic_fuzzy_skin_outside_only label" +msgid "Fuzzy Skin Outside Only" +msgstr "仅外部模糊皮肤" + +msgctxt "magic_fuzzy_skin_point_dist label" +msgid "Fuzzy Skin Point Distance" +msgstr "模糊皮肤点距离" + +msgctxt "magic_fuzzy_skin_thickness label" +msgid "Fuzzy Skin Thickness" +msgstr "模糊皮肤厚度" + +msgctxt "machine_gcode_flavor label" +msgid "G-code Flavor" +msgstr "G-code 风格" + +msgctxt "machine_end_gcode description" +msgid "G-code commands to be executed at the very end - separated by \n." +msgstr "在结束前执行的 G-code 命令 - 以 " +" 分行。" + +msgctxt "machine_start_gcode description" +msgid "G-code commands to be executed at the very start - separated by \n." +msgstr "在开始时执行的 G-code 命令 - 以 " +" 分行。" + +msgctxt "material_guid description" +msgid "GUID of the material. This is set automatically." +msgstr "材料 GUID,此项为自动设置。" + +msgctxt "gantry_height label" +msgid "Gantry Height" +msgstr "十字轴高度" + +msgctxt "interlocking_enable label" +msgid "Generate Interlocking Structure" +msgstr "生成互锁结构" + +msgctxt "support_enable label" +msgid "Generate Support" +msgstr "生成支撑" + +msgctxt "support_brim_enable description" +msgid "Generate a brim within the support infill regions of the first layer. This brim is printed underneath the support, not around it. Enabling this setting increases the adhesion of support to the build plate." +msgstr "在第一层的支撑填充区域内生成一个 Brim。此 Brim 在支撑下方打印,而非周围。启用此设置会增强支撑与打印平台的附着。" + +msgctxt "support_interface_enable description" +msgid "Generate a dense interface between the model and the support. This will create a skin at the top of the support on which the model is printed and at the bottom of the support, where it rests on the model." +msgstr "在模型和支撑之间生成一个密集的接触面。 这会在打印模型所在的支撑顶部和模型停放的支撑底部创建一个皮肤。" + +msgctxt "support_bottom_enable description" +msgid "Generate a dense slab of material between the bottom of the support and the model. This will create a skin between the model and support." +msgstr "在支撑底部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" + +msgctxt "support_roof_enable description" +msgid "Generate a dense slab of material between the top of support and the model. This will create a skin between the model and support." +msgstr "在支撑顶部和模型之间生成一个密集的材料板。 这会在模型和支撑之间形成一个皮肤。" + +msgctxt "support_enable description" +msgid "Generate structures to support parts of the model which have overhangs. Without these structures, such parts would collapse during printing." +msgstr "在模型的悬垂(Overhangs)部分生成支撑结构。若不这样做,这些部分在打印时将倒塌。" + +msgctxt "machine_buildplate_type option glass" +msgid "Glass" +msgstr "玻璃" + +msgctxt "ironing_enabled description" +msgid "Go over the top surface one additional time, but this time extruding very little material. This is meant to melt the plastic on top further, creating a smoother surface. The pressure in the nozzle chamber is kept high so that the creases in the surface are filled with material." +msgstr "再次经过顶部表面,但这次挤出的材料非常少。这意味着将进一步熔化顶部的塑料,形成更平滑的表面。喷嘴室中的压力保持很高,确保表面折痕中也能填充材料,以保证细节。" + +msgctxt "gradual_infill_step_height label" +msgid "Gradual Infill Step Height" +msgstr "渐进填充步阶高度" + +msgctxt "gradual_infill_steps label" +msgid "Gradual Infill Steps" +msgstr "渐进填充步阶" + +msgctxt "gradual_support_infill_step_height label" +msgid "Gradual Support Infill Step Height" +msgstr "渐进支撑填充步阶高度" + +msgctxt "gradual_support_infill_steps label" +msgid "Gradual Support Infill Steps" +msgstr "渐进支撑填充步阶" + +msgctxt "cool_min_temperature description" +msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." +msgstr "当由于最短印层时间而导致打印速度降低时,温度将逐渐降低至该温度。" + +msgctxt "infill_pattern option grid" +msgid "Grid" +msgstr "网格" + +msgctxt "support_bottom_pattern option grid" +msgid "Grid" +msgstr "网格" + +msgctxt "support_interface_pattern option grid" +msgid "Grid" +msgstr "网格" + +msgctxt "support_pattern option grid" +msgid "Grid" +msgstr "网格" + +msgctxt "support_roof_pattern option grid" +msgid "Grid" +msgstr "网格" + +msgctxt "machine_gcode_flavor option Griffin" +msgid "Griffin" +msgstr "Griffin" + +msgctxt "group_outer_walls label" +msgid "Group Outer Walls" +msgstr "外墙编组" + +msgctxt "infill_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" + +msgctxt "support_pattern option gyroid" +msgid "Gyroid" +msgstr "螺旋二十四面体" + +msgctxt "machine_heated_build_volume label" +msgid "Has Build Volume Temperature Stabilization" +msgstr "具有构建体积温度稳定性" + +msgctxt "machine_heated_bed label" +msgid "Has Heated Build Plate" +msgstr "有加热打印平台" + +msgctxt "machine_nozzle_heat_up_speed label" +msgid "Heat Up Speed" +msgstr "升温速度" + +msgctxt "machine_heat_zone_length label" +msgid "Heat Zone Length" +msgstr "加热区长度" + +msgctxt "draft_shield_height description" +msgid "Height limitation of the draft shield. Above this height no draft shield will be printed." +msgstr "防风罩的高度限制。 在此高度以上不会打印任何防风罩。" + +msgctxt "z_seam_corner option z_seam_corner_inner" +msgid "Hide Seam" +msgstr "隐藏缝隙" + +msgctxt "z_seam_corner option z_seam_corner_any" +msgid "Hide or Expose Seam" +msgstr "隐藏或外露缝隙" + +msgctxt "hole_xy_offset label" +msgid "Hole Horizontal Expansion" +msgstr "孔洞水平扩展" + +msgctxt "hole_xy_offset_max_diameter label" +msgid "Hole Horizontal Expansion Max Diameter" +msgstr "孔洞水平扩展最大直径" + +msgctxt "small_hole_max_size description" +msgid "Holes and part outlines with a diameter smaller than this will be printed using Small Feature Speed." +msgstr "将使用微小特征速度打印直径小于此尺寸的孔和零件轮廓。" + +msgctxt "xy_offset label" +msgid "Horizontal Expansion" +msgstr "水平扩展" + +msgctxt "material_shrinkage_percentage_xy label" +msgid "Horizontal Scaling Factor Shrinkage Compensation" +msgstr "水平缩放因子收缩补偿" + +msgctxt "material_break_preparation_retracted_position description" +msgid "How far the filament can be stretched before it breaks, while heated." +msgstr "耗材受热拉伸但不断裂的极限长度。" + +msgctxt "material_anti_ooze_retracted_position description" +msgid "How far the material needs to be retracted before it stops oozing." +msgstr "材料在停止渗出前所需的回抽长度。" + +msgctxt "flow_rate_extrusion_offset_factor description" +msgid "How far to move the filament in order to compensate for changes in flow rate, as a percentage of how far the filament would move in one second of extrusion." +msgstr "为补偿流量变化而将线材移动的距离,在挤出一秒钟的情况下占线材移动距离的百分比。" + +msgctxt "material_break_retracted_position description" +msgid "How far to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的长度。" + +msgctxt "material_break_preparation_speed description" +msgid "How fast the filament needs to be retracted just before breaking it off in a retraction." +msgstr "耗材在回抽过程中恰好折断的回抽速率。" + +msgctxt "material_anti_ooze_retraction_speed description" +msgid "How fast the material needs to be retracted during a filament switch to prevent oozing." +msgstr "在耗材用于防渗出过程中材料所需的回抽速率。" + +msgctxt "material_end_of_filament_purge_speed description" +msgid "How fast to prime the material after replacing an empty spool with a fresh spool of the same material." +msgstr "将空线轴替换为使用相同材料的新线轴后,装填材料的速度如何。" + +msgctxt "material_flush_purge_speed description" +msgid "How fast to prime the material after switching to a different material." +msgstr "切换到其他材料后,装填材料的速度如何。" + +msgctxt "material_maximum_park_duration description" +msgid "How long the material can be kept out of dry storage safely." +msgstr "材料能在干燥存储区之外安全存放多长时间。" + +msgctxt "machine_steps_per_mm_x description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the X direction." +msgstr "步进电机前进多少步将导致在 X 方向移动一毫米。" + +msgctxt "machine_steps_per_mm_y description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Y direction." +msgstr "步进电机前进多少步将导致在 Y 方向移动一毫米。" + +msgctxt "machine_steps_per_mm_z description" +msgid "How many steps of the stepper motor will result in one millimeter of movement in the Z direction." +msgstr "步进电机前进多少步将导致在 Z 方向移动一毫米。" + +msgctxt "machine_steps_per_mm_e description" +msgid "How many steps of the stepper motors will result in moving the feeder wheel by one millimeter around its circumference." +msgstr "步进电机前进多少步将导致进料器轮绕其周长移动一毫米。" + +msgctxt "material_end_of_filament_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when replacing an empty spool with a fresh spool of the same material." +msgstr "将空线轴替换为使用相同材料的新线轴后,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" + +msgctxt "material_flush_purge_length description" +msgid "How much material to use to purge the previous material out of the nozzle (in length of filament) when switching to a different material." +msgstr "切换到其他材料时,需要使用多少材料从喷嘴中清除之前的材料(以长丝长度计)。" + +msgctxt "machine_extruders_shared_nozzle_initial_retraction description" +msgid "How much the filament of each extruder is assumed to have been retracted from the shared nozzle tip at the completion of the printer-start gcode script; the value should be equal to or greater than the length of the common part of the nozzle's ducts." +msgstr "假定在打印机启动 gcode 脚本完成后,每个挤出器的细丝从共用喷嘴头缩回多少;该值应等于或大于喷嘴导管公共部分的长度。" + +msgctxt "support_interface_priority description" +msgid "How support interface and support will interact when they overlap. Currently only implemented for support roof." +msgstr "重叠时支撑接触面和支撑的交互方式。目前仅对支撑顶板实施。" + +msgctxt "support_tree_min_height_to_model description" +msgid "How tall a branch has to be if it is placed on the model. Prevents small blobs of support. This setting is ignored when a branch is supporting a support roof." +msgstr "将分支放在模型上时,分支的必要高度。防止出现小的支撑光点。分支支撑着支撑顶板时,此设置将被忽略。" + +msgctxt "bridge_skin_support_threshold description" +msgid "If a skin region is supported for less than this percentage of its area, print it using the bridge settings. Otherwise it is printed using the normal skin settings." +msgstr "如果受支撑的表面区域小于整个区域的这一百分比,则使用连桥设置打印。否则,使用正常表面设置打印。" + +msgctxt "meshfix_fluid_motion_angle description" +msgid "If a toolpath-segment deviates more than this angle from the general motion it is smoothed." +msgstr "如果刀具路径段偏离一般运动的角度大于这个角度,使路径平滑。" + +msgctxt "bridge_enable_more_layers description" +msgid "If enabled, the second and third layers above the air are printed using the following settings. Otherwise, those layers are printed using the normal settings." +msgstr "如果启用此选项,则使用以下设置打印净空区域上方第二层和第三层。否则,将使用正常设置打印这些层。" + +msgctxt "wall_transition_filter_distance description" +msgid "If it would be transitioning back and forth between different numbers of walls in quick succession, don't transition at all. Remove transitions if they are closer together than this distance." +msgstr "如果要在不同数量的壁之间快速连续地来回过渡,那么根本不要过渡。如果这些过渡的距离之和小于此距离,则移除过渡。" + +msgctxt "raft_base_margin description" +msgid "If the raft base is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层基段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" + +msgctxt "raft_margin description" +msgid "If the raft is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果启用了 raft,则这是指也被提供了 raft 的模型周围的额外 raft 区域。 增加此留白将创建强度更大的 raft,但会使用更多材料,为打印品留下的空间更少。" + +msgctxt "raft_interface_margin description" +msgid "If the raft middle is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层中段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" + +msgctxt "raft_surface_margin description" +msgid "If the raft top is enabled, this is the extra raft area around the model which is also given a raft. Increasing this margin will create a stronger raft while using more material and leaving less area for your print." +msgstr "如果设置了筏层顶段扩展,这将会是模型周围扩展出的打印区域,并同时打印筏层。增加此边距会使筏层更为坚固,但也会使用更多材料并占用更多的打印空间。" + +msgctxt "meshfix_union_all description" +msgid "Ignore the internal geometry arising from overlapping volumes within a mesh and print the volumes as one. This may cause unintended internal cavities to disappear." +msgstr "忽略由网格内的重叠体积产生的内部几何,并将多个部分作为一个打印。 这可能会导致意外的内部孔洞消失。" + +msgctxt "material_bed_temp_prepend label" +msgid "Include Build Plate Temperature" +msgstr "包含打印平台温度" + +msgctxt "material_print_temp_prepend label" +msgid "Include Material Temperatures" +msgstr "包含材料温度" + +msgctxt "slicing_tolerance option inclusive" +msgid "Inclusive" +msgstr "包含" + +msgctxt "infill description" +msgid "Infill" +msgstr "填充" + +msgctxt "infill label" +msgid "Infill" +msgstr "填充" + +msgctxt "acceleration_infill label" +msgid "Infill Acceleration" +msgstr "填充加速度" + +msgctxt "infill_before_walls label" +msgid "Infill Before Walls" +msgstr "先填充物后壁" + +msgctxt "infill_sparse_density label" +msgid "Infill Density" +msgstr "填充密度" + +msgctxt "infill_extruder_nr label" +msgid "Infill Extruder" +msgstr "填充挤出机" + +msgctxt "infill_material_flow label" +msgid "Infill Flow" +msgstr "填充流量" + +msgctxt "jerk_infill label" +msgid "Infill Jerk" +msgstr "填充抖动速度" + +msgctxt "infill_sparse_thickness label" +msgid "Infill Layer Thickness" +msgstr "填充层厚度" + +msgctxt "infill_angles label" +msgid "Infill Line Directions" +msgstr "填充走线方向" + +msgctxt "infill_line_distance label" +msgid "Infill Line Distance" +msgstr "填充走线距离" + +msgctxt "infill_multiplier label" +msgid "Infill Line Multiplier" +msgstr "填充走线乘数" + +msgctxt "infill_line_width label" +msgid "Infill Line Width" +msgstr "走线宽度(填充)" + +msgctxt "infill_mesh label" +msgid "Infill Mesh" +msgstr "填充网格" + +msgctxt "infill_support_angle label" +msgid "Infill Overhang Angle" +msgstr "填充悬垂角" + +msgctxt "infill_overlap_mm label" +msgid "Infill Overlap" +msgstr "填充重叠" + +msgctxt "infill_overlap label" +msgid "Infill Overlap Percentage" +msgstr "填充重叠百分比" + +msgctxt "infill_pattern label" +msgid "Infill Pattern" +msgstr "填充图案" + +msgctxt "speed_infill label" +msgid "Infill Speed" +msgstr "填充速度" + +msgctxt "infill_support_enabled label" +msgid "Infill Support" +msgstr "填充支撑" + +msgctxt "infill_enable_travel_optimization label" +msgid "Infill Travel Optimization" +msgstr "填充物空驶优化" + +msgctxt "infill_wipe_dist label" +msgid "Infill Wipe Distance" +msgstr "填充物擦拭距离" + +msgctxt "infill_offset_x label" +msgid "Infill X Offset" +msgstr "填充 X 轴偏移量" + +msgctxt "infill_offset_y label" +msgid "Infill Y Offset" +msgstr "填充 Y 轴偏移量" + +msgctxt "initial_bottom_layers label" +msgid "Initial Bottom Layers" +msgstr "初始底层数" + +msgctxt "cool_fan_speed_0 label" +msgid "Initial Fan Speed" +msgstr "起始风扇速度" + +msgctxt "acceleration_layer_0 label" +msgid "Initial Layer Acceleration" +msgstr "起始层加速度" + +msgctxt "skin_material_flow_layer_0 label" +msgid "Initial Layer Bottom Flow" +msgstr "起始层底部流量" + +msgctxt "support_tree_bp_diameter label" +msgid "Initial Layer Diameter" +msgstr "起始层直径" + +msgctxt "material_flow_layer_0 label" +msgid "Initial Layer Flow" +msgstr "起始层流量" + +msgctxt "layer_height_0 label" +msgid "Initial Layer Height" +msgstr "起始层高" + +msgctxt "xy_offset_layer_0 label" +msgid "Initial Layer Horizontal Expansion" +msgstr "起始层水平扩展" + +msgctxt "wall_x_material_flow_layer_0 label" +msgid "Initial Layer Inner Wall Flow" +msgstr "起始层内壁流量" + +msgctxt "jerk_layer_0 label" +msgid "Initial Layer Jerk" +msgstr "起始层抖动速度" + +msgctxt "initial_layer_line_width_factor label" +msgid "Initial Layer Line Width" +msgstr "起始层走线宽度" + +msgctxt "wall_0_material_flow_layer_0 label" +msgid "Initial Layer Outer Wall Flow" +msgstr "起始层外壁流量" + +msgctxt "acceleration_print_layer_0 label" +msgid "Initial Layer Print Acceleration" +msgstr "起始层打印加速度" + +msgctxt "jerk_print_layer_0 label" +msgid "Initial Layer Print Jerk" +msgstr "起始层打印抖动速度" + +msgctxt "speed_print_layer_0 label" +msgid "Initial Layer Print Speed" +msgstr "起始层打印速度" + +msgctxt "speed_layer_0 label" +msgid "Initial Layer Speed" +msgstr "起始层速度" + +msgctxt "support_initial_layer_line_distance label" +msgid "Initial Layer Support Line Distance" +msgstr "起始层支撑走线距离" + +msgctxt "acceleration_travel_layer_0 label" +msgid "Initial Layer Travel Acceleration" +msgstr "起始层空驶加速度" + +msgctxt "jerk_travel_layer_0 label" +msgid "Initial Layer Travel Jerk" +msgstr "起始层空驶抖动速度" + +msgctxt "speed_travel_layer_0 label" +msgid "Initial Layer Travel Speed" +msgstr "起始层空驶速度" + +msgctxt "layer_0_z_overlap label" +msgid "Initial Layer Z Overlap" +msgstr "起始层 Z 重叠" + +msgctxt "material_initial_print_temperature label" +msgid "Initial Printing Temperature" +msgstr "起始打印温度" + +msgctxt "acceleration_wall_x label" +msgid "Inner Wall Acceleration" +msgstr "内壁加速度" + +msgctxt "wall_x_extruder_nr label" +msgid "Inner Wall Extruder" +msgstr "内壁挤出机" + +msgctxt "jerk_wall_x label" +msgid "Inner Wall Jerk" +msgstr "内壁抖动速度" + +msgctxt "speed_wall_x label" +msgid "Inner Wall Speed" +msgstr "速度(内壁)" + +msgctxt "wall_x_material_flow label" +msgid "Inner Wall(s) Flow" +msgstr "内壁流量" + +msgctxt "wall_line_width_x label" +msgid "Inner Wall(s) Line Width" +msgstr "走线宽度(内壁)" + +msgctxt "wall_0_inset description" +msgid "Inset applied to the path of the outer wall. If the outer wall is smaller than the nozzle, and printed after the inner walls, use this offset to get the hole in the nozzle to overlap with the inner walls instead of the outside of the model." +msgstr "应用在外壁路径上的嵌入。 如果外壁小于喷嘴,并且在内壁之后打印,则使用该偏移量来使喷嘴中的孔与内壁而不是模型外部重叠。" + +msgctxt "brim_location option inside" +msgid "Inside Only" +msgstr "仅内侧" + +msgctxt "inset_direction option inside_out" +msgid "Inside To Outside" +msgstr "从内到外" + +msgctxt "support_interface_priority option interface_lines_overwrite_support_area" +msgid "Interface lines preferred" +msgstr "偏好接触面走线" + +msgctxt "support_interface_priority option interface_area_overwrite_support_area" +msgid "Interface preferred" +msgstr "偏好接触面" + +msgctxt "prime_tower_mode option interleaved" +msgid "Interleaved" +msgstr "交错的" + +msgctxt "interlocking_beam_layer_count label" +msgid "Interlocking Beam Layer Count" +msgstr "互锁梁层数" + +msgctxt "interlocking_beam_width label" +msgid "Interlocking Beam Width" +msgstr "互锁梁宽度" + +msgctxt "interlocking_boundary_avoidance label" +msgid "Interlocking Boundary Avoidance" +msgstr "互锁边界回避" + +msgctxt "interlocking_depth label" +msgid "Interlocking Depth" +msgstr "互锁深度" + +msgctxt "interlocking_orientation label" +msgid "Interlocking Structure Orientation" +msgstr "互锁结构方向" + +msgctxt "ironing_only_highest_layer label" +msgid "Iron Only Highest Layer" +msgstr "仅熨平最高层" + +msgctxt "acceleration_ironing label" +msgid "Ironing Acceleration" +msgstr "熨平加速度" + +msgctxt "ironing_flow label" +msgid "Ironing Flow" +msgstr "熨平流量" + +msgctxt "ironing_inset label" +msgid "Ironing Inset" +msgstr "熨平嵌入" + +msgctxt "jerk_ironing label" +msgid "Ironing Jerk" +msgstr "熨平抖动速度" + +msgctxt "ironing_line_spacing label" +msgid "Ironing Line Spacing" +msgstr "熨平走线间距" + +msgctxt "ironing_pattern label" +msgid "Ironing Pattern" +msgstr "熨平图案" + +msgctxt "speed_ironing label" +msgid "Ironing Speed" +msgstr "熨平速度" + +msgctxt "machine_center_is_zero label" +msgid "Is Center Origin" +msgstr "位于中心" + +msgctxt "material_is_support_material label" +msgid "Is support material" +msgstr "支撑材料" + +msgctxt "material_crystallinity description" +msgid "Is this material the type that breaks off cleanly when heated (crystalline), or is it the type that produces long intertwined polymer chains (non-crystalline)?" +msgstr "该材料为受热后脱落干净的类型(晶体),还是会产生长交织状聚合物链的类型(非晶体)?" + +msgctxt "material_is_support_material description" +msgid "Is this material typically used as a support material during printing." +msgstr "这种材料通常被用作打印的支撑材料吗" + +msgctxt "magic_fuzzy_skin_outside_only description" +msgid "Jitter only the parts' outlines and not the parts' holes." +msgstr "仅抖动部件的轮廓,而不抖动部件的孔。" + +msgctxt "meshfix_keep_open_polygons label" +msgid "Keep Disconnected Faces" +msgstr "保留断开连接的面" + +msgctxt "layer_height label" +msgid "Layer Height" +msgstr "层高" + +msgctxt "layer_start_x label" +msgid "Layer Start X" +msgstr "层开始 X" + +msgctxt "layer_start_y label" +msgid "Layer Start Y" +msgstr "层开始 Y" + +msgctxt "raft_base_thickness description" +msgid "Layer thickness of the base raft layer. This should be a thick layer which sticks firmly to the printer build plate." +msgstr "基础 Raft 层的层厚度。 该层应为与打印机打印平台牢固粘着的厚层。" + +msgctxt "raft_interface_thickness description" +msgid "Layer thickness of the middle raft layer." +msgstr "中间 Raft 层的层厚度。" + +msgctxt "raft_surface_thickness description" +msgid "Layer thickness of the top raft layers." +msgstr "顶部 Raft 层的层厚度。" + +msgctxt "support_skip_zag_per_mm description" +msgid "Leave out a connection between support lines once every N millimeter to make the support structure easier to break away." +msgstr "每隔 N 毫米在支撑线之间略去一个连接,让支撑结构更容易脱离。" + +msgctxt "z_seam_position option left" +msgid "Left" +msgstr "左侧" + +msgctxt "cool_lift_head label" +msgid "Lift Head" +msgstr "打印头提升" + +msgctxt "infill_pattern option lightning" +msgid "Lightning" +msgstr "闪电形" + +msgctxt "lightning_infill_overhang_angle label" +msgid "Lightning Infill Overhang Angle" +msgstr "闪电形填充悬垂角" + +msgctxt "lightning_infill_prune_angle label" +msgid "Lightning Infill Prune Angle" +msgstr "闪电形填充修剪角" + +msgctxt "lightning_infill_straightening_angle label" +msgid "Lightning Infill Straightening Angle" +msgstr "闪电形填充矫直角" + +msgctxt "lightning_infill_support_angle label" +msgid "Lightning Infill Support Angle" +msgstr "闪电形填充支撑角" + +msgctxt "support_tree_limit_branch_reach label" +msgid "Limit Branch Reach" +msgstr "限制分支长度" + +msgctxt "support_tree_limit_branch_reach description" +msgid "Limit how far each branch should travel from the point it supports. This can make the support more sturdy, but will increase the amount of branches (and because of that material usage/print time)" +msgstr "限制每个分支从其支撑点移动的距离。这样可以使支撑更坚固,但会增加分支的数量(进而增加材料的使用/打印时间)" + +msgctxt "bv_temp_warn_limit description" +msgid "Limit on Build Volume Temperature warning for detection." +msgstr "检测的打印体积温度警告限制。" + +msgctxt "bv_temp_anomaly_limit description" +msgid "Limit on Build Volume temperature Anomaly for detection." +msgstr "检测的打印体积温度异常限制。" + +msgctxt "print_temp_anomaly_limit description" +msgid "Limit on Print Temperature anomaly for detection." +msgstr "检测的打印温度异常限制。" + +msgctxt "print_temp_warn_limit description" +msgid "Limit on Print temperature warning for detection." +msgstr "检测的打印温度警告限制。" + +msgctxt "flow_anomaly_limit description" +msgid "Limit on flow anomaly for detection." +msgstr "检测的挤出量异常限制。" + +msgctxt "flow_warn_limit description" +msgid "Limit on the flow warning for detection." +msgstr "检测的挤出量警告限制。" + +msgctxt "cutting_mesh description" +msgid "Limit the volume of this mesh to within other meshes. You can use this to make certain areas of one mesh print with different settings and with a whole different extruder." +msgstr "将此网格的体积限制在其他网格内。 您可以使用它来制作采用不同的设置以及完全不同的挤出机的网格打印的特定区域。" + +msgctxt "draft_shield_height_limitation option limited" +msgid "Limited" +msgstr "有限" + +msgctxt "line_width label" +msgid "Line Width" +msgstr "走线宽度" + +msgctxt "infill_pattern option lines" +msgid "Lines" +msgstr "直线" + +msgctxt "roofing_pattern option lines" +msgid "Lines" +msgstr "走线" + +msgctxt "support_bottom_pattern option lines" +msgid "Lines" +msgstr "走线" + +msgctxt "support_interface_pattern option lines" +msgid "Lines" +msgstr "走线" + +msgctxt "support_pattern option lines" +msgid "Lines" +msgstr "走线" + +msgctxt "support_roof_pattern option lines" +msgid "Lines" +msgstr "直线" + +msgctxt "top_bottom_pattern option lines" +msgid "Lines" +msgstr "直线" + +msgctxt "top_bottom_pattern_0 option lines" +msgid "Lines" +msgstr "直线" + +msgctxt "machine_gcode_flavor option MACH3" +msgid "Mach3" +msgstr "Mach3" + +msgctxt "machine_settings label" +msgid "Machine" +msgstr "机器" + +msgctxt "machine_depth label" +msgid "Machine Depth" +msgstr "机器深度" + +msgctxt "machine_head_with_fans_polygon label" +msgid "Machine Head & Fan Polygon" +msgstr "机器头和风扇多边形" + +msgctxt "machine_height label" +msgid "Machine Height" +msgstr "机器高度" + +msgctxt "machine_name label" +msgid "Machine Type" +msgstr "机器类型" + +msgctxt "machine_width label" +msgid "Machine Width" +msgstr "机器宽度" + +msgctxt "machine_settings description" +msgid "Machine specific settings" +msgstr "机器详细设置" + +msgctxt "conical_overhang_enabled label" +msgid "Make Overhang Printable" +msgstr "使悬垂可打印" + +msgctxt "multiple_mesh_overlap description" +msgid "Make meshes which are touching each other overlap a bit. This makes them bond together better." +msgstr "让彼此接触的网格略微重叠。 这会让它们更好地粘合在一起。" + +msgctxt "support_conical_enabled description" +msgid "Make support areas smaller at the bottom than at the overhang." +msgstr "使底部的支撑区域小于悬垂处的支撑区域。" + +msgctxt "support_mesh_drop_down description" +msgid "Make support everywhere below the support mesh, so that there's no overhang in the support mesh." +msgstr "在支撑网格下方的所有位置进行支撑,让支撑网格中没有悬垂。" + +msgctxt "extruder_prime_pos_abs description" +msgid "Make the extruder prime position absolute rather than relative to the last-known location of the head." +msgstr "使挤出机主要位置为绝对值,而不是与上一已知打印头位置的相对值。" + +msgctxt "layer_0_z_overlap description" +msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount.\nIt may be noted that sometimes the second layer is printed below initial layer because of this setting. This is intended behavior" +msgstr "使模型打印的第一层和第二层在 Z 方向上重叠,以补偿气隙中损失的丝材。模型的第一层上方的所有部分都将向下移动此量。" +"您可能会发现,进行此设置后,有时第二层会打印在初始层下方。这是正常的" + +msgctxt "meshfix description" +msgid "Make the meshes more suited for 3D printing." +msgstr "使网格更适合 3D 打印。" + +msgctxt "machine_gcode_flavor option Makerbot" +msgid "Makerbot" +msgstr "Makerbot" + +msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" +msgid "Marlin" +msgstr "Marlin" + +msgctxt "machine_gcode_flavor option RepRap (Volumetric)" +msgid "Marlin (Volumetric)" +msgstr "Marlin(容积)" + +msgctxt "material description" +msgid "Material" +msgstr "材料" + +msgctxt "material label" +msgid "Material" +msgstr "材料" + +msgctxt "material_brand label" +msgid "Material Brand" +msgstr "材料品牌" + +msgctxt "material_guid label" +msgid "Material GUID" +msgstr "材料 GUID" + +msgctxt "material_type label" +msgid "Material Type" +msgstr "材料种类" + +msgctxt "max_extrusion_before_wipe label" +msgid "Material Volume Between Wipes" +msgstr "擦拭之间的材料量" + +msgctxt "retraction_combing_max_distance label" +msgid "Max Comb Distance With No Retract" +msgstr "最大梳距,无收缩" + +msgctxt "machine_max_acceleration_x label" +msgid "Maximum Acceleration X" +msgstr "X 轴最大加速度" + +msgctxt "machine_max_acceleration_y label" +msgid "Maximum Acceleration Y" +msgstr "轴最大加速度" + +msgctxt "machine_max_acceleration_z label" +msgid "Maximum Acceleration Z" +msgstr "Z 轴最大加速度" + +msgctxt "support_tree_angle label" +msgid "Maximum Branch Angle" +msgstr "最大分支角度" + +msgctxt "meshfix_maximum_deviation label" +msgid "Maximum Deviation" +msgstr "最大偏移量" + +msgctxt "meshfix_maximum_extrusion_area_deviation label" +msgid "Maximum Extrusion Area Deviation" +msgstr "最大挤出面积偏移量" + +msgctxt "cool_fan_speed_max label" +msgid "Maximum Fan Speed" +msgstr "最大风扇速度" + +msgctxt "machine_max_acceleration_e label" +msgid "Maximum Filament Acceleration" +msgstr "挤出电机最大加速度" + +msgctxt "conical_overhang_angle label" +msgid "Maximum Model Angle" +msgstr "最大模型角度" + +msgctxt "conical_overhang_hole_size label" +msgid "Maximum Overhang Hole Area" +msgstr "最大悬垂孔面积" + +msgctxt "material_maximum_park_duration label" +msgid "Maximum Park Duration" +msgstr "最长停放持续时间" + +msgctxt "meshfix_maximum_resolution label" +msgid "Maximum Resolution" +msgstr "最大分辨率" + +msgctxt "retraction_count_max label" +msgid "Maximum Retraction Count" +msgstr "最大回抽计数" + +msgctxt "max_skin_angle_for_expansion label" +msgid "Maximum Skin Angle for Expansion" +msgstr "最大扩展皮肤角度" + +msgctxt "machine_max_feedrate_e label" +msgid "Maximum Speed E" +msgstr "E 轴最大速度" + +msgctxt "machine_max_feedrate_x label" +msgid "Maximum Speed X" +msgstr "X 轴最大速度" + +msgctxt "machine_max_feedrate_y label" +msgid "Maximum Speed Y" +msgstr "Y 轴最大速度" + +msgctxt "machine_max_feedrate_z label" +msgid "Maximum Speed Z" +msgstr "Z 轴最大速度" + +msgctxt "support_tower_maximum_supported_diameter label" +msgid "Maximum Tower-Supported Diameter" +msgstr "最大塔支撑直径" + +msgctxt "meshfix_maximum_travel_resolution label" +msgid "Maximum Travel Resolution" +msgstr "空走的最大分辨率" + +msgctxt "machine_max_acceleration_x description" +msgid "Maximum acceleration for the motor of the X-direction" +msgstr "X 轴方向电机的最大加速度" + +msgctxt "machine_max_acceleration_y description" +msgid "Maximum acceleration for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大加速度。" + +msgctxt "machine_max_acceleration_z description" +msgid "Maximum acceleration for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大加速度。" + +msgctxt "machine_max_acceleration_e description" +msgid "Maximum acceleration for the motor of the filament." +msgstr "耗材电机的最大加速度。" + +msgctxt "bridge_sparse_infill_max_density description" +msgid "Maximum density of infill considered to be sparse. Skin over sparse infill is considered to be unsupported and so may be treated as a bridge skin." +msgstr "填充物的最大密度被视为稀疏。稀疏填充物表面被视为不受支持,因此可被视为连桥表面。" + +msgctxt "support_tower_maximum_supported_diameter description" +msgid "Maximum diameter in the X/Y directions of a small area which is to be supported by a specialized support tower." +msgstr "将由专门的支撑塔支撑的小区域 X/Y 轴方向的最大直径。" + +msgctxt "max_extrusion_before_wipe description" +msgid "Maximum material that can be extruded before another nozzle wipe is initiated. If this value is less than the volume of material required in a layer, the setting has no effect in this layer, i.e. it is limited to one wipe per layer." +msgstr "在开始下一轮喷嘴擦拭之前可挤出的最大材料量。如果此值小于层中所需的材料量,则该设置在此层中无效,即每层仅限擦拭一次。" + +msgctxt "multiple_mesh_overlap label" +msgid "Merged Meshes Overlap" +msgstr "合并网格重叠" + +msgctxt "meshfix label" +msgid "Mesh Fixes" +msgstr "网格修复" msgctxt "mesh_position_x label" msgid "Mesh Position X" msgstr "网格X位置" -msgctxt "mesh_position_x description" -msgid "Offset applied to the object in the x direction." -msgstr "应用在模型 x 方向上的偏移量。" - msgctxt "mesh_position_y label" msgid "Mesh Position Y" msgstr "网格Y位置" -msgctxt "mesh_position_y description" -msgid "Offset applied to the object in the y direction." -msgstr "应用在模型 y 方向上的偏移量。" - msgctxt "mesh_position_z label" msgid "Mesh Position Z" msgstr "网格Z位置" -msgctxt "mesh_position_z description" -msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." -msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" +msgctxt "infill_mesh_order label" +msgid "Mesh Processing Rank" +msgstr "网格处理等级" msgctxt "mesh_rotation_matrix label" msgid "Mesh Rotation Matrix" msgstr "网格旋转矩阵" +msgctxt "slicing_tolerance option middle" +msgid "Middle" +msgstr "Middle" + +msgctxt "mold_width label" +msgid "Minimal Mold Width" +msgstr "最小模具宽度" + +msgctxt "machine_min_cool_heat_time_window label" +msgid "Minimal Time Standby Temperature" +msgstr "最短时间待机温度" + +msgctxt "bridge_wall_min_length label" +msgid "Minimum Bridge Wall Length" +msgstr "最小桥壁长度" + +msgctxt "min_even_wall_line_width label" +msgid "Minimum Even Wall Line Width" +msgstr "最小偶数壁走线宽度" + +msgctxt "retraction_extrusion_window label" +msgid "Minimum Extrusion Distance Window" +msgstr "最小挤出距离范围" + +msgctxt "min_feature_size label" +msgid "Minimum Feature Size" +msgstr "最小特征尺寸" + +msgctxt "machine_minimum_feedrate label" +msgid "Minimum Feedrate" +msgstr "最小进料速率" + +msgctxt "support_tree_min_height_to_model label" +msgid "Minimum Height To Model" +msgstr "模型的最小高度" + +msgctxt "min_infill_area label" +msgid "Minimum Infill Area" +msgstr "最小填充区域" + +msgctxt "cool_min_layer_time label" +msgid "Minimum Layer Time" +msgstr "最短单层冷却时间" + +msgctxt "min_odd_wall_line_width label" +msgid "Minimum Odd Wall Line Width" +msgstr "最小奇数壁走线宽度" + +msgctxt "minimum_polygon_circumference label" +msgid "Minimum Polygon Circumference" +msgstr "最小多边形周长" + +msgctxt "min_skin_width_for_expansion label" +msgid "Minimum Skin Width for Expansion" +msgstr "最小扩展皮肤宽度" + +msgctxt "cool_min_speed label" +msgid "Minimum Speed" +msgstr "最小风扇速度" + +msgctxt "minimum_support_area label" +msgid "Minimum Support Area" +msgstr "最小支撑面积" + +msgctxt "minimum_bottom_area label" +msgid "Minimum Support Floor Area" +msgstr "最小支撑底板面积" + +msgctxt "minimum_interface_area label" +msgid "Minimum Support Interface Area" +msgstr "最小支撑接触面面积" + +msgctxt "minimum_roof_area label" +msgid "Minimum Support Roof Area" +msgstr "最小支撑顶板面积" + +msgctxt "support_xy_distance_overhang label" +msgid "Minimum Support X/Y Distance" +msgstr "最小支撑 X/Y 距离" + +msgctxt "min_bead_width label" +msgid "Minimum Thin Wall Line Width" +msgstr "最小薄壁走线宽度" + +msgctxt "coasting_min_volume label" +msgid "Minimum Volume Before Coasting" +msgstr "滑行前最小体积" + +msgctxt "min_wall_line_width label" +msgid "Minimum Wall Line Width" +msgstr "最小壁走线宽度" + +msgctxt "minimum_interface_area description" +msgid "Minimum area size for support interface polygons. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "支撑接触面多边形的最小面积。面积小于此值的多边形将打印为一般支撑。" + +msgctxt "minimum_support_area description" +msgid "Minimum area size for support polygons. Polygons which have an area smaller than this value will not be generated." +msgstr "支撑多边形的最小面积。将不会生成面积小于此值的多边形。" + +msgctxt "minimum_bottom_area description" +msgid "Minimum area size for the floors of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "支撑底板的最小面积。面积小于此值的多边形将打印为一般支撑。" + +msgctxt "minimum_roof_area description" +msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." +msgstr "支撑顶板的最小面积。面积小于此值的多边形将打印为一般支撑。" + +msgctxt "min_feature_size description" +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 Line Width." +msgstr "薄特征的最小厚度。将不打印比此值更薄的模型特征,而比最小特征尺寸更厚的特征将加宽到最小壁走线宽度。" + +msgctxt "support_conical_min_width description" +msgid "Minimum width to which the base of the conical support area is reduced. Small widths can lead to unstable support structures." +msgstr "锥形支撑区域底部被缩小至的最小宽度。 宽度较小可导致不稳定的支撑结构。" + +msgctxt "mold_enabled label" +msgid "Mold" +msgstr "模具" + +msgctxt "mold_angle label" +msgid "Mold Angle" +msgstr "模具角度" + +msgctxt "mold_roof_height label" +msgid "Mold Roof Height" +msgstr "模具顶板高度" + +msgctxt "ironing_monotonic label" +msgid "Monotonic Ironing Order" +msgstr "单调熨平顺序" + +msgctxt "raft_surface_monotonic label" +msgid "Monotonic Raft Top Surface Order" +msgstr "单调递增的筏顶面顺序" + +msgctxt "roofing_monotonic label" +msgid "Monotonic Top Surface Order" +msgstr "单调顶部表面顺序" + +msgctxt "skin_monotonic label" +msgid "Monotonic Top/Bottom Order" +msgstr "单调顶部/底部顺序" + +msgctxt "skirt_line_count description" +msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." +msgstr "多个 Skirt 走线帮助为小型模型更好地装填您的挤出部分。 将其设为 0 将禁用 skirt。" + +msgctxt "initial_layer_line_width_factor description" +msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." +msgstr "第一层走线宽度乘数。 增大此乘数可改善热床粘着。" + +msgctxt "material_no_load_move_factor label" +msgid "No Load Move Factor" +msgstr "空载移动系数" + +msgctxt "skin_no_small_gaps_heuristic label" +msgid "No Skin in Z Gaps" +msgstr "Z 间隙内无表层" + +msgctxt "blackmagic description" +msgid "Non-traditional ways to print your models." +msgstr "打印模型的非传统方式。" + +msgctxt "adhesion_type option none" +msgid "None" +msgstr "无" + +msgctxt "z_seam_corner option z_seam_corner_none" +msgid "None" +msgstr "无" + +msgctxt "magic_mesh_surface_mode option normal" +msgid "Normal" +msgstr "正常" + +msgctxt "prime_tower_mode option normal" +msgid "Normal" +msgstr "通常的" + +msgctxt "support_structure option normal" +msgid "Normal" +msgstr "正常" + +msgctxt "meshfix_keep_open_polygons description" +msgid "Normally Cura tries to stitch up small holes in the mesh and remove parts of a layer with big holes. Enabling this option keeps those parts which cannot be stitched. This option should be used as a last resort option when everything else fails to produce proper g-code." +msgstr "一般情况下,Cura 会尝试缝合网格中的小孔,并移除层中有大孔的部分。启用此选项将保留那些无法缝合的部分。当其他所有方法都无法产生正确的 G-code 时,最后才应考虑该选项。" + +msgctxt "retraction_combing option noskin" +msgid "Not in Skin" +msgstr "除了皮肤" + +msgctxt "retraction_combing option no_outer_surfaces" +msgid "Not on Outer Surface" +msgstr "不在外表面上" + +msgctxt "machine_nozzle_expansion_angle label" +msgid "Nozzle Angle" +msgstr "喷嘴角度" + +msgctxt "machine_nozzle_size label" +msgid "Nozzle Diameter" +msgstr "喷嘴直径" + +msgctxt "nozzle_disallowed_areas label" +msgid "Nozzle Disallowed Areas" +msgstr "喷嘴不允许区域" + +msgctxt "machine_nozzle_id label" +msgid "Nozzle ID" +msgstr "喷嘴 ID" + +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "喷嘴长度" + +msgctxt "switch_extruder_extra_prime_amount label" +msgid "Nozzle Switch Extra Prime Amount" +msgstr "喷嘴切换额外装填量" + +msgctxt "switch_extruder_prime_speed label" +msgid "Nozzle Switch Prime Speed" +msgstr "喷嘴切换装填速度" + +msgctxt "switch_extruder_retraction_speed label" +msgid "Nozzle Switch Retract Speed" +msgstr "喷嘴切换回抽速度" + +msgctxt "switch_extruder_retraction_amount label" +msgid "Nozzle Switch Retraction Distance" +msgstr "喷嘴切换回抽距离" + +msgctxt "switch_extruder_retraction_speeds label" +msgid "Nozzle Switch Retraction Speed" +msgstr "喷嘴切换回抽速度" + +msgctxt "machine_extruder_count label" +msgid "Number of Extruders" +msgstr "挤出机数目" + +msgctxt "extruders_enabled_count label" +msgid "Number of Extruders That Are Enabled" +msgstr "已启用的挤出机数目" + +msgctxt "speed_slowdown_layers label" +msgid "Number of Slower Layers" +msgstr "较慢层的数量" + +msgctxt "extruders_enabled_count description" +msgid "Number of extruder trains that are enabled; automatically set in software" +msgstr "已启用的挤出机组数目;软件自动设置" + +msgctxt "machine_extruder_count description" +msgid "Number of extruder trains. An extruder train is the combination of a feeder, bowden tube, and nozzle." +msgstr "挤出机组数目。 挤出机组是指进料装置、鲍登管和喷嘴的组合。" + +msgctxt "wipe_repeat_count description" +msgid "Number of times to move the nozzle across the brush." +msgstr "在擦拭刷上移动喷嘴的次数。" + +msgctxt "gradual_infill_steps description" +msgid "Number of times to reduce the infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Infill Density." +msgstr "在进入顶部表面以下时,将填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到填充密度。" + +msgctxt "gradual_support_infill_steps description" +msgid "Number of times to reduce the support infill density by half when getting further below top surfaces. Areas which are closer to top surfaces get a higher density, up to the Support Infill Density." +msgstr "在进入顶层以下时,将支撑填充密度减少一半的次数。 越靠近顶面的区域密度越高,最高达到支撑填充密度。" + +msgctxt "infill_pattern option tetrahedral" +msgid "Octet" +msgstr "八角形" + +msgctxt "retraction_combing option off" +msgid "Off" +msgstr "关" + +msgctxt "mesh_position_x description" +msgid "Offset applied to the object in the x direction." +msgstr "应用在模型 x 方向上的偏移量。" + +msgctxt "mesh_position_y description" +msgid "Offset applied to the object in the y direction." +msgstr "应用在模型 y 方向上的偏移量。" + +msgctxt "mesh_position_z description" +msgid "Offset applied to the object in the z direction. With this you can perform what was used to be called 'Object Sink'." +msgstr "应用在模型 z 方向上的偏移量。 利用此选项,您可以执行过去被称为“模型沉降”的操作。" + +msgctxt "machine_use_extruder_offset_to_offset_coords label" +msgid "Offset with Extruder" +msgstr "挤出机偏移量" + +msgctxt "support_tree_rest_preference option buildplate" +msgid "On buildplate when possible" +msgstr "在打印平台上(如可能)" + +msgctxt "support_tree_rest_preference option graceful" +msgid "On model if required" +msgstr "在模型上(如需要)" + +msgctxt "print_sequence option one_at_a_time" +msgid "One at a Time" +msgstr "排队打印" + +msgctxt "retraction_hop_only_when_collides description" +msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." +msgstr "仅在移动到无法通过“空驶时避开已打印部分”选项的水平操作避开的已打印部分上方时执行 Z 抬升。" + +msgctxt "ironing_only_highest_layer description" +msgid "Only perform ironing on the very last layer of the mesh. This saves time if the lower layers don't need a smooth surface finish." +msgstr "仅在网格的最后一层执行熨平。 如果较低的层不需要平滑的表面效果,这将节省时间。" + +msgctxt "ooze_shield_angle label" +msgid "Ooze Shield Angle" +msgstr "渗出罩角度" + +msgctxt "ooze_shield_dist label" +msgid "Ooze Shield Distance" +msgstr "渗出罩距离" + +msgctxt "support_tree_branch_reach_limit label" +msgid "Optimal Branch Range" +msgstr "最佳分支范围" + +msgctxt "optimize_wall_printing_order label" +msgid "Optimize Wall Printing Order" +msgstr "优化壁打印顺序" + +msgctxt "optimize_wall_printing_order description" +msgid "Optimize the order in which walls are printed so as to reduce the number of retractions and the distance travelled. Most parts will benefit from this being enabled but some may actually take longer so please compare the print time estimates with and without optimization. First layer is not optimized when choosing brim as build plate adhesion type." +msgstr "优化墙壁印刷的顺序,以减少回撤的数量和旅行的距离。大多数部件会从启用这个功能中受益,但有些可能会花费更长的时间,所以请将打印时间估算与不优化进行比较。第一层在选择边缘作为构建板附着力类型时没有进行优化。" + +msgctxt "machine_nozzle_tip_outer_diameter label" +msgid "Outer Nozzle Diameter" +msgstr "喷嘴外径" + +msgctxt "acceleration_wall_0 label" +msgid "Outer Wall Acceleration" +msgstr "外壁加速度" + +msgctxt "wall_0_extruder_nr label" +msgid "Outer Wall Extruder" +msgstr "外壁挤出机" + +msgctxt "wall_0_material_flow label" +msgid "Outer Wall Flow" +msgstr "外壁流量" + +msgctxt "wall_0_inset label" +msgid "Outer Wall Inset" +msgstr "外壁嵌入" + +msgctxt "jerk_wall_0 label" +msgid "Outer Wall Jerk" +msgstr "外壁抖动速度" + +msgctxt "wall_line_width_0 label" +msgid "Outer Wall Line Width" +msgstr "走线宽度(外壁)" + +msgctxt "speed_wall_0 label" +msgid "Outer Wall Speed" +msgstr "速度(外壁)" + +msgctxt "wall_0_wipe_dist label" +msgid "Outer Wall Wipe Distance" +msgstr "外壁擦嘴长度" + +msgctxt "group_outer_walls description" +msgid "Outer walls of different islands in the same layer are printed in sequence. When enabled the amount of flow changes is limited because walls are printed one type at a time, when disabled the number of travels between islands is reduced because walls in the same islands are grouped." +msgstr "同一层不同组件的外墙依次进行打印。当启用此功能时,由于每次只打印一种类型的外壁,挤出量变化的数量受到限制;当禁用时,由于同一组件内的外壁被分组,组件之间的行进次数会减少。" + +msgctxt "brim_location option outside" +msgid "Outside Only" +msgstr "仅外侧" + +msgctxt "inset_direction option outside_in" +msgid "Outside To Inside" +msgstr "从外到内" + +msgctxt "wall_overhang_angle label" +msgid "Overhanging Wall Angle" +msgstr "悬垂壁角度" + +msgctxt "wall_overhang_speed_factor label" +msgid "Overhanging Wall Speed" +msgstr "悬垂壁速度" + +msgctxt "wall_overhang_speed_factor description" +msgid "Overhanging walls will be printed at this percentage of their normal print speed." +msgstr "悬垂壁将以其正常打印速度的此百分比打印。" + +msgctxt "wipe_pause description" +msgid "Pause after the unretract." +msgstr "在未回抽后暂停。" + +msgctxt "bridge_fan_speed description" +msgid "Percentage fan speed to use when printing bridge walls and skin." +msgstr "打印连桥表面和桥壁时使用的风扇百分比速度。" + +msgctxt "bridge_fan_speed_2 description" +msgid "Percentage fan speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的风扇百分比速度。" + +msgctxt "support_supported_skin_fan_speed description" +msgid "Percentage fan speed to use when printing the skin regions immediately above the support. Using a high fan speed can make the support easier to remove." +msgstr "打印支撑正上方表面区域时使用的风扇百分比速度。使用高风扇速度可能使支撑更容易移除。" + +msgctxt "bridge_fan_speed_3 description" +msgid "Percentage fan speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的风扇百分比速度。" + +msgctxt "minimum_polygon_circumference description" +msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." +msgstr "切片层中周长小于此数值的多边形将被滤除。以切片时间为代价,较低的值可实现较高分辨率的网格。它主要用于高分辨率 SLA 打印机和包含大量细节的极小 3D 模型。" + +msgctxt "support_tree_angle_slow label" +msgid "Preferred Branch Angle" +msgstr "偏好分支角度" + +msgctxt "wall_transition_filter_deviation description" +msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." +msgstr "防止在多一个壁和少一个壁之间来回过渡。此边距扩展走线宽度的范围,介于 [最小壁走线宽度 - 边距,2 * 最小壁走线宽度 + 边距] 之间。增加此边距将减少过渡数量,从而减少挤出启动/停止次数和行程时间。但是,较大的走线宽度变化会导致挤出不足或挤出过多的问题。" + +msgctxt "acceleration_prime_tower label" +msgid "Prime Tower Acceleration" +msgstr "装填塔加速度" + +msgctxt "prime_tower_brim_enable label" +msgid "Prime Tower Base" +msgstr "底漆塔座" + +msgctxt "prime_tower_base_height label" +msgid "Prime Tower Base Height" +msgstr "底漆塔座高度" + +msgctxt "prime_tower_base_size label" +msgid "Prime Tower Base Size" +msgstr "底漆塔座尺寸" + +msgctxt "prime_tower_base_curve_magnitude label" +msgid "Prime Tower Base Slope" +msgstr "Prime Tower 底座斜度" + +msgctxt "prime_tower_flow label" +msgid "Prime Tower Flow" +msgstr "装填塔流量" + +msgctxt "jerk_prime_tower label" +msgid "Prime Tower Jerk" +msgstr "装填塔抖动速度" + +msgctxt "prime_tower_line_width label" +msgid "Prime Tower Line Width" +msgstr "装填塔走线宽度" + +msgctxt "prime_tower_max_bridging_distance label" +msgid "Prime Tower Maximum Bridging Distance" +msgstr "主塔最大桥接距离" + +msgctxt "prime_tower_min_volume label" +msgid "Prime Tower Minimum Volume" +msgstr "装填塔最小体积" + +msgctxt "prime_tower_raft_base_line_spacing label" +msgid "Prime Tower Raft Line Spacing" +msgstr "底漆塔筏线间距" + +msgctxt "prime_tower_size label" +msgid "Prime Tower Size" +msgstr "装填塔尺寸" + +msgctxt "speed_prime_tower label" +msgid "Prime Tower Speed" +msgstr "装填塔速度" + +msgctxt "prime_tower_mode label" +msgid "Prime Tower Type" +msgstr "主塔类型" + +msgctxt "prime_tower_position_x label" +msgid "Prime Tower X Position" +msgstr "装填塔 X 位置" + +msgctxt "prime_tower_position_y label" +msgid "Prime Tower Y Position" +msgstr "装填塔 Y 位置" + +msgctxt "acceleration_print label" +msgid "Print Acceleration" +msgstr "打印加速度" + +msgctxt "jerk_print label" +msgid "Print Jerk" +msgstr "打印抖动速度" + +msgctxt "ppr label" +msgid "Print Process Reporting" +msgstr "打印过程报告" + +msgctxt "print_sequence label" +msgid "Print Sequence" +msgstr "打印序列" + +msgctxt "speed_print label" +msgid "Print Speed" +msgstr "打印速度" + +msgctxt "fill_outline_gaps label" +msgid "Print Thin Walls" +msgstr "打印薄壁" + +msgctxt "brim_location description" +msgid "Print a brim on the outside of the model, inside, or both. Depending on the model, this helps reducing the amount of brim you need to remove afterwards, while ensuring a proper bed adhesion." +msgstr "在模型的外侧,内侧或两侧同时打印裙边。根据模型的不同,这有助于减少随后需要去除的裙边量,同时保证所需的底座附着力。" + +msgctxt "prime_tower_enable description" +msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." +msgstr "在打印品相邻处打印一个塔,用于在每个喷嘴切换后装填材料。" + +msgctxt "infill_support_enabled description" +msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." +msgstr "只在模型的顶部支持打印填充结构。这样可以减少打印时间和材料的使用,但是会导致不一致的对象强度。" + +msgctxt "ironing_monotonic description" +msgid "Print ironing lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印熨平走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + +msgctxt "mold_enabled description" +msgid "Print models as a mold, which can be cast in order to get a model which resembles the models on the build plate." +msgstr "将模型作为模具打印,可进行铸造,以便获取与打印平台上的模型类似的模型。" + +msgctxt "fill_outline_gaps description" +msgid "Print pieces of the model which are horizontally thinner than the nozzle size." +msgstr "打印在水平面上比喷嘴尺寸更薄的模型部件。" + +msgctxt "raft_surface_monotonic description" +msgid "Print raft top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes the surface look more consistent, which is also visible on the model bottom surface." +msgstr "按顺序打印筏层顶段表面线,使它们始终与单个方向上的相邻线重叠。这会花费稍微长一点的打印时间,但会使表面看起来更加一致,在模型底面上可以看出。" + +msgctxt "bridge_skin_speed_2 description" +msgid "Print speed to use when printing the second bridge skin layer." +msgstr "打印桥梁第二层表面时使用的打印速度。" + +msgctxt "bridge_skin_speed_3 description" +msgid "Print speed to use when printing the third bridge skin layer." +msgstr "打印桥梁第三层表面时使用的打印速度。" + +msgctxt "print_temp_anomaly_limit label" +msgid "Print temperature Limit" +msgstr "打印温度限制" + +msgctxt "print_temp_warn_limit label" +msgid "Print temperature Warning" +msgstr "打印温度警告" + +msgctxt "infill_before_walls description" +msgid "Print the infill before printing the walls. Printing the walls first may lead to more accurate walls, but overhangs print worse. Printing the infill first leads to sturdier walls, but the infill pattern might sometimes show through the surface." +msgstr "打印壁前先打印填充物。 先打印壁可能产生更精确的壁,但悬垂打印质量会较差。 先打印填充会产生更牢固的壁,但有时候填充图案会透过表面显现出来。" + +msgctxt "roofing_monotonic description" +msgid "Print top surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部表面走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + +msgctxt "skin_monotonic description" +msgid "Print top/bottom lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "按照一定的顺序打印顶部/底部走线,使它们始终在一个方向上与相邻的走线重叠。这需要更长一些的打印时间,但会使平面看起来更一致。" + +msgctxt "material_print_temperature label" +msgid "Printing Temperature" +msgstr "打印温度" + +msgctxt "material_print_temperature_layer_0 label" +msgid "Printing Temperature Initial Layer" +msgstr "打印温度起始层" + +msgctxt "skirt_height description" +msgid "Printing the innermost skirt line with multiple layers makes it easy to remove the skirt." +msgstr "多层打印最内层裙边走线,便于移除裙边。" + +msgctxt "alternate_extra_perimeter description" +msgid "Prints an extra wall at every other layer. This way infill gets caught between these extra walls, resulting in stronger prints." +msgstr "每隔一层打印一个额外的壁。 通过这种方法,填充物会卡在这些额外的壁之间,从而产生更强韧的打印质量。" + +msgctxt "resolution label" +msgid "Quality" +msgstr "质量" + +msgctxt "infill_pattern option quarter_cubic" +msgid "Quarter Cubic" +msgstr "四面体" + +msgctxt "adhesion_type option raft" +msgid "Raft" +msgstr "Raft" + +msgctxt "raft_airgap label" +msgid "Raft Air Gap" +msgstr "Raft 空隙" + +msgctxt "raft_base_margin label" +msgid "Raft Base Extra Margin" +msgstr "筏层基段额外边距" + +msgctxt "raft_base_extruder_nr label" +msgid "Raft Base Extruder" +msgstr "Raft 底层挤出器" + +msgctxt "raft_base_fan_speed label" +msgid "Raft Base Fan Speed" +msgstr "Raft 基础风扇速度" + +msgctxt "raft_base_line_spacing label" +msgid "Raft Base Line Spacing" +msgstr "Raft 基础走线间距" + +msgctxt "raft_base_line_width label" +msgid "Raft Base Line Width" +msgstr "Raft 基础走线宽度" + +msgctxt "raft_base_acceleration label" +msgid "Raft Base Print Acceleration" +msgstr "Raft 基础打印加速度" + +msgctxt "raft_base_jerk label" +msgid "Raft Base Print Jerk" +msgstr "Raft 基础打印抖动速度" + +msgctxt "raft_base_speed label" +msgid "Raft Base Print Speed" +msgstr "Raft 基础打印速度" + +msgctxt "raft_base_smoothing label" +msgid "Raft Base Smoothing" +msgstr "平滑筏层基段" + +msgctxt "raft_base_thickness label" +msgid "Raft Base Thickness" +msgstr "Raft 基础厚度" + +msgctxt "raft_base_wall_count label" +msgid "Raft Base Wall Count" +msgstr "Raft 底板壁数" + +msgctxt "raft_margin label" +msgid "Raft Extra Margin" +msgstr "Raft 留白" + +msgctxt "raft_fan_speed label" +msgid "Raft Fan Speed" +msgstr "Raft 风扇速度" + +msgctxt "raft_interface_margin label" +msgid "Raft Middle Extra Margin" +msgstr "筏层中段额外边距" + +msgctxt "raft_interface_extruder_nr label" +msgid "Raft Middle Extruder" +msgstr "Raft 中间挤出器" + +msgctxt "raft_interface_fan_speed label" +msgid "Raft Middle Fan Speed" +msgstr "Raft 中间风扇速度" + +msgctxt "raft_interface_layers label" +msgid "Raft Middle Layers" +msgstr "Raft 中间层" + +msgctxt "raft_interface_line_width label" +msgid "Raft Middle Line Width" +msgstr "Raft 中间线宽度" + +msgctxt "raft_interface_acceleration label" +msgid "Raft Middle Print Acceleration" +msgstr "Raft 中间打印加速度" + +msgctxt "raft_interface_jerk label" +msgid "Raft Middle Print Jerk" +msgstr "Raft 中间打印抖动速度" + +msgctxt "raft_interface_speed label" +msgid "Raft Middle Print Speed" +msgstr "Raft 中间打印速度" + +msgctxt "raft_interface_smoothing label" +msgid "Raft Middle Smoothing" +msgstr "平滑筏层中段" + +msgctxt "raft_interface_line_spacing label" +msgid "Raft Middle Spacing" +msgstr "Raft 中间间距" + +msgctxt "raft_interface_thickness label" +msgid "Raft Middle Thickness" +msgstr "Raft 中间厚度" + +msgctxt "raft_interface_wall_count label" +msgid "Raft Middle Wall Count" +msgstr "筏层中段壁圈数" + +msgctxt "raft_acceleration label" +msgid "Raft Print Acceleration" +msgstr "Raft 打印加速度" + +msgctxt "raft_jerk label" +msgid "Raft Print Jerk" +msgstr "Raft 打印抖动速度" + +msgctxt "raft_speed label" +msgid "Raft Print Speed" +msgstr "Raft 打印速度" + +msgctxt "raft_smoothing label" +msgid "Raft Smoothing" +msgstr "Raft 平滑度" + +msgctxt "raft_surface_margin label" +msgid "Raft Top Extra Margin" +msgstr "筏层顶段额外边距" + +msgctxt "raft_surface_extruder_nr label" +msgid "Raft Top Extruder" +msgstr "Raft 顶层挤出器" + +msgctxt "raft_surface_fan_speed label" +msgid "Raft Top Fan Speed" +msgstr "Raft 顶部风扇速度" + +msgctxt "raft_surface_thickness label" +msgid "Raft Top Layer Thickness" +msgstr "Raft 顶层厚度" + +msgctxt "raft_surface_layers label" +msgid "Raft Top Layers" +msgstr "Raft 顶层" + +msgctxt "raft_surface_line_width label" +msgid "Raft Top Line Width" +msgstr "Raft 顶线宽度" + +msgctxt "raft_surface_acceleration label" +msgid "Raft Top Print Acceleration" +msgstr "Raft 顶部打印加速度" + +msgctxt "raft_surface_jerk label" +msgid "Raft Top Print Jerk" +msgstr "Raft 顶部打印抖动速度" + +msgctxt "raft_surface_speed label" +msgid "Raft Top Print Speed" +msgstr "Raft 顶部打印速度" + +msgctxt "raft_surface_smoothing label" +msgid "Raft Top Smoothing" +msgstr "平滑筏层顶段" + +msgctxt "raft_surface_line_spacing label" +msgid "Raft Top Spacing" +msgstr "Raft 顶部间距" + +msgctxt "raft_surface_wall_count label" +msgid "Raft Top Wall Count" +msgstr "筏层顶段壁圈数" + +msgctxt "raft_wall_count label" +msgid "Raft Wall Count" +msgstr "筏层壁圈数" + +msgctxt "z_seam_type option random" +msgid "Random" +msgstr "随机" + +msgctxt "infill_randomize_start_location label" +msgid "Randomize Infill Start" +msgstr "开始随机化填充" + +msgctxt "infill_randomize_start_location description" +msgid "Randomize which infill line is printed first. This prevents one segment becoming the strongest, but it does so at the cost of an additional travel move." +msgstr "先随机化打印哪条填充线。这可以防止一个部分变强,但会导致一次额外的空驶。" + +msgctxt "magic_fuzzy_skin_enabled description" +msgid "Randomly jitter while printing the outer wall, so that the surface has a rough and fuzzy look." +msgstr "在打印外墙时随机抖动,使表面具有粗糙和模糊的外观。" + +msgctxt "machine_shape option rectangular" +msgid "Rectangular" +msgstr "矩形" + +msgctxt "cool_fan_speed_min label" +msgid "Regular Fan Speed" +msgstr "正常风扇速度" + +msgctxt "cool_fan_full_at_height label" +msgid "Regular Fan Speed at Height" +msgstr "正常风扇速度(高度)" + +msgctxt "cool_fan_full_layer label" +msgid "Regular Fan Speed at Layer" +msgstr "正常风扇速度(层)" + +msgctxt "cool_min_layer_time_fan_speed_max label" +msgid "Regular/Maximum Fan Speed Threshold" +msgstr "正常/最大风扇速度阈值" + +msgctxt "relative_extrusion label" +msgid "Relative Extrusion" +msgstr "相对挤出" + +msgctxt "meshfix_union_all_remove_holes label" +msgid "Remove All Holes" +msgstr "移除所有孔洞" + +msgctxt "remove_empty_first_layers label" +msgid "Remove Empty First Layers" +msgstr "移除空白第一层" + +msgctxt "carve_multiple_volumes label" +msgid "Remove Mesh Intersection" +msgstr "移除网格交叉" + +msgctxt "raft_base_remove_inside_corners label" +msgid "Remove Raft Base Inside Corners" +msgstr "移除筏层基段内角" + +msgctxt "raft_remove_inside_corners label" +msgid "Remove Raft Inside Corners" +msgstr "移除 Raft 内侧角" + +msgctxt "raft_interface_remove_inside_corners label" +msgid "Remove Raft Middle Inside Corners" +msgstr "移除中段内角" + +msgctxt "raft_surface_remove_inside_corners label" +msgid "Remove Raft Top Inside Corners" +msgstr "移除筏层顶段内角" + +msgctxt "carve_multiple_volumes description" +msgid "Remove areas where multiple meshes are overlapping with each other. This may be used if merged dual material objects overlap with each other." +msgstr "移除多个网格互相重叠的区域。 如果合并的双材料模型彼此重叠,此选项可能适用。" + +msgctxt "remove_empty_first_layers description" +msgid "Remove empty layers beneath the first printed layer if they are present. Disabling this setting can cause empty first layers if the Slicing Tolerance setting is set to Exclusive or Middle." +msgstr "移除第一个打印层下方的空白层(如果存在)。如果“切片公差”设置被设为“独占”或“中间”,禁用此设置可能导致空白第一层。" + +msgctxt "raft_base_remove_inside_corners description" +msgid "Remove inside corners from the raft base, causing the raft to become convex." +msgstr "移除筏层基段的内角,会使筏层凸起" + +msgctxt "raft_interface_remove_inside_corners description" +msgid "Remove inside corners from the raft middle part, causing the raft to become convex." +msgstr "移除筏层中段的内角,会使筏层凸起。" + +msgctxt "raft_surface_remove_inside_corners description" +msgid "Remove inside corners from the raft top part, causing the raft to become convex." +msgstr "移除筏层顶段的内角,会使筏层凸起。" + +msgctxt "raft_remove_inside_corners description" +msgid "Remove inside corners from the raft, causing the raft to become convex." +msgstr "从 Raft 上移除内侧角,这会使 Raft 变得凸出。" + +msgctxt "meshfix_union_all_remove_holes description" +msgid "Remove the holes in each layer and keep only the outside shape. This will ignore any invisible internal geometry. However, it also ignores layer holes which can be viewed from above or below." +msgstr "移除每层的孔洞,仅保留外部形状。 这会忽略任何不可见的内部几何。 但是,也会忽略可从上方或下方看到的层孔洞。" + +msgctxt "machine_gcode_flavor option RepRap (RepRap)" +msgid "RepRap" +msgstr "RepRap" + +msgctxt "machine_gcode_flavor option Repetier" +msgid "Repetier" +msgstr "Repetier" + +msgctxt "skin_outline_count description" +msgid "Replaces the outermost part of the top/bottom pattern with a number of concentric lines. Using one or two lines improves roofs that start on infill material." +msgstr "用多个同心线代替顶部/底部图案的最外面部分。 使用一条或两条线改善从填充材料开始的顶板。" + +msgctxt "ppr description" +msgid "Reporting events that go out of set thresholds" +msgstr "报告超出设定阈值的事件" + +msgctxt "support_tree_rest_preference label" +msgid "Rest Preference" +msgstr "停留偏好" + +msgctxt "travel_retract_before_outer_wall label" +msgid "Retract Before Outer Wall" +msgstr "在外壁前回抽" + +msgctxt "retract_at_layer_change label" +msgid "Retract at Layer Change" +msgstr "层变化时回抽" + +msgctxt "retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" + +msgctxt "wipe_retraction_enable description" +msgid "Retract the filament when the nozzle is moving over a non-printed area." +msgstr "当喷嘴移动到非打印区域上方时回抽耗材。" + +msgctxt "retract_at_layer_change description" +msgid "Retract the filament when the nozzle is moving to the next layer." +msgstr "当喷嘴移动到下一层时回抽耗材。" + +msgctxt "retraction_amount label" +msgid "Retraction Distance" +msgstr "回抽距离" + +msgctxt "retraction_extra_prime_amount label" +msgid "Retraction Extra Prime Amount" +msgstr "回抽额外装填量" + +msgctxt "retraction_min_travel label" +msgid "Retraction Minimum Travel" +msgstr "回抽最小空驶" + +msgctxt "retraction_prime_speed label" +msgid "Retraction Prime Speed" +msgstr "回抽装填速度" + +msgctxt "retraction_retract_speed label" +msgid "Retraction Retract Speed" +msgstr "回抽速度" + +msgctxt "retraction_speed label" +msgid "Retraction Speed" +msgstr "回抽速度" + +msgctxt "z_seam_position option right" +msgid "Right" +msgstr "右侧" + +msgctxt "machine_scale_fan_speed_zero_to_one label" +msgid "Scale Fan Speed To 0-1" +msgstr "在 0 到 1 范围内设置风扇速度" + +msgctxt "machine_scale_fan_speed_zero_to_one description" +msgid "Scale the fan speed to be between 0 and 1 instead of between 0 and 256." +msgstr "在 0 到 1 范围内设置风扇速度,而不是 0 到 256 之间。" + +msgctxt "material_shrinkage_percentage label" +msgid "Scaling Factor Shrinkage Compensation" +msgstr "缩放因子收缩补偿" + +msgctxt "support_meshes_present label" +msgid "Scene Has Support Meshes" +msgstr "场景具有支撑网格" + +msgctxt "z_seam_corner label" +msgid "Seam Corner Preference" +msgstr "缝隙角偏好设置" + +msgctxt "user_defined_print_order_enabled label" +msgid "Set Print Sequence Manually" +msgstr "手动设置打印顺序" + +msgctxt "draft_shield_height_limitation description" +msgid "Set the height of the draft shield. Choose to print the draft shield at the full height of the model or at a limited height." +msgstr "设置防风罩的高度。 选择在模型的完整高度或有限高度处打印防风罩。" + +msgctxt "dual description" +msgid "Settings used for printing with multiple extruders." +msgstr "利用多个挤出机进行打印所用的设置。" + +msgctxt "command_line_settings description" +msgid "Settings which are only used if CuraEngine isn't called from the Cura frontend." +msgstr "未从 Cura 前端调用 CuraEngine 时使用的设置。" + +msgctxt "machine_extruders_shared_nozzle_initial_retraction label" +msgid "Shared Nozzle Initial Retraction" +msgstr "共用喷嘴初始缩回" + +msgctxt "z_seam_type option sharpest_corner" +msgid "Sharpest Corner" +msgstr "最尖角" + +msgctxt "shell description" +msgid "Shell" +msgstr "外壳" + +msgctxt "z_seam_type option shortest" +msgid "Shortest" +msgstr "最短" + +msgctxt "machine_show_variants label" +msgid "Show Machine Variants" +msgstr "显示打印机变体" + +msgctxt "skin_edge_support_layers label" +msgid "Skin Edge Support Layers" +msgstr "皮肤边缘支撑层数" + +msgctxt "skin_edge_support_thickness label" +msgid "Skin Edge Support Thickness" +msgstr "皮肤边缘支撑厚度" + +msgctxt "expand_skins_expand_distance label" +msgid "Skin Expand Distance" +msgstr "皮肤扩展距离" + +msgctxt "skin_overlap_mm label" +msgid "Skin Overlap" +msgstr "皮肤重叠" + +msgctxt "skin_overlap label" +msgid "Skin Overlap Percentage" +msgstr "皮肤重叠百分比" + +msgctxt "skin_preshrink label" +msgid "Skin Removal Width" +msgstr "肤移除宽度" + +msgctxt "min_skin_width_for_expansion description" +msgid "Skin areas narrower than this are not expanded. This avoids expanding the narrow skin areas that are created when the model surface has a slope close to the vertical." +msgstr "如果皮肤区域宽度小于此值,则不会扩展。 这会避免扩展在模型表面的坡度接近垂直时所形成的狭窄皮肤区域。" + +msgctxt "support_zag_skip_count description" +msgid "Skip one in every N connection lines to make the support structure easier to break away." +msgstr "每隔 N 个连接线跳过一个连接,让支撑结构更容易脱离。" + +msgctxt "support_skip_some_zags description" +msgid "Skip some support line connections to make the support structure easier to break away. This setting is applicable to the Zig Zag support infill pattern." +msgstr "跳过部分支撑线连接,让支撑结构更容易脱离。 此设置适用于锯齿形支撑结构填充图案。" + +msgctxt "adhesion_type option skirt" +msgid "Skirt" +msgstr "Skirt" + +msgctxt "skirt_gap label" +msgid "Skirt Distance" +msgstr "Skirt 距离" + +msgctxt "skirt_height label" +msgid "Skirt Height" +msgstr "裙边高度" + +msgctxt "skirt_line_count label" +msgid "Skirt Line Count" +msgstr "Skirt 走线计数" + +msgctxt "acceleration_skirt_brim label" +msgid "Skirt/Brim Acceleration" +msgstr "Skirt/Brim 加速度" + +msgctxt "skirt_brim_extruder_nr label" +msgid "Skirt/Brim Extruder" +msgstr "Skirt/Brim 挤出器" + +msgctxt "skirt_brim_material_flow label" +msgid "Skirt/Brim Flow" +msgstr "裙边/边缘流量" + +msgctxt "jerk_skirt_brim label" +msgid "Skirt/Brim Jerk" +msgstr "Skirt/Brim 抖动速度" + +msgctxt "skirt_brim_line_width label" +msgid "Skirt/Brim Line Width" +msgstr "走线宽度(Skirt / Brim)" + +msgctxt "skirt_brim_minimal_length label" +msgid "Skirt/Brim Minimum Length" +msgstr "Skirt/Brim 最小长度" + +msgctxt "skirt_brim_speed label" +msgid "Skirt/Brim Speed" +msgstr "Skirt/Brim 速度" + +msgctxt "slicing_tolerance label" +msgid "Slicing Tolerance" +msgstr "切片公差" + +msgctxt "small_feature_speed_factor_0 label" +msgid "Small Feature Initial Layer Speed" +msgstr "微小特征初始层速度" + +msgctxt "small_feature_max_length label" +msgid "Small Feature Max Length" +msgstr "微小特征最大长度" + +msgctxt "small_feature_speed_factor label" +msgid "Small Feature Speed" +msgstr "微小特征速度" + +msgctxt "small_hole_max_size label" +msgid "Small Hole Max Size" +msgstr "小孔最大尺寸" + +msgctxt "cool_min_temperature label" +msgid "Small Layer Printing Temperature" +msgstr "小型层打印温度" + +msgctxt "small_skin_on_surface label" +msgid "Small Top/Bottom On Surface" +msgstr "表面顶部/底部小区域" + +msgctxt "small_skin_width label" +msgid "Small Top/Bottom Width" +msgstr "顶宽/底宽较小" + +msgctxt "small_feature_speed_factor_0 description" +msgid "Small features on the first layer will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "第一层的微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" + +msgctxt "small_feature_speed_factor description" +msgid "Small features will be printed at this percentage of their normal print speed. Slower printing can help with adhesion and accuracy." +msgstr "微小特征将按正常打印速度的百分比进行打印。缓慢打印有助于粘合和提高准确性。" + +msgctxt "small_skin_width description" +msgid "Small top/bottom regions are filled with walls instead of the default top/bottom pattern. This helps to avoids jerky motions. Off for the topmost (air-exposed) layer by default (see 'Small Top/Bottom On Surface')." +msgstr "顶部/底部小区域用墙壁填充,而不是默认顶部/底部图案。这有助于避免剧烈运动。最顶层(暴露在空气中)默认关闭此选项(见“表面顶部/底部小区域”)。" + +msgctxt "brim_smart_ordering label" +msgid "Smart Brim" +msgstr "智能边缘" + +msgctxt "z_seam_corner option z_seam_corner_weighted" +msgid "Smart Hiding" +msgstr "智能隐藏" + +msgctxt "smooth_spiralized_contours label" +msgid "Smooth Spiralized Contours" +msgstr "平滑螺旋轮廓" + +msgctxt "smooth_spiralized_contours description" +msgid "Smooth the spiralized contours to reduce the visibility of the Z seam (the Z seam should be barely visible on the print but will still be visible in the layer view). Note that smoothing will tend to blur fine surface details." +msgstr "平滑螺旋轮廓以减少 Z 缝的可见性(Z 缝于打印品上几乎不可见,但在层视图中仍然可见)。注意:平滑操作将模糊精细的表面细节。" + +msgctxt "retraction_extra_prime_amount description" +msgid "Some material can ooze away during a travel move, which can be compensated for here." +msgstr "有些材料可能会在空驶过程中渗出,可以在这里对其进行补偿。" + +msgctxt "wipe_retraction_extra_prime_amount description" +msgid "Some material can ooze away during a wipe travel moves, which can be compensated for here." +msgstr "有些材料可能会在擦拭空驶过程中渗出,可以在这里进行补偿。" + +msgctxt "blackmagic label" +msgid "Special Modes" +msgstr "特殊模式" + +msgctxt "speed description" +msgid "Speed" +msgstr "速度" + +msgctxt "speed label" +msgid "Speed" +msgstr "速度" + +msgctxt "wipe_hop_speed description" +msgid "Speed to move the z-axis during the hop." +msgstr "抬升期间移动 Z 轴的速度。" + +msgctxt "magic_spiralize label" +msgid "Spiralize Outer Contour" +msgstr "螺旋打印外轮廓" + +msgctxt "magic_spiralize description" +msgid "Spiralize smooths out the Z move of the outer edge. This will create a steady Z increase over the whole print. This feature turns a solid model into a single walled print with a solid bottom. This feature should only be enabled when each layer only contains a single part." +msgstr "螺旋打印实现外部边缘的平滑 Z 移动。 这会在整个打印上建立一个稳定的 Z 增量。 该功能会将一个实心模型转变为具有实体底部的单壁打印。 只有在当每一层仅包含一个部分时才应启用此功能。" + +msgctxt "material_standby_temperature label" +msgid "Standby Temperature" +msgstr "待机温度" + +msgctxt "machine_start_gcode label" +msgid "Start G-code" +msgstr "开始 G-code" + +msgctxt "z_seam_type description" +msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." +msgstr "一层中每条路径的起点。 当连续多层的路径从相同点开始时,则打印物上会显示一条垂直缝隙。 如果将这些路径靠近一个用户指定的位置对齐,则缝隙最容易移除。 如果随机放置,则路径起点的不精准度将较不明显。 采用最短的路径时,打印将更为快速。" + +msgctxt "machine_steps_per_mm_e label" +msgid "Steps per Millimeter (E)" +msgstr "每毫米步数 (E)" + +msgctxt "machine_steps_per_mm_x label" +msgid "Steps per Millimeter (X)" +msgstr "每毫米步数 (X)" + +msgctxt "machine_steps_per_mm_y label" +msgid "Steps per Millimeter (Y)" +msgstr "每毫米步数 (Y)" + +msgctxt "machine_steps_per_mm_z label" +msgid "Steps per Millimeter (Z)" +msgstr "每毫米步数 (Z)" + +msgctxt "support description" +msgid "Support" +msgstr "支撑" + +msgctxt "support label" +msgid "Support" +msgstr "支撑" + +msgctxt "acceleration_support label" +msgid "Support Acceleration" +msgstr "支撑加速度" + +msgctxt "support_bottom_distance label" +msgid "Support Bottom Distance" +msgstr "支撑底部距离" + +msgctxt "support_bottom_wall_count label" +msgid "Support Bottom Wall Line Count" +msgstr "支撑底层墙线条数" + +msgctxt "support_brim_line_count label" +msgid "Support Brim Line Count" +msgstr "支撑 Brim 走线次数" + +msgctxt "support_brim_width label" +msgid "Support Brim Width" +msgstr "支撑 Brim 宽度" + +msgctxt "support_zag_skip_count label" +msgid "Support Chunk Line Count" +msgstr "支撑块走线数" + +msgctxt "support_skip_zag_per_mm label" +msgid "Support Chunk Size" +msgstr "支撑块大小" + +msgctxt "support_infill_rate label" +msgid "Support Density" +msgstr "支撑密度" + +msgctxt "support_xy_overrides_z label" +msgid "Support Distance Priority" +msgstr "支撑距离优先级" + +msgctxt "support_extruder_nr label" +msgid "Support Extruder" +msgstr "支撑用挤出机" + +msgctxt "acceleration_support_bottom label" +msgid "Support Floor Acceleration" +msgstr "支撑底板加速度" + +msgctxt "support_bottom_density label" +msgid "Support Floor Density" +msgstr "支撑底板密度" + +msgctxt "support_bottom_extruder_nr label" +msgid "Support Floor Extruder" +msgstr "支撑底板挤出机" + +msgctxt "support_bottom_material_flow label" +msgid "Support Floor Flow" +msgstr "支撑底板流量" + +msgctxt "support_bottom_offset label" +msgid "Support Floor Horizontal Expansion" +msgstr "支撑底板水平扩展" + +msgctxt "jerk_support_bottom label" +msgid "Support Floor Jerk" +msgstr "支撑底板抖动速度" + +msgctxt "support_bottom_angles label" +msgid "Support Floor Line Directions" +msgstr "支撑底板走线方向" + +msgctxt "support_bottom_line_distance label" +msgid "Support Floor Line Distance" +msgstr "支撑底板走线距离" + +msgctxt "support_bottom_line_width label" +msgid "Support Floor Line Width" +msgstr "支撑底板走线宽度" + +msgctxt "support_bottom_pattern label" +msgid "Support Floor Pattern" +msgstr "支撑底板图案" + +msgctxt "speed_support_bottom label" +msgid "Support Floor Speed" +msgstr "支撑底板速度" + +msgctxt "support_bottom_height label" +msgid "Support Floor Thickness" +msgstr "支撑底板厚度" + +msgctxt "support_material_flow label" +msgid "Support Flow" +msgstr "支撑流量" + +msgctxt "support_offset label" +msgid "Support Horizontal Expansion" +msgstr "支撑水平扩展" + +msgctxt "acceleration_support_infill label" +msgid "Support Infill Acceleration" +msgstr "支撑填充加速度" + +msgctxt "support_infill_extruder_nr label" +msgid "Support Infill Extruder" +msgstr "支撑填充挤出机" + +msgctxt "jerk_support_infill label" +msgid "Support Infill Jerk" +msgstr "支撑填充抖动速度" + +msgctxt "support_infill_sparse_thickness label" +msgid "Support Infill Layer Thickness" +msgstr "支撑填充层厚度" + +msgctxt "support_infill_angles label" +msgid "Support Infill Line Directions" +msgstr "支撑填充走线方向" + +msgctxt "speed_support_infill label" +msgid "Support Infill Speed" +msgstr "速度(支撑填充)" + +msgctxt "acceleration_support_interface label" +msgid "Support Interface Acceleration" +msgstr "支撑接触面加速度" + +msgctxt "support_interface_density label" +msgid "Support Interface Density" +msgstr "支撑接触面密度" + +msgctxt "support_interface_extruder_nr label" +msgid "Support Interface Extruder" +msgstr "支撑接触面挤出机" + +msgctxt "support_interface_material_flow label" +msgid "Support Interface Flow" +msgstr "支撑接触面流量" + +msgctxt "support_interface_offset label" +msgid "Support Interface Horizontal Expansion" +msgstr "支撑接触面水平扩展" + +msgctxt "jerk_support_interface label" +msgid "Support Interface Jerk" +msgstr "支撑接触面抖动速度" + +msgctxt "support_interface_angles label" +msgid "Support Interface Line Directions" +msgstr "支撑接触面走线方向" + +msgctxt "support_interface_line_width label" +msgid "Support Interface Line Width" +msgstr "走线宽度(支撑接触面)" + +msgctxt "support_interface_pattern label" +msgid "Support Interface Pattern" +msgstr "支撑接触面图案" + +msgctxt "support_interface_priority label" +msgid "Support Interface Priority" +msgstr "支撑接触面优先级" + +msgctxt "speed_support_interface label" +msgid "Support Interface Speed" +msgstr "支撑接触面速度" + +msgctxt "support_interface_height label" +msgid "Support Interface Thickness" +msgstr "支撑接触面厚度" + +msgctxt "support_interface_wall_count label" +msgid "Support Interface Wall Line Count" +msgstr "支撑接触面墙线条数" + +msgctxt "jerk_support label" +msgid "Support Jerk" +msgstr "支撑抖动速度" + +msgctxt "support_join_distance label" +msgid "Support Join Distance" +msgstr "支撑结合部距离" + +msgctxt "support_line_distance label" +msgid "Support Line Distance" +msgstr "支撑走线距离" + +msgctxt "support_line_width label" +msgid "Support Line Width" +msgstr "走线宽度(支撑结构)" + +msgctxt "support_mesh label" +msgid "Support Mesh" +msgstr "支撑网格" + +msgctxt "support_angle label" +msgid "Support Overhang Angle" +msgstr "支撑悬垂角度" + +msgctxt "support_pattern label" +msgid "Support Pattern" +msgstr "支撑图案" + +msgctxt "support_type label" +msgid "Support Placement" +msgstr "支撑放置" + +msgctxt "acceleration_support_roof label" +msgid "Support Roof Acceleration" +msgstr "支撑顶板加速度" + +msgctxt "support_roof_density label" +msgid "Support Roof Density" +msgstr "支撑顶板密度" + +msgctxt "support_roof_extruder_nr label" +msgid "Support Roof Extruder" +msgstr "支撑顶板挤出机" + +msgctxt "support_roof_material_flow label" +msgid "Support Roof Flow" +msgstr "支撑顶板流量" + +msgctxt "support_roof_offset label" +msgid "Support Roof Horizontal Expansion" +msgstr "支撑顶板水平扩展" + +msgctxt "jerk_support_roof label" +msgid "Support Roof Jerk" +msgstr "支撑顶板抖动速度" + +msgctxt "support_roof_angles label" +msgid "Support Roof Line Directions" +msgstr "支撑顶板走线方向" + +msgctxt "support_roof_line_distance label" +msgid "Support Roof Line Distance" +msgstr "支撑顶板走线距离" + +msgctxt "support_roof_line_width label" +msgid "Support Roof Line Width" +msgstr "支撑顶板走线宽度" + +msgctxt "support_roof_pattern label" +msgid "Support Roof Pattern" +msgstr "支撑顶板图案" + +msgctxt "speed_support_roof label" +msgid "Support Roof Speed" +msgstr "支撑顶板速度" + +msgctxt "support_roof_height label" +msgid "Support Roof Thickness" +msgstr "支撑顶板厚度" + +msgctxt "support_roof_wall_count label" +msgid "Support Roof Wall Line Count" +msgstr "支撑顶板墙线条数" + +msgctxt "speed_support label" +msgid "Support Speed" +msgstr "速度(支撑结构)" + +msgctxt "support_bottom_stair_step_height label" +msgid "Support Stair Step Height" +msgstr "支撑梯步阶高度" + +msgctxt "support_bottom_stair_step_width label" +msgid "Support Stair Step Maximum Width" +msgstr "支撑梯步阶最大宽度" + +msgctxt "support_bottom_stair_step_min_slope label" +msgid "Support Stair Step Minimum Slope Angle" +msgstr "支撑阶梯最小坡度角" + +msgctxt "support_structure label" +msgid "Support Structure" +msgstr "支撑结构" + +msgctxt "support_top_distance label" +msgid "Support Top Distance" +msgstr "支撑顶部距离" + +msgctxt "support_wall_count label" +msgid "Support Wall Line Count" +msgstr "支撑墙行数" + +msgctxt "support_xy_distance label" +msgid "Support X/Y Distance" +msgstr "支撑 X/Y 距离" + +msgctxt "support_z_distance label" +msgid "Support Z Distance" +msgstr "支撑 Z 距离" + +msgctxt "support_interface_priority option support_lines_overwrite_interface_area" +msgid "Support lines preferred" +msgstr "偏好支撑线" + +msgctxt "support_interface_priority option support_area_overwrite_interface_area" +msgid "Support preferred" +msgstr "偏好支撑" + +msgctxt "support_supported_skin_fan_speed label" +msgid "Supported Skin Fan Speed" +msgstr "支撑的表面风扇速度" + +msgctxt "magic_mesh_surface_mode option surface" +msgid "Surface" +msgstr "表面" + +msgctxt "material_surface_energy label" +msgid "Surface Energy" +msgstr "表面能" + +msgctxt "magic_mesh_surface_mode label" +msgid "Surface Mode" +msgstr "表面模式" + +msgctxt "material_adhesion_tendency description" +msgid "Surface adhesion tendency." +msgstr "表面附着倾向。" + +msgctxt "material_surface_energy description" +msgid "Surface energy." +msgstr "表面能。" + +msgctxt "brim_smart_ordering description" +msgid "Swap print order of the innermost and second innermost brim lines. This improves brim removal." +msgstr "变换最内层和第二内层侧裙走线的打印顺序。这样可改善侧裙移除。" + +msgctxt "alternate_carve_order description" +msgid "Switch to which mesh intersecting volumes will belong with every layer, so that the overlapping meshes become interwoven. Turning this setting off will cause one of the meshes to obtain all of the volume in the overlap, while it is removed from the other meshes." +msgstr "切换为与每个层相交的网格相交体积,以便重叠的网格交织在一起。 关闭此设置将使其中一个网格获得重叠中的所有体积,同时将其从其他网格中移除。" + +msgctxt "adaptive_layer_height_threshold description" +msgid "Target horizontal distance between two adjacent layers. Reducing this setting causes thinner layers to be used to bring the edges of the layers closer together." +msgstr "两个相邻图层之间的目标水平距离。减小此设置的值会使要使用的图层变薄,从而使图层的边缘距离更近。" + +msgctxt "layer_start_x description" +msgid "The X coordinate of the position near where to find the part to start printing each layer." +msgstr "位置的 X 轴坐标,在该位置附近找到开始打印每层的部分。" + +msgctxt "z_seam_x description" +msgid "The X coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 X 轴坐标,在该位置附近开始打印层中各个部分。" + +msgctxt "extruder_prime_pos_x description" +msgid "The X coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 X 轴上初始位置。" + +msgctxt "layer_start_y description" +msgid "The Y coordinate of the position near where to find the part to start printing each layer." +msgstr "位置的 Y 轴坐标,在该位置附近找到开始打印每层的部分。" + +msgctxt "z_seam_y description" +msgid "The Y coordinate of the position near where to start printing each part in a layer." +msgstr "位置的 Y 轴坐标,在该位置附近开始打印层中各个部分。" + +msgctxt "extruder_prime_pos_y description" +msgid "The Y coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Y 轴坐标上初始位置。" + +msgctxt "extruder_prime_pos_z description" +msgid "The Z coordinate of the position where the nozzle primes at the start of printing." +msgstr "打印开始时,喷头在 Z 轴坐标上的起始位置." + +msgctxt "acceleration_print_layer_0 description" +msgid "The acceleration during the printing of the initial layer." +msgstr "打印起始层时的加速度。" + +msgctxt "acceleration_layer_0 description" +msgid "The acceleration for the initial layer." +msgstr "起始层的加速度。" + +msgctxt "acceleration_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" + +msgctxt "jerk_travel_layer_0 description" +msgid "The acceleration for travel moves in the initial layer." +msgstr "起始层中的空驶加速度。" + +msgctxt "acceleration_wall_x description" +msgid "The acceleration with which all inner walls are printed." +msgstr "打印所有内壁的加速度。" + +msgctxt "acceleration_infill description" +msgid "The acceleration with which infill is printed." +msgstr "打印填充物的加速度。" + +msgctxt "acceleration_ironing description" +msgid "The acceleration with which ironing is performed." +msgstr "执行熨平的加速度。" + +msgctxt "acceleration_print description" +msgid "The acceleration with which printing happens." +msgstr "打印发生的加速度。" + +msgctxt "raft_base_acceleration description" +msgid "The acceleration with which the base raft layer is printed." +msgstr "打印基础 Raft 层的加速度。" + +msgctxt "acceleration_support_bottom description" +msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." +msgstr "打印支撑底板的加速度。 以较低的加速度打印可以改善支撑在模型顶部的粘着。" + +msgctxt "acceleration_support_infill description" +msgid "The acceleration with which the infill of support is printed." +msgstr "打印支撑填充物的加速度。" + +msgctxt "raft_interface_acceleration description" +msgid "The acceleration with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的加速度。" + +msgctxt "acceleration_wall_0 description" +msgid "The acceleration with which the outermost walls are printed." +msgstr "打印最外壁的加速度。" + +msgctxt "acceleration_prime_tower description" +msgid "The acceleration with which the prime tower is printed." +msgstr "打印装填塔的加速度。" + +msgctxt "raft_acceleration description" +msgid "The acceleration with which the raft is printed." +msgstr "打印 Raft 的加速度。" + +msgctxt "acceleration_support_interface description" +msgid "The acceleration with which the roofs and floors of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "打印支撑顶板和底板的加速度。 以较低的加速度打印可以改善悬垂质量。" + +msgctxt "acceleration_support_roof description" +msgid "The acceleration with which the roofs of support are printed. Printing them at lower acceleration can improve overhang quality." +msgstr "打印支撑顶板的加速度。 以较低的加速度打印可以改善悬垂质量。" + +msgctxt "acceleration_skirt_brim description" +msgid "The acceleration with which the skirt and brim are printed. Normally this is done with the initial layer acceleration, but sometimes you might want to print the skirt or brim at a different acceleration." +msgstr "打印 skirt 和 brim 的加速度。 一般情况是以起始层加速度打印这些部分,但有时候您可能想要以不同加速度来打印 skirt 或 brim。" + +msgctxt "acceleration_support description" +msgid "The acceleration with which the support structure is printed." +msgstr "打印支撑结构的加速度。" + +msgctxt "raft_surface_acceleration description" +msgid "The acceleration with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的加速度。" + +msgctxt "acceleration_wall_x_roofing description" +msgid "The acceleration with which the top surface inner walls are printed." +msgstr "顶面内壁打印完成后的加速度" + +msgctxt "acceleration_wall_0_roofing description" +msgid "The acceleration with which the top surface outermost walls are printed." +msgstr "顶面最外壁打印完成后的加速度" + +msgctxt "acceleration_wall description" +msgid "The acceleration with which the walls are printed." +msgstr "打印壁的加速度。" + +msgctxt "acceleration_roofing description" +msgid "The acceleration with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的加速度。" + +msgctxt "acceleration_topbottom description" +msgid "The acceleration with which top/bottom layers are printed." +msgstr "打印顶部/底部层的加速度。" + +msgctxt "acceleration_travel description" +msgid "The acceleration with which travel moves are made." +msgstr "进行空驶的加速度。" + +msgctxt "ironing_flow description" +msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." +msgstr "熨平期间相对于正常皮肤走线的挤出材料量。 保持喷嘴填充状态有助于填充顶层表面的一些缝隙,但如填充过多则会导致表面上过度挤出和光点。" + +msgctxt "infill_overlap description" +msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物和壁之间的重叠量占填充走线宽度的百分比。稍微重叠可让各个壁与填充物牢固连接。" + +msgctxt "infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物和壁之间的重叠量。 稍微重叠可让各个壁与填充物牢固连接。" + +msgctxt "switch_extruder_retraction_amount description" +msgid "The amount of retraction when switching extruders. Set to 0 for no retraction at all. This should generally be the same as the length of the heat zone." +msgstr "切换挤出机时的回抽量。设为 0,不进行任何回抽。该值通常应与加热区的长度相同。" + +msgctxt "machine_nozzle_expansion_angle description" +msgid "The angle between the horizontal plane and the conical part right above the tip of the nozzle." +msgstr "水平面与喷嘴尖端上部圆锥形之间的角度。" + +msgctxt "support_tower_roof_angle description" +msgid "The angle of a rooftop of a tower. A higher value results in pointed tower roofs, a lower value results in flattened tower roofs." +msgstr "塔顶角度。 该值越高,塔顶越尖,值越低,塔顶越平。" + +msgctxt "mold_angle description" +msgid "The angle of overhang of the outer walls created for the mold. 0° will make the outer shell of the mold vertical, while 90° will make the outside of the model follow the contour of the model." +msgstr "为模具创建的外壁的悬垂角度。 0° 将使模具的外壳垂直,而 90° 将使模型的外部遵循模型的轮廓。" + +msgctxt "support_tree_branch_diameter_angle description" +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 tree support." +msgstr "随着分支朝底部逐渐变粗,分支直径的角度。角度为 0 表明分支全长具有均匀的粗细度。稍微有些角度可以增加树形支撑的稳定性。" + +msgctxt "support_conical_angle description" +msgid "The angle of the tilt of conical support. With 0 degrees being vertical, and 90 degrees being horizontal. Smaller angles cause the support to be more sturdy, but consist of more material. Negative angles cause the base of the support to be wider than the top." +msgstr "锥形支撑的倾斜角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会让支撑更为牢固,但需要更多材料。 负角会让支撑底座比顶部宽。" + +msgctxt "magic_fuzzy_skin_point_density description" +msgid "The average density of points introduced on each polygon in a layer. Note that the original points of the polygon are discarded, so a low density results in a reduction of the resolution." +msgstr "在一层中的每个多边形上引入的点的平均密度。 注意,多边形的原始点被舍弃,因此低密度导致分辨率降低。" + +msgctxt "magic_fuzzy_skin_point_dist description" +msgid "The average distance between the random points introduced on each line segment. Note that the original points of the polygon are discarded, so a high smoothness results in a reduction of the resolution. This value must be higher than half the Fuzzy Skin Thickness." +msgstr "在每个走线部分引入的随机点之间的平均距离。 注意,多边形的原始点被舍弃,因此高平滑度导致分辨率降低。 该值必须大于模糊皮肤厚度的一半。" + +msgctxt "material_brand description" +msgid "The brand of material used." +msgstr "所用材料的品牌。" + +msgctxt "machine_acceleration description" +msgid "The default acceleration of print head movement." +msgstr "打印头移动的默认加速度。" + +msgctxt "default_material_print_temperature description" +msgid "The default temperature used for printing. This should be the \"base\" temperature of a material. All other print temperatures should use offsets based on this value" +msgstr "用于打印的默认温度。 应为材料的\"基本\"温度。 所有其他打印温度均应使用基于此值的偏移量" + +msgctxt "default_material_bed_temperature description" +msgid "The default temperature used for the heated build plate. This should be the \"base\" temperature of a build plate. All other print temperatures should use offsets based on this value" +msgstr "用于加热打印平台的默认温度。这应该作为打印平台的“基础”温度。所有其他打印温度均应基于此值进行调整" + +msgctxt "bridge_skin_density description" +msgid "The density of the bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥表面层的密度。此值若小于 100 则会增大表面线条的缝隙。" + +msgctxt "support_bottom_density description" +msgid "The density of the floors of the support structure. A higher value results in better adhesion of the support on top of the model." +msgstr "支撑结构底板的密度。 较高的值会在模型顶部产生更好的支撑粘着。" + +msgctxt "support_roof_density description" +msgid "The density of the roofs of the support structure. A higher value results in better overhangs, but the supports are harder to remove." +msgstr "支撑结构顶板的密度。 较高的值会实现更好的悬垂,但支撑将更加难以移除。" + +msgctxt "bridge_skin_density_2 description" +msgid "The density of the second bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥第二层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" + +msgctxt "bridge_skin_density_3 description" +msgid "The density of the third bridge skin layer. Values less than 100 will increase the gaps between the skin lines." +msgstr "连桥第三层表面的密度。此值若小于 100 则会增大表面线条的缝隙。" + +msgctxt "machine_depth description" +msgid "The depth (Y-direction) of the printable area." +msgstr "机器可打印区域深度(Y 坐标)" + +msgctxt "support_tower_diameter description" +msgid "The diameter of a special tower." +msgstr "特殊塔的直径。" + +msgctxt "support_tree_branch_diameter description" +msgid "The diameter of the thinnest branches of tree support. Thicker branches are more sturdy. Branches towards the base will be thicker than this." +msgstr "树形支撑最细分支的直径。较粗的分支更坚固。接近基础的分支会比这更粗。" + +msgctxt "support_tree_tip_diameter description" +msgid "The diameter of the top of the tip of the branches of tree support." +msgstr "树形支撑的分支顶端的直径。" + +msgctxt "machine_feeder_wheel_diameter description" +msgid "The diameter of the wheel that drives the material in the feeder." +msgstr "进料装置中材料驱动轮的直径。" + +msgctxt "support_tree_max_diameter description" +msgid "The diameter of the widest branches of tree support. A thicker trunk is more sturdy; a thinner trunk takes up less space on the build plate." +msgstr "树形支撑最粗分支的直径。较粗的主干更坚固;较细主干在构建板上占据的空间较小。" + +msgctxt "adaptive_layer_height_variation_step description" +msgid "The difference in height of the next layer height compared to the previous one." +msgstr "下一层与前一层的高度差。" + +msgctxt "ironing_line_spacing description" +msgid "The distance between the lines of ironing." +msgstr "熨平走线之间的距离。" + +msgctxt "travel_avoid_distance description" +msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." +msgstr "喷嘴和已打印部分之间在空驶时避让的距离。" + +msgctxt "raft_base_line_spacing description" +msgid "The distance between the raft lines for the base raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "基础 Raft 层的 Raft 走线之间的距离。 宽间距方便将 Raft 从打印平台移除。" + +msgctxt "raft_interface_line_spacing description" +msgid "The distance between the raft lines for the middle raft layer. The spacing of the middle should be quite wide, while being dense enough to support the top raft layers." +msgstr "中间 Raft 层的 Raft 走线之间的距离。 中间的间距应足够宽,同时也要足够密集,以便支撑顶部 Raft 层。" + +msgctxt "raft_surface_line_spacing description" +msgid "The distance between the raft lines for the top raft layers. The spacing should be equal to the line width, so that the surface is solid." +msgstr "顶部 Raft 层的 Raft 走线之间的距离。 间距应等于走线宽度,以便打造坚固表面。" + +msgctxt "prime_tower_raft_base_line_spacing description" +msgid "The distance between the raft lines for the unique prime tower raft layer. Wide spacing makes for easy removal of the raft from the build plate." +msgstr "底漆塔独有的筏层之间筏线的距离。宽间距可以轻松地将筏从打印板上移除。" + +msgctxt "interlocking_depth description" +msgid "The distance from the boundary between models to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion." +msgstr "从模型之间的边界到生成互锁结构的距离,以单元格衡量。单元格太少会导致粘附不良。" + +msgctxt "brim_width description" +msgid "The distance from the model to the outermost brim line. A larger brim enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "模型到最外侧 brim 线的距离。 较大的 brim 可增强与打印平台的附着,但也会减少有效打印区域。" + +msgctxt "interlocking_boundary_avoidance description" +msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells." +msgstr "与不会生成互锁结构的模型外部的距离,以单元格衡量。" + +msgctxt "machine_heat_zone_length description" +msgid "The distance from the tip of the nozzle in which heat from the nozzle is transferred to the filament." +msgstr "与喷嘴尖端的距离,喷嘴产生的热量在这段距离内传递到耗材中。" + +msgctxt "bottom_skin_expand_distance description" +msgid "The distance the bottom skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the skin adhere better to the walls on the layer below. Lower values save amount of material used." +msgstr "底部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让皮肤与下面层的壁更好地粘着。 较低的值将节省所用的材料量。" + +msgctxt "expand_skins_expand_distance description" +msgid "The distance the skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on neighboring layers adhere better to the skin. Lower values save amount of material used." +msgstr "皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让相邻层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" + +msgctxt "top_skin_expand_distance description" +msgid "The distance the top skins are expanded into the infill. Higher values makes the skin attach better to the infill pattern and makes the walls on the layer above adhere better to the skin. Lower values save amount of material used." +msgstr "顶部皮肤扩展到填充物中的距离。 值越大会让皮肤与填充图案更好地附着,并让上方层的层壁与皮肤更好地粘着。 较低的值将节省所用的材料量。" + +msgctxt "wipe_move_distance description" +msgid "The distance to move the head back and forth across the brush." +msgstr "在擦拭刷上来回移动喷嘴头的距离。" + +msgctxt "lightning_infill_prune_angle description" +msgid "The endpoints of infill lines are shortened to save on material. This setting is the angle of overhang of the endpoints of these lines." +msgstr "为节省材料,填充线的端点将被缩短。此设置为这些线的端点形成的悬垂角度。" + +msgctxt "material_extrusion_cool_down_speed description" +msgid "The extra speed by which the nozzle cools while extruding. The same value is used to signify the heat up speed lost when heating up while extruding." +msgstr "挤出时喷嘴冷却的额外速度。 使用相同的值表示挤出过程中进行加热时的加热速度损失。" + +msgctxt "support_extruder_nr_layer_0 description" +msgid "The extruder train to use for printing the first layer of support infill. This is used in multi-extrusion." +msgstr "用于打印支撑填充物第一层的挤出机组。 用于多重挤出。" + +msgctxt "raft_base_extruder_nr description" +msgid "The extruder train to use for printing the first layer of the raft. This is used in multi-extrusion." +msgstr "用于打印 Raft 第一层的挤出器组。用于多重挤出。" + +msgctxt "support_bottom_extruder_nr description" +msgid "The extruder train to use for printing the floors of the support. This is used in multi-extrusion." +msgstr "用于打印支撑底板的挤出机组。 用于多重挤出。" + +msgctxt "support_infill_extruder_nr description" +msgid "The extruder train to use for printing the infill of the support. This is used in multi-extrusion." +msgstr "用于打印支撑填充物的挤出机组。 用于多重挤出。" + +msgctxt "raft_interface_extruder_nr description" +msgid "The extruder train to use for printing the middle layer of the raft. This is used in multi-extrusion." +msgstr "用于打印 Raft 中间层的挤出器组。用于多重挤出。" + +msgctxt "support_interface_extruder_nr description" +msgid "The extruder train to use for printing the roofs and floors of the support. This is used in multi-extrusion." +msgstr "用于打印支撑顶板和底板的挤出机组。 用于多重挤出。" + +msgctxt "support_roof_extruder_nr description" +msgid "The extruder train to use for printing the roofs of the support. This is used in multi-extrusion." +msgstr "用于打印支撑顶板的挤出机组。 用于多重挤出。" + +msgctxt "skirt_brim_extruder_nr description" +msgid "The extruder train to use for printing the skirt or brim. This is used in multi-extrusion." +msgstr "用于打印 Skirt 或 Brim 的挤出机组。用于多重挤出。" + +msgctxt "adhesion_extruder_nr description" +msgid "The extruder train to use for printing the skirt/brim/raft. This is used in multi-extrusion." +msgstr "用于打印 skirt/brim/raft 的挤出机组。 用于多重挤出。" + +msgctxt "support_extruder_nr description" +msgid "The extruder train to use for printing the support. This is used in multi-extrusion." +msgstr "用于打印支撑的挤出机组。 用于多重挤出。" + +msgctxt "raft_surface_extruder_nr description" +msgid "The extruder train to use for printing the top layer(s) of the raft. This is used in multi-extrusion." +msgstr "用于打印 Raft 顶层的挤出器组。用于多重挤出。" + +msgctxt "infill_extruder_nr description" +msgid "The extruder train used for printing infill. This is used in multi-extrusion." +msgstr "用于打印填充的挤出机组。 用于多重挤出。" + +msgctxt "wall_x_extruder_nr description" +msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." +msgstr "用于打印内壁的挤出机组。 用于多重挤出。" + +msgctxt "wall_0_extruder_nr description" +msgid "The extruder train used for printing the outer wall. This is used in multi-extrusion." +msgstr "用于打印外壁的挤出机组。 用于多重挤出。" + +msgctxt "top_bottom_extruder_nr description" +msgid "The extruder train used for printing the top and bottom skin. This is used in multi-extrusion." +msgstr "用于打印顶部和底部皮肤的挤出机组。 用于多重挤出。" + +msgctxt "roofing_extruder_nr description" +msgid "The extruder train used for printing the top most skin. This is used in multi-extrusion." +msgstr "用于打印最顶部皮肤的挤出机组。 用于多重挤出。" + +msgctxt "wall_extruder_nr description" +msgid "The extruder train used for printing the walls. This is used in multi-extrusion." +msgstr "用于打印壁的挤出机组。 用于多重挤出。" + +msgctxt "raft_base_fan_speed description" +msgid "The fan speed for the base raft layer." +msgstr "基础 Raft 层的风扇速度。" + +msgctxt "raft_interface_fan_speed description" +msgid "The fan speed for the middle raft layer." +msgstr "中间 Raft 层的风扇速度。" + +msgctxt "raft_fan_speed description" +msgid "The fan speed for the raft." +msgstr "Raft 的风扇速度。" + +msgctxt "raft_surface_fan_speed description" +msgid "The fan speed for the top raft layers." +msgstr "顶部 Raft 层的风扇速度。" + +msgctxt "cross_infill_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the infill of the print." +msgstr "在打印的填充中,亮度值决定了相应位置的最小密度的图像的文件位置。" + +msgctxt "cross_support_density_image description" +msgid "The file location of an image of which the brightness values determine the minimal density at the corresponding location in the support." +msgstr "一个图像的文件位置,在这个图像中,亮度值决定了在支持中相应位置的最小密度。" + +msgctxt "speed_slowdown_layers description" +msgid "The first few layers are printed slower than the rest of the model, to get better adhesion to the build plate and improve the overall success rate of prints. The speed is gradually increased over these layers." +msgstr "前几层的打印速度比模型的其他层慢,以便实现与打印平台的更好粘着,并改善整体的打印成功率。 该速度在这些层中会逐渐增加。" + +msgctxt "raft_airgap description" +msgid "The gap between the final raft layer and the first layer of the model. Only the first layer is raised by this amount to lower the bonding between the raft layer and the model. Makes it easier to peel off the raft." +msgstr "模型最后的 raft 层与第一层之间的间隙。 只有第一层被提高了这个量,以便降低 raft 层和模型之间的附着。 让 raft 更容易剥离。" + +msgctxt "machine_height description" +msgid "The height (Z-direction) of the printable area." +msgstr "机器可打印区域高度(Z 坐标)" + +msgctxt "mold_roof_height description" +msgid "The height above horizontal parts in your model which to print mold." +msgstr "用于打印模具的模型水平部分上方的高度。" + +msgctxt "cool_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "风扇以正常速度旋转的高度。 在下方的层中,风扇速度逐渐从起始风扇速度增加到正常风扇速度。" + +msgctxt "gantry_height description" +msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." +msgstr "喷嘴尖端与十字轴系统(X 轴和 Y 轴)之间的高度差。" + +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "喷嘴尖端与打印头最低部分之间的高度差。" + +msgctxt "retraction_hop_after_extruder_switch_height description" +msgid "The height difference when performing a Z Hop after extruder switch." +msgstr "挤出机切换后执行 Z 抬升的高度差。" + +msgctxt "retraction_hop description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" + +msgctxt "wipe_hop_amount description" +msgid "The height difference when performing a Z Hop." +msgstr "执行 Z 抬升的高度差。" + +msgctxt "layer_height description" +msgid "The height of each layer in mm. Higher values produce faster prints in lower resolution, lower values produce slower prints in higher resolution." +msgstr "每层的高度(以毫米为单位)。值越高,则打印速度越快,分辨率越低;值越低,则打印速度越慢,分辨率越高。" + +msgctxt "gradual_infill_step_height description" +msgid "The height of infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的填充高度。" + +msgctxt "gradual_support_infill_step_height description" +msgid "The height of support infill of a given density before switching to half the density." +msgstr "在切换至密度的一半前指定密度的支撑填充高度。" + +msgctxt "interlocking_beam_layer_count description" +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 "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" + +msgctxt "interlocking_orientation description" +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 "互锁结构梁的高度,以层数衡量。层数越少越坚固,但更容易出现缺陷。" + +msgctxt "layer_height_0 description" +msgid "The height of the initial layer in mm. A thicker initial layer makes adhesion to the build plate easier." +msgstr "起始层高(以毫米为单位)。起始层越厚,与打印平台的粘着越轻松。" + +msgctxt "prime_tower_base_height description" +msgid "The height of the prime tower base. Increasing this value will result in a more sturdy prime tower because the base will be wider. If this setting is too low, the prime tower will not have a sturdy base." +msgstr "Prime tower 底座的高度。增加这个值将使 prime tower 更加坚固,因为底座会更宽。如果这个设置过低,prime tower 将没有坚固的底座。" + +msgctxt "support_bottom_stair_step_height description" +msgid "The height of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures. Set to zero to turn off the stair-like behaviour." +msgstr "停留在模型上的支撑阶梯状底部的步阶高度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。 设为零可以关闭阶梯状行为。" + +msgctxt "brim_gap description" +msgid "The horizontal distance between the first brim line and the outline of the first layer of the print. A small gap can make the brim easier to remove while still providing the thermal benefits." +msgstr "第一条边沿线与打印件第一层轮廓之间的水平距离。较小的间隙可使边沿更容易去除,同时在散热方面仍有优势。" + +msgctxt "skirt_gap description" +msgid "The horizontal distance between the skirt and the first layer of the print.\nThis is the minimum distance. Multiple skirt lines will extend outwards from this distance." +msgstr "skirt 和打印第一层之间的水平距离。" +"这是最小距离。多个 skirt 走线将从此距离向外延伸。" + +msgctxt "lightning_infill_straightening_angle description" +msgid "The infill lines are straightened out to save on printing time. This is the maximum angle of overhang allowed across the length of the infill line." +msgstr "为节省打印时间,填充线将被拉直。这是整条填充线上允许的最大悬垂角度。" + +msgctxt "infill_offset_x description" +msgid "The infill pattern is moved this distance along the X axis." +msgstr "填充图案沿 X 轴移动此距离。" + +msgctxt "infill_offset_y description" +msgid "The infill pattern is moved this distance along the Y axis." +msgstr "填充图案沿 Y 轴移动此距离。" + +msgctxt "machine_nozzle_size description" +msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." +msgstr "喷嘴内径,在使用非标准喷嘴尺寸时需更改此设置。" + +msgctxt "raft_base_jerk description" +msgid "The jerk with which the base raft layer is printed." +msgstr "打印基础 Raft 层的抖动速度。" + +msgctxt "raft_interface_jerk description" +msgid "The jerk with which the middle raft layer is printed." +msgstr "打印中间 Raft 层的抖动速度。" + +msgctxt "raft_jerk description" +msgid "The jerk with which the raft is printed." +msgstr "打印 Raft 的抖动速度。" + +msgctxt "raft_surface_jerk description" +msgid "The jerk with which the top raft layers are printed." +msgstr "打印顶部 Raft 层的抖动速度。" + +msgctxt "bottom_skin_preshrink description" +msgid "The largest width of bottom skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing bottom skin at slanted surfaces in the model." +msgstr "将被移除的底部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印底部皮肤时所耗用的时间和材料。" + +msgctxt "skin_preshrink description" +msgid "The largest width of skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top/bottom skin at slanted surfaces in the model." +msgstr "将被移除的皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部/底部皮肤时所耗用的时间和材料。" + +msgctxt "top_skin_preshrink description" +msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." +msgstr "将被移除的顶部皮肤区域的最大宽度。 小于此值的所有皮肤区域都将消失。 这有助于限制在模型的倾斜表面打印顶部皮肤时所耗用的时间和材料。" + +msgctxt "cool_fan_full_layer description" +msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." +msgstr "风扇以正常风扇速度旋转的层。 如果设置了正常风扇速度(高度),则该值将被计算并舍入为整数。" + +msgctxt "cool_min_layer_time_fan_speed_max description" +msgid "The layer time which sets the threshold between regular fan speed and maximum fan speed. Layers that print slower than this time use regular fan speed. For faster layers the fan speed gradually increases towards the maximum fan speed." +msgstr "设定正常风扇速度和最大风扇速度之间阈值的层时间。 打印速度低于此时间的层使用正常风扇速度。 对于更快的层,风扇速度逐渐增加到最大风扇速度。" + +msgctxt "retraction_amount description" +msgid "The length of material retracted during a retraction move." +msgstr "回抽移动期间回抽的材料长度。" + +msgctxt "prime_tower_base_curve_magnitude description" +msgid "The magnitude factor used for the slope of the prime tower base. If you increase this value, the base will become slimmer. If you decrease it, the base will become thicker." +msgstr "用于 prime tower 底座斜度的幅度因子。如果您增加这个值,底座会变得更细。如果减小它,底座会变得更厚。" + +msgctxt "machine_buildplate_type description" +msgid "The material of the build plate installed on the printer." +msgstr "打印平台材料已安装在打印机上。" + +msgctxt "adaptive_layer_height_variation description" +msgid "The maximum allowed height different from the base layer height." +msgstr "最大允许高度与基层高度不同。" + +msgctxt "ooze_shield_angle description" +msgid "The maximum angle a part in the ooze shield will have. With 0 degrees being vertical, and 90 degrees being horizontal. A smaller angle leads to less failed ooze shields, but more material." +msgstr "渗出罩中的一个部件将具备的最大角度。 角度 0 度时为垂直,角度 90 度时为水平。 较小的角度会降低渗出罩失效次数,但会耗费更多材料。" + +msgctxt "conical_overhang_angle description" +msgid "The maximum angle of overhangs after the they have been made printable. At a value of 0° all overhangs are replaced by a piece of model connected to the build plate, 90° will not change the model in any way." +msgstr "在悬垂变得可打印后悬垂的最大角度。 当该值为 0° 时,所有悬垂将被与打印平台连接的模型的一个部分替代,如果为 90° 时,不会以任何方式更改模型。" + +msgctxt "support_tree_angle description" +msgid "The maximum angle of the branches while they grow around the model. Use a lower angle to make them more vertical and more stable. Use a higher angle to be able to have more reach." +msgstr "围绕模型扩大时,分支的最大角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可支撑更多结构。" + +msgctxt "conical_overhang_hole_size description" +msgid "The maximum area of a hole in the base of the model before it's removed by Make Overhang Printable. Holes smaller than this will be retained. A value of 0 mm² will fill all holes in the models base." +msgstr "在“使悬垂对象可打印”将其删除之前,模型底部的孔的最大面积。小于此面积的孔将会保留。值 0 mm² 将填充模型底部的所有孔。" + +msgctxt "meshfix_maximum_deviation description" +msgid "The maximum deviation allowed when reducing the resolution for the Maximum Resolution setting. If you increase this, the print will be less accurate, but the g-code will be smaller. Maximum Deviation is a limit for Maximum Resolution, so if the two conflict the Maximum Deviation will always be held true." +msgstr "降低“最大分辨率”设置的分辨率时允许的最大偏移量。如果增加该值,打印作业的准确性将降低,但 g-code 将减小。“最大偏移量”是“最大分辨率”的限制,因此如果两者冲突,则“最大偏移量”将始终保持有效。" + +msgctxt "support_join_distance description" +msgid "The maximum distance between support structures in the X/Y directions. When separate structures are closer together than this value, the structures merge into one." +msgstr "支撑结构间在 X/Y 方向的最大距离。当分离结构之间的距离小于此值时,这些结构将合并为一体。" + +msgctxt "flow_rate_max_extrusion_offset description" +msgid "The maximum distance in mm to move the filament to compensate for changes in flow rate." +msgstr "移动线材以补偿流量变化的最大距离(以毫米为单位)。" + +msgctxt "meshfix_maximum_extrusion_area_deviation description" +msgid "The maximum extrusion area deviation allowed when removing intermediate points from a straight line. An intermediate point may serve as width-changing point in a long straight line. Therefore, if it is removed, it will cause the line to have a uniform width and, as a result, lose (or gain) a bit of extrusion area. If you increase this you may notice slight under- (or over-) extrusion in between straight parallel walls, as more intermediate width-changing points will be allowed to be removed. Your print will be less accurate, but the g-code will be smaller." +msgstr "从直线中移除中间点时允许的最大挤出面积偏移量。在长直线中,中间点可以用作宽度变化点。因此,如果移除该点,这会使得线条具有均匀的宽度,进而导致失去(或增加)一点挤出面积。如果增加此值,您可能会注意到平行直壁之间的挤出不足(或过多),因为将允许移除更多的中间宽度变化点。打印作业的准确性将降低,但 g-code 将减小。" + +msgctxt "jerk_print_layer_0 description" +msgid "The maximum instantaneous velocity change during the printing of the initial layer." +msgstr "打印起始层时的最大瞬时速度变化。" + +msgctxt "jerk_print description" +msgid "The maximum instantaneous velocity change of the print head." +msgstr "打印头的最大瞬时速度变化。" + +msgctxt "jerk_ironing description" +msgid "The maximum instantaneous velocity change while performing ironing." +msgstr "执行熨平时的最大瞬时速度变化。" + +msgctxt "jerk_wall_x description" +msgid "The maximum instantaneous velocity change with which all inner walls are printed." +msgstr "打印所有内壁时的最大瞬时速度变化。" + +msgctxt "jerk_infill description" +msgid "The maximum instantaneous velocity change with which infill is printed." +msgstr "打印填充物时的最大瞬时速度变化。" + +msgctxt "jerk_support_bottom description" +msgid "The maximum instantaneous velocity change with which the floors of support are printed." +msgstr "打印支撑底板时的最大瞬时速度变化。" + +msgctxt "jerk_support_infill description" +msgid "The maximum instantaneous velocity change with which the infill of support is printed." +msgstr "打印支撑填充物时的最大瞬时速度变化。" + +msgctxt "jerk_wall_0 description" +msgid "The maximum instantaneous velocity change with which the outermost walls are printed." +msgstr "打印最外壁时的最大瞬时速度变化。" + +msgctxt "jerk_prime_tower description" +msgid "The maximum instantaneous velocity change with which the prime tower is printed." +msgstr "打印装填塔时的最大瞬时速度变化。" + +msgctxt "jerk_support_interface description" +msgid "The maximum instantaneous velocity change with which the roofs and floors of support are printed." +msgstr "打印支撑顶板和底板的最大瞬时速度变化。" + +msgctxt "jerk_support_roof description" +msgid "The maximum instantaneous velocity change with which the roofs of support are printed." +msgstr "打印支撑顶板的最大瞬时速度变化。" + +msgctxt "jerk_skirt_brim description" +msgid "The maximum instantaneous velocity change with which the skirt and brim are printed." +msgstr "打印 skirt 和 brim 时的最大瞬时速度变化。" + +msgctxt "jerk_support description" +msgid "The maximum instantaneous velocity change with which the support structure is printed." +msgstr "打印支撑结构时的最大瞬时速度变化。" + +msgctxt "jerk_wall_x_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface inner walls are printed." +msgstr "打印顶面内壁时的最大瞬时速度变化。" + +msgctxt "jerk_wall_0_roofing description" +msgid "The maximum instantaneous velocity change with which the top surface outermost walls are printed." +msgstr "打印顶面最外壁时的最大瞬时速度变化。" + +msgctxt "jerk_wall description" +msgid "The maximum instantaneous velocity change with which the walls are printed." +msgstr "打印壁时的最大瞬时速度变化。" + +msgctxt "jerk_roofing description" +msgid "The maximum instantaneous velocity change with which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层时的最大瞬时速度变化。" + +msgctxt "jerk_topbottom description" +msgid "The maximum instantaneous velocity change with which top/bottom layers are printed." +msgstr "打印顶部/底部层时的最大瞬时速度变化。" + +msgctxt "jerk_travel description" +msgid "The maximum instantaneous velocity change with which travel moves are made." +msgstr "进行空驶时的最大瞬时速度变化。" + +msgctxt "prime_tower_max_bridging_distance description" +msgid "The maximum length of the branches which may be printed over the air." +msgstr "可以跨空打印分支的最大长度。" + +msgctxt "machine_max_feedrate_x description" +msgid "The maximum speed for the motor of the X-direction." +msgstr "X 轴方向电机的最大速度。" + +msgctxt "machine_max_feedrate_y description" +msgid "The maximum speed for the motor of the Y-direction." +msgstr "Y 轴方向电机的最大速度。" + +msgctxt "machine_max_feedrate_z description" +msgid "The maximum speed for the motor of the Z-direction." +msgstr "Z 轴方向电机的最大速度。" + +msgctxt "machine_max_feedrate_e description" +msgid "The maximum speed of the filament." +msgstr "耗材的最大速度。" + +msgctxt "support_bottom_stair_step_width description" +msgid "The maximum width of the steps of the stair-like bottom of support resting on the model. A low value makes the support harder to remove, but too high values can lead to unstable support structures." +msgstr "停留在模型上的支撑阶梯状底部的最大步阶宽度。 较低的值会使支撑更难于移除,但过高的值可能导致不稳定的支撑结构。" + +msgctxt "mold_width description" +msgid "The minimal distance between the outside of the mold and the outside of the model." +msgstr "模具外侧与模型外侧之间的最短距离。" + +msgctxt "machine_minimum_feedrate description" +msgid "The minimal movement speed of the print head." +msgstr "打印头的最低移动速度。" + +msgctxt "material_initial_print_temperature description" +msgid "The minimal temperature while heating up to the Printing Temperature at which printing can already start." +msgstr "加热到可以开始打印的打印温度时的最低温度。" + +msgctxt "machine_min_cool_heat_time_window description" +msgid "The minimal time an extruder has to be inactive before the nozzle is cooled. Only when an extruder is not used for longer than this time will it be allowed to cool down to the standby temperature." +msgstr "挤出机必须保持不活动以便喷嘴冷却的最短时间。 挤出机必须不使用此时间以上,才可以冷却到待机温度。" + +msgctxt "infill_support_angle description" +msgid "The minimum angle of internal overhangs for which infill is added. At a value of 0° objects are totally filled with infill, 90° will not provide any infill." +msgstr "添加内填充的内部覆盖的最小角度。在一个0的值中,完全填满了填充,90将不提供任何填充。" + +msgctxt "support_angle description" +msgid "The minimum angle of overhangs for which support is added. At a value of 0° all overhangs are supported, 90° will not provide any support." +msgstr "添加支撑的最小悬垂角度。 当角度为 0° 时,将支撑所有悬垂,当角度为 90° 时,不提供任何支撑。" + +msgctxt "retraction_min_travel description" +msgid "The minimum distance of travel needed for a retraction to happen at all. This helps to get fewer retractions in a small area." +msgstr "回抽发生所需的最小空驶距离。 这有助于在较小区域内实现更少的回抽。" + +msgctxt "skirt_brim_minimal_length description" +msgid "The minimum length of the skirt or brim. If this length is not reached by all skirt or brim lines together, more skirt or brim lines will be added until the minimum length is reached. Note: If the line count is set to 0 this is ignored." +msgstr "skirt 或 brim 的最小长度。 如果所有 skirt 或 brim 走线之和都没有达到此长度,则将添加更多 skirt 或 brim 走线直至达到最小长度。 注意: 如果走线计数设为 0,则将忽略此选项。" + +msgctxt "min_odd_wall_line_width description" +msgid "The minimum line width for middle line gap filler polyline walls. This setting determines at which model thickness we switch from printing two wall lines, to printing two outer walls and a single central wall in the middle. A higher Minimum Odd Wall Line Width leads to a higher maximum even wall line width. The maximum odd wall line width is calculated as 2 * Minimum Even Wall Line Width." +msgstr "中间走线空隙填料多线壁的最小走线宽度。此设置确定在什么模型厚度下,我们从打印两根壁走线切换到打印两个外壁并在中间打印一个中心壁。更高的最小奇数壁走线宽度会带来更高的最大偶数壁走线宽度。最大奇数壁走线宽度计算方法是:2 * 最小偶数壁走线宽度。" + +msgctxt "min_even_wall_line_width description" +msgid "The minimum line width for normal polygonal walls. This setting determines at which model thickness we switch from printing a single thin wall line, to printing two wall lines. A higher Minimum Even Wall Line Width leads to a higher maximum odd wall line width. The maximum even wall line width is calculated as Outer Wall Line Width + 0.5 * Minimum Odd Wall Line Width." +msgstr "普通多边形墙的最小走线宽度。此设置确定我们从打印单根薄壁走线切换到打印两根壁走线时的模型厚度。更高的最小偶数壁走线宽度会带来更高的最大奇数壁走线宽度。最大偶数壁走线宽度计算方法是:外壁走线宽度 + 0.5 * 最小奇数壁走线宽度。" + +msgctxt "cool_min_speed description" +msgid "The minimum print speed, despite slowing down due to the minimum layer time. When the printer would slow down too much, the pressure in the nozzle would be too low and result in bad print quality." +msgstr "最低打印速度,排除因最短层时间而减速。 当打印机减速过多时,喷嘴中的压力将过低并导致较差的打印质量。" + +msgctxt "meshfix_maximum_resolution description" +msgid "The minimum size of a line segment after slicing. If you increase this, the mesh will have a lower resolution. This may allow the printer to keep up with the speed it has to process g-code and will increase slice speed by removing details of the mesh that it can't process anyway." +msgstr "走线部分在切片后的最小尺寸。如果提高此值,网格的分辨率将降低。这可让打印机保持处理 g-code 所需的速度,并将通过移除无法处理的网格细节提高切片速度。" + +msgctxt "meshfix_maximum_travel_resolution description" +msgid "The minimum size of a travel line segment after slicing. If you increase this, the travel moves will have less smooth corners. This may allow the printer to keep up with the speed it has to process g-code, but it may cause model avoidance to become less accurate." +msgstr "切片后的旅行线路段的最小尺寸。如果你增加了这个,旅行的移动就会变得不那么平滑了。这可能使打印机能够跟上它处理g代码的速度,但是它可能导致模型的避免变得不那么准确。" + +msgctxt "support_bottom_stair_step_min_slope description" +msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." +msgstr "使阶梯生效的区域最小坡度。该值较小可在较浅的坡度上更容易去除支撑,但该值过小可能会在模型的其他部分上产生某些很反常的结果。" + +msgctxt "cool_min_layer_time description" +msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "在层中花费的最少时间。 这会迫使打印机减速,以便至少在一层中消耗此处所规定的时间。 这会让已打印材料充分冷却后再打印下一层。 如果提升头被禁用,且如果不这么做会违反“最小速度“,则层所花时间可能仍会少于最小层时间。" + +msgctxt "prime_tower_min_volume description" +msgid "The minimum volume for each layer of the prime tower in order to purge enough material." +msgstr "为了清除足够的材料,装填塔每层的最小体积。" + +msgctxt "support_tree_max_diameter_increase_by_merges_when_support_to_model description" +msgid "The most the diameter of a branch that has to connect to the model may increase by merging with branches that could reach the buildplate. Increasing this reduces print time, but increases the area of support that rests on model" +msgstr "与接触打印平台的分支合并时,模型必连分支的最大直径可能会扩大。扩大直径可减少打印时间,但会增加模型上的支撑区域" + +msgctxt "machine_name description" +msgid "The name of your 3D printer model." +msgstr "您的 3D 打印机型号的名称。" + +msgctxt "machine_nozzle_id description" +msgid "The nozzle ID for an extruder train, such as \"AA 0.4\" and \"BB 0.8\"." +msgstr "挤出机组的喷嘴 ID,比如\"AA 0.4\"和\"BB 0.8\"。" + +msgctxt "travel_avoid_other_parts description" +msgid "The nozzle avoids already printed parts when traveling. This option is only available when combing is enabled." +msgstr "喷嘴会在空驶时避开已打印的部分。 此选项仅在启用梳理功能时可用。" + +msgctxt "travel_avoid_supports description" +msgid "The nozzle avoids already printed supports when traveling. This option is only available when combing is enabled." +msgstr "在空走时,喷嘴避免了已打印的支撑。只有在启用了梳理时才可以使用此选项。" + +msgctxt "bottom_layers description" +msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "底层的数量。 在按底层厚度计算时,该值舍入为整数。" + +msgctxt "raft_base_wall_count description" +msgid "The number of contours to print around the linear pattern in the base layer of the raft." +msgstr "在 Raft 的底板层中,围绕线型图案打印轮廓的次数。" + +msgctxt "raft_interface_wall_count description" +msgid "The number of contours to print around the linear pattern in the middle layers of the raft." +msgstr "围绕筏层中段的线性图案打印的轮廓圈数。" + +msgctxt "raft_surface_wall_count description" +msgid "The number of contours to print around the linear pattern in the top layers of the raft." +msgstr "围绕筏层顶段的线性图案打印的轮廓圈数。" + +msgctxt "raft_wall_count description" +msgid "The number of contours to print around the linear pattern of the raft." +msgstr "围绕筏层的线性图案打印的轮廓圈数。" + +msgctxt "skin_edge_support_layers description" +msgid "The number of infill layers that supports skin edges." +msgstr "支撑皮肤边缘的填充物的层数。" + +msgctxt "initial_bottom_layers description" +msgid "The number of initial bottom layers, from the build-plate upwards. When calculated by the bottom thickness, this value is rounded to a whole number." +msgstr "从构建板向上算起的初始底层数。在按底层厚度计算时,该值四舍五入为整数。" + +msgctxt "raft_interface_layers description" +msgid "The number of layers between the base and the surface of the raft. These comprise the main thickness of the raft. Increasing this creates a thicker, sturdier raft." +msgstr "Raft 的底层和表面之间的层数。这些层组成了 Raft 的主要厚度。增加此值会创建一个更厚、更坚固的 Raft。" + +msgctxt "brim_line_count description" +msgid "The number of lines used for a brim. More brim lines enhance adhesion to the build plate, but also reduces the effective print area." +msgstr "brim 所用走线数量。 更多 brim 走线可增强与打印平台的附着,但也会减少有效打印区域。" + +msgctxt "support_brim_line_count description" +msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." +msgstr "用于支撑 Brim 的走线数量。更多 Brim 走线可增强与打印平台的附着,但也会增加一些额外材料成本。" + +msgctxt "raft_surface_layers description" +msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." +msgstr "第 2 个 raft 层上方的顶层数量。 这些是模型所在的完全填充层。 第二层会产生比第一层更平滑的顶部表面。" + +msgctxt "top_layers description" +msgid "The number of top layers. When calculated by the top thickness, this value is rounded to a whole number." +msgstr "顶层的数量。 在按顶层厚度计算时,该值舍入为整数。" + +msgctxt "roofing_layer_count description" +msgid "The number of top most skin layers. Usually only one top most layer is sufficient to generate higher quality top surfaces." +msgstr "最顶部皮肤层数。 通常只需一层最顶层就足以生成较高质量的顶部表面。" + +msgctxt "support_wall_count description" +msgid "The number of walls with which to surround support infill. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑的墙的数量。添加一堵墙可以使支持打印更加可靠,并且可以更好地支持挂起,但增加了打印时间和使用的材料。" + +msgctxt "support_bottom_wall_count description" +msgid "The number of walls with which to surround support interface floor. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面底板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" + +msgctxt "support_roof_wall_count description" +msgid "The number of walls with which to surround support interface roof. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面顶板的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" + +msgctxt "support_interface_wall_count description" +msgid "The number of walls with which to surround support interface. Adding a wall can make support print more reliably and can support overhangs better, but increases print time and material used." +msgstr "包围支撑接触面的墙的数量。添加墙可以使支持打印更加可靠,并且可以更好地支持悬垂对象,但增加了打印时间和使用的材料。" + +msgctxt "wall_distribution_count description" +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 "从中心开始计数的壁数量,需要在这些壁上传播变化。较小的值意味着不更改外壁的宽度。" + +msgctxt "wall_line_count description" +msgid "The number of walls. When calculated by the wall thickness, this value is rounded to a whole number." +msgstr "壁数量。 在按壁厚计算时,该值舍入为整数。" + +msgctxt "machine_nozzle_tip_outer_diameter description" +msgid "The outer diameter of the tip of the nozzle." +msgstr "喷嘴尖端的外径。" + +msgctxt "infill_pattern description" +msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." +msgstr "打印的填充材料的图案。直线和锯齿形填充交替在各层上变换方向,从而降低材料成本。每层都完整地打印网格、三角形、三六边形、立方体、八角形、四分之一立方体、十字和同心图案。螺旋二十四面体、立方体、四分之一立方体和八角形填充随每层变化,以使各方向的强度分布更均衡。闪电形填充尝试通过仅支撑物体顶部,将填充程度降至最低。" + +msgctxt "support_pattern description" +msgid "The pattern of the support structures of the print. The different options available result in sturdy or easy to remove support." +msgstr "打印品支撑结构的图案。 提供的不同选项可实现或牢固或易于拆除的支撑。" + +msgctxt "roofing_pattern description" +msgid "The pattern of the top most layers." +msgstr "最顶层图案。" + +msgctxt "top_bottom_pattern description" +msgid "The pattern of the top/bottom layers." +msgstr "顶层/底层图案。" + +msgctxt "top_bottom_pattern_0 description" +msgid "The pattern on the bottom of the print on the first layer." +msgstr "打印品底部第一层上的图案。" + +msgctxt "ironing_pattern description" +msgid "The pattern to use for ironing top surfaces." +msgstr "用于熨平顶部表面的图案。" + +msgctxt "support_bottom_pattern description" +msgid "The pattern with which the floors of the support are printed." +msgstr "打印支撑底板的图案。" + +msgctxt "support_interface_pattern description" +msgid "The pattern with which the interface of the support with the model is printed." +msgstr "支撑与模型之间接触面的打印图案。" + +msgctxt "support_roof_pattern description" +msgid "The pattern with which the roofs of the support are printed." +msgstr "打印支撑顶板的图案。" + +msgctxt "z_seam_position description" +msgid "The position near where to start printing each part in a layer." +msgstr "在该位置附近开始打印层中各个部分。" + +msgctxt "support_tree_angle_slow description" +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 "不必避开模型时,分支的偏好角度。使用较小的角度可增加垂直度和稳定性。使用较大的角度可以更快合并分支。" + +msgctxt "support_tree_rest_preference description" +msgid "The preferred placement of the support structures. If structures can't be placed at the preferred location, they will be place elsewhere, even if that means placing them on the model." +msgstr "支撑结构的偏好位置。只要结构不在偏好位置,它们就可能被放在其他区域,即使这意味着它们可能被放在模型上。" + +msgctxt "jerk_layer_0 description" +msgid "The print maximum instantaneous velocity change for the initial layer." +msgstr "起始层的打印最大瞬时速度变化。" + +msgctxt "machine_shape description" +msgid "The shape of the build plate without taking unprintable areas into account." +msgstr "打印平台形状(不考虑不可打印区域)。" + +msgctxt "machine_head_with_fans_polygon description" +msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." +msgstr "打印头的形状。这些是相对于打印头位置的坐标,打印头通常是其第一个挤出器的位置。打印头左侧和前方的尺寸必须采用负坐标。" + +msgctxt "cross_infill_pocket_size description" +msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." +msgstr "交叉 3D 图案的四向交叉处的气槽大小,高度为图案与自身接触的位置。" + +msgctxt "coasting_min_volume description" +msgid "The smallest volume an extrusion path should have before allowing coasting. For smaller extrusion paths, less pressure has been built up in the bowden tube and so the coasted volume is scaled linearly. This value should always be larger than the Coasting Volume." +msgstr "挤出路径在可以进行滑行前应拥有的最小体积。 对于较小的挤出路径,鲍登管内累积的压力较少,因此滑行空间采用线性扩展。 该值应始终大于滑行空间。" + +msgctxt "machine_nozzle_cool_down_speed description" +msgid "The speed (°C/s) by which the nozzle cools down averaged over the window of normal printing temperatures and the standby temperature." +msgstr "喷嘴冷却到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" + +msgctxt "machine_nozzle_heat_up_speed description" +msgid "The speed (°C/s) by which the nozzle heats up averaged over the window of normal printing temperatures and the standby temperature." +msgstr "喷嘴升温到平均超过正常打印温度和待机温度范围的速度 (°C/s)。" + +msgctxt "speed_wall_x description" +msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." +msgstr "打印所有内壁的速度。 以比外壁更快的速度打印内壁将减少打印时间。 将该值设为外壁速度和填充速度之间也可行。" + +msgctxt "bridge_skin_speed description" +msgid "The speed at which bridge skin regions are printed." +msgstr "打印连桥表面区域的速度。" + +msgctxt "speed_infill description" +msgid "The speed at which infill is printed." +msgstr "打印填充的速度。" + +msgctxt "speed_print description" +msgid "The speed at which printing happens." +msgstr "打印发生的速度。" + +msgctxt "raft_base_speed description" +msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印基础 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" + +msgctxt "bridge_wall_speed description" +msgid "The speed at which the bridge walls are printed." +msgstr "打印桥壁的速度。" + +msgctxt "cool_fan_speed_0 description" +msgid "The speed at which the fans spin at the start of the print. In subsequent layers the fan speed is gradually increased up to the layer corresponding to Regular Fan Speed at Height." +msgstr "风扇在打印开始时旋转的速度。 在随后的层中,风扇速度逐渐增加到对应“正常风扇速度(高度)”的水平。" + +msgctxt "cool_fan_speed_min description" +msgid "The speed at which the fans spin before hitting the threshold. When a layer prints faster than the threshold, the fan speed gradually inclines towards the maximum fan speed." +msgstr "风扇旋转达到阈值前的速度。 当一层的打印速度超过阈值时,风扇速度逐渐朝最大风扇速度增加。" + +msgctxt "cool_fan_speed_max description" +msgid "The speed at which the fans spin on the minimum layer time. The fan speed gradually increases between the regular fan speed and maximum fan speed when the threshold is hit." +msgstr "风扇在最小层时间上旋转的速度。 当达到阈值时,风扇速度在正常风扇速度和最大风扇速度之间逐渐增加。" + +msgctxt "retraction_prime_speed description" +msgid "The speed at which the filament is primed during a retraction move." +msgstr "回抽移动期间耗材装填的速度。" + +msgctxt "wipe_retraction_prime_speed description" +msgid "The speed at which the filament is primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材装填的速度。" + +msgctxt "switch_extruder_prime_speed description" +msgid "The speed at which the filament is pushed back after a nozzle switch retraction." +msgstr "喷嘴切换回抽后耗材被推回的速度。" + +msgctxt "retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a retraction move." +msgstr "回抽移动期间耗材回抽和装填的速度。" + +msgctxt "wipe_retraction_speed description" +msgid "The speed at which the filament is retracted and primed during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽和装填的速度。" + +msgctxt "switch_extruder_retraction_speed description" +msgid "The speed at which the filament is retracted during a nozzle switch retract." +msgstr "喷嘴切换回抽期间耗材回抽的速度。" + +msgctxt "retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a retraction move." +msgstr "回抽移动期间耗材回抽的速度。" + +msgctxt "wipe_retraction_retract_speed description" +msgid "The speed at which the filament is retracted during a wipe retraction move." +msgstr "擦拭回抽移动期间耗材回抽的速度。" + +msgctxt "switch_extruder_retraction_speeds description" +msgid "The speed at which the filament is retracted. A higher retraction speed works better, but a very high retraction speed can lead to filament grinding." +msgstr "回抽耗材的速度。 较高的回抽速度效果较好,但回抽速度过高可能导致耗材磨损。" + +msgctxt "speed_support_bottom description" +msgid "The speed at which the floor of support is printed. Printing it at lower speed can improve adhesion of support on top of your model." +msgstr "打印支撑底板的速度。 以较低的速度打印可以改善支撑在模型顶部的粘着。" + +msgctxt "speed_support_infill description" +msgid "The speed at which the infill of support is printed. Printing the infill at lower speeds improves stability." +msgstr "打印支撑填充物的速度。 以较低的速度打印填充物可改善稳定性。" + +msgctxt "raft_interface_speed description" +msgid "The speed at which the middle raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." +msgstr "打印中间 Raft 层的速度。 该层应以很慢的速度打印,因为喷嘴所出的材料量非常高。" + +msgctxt "speed_wall_0 description" +msgid "The speed at which the outermost walls are printed. Printing the outer wall at a lower speed improves the final skin quality. However, having a large difference between the inner wall speed and the outer wall speed will affect quality in a negative way." +msgstr "打印最外壁的速度。 以较低速度打印外壁可改善最终皮肤质量。 但是,如果内壁速度和外壁速度差距过大,则将对质量产生负面影响。" + +msgctxt "speed_prime_tower description" +msgid "The speed at which the prime tower is printed. Printing the prime tower slower can make it more stable when the adhesion between the different filaments is suboptimal." +msgstr "打印装填塔的速度。 以较慢速度打印装填塔可以在不同耗材之间的粘着欠佳时使其更加稳定。" + +msgctxt "cool_fan_speed description" +msgid "The speed at which the print cooling fans spin." +msgstr "打印冷却风扇旋转的速度。" + +msgctxt "raft_speed description" +msgid "The speed at which the raft is printed." +msgstr "打印 Raft 的速度。" + +msgctxt "speed_support_interface description" +msgid "The speed at which the roofs and floors of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "打印支撑顶板和底板的速度。 以较低的速度打印可以改善悬垂质量。" + +msgctxt "speed_support_roof description" +msgid "The speed at which the roofs of support are printed. Printing them at lower speeds can improve overhang quality." +msgstr "打印支撑顶板的速度。 以较低的速度打印可以改善悬垂质量。" + +msgctxt "skirt_brim_speed description" +msgid "The speed at which the skirt and brim are printed. Normally this is done at the initial layer speed, but sometimes you might want to print the skirt or brim at a different speed." +msgstr "打印 skirt 和 brim 的速度。 一般情况是以起始层速度打印这些部分,但有时候您可能想要以不同速度来打印 skirt 或 brim。" + +msgctxt "speed_support description" +msgid "The speed at which the support structure is printed. Printing support at higher speeds can greatly reduce printing time. The surface quality of the support structure is not important since it is removed after printing." +msgstr "打印支撑结构的速度。 以更高的速度打印支撑可极大地缩短打印时间。 支撑结构的表面质量并不重要,因为在打印后会将其移除。" + +msgctxt "raft_surface_speed description" +msgid "The speed at which the top raft layers are printed. These should be printed a bit slower, so that the nozzle can slowly smooth out adjacent surface lines." +msgstr "打印顶部 Raft 层的速度。 这些层应以较慢的速度打印,以便喷嘴缓慢地整平临近的表面走线。" + +msgctxt "speed_wall_x_roofing description" +msgid "The speed at which the top surface inner walls are printed." +msgstr "顶面内壁打印完成后的速度" + +msgctxt "speed_wall_0_roofing description" +msgid "The speed at which the top surface outermost wall is printed." +msgstr "顶面最外壁打印完成后的速度" + +msgctxt "speed_z_hop description" +msgid "The speed at which the vertical Z movement is made for Z Hops. This is typically lower than the print speed since the build plate or machine's gantry is harder to move." +msgstr "Z 垂直移动实现抬升的速度。一般小于打印速度,因为打印平台或打印机的十字轴较难移动。" + +msgctxt "speed_wall description" +msgid "The speed at which the walls are printed." +msgstr "打印壁的速度。" + +msgctxt "speed_ironing description" +msgid "The speed at which to pass over the top surface." +msgstr "通过顶部表面的速度。" + +msgctxt "material_break_speed description" +msgid "The speed at which to retract the filament in order to break it cleanly." +msgstr "为完全脱落耗材而抽回耗材的速度。" + +msgctxt "speed_roofing description" +msgid "The speed at which top surface skin layers are printed." +msgstr "打印顶部表面皮肤层的速度。" + +msgctxt "speed_topbottom description" +msgid "The speed at which top/bottom layers are printed." +msgstr "打印顶部/底部层的速度。" + +msgctxt "speed_travel description" +msgid "The speed at which travel moves are made." +msgstr "进行空驶的速度。" + +msgctxt "coasting_speed description" +msgid "The speed by which to move during coasting, relative to the speed of the extrusion path. A value slightly under 100% is advised, since during the coasting move the pressure in the bowden tube drops." +msgstr "滑行期间的移动速度,相对于挤出路径的速度。 建议采用略低于 100% 的值,因为在滑行移动期间鲍登管中的压力会下降。" + +msgctxt "speed_layer_0 description" +msgid "The speed for the initial layer. A lower value is advised to improve adhesion to the build plate. Does not affect the build plate adhesion structures themselves, like brim and raft." +msgstr "起始层的速度。建议采用较低的值以便改善与构建板的粘着。不会影响构建板自身的粘着结构,如边沿和筏。" + +msgctxt "speed_print_layer_0 description" +msgid "The speed of printing for the initial layer. A lower value is advised to improve adhesion to the build plate." +msgstr "打印起始层的速度。 建议采用较低的值以便改善与打印平台的粘着。" + +msgctxt "speed_travel_layer_0 description" +msgid "The speed of travel moves in the initial layer. A lower value is advised to prevent pulling previously printed parts away from the build plate. The value of this setting can automatically be calculated from the ratio between the Travel Speed and the Print Speed." +msgstr "起始层中的空驶速度。 建议采用较低的值,以防止将之前打印的部分从打印平台上拉离。 该设置的值可以根据空驶速度和打印速度的比率自动计算得出。" + +msgctxt "material_break_temperature description" +msgid "The temperature at which the filament is broken for a clean break." +msgstr "耗材在完全脱落时的温度。" + +msgctxt "build_volume_temperature description" +msgid "The temperature of the environment to print in. If this is 0, the build volume temperature will not be adjusted." +msgstr "打印环境温度。若为 0,将不会调整构建体积温度。" + +msgctxt "material_standby_temperature description" +msgid "The temperature of the nozzle when another nozzle is currently used for printing." +msgstr "当另一个喷嘴正用于打印时该喷嘴的温度。" + +msgctxt "material_final_print_temperature description" +msgid "The temperature to which to already start cooling down just before the end of printing." +msgstr "打印结束前开始冷却的温度。" + +msgctxt "material_print_temperature_layer_0 description" +msgid "The temperature used for printing the first layer." +msgstr "打印第一层时使用的温度。" + +msgctxt "material_print_temperature description" +msgid "The temperature used for printing." +msgstr "用于打印的温度。" + +msgctxt "material_bed_temperature_layer_0 description" +msgid "The temperature used for the heated build plate at the first layer. If this is 0, the build plate is left unheated during the first layer." +msgstr "打印第一层时用于加热构建板的温度。如果此项为 0,则在打印第一层期间保持不加热构建板。" + +msgctxt "material_bed_temperature description" +msgid "The temperature used for the heated build plate. If this is 0, the build plate is left unheated." +msgstr "用于加热构建板的温度。如果此项为 0,则保持不加热构建板。" + +msgctxt "material_break_preparation_temperature description" +msgid "The temperature used to purge material, should be roughly equal to the highest possible printing temperature." +msgstr "用于清除材料的温度,应大致等于可达到的最高打印温度。" + +msgctxt "bottom_thickness description" +msgid "The thickness of the bottom layers in the print. This value divided by the layer height defines the number of bottom layers." +msgstr "打印品中底层的厚度。 此值除以层高定义底层数量。" + +msgctxt "skin_edge_support_thickness description" +msgid "The thickness of the extra infill that supports skin edges." +msgstr "支撑皮肤边缘的额外填充物的厚度。" + +msgctxt "support_interface_height description" +msgid "The thickness of the interface of the support where it touches with the model on the bottom or the top." +msgstr "支撑与模型在底部或顶部接触的接触面厚度。" + +msgctxt "support_bottom_height description" +msgid "The thickness of the support floors. This controls the number of dense layers that are printed on top of places of a model on which support rests." +msgstr "支撑底板的厚度。 这会控制支撑所停放的模型顶部区域所打印的密集层数量。" + +msgctxt "support_roof_height description" +msgid "The thickness of the support roofs. This controls the amount of dense layers at the top of the support on which the model rests." +msgstr "支撑顶板的厚度。 这会控制模型所停放的支撑顶部密集层的数量。" + +msgctxt "top_thickness description" +msgid "The thickness of the top layers in the print. This value divided by the layer height defines the number of top layers." +msgstr "打印品中顶层的厚度。 该值除以层高定义顶层的数量。" + +msgctxt "top_bottom_thickness description" +msgid "The thickness of the top/bottom layers in the print. This value divided by the layer height defines the number of top/bottom layers." +msgstr "打印品中顶层/底层的厚度。 该值除以层高定义顶层/底层的数量。" + +msgctxt "wall_thickness description" +msgid "The thickness of the walls in the horizontal direction. This value divided by the wall line width defines the number of walls." +msgstr "水平方向的壁厚度。 此值除以壁线宽度定义壁数量。" + +msgctxt "infill_sparse_thickness description" +msgid "The thickness per layer of infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" + +msgctxt "support_infill_sparse_thickness description" +msgid "The thickness per layer of support infill material. This value should always be a multiple of the layer height and is otherwise rounded." +msgstr "支撑填充材料每层的厚度。 该值应始终为层高的乘数,否则应进行舍入。" + +msgctxt "machine_gcode_flavor description" +msgid "The type of g-code to be generated." +msgstr "需要生成的 G-code 类型。" + +msgctxt "material_type description" +msgid "The type of material used." +msgstr "所用的材料类型。" + +msgctxt "coasting_volume description" +msgid "The volume otherwise oozed. This value should generally be close to the nozzle diameter cubed." +msgstr "该体积如不进行滑行则会渗出。 该值一般应接近喷嘴立方直径。" + +msgctxt "machine_width description" +msgid "The width (X-direction) of the printable area." +msgstr "机器可打印区域宽度(X 坐标)" + +msgctxt "support_brim_width description" +msgid "The width of the brim to print underneath the support. A larger brim enhances adhesion to the build plate, at the cost of some extra material." +msgstr "在支撑下方要打印的 Brim 的宽度。较大的 Brim 可增强与打印平台的附着,但也会增加一些额外材料成本。" + +msgctxt "interlocking_beam_width description" +msgid "The width of the interlocking structure beams." +msgstr "互锁结构梁的宽度。" + +msgctxt "prime_tower_base_size description" +msgid "The width of the prime tower brim/base. A larger base enhances adhesion to the build plate, but also reduces the effective print area." +msgstr "Prime tower 边缘/底座的宽度。更大的底座可以增强对打印板的粘附力,但也会减少有效打印区域。" + +msgctxt "prime_tower_size description" +msgid "The width of the prime tower." +msgstr "装填塔的宽度。" + +msgctxt "magic_fuzzy_skin_thickness description" +msgid "The width within which to jitter. It's advised to keep this below the outer wall width, since the inner walls are unaltered." +msgstr "在其中进行抖动的宽度。 建议让此值低于外壁宽度,因为内壁不会更改。" + +msgctxt "retraction_extrusion_window description" +msgid "The window in which the maximum retraction count is enforced. This value should be approximately the same as the retraction distance, so that effectively the number of times a retraction passes the same patch of material is limited." +msgstr "执行最大回抽计数的范围。 该值应与回抽距离大致相同,以便一次回抽通过同一块材料的次数得到有效限制。" + +msgctxt "prime_tower_position_x description" +msgid "The x coordinate of the position of the prime tower." +msgstr "装填塔位置的 X 坐标。" + +msgctxt "prime_tower_position_y description" +msgid "The y coordinate of the position of the prime tower." +msgstr "装填塔位置的 y 坐标。" + +msgctxt "support_meshes_present description" +msgid "There are support meshes present in the scene. This setting is controlled by Cura." +msgstr "场景中存在支撑网格。此设置受 Cura 控制。" + +msgctxt "bridge_wall_coast description" +msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." +msgstr "此参数用于控制挤出机在开始打印桥壁前应该滑行的距离。在开始打印连桥之前滑行,可以降低喷嘴中的压力,并保证打印出平滑的连桥。" + +msgctxt "raft_base_smoothing description" +msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层基段轮廓线内角的倒圆角大小。内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" + +msgctxt "raft_interface_smoothing description" +msgid "This setting controls how much inner corners in the raft middle outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层中段轮廓线内角的倒圆角大小。内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" + +msgctxt "raft_smoothing description" +msgid "This setting controls how much inner corners in the raft outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "该设置控制 Raft 轮廓中的内角呈圆形的程度。内向角被设置为半圆形,半径等于此处的值。此设置还会移除 raft 轮廓中小于此半圆形的孔。" + +msgctxt "raft_surface_smoothing description" +msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." +msgstr "此设置用于调整筏层顶段轮廓线内角的倒圆角大小。内角被倒角为半圆,其半径等于此处给出的值。此设置还会移除筏层轮廓线中面积小于此半径值圆的孔。" + +msgctxt "retraction_count_max description" +msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." +msgstr "此设置限制在最小挤出距离范围内发生的回抽数。 此范围内的额外回抽将会忽略。 这避免了在同一件耗材上重复回抽,从而导致耗材变扁并引起磨损问题。" + +msgctxt "draft_shield_enabled description" +msgid "This will create a wall around the model, which traps (hot) air and shields against exterior airflow. Especially useful for materials which warp easily." +msgstr "这将在模型周围创建一个壁,该壁会吸住(热)空气并遮住外部气流。 对于容易卷曲的材料尤为有用。" + +msgctxt "support_tree_tip_diameter label" +msgid "Tip Diameter" +msgstr "顶端直径" + +msgctxt "material_shrinkage_percentage_xy description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the XY-direction (horizontally)." +msgstr "为了补偿材料在冷却时的收缩,将用此因子在 XY 方向(水平)上缩放模型。" + +msgctxt "material_shrinkage_percentage_z description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor in the Z-direction (vertically)." +msgstr "为了补偿材料在冷却时的收缩,将用此因子在 Z 方向(垂直)上缩放模型。" + +msgctxt "material_shrinkage_percentage description" +msgid "To compensate for the shrinkage of the material as it cools down, the model will be scaled with this factor." +msgstr "为了补偿材料在冷却时的收缩,将用此因子缩放模型。" + +msgctxt "top_layers label" +msgid "Top Layers" +msgstr "顶部层数" + +msgctxt "top_skin_expand_distance label" +msgid "Top Skin Expand Distance" +msgstr "顶部皮肤扩展距离" + +msgctxt "top_skin_preshrink label" +msgid "Top Skin Removal Width" +msgstr "顶部皮肤移除宽度" + +msgctxt "acceleration_wall_x_roofing label" +msgid "Top Surface Inner Wall Acceleration" +msgstr "顶面内壁加速度" + +msgctxt "jerk_wall_x_roofing label" +msgid "Top Surface Inner Wall Jerk" +msgstr "顶面内壁冲击力" + +msgctxt "speed_wall_x_roofing label" +msgid "Top Surface Inner Wall Speed" +msgstr "顶面内壁速度" + +msgctxt "wall_x_material_flow_roofing label" +msgid "Top Surface Inner Wall(s) Flow" +msgstr "顶面内壁挤出量" + +msgctxt "acceleration_wall_0_roofing label" +msgid "Top Surface Outer Wall Acceleration" +msgstr "顶面外壁加速度" + +msgctxt "wall_0_material_flow_roofing label" +msgid "Top Surface Outer Wall Flow" +msgstr "顶面外壁挤出量" + +msgctxt "jerk_wall_0_roofing label" +msgid "Top Surface Outer Wall Jerk" +msgstr "顶面外壁冲击力" + +msgctxt "speed_wall_0_roofing label" +msgid "Top Surface Outer Wall Speed" +msgstr "顶面外壁速度" + +msgctxt "acceleration_roofing label" +msgid "Top Surface Skin Acceleration" +msgstr "顶部表面皮肤加速度" + +msgctxt "roofing_extruder_nr label" +msgid "Top Surface Skin Extruder" +msgstr "顶部皮肤挤出机" + +msgctxt "roofing_material_flow label" +msgid "Top Surface Skin Flow" +msgstr "顶部表层流量" + +msgctxt "jerk_roofing label" +msgid "Top Surface Skin Jerk" +msgstr "顶部表面皮肤抖动速度" + +msgctxt "roofing_layer_count label" +msgid "Top Surface Skin Layers" +msgstr "顶部表面皮肤层" + +msgctxt "roofing_angles label" +msgid "Top Surface Skin Line Directions" +msgstr "顶部表面皮肤走线方向" + +msgctxt "roofing_line_width label" +msgid "Top Surface Skin Line Width" +msgstr "顶部表面皮肤线宽" + +msgctxt "roofing_pattern label" +msgid "Top Surface Skin Pattern" +msgstr "顶部表面皮肤图案" + +msgctxt "speed_roofing label" +msgid "Top Surface Skin Speed" +msgstr "顶部表面皮肤速度" + +msgctxt "top_thickness label" +msgid "Top Thickness" +msgstr "顶层厚度" + +msgctxt "max_skin_angle_for_expansion description" +msgid "Top and/or bottom surfaces of your object with an angle larger than this setting, won't have their top/bottom skin expanded. This avoids expanding the narrow skin areas that are created when the model surface has a near vertical slope. An angle of 0° is horizontal and will cause no skin to be expanded, while an angle of 90° is vertical and will cause all skin to be expanded." +msgstr "如果对象的顶部和/或底部表面的角度大于此设置,则不要扩展其顶部/底部皮肤。这会避免扩展在模型表面有接近垂直的坡度时所形成的狭窄皮肤区域。0° 的角为水平,将导致不扩展任何皮肤,而 90° 的角为垂直,将导致扩展所有皮肤。" + +msgctxt "top_bottom description" +msgid "Top/Bottom" +msgstr "顶 / 底层" + +msgctxt "top_bottom label" +msgid "Top/Bottom" +msgstr "顶 / 底层" + +msgctxt "acceleration_topbottom label" +msgid "Top/Bottom Acceleration" +msgstr "顶部/底部加速度" + +msgctxt "top_bottom_extruder_nr label" +msgid "Top/Bottom Extruder" +msgstr "顶部/底部挤出机" + +msgctxt "skin_material_flow label" +msgid "Top/Bottom Flow" +msgstr "顶部/底部流量" + +msgctxt "jerk_topbottom label" +msgid "Top/Bottom Jerk" +msgstr "顶部/底部抖动速度" + +msgctxt "skin_angles label" +msgid "Top/Bottom Line Directions" +msgstr "顶层/底层走线方向" + +msgctxt "skin_line_width label" +msgid "Top/Bottom Line Width" +msgstr "走线宽度(顶层 / 底层)" + +msgctxt "top_bottom_pattern label" +msgid "Top/Bottom Pattern" +msgstr "顶部 / 底部走线图案" + +msgctxt "speed_topbottom label" +msgid "Top/Bottom Speed" +msgstr "速度(顶部 / 底部)" + +msgctxt "top_bottom_thickness label" +msgid "Top/Bottom Thickness" +msgstr "顶层 / 底层厚度" + +msgctxt "support_type option buildplate" +msgid "Touching Buildplate" +msgstr "支撑打印平台" + +msgctxt "support_tower_diameter label" +msgid "Tower Diameter" +msgstr "塔直径" + +msgctxt "support_tower_roof_angle label" +msgid "Tower Roof Angle" +msgstr "塔顶板角度" + msgctxt "mesh_rotation_matrix description" msgid "Transformation matrix to be applied to the model when loading it from file." msgstr "在将模型从文件中载入时应用在模型上的转换矩阵。" -msgctxt "support_type description" -msgid "Adjusts the placement of the support structures. The placement can be set to touching build plate or everywhere. When set to everywhere the support structures will also be printed on the model." -msgstr "调整支撑结构的放置。 放置可以设置为支撑打印平台或全部支撑。 当设置为全部支撑时,支撑结构也将在模型上打印。" +msgctxt "travel label" +msgid "Travel" +msgstr "移动" + +msgctxt "acceleration_travel label" +msgid "Travel Acceleration" +msgstr "空驶加速度" + +msgctxt "travel_avoid_distance label" +msgid "Travel Avoid Distance" +msgstr "空驶避让距离" + +msgctxt "jerk_travel label" +msgid "Travel Jerk" +msgstr "空驶抖动速度" + +msgctxt "speed_travel label" +msgid "Travel Speed" +msgstr "空驶速度" + +msgctxt "magic_mesh_surface_mode description" +msgid "Treat the model as a surface only, a volume, or volumes with loose surfaces. The normal print mode only prints enclosed volumes. \"Surface\" prints a single wall tracing the mesh surface with no infill and no top/bottom skin. \"Both\" prints enclosed volumes like normal and any remaining polygons as surfaces." +msgstr "将模型作为仅表面、一个空间或多个具有松散表面的空间处理。 正常打印模式仅打印封闭的空间。 “表面”打印跟踪网格表面的单个壁,没有填充物,也没有顶部/底部皮肤。 \"两者都\"将封闭空间正常打印,并将任何剩余多边形作为表面打印。" + +msgctxt "support_structure option tree" +msgid "Tree" +msgstr "树形" + +msgctxt "infill_pattern option trihexagon" +msgid "Tri-Hexagon" +msgstr "内六角" + +msgctxt "infill_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +msgctxt "support_bottom_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +msgctxt "support_interface_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +msgctxt "support_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +msgctxt "support_roof_pattern option triangles" +msgid "Triangles" +msgstr "三角形" + +msgctxt "support_tree_max_diameter label" +msgid "Trunk Diameter" +msgstr "主干直径" + +msgctxt "machine_gcode_flavor option UltiGCode" +msgid "Ultimaker 2" +msgstr "Ultimaker 2" + +msgctxt "meshfix_union_all label" +msgid "Union Overlapping Volumes" +msgstr "联合覆盖体积" + +msgctxt "bridge_wall_min_length description" +msgid "Unsupported walls shorter than this will be printed using the normal wall settings. Longer unsupported walls will be printed using the bridge wall settings." +msgstr "将使用正常壁设置打印短于此长度且没有支撑的壁。将使用桥壁设置打印长于此长度且没有支撑的壁。" + +msgctxt "adaptive_layer_height_enabled label" +msgid "Use Adaptive Layers" +msgstr "使用自适应图层" + +msgctxt "support_use_towers label" +msgid "Use Towers" +msgstr "使用塔" + +msgctxt "acceleration_travel_enabled description" +msgid "Use a separate acceleration rate for travel moves. If disabled, travel moves will use the acceleration value of the printed line at their destination." +msgstr "空驶时使用单独的加速度。如果禁用,空驶将使用打印线在目的地的加速度值。" + +msgctxt "jerk_travel_enabled description" +msgid "Use a separate jerk rate for travel moves. If disabled, travel moves will use the jerk value of the printed line at their destination." +msgstr "空驶时使用单独的抖动速度。如果禁用,空驶将使用打印线在目的地的抖动速度值。" + +msgctxt "relative_extrusion description" +msgid "Use relative extrusion rather than absolute extrusion. Using relative E-steps makes for easier post-processing of the g-code. However, it's not supported by all printers and it may produce very slight deviations in the amount of deposited material compared to absolute E-steps. Irrespective of this setting, the extrusion mode will always be set to absolute before any g-code script is output." +msgstr "使用相对挤出而不是绝对挤出。使用相对 E 步阶,以便对 G-code 进行更轻松的后期处理。但是,并非所有打印机均支持此功能,而且与绝对 E 步阶相比,此功能在沉积材料量上会产生非常轻微的偏差。不论是否启用此设置,挤出模式将始终在设置为绝对挤出后才输出任何 G-code 脚本。" + +msgctxt "support_use_towers description" +msgid "Use specialized towers to support tiny overhang areas. These towers have a larger diameter than the region they support. Near the overhang the towers' diameter decreases, forming a roof." +msgstr "使用专门的塔来支撑较小的悬垂区域。 这些塔的直径比它们所支撑的区域要大。 在靠近悬垂物时,塔的直径减小,形成顶板。" + +msgctxt "infill_mesh description" +msgid "Use this mesh to modify the infill of other meshes with which it overlaps. Replaces infill regions of other meshes with regions for this mesh. It's suggested to only print one Wall and no Top/Bottom Skin for this mesh." +msgstr "使用此网格修改与其重叠的其他网格的填充物。 利用此网格的区域替换其他网格的填充区域。 建议仅为此网格打印一个壁,而不打印顶部/底部皮肤。" + +msgctxt "support_mesh description" +msgid "Use this mesh to specify support areas. This can be used to generate support structure." +msgstr "使用此网格指定支撑区域。 可用于生成支撑结构。" + +msgctxt "anti_overhang_mesh description" +msgid "Use this mesh to specify where no part of the model should be detected as overhang. This can be used to remove unwanted support structure." +msgstr "使用此网格指定模型的任何部分不应被检测为悬垂的区域。 可用于移除不需要的支撑结构。" + +msgctxt "z_seam_type option back" +msgid "User Specified" +msgstr "用户指定" + +msgctxt "material_shrinkage_percentage_z label" +msgid "Vertical Scaling Factor Shrinkage Compensation" +msgstr "垂直缩放因子收缩补偿" + +msgctxt "slicing_tolerance description" +msgid "Vertical tolerance in the sliced layers. The contours of a layer are normally generated by taking cross sections through the middle of each layer's thickness (Middle). Alternatively each layer can have the areas which fall inside of the volume throughout the entire thickness of the layer (Exclusive) or a layer has the areas which fall inside anywhere within the layer (Inclusive). Inclusive retains the most details, Exclusive makes for the best fit and Middle stays closest to the original surface." +msgstr "切片层的垂直公差。一般通过穿过每层厚度的中间截取横截面而产生该层的轮廓(中间)。此外,每层均可有一些区域,这些区域落入体积内部并遍布该层的整个厚度(排除),或层具有一些区域,这些区域落入该层内的任意位置(包含)。“包含”保留最多的细节,“排除”有利于最佳贴合,而“中间”保持最接近原始表面。" + +msgctxt "material_bed_temp_wait label" +msgid "Wait for Build Plate Heatup" +msgstr "等待打印平台加热" + +msgctxt "material_print_temp_wait label" +msgid "Wait for Nozzle Heatup" +msgstr "等待喷嘴加热" + +msgctxt "acceleration_wall label" +msgid "Wall Acceleration" +msgstr "壁加速度" + +msgctxt "wall_distribution_count label" +msgid "Wall Distribution Count" +msgstr "壁分派次数" + +msgctxt "wall_extruder_nr label" +msgid "Wall Extruder" +msgstr "壁挤出机" + +msgctxt "wall_material_flow label" +msgid "Wall Flow" +msgstr "壁流量" + +msgctxt "jerk_wall label" +msgid "Wall Jerk" +msgstr "壁抖动速度" + +msgctxt "wall_line_count label" +msgid "Wall Line Count" +msgstr "壁走线次数" + +msgctxt "wall_line_width label" +msgid "Wall Line Width" +msgstr "走线宽度(壁)" + +msgctxt "inset_direction label" +msgid "Wall Ordering" +msgstr "壁顺序" + +msgctxt "speed_wall label" +msgid "Wall Speed" +msgstr "速度(壁)" + +msgctxt "wall_thickness label" +msgid "Wall Thickness" +msgstr "壁厚" + +msgctxt "wall_transition_length label" +msgid "Wall Transition Length" +msgstr "壁过渡长度" + +msgctxt "wall_transition_filter_distance label" +msgid "Wall Transitioning Filter Distance" +msgstr "壁过渡筛选距离" + +msgctxt "wall_transition_filter_deviation label" +msgid "Wall Transitioning Filter Margin" +msgstr "壁过渡筛选边距" + +msgctxt "wall_transition_angle label" +msgid "Wall Transitioning Threshold Angle" +msgstr "壁过渡阈值角度" + +msgctxt "shell label" +msgid "Walls" +msgstr "墙" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +msgstr "悬垂超过此角度的壁将使用悬垂壁设置打印。该值为 90 时,不会将任何壁视为悬垂。受到支撑支持的悬垂也不会被视为悬垂。" + +msgctxt "meshfix_fluid_motion_enabled description" +msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." +msgstr "当启用时,对具有平滑运动规划器的打印机进行刀具路径校正。对偏离一般刀具轨迹方向的小运动进行平滑,改善流体运动。" + +msgctxt "infill_enable_travel_optimization description" +msgid "When enabled, the order in which the infill lines are printed is optimized to reduce the distance travelled. The reduction in travel time achieved very much depends on the model being sliced, infill pattern, density, etc. Note that, for some models that have many small areas of infill, the time to slice the model may be greatly increased." +msgstr "启用后,可优化打印填充走线的顺序,缩短空驶距离。空驶时间的缩短很大程度上取决于被切割的模型、填充图案、密度等。请注意,对于具有许多小填充区域的一些模型,分割模型的时间可能会大幅增加。" + +msgctxt "support_fan_enable description" +msgid "When enabled, the print cooling fan speed is altered for the skin regions immediately above the support." +msgstr "启用时,会为支撑正上方的表面区域更改打印冷却风扇速度。" + +msgctxt "z_seam_relative description" +msgid "When enabled, the z seam coordinates are relative to each part's centre. When disabled, the coordinates define an absolute position on the build plate." +msgstr "启用时,Z 缝坐标为相对于各个部分中心的值。 禁用时,坐标定义打印平台上的一个绝对位置。" + +msgctxt "retraction_combing_max_distance description" +msgid "When greater than zero, combing travel moves that are longer than this distance will use retraction. If set to zero, there is no maximum and combing moves will not use retraction." +msgstr "当大于零时,比这段距离更长的梳理空驶将会使用回抽。如果设置为零,则没有最大值,梳理空驶将不会使用回抽。" + +msgctxt "hole_xy_offset_max_diameter description" +msgid "When greater than zero, the Hole Horizontal Expansion is gradually applied on small holes (small holes are expanded more). When set to zero the Hole Horizontal Expansion will be applied to all holes. Holes larger than the Hole Horizontal Expansion Max Diameter are not expanded." +msgstr "大于零时,孔洞水平扩展会逐渐适应小孔洞(小孔洞可以扩展更多)。设为零时,孔洞水平扩展可以应用于所有孔洞。大于孔洞水平扩展最大直径时,孔洞不会被扩展。" + +msgctxt "hole_xy_offset description" +msgid "When greater than zero, the Hole Horizontal Expansion is the amount of offset applied to all holes in each layer. Positive values increase the size of the holes, negative values reduce the size of the holes. When this setting is enabled it can be further tuned with Hole Horizontal Expansion Max Diameter." +msgstr "当大于零时,“孔水平膨胀”是应用于每层所有孔的偏移量。正值会增加孔的大小,负值会减少孔的大小。当此设置启用时,可以使用“孔水平膨胀最大直径”进一步细化。" + +msgctxt "bridge_skin_material_flow description" +msgid "When printing bridge skin regions, the amount of material extruded is multiplied by this value." +msgstr "打印连桥表面区域时,将挤出的材料量乘以此值。" + +msgctxt "bridge_wall_material_flow description" +msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." +msgstr "打印桥壁时,将挤出的材料量乘以此值。" + +msgctxt "bridge_skin_material_flow_2 description" +msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "打印连桥第二层表面时,将挤出的材料量乘以此值。" + +msgctxt "bridge_skin_material_flow_3 description" +msgid "When printing the third bridge skin layer, the amount of material extruded is multiplied by this value." +msgstr "打印连桥第三层表面时,将挤出的材料量乘以此值。" + +msgctxt "cool_lift_head description" +msgid "When the minimum speed is hit because of minimum layer time, lift the head away from the print and wait the extra time until the minimum layer time is reached." +msgstr "当因最低层时间达到最低速度时,将打印头从打印品上提升,并等候达到最低层时间。" + +msgctxt "skin_no_small_gaps_heuristic description" +msgid "When the model has small vertical gaps of only a few layers, there should normally be skin around those layers in the narrow space. Enable this setting to not generate skin if the vertical gap is very small. This improves printing time and slicing time, but technically leaves infill exposed to the air." +msgstr "当模型中只有几个分层有微小垂直间隙时,通常狭窄空间的分层周围应有表层。如果垂直间隙非常小,则启用此设置不生成表层。这缩短了打印时间和切片时间,但从技术方面看,会使填充物暴露在空气中。" + +msgctxt "wall_transition_angle description" +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 "在奇数和偶数壁之间创建过渡时。角度大于此设置的楔形将没有过渡,并且不会在中心打印壁来填充剩余空间。减少此设置会减少这些中心壁的数量和长度,但可能会留下空隙或挤出过多。" + +msgctxt "wall_transition_length description" +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 lines." +msgstr "当随着零件变薄而在不同数量的壁之间过渡时,会分配一定数量的间距来分割或连接壁走线。" + +msgctxt "wipe_hop_enable description" +msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "在擦拭时,构建板会降低以在喷嘴与打印件之间形成间隙。这样可防止喷嘴在行程中撞击打印件,降低从构建板上撞掉打印件的可能性。" + +msgctxt "retraction_hop_enabled description" +msgid "Whenever a retraction is done, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." +msgstr "每当回抽完成时,打印平台会降低以便在喷嘴和打印品之间形成空隙。 它可以防止喷嘴在空驶过程中撞到打印品,降低将打印品从打印平台撞掉的几率。" + +msgctxt "support_xy_overrides_z description" +msgid "Whether the Support X/Y Distance overrides the Support Z Distance or vice versa. When X/Y overrides Z the X/Y distance can push away the support from the model, influencing the actual Z distance to the overhang. We can disable this by not applying the X/Y distance around overhangs." +msgstr "支撑 X/Y 距离是否覆盖支撑 Z 距离或反之。 当 X/Y 覆盖 Z 时,X/Y 距离可将支撑从模型上推离,影响与悬垂之间的实际 Z 距离。 我们可以通过不在悬垂周围应用 X/Y 距离来禁用此选项。" + +msgctxt "machine_center_is_zero description" +msgid "Whether the X/Y coordinates of the zero position of the printer is at the center of the printable area." +msgstr "打印机零位的 X/Y 坐标是否位于可打印区域的中心。" + +msgctxt "machine_endstop_positive_direction_x description" +msgid "Whether the endstop of the X axis is in the positive direction (high X coordinate) or negative (low X coordinate)." +msgstr "指定 X 轴的限位开关位于正向(高 X 轴坐标)还是负向(低 X 轴坐标)。" + +msgctxt "machine_endstop_positive_direction_y description" +msgid "Whether the endstop of the Y axis is in the positive direction (high Y coordinate) or negative (low Y coordinate)." +msgstr "指定 Y 轴的限位开关位于正向(高 Y 轴坐标)还是负向(低 Y 轴坐标)。" + +msgctxt "machine_endstop_positive_direction_z description" +msgid "Whether the endstop of the Z axis is in the positive direction (high Z coordinate) or negative (low Z coordinate)." +msgstr "指定 Z 轴的限位开关位于正向(高 Z 轴坐标)还是负向(低 Z 轴坐标)。" + +msgctxt "machine_extruders_share_heater description" +msgid "Whether the extruders share a single heater rather than each extruder having its own heater." +msgstr "挤出器是否共用一个加热器,而不是每个挤出器都有自己的加热器。" + +msgctxt "machine_extruders_share_nozzle description" +msgid "Whether the extruders share a single nozzle rather than each extruder having its own nozzle. When set to true, it is expected that the printer-start gcode script properly sets up all extruders in an initial retraction state that is known and mutually compatible (either zero or one filament not retracted); in that case the initial retraction status is described, per extruder, by the 'machine_extruders_shared_nozzle_initial_retraction' parameter." +msgstr "挤出器是否共用一个喷嘴,而不是每个挤出器都有自己的喷嘴。当设置为 true 时,预计打印机启动 gcode 脚本会将所有挤出器正确设置为已知且相互兼容的初始缩回状态 (零根或一根细丝未缩回);在这种情况下,会通过“machine_extruders_shared_nozzle_initial_retraction”参数描述每个挤出器的初始缩回状态。" + +msgctxt "machine_heated_bed description" +msgid "Whether the machine has a heated build plate present." +msgstr "机器是否有加热打印平台。" + +msgctxt "machine_heated_build_volume description" +msgid "Whether the machine is able to stabilize the build volume temperature." +msgstr "机器是否能够稳定构建体积温度。" + +msgctxt "center_object description" +msgid "Whether to center the object on the middle of the build platform (0,0), instead of using the coordinate system in which the object was saved." +msgstr "是否将模型放置在打印平台中心 (0,0),而不是使用模型在其中保存的坐标系统。" + +msgctxt "machine_nozzle_temp_enabled description" +msgid "Whether to control temperature from Cura. Turn this off to control nozzle temperature from outside of Cura." +msgstr "是否从 Cura 控制温度。 关闭此选项,从 Cura 外部控制喷嘴温度。" + +msgctxt "material_bed_temp_prepend description" +msgid "Whether to include build plate temperature commands at the start of the gcode. When the start_gcode already contains build plate temperature commands Cura frontend will automatically disable this setting." +msgstr "是否需要在 G-code 开始部分包含检查热床温度的命令。当 start_gcode 包含热床温度命令时,Cura 前端将自动禁用此设置。" + +msgctxt "material_print_temp_prepend description" +msgid "Whether to include nozzle temperature commands at the start of the gcode. When the start_gcode already contains nozzle temperature commands Cura frontend will automatically disable this setting." +msgstr "是否在 gcode 开始部分包含喷嘴温度命令。 当 start_gcode 已包含喷嘴温度命令时,Cura 前端将自动禁用此设置。" + +msgctxt "clean_between_layers description" +msgid "Whether to include nozzle wipe G-Code between layers (maximum 1 per layer). Enabling this setting could influence behavior of retract at layer change. Please use Wipe Retraction settings to control retraction at layers where the wipe script will be working." +msgstr "是否包括图层切换后擦拭喷嘴的 G-Code(每层最多 1 个)。启用此设置可能会影响图层变化时的回抽。请使用“擦拭回抽”设置来控制擦拭脚本将在其中工作的图层回抽。" + +msgctxt "material_bed_temp_wait description" +msgid "Whether to insert a command to wait until the build plate temperature is reached at the start." +msgstr "是否插入一条命令,等待开始时达到打印平台温度。" + +msgctxt "prime_blob_enable description" +msgid "Whether to prime the filament with a blob before printing. Turning this setting on will ensure that the extruder will have material ready at the nozzle before printing. Printing Brim or Skirt can act like priming too, in which case turning this setting off saves some time." +msgstr "打印前是否装填有光点的耗材。 开启此设置将确保打印前挤出机的喷嘴处已准备好材料。 打印 Brim 或 Skirt 也可作为装填用途,这种情况下关闭此设置可以节省时间。" + +msgctxt "print_sequence description" +msgid "Whether to print all models one layer at a time or to wait for one model to finish, before moving on to the next. One at a time mode is possible if a) only one extruder is enabled and b) all models are separated in such a way that the whole print head can move in between and all models are lower than the distance between the nozzle and the X/Y axes." +msgstr "是要一次一层地打印所有模型,还是要等待打印完一个模型后再继续打印下一个。如果 a) 仅启用了一个挤出器,并且 b) 分离所有模型的方式使得整个打印头可在这些模型间移动,并且所有模型都低于喷嘴与 X/Y 轴之间的距离,则可使用排队打印模式。" + +msgctxt "machine_show_variants description" +msgid "Whether to show the different variants of this machine, which are described in separate json files." +msgstr "这台打印机是否需要显示它在不同的 JSON 文件中所描述的不同变化。" + +msgctxt "machine_firmware_retract description" +msgid "Whether to use firmware retract commands (G10/G11) instead of using the E property in G1 commands to retract the material." +msgstr "是否使用固件收回命令 (G10/G11) 而不是使用 G1 命令中的 E 属性来收回材料。" + +msgctxt "material_print_temp_wait description" +msgid "Whether to wait until the nozzle temperature is reached at the start." +msgstr "是否等待开始时达到喷嘴温度。" + +msgctxt "infill_line_width description" +msgid "Width of a single infill line." +msgstr "单一填充走线宽度。" + +msgctxt "support_interface_line_width description" +msgid "Width of a single line of support roof or floor." +msgstr "支撑顶板或底板单一走线宽度。" + +msgctxt "roofing_line_width description" +msgid "Width of a single line of the areas at the top of the print." +msgstr "打印顶部区域单一走线宽度。" + +msgctxt "line_width description" +msgid "Width of a single line. Generally, the width of each line should correspond to the width of the nozzle. However, slightly reducing this value could produce better prints." +msgstr "单一走线宽度。 一般而言,每条走线的宽度应与喷嘴的宽度对应。 但是,稍微降低此值可以产生更好的打印成果。" + +msgctxt "prime_tower_line_width description" +msgid "Width of a single prime tower line." +msgstr "单一装填走线宽度。" + +msgctxt "skirt_brim_line_width description" +msgid "Width of a single skirt or brim line." +msgstr "单一 skirt(裙摆)或 brim(边缘)走线宽度。" + +msgctxt "support_bottom_line_width description" +msgid "Width of a single support floor line." +msgstr "单一支撑底板走线宽度。" + +msgctxt "support_roof_line_width description" +msgid "Width of a single support roof line." +msgstr "单一支撑顶板走线宽度。" + +msgctxt "support_line_width description" +msgid "Width of a single support structure line." +msgstr "单一支撑结构走线宽度。" + +msgctxt "skin_line_width description" +msgid "Width of a single top/bottom line." +msgstr "单一顶层/底层走线宽度。" + +msgctxt "wall_line_width_x description" +msgid "Width of a single wall line for all wall lines except the outermost one." +msgstr "适用于所有壁线(最外壁线除外)的单一壁线宽度。" + +msgctxt "wall_line_width description" +msgid "Width of a single wall line." +msgstr "单一壁线宽度。" + +msgctxt "raft_base_line_width description" +msgid "Width of the lines in the base raft layer. These should be thick lines to assist in build plate adhesion." +msgstr "基础 Raft 层的走线宽度。 这些走线应该是粗线,以便协助打印平台附着。" + +msgctxt "raft_interface_line_width description" +msgid "Width of the lines in the middle raft layer. Making the second layer extrude more causes the lines to stick to the build plate." +msgstr "中间 Raft 层的走线宽度。 让第二层挤出更多会导致走线粘着在打印平台上。" + +msgctxt "raft_surface_line_width description" +msgid "Width of the lines in the top surface of the raft. These can be thin lines so that the top of the raft becomes smooth." +msgstr "Raft 顶部表面的走线宽度。 这些走线可以是细线,以便实现平滑的 Raft 顶部。" + +msgctxt "wall_line_width_0 description" +msgid "Width of the outermost wall line. By lowering this value, higher levels of detail can be printed." +msgstr "最外壁线宽度。 降低此值,可打印出更高水平的细节。" + +msgctxt "min_bead_width description" +msgid "Width of the wall that will replace thin features (according to the Minimum Feature Size) of the model. If the Minimum Wall Line Width is thinner than the thickness of the feature, the wall will become as thick as the feature itself." +msgstr "用于替换模型薄特征(根据最小特征尺寸)的壁的宽度。如果最小壁走线宽度比特征的厚度要薄,则壁将与特征本身一样厚。" + +msgctxt "wipe_brush_pos_x label" +msgid "Wipe Brush X Position" +msgstr "擦拭刷 X 轴坐标" + +msgctxt "wipe_hop_speed label" +msgid "Wipe Hop Speed" +msgstr "擦拭抬升速度" + +msgctxt "prime_tower_wipe_enabled label" +msgid "Wipe Inactive Nozzle on Prime Tower" +msgstr "擦拭装填塔上的不活动喷嘴" + +msgctxt "wipe_move_distance label" +msgid "Wipe Move Distance" +msgstr "擦拭移动距离" + +msgctxt "clean_between_layers label" +msgid "Wipe Nozzle Between Layers" +msgstr "图层切换后擦拭喷嘴" + +msgctxt "wipe_pause label" +msgid "Wipe Pause" +msgstr "擦拭暂停" + +msgctxt "wipe_repeat_count label" +msgid "Wipe Repeat Count" +msgstr "擦拭重复计数" + +msgctxt "wipe_retraction_amount label" +msgid "Wipe Retraction Distance" +msgstr "擦拭回抽距离" + +msgctxt "wipe_retraction_enable label" +msgid "Wipe Retraction Enable" +msgstr "启用擦拭回抽" + +msgctxt "wipe_retraction_extra_prime_amount label" +msgid "Wipe Retraction Extra Prime Amount" +msgstr "擦拭回抽额外装填量" + +msgctxt "wipe_retraction_prime_speed label" +msgid "Wipe Retraction Prime Speed" +msgstr "擦拭回抽装填速度" + +msgctxt "wipe_retraction_retract_speed label" +msgid "Wipe Retraction Retract Speed" +msgstr "擦拭回抽期间的回抽速度" + +msgctxt "wipe_retraction_speed label" +msgid "Wipe Retraction Speed" +msgstr "擦拭回抽速度" + +msgctxt "wipe_hop_enable label" +msgid "Wipe Z Hop" +msgstr "擦拭 Z 抬升" + +msgctxt "wipe_hop_amount label" +msgid "Wipe Z Hop Height" +msgstr "擦拭 Z 抬升高度" + +msgctxt "retraction_combing option infill" +msgid "Within Infill" +msgstr "在填充物内" + +msgctxt "machine_always_write_active_tool description" +msgid "Write active tool after sending temp commands to inactive tool. Required for Dual Extruder printing with Smoothie or other firmware with modal tool commands." +msgstr "将临时命令发送到非活动工具后写入活动工具。用 Smoothie 或其他具有模态工具命令的固件进行的双挤出器打印需要此项。" + +msgctxt "machine_endstop_positive_direction_x label" +msgid "X Endstop in Positive Direction" +msgstr "正向 X 限位开关" + +msgctxt "wipe_brush_pos_x description" +msgid "X location where wipe script will start." +msgstr "擦拭开始处的 X 轴坐标。" + +msgctxt "support_xy_overrides_z option xy_overrides_z" +msgid "X/Y overrides Z" +msgstr "X/Y 覆盖 Z" + +msgctxt "machine_endstop_positive_direction_y label" +msgid "Y Endstop in Positive Direction" +msgstr "正向 Y 限位开关" + +msgctxt "machine_endstop_positive_direction_z label" +msgid "Z Endstop in Positive Direction" +msgstr "正向 Z 限位开关" + +msgctxt "retraction_hop_after_extruder_switch label" +msgid "Z Hop After Extruder Switch" +msgstr "挤出机切换后的 Z 抬升" + +msgctxt "retraction_hop_after_extruder_switch_height label" +msgid "Z Hop After Extruder Switch Height" +msgstr "挤出机切换后的 Z 抬升高度" + +msgctxt "retraction_hop label" +msgid "Z Hop Height" +msgstr "Z 抬升高度" + +msgctxt "retraction_hop_only_when_collides label" +msgid "Z Hop Only Over Printed Parts" +msgstr "仅在已打印部分上 Z 抬升" + +msgctxt "speed_z_hop label" +msgid "Z Hop Speed" +msgstr "Z 抬升速度" + +msgctxt "retraction_hop_enabled label" +msgid "Z Hop When Retracted" +msgstr "回抽时 Z 抬升" + +msgctxt "z_seam_type label" +msgid "Z Seam Alignment" +msgstr "Z 缝对齐" + +msgctxt "z_seam_position label" +msgid "Z Seam Position" +msgstr "Z 缝位置" + +msgctxt "z_seam_relative label" +msgid "Z Seam Relative" +msgstr "Z 缝相对" + +msgctxt "z_seam_x label" +msgid "Z Seam X" +msgstr "Z 缝 X" + +msgctxt "z_seam_y label" +msgid "Z Seam Y" +msgstr "Z 缝 Y" + +msgctxt "support_xy_overrides_z option z_overrides_xy" +msgid "Z overrides X/Y" +msgstr "Z 覆盖 X/Y" + +msgctxt "infill_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +msgctxt "ironing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +msgctxt "roofing_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +msgctxt "support_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +msgctxt "support_interface_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +msgctxt "support_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" + +msgctxt "support_roof_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +msgctxt "top_bottom_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +msgctxt "top_bottom_pattern_0 option zigzag" +msgid "Zig Zag" +msgstr "锯齿状" + +msgctxt "travel description" +msgid "travel" +msgstr "空驶" + +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "是否在喷嘴切换期间启动冷却风扇。这可以通过更快地冷却喷嘴来帮助减少滴漏:
    • 不变:保持风扇原状
    • 仅最后一个挤出机: 启动最后一个使用的挤出机的风扇,但关闭其他风扇(如果有)。如果您有完全独立的挤出机,这非常有用。
    • 所有风扇: 在喷嘴开关期间打开所有风扇。如果您有一个单独的冷却风扇或多个彼此靠近的风扇,这非常有用。
    " + +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "所有风扇" + +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "挤出机切换期间的冷却" + +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "管理支撑结构的 z 形接缝与实际 3D 模型之间的空间关系。这个控制非常关键,因为它允许用户在打印后确保无缝去除支撑结构,而不会对打印模型造成损坏或留下痕迹。" + +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "模型的最小 Z 形接缝距离" + +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "支撑初始层填充的倍数。增加这个值可能有助于床附着力。" + +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "仅最后一台挤出机" + +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "将 z 形接缝放置在多边形顶点上。关闭此功能也可以在顶点之间放置接缝。(请注意,这不会覆盖在未支撑悬垂上放置接缝的限制。)" + +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "引导塔最小外壳厚度" + +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "筏底流量" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "筏底填充重叠" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "筏底填充重叠百分比" + +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "木筏流量" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "筏板界面层流量" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "筏板界面层填充重叠" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "筏板界面层填充重叠百分比" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "筏板界面层 Z 偏移" + +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "木筏表面流量" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "木筏表面填充重叠" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "木筏表面填充重叠百分比" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "木筏表面 Z 偏移" + +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "接缝悬垂墙角度" + +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "支持填充密度乘数初始层" + +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "支持远离模型的 Z 形接缝" + +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "相对于正常挤出线,在筏底打印过程中挤出的材料量。增加流量可能会改善附着力和木筏结构强度。" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "相对于正常挤出线,在筏板界面打印期间挤出的材料量。增加流量可能会改善附着力和木筏结构强度。" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "相对于正常挤出线,木筏打印过程中挤出的材料量。增加流量可能会改善附着力和木筏结构强度。" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "相对于正常挤出线,在木筏表面打印期间挤出的材料量。增加流量可能会改善附着力和木筏结构强度。" + +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物与筏底墙壁之间的重叠量,以填充线宽度的百分比表示。轻微重叠可以使墙壁牢固地连接到填充物上。" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物与筏底壁之间的重叠量。轻微重叠可以使墙壁牢固地连接到填充物上。" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充与筏板界面墙壁之间的重叠量,以填充线宽度的百分比表示。轻微重叠可以使墙壁牢固地连接到填充物上。" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物与筏板界面的墙壁之间的重叠量。轻微重叠可以使墙壁牢固地连接到填充物上。" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充与木筏表面壁之间的重叠量,以填充线宽度的百分比表示。轻微重叠可以使墙壁牢固地连接到填充物上。" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "填充物与木筏表面的墙壁之间的重叠量。轻微重叠可以使墙壁牢固地连接到填充物上。" + +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "模型与其支撑结构在z 轴接缝处的距离。" + +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "引导塔壳的最小厚度。您可以增加它以使引导塔更坚固。" + +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "应尽量避免墙壁上的接缝伸出超过此角度。当数值为 90 时,没有墙壁将被视为悬垂。" + +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "不变" + +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "打印第一层的筏板界面时,通过这个偏移来自定义筏底和筏板界面之间的附着力。负偏移量应该可以提高附着力。" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "打印第一层木筏表面时,通过这个偏移来自定义筏底和筏板界面之间的附着力。负偏移量应该可以提高附着力。" + +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "顶点上的 Z 形接缝" + +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "在填充模式中添加额外的线条以支撑上面的表皮。这一选项可以防止因下面的填充未能正确支撑上面打印的表皮层而导致的孔洞或塑料块,这在复杂形状的表皮中常见。\"墙\"仅支持表皮的轮廓,而\"墙和线\"还支持构成表皮的线条之末端。" + +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "在高度处的风扇速度" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "在层上的风扇速度" + +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "构建体积风扇编号" + +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "确定在沿着缝合接缝挤出时流量变化中每一步的长度。较小的距离会导致更精确但也更复杂的 G-code。" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "确定缝合接缝的长度,这是一种应使 Z 接缝不那么明显的接缝类型。必须大于 0 才能有效。" + +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "渐变流量变化中每个步骤的持续时间" + +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "启用渐变流量变化。启用之后,流量将会逐渐增加/减少到目标流量。这对于带有波登管的打印机非常有用,因为当挤出机电机启动/停止时,流量并不会立即改变。" + +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "额外填充线以支撑表皮" + +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "对于任何长于此值的移动,材料流量将被重置为路径的目标流量" + +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "渐变流量离散化步长" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "启用渐变流量" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "渐变流量最大加速度" + +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "初始层最大流量加速" + +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "渐变流量变化的最大加速度" + +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "第一层渐变流量变化的最小速度" + +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "无" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Acceleration" +msgstr "外墙加速" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall Deceleration" +msgstr "外墙减速" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "外墙结束速度比率" + +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "外墙速度分割距离" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "外墙起始速度比率" + +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "重置流量持续时间" + +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "缝合接缝长度" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "缝合接缝起始高度" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "缝合接缝步长" + +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "风扇在常规风速下旋转的高度。在下面的层中,风扇速度会逐渐从初始风速增加到常规风速。" + +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "构建风扇以全速旋转的层数。此值经过计算并四舍五入为整数。" + +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "冷却构建体积的风扇编号。如果设置为 0,则表示没有构建体积风扇" + +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "缝合接缝开始的层高比率。较低的数字将导致更大的缝合高度。必须低于 100 才能有效。" + +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "这是打印外墙时达到最高速度的加速度。" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "这是结束打印外墙时的减速度。" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "这是在拆分更长路径以应用外墙加速/减速时挤出路径的最大长度。较小的距离将创建更精确但也更冗长的 G-Code。" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "这是打印外墙时在结束时的最高速度比率。" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "这是打印外墙时在开始时的最高速度比率。" + +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "仅墙体" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "墙体和线条" + +msgctxt "wall_overhang_angle description" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "超过此角度的悬垂墙将使用悬垂墙设置打印。当值为 90 时,没有墙会被视为悬垂。得到支撑的悬垂也不会被视为悬垂。此外,任何少于一半悬垂的线也不会被视为悬垂。" + +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "底部表面皮肤层使用线条或锯齿图案时使用的整数线条方向列表。随着层数的增加,列表中的元素按顺序使用,当到达列表末尾时,从头开始。列表项用逗号分隔,整个列表用方括号括起来。默认值为空列表,表示使用传统的默认角度(45度和135度)。" + +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "底部表面内壁加速度" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "底部表面内壁急动度" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "底部表面内壁速度" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "底部表面内壁流量" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "底部表面外壁加速度" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "底部表面外壁流量" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "底部表面外壁急动度" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "底部表面外壁速度" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "底部表面皮肤加速度" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "底部表面皮肤挤出机" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "底部表面皮肤流量" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "底部表面皮肤急动度" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "底部表面皮肤层数" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "底部表面皮肤线条方向" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "底部表面皮肤线条宽度" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "底部表面皮肤图案" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "底部表面皮肤速度" + +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "同心" + +msgctxt "variant_name" +msgid "Extruder" +msgstr "挤出机" + +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "底部表面壁线的流量补偿(除最外层外的所有壁线)。" + +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "打印底部区域线条的流量补偿" + +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "打印底部表面最外层壁线的流量补偿" + +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "Griffin+Cheetah" + +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "内部移动避让距离" + +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "线条" + +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "带悬垂的最小层时间" + +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "最小悬垂段长度" + +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "单调底部表面顺序" + +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "外壁结束减速" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "外壁起始加速度" + +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "悬垂壁速度" + +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "悬垂壁将以正常打印速度的百分比进行打印。您可以指定多个值,以便更悬垂的壁以更慢的速度打印,例如通过设置[75, 50, 25]。" + +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "压力推进因子" + +msgctxt "variant_name" +msgid "Print Core" +msgstr "打印核心" + +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "以单方向重叠相邻线条的顺序打印底部表面线条。这需要稍长的打印时间,但可以使平坦表面看起来更加一致。" + +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "启动G代码必须放在首位" + +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "打印底部表面皮肤层的加速度" + +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "打印底部表面内壁的加速度" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "打印底部表面最外层壁的加速度" + +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "用于在\"一次打印一个\"时确定\"安全模型距离\"的打印头尺寸。这些数字与第一个挤出机喷嘴的中心线相关。喷嘴左侧为\"X最小值\",必须为负数。喷嘴后方为\"Y最小值\",必须为负数。X最大值(右侧)和Y最大值(前方)为正数。龙门高度是从构建板到X龙门梁的尺寸。" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "喷嘴与已打印外壁之间的内部移动距离" + +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "用于打印最底部皮肤的挤出机轨道。这用于多挤出机设置。" + +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "打印底部表面皮肤层的最大瞬时速度变化" + +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "打印底部表面内壁的最大瞬时速度变化" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "打印底部表面最外层壁的最大瞬时速度变化" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "包含悬垂挤出的层的最小时间。这迫使打印机减速,至少在此处设置的时间内完成一层打印。这允许打印材料在打印下一层之前适当冷却。如果\"提升打印头\"被禁用且最小速度未被违反,则层可能仍然比最小层时间短。" + +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "最底部皮肤层的数量。通常只需一层最底部皮肤即可生成更高质量的底部表面。" + +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "最底部层的图案" + +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "打印底部表面皮肤层的速度" + +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "打印底部表面内壁的速度" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "打印底部表面最外层壁的速度" + +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "此设置控制启动G代码是否始终强制为第一个G代码。如果没有此选项,其他G代码(如T0)可能会插入到启动G代码之前。" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "压力推进的调整因子,旨在将挤出与运动同步" + +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "当尝试应用特定于悬垂层的最小层时间时,仅当至少一个连续的悬垂挤出移动长度超过此值时才会应用。" + +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "打印底部区域的单线宽度" + +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "锯齿形" diff --git a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po b/resources/i18n/zh_CN/gradual_flow_settings.def.json.po deleted file mode 100644 index fa2197b3a1..0000000000 --- a/resources/i18n/zh_CN/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,53 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: zh_CN\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" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "启用渐变流量" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "启用渐变流量变化。启用之后,流量将会逐渐增加/减少到目标流量。这对于带有波登管的打印机非常有用,因为当挤出机电机启动/停止时,流量并不会立即改变。" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "渐变流量最大加速度" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "渐变流量变化的最大加速度" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "初始层最大流量加速" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "第一层渐变流量变化的最小速度" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "渐变流量离散化步长" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "渐变流量变化中每个步骤的持续时间" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "重置流量持续时间" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "对于任何长于此值的移动,材料流量将被重置为路径的目标流量" diff --git a/resources/i18n/zh_TW/cura.po b/resources/i18n/zh_TW/cura.po index 241a1f1f5d..fe5dd8e5c8 100644 --- a/resources/i18n/zh_TW/cura.po +++ b/resources/i18n/zh_TW/cura.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-03-13 09:02+0100\n" +"POT-Creation-Date: 2025-02-21 15:37+0100\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -18,6 +18,10 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Poedit 3.0\n" +msgctxt "@title:label" +msgid " " +msgstr "" + #, python-format msgctxt "@info 'width', 'depth' and 'height' are variable names that must NOT be translated; just translate the format of ##x##x## mm." msgid "%(width).1f x %(depth).1f x %(height).1f mm" @@ -175,6 +179,10 @@ msgctxt "@info:tooltip" msgid "3D View" msgstr "立體圖" +msgctxt "name" +msgid "3DConnexion mouses" +msgstr "" + msgctxt "@item:inlistbox" msgid "3MF File" msgstr "3MF 檔案" @@ -470,6 +478,10 @@ msgctxt "description" msgid "Allows loading and displaying G-code files." msgstr "允許載入和顯示 G-code 檔案。" +msgctxt "description" +msgid "Allows working with 3D mouses inside Cura." +msgstr "" + msgctxt "@option:discardOrKeep" msgid "Always ask me this" msgstr "總是詢問" @@ -510,10 +522,6 @@ msgctxt "@option:radio" msgid "Anonymous crash reports" msgstr "" -msgctxt "@label Description for application component" -msgid "Application framework" -msgstr "應用框架" - msgctxt "@title:column" msgid "Applies on" msgstr "" @@ -692,10 +700,6 @@ msgctxt "@label Is followed by the name of an author" msgid "By" msgstr "" -msgctxt "@label Description for application dependency" -msgid "C/C++ Binding library" -msgstr "C / C++ 綁定庫" - msgctxt "@item:inlistbox" msgid "COLLADA Digital Asset Exchange" msgstr "COLLADA Digital Asset Exchange" @@ -859,6 +863,10 @@ msgctxt "@label" msgid "Color scheme" msgstr "顏色方案" +msgctxt "@label" +msgid "Combination not recommended. Load BB core to slot 1 (left) for better reliability." +msgstr "" + msgctxt "@info" msgid "Compare and save." msgstr "" @@ -867,10 +875,6 @@ msgctxt "@label" msgid "Compatibility Mode" msgstr "相容模式" -msgctxt "@label Description for application dependency" -msgid "Compatibility between Python 2 and 3" -msgstr "" - msgctxt "@title:label" msgid "Compatible Printers" msgstr "" @@ -1196,14 +1200,6 @@ msgctxt "name" msgid "CuraEngine Backend" msgstr "Cura 引擎後台" -msgctxt "description" -msgid "CuraEngine plugin for gradually smoothing the flow to limit high-flow jumps" -msgstr "" - -msgctxt "name" -msgid "CuraEngineGradualFlow" -msgstr "" - msgctxt "@label" msgid "Currency:" msgstr "貨幣:" @@ -1264,10 +1260,6 @@ msgctxt "@info:title" msgid "Data Sent" msgstr "資料傳送" -msgctxt "@label Description for application dependency" -msgid "Data interchange format" -msgstr "資料交換格式" - msgctxt "@button" msgid "Decline" msgstr "拒絕" @@ -1328,10 +1320,6 @@ msgctxt "@label" msgid "Density" msgstr "密度" -msgctxt "@label Description for development tool" -msgid "Dependency and package manager" -msgstr "" - msgctxt "@action:label" msgid "Depth (mm)" msgstr "深度 (mm)" @@ -1554,6 +1542,10 @@ msgctxt "@title:window" msgid "Export Material" msgstr "匯出線材設定" +msgctxt "@action:inmenu menubar:help" +msgid "Export Package For Technical Support" +msgstr "" + msgctxt "@title:window" msgid "Export Profile" msgstr "匯出列印參數" @@ -1595,6 +1587,10 @@ msgctxt "@action:label" msgid "Extruder %1" msgstr "擠出機 %1" +msgctxt "@label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "@title:label" msgid "Extruder End G-code" msgstr "擠出機結束 G-code" @@ -1603,6 +1599,10 @@ msgctxt "@label" msgid "Extruder End G-code duration" msgstr "" +msgctxt "@title:label" +msgid "Extruder Prestart G-code" +msgstr "" + msgctxt "@title:label" msgid "Extruder Start G-code" msgstr "擠出機起始 G-code" @@ -1792,6 +1792,10 @@ msgctxt "@label" msgid "First available" msgstr "可用的第一個" +msgctxt "@option:check" +msgid "Flip model's toolhandle Y axis (restart required)" +msgstr "" + msgctxt "@label:listbox" msgid "Flow" msgstr "流動" @@ -1808,10 +1812,6 @@ msgctxt "@text" msgid "Following a few simple steps, you will be able to synchronize all your material profiles with your printers." msgstr "依照下述簡單的步驟。您將同步線材設定檔至您的印表機." -msgctxt "@label" -msgid "Font" -msgstr "字體" - msgctxt "@label" msgid "For every position; insert a piece of paper under the nozzle and adjust the print build plate height. The print build plate height is right when the paper is slightly gripped by the tip of the nozzle." msgstr "在噴頭停止的每一個位置下方插入一張紙,並調整平台高度。當紙張恰好被噴頭的尖端輕微壓住時,表示列印平台已被校準在正確的高度。" @@ -1867,10 +1867,6 @@ msgctxt "@label" msgid "G-code flavor" msgstr "G-code 類型" -msgctxt "@label Description for application component" -msgid "G-code generator" -msgstr "G-code 產生器" - msgctxt "@error:not supported" msgid "GCodeGzWriter does not support text mode." msgstr "G-code GZ 寫入器不支援非文字模式。" @@ -1883,14 +1879,6 @@ msgctxt "@item:inlistbox" msgid "GIF Image" msgstr "GIF 圖片" -msgctxt "@label Description for application dependency" -msgid "GUI framework" -msgstr "GUI 框架" - -msgctxt "@label Description for application dependency" -msgid "GUI framework bindings" -msgstr "GUI 框架綁定" - msgctxt "@label" msgid "Gantry Height" msgstr "吊車高度" @@ -1903,10 +1891,6 @@ msgctxt "@label" msgid "Generate structures to support parts of the model which have overhangs. Without these structures, these parts would collapse during printing." msgstr "在模型的突出部分產生支撐結構。若不這樣做,這些部分在列印時將倒塌。" -msgctxt "@label Description for development tool" -msgid "Generating Windows installers" -msgstr "" - msgctxt "@label:category menu label" msgid "Generic" msgstr "通用" @@ -1927,10 +1911,6 @@ msgctxt "@title:tab" msgid "Global Settings" msgstr "全局設定" -msgctxt "@label Description for application component" -msgid "Graphical user interface" -msgstr "圖形用戶介面" - msgctxt "@label" msgid "Grid Placement" msgstr "" @@ -2176,10 +2156,6 @@ msgctxt "@label" msgid "Interface" msgstr "介面" -msgctxt "@label Description for application component" -msgid "Interprocess communication library" -msgstr "進程間通訊交互使用庫" - msgctxt "@title:window" msgid "Invalid IP address" msgstr "無效的 IP 位址" @@ -2208,10 +2184,6 @@ msgctxt "@item:inlistbox" msgid "JPG Image" msgstr "JPG 圖片" -msgctxt "@label Description for application dependency" -msgid "JSON parser" -msgstr "" - msgctxt "@label" msgid "Job Name" msgstr "作業名稱" @@ -2313,6 +2285,10 @@ msgctxt "@action" msgid "Level build plate" msgstr "調整列印平台水平" +msgctxt "@title:window The argument is a package name, and the second is the version." +msgid "License for %1 %2" +msgstr "" + msgctxt "@item:inlistbox" msgid "Lighter is higher" msgstr "顏色越淺高度越高" @@ -2329,10 +2305,6 @@ msgctxt "@item:inlistbox" msgid "Linear" msgstr "線性" -msgctxt "@label Description for development tool" -msgid "Linux cross-distribution application deployment" -msgstr "Linux cross-distribution 應用程式部署" - msgctxt "@label" msgid "Load %3 as material %1 (This cannot be overridden)." msgstr "將 %3 做為線材 %1 載入(無法覆寫)。" @@ -2421,6 +2393,14 @@ msgctxt "name" msgid "Makerbot Printfile Writer" msgstr "" +msgctxt "@item:inlistbox" +msgid "Makerbot Replicator+ Printfile" +msgstr "" + +msgctxt "@item:inlistbox" +msgid "Makerbot Sketch Printfile" +msgstr "" + msgctxt "@error" msgid "MakerbotWriter could not save to the designated path." msgstr "" @@ -2995,10 +2975,6 @@ msgctxt "@header" msgid "Package details" msgstr "" -msgctxt "@label Description for development tool" -msgid "Packaging Python-applications" -msgstr "" - msgctxt "@info:status" msgid "Parsing G-code" msgstr "正在解析 G-code" @@ -3158,14 +3134,6 @@ msgctxt "@button" msgid "Plugins" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Polygon clipping library" -msgstr "多邊形剪輯函式庫" - -msgctxt "@label Description for application component" -msgid "Polygon packing library, developed by Prusa Research" -msgstr "多邊形包裝函式庫,由 Prusa Research 開發" - msgctxt "@item:inmenu" msgid "Post Processing" msgstr "後處理" @@ -3437,10 +3405,6 @@ msgctxt "@label" msgid "Profiles compatible with active printer:" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Programming language" -msgstr "編程語言" - #, python-brace-format msgctxt "@info:status Don't translate the XML tags or !" msgid "Project file {0} contains an unknown machine type {1}. Cannot import the machine. Models will be imported instead." @@ -3569,18 +3533,6 @@ msgctxt "@label" msgid "PyQt version" msgstr "PyQt 版本" -msgctxt "@Label Description for application dependency" -msgid "Python Error tracking library" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Python bindings for Clipper" -msgstr "" - -msgctxt "@label Description for application component" -msgid "Python bindings for libnest2d" -msgstr "" - msgctxt "@label" msgid "Qt version" msgstr "Qt 版本" @@ -3762,10 +3714,6 @@ msgctxt "@info:tooltip" msgid "Right View" msgstr "右視圖" -msgctxt "@label Description for application dependency" -msgid "Root Certificates for validating SSL trustworthiness" -msgstr "" - msgctxt "@info:title" msgid "Safely Remove Hardware" msgstr "安全移除硬體" @@ -3857,6 +3805,10 @@ msgctxt "@placeholder" msgid "Search" msgstr "" +msgctxt "@label:textbox" +msgid "Search Printer" +msgstr "" + msgctxt "@info" msgid "Search in the browser" msgstr "" @@ -3949,10 +3901,6 @@ msgctxt "name" msgid "Sentry Logger" msgstr "哨兵記錄器" -msgctxt "@label Description for application dependency" -msgid "Serial communication library" -msgstr "串口通訊函式庫" - msgctxt "@action:inmenu" msgid "Set as Active Extruder" msgstr "設為主要擠出機" @@ -4061,6 +4009,10 @@ msgctxt "@info:tooltip" msgid "Should slicing crashes be automatically reported to Ultimaker? Note, no models, IP addresses or other personally identifiable information is sent or stored, unless you give explicit permission." msgstr "" +msgctxt "@info:tooltip" +msgid "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before." +msgstr "" + msgctxt "@info:tooltip" msgid "Should the build plate be cleared before loading a new model in the single instance of Cura?" msgstr "需要再載入新模型前清空視窗內之列印平台嗎?" @@ -4089,10 +4041,6 @@ msgctxt "@action:inmenu menubar:help" msgid "Show Online &Documentation" msgstr "顯示線上說明文件(&D)" -msgctxt "@action:inmenu" -msgid "Show Online Troubleshooting" -msgstr "" - msgctxt "@label:checkbox" msgid "Show all" msgstr "顯示全部" @@ -4301,6 +4249,10 @@ msgctxt "@title:label" msgid "Start G-code" msgstr "起始 G-code" +msgctxt "@label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "@label" msgid "Start the slicing process" msgstr "開始切片程序" @@ -4382,34 +4334,6 @@ msgctxt "@action:label" msgid "Support Type" msgstr "" -msgctxt "@label Description for application dependency" -msgid "Support library for faster math" -msgstr "高速運算函式庫" - -msgctxt "@label Description for application component" -msgid "Support library for file metadata and streaming" -msgstr "用於檔案 metadata 和串流的函式庫" - -msgctxt "@label Description for application component" -msgid "Support library for handling 3MF files" -msgstr "用於處理 3MF 檔案的函式庫" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling STL files" -msgstr "用於處理 STL 檔案的函式庫" - -msgctxt "@label Description for application dependency" -msgid "Support library for handling triangular meshes" -msgstr "用於處理三角形網格的函式庫" - -msgctxt "@label Description for application dependency" -msgid "Support library for scientific computing" -msgstr "科學計算函式庫" - -msgctxt "@label Description for application dependency" -msgid "Support library for system keyring access" -msgstr "存取系統金鑰函式庫" - msgctxt "@action:button" msgid "Sync" msgstr "同步" @@ -4724,8 +4648,12 @@ msgctxt "@label" msgid "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile." msgstr "由於無法識別 %1,因此無法使用此設定。 請連上 %2 下載正確的線材參數設定。" +msgctxt "@label" +msgid "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices." +msgstr "" + msgctxt "@text:window" -msgid "This is a Cura Universal project file. Would you like to open it as a Cura project or Cura Universal Project or import the models from it?" +msgid "This is a Cura Universal project file. Would you like to open it as a Cura Universal Project or import the models from it?" msgstr "" msgctxt "@text:window" @@ -5017,6 +4945,14 @@ msgctxt "@text" msgid "Unable to read example data file." msgstr "無法讀取範例資料檔案." +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try again, or contact support." +msgstr "" + +msgctxt "@info:status" +msgid "Unable to send the model data to the engine. Please try to use a less detailed model, or reduce the number of instances." +msgstr "" + msgctxt "@info:title" msgid "Unable to slice" msgstr "無法切片" @@ -5085,10 +5021,6 @@ msgctxt "@action:description Don't translate 'Universal Cura Project'" msgid "Universal Cura Project files can be printed on different 3D printers while retaining positional data and selected settings. When exported, all models present on the build plate will be included along with their current position, orientation, and scale. You can also select which per-extruder or per-model settings should be included to ensure proper printing." msgstr "" -msgctxt "@label Description for development tool" -msgid "Universal build system configuration" -msgstr "" - msgctxt "@label" msgid "Unknown" msgstr "未知" @@ -5278,6 +5210,14 @@ msgctxt "description" msgid "Upgrades configurations from Cura 5.6 to Cura 5.7." msgstr "" +msgctxt "description" +msgid "Upgrades configurations from Cura 5.8 to Cura 5.9." +msgstr "" + +msgctxt "description" +msgid "Upgrades configurations from Cura 5.9 to Cura 5.10" +msgstr "" + msgctxt "@action:button" msgid "Upload custom Firmware" msgstr "上傳自訂韌體" @@ -5302,14 +5242,6 @@ msgctxt "@label" msgid "User Agreement" msgstr "使用者授權" -msgctxt "@label Description for application dependency" -msgid "Utility functions, including an image loader" -msgstr "" - -msgctxt "@label Description for application dependency" -msgid "Utility library, including Voronoi generation" -msgstr "" - msgctxt "@title:column" msgid "Value" msgstr "" @@ -5422,6 +5354,14 @@ msgctxt "name" msgid "Version Upgrade 5.6 to 5.7" msgstr "" +msgctxt "name" +msgid "Version Upgrade 5.8 to 5.9" +msgstr "" + +msgctxt "name" +msgid "Version Upgrade 5.9 to 5.10" +msgstr "" + msgctxt "@button" msgid "View printers in Digital Factory" msgstr "" @@ -5584,12 +5524,12 @@ msgid "Y (Depth)" msgstr "Y (深度)" msgctxt "@label" -msgid "Y max" -msgstr "Y 最大值" +msgid "Y max ( '+' towards front)" +msgstr "" msgctxt "@label" -msgid "Y min" -msgstr "Y 最小值" +msgid "Y min ( '-' towards back)" +msgstr "" msgctxt "@info" msgid "Yes" @@ -5677,10 +5617,6 @@ msgctxt "@label" msgid "Z (Height)" msgstr "Z (高度)" -msgctxt "@label Description for application dependency" -msgid "ZeroConf discovery library" -msgstr "ZeroConf 發現函式庫" - msgctxt "@action:button" msgid "Zoom toward mouse direction" msgstr "跟隨滑鼠方向縮放" @@ -6096,6 +6032,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Always use Fine quality" #~ msgstr "總是使用精細品質" +#~ msgctxt "@label Description for application component" +#~ msgid "Application framework" +#~ msgstr "應用框架" + #~ msgctxt "@label" #~ msgid "Are you sure you want to exit Cura?" #~ msgstr "你確定要結束 Cura 嗎?" @@ -6232,6 +6172,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "By default, white pixels represent high points on the mesh and black pixels represent low points on the mesh. Change this option to reverse the behavior such that black pixels represent high points on the mesh and white pixels represent low points on the mesh." #~ msgstr "預設情況下,白色像素表示網格上的高點,黑色像素表示網格上的低點。更改此選項將以相反方式呈現,黑色像素表示網格上的高點,白色像素表示網格上的低點。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "C/C++ Binding library" +#~ msgstr "C / C++ 綁定庫" + #~ msgctxt "@label" #~ msgid "COM service found" #~ msgstr "找到 COM 服務" @@ -6532,6 +6476,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Data collected by UltiMaker Cura will not contain any personal information." #~ msgstr "UltiMaker Cura 收集的資料不包含任何個人資訊。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Data interchange format" +#~ msgstr "資料交換格式" + #~ msgctxt "@info:status" #~ msgid "" #~ "Dear customer,\n" @@ -6882,6 +6830,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Flatten active settings" #~ msgstr "合併有效設定" +#~ msgctxt "@label" +#~ msgid "Font" +#~ msgstr "字體" + #~ msgctxt "@info:status" #~ msgid "" #~ "Found more than one part or assembly inside your drawing. We currently only support drawings with exactly one part or assembly inside.\n" @@ -6934,6 +6886,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "G-code commands to be executed at the very start." #~ msgstr "開始時最先執行的 G-code 命令。" +#~ msgctxt "@label Description for application component" +#~ msgid "G-code generator" +#~ msgstr "G-code 產生器" + #~ msgctxt "@item:inlistbox" #~ msgid "GCode File" #~ msgstr "GCode 檔案" @@ -6950,6 +6906,14 @@ msgstr "下載外掛 {} 失敗" #~ msgid "GCode generator" #~ msgstr "GCode 產生器" +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework" +#~ msgstr "GUI 框架" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "GUI framework bindings" +#~ msgstr "GUI 框架綁定" + #~ msgctxt "@label" #~ msgid "Gantry height" #~ msgstr "龍門高度" @@ -7026,6 +6990,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Gradual infill will gradually increase the amount of infill towards the top." #~ msgstr "漸近式填充將隨著列印高度的提升而逐漸加大填充密度。" +#~ msgctxt "@label Description for application component" +#~ msgid "Graphical user interface" +#~ msgstr "圖形用戶介面" + #~ msgctxt "@option:check" #~ msgid "Heated bed" #~ msgstr "熱床" @@ -7136,6 +7104,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Instructions:" #~ msgstr "操作說明:" +#~ msgctxt "@label Description for application component" +#~ msgid "Interprocess communication library" +#~ msgstr "進程間通訊交互使用庫" + #~ msgctxt "@action:button" #~ msgid "Keep" #~ msgstr "保留" @@ -7176,6 +7148,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Light (20%) infill will give your model an average strength." #~ msgstr "輕度(20%)填充將使列印模型處於中等強度。" +#~ msgctxt "@label Description for development tool" +#~ msgid "Linux cross-distribution application deployment" +#~ msgstr "Linux cross-distribution 應用程式部署" + #~ msgctxt "name" #~ msgid "Live scripting tool" #~ msgstr "即時描述檔工具" @@ -7396,6 +7372,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Nozzle Settings" #~ msgstr "噴頭設定" +#~ msgctxt "@label" +#~ msgid "Nozzle Size" +#~ msgstr "噴頭孔徑" + #~ msgctxt "@text" #~ msgid "Number of slices" #~ msgstr "切片次數" @@ -7558,6 +7538,14 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Plugins" #~ msgstr "外掛" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Polygon clipping library" +#~ msgstr "多邊形剪輯函式庫" + +#~ msgctxt "@label Description for application component" +#~ msgid "Polygon packing library, developed by Prusa Research" +#~ msgstr "多邊形包裝函式庫,由 Prusa Research 開發" + #~ msgctxt "@label" #~ msgid "Pre-sliced file {0}" #~ msgstr "預切片檔案 {0}" @@ -7786,6 +7774,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Profiles" #~ msgstr "參數" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Programming language" +#~ msgstr "編程語言" + #~ msgctxt "@label" #~ msgid "Protected profiles" #~ msgstr "受保護的列印參數" @@ -8008,6 +8000,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Sent {file_name} to group {cluster_name}." #~ msgstr "{file_name} 已傳送到群組 {cluster_name}。" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Serial communication library" +#~ msgstr "串口通訊函式庫" + #~ msgctxt "name" #~ msgid "Settings Guide" #~ msgstr "設定指南" @@ -8217,10 +8213,38 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Support library for analysis of complex networks" #~ msgstr "用於分析複雜網路的函式庫" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for faster math" +#~ msgstr "高速運算函式庫" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for file metadata and streaming" +#~ msgstr "用於檔案 metadata 和串流的函式庫" + +#~ msgctxt "@label Description for application component" +#~ msgid "Support library for handling 3MF files" +#~ msgstr "用於處理 3MF 檔案的函式庫" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling STL files" +#~ msgstr "用於處理 STL 檔案的函式庫" + #~ msgctxt "@label" #~ msgid "Support library for handling planar objects" #~ msgstr "用於處理平面物件的函式庫" +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for handling triangular meshes" +#~ msgstr "用於處理三角形網格的函式庫" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for scientific computing" +#~ msgstr "科學計算函式庫" + +#~ msgctxt "@label Description for application dependency" +#~ msgid "Support library for system keyring access" +#~ msgstr "存取系統金鑰函式庫" + #~ msgctxt "@action:button" #~ msgid "Sync materials with printers" #~ msgstr "列印機同步線材資料" @@ -8786,6 +8810,14 @@ msgstr "下載外掛 {} 失敗" #~ msgid "X3g File" #~ msgstr "X3g 檔案" +#~ msgctxt "@label" +#~ msgid "Y max" +#~ msgstr "Y 最大值" + +#~ msgctxt "@label" +#~ msgid "Y min" +#~ msgstr "Y 最小值" + #~ msgctxt "@label:extruder label" #~ msgid "Yes" #~ msgstr "是" @@ -8878,6 +8910,10 @@ msgstr "下載外掛 {} 失敗" #~ msgid "Your rating" #~ msgstr "你的評分" +#~ msgctxt "@label Description for application dependency" +#~ msgid "ZeroConf discovery library" +#~ msgstr "ZeroConf 發現函式庫" + #~ msgctxt "@info:tooltip" #~ msgid "Zooming towards the mouse is not supported in the orthogonal perspective." #~ msgstr "正交透視不支援游標縮放功能。" diff --git a/resources/i18n/zh_TW/fdmextruder.def.json.po b/resources/i18n/zh_TW/fdmextruder.def.json.po index 82d1aa5724..8d26588d1e 100644 --- a/resources/i18n/zh_TW/fdmextruder.def.json.po +++ b/resources/i18n/zh_TW/fdmextruder.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2022-01-02 19:59+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -41,6 +41,10 @@ msgctxt "extruder_nr label" msgid "Extruder" msgstr "擠出機" +msgctxt "machine_extruder_change_duration label" +msgid "Extruder Change duration" +msgstr "" + msgctxt "machine_extruder_end_code label" msgid "Extruder End G-Code" msgstr "擠出機結束 Gcode" @@ -61,6 +65,10 @@ msgctxt "machine_extruder_end_pos_y label" msgid "Extruder End Position Y" msgstr "擠出機終點位置 Y 座標" +msgctxt "machine_extruder_prestart_code label" +msgid "Extruder Prestart G-Code" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "擠出機 X 軸座標" @@ -129,6 +137,10 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "噴頭 ID" +msgctxt "machine_nozzle_head_distance label" +msgid "Nozzle Length" +msgstr "" + msgctxt "machine_nozzle_offset_x label" msgid "Nozzle X Offset" msgstr "噴頭 X 軸偏移量" @@ -137,6 +149,10 @@ msgctxt "machine_nozzle_offset_y label" msgid "Nozzle Y Offset" msgstr "噴頭 Y 軸偏移量" +msgctxt "machine_extruder_prestart_code description" +msgid "Prestart g-code to execute before switching to this extruder." +msgstr "" + msgctxt "machine_extruder_start_code description" msgid "Start g-code to execute when switching to this extruder." msgstr "切換到此擠出機時,要執行的啟動 G-code。" @@ -157,6 +173,10 @@ msgctxt "extruder_nr description" msgid "The extruder train used for printing. This is used in multi-extrusion." msgstr "用於列印的擠出機,在多擠出機情況下適用。" +msgctxt "machine_nozzle_head_distance description" +msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +msgstr "" + msgctxt "machine_nozzle_size description" msgid "The inner diameter of the nozzle. Change this setting when using a non-standard nozzle size." msgstr "噴頭內徑,在使用非標準噴頭尺寸時需更改此設定。" @@ -201,6 +221,10 @@ msgctxt "machine_extruder_start_pos_y description" msgid "The y-coordinate of the starting position when turning the extruder on." msgstr "打開擠出機時的起始位置 Y 座標。" +msgctxt "machine_extruder_change_duration description" +msgid "When using a multi tool setup, this value is the tool change time in seconds. This value will be added to the estimate time based on the number of changes that occur." +msgstr "" + #~ msgctxt "machine_extruder_end_code description" #~ msgid "End g-code to execute whenever turning the extruder off." #~ msgstr "在關閉擠出機時,執行結束 G-code。" diff --git a/resources/i18n/zh_TW/fdmprinter.def.json.po b/resources/i18n/zh_TW/fdmprinter.def.json.po index 347b24aacc..9750dd040b 100644 --- a/resources/i18n/zh_TW/fdmprinter.def.json.po +++ b/resources/i18n/zh_TW/fdmprinter.def.json.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Cura 5.1\n" "Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-12 15:10+0000\n" +"POT-Creation-Date: 2025-02-21 15:37+0000\n" "PO-Revision-Date: 2022-01-02 20:24+0800\n" "Last-Translator: Valen Chang \n" "Language-Team: Valen Chang \n" @@ -21,6 +21,10 @@ msgctxt "prime_tower_mode description" msgid "How to generate the prime tower:
    • Normal: create a bucket in which secondary materials are primed
    • Interleaved: create a prime tower as sparse as possible. This will save time and filament, but is only possible if the used materials adhere to each other
    " msgstr "" +msgctxt "cool_during_extruder_switch description" +msgid "Whether to activate the cooling fans during a nozzle switch. This can help reducing oozing by cooling the nozzle faster:
    • Unchanged: keep the fans as they were previously
    • Only last extruder: turn on the fan of the last used extruder, but turn the others off (if any). This is useful if you have completely separate extruders.
    • All fans: turn on all fans during nozzle switch. This is useful if you have a single cooling fan, or multiple fans that stay close to each other.
    " +msgstr "" + msgctxt "brim_inside_margin description" msgid "A brim around a model may touch an other model where you don't want it. This removes all brim within this distance from brimless models." msgstr "" @@ -33,6 +37,10 @@ msgctxt "material_no_load_move_factor description" msgid "A factor indicating how much the filament gets compressed between the feeder and the nozzle chamber, used to determine how far to move the material for a filament switch." msgstr "一個用來表示線材在進料器和噴頭腔室之間能被壓縮多少的係數,用來決定線材切換時需要移動多長。" +msgctxt "flooring_angles description" +msgid "A list of integer line directions to use when the bottom surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." +msgstr "" + msgctxt "roofing_angles description" msgid "A list of integer line directions to use when the top surface skin layers use the lines or zig zag pattern. Elements from the list are used sequentially as the layers progress and when the end of the list is reached, it starts at the beginning again. The list items are separated by commas and the whole list is contained in square brackets. Default is an empty list which means use the traditional default angles (45 and 135 degrees)." msgstr "當頂部表層採用線條或鋸齒狀的列印樣式時使用的整數線條方向的清單。清單中的元素隨層的進度依次使用,當達到清單末尾時,它將從頭開始。清單項以逗號分隔,整個清單包含在方括號中。預設使用傳統的預設角度(45 和 135 度)。" @@ -93,6 +101,10 @@ msgctxt "adaptive_layer_height_enabled description" msgid "Adaptive layers computes the layer heights depending on the shape of the model." msgstr "適應性層高會依據模型的形狀計算列印的層高。" +msgctxt "extra_infill_lines_to_support_skins description" +msgid "Add extra lines into the infill pattern to support skins above. This option prevents holes or plastic blobs that sometime show in complex shaped skins due to the infill below not correctly supporting the skin layer being printed above. 'Walls' supports just the outlines of the skin, whereas 'Walls and Lines' also supports the ends of the lines that make up the skin." +msgstr "" + msgctxt "infill_wall_line_count description" msgid "" "Add extra walls around the infill area. Such walls can make top/bottom skin lines sag down less which means you need less top/bottom skin layers for the same quality at the cost of some extra material.\n" @@ -157,6 +169,10 @@ msgctxt "print_sequence option all_at_once" msgid "All at Once" msgstr "同時列印" +msgctxt "cool_during_extruder_switch option all_fans" +msgid "All fans" +msgstr "" + msgctxt "resolution description" msgid "All settings that influence the resolution of the print. These settings have a large impact on the quality (and print time)" msgstr "影響列印解析度的所有設定。這些設定會對品質(和列印時間)產生顯著影響" @@ -293,6 +309,74 @@ msgctxt "bottom_skin_preshrink label" msgid "Bottom Skin Removal Width" msgstr "底部表層移除寬度" +msgctxt "acceleration_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Acceleration" +msgstr "" + +msgctxt "jerk_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Jerk" +msgstr "" + +msgctxt "speed_wall_x_flooring label" +msgid "Bottom Surface Inner Wall Speed" +msgstr "" + +msgctxt "wall_x_material_flow_flooring label" +msgid "Bottom Surface Inner Wall(s) Flow" +msgstr "" + +msgctxt "acceleration_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Acceleration" +msgstr "" + +msgctxt "wall_0_material_flow_flooring label" +msgid "Bottom Surface Outer Wall Flow" +msgstr "" + +msgctxt "jerk_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Jerk" +msgstr "" + +msgctxt "speed_wall_0_flooring label" +msgid "Bottom Surface Outer Wall Speed" +msgstr "" + +msgctxt "acceleration_flooring label" +msgid "Bottom Surface Skin Acceleration" +msgstr "" + +msgctxt "flooring_extruder_nr label" +msgid "Bottom Surface Skin Extruder" +msgstr "" + +msgctxt "flooring_material_flow label" +msgid "Bottom Surface Skin Flow" +msgstr "" + +msgctxt "jerk_flooring label" +msgid "Bottom Surface Skin Jerk" +msgstr "" + +msgctxt "flooring_layer_count label" +msgid "Bottom Surface Skin Layers" +msgstr "" + +msgctxt "flooring_angles label" +msgid "Bottom Surface Skin Line Directions" +msgstr "" + +msgctxt "flooring_line_width label" +msgid "Bottom Surface Skin Line Width" +msgstr "" + +msgctxt "flooring_pattern label" +msgid "Bottom Surface Skin Pattern" +msgstr "" + +msgctxt "speed_flooring label" +msgid "Bottom Surface Skin Speed" +msgstr "" + msgctxt "bottom_thickness label" msgid "Bottom Thickness" msgstr "底部厚度" @@ -437,6 +521,14 @@ msgctxt "brim_width label" msgid "Brim Width" msgstr "邊緣寬度" +msgctxt "build_fan_full_at_height label" +msgid "Build Fan Speed at Height" +msgstr "" + +msgctxt "build_fan_full_layer label" +msgid "Build Fan Speed at Layer" +msgstr "" + msgctxt "platform_adhesion label" msgid "Build Plate Adhesion" msgstr "列印平台附著" @@ -477,6 +569,10 @@ msgctxt "bv_temp_warn_limit label" msgid "Build Volume temperature Warning" msgstr "" +msgctxt "build_volume_fan_nr label" +msgid "Build volume fan number" +msgstr "" + msgctxt "prime_tower_brim_enable description" msgid "By enabling this setting, your prime-tower will get a brim, even if the model doesn't. If you want a sturdier base for a high tower, you can increase the base height." msgstr "" @@ -517,6 +613,10 @@ msgctxt "command_line_settings label" msgid "Command Line Settings" msgstr "命令行設定" +msgctxt "flooring_pattern option concentric" +msgid "Concentric" +msgstr "" + msgctxt "infill_pattern option concentric" msgid "Concentric" msgstr "同心" @@ -621,6 +721,10 @@ msgctxt "cooling label" msgid "Cooling" msgstr "冷卻" +msgctxt "cool_during_extruder_switch label" +msgid "Cooling during extruder switch" +msgstr "" + msgctxt "infill_pattern option cross" msgid "Cross" msgstr "十字形" @@ -709,6 +813,14 @@ msgctxt "bridge_settings_enabled description" msgid "Detect bridges and modify print speed, flow and fan settings while bridges are printed." msgstr "偵測橋樑,並在列印橋樑時改變列印速度,流量和風扇轉速。" +msgctxt "scarf_split_distance description" +msgid "Determines the length of each step in the flow change when extruding along the scarf seam. A smaller distance will result in a more precise but also more complex G-code." +msgstr "" + +msgctxt "scarf_joint_seam_length description" +msgid "Determines the length of the scarf seam, a seam type that should make the Z seam less visible. Must be higher than 0 to be effective." +msgstr "" + msgctxt "inset_direction description" msgid "Determines the order in which walls are printed. Printing outer walls earlier helps with dimensional accuracy, as faults from inner walls cannot propagate to the outside. However printing them later allows them to stack better when overhangs are printed. When there is an uneven amount of total innner walls, the 'center last line' is always printed last." msgstr "" @@ -833,6 +945,10 @@ msgctxt "dual label" msgid "Dual Extrusion" msgstr "雙重擠出機" +msgctxt "gradual_flow_discretisation_step_size description" +msgid "Duration of each step in the gradual flow change" +msgstr "" + msgctxt "machine_shape option elliptic" msgid "Elliptic" msgstr "類圓形" @@ -925,6 +1041,10 @@ msgctxt "ooze_shield_enabled description" msgid "Enable exterior ooze shield. This will create a shell around the model which is likely to wipe a second nozzle if it's at the same height as the first nozzle." msgstr "啟用外部擦拭牆。這將在模型周圍創建一個外殼,如果與第一個噴頭處於相同的高度,則可能會擦拭第二個噴頭。" +msgctxt "gradual_flow_enabled description" +msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." +msgstr "" + msgctxt "ppr_enable description" msgid "Enable print process reporting for setting threshold values for possible fault detection." msgstr "" @@ -989,6 +1109,10 @@ msgctxt "meshfix_extensive_stitching description" msgid "Extensive stitching tries to stitch up open holes in the mesh by closing the hole with touching polygons. This option can introduce a lot of processing time." msgstr "廣泛縫合嘗試通過接觸多邊形來閉合孔洞,以此縫合網格中的開孔。此選項可能會產生大量的處理時間。" +msgctxt "extra_infill_lines_to_support_skins label" +msgid "Extra Infill Lines To Support Skins" +msgstr "" + msgctxt "infill_wall_line_count label" msgid "Extra Infill Wall Count" msgstr "額外填充牆壁數量" @@ -1001,6 +1125,10 @@ msgctxt "switch_extruder_extra_prime_amount description" msgid "Extra material to prime after nozzle switching." msgstr "噴頭切換後額外裝填的線材量。" +msgctxt "variant_name" +msgid "Extruder" +msgstr "" + msgctxt "extruder_prime_pos_x label" msgid "Extruder Prime X Position" msgstr "擠出機 X 軸起始位置" @@ -1097,6 +1225,10 @@ msgctxt "skin_material_flow_layer_0 description" msgid "Flow compensation on bottom lines of the first layer" msgstr "" +msgctxt "wall_x_material_flow_flooring description" +msgid "Flow compensation on bottom surface wall lines for all wall lines except the outermost one." +msgstr "" + msgctxt "infill_material_flow description" msgid "Flow compensation on infill lines." msgstr "填充線條的流量補償。" @@ -1105,6 +1237,10 @@ msgctxt "support_interface_material_flow description" msgid "Flow compensation on lines of support roof or floor." msgstr "支撐頂板或底板線條的流量補償。" +msgctxt "flooring_material_flow description" +msgid "Flow compensation on lines of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_material_flow description" msgid "Flow compensation on lines of the areas at the top of the print." msgstr "頂部區域線條的流量補償。" @@ -1129,6 +1265,10 @@ msgctxt "support_material_flow description" msgid "Flow compensation on support structure lines." msgstr "支撐結構線條的流量補償。" +msgctxt "wall_0_material_flow_flooring description" +msgid "Flow compensation on the bottom surface outermost wall line." +msgstr "" + msgctxt "wall_0_material_flow_layer_0 description" msgid "Flow compensation on the outermost wall line of the first layer." msgstr "" @@ -1185,6 +1325,10 @@ msgctxt "material_flush_purge_speed label" msgid "Flush Purge Speed" msgstr "沖洗速度" +msgctxt "reset_flow_duration description" +msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" +msgstr "" + msgctxt "min_wall_line_width description" msgid "For thin structures around once or twice the nozzle size, the line widths need to be altered to adhere to the thickness of the model. This setting controls the minimum line width allowed for the walls. The minimum line widths inherently also determine the maximum line widths, since we transition from N to N+1 walls at some geometry thickness where the N walls are wide and the N+1 walls are narrow. The widest possible wall line is twice the Minimum Wall Line Width." msgstr "" @@ -1305,6 +1449,18 @@ msgctxt "gradual_support_infill_steps label" msgid "Gradual Support Infill Steps" msgstr "漸進支撐填充步階" +msgctxt "gradual_flow_discretisation_step_size label" +msgid "Gradual flow discretisation step size" +msgstr "" + +msgctxt "gradual_flow_enabled label" +msgid "Gradual flow enabled" +msgstr "" + +msgctxt "max_flow_acceleration label" +msgid "Gradual flow max acceleration" +msgstr "" + msgctxt "cool_min_temperature description" msgid "Gradually reduce to this temperature when printing at reduced speeds because of minimum layer time." msgstr "" @@ -1333,6 +1489,10 @@ msgctxt "machine_gcode_flavor option Griffin" msgid "Griffin" msgstr "Griffin" +msgctxt "machine_gcode_flavor option Cheetah" +msgid "Griffin+Cheetah" +msgstr "" + msgctxt "group_outer_walls label" msgid "Group Outer Walls" msgstr "" @@ -1697,6 +1857,10 @@ msgctxt "material_initial_print_temperature label" msgid "Initial Printing Temperature" msgstr "起始列印溫度" +msgctxt "layer_0_max_flow_acceleration label" +msgid "Initial layer max flow acceleration" +msgstr "" + msgctxt "acceleration_wall_x label" msgid "Inner Wall Acceleration" msgstr "內壁加速度" @@ -1733,6 +1897,10 @@ msgctxt "inset_direction option inside_out" msgid "Inside To Outside" msgstr "" +msgctxt "retraction_combing_avoid_distance label" +msgid "Inside Travel Avoid Distance" +msgstr "" + msgctxt "support_interface_priority option interface_lines_overwrite_support_area" msgid "Interface lines preferred" msgstr "" @@ -1921,6 +2089,10 @@ msgctxt "line_width label" msgid "Line Width" msgstr "線寬" +msgctxt "flooring_pattern option lines" +msgid "Lines" +msgstr "" + msgctxt "infill_pattern option lines" msgid "Lines" msgstr "直線" @@ -2019,6 +2191,10 @@ msgctxt "machine_gcode_flavor option Makerbot" msgid "Makerbot" msgstr "Makerbot" +msgctxt "support_z_seam_away_from_model description" +msgid "Manage the spatial relationship between the z seam of the support structure and the actual 3D model. This control is crucial as it allows users to ensure the seamless removal of support structures post-printing, without inflicting damage or leaving marks on the printed model." +msgstr "" + msgctxt "machine_gcode_flavor option RepRap (Marlin/Sprinter)" msgid "Marlin" msgstr "Marlin" @@ -2135,6 +2311,10 @@ msgctxt "meshfix_maximum_travel_resolution label" msgid "Maximum Travel Resolution" msgstr "最大空跑解析度" +msgctxt "max_flow_acceleration description" +msgid "Maximum acceleration for gradual flow changes" +msgstr "" + msgctxt "machine_max_acceleration_x description" msgid "Maximum acceleration for the motor of the X-direction" msgstr "X 軸方向馬達的最大加速度" @@ -2195,6 +2375,10 @@ msgctxt "slicing_tolerance option middle" msgid "Middle" msgstr "中間" +msgctxt "support_z_seam_min_distance label" +msgid "Min Z Seam Distance from Model" +msgstr "" + msgctxt "mold_width label" msgid "Minimal Mold Width" msgstr "最小模具寬度" @@ -2235,10 +2419,18 @@ msgctxt "cool_min_layer_time label" msgid "Minimum Layer Time" msgstr "最短單層列印時間" +msgctxt "cool_min_layer_time_overhang label" +msgid "Minimum Layer Time with Overhang" +msgstr "" + msgctxt "min_odd_wall_line_width label" msgid "Minimum Odd Wall Line Width" msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length label" +msgid "Minimum Overhang Segment Length" +msgstr "" + msgctxt "minimum_polygon_circumference label" msgid "Minimum Polygon Circumference" msgstr "最小多邊形周長" @@ -2299,6 +2491,10 @@ msgctxt "minimum_roof_area description" msgid "Minimum area size for the roofs of the support. Polygons which have an area smaller than this value will be printed as normal support." msgstr "支撐頂板區域的最小面積大小。面積小於此值的區域將列印一般支撐。" +msgctxt "layer_0_max_flow_acceleration description" +msgid "Minimum speed for gradual flow changes for the first layer" +msgstr "" + msgctxt "min_feature_size description" 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 Line Width." msgstr "" @@ -2319,6 +2515,10 @@ msgctxt "mold_roof_height label" msgid "Mold Roof Height" msgstr "模具頂板高度" +msgctxt "flooring_monotonic label" +msgid "Monotonic Bottom Surface Order" +msgstr "" + msgctxt "ironing_monotonic label" msgid "Monotonic Ironing Order" msgstr "單一化燙平順序" @@ -2339,6 +2539,10 @@ msgctxt "skirt_line_count description" msgid "Multiple skirt lines help to prime your extrusion better for small models. Setting this to 0 will disable the skirt." msgstr "多條外圍線條有助你在列印小型模型時,更好地裝填的擠出機組。將其設為 0 將關閉外圍。" +msgctxt "support_infill_density_multiplier_initial_layer description" +msgid "Multiplier for the infill on the initial layers of the support. Increasing this may help for bed adhesion." +msgstr "" + msgctxt "initial_layer_line_width_factor description" msgid "Multiplier of the line width on the first layer. Increasing this could improve bed adhesion." msgstr "第一層線寬倍數。增大此倍數可改善熱床附著。" @@ -2359,6 +2563,10 @@ msgctxt "adhesion_type option none" msgid "None" msgstr "無" +msgctxt "extra_infill_lines_to_support_skins option none" +msgid "None" +msgstr "" + msgctxt "z_seam_corner option z_seam_corner_none" msgid "None" msgstr "無" @@ -2403,10 +2611,6 @@ msgctxt "machine_nozzle_id label" msgid "Nozzle ID" msgstr "噴頭 ID" -msgctxt "machine_nozzle_head_distance label" -msgid "Nozzle Length" -msgstr "噴頭長度" - msgctxt "switch_extruder_extra_prime_amount label" msgid "Nozzle Switch Extra Prime Amount" msgstr "噴頭切換額外裝填量" @@ -2495,6 +2699,10 @@ msgctxt "print_sequence option one_at_a_time" msgid "One at a Time" msgstr "排隊列印" +msgctxt "cool_during_extruder_switch option only_last_extruder" +msgid "Only last extruder" +msgstr "" + msgctxt "retraction_hop_only_when_collides description" msgid "Only perform a Z Hop when moving over printed parts which cannot be avoided by horizontal motion by Avoid Printed Parts when Traveling." msgstr "僅在移動到無法通過“空跑時避開已列印部分”選項避開的已列印部分上方時執行 Z 抬升。" @@ -2531,6 +2739,14 @@ msgctxt "acceleration_wall_0 label" msgid "Outer Wall Acceleration" msgstr "外壁加速度" +msgctxt "wall_0_deceleration label" +msgid "Outer Wall End Deceleration" +msgstr "" + +msgctxt "wall_0_end_speed_ratio label" +msgid "Outer Wall End Speed Ratio" +msgstr "" + msgctxt "wall_0_extruder_nr label" msgid "Outer Wall Extruder" msgstr "外壁擠出機" @@ -2555,6 +2771,18 @@ msgctxt "speed_wall_0 label" msgid "Outer Wall Speed" msgstr "外壁速度" +msgctxt "wall_0_speed_split_distance label" +msgid "Outer Wall Speed Split Distance" +msgstr "" + +msgctxt "wall_0_acceleration label" +msgid "Outer Wall Start Acceleration" +msgstr "" + +msgctxt "wall_0_start_speed_ratio label" +msgid "Outer Wall Start Speed Ratio" +msgstr "" + msgctxt "wall_0_wipe_dist label" msgid "Outer Wall Wipe Distance" msgstr "外壁擦拭噴頭長度" @@ -2575,13 +2803,13 @@ msgctxt "wall_overhang_angle label" msgid "Overhanging Wall Angle" msgstr "突出牆壁角度" -msgctxt "wall_overhang_speed_factor label" -msgid "Overhanging Wall Speed" -msgstr "突出牆壁速度" +msgctxt "wall_overhang_speed_factors label" +msgid "Overhanging Wall Speeds" +msgstr "" -msgctxt "wall_overhang_speed_factor description" -msgid "Overhanging walls will be printed at this percentage of their normal print speed." -msgstr "突出牆壁將會以正常速度的此百分比值列印。" +msgctxt "wall_overhang_speed_factors description" +msgid "Overhanging walls will be printed at a percentage of their normal print speed. You can specify multiple values, so that even more overhanging walls will be printed even slower, e.g. by setting [75, 50, 25]" +msgstr "" msgctxt "wipe_pause description" msgid "Pause after the unretract." @@ -2603,6 +2831,10 @@ msgctxt "bridge_fan_speed_3 description" msgid "Percentage fan speed to use when printing the third bridge skin layer." msgstr "列印橋樑表層第三層時,風扇轉速的百分比。" +msgctxt "z_seam_on_vertex description" +msgid "Place the z-seam on a polygon vertex. Switching this off can place the seam between vertices as well. (Keep in mind that this won't override the restrictions on placing the seam on an unsupported overhang.)" +msgstr "" + msgctxt "minimum_polygon_circumference description" msgid "Polygons in sliced layers that have a circumference smaller than this amount will be filtered out. Lower values lead to higher resolution mesh at the cost of slicing time. It is meant mostly for high resolution SLA printers and very tiny 3D models with a lot of details." msgstr "切片層中周長小於此值的多邊形將被過濾掉。設定較低的值會花費較多的切片時間,以獲得較高解析度的網格。它主要用於高解析度的 SLA 印表機和具有大量細節的微小 3D 模型。" @@ -2611,6 +2843,10 @@ msgctxt "support_tree_angle_slow label" msgid "Preferred Branch Angle" msgstr "" +msgctxt "material_pressure_advance_factor label" +msgid "Pressure advance factor" +msgstr "" + msgctxt "wall_transition_filter_deviation description" msgid "Prevent transitioning back and forth between one extra wall and one less. This margin extends the range of line widths which follow to [Minimum Wall Line Width - Margin, 2 * Minimum Wall Line Width + Margin]. Increasing this margin reduces the number of transitions, which reduces the number of extrusion starts/stops and travel time. However, large line width variation can lead to under- or overextrusion problems." msgstr "" @@ -2651,6 +2887,10 @@ msgctxt "prime_tower_max_bridging_distance label" msgid "Prime Tower Maximum Bridging Distance" msgstr "" +msgctxt "prime_tower_min_shell_thickness label" +msgid "Prime Tower Minimum Shell Thickness" +msgstr "" + msgctxt "prime_tower_min_volume label" msgid "Prime Tower Minimum Volume" msgstr "換料塔最小體積" @@ -2683,6 +2923,10 @@ msgctxt "acceleration_print label" msgid "Print Acceleration" msgstr "列印加速度" +msgctxt "variant_name" +msgid "Print Core" +msgstr "" + msgctxt "jerk_print label" msgid "Print Jerk" msgstr "列印加加速度" @@ -2711,6 +2955,10 @@ msgctxt "prime_tower_enable description" msgid "Print a tower next to the print which serves to prime the material after each nozzle switch." msgstr "在列印件旁邊印一個塔,用在每次切換噴頭後填充線材。" +msgctxt "flooring_monotonic description" +msgid "Print bottom surface lines in an ordering that causes them to always overlap with adjacent lines in a single direction. This takes slightly more time to print, but makes flat surfaces look more consistent." +msgstr "" + msgctxt "infill_support_enabled description" msgid "Print infill structures only where tops of the model should be supported. Enabling this reduces print time and material usage, but leads to ununiform object strength." msgstr "只在模型頂部需要支撐的地方才列印填充。啟用此功能可減少列印時間和線材用量,但會導致物件強度不均勻。" @@ -2803,6 +3051,18 @@ msgctxt "raft_base_fan_speed label" msgid "Raft Base Fan Speed" msgstr "木筏底部風扇轉速" +msgctxt "raft_base_flow label" +msgid "Raft Base Flow" +msgstr "" + +msgctxt "raft_base_infill_overlap_mm label" +msgid "Raft Base Infill Overlap" +msgstr "" + +msgctxt "raft_base_infill_overlap label" +msgid "Raft Base Infill Overlap Percentage" +msgstr "" + msgctxt "raft_base_line_spacing label" msgid "Raft Base Line Spacing" msgstr "木筏底部間距" @@ -2843,6 +3103,26 @@ msgctxt "raft_fan_speed label" msgid "Raft Fan Speed" msgstr "木筏風扇轉速" +msgctxt "raft_flow label" +msgid "Raft Flow" +msgstr "" + +msgctxt "raft_interface_flow label" +msgid "Raft Interface Flow" +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm label" +msgid "Raft Interface Infill Overlap" +msgstr "" + +msgctxt "raft_interface_infill_overlap label" +msgid "Raft Interface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_interface_z_offset label" +msgid "Raft Interface Z Offset" +msgstr "" + msgctxt "raft_interface_margin label" msgid "Raft Middle Extra Margin" msgstr "" @@ -2907,6 +3187,22 @@ msgctxt "raft_smoothing label" msgid "Raft Smoothing" msgstr "木筏平滑處理" +msgctxt "raft_surface_flow label" +msgid "Raft Surface Flow" +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm label" +msgid "Raft Surface Infill Overlap" +msgstr "" + +msgctxt "raft_surface_infill_overlap label" +msgid "Raft Surface Infill Overlap Percentage" +msgstr "" + +msgctxt "raft_surface_z_offset label" +msgid "Raft Surface Z Offset" +msgstr "" + msgctxt "raft_surface_margin label" msgid "Raft Top Extra Margin" msgstr "" @@ -3071,6 +3367,10 @@ msgctxt "ppr description" msgid "Reporting events that go out of set thresholds" msgstr "" +msgctxt "reset_flow_duration label" +msgid "Reset flow duration" +msgstr "" + msgctxt "support_tree_rest_preference label" msgid "Rest Preference" msgstr "" @@ -3135,6 +3435,18 @@ msgctxt "material_shrinkage_percentage label" msgid "Scaling Factor Shrinkage Compensation" msgstr "收縮補償放大倍率" +msgctxt "scarf_joint_seam_length label" +msgid "Scarf Seam Length" +msgstr "" + +msgctxt "scarf_joint_seam_start_height_ratio label" +msgid "Scarf Seam Start Height" +msgstr "" + +msgctxt "scarf_split_distance label" +msgid "Scarf Seam Step Length" +msgstr "" + msgctxt "support_meshes_present label" msgid "Scene Has Support Meshes" msgstr "場景具有支撐網格" @@ -3143,6 +3455,10 @@ msgctxt "z_seam_corner label" msgid "Seam Corner Preference" msgstr "接縫偏好設定" +msgctxt "seam_overhang_angle label" +msgid "Seam Overhanging Wall Angle" +msgstr "" + msgctxt "user_defined_print_order_enabled label" msgid "Set Print Sequence Manually" msgstr "手動設置列印順序" @@ -3359,6 +3675,10 @@ msgctxt "machine_start_gcode label" msgid "Start G-code" msgstr "起始 G-code" +msgctxt "machine_start_gcode_first label" +msgid "Start GCode must be first" +msgstr "" + msgctxt "z_seam_type description" msgid "Starting point of each path in a layer. When paths in consecutive layers start at the same point a vertical seam may show on the print. When aligning these near a user specified location, the seam is easiest to remove. When placed randomly the inaccuracies at the paths' start will be less noticeable. When taking the shortest path the print will be quicker." msgstr "一層中每條路徑的起點。當連續多層的路徑從相同點開始時,則列印物上會顯示一條垂直縫隙。如果將這些路徑靠近一個使用者指定的位置對齊,則縫隙最容易移除。如果隨機放置,則路徑起點的不精準度將較不明顯。採用最短的路徑時,列印將更為快速。" @@ -3487,6 +3807,10 @@ msgctxt "acceleration_support_infill label" msgid "Support Infill Acceleration" msgstr "支撐填充加速度" +msgctxt "support_infill_density_multiplier_initial_layer label" +msgid "Support Infill Density Multiplier Initial Layer" +msgstr "" + msgctxt "support_infill_extruder_nr label" msgid "Support Infill Extruder" msgstr "支撐填充擠出機" @@ -3679,6 +4003,10 @@ msgctxt "support_z_distance label" msgid "Support Z Distance" msgstr "支撐 Z 間距" +msgctxt "support_z_seam_away_from_model label" +msgid "Support Z Seam Away from Model" +msgstr "" + msgctxt "support_interface_priority option support_lines_overwrite_interface_area" msgid "Support lines preferred" msgstr "" @@ -3771,6 +4099,10 @@ msgctxt "acceleration_wall_x description" msgid "The acceleration with which all inner walls are printed." msgstr "列印所有內壁的加速度。" +msgctxt "acceleration_flooring description" +msgid "The acceleration with which bottom surface skin layers are printed." +msgstr "" + msgctxt "acceleration_infill description" msgid "The acceleration with which infill is printed." msgstr "列印填充的加速度。" @@ -3787,6 +4119,14 @@ msgctxt "raft_base_acceleration description" msgid "The acceleration with which the base raft layer is printed." msgstr "列印木筏底部的加速度。" +msgctxt "acceleration_wall_x_flooring description" +msgid "The acceleration with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "acceleration_wall_0_flooring description" +msgid "The acceleration with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "acceleration_support_bottom description" msgid "The acceleration with which the floors of support are printed. Printing them at lower acceleration can improve adhesion of support on top of your model." msgstr "列印支撐底板的加速度。以較低的加速度列印可以改善支撐在模型頂部的附著。" @@ -3855,6 +4195,22 @@ msgctxt "acceleration_travel description" msgid "The acceleration with which travel moves are made." msgstr "進行空跑的加速度。" +msgctxt "raft_base_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft base printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_interface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft interface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + +msgctxt "raft_surface_flow description" +msgid "The amount of material, relative to a normal extrusion line, to extrude during raft surface printing. Having an increased flow may improve adhesion and raft structural strength." +msgstr "" + msgctxt "ironing_flow description" msgid "The amount of material, relative to a normal skin line, to extrude during ironing. Keeping the nozzle filled helps filling some of the crevices of the top surface, but too much results in overextrusion and blips on the side of the surface." msgstr "燙平期間相對於正常表層線條的擠出線材量。保持噴頭填充狀态有助於填充頂部表面的一些縫隙,但如填充過多則會導致表面上過度擠出和光點。" @@ -3863,6 +4219,30 @@ msgctxt "infill_overlap description" msgid "The amount of overlap between the infill and the walls as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." msgstr "填充與牆壁的重疊量佔填充線寬的百分比。輕微的重疊能讓填充與牆壁牢固地連接。" +msgctxt "raft_base_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft base, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_base_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft base. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft interface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_interface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft interface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap description" +msgid "The amount of overlap between the infill and the walls of the raft surface, as a percentage of the infill line width. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + +msgctxt "raft_surface_infill_overlap_mm description" +msgid "The amount of overlap between the infill and the walls of the raft surface. A slight overlap allows the walls to connect firmly to the infill." +msgstr "" + msgctxt "infill_overlap_mm description" msgid "The amount of overlap between the infill and the walls. A slight overlap allows the walls to connect firmly to the infill." msgstr "填充和牆壁之間的重疊量。稍微重疊可讓各個壁與填充牢固連接。" @@ -3963,10 +4343,22 @@ msgctxt "adaptive_layer_height_variation_step description" msgid "The difference in height of the next layer height compared to the previous one." msgstr "下一列印層與前一列印層的層高差。" +msgctxt "machine_head_with_fans_polygon description" +msgid "The dimensions of the print head used to determine 'Safe Model Distance' when printing 'One at a Time'. These numbers relate to the centerline of the first extruder nozzle. Left of the nozzle is 'X Min' and must be negative. Rear of the nozzle is 'Y Min' and must be negative. X Max (right) and Y Max (front) are positive numbers. Gantry height is the dimension from the build plate to the X gantry beam." +msgstr "" + msgctxt "ironing_line_spacing description" msgid "The distance between the lines of ironing." msgstr "燙平線條之間的距離。" +msgctxt "support_z_seam_min_distance description" +msgid "The distance between the model and its support structure at the z-axis seam." +msgstr "" + +msgctxt "retraction_combing_avoid_distance description" +msgid "The distance between the nozzle and already printed outer walls when travelling inside a model." +msgstr "" + msgctxt "travel_avoid_distance description" msgid "The distance between the nozzle and already printed parts when avoiding during travel moves." msgstr "噴頭和已列印部分之間在空跑時避開的距離。" @@ -4075,6 +4467,10 @@ msgctxt "infill_extruder_nr description" msgid "The extruder train used for printing infill. This is used in multi-extrusion." msgstr "用於列印填充的擠出機組。在多擠出機情況下適用。" +msgctxt "flooring_extruder_nr description" +msgid "The extruder train used for printing the bottom most skin. This is used in multi-extrusion." +msgstr "" + msgctxt "wall_x_extruder_nr description" msgid "The extruder train used for printing the inner walls. This is used in multi-extrusion." msgstr "用於列印內壁的擠出機組。在多擠出機情況下適用。" @@ -4135,6 +4531,10 @@ msgctxt "mold_roof_height description" msgid "The height above horizontal parts in your model which to print mold." msgstr "用於列印模具的模型水平部分上方的高度。" +msgctxt "build_fan_full_at_height description" +msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." +msgstr "" + msgctxt "cool_fan_full_at_height description" msgid "The height at which the fans spin on regular fan speed. At the layers below the fan speed gradually increases from Initial Fan Speed to Regular Fan Speed." msgstr "使用標準風扇轉速的高度。風扇轉速會從起始轉速逐漸增加,在此高度達到標準風扇轉速。" @@ -4143,10 +4543,6 @@ msgctxt "gantry_height description" msgid "The height difference between the tip of the nozzle and the gantry system (X and Y axes)." msgstr "噴頭尖端與吊車之間的高度差。" -msgctxt "machine_nozzle_head_distance description" -msgid "The height difference between the tip of the nozzle and the lowest part of the print head." -msgstr "噴頭尖端與列印頭最低部分之間的高度差。" - msgctxt "retraction_hop_after_extruder_switch_height description" msgid "The height difference when performing a Z Hop after extruder switch." msgstr "擠出機切換後進行 Z 抬升的高度差。" @@ -4247,6 +4643,10 @@ msgctxt "top_skin_preshrink description" msgid "The largest width of top skin areas which are to be removed. Every skin area smaller than this value will disappear. This can help in limiting the amount of time and material spent on printing top skin at slanted surfaces in the model." msgstr "要移除頂部表層區域的最大寬度。寬度小於此值的頂部表層區域將會消失。這有助於減少在列印模型傾斜的頂部表層所花費的時間和線材。" +msgctxt "build_fan_full_layer description" +msgid "The layer at which the build fans spin on full fan speed. This value is calculated and rounded to a whole number." +msgstr "" + msgctxt "cool_fan_full_layer description" msgid "The layer at which the fans spin on regular fan speed. If regular fan speed at height is set, this value is calculated and rounded to a whole number." msgstr "要使用標準風扇轉速的層。如果標準風扇轉速高度已被設定,這個值將使用計算出來後取四捨五入的整數值。" @@ -4319,10 +4719,22 @@ msgctxt "jerk_wall_x description" msgid "The maximum instantaneous velocity change with which all inner walls are printed." msgstr "列印所有內壁時的最大瞬時速度變化。" +msgctxt "jerk_flooring description" +msgid "The maximum instantaneous velocity change with which bottom surface skin layers are printed." +msgstr "" + msgctxt "jerk_infill description" msgid "The maximum instantaneous velocity change with which infill is printed." msgstr "列印填充時的最大瞬時速度變化。" +msgctxt "jerk_wall_x_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "jerk_wall_0_flooring description" +msgid "The maximum instantaneous velocity change with which the bottom surface outermost walls are printed." +msgstr "" + msgctxt "jerk_support_bottom description" msgid "The maximum instantaneous velocity change with which the floors of support are printed." msgstr "列印支撐底板時的最大瞬時速度變化。" @@ -4459,6 +4871,14 @@ msgctxt "support_bottom_stair_step_min_slope description" msgid "The minimum slope of the area for stair-stepping to take effect. Low values should make support easier to remove on shallower slopes, but really low values may result in some very counter-intuitive results on other parts of the model." msgstr "階梯作用區域的最小斜率。較低的值應能讓較淺的斜面上的支撐更容易移除,但過低的值可能會在模型的其它部位導致與直覺相反的結果。" +msgctxt "prime_tower_min_shell_thickness description" +msgid "The minimum thickness of the prime tower shell. You may increase it to make the prime tower stronger." +msgstr "" + +msgctxt "cool_min_layer_time_overhang description" +msgid "The minimum time spent in a layer that contains overhanging extrusions. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." +msgstr "" + msgctxt "cool_min_layer_time description" msgid "The minimum time spent in a layer. This forces the printer to slow down, to at least spend the time set here in one layer. This allows the printed material to cool down properly before printing the next layer. Layers may still take shorter than the minimal layer time if Lift Head is disabled and if the Minimum Speed would otherwise be violated." msgstr "單層列印時間的下限。這會迫使印表機減速,以便在單層列印中消耗此處所規定的時間。這會讓模型充分冷卻後再列印下一層。如果“噴頭抬升”功能被關閉,為了不違反“最低列印速度”,單層列印時間仍有可能低於此設定值。" @@ -4491,6 +4911,10 @@ msgctxt "bottom_layers description" msgid "The number of bottom layers. When calculated by the bottom thickness, this value is rounded to a whole number." msgstr "底部列印層數,當由底部厚度來計算時層數時,會四捨五入為一個整數值。" +msgctxt "flooring_layer_count description" +msgid "The number of bottom most skin layers. Usually only one bottom most layer is sufficient to generate higher quality bottom surfaces." +msgstr "" + msgctxt "raft_base_wall_count description" msgid "The number of contours to print around the linear pattern in the base layer of the raft." msgstr "" @@ -4527,6 +4951,10 @@ msgctxt "support_brim_line_count description" msgid "The number of lines used for the support brim. More brim lines enhance adhesion to the build plate, at the cost of some extra material." msgstr "支撐邊緣所使用的線條數量。邊緣使用較多的線條會加強對列印平台的附著力,但會需要一些額外的線材。" +msgctxt "build_volume_fan_nr description" +msgid "The number of the fan that cools the build volume. If this is set to 0, it's means that there is no build volume fan" +msgstr "" + msgctxt "raft_surface_layers description" msgid "The number of top layers on top of the 2nd raft layer. These are fully filled layers that the model sits on. 2 layers result in a smoother top surface than 1." msgstr "位於木筏中層上方的頂部層數。這是承載模型的完全填充層。兩層會產生比一層更平滑的頂部表面。" @@ -4567,6 +4995,10 @@ msgctxt "machine_nozzle_tip_outer_diameter description" msgid "The outer diameter of the tip of the nozzle." msgstr "噴頭尖端的外徑。" +msgctxt "flooring_pattern description" +msgid "The pattern of the bottom most layers." +msgstr "" + msgctxt "infill_pattern description" msgid "The pattern of the infill material of the print. The line and zig zag infill swap direction on alternate layers, reducing material cost. The grid, triangle, tri-hexagon, cubic, octet, quarter cubic, cross and concentric patterns are fully printed every layer. Gyroid, cubic, quarter cubic and octet infill change with every layer to provide a more equal distribution of strength over each direction. Lightning infill tries to minimize the infill, by only supporting the ceiling of the object." msgstr "內部填充層的圖案。線形、鋸齒形填充在交替層間交換方向,已降低材料成本。網格、三角形、三角-六邊形、立方體、八面體、四分立方體、十字和同心圖案每個層間皆有列印。螺旋型、立方體、四分立方體和八面體的填充隨著每一層而變化,以在每個方向上提供更均勻的強度分佈。閃電型填充透過僅支撐物體的頂層來最小化填充。" @@ -4619,14 +5051,14 @@ msgctxt "jerk_layer_0 description" msgid "The print maximum instantaneous velocity change for the initial layer." msgstr "起始層的列印最大瞬時速度變化。" +msgctxt "scarf_joint_seam_start_height_ratio description" +msgid "The ratio of the selected layer height at which the scarf seam will begin. A lower number will result in a larger seam height. Must be lower than 100 to be effective." +msgstr "" + msgctxt "machine_shape description" msgid "The shape of the build plate without taking unprintable areas into account." msgstr "列印平台形狀(不計算不可列印區域)。" -msgctxt "machine_head_with_fans_polygon description" -msgid "The shape of the print head. These are coordinates relative to the position of the print head, which is usually the position of its first extruder. The dimensions left and in front of the print head must be negative coordinates." -msgstr "" - msgctxt "cross_infill_pocket_size description" msgid "The size of pockets at four-way crossings in the cross 3D pattern at heights where the pattern is touching itself." msgstr "立體十字形在樣式閉合的高度處,中央十字交叉的氣囊大小。" @@ -4647,6 +5079,10 @@ msgctxt "speed_wall_x description" msgid "The speed at which all inner walls are printed. Printing the inner wall faster than the outer wall will reduce printing time. It works well to set this in between the outer wall speed and the infill speed." msgstr "列印所有內壁的速度。以比外壁更快的速度列印內壁將減少列印時間。將該值設為外壁速度和填充速度之間也可行。" +msgctxt "speed_flooring description" +msgid "The speed at which bottom surface skin layers are printed." +msgstr "" + msgctxt "bridge_skin_speed description" msgid "The speed at which bridge skin regions are printed." msgstr "列印橋樑表層區域時的速度。" @@ -4663,6 +5099,14 @@ msgctxt "raft_base_speed description" msgid "The speed at which the base raft layer is printed. This should be printed quite slowly, as the volume of material coming out of the nozzle is quite high." msgstr "列印木筏底部的速度。這些層應以很慢的速度列印,因為噴頭所出的線材量非常高。" +msgctxt "speed_wall_x_flooring description" +msgid "The speed at which the bottom surface inner walls are printed." +msgstr "" + +msgctxt "speed_wall_0_flooring description" +msgid "The speed at which the bottom surface outermost wall is printed." +msgstr "" + msgctxt "bridge_wall_speed description" msgid "The speed at which the bridge walls are printed." msgstr "列印橋樑牆壁時的速度。" @@ -4947,6 +5391,26 @@ msgctxt "bridge_wall_coast description" msgid "This controls the distance the extruder should coast immediately before a bridge wall begins. Coasting before the bridge starts can reduce the pressure in the nozzle and may produce a flatter bridge." msgstr "這可以控制擠出機在開始列印橋樑牆壁前滑行的距離。在橋樑開始之前進行滑行可以減小噴頭中的壓力並可能產生更平坦的橋樑。" +msgctxt "wall_0_acceleration description" +msgid "This is the acceleration with which to reach the top speed when printing an outer wall." +msgstr "" + +msgctxt "wall_0_deceleration description" +msgid "This is the deceleration with which to end printing an outer wall." +msgstr "" + +msgctxt "wall_0_speed_split_distance description" +msgid "This is the maximum length of an extrusion path when splitting a longer path to apply the outer wall acceleration/deceleration. A smaller distance will create a more precise but also more verbose G-Code." +msgstr "" + +msgctxt "wall_0_end_speed_ratio description" +msgid "This is the ratio of the top speed to end with when printing an outer wall." +msgstr "" + +msgctxt "wall_0_start_speed_ratio description" +msgid "This is the ratio of the top speed to start with when printing an outer wall." +msgstr "" + msgctxt "raft_base_smoothing description" msgid "This setting controls how much inner corners in the raft base outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" @@ -4963,6 +5427,10 @@ msgctxt "raft_surface_smoothing description" msgid "This setting controls how much inner corners in the raft top outline are rounded. Inward corners are rounded to a semi circle with a radius equal to the value given here. This setting also removes holes in the raft outline which are smaller than such a circle." msgstr "" +msgctxt "machine_start_gcode_first description" +msgid "This setting controls if the start-gcode is forced to always be the first g-code. Without this option other g-code, such as a T0 can be inserted before the start g-code." +msgstr "" + msgctxt "retraction_count_max description" msgid "This setting limits the number of retractions occurring within the minimum extrusion distance window. Further retractions within this window will be ignored. This avoids retracting repeatedly on the same piece of filament, as that can flatten the filament and cause grinding issues." msgstr "此設定限制在最小擠出距離範圍內發生的回抽數。此範圍內的額外回抽將會忽略。這避免了在同一件線材上重複回抽,從而導致線材變扁並引起磨損問題。" @@ -5191,10 +5659,22 @@ msgctxt "support_tree_max_diameter label" msgid "Trunk Diameter" msgstr "" +msgctxt "seam_overhang_angle description" +msgid "Try to prevent seams on walls that overhang more than this angle. When the value is 90, no walls will be treated as overhanging." +msgstr "" + +msgctxt "material_pressure_advance_factor description" +msgid "Tuning factor for pressure advance, which is meant to synchronize extrusion with motion" +msgstr "" + msgctxt "machine_gcode_flavor option UltiGCode" msgid "Ultimaker 2" msgstr "Ultimaker 2" +msgctxt "cool_during_extruder_switch option unchanged" +msgid "Unchanged" +msgstr "" + msgctxt "meshfix_union_all label" msgid "Union Overlapping Volumes" msgstr "合併重疊體積" @@ -5319,9 +5799,17 @@ msgctxt "shell label" msgid "Walls" msgstr "牆" +msgctxt "extra_infill_lines_to_support_skins option walls" +msgid "Walls Only" +msgstr "" + +msgctxt "extra_infill_lines_to_support_skins option walls_and_lines" +msgid "Walls and Lines" +msgstr "" + msgctxt "wall_overhang_angle description" -msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." -msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。被支撐的突出牆壁也將不不會被當作突出牆壁。" +msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either. Furthermore, any line that's less than half overhanging will also not be treated as overhang." +msgstr "" msgctxt "meshfix_fluid_motion_enabled description" msgid "When enabled tool paths are corrected for printers with smooth motion planners. Small movements that deviate from the general tool path direction are smoothed to improve fluid motions." @@ -5359,6 +5847,14 @@ msgctxt "bridge_wall_material_flow description" msgid "When printing bridge walls, the amount of material extruded is multiplied by this value." msgstr "列印橋樑牆壁時,擠出的線材量乘以此值。" +msgctxt "raft_interface_z_offset description" +msgid "When printing the first layer of the raft interface, translate by this offset to customize the adhesion between base and interface. A negative offset should improve the adhesion." +msgstr "" + +msgctxt "raft_surface_z_offset description" +msgid "When printing the first layer of the raft surface, translate by this offset to customize the adhesion between interface and surface. A negative offset should improve the adhesion." +msgstr "" + msgctxt "bridge_skin_material_flow_2 description" msgid "When printing the second bridge skin layer, the amount of material extruded is multiplied by this value." msgstr "列印橋樑表層區域第二層時,擠出的線材量乘以此值。" @@ -5383,6 +5879,10 @@ msgctxt "wall_transition_length description" 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 lines." msgstr "" +msgctxt "cool_min_layer_time_overhang_min_segment_length description" +msgid "When trying to apply the minimum layer time specific for overhanging layers, it will be applied only if at least one consecutive overhanging extrusion move is longer than this value." +msgstr "" + msgctxt "wipe_hop_enable description" msgid "When wiping, the build plate is lowered to create clearance between the nozzle and the print. It prevents the nozzle from hitting the print during travel moves, reducing the chance to knock the print from the build plate." msgstr "擦拭時列印平台會降低以便在噴頭和列印品之間形成空隙。它可以防止噴頭在空跑過程中撞到列印品,降低將列印品從列印平台撞掉的幾率。" @@ -5479,6 +5979,10 @@ msgctxt "support_interface_line_width description" msgid "Width of a single line of support roof or floor." msgstr "支撐頂板或底板單一線寬。" +msgctxt "flooring_line_width description" +msgid "Width of a single line of the areas at the bottom of the print." +msgstr "" + msgctxt "roofing_line_width description" msgid "Width of a single line of the areas at the top of the print." msgstr "列印頂部區域單一線寬。" @@ -5655,6 +6159,10 @@ msgctxt "z_seam_type label" msgid "Z Seam Alignment" msgstr "Z 接縫對齊" +msgctxt "z_seam_on_vertex label" +msgid "Z Seam On Vertex" +msgstr "" + msgctxt "z_seam_position label" msgid "Z Seam Position" msgstr "Z 接縫位置" @@ -5675,6 +6183,10 @@ msgctxt "support_xy_overrides_z option z_overrides_xy" msgid "Z overrides X/Y" msgstr "Z 優先 X/Y" +msgctxt "flooring_pattern option zigzag" +msgid "Zig Zag" +msgstr "" + msgctxt "infill_pattern option zigzag" msgid "Zig Zag" msgstr "鋸齒狀" @@ -5727,14 +6239,38 @@ msgstr "空跑" #~ msgid "Make the first and second layer of the model overlap in the Z direction to compensate for the filament lost in the airgap. All models above the first model layer will be shifted down by this amount." #~ msgstr "使模型的第一層和第二層在 Z 方向上重疊以補償在空隙中損失的線材。第一個模型層上方的所有模型將向下移動此重疊量。" +#~ msgctxt "machine_nozzle_head_distance label" +#~ msgid "Nozzle Length" +#~ msgstr "噴頭長度" + +#~ msgctxt "variant_name" +#~ msgid "Nozzle Size" +#~ msgstr "噴頭孔徑" + #~ msgctxt "brim_outside_only description" #~ msgid "Only print the brim on the outside of the model. This reduces the amount of brim you need to remove afterwards, while it doesn't reduce the bed adhesion that much." #~ msgstr "僅在模型外部列印邊緣。這會減少你之後需要移除的邊緣量,而不會過度影響列印平台附著。" +#~ msgctxt "wall_overhang_speed_factor label" +#~ msgid "Overhanging Wall Speed" +#~ msgstr "突出牆壁速度" + +#~ msgctxt "wall_overhang_speed_factor description" +#~ msgid "Overhanging walls will be printed at this percentage of their normal print speed." +#~ msgstr "突出牆壁將會以正常速度的此百分比值列印。" + #~ msgctxt "support_interface_skip_height label" #~ msgid "Support Interface Resolution" #~ msgstr "支撐介面解析度" +#~ msgctxt "machine_nozzle_head_distance description" +#~ msgid "The height difference between the tip of the nozzle and the lowest part of the print head." +#~ msgstr "噴頭尖端與列印頭最低部分之間的高度差。" + +#~ msgctxt "wall_overhang_angle description" +#~ msgid "Walls that overhang more than this angle will be printed using overhanging wall settings. When the value is 90, no walls will be treated as overhanging. Overhang that gets supported by support will not be treated as overhang either." +#~ msgstr "牆壁突出的角度大於此值時,將使用突出牆壁的設定列印。當此值設定為 90 時,所有牆壁都不會被當作突出牆壁。被支撐的突出牆壁也將不不會被當作突出牆壁。" + #~ msgctxt "support_interface_skip_height description" #~ msgid "When checking where there's model above and below the support, take steps of the given height. Lower values will slice slower, while higher values may cause normal support to be printed in some places where there should have been support interface." #~ msgstr "在檢查支撐上方或下方是否有模型時,所採用步階的高度。值越低切片速度越慢,而較高的值會導致在部分應有支撐介面的位置列印一般的支撐。" diff --git a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po b/resources/i18n/zh_TW/gradual_flow_settings.def.json.po deleted file mode 100644 index 2529ed73e4..0000000000 --- a/resources/i18n/zh_TW/gradual_flow_settings.def.json.po +++ /dev/null @@ -1,54 +0,0 @@ -# -msgid "" -msgstr "" -"Project-Id-Version: Uranium json setting files\n" -"Report-Msgid-Bugs-To: plugins@ultimaker.com\n" -"POT-Creation-Date: 2024-03-11 11:28+0000\n" -"PO-Revision-Date: 2024-03-11 11:28+0000\n" -"Last-Translator: Automatically generated\n" -"Language-Team: none\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);\n" - -msgctxt "gradual_flow_discretisation_step_size description" -msgid "Duration of each step in the gradual flow change" -msgstr "" - -msgctxt "gradual_flow_enabled description" -msgid "Enable gradual flow changes. When enabled, the flow is gradually increased/decreased to the target flow. This is useful for printers with a bowden tube where the flow is not immediately changed when the extruder motor starts/stops." -msgstr "" - -msgctxt "reset_flow_duration description" -msgid "For any travel move longer than this value, the material flow is reset to the paths target flow" -msgstr "" - -msgctxt "gradual_flow_discretisation_step_size label" -msgid "Gradual flow discretisation step size" -msgstr "" - -msgctxt "gradual_flow_enabled label" -msgid "Gradual flow enabled" -msgstr "" - -msgctxt "max_flow_acceleration label" -msgid "Gradual flow max acceleration" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration label" -msgid "Initial layer max flow acceleration" -msgstr "" - -msgctxt "max_flow_acceleration description" -msgid "Maximum acceleration for gradual flow changes" -msgstr "" - -msgctxt "layer_0_max_flow_acceleration description" -msgid "Minimum speed for gradual flow changes for the first layer" -msgstr "" - -msgctxt "reset_flow_duration label" -msgid "Reset flow duration" -msgstr "" diff --git a/resources/images/Hellbot_Hidra_and_Hidra_Plus_V2.png b/resources/images/Hellbot_Hidra_and_Hidra_Plus_V2.png new file mode 100644 index 0000000000..1cbdea4aae Binary files /dev/null and b/resources/images/Hellbot_Hidra_and_Hidra_Plus_V2.png differ diff --git a/resources/images/MakerbotSketchSprint.png b/resources/images/MakerbotSketchSprint.png new file mode 100644 index 0000000000..a9a21d9131 Binary files /dev/null and b/resources/images/MakerbotSketchSprint.png differ diff --git a/resources/images/Ultimaker2PlusConnectbackplate.png b/resources/images/Ultimaker2PlusConnectbackplate.png index 789a48e887..c03e28936b 100644 Binary files a/resources/images/Ultimaker2PlusConnectbackplate.png and b/resources/images/Ultimaker2PlusConnectbackplate.png differ diff --git a/resources/images/UltimakerFactor4Backplate.png b/resources/images/UltimakerFactor4Backplate.png index c22d887766..f209c98fee 100644 Binary files a/resources/images/UltimakerFactor4Backplate.png and b/resources/images/UltimakerFactor4Backplate.png differ diff --git a/resources/images/UltimakerS3backplate.png b/resources/images/UltimakerS3backplate.png index 486c282934..f4a9cf478e 100644 Binary files a/resources/images/UltimakerS3backplate.png and b/resources/images/UltimakerS3backplate.png differ diff --git a/resources/images/UltimakerS5backplate.png b/resources/images/UltimakerS5backplate.png index cb37c296a4..cda59e4b23 100644 Binary files a/resources/images/UltimakerS5backplate.png and b/resources/images/UltimakerS5backplate.png differ diff --git a/resources/images/UltimakerS6backplate.png b/resources/images/UltimakerS6backplate.png new file mode 100644 index 0000000000..d6e83781cc Binary files /dev/null and b/resources/images/UltimakerS6backplate.png differ diff --git a/resources/images/UltimakerS7backplate.png b/resources/images/UltimakerS7backplate.png index c35f819d7d..5cef95e7a4 100644 Binary files a/resources/images/UltimakerS7backplate.png and b/resources/images/UltimakerS7backplate.png differ diff --git a/resources/images/UltimakerS8backplate.png b/resources/images/UltimakerS8backplate.png new file mode 100644 index 0000000000..d2a4488a73 Binary files /dev/null and b/resources/images/UltimakerS8backplate.png differ diff --git a/resources/images/bambulab-buildplate.png b/resources/images/bambulab-buildplate.png new file mode 100644 index 0000000000..930337a695 Binary files /dev/null and b/resources/images/bambulab-buildplate.png differ diff --git a/resources/images/cor.png b/resources/images/cor.png new file mode 100644 index 0000000000..9648b720cb Binary files /dev/null and b/resources/images/cor.png differ diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg index fc0708041a..e59c1d4993 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg index 4d0e53deea..0af8793759 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg index 919e49294e..9e63f887c8 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg index 30e95a48d9..a31837864a 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg index b2351a8a80..a97e7ce148 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_DBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg index a52ff65580..163c28c4ed 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg index 07d62c2915..1edb4f9382 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg index 4f0fbf74a2..097a4a31b2 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg index 39becd3cd0..501bc9e859 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg index 3c4df2d111..62bdaacc9a 100644 --- a/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg +++ b/resources/intent/deltacomb/ABS/deltacomb_FBE0.40_ABS_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg index f3eba51e98..f36ff28d35 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg index 4e3ca82795..7b7aa58fd1 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg index 20dcc02fdf..4c618f49f8 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg index c7470b8c25..5253b13b11 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg index c7470b8c25..5253b13b11 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg index 130b5d2a27..9fc0d8b778 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_DBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg index 8ced281396..8573339f60 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg index 514973ccef..7e98ed4c52 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg index c9366697a8..45d698dbaf 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg index a7fef7976d..88f50a4c5a 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg index 56b2e6ff8d..4eef0b3a31 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg index 57e8f521da..78642bd201 100644 --- a/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PETG/deltacomb_FBE0.40_PETG_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg index 382b2e8af3..02c7466838 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg index 5cb4664213..8ba8113fb8 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg index f1035271b0..2f9450409b 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg index 2f92c3ccef..9c2c205886 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg index ffb00077c7..6a3905ae84 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_DBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = intent variant = DBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg index 4afa610eb1..bb9f5bcf1e 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_B.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg index bceefcec97..4e1c00cff0 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_C.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg index b3dd716c0f..1bbf5378dc 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_accurate_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg index 3d95d1b19d..04de0a7934 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_D.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg index e87daed110..a5a98feac2 100644 --- a/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg +++ b/resources/intent/deltacomb/PLA/deltacomb_FBE0.40_PLA_quick_E.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = intent variant = FBE 0.40mm diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg index 4df23b911b..7958ffadd6 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg index 1a5695f490..b40d40d09b 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg index 4bb742ae0e..72116efd8e 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg index 349dbc5919..1630bbdeaa 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg index 21241f2bb4..be357b3889 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg index 578fba233f..2cc88a5a40 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg index f00efd1355..6e0c464980 100644 --- a/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_base/PLA/elegoo_base_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg index 081446828b..a1ff248833 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.05mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg index 60f6c9965a..92264d4f7a 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg index 86b1b505f7..74401f3316 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg index c2bbab0d5d..4fcb01427b 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg index 48452cc240..11c74735af 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg index 19f3592c4a..058ae2a36c 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -8,7 +8,7 @@ intent_category = engineering is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg index 195edc6b3c..f6ab048a20 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg index a16e673072..f47dca8803 100644 --- a/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/elegoo_neptune_4/PLA/elegoo_n4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg index 8b63f5bc66..285d020dc1 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg index 6904c4079f..be3287fa45 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg index d0487bfe7a..5cce07bf58 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg index 8ebe0c0c46..abdb2f25bb 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg index 19c41a3388..657ddd3891 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg index c66d224a1f..e11f792ab0 100644 --- a/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_ABS_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg index 02acaefd55..235559d61f 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg index 4997ebbad3..612933f7f8 100644 --- a/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_CPE_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg index 5c4b525c15..52647e0b5e 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg index a5070b131b..92048b6496 100644 --- a/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_Nylon_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg index 8620632bed..f91678348a 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg index a8ceaaf218..acfb376db0 100644 --- a/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PC_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg index f769152ea4..cabe1ef9dc 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg index c26d8e408e..16f2ae5c06 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg index 85e6aaec5e..daea853718 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg index 9f916946d7..c1fddbb828 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg index ed8001b296..ce1569552e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg index 4dc720417a..adbb87af16 100644 --- a/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PETG_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg index 9f2b7ab77d..b86846f9b1 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Draft_Print_Quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg index b05a492e39..c31c29ed18 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Print_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg index 4bd00759a3..6ef2ea522e 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Fast_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg index cf65345e34..1f74c4d8ff 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_High_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg index f46cb21d87..97ebf28d29 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Quality_Accurate.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg index ecf1b624c0..2dd0e69e96 100644 --- a/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg +++ b/resources/intent/liquid/liquid_vo0.4_PLA_Normal_Visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = VO 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg index b2d41796b3..ce917c9b7b 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.25 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg index f568a9271a..c7c9c5d7b9 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.25 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg index 1df3c3fc40..3ab550e07c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.25 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg index f362a6bb1b..706dd59ef5 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg index ae936e8e4a..f350a10415 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg index c841c9be5c..a14b5e3c7e 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg index a2b530b691..6ac77c098f 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg index 4d19a1d9ac..c41d9c0523 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg index 4c7f43f235..7bb37bb00e 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg index 873a03fd2c..898e5f317c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg index 26a2635187..5b2e0c6168 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg index a328c13970..b3314ce0b5 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg index 547fcdea7f..9392d5da31 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg index de1399a910..9c746832fc 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg index 95ff756d29..453f87fa42 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg index b0e88ae260..1107e402f9 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg index ffd5d39cc2..7ade5a3591 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg index 04efc12fb6..4074955941 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg index 0aa1fc3d6d..e83448c3e5 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 2aa9458458..1ed2ab3917 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg index ad3f5c5657..0778428157 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg index c564c85c88..240a7b116e 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg index 848304f64c..f568b37874 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg index 3700b586ab..db74e5ea87 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg index 05532266d7..9754a24c6c 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg index 0ef5547a5a..5d2c20a1c3 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg index 0e5d4b3d26..fbcd48f18a 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg index 324faf3f1d..3d2b84288f 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg index cdd1dff22e..7715a9db4a 100644 --- a/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg index a29540bbeb..987c75e613 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg index 217ff0c6f6..a02449ed8f 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg index 01ea70dd38..0b648b2379 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg index 02189eec47..d84dad5068 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..b5ba198105 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm_strong.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm_strong.inst.cfg new file mode 100644 index 0000000000..1930715076 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm_strong.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Strong +version = 4 + +[metadata] +intent_category = strong +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +material_print_temperature = =default_material_print_temperature + 20 +speed_print = 80 +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg index 6664e7fe74..b44b2407a9 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg index 156f50241c..d327152850 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg index 98087f4712..12c015ec1d 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg index 439e6eb3f1..a1bc915888 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg index ffe4988764..f8df8291be 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg index 161ff37ea1..8fe4b441bf 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..51b8d16f13 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_print = 80 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm_strong.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm_strong.inst.cfg new file mode 100644 index 0000000000..bb527f58f7 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm_strong.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Strong +version = 4 + +[metadata] +intent_category = strong +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +material_print_temperature = =default_material_print_temperature + 20 +speed_print = 80 +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3975917d3e..aeb6191147 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg index 4ad4e42fb1..cb438e20e5 100644 --- a/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg index daa39ff833..582fd1b383 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_cffpps quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg index 615ef5e91c..1770a1ab47 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cffpps quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..f77b3eadc1 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_factor4 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = HT 0.6 + +[values] +jerk_print = 30 +speed_print = 70 +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm_strong.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm_strong.inst.cfg new file mode 100644 index 0000000000..930841fcd3 --- /dev/null +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm_strong.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_factor4 +name = Strong +version = 4 + +[metadata] +intent_category = strong +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = HT 0.6 + +[values] +jerk_print = 30 +material_print_temperature = =default_material_print_temperature + 20 +speed_print = 80 +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg index a9f35bdb61..b630336fbd 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg index c4f6ec3fe0..a3ae283c8e 100644 --- a/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = HT 0.6 diff --git a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg index fdfbe77c33..0cfefffbaf 100644 --- a/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_1a_um-pla-175_0.2mm_solid.inst.cfg @@ -7,11 +7,17 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1A [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 47 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..018c55ab98 --- /dev/null +++ b/resources/intent/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_method +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1A + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 47 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_method/um_method_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..14c3fc0932 --- /dev/null +++ b/resources/intent/ultimaker_method/um_method_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_method +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 231cf74ea3..9e1491fb2b 100644 --- a/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg index 87cc96fb5a..f1fc3f2b35 100644 --- a/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_1c_um-pla-175_0.2mm_solid.inst.cfg @@ -7,11 +7,17 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 47 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..d9f32b9b8c --- /dev/null +++ b/resources/intent/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_method +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 47 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_method/um_method_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..435ca8663c --- /dev/null +++ b/resources/intent/ultimaker_method/um_method_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_method +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 4a05977a4e..838cfd06b9 100644 --- a/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg index 6c9d832805..ac31593165 100644 --- a/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_method/um_method_labs_um-pla-175_0.2mm_solid.inst.cfg @@ -7,11 +7,17 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 47 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..5b9d4c6a4e --- /dev/null +++ b/resources/intent/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_method +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 47 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg index 2087c38cba..b0e8bf90b5 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm_solid.inst.cfg @@ -7,11 +7,17 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1A [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 47 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..cee1983b43 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1A + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 47 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..8acb9f2019 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg index 697aa8842e..03bff1a746 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg new file mode 100644 index 0000000000..f5a00d9db1 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeed.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_methodx +name = High Speed +version = 4 + +[metadata] +intent_category = highspeed +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +acceleration_print = 3500 +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_pattern = zigzag +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg new file mode 100644 index 0000000000..2e098b3a0b --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = ultimaker_methodx +name = High Speed Solid +version = 4 + +[metadata] +intent_category = highspeedsolid +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +acceleration_print = 3500 +bottom_thickness = =top_bottom_thickness +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg index 8826f7e7d4..b6c7c82d75 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg index 3a1c0340fa..a23957ce30 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -5,13 +5,18 @@ version = 4 [metadata] intent_category = solid -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..b743e78d56 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 021e1de2e1..df7d927aa1 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pc-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pc-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..2e2a6b101e --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pc-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..a3261fe5e1 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg index 330811df73..c5cf2a78a1 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm_solid.inst.cfg @@ -7,11 +7,17 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 47 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..7a6542e1a5 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 47 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..4e6659bdea --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg new file mode 100644 index 0000000000..0db1a5b803 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeed.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_methodx +name = High Speed +version = 4 + +[metadata] +intent_category = highspeed +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +acceleration_print = 3500 +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_pattern = zigzag +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg new file mode 100644 index 0000000000..b6ff6e1ebd --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = ultimaker_methodx +name = High Speed Solid +version = 4 + +[metadata] +intent_category = highspeedsolid +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +acceleration_print = 3500 +bottom_thickness = =top_bottom_thickness +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg index c426a99499..68efa4436a 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1XA [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg index f4029c6c1d..bfb422cbb4 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -5,13 +5,18 @@ version = 4 [metadata] intent_category = solid -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1XA [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..dd9b2333fd --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..fadeb3dfae --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..bb71c6bc3a --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg index 3d8106d85e..3b46069a2f 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg new file mode 100644 index 0000000000..4b42af13fa --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeed.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_methodx +name = High Speed +version = 4 + +[metadata] +intent_category = highspeed +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +acceleration_print = 3500 +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_pattern = zigzag +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg new file mode 100644 index 0000000000..69a50a831b --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = ultimaker_methodx +name = High Speed Solid +version = 4 + +[metadata] +intent_category = highspeedsolid +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +acceleration_print = 3500 +bottom_thickness = =top_bottom_thickness +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg index ec07c4b98a..583542b521 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg index 0a10d33053..461c0a413a 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -5,13 +5,18 @@ version = 4 [metadata] intent_category = solid -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..52bb4512b8 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 224e85f1af..87e2023381 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pc-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pc-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..387eba8de0 --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pc-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..e3aa3eee0a --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg index 2a672307bb..64b44ff2ca 100644 --- a/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm_solid.inst.cfg @@ -7,11 +7,17 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 47 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..670632271c --- /dev/null +++ b/resources/intent/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_methodx +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 47 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg index 52b091486e..9070ea5cd0 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm_solid.inst.cfg @@ -7,12 +7,18 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1A [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 45 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 material_bed_temperature = 45 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..53365f6bf5 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1A + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 45 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +material_bed_temperature = 45 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..30c5a6d65e --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg index 5714a796b3..f8c685f665 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg new file mode 100644 index 0000000000..0328525090 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeed.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_methodxl +name = High Speed +version = 4 + +[metadata] +intent_category = highspeed +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +acceleration_print = 3500 +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_pattern = zigzag +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg new file mode 100644 index 0000000000..0c2bb88cc7 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_highspeedsolid.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = ultimaker_methodxl +name = High Speed Solid +version = 4 + +[metadata] +intent_category = highspeedsolid +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +acceleration_print = 3500 +bottom_thickness = =top_bottom_thickness +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg index 603a19fa4f..b325996766 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg index c0d0816b3d..ab33f28ccb 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm_solid.inst.cfg @@ -5,13 +5,18 @@ version = 4 [metadata] intent_category = solid -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..54087f85ef --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 0440ceb055..bd7ceab8da 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..076c903bf0 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..ea6bc6b884 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-fr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg index ce45abad85..9b822a3974 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm_solid.inst.cfg @@ -7,12 +7,18 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1C [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 45 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 material_bed_temperature = 45 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..5adee585f9 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1C + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 45 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +material_bed_temperature = 45 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..4611d2ed1f --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg new file mode 100644 index 0000000000..a82ddaa428 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeed.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_methodxl +name = High Speed +version = 4 + +[metadata] +intent_category = highspeed +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +acceleration_print = 3500 +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_pattern = zigzag +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg new file mode 100644 index 0000000000..9aebcb531b --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_highspeedsolid.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = ultimaker_methodxl +name = High Speed Solid +version = 4 + +[metadata] +intent_category = highspeedsolid +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +acceleration_print = 3500 +bottom_thickness = =top_bottom_thickness +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg index 470f5547c1..925b72ce40 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1XA [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg index c0f3cce227..284ebc395f 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm_solid.inst.cfg @@ -5,13 +5,18 @@ version = 4 [metadata] intent_category = solid -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = 1XA [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..92054b5151 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..750db3bd6a --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-fr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 1XA + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..d1045a972d --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg index 21e54ab083..41a1bd63b3 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg new file mode 100644 index 0000000000..11aa6d2878 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeed.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_methodxl +name = High Speed +version = 4 + +[metadata] +intent_category = highspeed +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +acceleration_print = 3500 +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_pattern = zigzag +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg new file mode 100644 index 0000000000..ea8caef493 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_highspeedsolid.inst.cfg @@ -0,0 +1,38 @@ +[general] +definition = ultimaker_methodxl +name = High Speed Solid +version = 4 + +[metadata] +intent_category = highspeedsolid +is_experimental = True +material = ultimaker_absr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +acceleration_print = 3500 +bottom_thickness = =top_bottom_thickness +bridge_wall_speed = 300 +cool_fan_enabled = True +cool_fan_speed = 100 +cool_min_layer_time = 3 +cool_min_temperature = 245.0 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +jerk_print = 35 +speed_layer_0 = 55 +speed_print = 300 +speed_support = 100 +speed_support_interface = 75 +speed_travel = 500 +speed_travel_layer_0 = 250 +speed_wall_0 = 40 +support_pattern = zigzag +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg index f1058ebdeb..a49dace00a 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg index bbad6fef50..0d739b9aad 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm_solid.inst.cfg @@ -5,13 +5,18 @@ version = 4 [metadata] intent_category = solid -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..3c3eafe4a5 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon-cf-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg index 4fa2252da3..d46cc14a0a 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm_solid.inst.cfg @@ -7,10 +7,16 @@ version = 4 intent_category = solid material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] -infill_sparse_density = 100 +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..2401e11871 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..e9a2bfefb2 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-fr-175_0.2mm_solid.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg index d5ea2ac7f0..63049646b3 100644 --- a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm_solid.inst.cfg @@ -7,12 +7,18 @@ version = 4 intent_category = solid material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = LABS [values] +bottom_thickness = =top_bottom_thickness build_volume_temperature = 45 -infill_sparse_density = 100 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 material_bed_temperature = 45 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness diff --git a/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_solid.inst.cfg b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_solid.inst.cfg new file mode 100644 index 0000000000..bbf9112687 --- /dev/null +++ b/resources/intent/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm_solid.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_methodxl +name = Solid +version = 4 + +[metadata] +intent_category = solid +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = LABS + +[values] +bottom_thickness = =top_bottom_thickness +build_volume_temperature = 45 +infill_angles = [45,135] +infill_material_flow = 97 +infill_pattern = zigzag +infill_sparse_density = 99 +material_bed_temperature = 45 +top_bottom_thickness = =layer_height * 2 +top_thickness = =top_bottom_thickness + diff --git a/resources/intent/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_um-pla-175_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_um-pla-175_0.2mm_quick.inst.cfg new file mode 100644 index 0000000000..a4e5932163 --- /dev/null +++ b/resources/intent/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_um-pla-175_0.2mm_quick.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_replicator_plus +name = Quick +version = 4 + +[metadata] +intent_category = quick +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = Smart Extruder+ + +[values] +jerk_print = 30 +speed_wall = =speed_print +speed_wall_0 = =speed_wall + diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg index d12071d3a5..6a946af09e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg index 4ae011e692..a7a7146c47 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg index 8207705b54..b5de5c33b7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg index 546d21fe4b..9d3a7eb3e6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg index 09e842f502..271244e11c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg index e73af4a87e..12857c520d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index b190eefc57..1afaad10e7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 54e2e78789..3db150683b 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg index 6956d40573..e1ffb76186 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg index 599affff45..3cd2c5d2b8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg index e8cee0ef32..c17d4e324e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg index 87bf4f93d2..9ebe024622 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg index 7120a9d6b7..af7152bcac 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg index 83ad4584de..431e78c6a2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg index b32d9fc149..93dc678154 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg index 9ea1d2b08f..19d7ed77dd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg index 9304974dc9..7da24b3120 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg index deaf4b77e6..105da4460e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg index 07bf6028e9..b09ed3dbf5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg index 4714e516c7..8e27f2a078 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg index ff6c3cc6b5..10d43068fb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg index a521f1f019..1817cdbf39 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg index 634efc45e5..3bded03a05 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg index fb349859b0..0fbfb42e97 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index a75aa86806..3ba391e1eb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg index 4113a9fe8e..e2530d07cc 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index 0be0b9d398..17c8685d95 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg index faa1084c27..4c01a91a78 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 377b5d122c..7b0d5867e8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg index 66b03e33b6..8bc54cbd37 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg index 8fa7230f62..1c2dc8e7e3 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg index 162e979a83..60a8c82bf5 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg index c14e2d0c24..38ca559c24 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg index de545bf35e..1216c01c50 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg index 7e4a2be518..486ec27eea 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg index d7a8e06998..16ecdc8088 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg index 0efe56e0dc..1f7f73a461 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg index e6a3c4c30f..8675d41fc1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg index 1155247785..1d9ec3606e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg index 392be6c548..254206953e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg index 205b8f4d51..19b831bbfe 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg index f6cbbba69d..578f24c1e7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 09d2f2ba99..f447f957a9 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg index 6e60a687fa..a40bff2f7d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg index 286a6b0e07..7f7ad0a1a7 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg index 6254e3b68f..d05d9535df 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg index a8ebd1b54c..ac36f552f6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg index 09673e6098..1785c654e0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg index 7cf830c833..fadc134e6c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 9454381e88..8392e49a26 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg index 25c24997cd..8f97ca0cf6 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 77c867c2ad..a925886aab 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg index 170dfd90ea..bf914f477e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg index 14f9aa110c..1a4901ef3a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg index 0889942919..c36ff1272c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg index 5d1ef78b71..ae157d99e0 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg index 6371e933dc..dc67fd2b3c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index ac5904d91f..01c8aeac51 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index bb457acb89..4d84ea2033 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 2d6592179a..69fd792848 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 7b66700a7d..87704fad15 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 2e254c0db0..ddeefd09bb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index 24c1c424b8..2e03ac61fe 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index b1abec1364..61e22b6059 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 06957baa1f..dd7457209a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 61b6704313..6a59e6deca 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg index c1db44dcc4..aae72ea856 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg index 1d6c709517..294c147bfd 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg index 6c58b08d10..b5ed2d3033 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg index 6552e6e66a..b9a0df799a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg index 9ed04a2141..449e6b491e 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg index b961efe0eb..b0128b5ea2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg index 1f65b1be8a..82e3353744 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg index 9253f808f9..26a6824feb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg index 339f02e070..9c7549a32a 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg index f1aa58b68e..5eed97e9ee 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 1a94de81f8..01b632adf1 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg index 7769b3ed66..9511f404c2 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg index 7d18b5d3bf..5f22d5914c 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg index 1e55929f44..64919148cb 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg index 531ffab063..c87dd06278 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index 5d470eabca..d8a2a07f51 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index 010abc2354..3ff0cb1164 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index a01998fc4d..0a8c1185f8 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index f8d86eb50a..c3f1359720 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 365fea42ab..0535e9569d 100644 --- a/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..8d8e73a1a8 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg index c07b72ee47..f291fe9aee 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg index a213579793..ebfbb63859 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg index e19ed4a7b1..c01bac8626 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg index 3ee351e6d8..d71e9cb66d 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..de40fdb162 --- /dev/null +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s3 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg index 05c22d3323..56b60629f8 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg index 51a584d038..431b48d0df 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg index 3c2efc99eb..80ac24b78b 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg index f7c9f26617..6d303ecf2f 100644 --- a/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg index 1088ed3384..f275934815 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.06mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg index e4195e37a3..f8eb2a7f8c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg index 67d74786ea..38886514e0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.15mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg index f3da8e539c..636b7e95df 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg index 41062bcddf..c3f626984f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.1mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg index e69b9dd030..385570a235 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_abs_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg index e5a59502a5..23611a3c54 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg index 78b888abb0..9b7fdb8c2e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg index 682bfe2f97..5d1c121f9f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg index ab8338bc9e..90a72c0024 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg index 825220e353..2a5fc2b8c9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg index 727fdc935b..14eb734e55 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg index 2f21d6eff9..d655ff1a04 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg index 6c29211dc0..22d6f68d0c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pc_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg index 5bd7bea421..7f5a0001b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg index 64e81fbf1d..dd490cadd4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_petg_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg index f0b2230088..dea1c0869d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.06mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg index e32dbabeb6..265f310073 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg index 50d90a00eb..48fed3dc8f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.15mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg index a3197dd697..5e80b8dbf1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg index 23eb85c335..87c3c5c613 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.1mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg index 2352570231..990e21a7a8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg index 571a3aa68f..b6531dc15d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg index 18bdf42758..1ddd8bb615 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg index a7cbafcc0e..c4d6e37b87 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg index d4562bf3a2..1769051ab9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg index af9c92d891..b4e4c7035b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg index 99ff066ecc..e979072b77 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm_visual.inst.cfg @@ -7,11 +7,12 @@ version = 4 intent_category = visual material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] speed_infill = 50 top_bottom_thickness = 1.05 +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg index 9ea2f46ec1..e807834a4e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg index fc200dd76c..26d1023c61 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm_quick.inst.cfg @@ -8,7 +8,7 @@ intent_category = quick is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg index dc4a8e8734..89c119876f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg index e74ed67f23..16116902f9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg index e20abaae69..f021653b3b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg index 17a78ae0f4..9bee0dd9ae 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg index 1738a2a7d4..8553a95084 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg index 20d5b34c30..fd13b046f1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg index 663980f2e9..a7c523794b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg index 75aab7d69f..1440639d2d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg index db1684399e..1c6187a1b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg index 6613e5fa4b..02279e3944 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg index e03d98bbd8..16dc983215 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg index cbb246eda0..6be64dc262 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg index 056ecd4177..6e9862fa6f 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg index 2bd5ad82d5..16a5f57725 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg index ac93bc17d5..ff382bab3c 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg index a6d971eb51..7644b8f330 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg index a2f07990b8..fa9fa2b333 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg index be73a3ad1b..008199fc11 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg index 9764374cd2..42b85635a5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg index 9f15ad8ed6..ad0b766e47 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg index 4736d18dae..c5d6b7eae5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg index 7b2b42ae0b..a4ff05a5a4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg index 4eb56441b3..14b5d65d6a 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg index ce5666e06a..d921b4d38d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg index de02366f81..de76aeeeb0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg index bd2f1f1b9c..3b3d8f9ff2 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg index 15891975a3..139fa83c6d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg index ef32bc56db..bfac2b7579 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg index 6ef21ed75f..b170b8436b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg index 34b0afb5b1..d1a95adb2d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg index 0f4db503b2..280154ba86 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg index 70f539cfe8..9d686d9921 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg index eedc26a947..d410e36fb6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg index 3831ec4895..53c6758b6d 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg index 9f4de00ec6..45b337c21e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg index 0eef7bf1ed..a67fb2e9b0 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg index ded0f97db3..972d3a76b8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg index 7881350346..b2af2726ec 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg index 10e967fc41..2cb145c5ec 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg index f6defe9a0c..ca9c0260d4 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg index cf05092f62..929cdeb9a8 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg index 83c84bf162..8338d09bed 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg index 5990c5cb2b..9bb05fd19e 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg index 01fa9a6e91..94d421dfc6 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg index 5584c5e00a..a1ce162d16 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg index eba95b253b..14fc0eefd9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg index 5688775572..e8cebbe5a1 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg index efbe56dee7..b492019032 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg index 95716c5d9f..68b928b60b 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg index c32dce45b5..b1c2f706ab 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg index 8f24be0b25..a0ae3053d9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg index cc382d57f5..fad73bb2f5 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_engineering.inst.cfg @@ -7,15 +7,15 @@ version = 4 intent_category = engineering material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'triangles' infill_sparse_density = 20 jerk_print = 30 +max_flow_acceleration = 1 speed_infill = =speed_print speed_print = 35 speed_roofing = =speed_topbottom diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg index b270814153..3cf93de4c9 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg index ddb8021eba..5553b4ca71 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm_visual.inst.cfg @@ -7,19 +7,20 @@ version = 4 intent_category = visual material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.5 acceleration_print = 2500 acceleration_wall_0 = 1000 inset_direction = inside_out jerk_wall_0 = 20 +max_flow_acceleration = 0.5 speed_print = 50 speed_roofing = =math.ceil(speed_wall*(35/50)) speed_wall_0 = =math.ceil(speed_wall*(20/50)) speed_wall_x = =math.ceil(speed_wall*(35/50)) top_bottom_thickness = =max(1.2 , layer_height * 6) +z_seam_type = back diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg index c844739f28..56ac34bd57 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg index 1e60bc8806..7d997bc144 100644 --- a/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm_quick.inst.cfg @@ -7,13 +7,13 @@ version = 4 intent_category = quick material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = intent variant = AA 0.8 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = False acceleration_wall_0 = 2000 +gradual_flow_enabled = False gradual_infill_step_height = =4 * layer_height gradual_infill_steps = 3 infill_sparse_density = 40 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..a89e4eb944 --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +is_experimental = True +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.4 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg index f4a6913edc..2217ad3033 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg index ba99c57749..e41f5953f2 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg index e6b4075cd8..f1a89e6fb9 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg index 10127fb3fc..7ba5e6a10c 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.4 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..f76f51eeaa --- /dev/null +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = ultimaker_s5 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC 0.6 + +[values] +jerk_print = 30 +speed_infill = =speed_print +speed_print = 30 +speed_topbottom = =speed_print +speed_wall = =speed_print +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 3 + diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg index 48b90a7c69..dacbff7d2a 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg index 877143419b..7a5ace7678 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg index ad94617c15..71e96708ba 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_annealing.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = annealing material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg index 6bc6a2725e..a5939ee492 100644 --- a/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg +++ b/resources/intent/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm_engineering.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = intent variant = CC 0.6 diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_abs_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_abs_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..1d1cae70e6 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_abs_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_abs +quality_type = draft +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_cpe_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_cpe_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..f52cdf8124 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_cpe_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe +quality_type = draft +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_petg_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_petg_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..4c4490876f --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_petg_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petg +quality_type = draft +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.15mm_visual.inst.cfg new file mode 100644 index 0000000000..a70cdee3a2 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.15mm_visual.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s8 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_pla +quality_type = fast +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +material_print_temperature = =default_material_print_temperature - 5 +speed_print = 100 +speed_wall = 75 +top_bottom_thickness = =round(layer_height*6,3) + diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..484b9536a6 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pla +quality_type = draft +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.15mm_visual.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.15mm_visual.inst.cfg new file mode 100644 index 0000000000..b5be7984d6 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.15mm_visual.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s8 +name = Visual +version = 4 + +[metadata] +intent_category = visual +material = generic_tough_pla +quality_type = fast +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +material_print_temperature = =default_material_print_temperature - 5 +speed_print = 100 +speed_wall = 75 +top_bottom_thickness = =round(layer_height*6,3) + diff --git a/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..c5b81e4a4c --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_tough_pla +quality_type = draft +setting_version = 25 +type = intent +variant = AA+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_cpe-plus_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_cpe-plus_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..a474c19cf7 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_cpe-plus_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_cpe_plus +quality_type = draft +setting_version = 25 +type = intent +variant = CC+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..e5ccc32e49 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = intent +variant = CC+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_pc_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_pc_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..cecb670819 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_pc_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_pc +quality_type = draft +setting_version = 25 +type = intent +variant = CC+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_petcf_0.2mm_engineering.inst.cfg b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_petcf_0.2mm_engineering.inst.cfg new file mode 100644 index 0000000000..0819ec9c81 --- /dev/null +++ b/resources/intent/ultimaker_s8/um_s8_cc_plus_0.4_petcf_0.2mm_engineering.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Accurate +version = 4 + +[metadata] +intent_category = engineering +material = generic_petcf +quality_type = draft +setting_version = 25 +type = intent +variant = CC+ 0.4 + +[values] +infill_sparse_density = 20 +top_bottom_thickness = =wall_thickness +wall_thickness = =line_width * 4 + diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg new file mode 100644 index 0000000000..b43a477fd0 --- /dev/null +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm_draft.inst.cfg @@ -0,0 +1,54 @@ +[general] +definition = ultimaker_sketch_sprint +name = Draft +version = 4 + +[metadata] +intent_category = draft +is_experimental = True +material = ultimaker_pla_175 +quality_type = imperial +setting_version = 25 +type = intent +variant = 0.4mm + +[values] +acceleration_layer_0 = 5000 +acceleration_print = 20000 +acceleration_roofing = 5000 +acceleration_topbottom = 10000 +acceleration_travel_layer_0 = 5000 +acceleration_wall_0 = 5000.0 +acceleration_wall_0_roofing = 5000 +acceleration_wall_x = 10000 +acceleration_wall_x_roofing = 5000 +cool_fan_full_at_height = 0.54 +cool_min_layer_time = 2 +cool_min_speed = 50 +cool_min_temperature = 220 +infill_angles = [135] +infill_line_width = 0.4 +infill_overlap = 25 +infill_pattern = zigzag +infill_wipe_dist = 0.05 +initial_layer_line_width_factor = 125 +line_width = 0.4 +material_final_print_temperature = 225 +material_initial_print_temperature = 225 +material_print_temperature = 225 +retraction_hop_enabled = True +seam_overhang_angle = 25 +speed_layer_0 = 70 +speed_print = 270 +speed_roofing = 215 +speed_support_bottom = 100 +speed_support_interface = 215 +speed_topbottom = 215 +speed_wall = 215 +speed_wall_x = 270 +speed_wall_x_roofing = 270 +support_line_width = 0.35 +wall_line_width_x = 0.4 +wall_overhang_angle = 25 +wall_overhang_speed_factors = [15] + diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.2mm_visual.inst.cfg new file mode 100644 index 0000000000..9930af6a41 --- /dev/null +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.2mm_visual.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_sketch_sprint +name = Visual +version = 4 + +[metadata] +intent_category = visual +is_experimental = True +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 0.4mm + +[values] +acceleration_roofing = 1500 +acceleration_wall_0_roofing = 1500 +acceleration_wall_x_roofing = 1500 +cool_min_temperature = 220.0 +hole_xy_offset = 0.2 +hole_xy_offset_max_diameter = 3 +inset_direction = inside_out +line_width = 0.4 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +min_bead_width = 0.34 +min_wall_line_width = 0.34 +roofing_line_width = 0.35 +roofing_monotonic = False +roofing_pattern = lines +skin_monotonic = False +skin_outline_count = 0 +skin_overlap = 25 +small_feature_max_length = 25 +small_feature_speed_factor = 40 +small_hole_max_size = 4.5 +small_skin_width = 4 +speed_roofing = 100 +wall_line_width_x = 0.4 +z_seam_type = back + diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg new file mode 100644 index 0000000000..03a79d2896 --- /dev/null +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm_draft.inst.cfg @@ -0,0 +1,54 @@ +[general] +definition = ultimaker_sketch_sprint +name = Draft +version = 4 + +[metadata] +intent_category = draft +is_experimental = True +material = ultimaker_tough_pla_175 +quality_type = imperial +setting_version = 25 +type = intent +variant = 0.4mm + +[values] +acceleration_layer_0 = 5000 +acceleration_print = 20000 +acceleration_roofing = 5000 +acceleration_topbottom = 10000 +acceleration_travel_layer_0 = 5000 +acceleration_wall_0 = 5000.0 +acceleration_wall_0_roofing = 5000 +acceleration_wall_x = 10000 +acceleration_wall_x_roofing = 5000 +cool_fan_full_at_height = 0.54 +cool_min_layer_time = 2 +cool_min_speed = 50 +cool_min_temperature = 220 +infill_angles = [135] +infill_line_width = 0.4 +infill_overlap = 25 +infill_pattern = zigzag +infill_wipe_dist = 0.05 +initial_layer_line_width_factor = 125 +line_width = 0.4 +material_final_print_temperature = 225 +material_initial_print_temperature = 225 +material_print_temperature = 225 +retraction_hop_enabled = True +seam_overhang_angle = 25 +speed_layer_0 = 70 +speed_print = 270 +speed_roofing = 215 +speed_support_bottom = 100 +speed_support_interface = 215 +speed_topbottom = 215 +speed_wall = 215 +speed_wall_x = 270 +speed_wall_x_roofing = 270 +support_line_width = 0.35 +wall_line_width_x = 0.4 +wall_overhang_angle = 25 +wall_overhang_speed_factors = [15] + diff --git a/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm_visual.inst.cfg b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm_visual.inst.cfg new file mode 100644 index 0000000000..43f41d0178 --- /dev/null +++ b/resources/intent/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm_visual.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_sketch_sprint +name = Visual +version = 4 + +[metadata] +intent_category = visual +is_experimental = True +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = intent +variant = 0.4mm + +[values] +acceleration_roofing = 1500 +acceleration_wall_0_roofing = 1500 +acceleration_wall_x_roofing = 1500 +cool_min_temperature = 220.0 +hole_xy_offset = 0.2 +hole_xy_offset_max_diameter = 3 +inset_direction = inside_out +line_width = 0.4 +material_final_print_temperature = =material_print_temperature +material_initial_print_temperature = =material_print_temperature +material_print_temperature = 220 +min_bead_width = 0.34 +min_wall_line_width = 0.34 +roofing_line_width = 0.35 +roofing_monotonic = False +roofing_pattern = lines +skin_monotonic = False +skin_outline_count = 0 +skin_overlap = 25 +small_feature_max_length = 25 +small_feature_speed_factor = 40 +small_hole_max_size = 4.5 +small_skin_width = 4 +speed_roofing = 100 +wall_line_width_x = 0.4 +z_seam_type = back + diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index d22f44e19e..efe41d7ab5 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index d7e03a5348..d0b312a25d 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index e663e68a4c..2bddf7198a 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 0d854c132e..9568959554 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg index a297d02799..22ff43a4ce 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 047208076f..bda39f59f9 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg index 9c58a24882..777e929c79 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg index f008edb43d..7981e47b11 100644 --- a/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/abs/abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 658b6ac44b..5e070973ed 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 19c36c46e8..9a89f1eac8 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 44284f4642..aaeebd00d3 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 6d208856f2..2ae1348ab5 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg index f967de3d14..110dcb09ae 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index c838f0874d..5db8dcde0d 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg index fc18580ee5..f4fd21ec50 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg index bd7f577015..750b6cabbc 100644 --- a/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/petg/petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index a93308863b..d39eb66b23 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 65253671d6..9e8e5f1562 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 8ceb763be8..aa0fec925c 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index d73f209556..37668ea9fb 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg index c3e9e2aba3..95075beb7f 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index d885c8a731..57c6a7743c 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 9a7d9be488..76cc527e79 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 0165ae7ad8..36b282b34b 100644 --- a/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/uni_base/pla/pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 162e4441a3..e4260b854b 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 07719831a3..7013baa269 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 93e329110e..0c8702cd2c 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index a3f1130928..d26ef4ae4a 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg index 18f7ee286c..1f1a8d7163 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 1c1c9aa789..12f88e8cdf 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg index a853d12a34..60c23450ae 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg index 9414a12447..5bf29b3c54 100644 --- a/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/abs/zav_abs_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 3b8ddec810..fe10957ab5 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 14100af127..3c59930cf4 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 54aec6ef6f..df9f385141 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index ce797bd5a3..437cfa9862 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg index 8429f26ad5..8e7a7b2a05 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index 8db18e5445..921658126a 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg index 5b83e0f77b..b3abd0c93f 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg index 1ca0f4c2a7..962a1a1051 100644 --- a/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/petg/zav_petg_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg index 33d6a1c897..5c474bbe5c 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.10_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg index 8de74ecd6c..53f06bbdf3 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg index 411b4d5b39..0629995e20 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.15_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg index 2bc167470c..075f266519 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_eng.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = engineering material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg index 3eea60ab40..f75366235e 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg index ae86f86f11..ce6c8c9096 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.20_visual.inst.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = visual material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg index 4fed70ca47..374d4f195a 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.25_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg index 3261669acd..928cfaf49f 100644 --- a/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg +++ b/resources/intent/zav_base/pla/zav_pla_nozzle_0.40_layer_0.30_quick.inst.cfg @@ -7,7 +7,7 @@ version = 4 intent_category = quick material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = intent variant = 0.40mm_ZAV_Nozzle diff --git a/resources/meshes/bambulab_a1mini.obj b/resources/meshes/bambulab_a1mini.obj new file mode 100644 index 0000000000..5bddcd90a6 --- /dev/null +++ b/resources/meshes/bambulab_a1mini.obj @@ -0,0 +1,1978 @@ +# Blender 4.4.0 +# www.blender.org +mtllib bambulabs-a1mini.mtl +o bambulab_a1m +v 181.982834 180.261444 -0.600000 +v 181.982834 180.261459 0.000000 +v 182.000000 180.000000 0.000000 +v -2.000000 180.000000 0.000000 +v 182.000000 180.000000 -0.600000 +v 182.000000 -7.131783 0.000000 +v -2.000000 0.000000 0.000000 +v -1.982835 -0.261453 0.000000 +v 179.800003 -6.343558 0.000000 +v 49.852898 -2.600989 0.000000 +v 50.133736 -2.809235 0.000000 +v 162.852371 -2.814206 0.000000 +v 49.552856 -2.421132 0.000000 +v 49.236404 -2.271438 0.000000 +v 48.906788 -2.153522 0.000000 +v 48.567451 -2.068540 0.000000 +v 48.221615 -2.017208 0.000000 +v 47.871796 -2.000000 0.000000 +v 0.000000 -2.000000 0.000000 +v -0.261449 -1.982835 0.000000 +v -0.518171 -1.931701 0.000000 +v -0.765877 -1.847535 0.000000 +v -1.000370 -1.731819 0.000000 +v -1.217698 -1.586549 0.000000 +v -1.414195 -1.414204 0.000000 +v -1.586541 -1.217708 0.000000 +v -1.731813 -1.000380 0.000000 +v -1.847531 -0.765886 0.000000 +v -1.931700 -0.518178 0.000000 +v 171.138290 -2.814206 0.000000 +v 179.211777 -2.814206 0.000000 +v 179.342834 -2.828996 0.000000 +v 167.274673 -2.814206 0.000000 +v 179.800003 -3.402431 0.000000 +v 179.785217 -3.271375 0.000000 +v 179.741669 -3.147067 0.000000 +v 179.671616 -3.035642 0.000000 +v 179.578568 -2.942598 0.000000 +v 179.467148 -2.872545 0.000000 +v 181.931702 180.518173 -0.600000 +v 181.931702 180.518173 0.000000 +v -1.982835 180.261444 0.000000 +v 181.847534 180.765869 -0.600000 +v 181.847534 180.765884 0.000000 +v -1.931701 180.518173 0.000000 +v 181.731812 181.000366 -0.600000 +v 181.731812 181.000381 0.000000 +v -1.847535 180.765869 0.000000 +v 181.586548 181.217697 -0.600000 +v 181.586548 181.217712 0.000000 +v -1.731819 181.000366 0.000000 +v 181.414200 181.414200 -0.600000 +v 181.414200 181.414200 0.000000 +v -1.586549 181.217697 0.000000 +v 181.217712 181.586548 -0.600000 +v 181.217697 181.586548 0.000000 +v -1.414204 181.414200 0.000000 +v 181.000381 181.731812 -0.600000 +v 181.000366 181.731812 0.000000 +v -1.217708 181.586548 0.000000 +v 180.765884 181.847534 -0.600000 +v 180.765869 181.847534 0.000000 +v -1.000380 181.731812 0.000000 +v 180.518173 181.931702 -0.600000 +v 180.518173 181.931702 0.000000 +v -0.765886 181.847534 0.000000 +v 180.261459 181.982834 -0.600000 +v 180.261444 181.982834 0.000000 +v 148.928421 182.000000 0.000000 +v -0.518178 181.931702 0.000000 +v 180.000000 182.000000 -0.600000 +v 180.000000 182.000000 0.000000 +v 111.443146 182.000000 0.000000 +v 148.928421 182.000000 -0.600000 +v -0.518171 181.931702 -0.600000 +v 31.071573 182.000000 -0.600000 +v 68.556854 182.000000 -0.600000 +v 111.443146 182.000000 -0.600000 +v -0.261449 181.982834 -0.600000 +v 0.000000 182.000000 -0.600000 +v -0.765877 181.847534 -0.600000 +v -1.000370 181.731812 -0.600000 +v -1.217698 181.586548 -0.600000 +v -1.414195 181.414200 -0.600000 +v -1.586541 181.217712 -0.600000 +v -1.731813 181.000381 -0.600000 +v -1.847531 180.765884 -0.600000 +v -1.931700 180.518173 -0.600000 +v -1.982835 180.261459 -0.600000 +v 182.000000 -7.131783 -0.600000 +v -2.000000 180.000000 -0.600000 +v 179.671616 -3.035635 -0.600000 +v 179.741653 -3.147059 -0.600000 +v -2.000000 0.000000 -0.600000 +v -1.982835 -0.261449 -0.600000 +v -0.261453 181.982834 0.000000 +v 31.071573 182.000000 0.000000 +v 0.000000 182.000000 0.000000 +v 68.556854 182.000000 0.000000 +v 68.164452 182.019302 0.000000 +v 31.332619 182.017105 0.000000 +v 31.589205 182.068146 0.000000 +v 31.332619 182.017105 -0.600000 +v 67.776512 182.076889 0.000000 +v 31.836939 182.152237 0.000000 +v 31.589205 182.068146 -0.600000 +v 67.395866 182.172211 0.000000 +v 32.071579 182.267960 0.000000 +v 31.836939 182.152237 -0.600000 +v 67.026123 182.304489 0.000000 +v 32.289101 182.413300 0.000000 +v 32.071579 182.267960 -0.600000 +v 66.671143 182.472397 0.000000 +v 32.485786 182.585785 0.000000 +v 32.289101 182.413300 -0.600000 +v 61.780155 187.119843 0.000000 +v 37.019848 187.119843 0.000000 +v 32.485786 182.585785 -0.600000 +v 65.728424 183.171570 0.000000 +v 66.019547 182.907745 0.000000 +v 66.334579 182.674149 0.000000 +v 61.529186 187.344116 0.000000 +v 37.270813 187.344116 0.000000 +v 37.019848 187.119843 -0.600000 +v 61.254848 187.538727 0.000000 +v 37.545155 187.538727 0.000000 +v 37.270813 187.344116 -0.600000 +v 60.960442 187.701431 0.000000 +v 37.839558 187.701431 0.000000 +v 37.545155 187.538727 -0.600000 +v 60.649696 187.830139 0.000000 +v 38.150303 187.830139 0.000000 +v 37.839558 187.701431 -0.600000 +v 60.326481 187.923279 0.000000 +v 38.473522 187.923279 0.000000 +v 38.150303 187.830139 -0.600000 +v 59.994873 187.979645 0.000000 +v 38.805126 187.979645 0.000000 +v 38.473522 187.923279 -0.600000 +v 59.658833 187.998520 0.000000 +v 39.141167 187.998520 0.000000 +v 38.805126 187.979645 -0.600000 +v 39.141167 187.998520 -0.600000 +v 59.658833 187.998520 -0.600000 +v 59.994873 187.979645 -0.600000 +v 60.326481 187.923279 -0.600000 +v 60.649696 187.830139 -0.600000 +v 60.960442 187.701431 -0.600000 +v 61.254848 187.538727 -0.600000 +v 61.529186 187.344116 -0.600000 +v 61.780155 187.119843 -0.600000 +v 65.728424 183.171570 -0.600000 +v 66.019547 182.907745 -0.600000 +v 66.334579 182.674149 -0.600000 +v 66.671143 182.472397 -0.600000 +v 67.026123 182.304489 -0.600000 +v 67.395866 182.172211 -0.600000 +v 67.776512 182.076889 -0.600000 +v 68.164452 182.019302 -0.600000 +v 148.667389 182.017105 0.000000 +v 111.835548 182.019302 0.000000 +v 148.410797 182.068146 0.000000 +v 112.223488 182.076889 0.000000 +v 111.835548 182.019302 -0.600000 +v 148.163055 182.152237 0.000000 +v 112.604134 182.172211 0.000000 +v 112.223488 182.076889 -0.600000 +v 147.928421 182.267960 0.000000 +v 112.973877 182.304489 0.000000 +v 112.604134 182.172211 -0.600000 +v 147.710892 182.413300 0.000000 +v 113.328857 182.472397 0.000000 +v 112.973877 182.304489 -0.600000 +v 147.514221 182.585785 0.000000 +v 113.665421 182.674149 0.000000 +v 113.328857 182.472397 -0.600000 +v 142.980148 187.119843 0.000000 +v 113.980453 182.907745 0.000000 +v 113.665421 182.674149 -0.600000 +v 114.271576 183.171570 0.000000 +v 113.980453 182.907745 -0.600000 +v 118.219849 187.119843 0.000000 +v 114.271576 183.171570 -0.600000 +v 142.729187 187.344116 0.000000 +v 118.470818 187.344116 0.000000 +v 118.219849 187.119843 -0.600000 +v 142.454849 187.538727 0.000000 +v 118.745155 187.538727 0.000000 +v 118.470818 187.344116 -0.600000 +v 142.160446 187.701431 0.000000 +v 119.039558 187.701431 0.000000 +v 118.745155 187.538727 -0.600000 +v 141.849701 187.830139 0.000000 +v 119.350304 187.830139 0.000000 +v 119.039558 187.701431 -0.600000 +v 141.526474 187.923279 0.000000 +v 119.673523 187.923279 0.000000 +v 119.350304 187.830139 -0.600000 +v 141.194870 187.979645 0.000000 +v 120.005127 187.979645 0.000000 +v 119.673523 187.923279 -0.600000 +v 140.858826 187.998520 0.000000 +v 120.341164 187.998520 0.000000 +v 120.005127 187.979645 -0.600000 +v 120.341164 187.998520 -0.600000 +v 140.858826 187.998520 -0.600000 +v 141.194870 187.979645 -0.600000 +v 141.526474 187.923279 -0.600000 +v 141.849701 187.830139 -0.600000 +v 142.160446 187.701431 -0.600000 +v 142.454849 187.538727 -0.600000 +v 142.729187 187.344116 -0.600000 +v 142.980148 187.119843 -0.600000 +v 147.514221 182.585785 -0.600000 +v 147.710892 182.413300 -0.600000 +v 147.928421 182.267960 -0.600000 +v 148.163055 182.152237 -0.600000 +v 148.410797 182.068146 -0.600000 +v 148.667389 182.017105 -0.600000 +v 55.436195 -8.087358 0.000000 +v 181.982834 -7.393232 0.000000 +v 57.954765 -7.065864 0.000000 +v 179.211777 -6.931783 0.000000 +v 174.789474 -6.931783 0.000000 +v 179.342834 -6.916994 0.000000 +v 179.467133 -6.873447 0.000000 +v 179.578568 -6.803397 0.000000 +v 179.671616 -6.710354 0.000000 +v 179.741653 -6.598929 0.000000 +v 179.785217 -6.474618 0.000000 +v 181.931702 -7.649953 0.000000 +v 181.982834 -7.393236 -0.600000 +v 181.847534 -7.897660 0.000000 +v 181.931702 -7.649961 -0.600000 +v 181.731812 -8.132153 0.000000 +v 181.847534 -7.897669 -0.600000 +v 55.695721 -8.322548 0.000000 +v 181.586548 -8.349481 0.000000 +v 181.731812 -8.132162 -0.600000 +v 55.976562 -8.530794 0.000000 +v 181.414200 -8.545978 0.000000 +v 181.586548 -8.349491 -0.600000 +v 56.276600 -8.710651 0.000000 +v 181.217712 -8.718324 0.000000 +v 181.414200 -8.545987 -0.600000 +v 56.593052 -8.860345 0.000000 +v 181.000381 -8.863596 0.000000 +v 181.217697 -8.718331 -0.600000 +v 56.922668 -8.978261 0.000000 +v 180.765884 -8.979314 0.000000 +v 181.000366 -8.863602 -0.600000 +v 57.262009 -9.063243 0.000000 +v 180.518173 -9.063482 0.000000 +v 180.765869 -8.979318 -0.600000 +v 57.607841 -9.114575 0.000000 +v 180.261459 -9.114618 0.000000 +v 180.518173 -9.063484 -0.600000 +v 57.957661 -9.131783 0.000000 +v 180.000000 -9.131783 0.000000 +v 180.261444 -9.114618 -0.600000 +v 180.000000 -9.131783 -0.600000 +v 57.957661 -9.131783 -0.600000 +v 57.607841 -9.114575 -0.600000 +v 57.262009 -9.063243 -0.600000 +v 56.922668 -8.978261 -0.600000 +v 56.593052 -8.860345 -0.600000 +v 56.276600 -8.710651 -0.600000 +v 55.976562 -8.530794 -0.600000 +v 55.695721 -8.322548 -0.600000 +v 56.531078 -5.102371 0.000000 +v 50.393261 -3.044425 0.000000 +v 55.436195 -8.087358 -0.600000 +v 56.476082 -5.331511 0.000000 +v 56.457661 -5.565891 0.000000 +v 56.476318 -5.801738 0.000000 +v 56.531746 -6.031444 0.000000 +v 56.622189 -6.248860 0.000000 +v 56.744408 -6.447986 0.000000 +v 56.897247 -6.626748 0.000000 +v 57.076130 -6.779497 0.000000 +v 57.276272 -6.902172 0.000000 +v 57.492882 -6.992045 0.000000 +v 57.720848 -7.047056 0.000000 +v 50.393261 -3.044425 -0.600000 +v 57.726280 -4.083871 0.000000 +v 57.960556 -4.065919 0.000000 +v 162.322479 -3.147059 0.000000 +v 57.497280 -4.138318 0.000000 +v 57.279163 -4.228147 0.000000 +v 57.077423 -4.351354 0.000000 +v 56.897232 -4.505049 0.000000 +v 56.743641 -4.684847 0.000000 +v 56.621258 -4.884737 0.000000 +v 162.721313 -2.828995 0.000000 +v 162.597000 -2.872542 0.000000 +v 162.485580 -2.942592 0.000000 +v 162.392532 -3.035635 0.000000 +v 50.133736 -2.809235 -0.600000 +v 49.852898 -2.600989 -0.600000 +v 49.552856 -2.421132 -0.600000 +v 49.236404 -2.271438 -0.600000 +v 48.906788 -2.153522 -0.600000 +v 48.567451 -2.068540 -0.600000 +v 48.221615 -2.017208 -0.600000 +v 47.871796 -2.000000 -0.600000 +v 0.000000 -2.000000 -0.600000 +v -0.261453 -1.982835 -0.600000 +v -0.518178 -1.931700 -0.600000 +v -0.765886 -1.847531 -0.600000 +v -1.000380 -1.731813 -0.600000 +v -1.217708 -1.586541 -0.600000 +v -1.414204 -1.414195 -0.600000 +v -1.586549 -1.217698 -0.600000 +v -1.731819 -1.000370 -0.600000 +v -1.847535 -0.765877 -0.600000 +v -1.931701 -0.518171 -0.600000 +v 162.264145 -3.402431 0.000000 +v 59.439003 -5.330044 0.000000 +v 59.457661 -5.565891 0.000000 +v 59.457661 -5.565891 -0.600000 +v 59.439240 -5.800272 0.000000 +v 59.439003 -5.801738 -0.600000 +v 59.383575 -5.100339 0.000000 +v 59.384243 -5.102371 -0.600000 +v 59.439240 -5.331511 -0.600000 +v 59.293133 -4.882923 0.000000 +v 59.294064 -4.884737 -0.600000 +v 59.170914 -4.683797 0.000000 +v 59.171680 -4.684847 -0.600000 +v 59.018074 -4.505035 0.000000 +v 59.018089 -4.505049 -0.600000 +v 58.839191 -4.352286 0.000000 +v 58.639050 -4.229611 0.000000 +v 58.837898 -4.351354 -0.600000 +v 58.422440 -4.139738 0.000000 +v 58.636158 -4.228147 -0.600000 +v 58.194473 -4.084727 0.000000 +v 58.418041 -4.138318 -0.600000 +v 58.189041 -4.083871 -0.600000 +v 57.954765 -4.065919 -0.600000 +v 162.278931 -3.271371 0.000000 +v 57.720848 -4.084727 -0.600000 +v 57.492882 -4.139738 -0.600000 +v 57.276272 -4.229611 -0.600000 +v 57.076130 -4.352286 -0.600000 +v 56.744408 -4.683797 -0.600000 +v 56.897247 -4.505035 -0.600000 +v 56.622189 -4.882923 -0.600000 +v 56.531746 -5.100339 -0.600000 +v 56.476318 -5.330044 -0.600000 +v 56.457661 -5.565891 -0.600000 +v 56.531078 -6.029412 -0.600000 +v 56.476082 -5.800272 -0.600000 +v 56.621258 -6.247046 -0.600000 +v 56.743641 -6.446936 -0.600000 +v 56.897232 -6.626734 -0.600000 +v 57.077423 -6.780429 -0.600000 +v 57.279163 -6.903636 -0.600000 +v 57.497280 -6.993465 -0.600000 +v 57.726280 -7.047912 -0.600000 +v 170.925842 -6.931783 0.000000 +v 57.960556 -7.065864 -0.600000 +v 58.189041 -7.047912 0.000000 +v 162.852371 -6.931783 0.000000 +v 58.194473 -7.047056 -0.600000 +v 58.418041 -6.993465 0.000000 +v 162.721298 -6.916993 0.000000 +v 58.636158 -6.903636 0.000000 +v 58.422440 -6.992045 -0.600000 +v 162.485565 -6.803391 0.000000 +v 58.837898 -6.780429 0.000000 +v 58.639050 -6.902172 -0.600000 +v 162.597000 -6.873444 0.000000 +v 162.392532 -6.710347 0.000000 +v 59.018089 -6.626734 0.000000 +v 58.839191 -6.779497 -0.600000 +v 162.278931 -6.474614 0.000000 +v 59.171680 -6.446936 0.000000 +v 59.170914 -6.447986 -0.600000 +v 162.322479 -6.598922 0.000000 +v 59.018074 -6.626748 -0.600000 +v 162.264145 -6.343558 0.000000 +v 59.294064 -6.247046 0.000000 +v 59.293133 -6.248860 -0.600000 +v 59.384243 -6.029412 0.000000 +v 59.383575 -6.031444 -0.600000 +v 179.211777 -2.814206 -0.600000 +v 179.342834 -2.828995 -0.600000 +v 167.351654 -2.819277 0.000000 +v 171.047104 -2.828715 0.000000 +v 171.138290 -2.814206 -0.600000 +v 167.499771 -2.858983 0.000000 +v 170.965240 -2.870517 0.000000 +v 171.047104 -2.828715 -0.600000 +v 167.426849 -2.834250 0.000000 +v 167.568832 -2.893058 0.000000 +v 170.900497 -2.935263 0.000000 +v 170.965240 -2.870517 -0.600000 +v 167.690613 -2.986493 0.000000 +v 170.858688 -3.017124 0.000000 +v 170.900497 -2.935263 -0.600000 +v 167.632584 -2.935639 0.000000 +v 170.844177 -3.108319 0.000000 +v 170.858688 -3.017124 -0.600000 +v 171.133820 -6.429701 0.000000 +v 170.854202 -3.184409 0.000000 +v 170.844177 -3.108319 -0.600000 +v 170.883606 -3.255397 0.000000 +v 170.854202 -3.184409 -0.600000 +v 170.930328 -3.316288 0.000000 +v 170.883606 -3.255397 -0.600000 +v 171.219955 -6.637671 0.000000 +v 174.373535 -6.759496 0.000000 +v 170.930328 -3.316288 -0.600000 +v 171.209946 -6.561580 0.000000 +v 171.180542 -6.490592 0.000000 +v 171.163651 -6.810726 0.000000 +v 174.431549 -6.810350 0.000000 +v 174.373535 -6.759496 -0.600000 +v 171.205460 -6.728865 0.000000 +v 174.495316 -6.852931 0.000000 +v 174.431549 -6.810350 -0.600000 +v 171.098907 -6.875472 0.000000 +v 174.564362 -6.887006 0.000000 +v 174.495316 -6.852931 -0.600000 +v 171.017044 -6.917274 0.000000 +v 174.637283 -6.911739 0.000000 +v 174.564362 -6.887006 -0.600000 +v 174.712479 -6.926712 0.000000 +v 174.637283 -6.911739 -0.600000 +v 174.712479 -6.926712 -0.600000 +v 174.789474 -6.931783 -0.600000 +v 179.211777 -6.931783 -0.600000 +v 179.342834 -6.916993 -0.600000 +v 179.467148 -6.873444 -0.600000 +v 179.578568 -6.803391 -0.600000 +v 179.671616 -6.710347 -0.600000 +v 179.741669 -6.598922 -0.600000 +v 179.785217 -6.474614 -0.600000 +v 179.800003 -6.343558 -0.600000 +v 179.800003 -3.402431 -0.600000 +v 179.785217 -3.271371 -0.600000 +v 179.578568 -2.942592 -0.600000 +v 179.467133 -2.872542 -0.600000 +v 167.274673 -2.814206 -0.600000 +v 167.351654 -2.819277 -0.600000 +v 162.852371 -2.814206 -0.600000 +v 162.721298 -2.828996 -0.600000 +v 162.597000 -2.872545 -0.600000 +v 162.485565 -2.942598 -0.600000 +v 162.392532 -3.035642 -0.600000 +v 162.322479 -3.147067 -0.600000 +v 162.278931 -3.271375 -0.600000 +v 162.264145 -3.402431 -0.600000 +v 162.264145 -6.343558 -0.600000 +v 162.278931 -6.474618 -0.600000 +v 162.322479 -6.598929 -0.600000 +v 162.392532 -6.710354 -0.600000 +v 162.485580 -6.803397 -0.600000 +v 162.597000 -6.873447 -0.600000 +v 162.721313 -6.916994 -0.600000 +v 162.852371 -6.931783 -0.600000 +v 170.925842 -6.931783 -0.600000 +v 171.017044 -6.917274 -0.600000 +v 171.098907 -6.875472 -0.600000 +v 171.163651 -6.810726 -0.600000 +v 171.205460 -6.728865 -0.600000 +v 171.219955 -6.637671 -0.600000 +v 171.209946 -6.561580 -0.600000 +v 171.180542 -6.490592 -0.600000 +v 171.133820 -6.429701 -0.600000 +v 167.690613 -2.986493 -0.600000 +v 167.632584 -2.935639 -0.600000 +v 167.568832 -2.893058 -0.600000 +v 167.499771 -2.858983 -0.600000 +v 167.426849 -2.834250 -0.600000 +vn 0.9978 0.0656 -0.0000 +vn -0.0000 -0.0000 1.0000 +vn 0.9979 0.0654 -0.0000 +vn 1.0000 -0.0000 -0.0000 +vn 0.9807 0.1954 -0.0000 +vn 0.9807 0.1953 -0.0000 +vn 0.9469 0.3217 -0.0000 +vn 0.9468 0.3218 -0.0000 +vn 0.8968 0.4425 -0.0000 +vn 0.8967 0.4426 -0.0000 +vn 0.8314 0.5557 -0.0000 +vn 0.7518 0.6594 -0.0000 +vn 0.6594 0.7518 -0.0000 +vn 0.5557 0.8314 -0.0000 +vn 0.4425 0.8968 -0.0000 +vn 0.3217 0.9468 -0.0000 +vn 0.3218 0.9468 -0.0000 +vn 0.1953 0.9807 -0.0000 +vn 0.1954 0.9807 -0.0000 +vn 0.0655 0.9979 -0.0000 +vn -0.0000 1.0000 -0.0000 +vn -0.0000 -0.0000 -1.0000 +vn -1.0000 -0.0000 -0.0000 +vn -0.9979 -0.0655 -0.0000 +vn -0.9979 0.0655 -0.0000 +vn -0.9807 0.1953 -0.0000 +vn -0.9468 0.3217 -0.0000 +vn -0.9807 0.1954 -0.0000 +vn -0.8968 0.4425 -0.0000 +vn -0.8314 0.5557 -0.0000 +vn -0.7518 0.6594 -0.0000 +vn -0.6594 0.7518 -0.0000 +vn -0.5557 0.8314 -0.0000 +vn -0.4425 0.8967 -0.0000 +vn -0.3217 0.9468 -0.0000 +vn -0.1953 0.9807 -0.0000 +vn -0.0655 0.9979 -0.0000 +vn -0.0654 0.9979 -0.0000 +vn -0.1951 0.9808 -0.0000 +vn -0.3214 0.9469 -0.0000 +vn -0.4423 0.8969 -0.0000 +vn -0.5556 0.8315 -0.0000 +vn -0.6593 0.7518 -0.0000 +vn -0.7071 0.7071 -0.0000 +vn -0.6663 0.7457 -0.0000 +vn -0.5786 0.8156 -0.0000 +vn -0.6664 0.7456 -0.0000 +vn -0.4837 0.8752 -0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.2769 0.9609 -0.0000 +vn -0.1676 0.9859 -0.0000 +vn -0.0561 0.9984 -0.0000 +vn 0.0561 0.9984 -0.0000 +vn 0.1676 0.9859 -0.0000 +vn 0.2769 0.9609 -0.0000 +vn 0.3827 0.9239 -0.0000 +vn 0.4837 0.8752 -0.0000 +vn 0.5786 0.8156 -0.0000 +vn 0.6663 0.7457 -0.0000 +vn 0.7071 0.7071 -0.0000 +vn 0.6715 0.7410 -0.0000 +vn 0.5956 0.8033 -0.0000 +vn 0.5142 0.8577 -0.0000 +vn 0.4276 0.9040 -0.0000 +vn 0.3368 0.9416 -0.0000 +vn 0.2429 0.9700 -0.0000 +vn 0.1468 0.9892 -0.0000 +vn 0.0491 0.9988 -0.0000 +vn -0.0491 0.9988 -0.0000 +vn -0.1468 0.9892 -0.0000 +vn -0.2429 0.9700 -0.0000 +vn -0.3369 0.9416 -0.0000 +vn -0.4276 0.9040 -0.0000 +vn -0.3368 0.9416 -0.0000 +vn -0.5141 0.8577 -0.0000 +vn -0.5956 0.8033 -0.0000 +vn -0.5142 0.8577 -0.0000 +vn -0.6715 0.7410 -0.0000 +vn 0.3826 0.9239 -0.0000 +vn 0.6664 0.7456 -0.0000 +vn 0.5556 0.8315 -0.0000 +vn 0.6593 0.7518 -0.0000 +vn 0.4423 0.8969 -0.0000 +vn 0.5555 0.8315 -0.0000 +vn 0.3214 0.9469 -0.0000 +vn 0.4424 0.8968 -0.0000 +vn 0.1951 0.9808 -0.0000 +vn 0.0654 0.9979 -0.0000 +vn 0.9979 -0.0654 -0.0000 +vn 0.9807 -0.1953 -0.0000 +vn 0.9978 -0.0656 -0.0000 +vn 0.9468 -0.3218 -0.0000 +vn 0.9807 -0.1954 -0.0000 +vn 0.8967 -0.4426 -0.0000 +vn 0.9469 -0.3217 -0.0000 +vn 0.8314 -0.5557 -0.0000 +vn 0.8968 -0.4425 -0.0000 +vn 0.7517 -0.6595 -0.0000 +vn 0.6594 -0.7518 -0.0000 +vn 0.7518 -0.6593 -0.0000 +vn 0.5557 -0.8314 -0.0000 +vn 0.4425 -0.8968 -0.0000 +vn 0.3218 -0.9468 -0.0000 +vn 0.1954 -0.9807 -0.0000 +vn 0.3217 -0.9468 -0.0000 +vn 0.0655 -0.9979 -0.0000 +vn 0.1953 -0.9807 -0.0000 +vn -0.0000 -1.0000 -0.0000 +vn -0.0491 -0.9988 -0.0000 +vn -0.1468 -0.9892 -0.0000 +vn -0.2429 -0.9700 -0.0000 +vn -0.3368 -0.9416 -0.0000 +vn -0.4276 -0.9040 -0.0000 +vn -0.5141 -0.8577 -0.0000 +vn -0.5956 -0.8033 -0.0000 +vn -0.6715 -0.7410 -0.0000 +vn -0.7071 -0.7071 -0.0000 +vn -0.0655 -0.9979 -0.0000 +vn -0.1953 -0.9807 -0.0000 +vn -0.3217 -0.9468 -0.0000 +vn -0.4425 -0.8968 -0.0000 +vn -0.5557 -0.8314 -0.0000 +vn -0.6594 -0.7518 -0.0000 +vn -0.7518 -0.6594 -0.0000 +vn -0.8314 -0.5557 -0.0000 +vn -0.8968 -0.4425 -0.0000 +vn -0.9468 -0.3217 -0.0000 +vn -0.9807 -0.1953 -0.0000 +vn -0.9969 -0.0788 -0.0000 +vn -0.9969 0.0784 0.0002 +vn -0.9969 0.0788 -0.0000 +vn -0.9721 -0.2345 -0.0003 +vn -0.9969 -0.0784 -0.0002 +vn -0.9724 -0.2334 0.0002 +vn -0.9233 -0.3841 -0.0003 +vn -0.9238 -0.3828 0.0003 +vn -0.8523 -0.5231 -0.0002 +vn -0.8528 -0.5222 0.0003 +vn -0.7601 -0.6499 -0.0000 +vn -0.7604 -0.6495 0.0002 +vn -0.6494 -0.7605 -0.0000 +vn -0.5226 -0.8526 -0.0002 +vn -0.6490 -0.7608 0.0002 +vn -0.3832 -0.9237 -0.0004 +vn -0.5212 -0.8534 0.0004 +vn -0.2346 -0.9721 -0.0006 +vn -0.3808 -0.9247 0.0006 +vn -0.0801 -0.9968 -0.0007 +vn -0.2313 -0.9729 0.0007 +vn 0.0764 -0.9971 -0.0007 +vn -0.0764 -0.9971 0.0007 +vn 0.2313 -0.9729 -0.0007 +vn 0.0801 -0.9968 0.0007 +vn 0.3808 -0.9246 -0.0006 +vn 0.2346 -0.9721 0.0006 +vn 0.5212 -0.8534 -0.0004 +vn 0.3832 -0.9237 0.0004 +vn 0.6489 -0.7608 -0.0002 +vn 0.5226 -0.8526 0.0002 +vn 0.7603 -0.6495 -0.0002 +vn 0.7601 -0.6498 -0.0000 +vn 0.6494 -0.7605 -0.0000 +vn 0.8528 -0.5222 -0.0003 +vn 0.8523 -0.5231 0.0002 +vn 0.9238 -0.3828 -0.0003 +vn 0.9233 -0.3841 0.0003 +vn 0.9724 -0.2334 -0.0002 +vn 0.9721 -0.2345 0.0003 +vn 0.9969 -0.0784 0.0002 +vn 0.9969 0.0788 -0.0000 +vn 0.9969 -0.0788 -0.0000 +vn 0.9721 0.2345 -0.0003 +vn 0.9724 0.2334 0.0002 +vn 0.9969 0.0784 -0.0002 +vn 0.9233 0.3841 -0.0003 +vn 0.9238 0.3828 0.0003 +vn 0.8523 0.5231 -0.0002 +vn 0.8528 0.5222 0.0003 +vn 0.7601 0.6498 -0.0000 +vn 0.7603 0.6495 0.0002 +vn 0.6494 0.7605 -0.0000 +vn 0.5226 0.8526 -0.0002 +vn 0.6489 0.7608 0.0002 +vn 0.3832 0.9237 -0.0004 +vn 0.5212 0.8534 0.0004 +vn 0.2346 0.9721 -0.0006 +vn 0.3808 0.9246 0.0006 +vn 0.0801 0.9968 -0.0007 +vn 0.2313 0.9729 0.0007 +vn -0.0764 0.9971 -0.0007 +vn 0.0764 0.9971 0.0007 +vn -0.2313 0.9729 -0.0007 +vn -0.0801 0.9968 0.0007 +vn -0.3808 0.9247 -0.0006 +vn -0.2346 0.9721 0.0006 +vn -0.5212 0.8534 -0.0004 +vn -0.3832 0.9237 0.0004 +vn -0.6490 0.7608 -0.0002 +vn -0.5226 0.8526 0.0002 +vn -0.7604 0.6495 -0.0002 +vn -0.7601 0.6499 -0.0000 +vn -0.6494 0.7605 -0.0000 +vn -0.8528 0.5222 -0.0003 +vn -0.8523 0.5231 0.0002 +vn -0.9238 0.3828 -0.0003 +vn -0.9233 0.3841 0.0003 +vn -0.9724 0.2334 -0.0002 +vn -0.9721 0.2345 0.0003 +vn -0.1121 -0.9937 -0.0000 +vn 0.1572 -0.9876 -0.0000 +vn 0.4548 -0.8906 -0.0000 +vn 0.1571 -0.9876 -0.0000 +vn 0.7071 -0.7071 -0.0000 +vn 0.8906 -0.4548 -0.0000 +vn 0.7072 -0.7070 -0.0000 +vn 0.9876 -0.1570 -0.0000 +vn 0.9914 0.1306 -0.0000 +vn 0.9875 -0.1575 -0.0000 +vn 0.9240 0.3823 -0.0000 +vn 0.9914 0.1309 -0.0000 +vn 0.7934 0.6087 -0.0000 +vn 0.9238 0.3829 -0.0000 +vn 0.7932 0.6089 -0.0000 +vn 0.6590 0.7521 -0.0000 +vn 0.5552 0.8317 -0.0000 +vn 0.6592 0.7520 -0.0000 +vn 0.4426 0.8967 -0.0000 +vn 0.5554 0.8316 -0.0000 +vn 0.3211 0.9470 -0.0000 +vn 0.3213 0.9470 -0.0000 +vn 0.0657 0.9978 -0.0000 +vn -0.1121 0.9937 -0.0000 +vn -0.3306 0.9438 -0.0000 +vn -0.5321 0.8467 -0.0000 +vn -0.3307 0.9437 -0.0000 +vn -0.5323 0.8466 -0.0000 +vn -0.8466 0.5322 -0.0000 +vn -0.7072 0.7070 -0.0000 +vn -0.9438 0.3306 -0.0000 +vn -0.8465 0.5324 -0.0000 +vn -0.9937 0.1120 -0.0000 +vn -0.9937 0.1122 -0.0000 +vn -0.9937 -0.1122 -0.0000 +vn -0.9438 -0.3306 -0.0000 +vn -0.9937 -0.1120 -0.0000 +vn -0.8465 -0.5324 -0.0000 +vn -0.9438 -0.3305 -0.0000 +vn -0.7072 -0.7070 -0.0000 +vn -0.8466 -0.5322 -0.0000 +vn -0.5323 -0.8466 -0.0000 +vn -0.3307 -0.9437 -0.0000 +vn -0.5321 -0.8467 -0.0000 +vn -0.3306 -0.9438 -0.0000 +vn -0.0658 -0.9978 -0.0000 +vn -0.0657 -0.9978 -0.0000 +vn 0.1121 -0.9937 -0.0000 +vn 0.3306 -0.9438 -0.0000 +vn 0.5323 -0.8466 -0.0000 +vn 0.7073 -0.7070 -0.0000 +vn 0.5321 -0.8467 -0.0000 +vn 0.8466 -0.5322 -0.0000 +vn 0.9437 -0.3307 -0.0000 +vn 0.8466 -0.5323 -0.0000 +vn 0.9937 -0.1120 -0.0000 +vn 0.9438 -0.3306 -0.0000 +vn 0.9937 -0.1122 -0.0000 +vn 0.9937 0.1122 -0.0000 +vn 0.9438 0.3306 -0.0000 +vn 0.9937 0.1120 -0.0000 +vn 0.8466 0.5323 -0.0000 +vn 0.9437 0.3307 -0.0000 +vn 0.8466 0.5322 -0.0000 +vn 0.5321 0.8467 -0.0000 +vn 0.7073 0.7070 -0.0000 +vn 0.3306 0.9438 -0.0000 +vn 0.5323 0.8466 -0.0000 +vn 0.1121 0.9937 -0.0000 +vn -0.1572 0.9876 -0.0000 +vn -0.4547 0.8907 -0.0000 +vn -0.1571 0.9876 -0.0000 +vn -0.7070 0.7073 -0.0000 +vn -0.4549 0.8905 -0.0000 +vn -0.8906 0.4548 -0.0000 +vn -0.9876 0.1570 -0.0000 +vn -0.9914 -0.1306 -0.0000 +vn -0.9239 -0.3826 -0.0000 +vn -0.9915 -0.1302 -0.0000 +vn -0.7934 -0.6087 -0.0000 +vn -0.9238 -0.3829 -0.0000 +vn -0.6590 -0.7521 -0.0000 +vn -0.5555 -0.8315 -0.0000 +vn -0.4424 -0.8968 -0.0000 +vn -0.5554 -0.8316 -0.0000 +vn -0.3212 -0.9470 -0.0000 +vn -0.4426 -0.8967 -0.0000 +vn -0.3211 -0.9470 -0.0000 +vn 0.0001 -0.0000 -1.0000 +vt 0.000000 0.000000 +vt 0.000000 0.959425 +vt 1.000000 0.959425 +vt 0.999907 0.960752 +vt 0.000000 0.046324 +vt 0.000093 0.044997 +vt 0.988044 0.014144 +vt 1.000000 0.010146 +vt 0.281809 0.033129 +vt 0.283336 0.032073 +vt 0.895937 0.032048 +vt 0.280179 0.034042 +vt 0.278459 0.034801 +vt 0.276667 0.035399 +vt 0.274823 0.035830 +vt 0.272944 0.036091 +vt 0.271042 0.036178 +vt 0.010870 0.036178 +vt 0.009449 0.036265 +vt 0.008053 0.036524 +vt 0.006707 0.036951 +vt 0.005433 0.037538 +vt 0.004252 0.038275 +vt 0.003184 0.039150 +vt 0.002247 0.040146 +vt 0.001458 0.041249 +vt 0.000829 0.042438 +vt 0.000371 0.043695 +vt 0.940969 0.032048 +vt 0.984847 0.032048 +vt 0.985559 0.031973 +vt 0.919971 0.032048 +vt 0.988044 0.029064 +vt 0.987963 0.029729 +vt 0.987727 0.030359 +vt 0.987346 0.030924 +vt 0.986840 0.031396 +vt 0.986235 0.031752 +vt 0.000093 0.960752 +vt 0.999629 0.962054 +vt 0.000371 0.962054 +vt 0.999171 0.963311 +vt 0.000829 0.963310 +vt 0.998542 0.964500 +vt 0.001458 0.964500 +vt 0.997753 0.965603 +vt 0.002247 0.965603 +vt 0.996816 0.966599 +vt 0.003184 0.966599 +vt 0.995748 0.967474 +vt 0.004252 0.967474 +vt 0.994567 0.968210 +vt 0.005433 0.968210 +vt 0.993293 0.968798 +vt 0.006707 0.968798 +vt 0.991947 0.969225 +vt 0.990551 0.969484 +vt 0.820263 0.969571 +vt 0.008053 0.969225 +vt 0.989130 0.969571 +vt 0.616539 0.969571 +vt 0.179737 0.969571 +vt 0.010870 0.969571 +vt 0.009449 0.969484 +vt 0.383461 0.969571 +vt 0.381329 0.969669 +vt 0.181156 0.969658 +vt 0.182550 0.969917 +vt 0.379220 0.969961 +vt 0.183896 0.970343 +vt 0.377151 0.970445 +vt 0.185172 0.970930 +vt 0.375142 0.971116 +vt 0.186354 0.971667 +vt 0.373213 0.971967 +vt 0.187423 0.972543 +vt 0.346631 0.995543 +vt 0.212064 0.995543 +vt 0.368089 0.975514 +vt 0.369671 0.974176 +vt 0.371384 0.972991 +vt 0.345267 0.996681 +vt 0.213428 0.996681 +vt 0.343776 0.997668 +vt 0.214919 0.997668 +vt 0.342176 0.998493 +vt 0.216519 0.998493 +vt 0.340488 0.999146 +vt 0.218208 0.999146 +vt 0.338731 0.999618 +vt 0.219965 0.999618 +vt 0.336929 0.999904 +vt 0.221767 0.999904 +vt 0.335102 1.000000 +vt 0.223593 1.000000 +vt 0.818845 0.969658 +vt 0.618672 0.969669 +vt 0.817450 0.969917 +vt 0.620780 0.969961 +vt 0.816104 0.970343 +vt 0.622849 0.970445 +vt 0.814829 0.970930 +vt 0.624858 0.971116 +vt 0.813646 0.971667 +vt 0.626787 0.971967 +vt 0.812577 0.972543 +vt 0.628616 0.972991 +vt 0.787936 0.995543 +vt 0.630329 0.974176 +vt 0.631911 0.975514 +vt 0.653369 0.995543 +vt 0.786572 0.996681 +vt 0.654733 0.996681 +vt 0.785081 0.997668 +vt 0.656224 0.997668 +vt 0.783481 0.998493 +vt 0.657824 0.998493 +vt 0.781792 0.999146 +vt 0.659513 0.999146 +vt 0.780035 0.999618 +vt 0.661269 0.999618 +vt 0.778233 0.999904 +vt 0.663071 0.999904 +vt 0.776407 1.000000 +vt 0.664898 1.000000 +vt 0.312153 0.005298 +vt 0.999907 0.008819 +vt 0.325841 0.010480 +vt 0.984847 0.011160 +vt 0.960812 0.011160 +vt 0.985559 0.011235 +vt 0.986234 0.011456 +vt 0.986840 0.011811 +vt 0.987346 0.012283 +vt 0.987726 0.012849 +vt 0.987963 0.013479 +vt 0.999629 0.007517 +vt 0.999171 0.006260 +vt 0.998542 0.005071 +vt 0.313564 0.004105 +vt 0.997753 0.003968 +vt 0.315090 0.003049 +vt 0.996816 0.002972 +vt 0.316721 0.002136 +vt 0.995749 0.002097 +vt 0.318441 0.001377 +vt 0.994567 0.001360 +vt 0.320232 0.000779 +vt 0.993293 0.000773 +vt 0.322076 0.000348 +vt 0.991947 0.000347 +vt 0.323956 0.000087 +vt 0.990551 0.000087 +vt 0.325857 0.000000 +vt 0.989130 0.000000 +vt 0.318104 0.020440 +vt 0.284746 0.030880 +vt 0.317805 0.019278 +vt 0.317705 0.018089 +vt 0.317806 0.016893 +vt 0.318107 0.015727 +vt 0.318599 0.014624 +vt 0.319263 0.013614 +vt 0.320094 0.012708 +vt 0.321066 0.011933 +vt 0.322154 0.011310 +vt 0.323331 0.010854 +vt 0.324570 0.010575 +vt 0.324599 0.025607 +vt 0.325873 0.025698 +vt 0.893057 0.030359 +vt 0.323355 0.025331 +vt 0.322169 0.024875 +vt 0.321073 0.024250 +vt 0.320094 0.023471 +vt 0.319259 0.022558 +vt 0.318594 0.021544 +vt 0.895225 0.031973 +vt 0.894549 0.031752 +vt 0.893943 0.031396 +vt 0.893438 0.030924 +vt 0.892740 0.029064 +vt 0.333908 0.019285 +vt 0.334009 0.018089 +vt 0.333909 0.016900 +vt 0.333606 0.020451 +vt 0.333115 0.021554 +vt 0.332451 0.022564 +vt 0.331620 0.023471 +vt 0.330648 0.024245 +vt 0.329560 0.024868 +vt 0.328383 0.025324 +vt 0.327144 0.025603 +vt 0.892820 0.029729 +vt 0.939814 0.011160 +vt 0.895937 0.011160 +vt 0.895224 0.011235 +vt 0.329544 0.011303 +vt 0.328359 0.010847 +vt 0.327114 0.010571 +vt 0.893943 0.011811 +vt 0.330641 0.011928 +vt 0.894549 0.011456 +vt 0.893438 0.012283 +vt 0.331620 0.012708 +vt 0.892820 0.013479 +vt 0.332455 0.013620 +vt 0.893057 0.012849 +vt 0.892740 0.014144 +vt 0.333120 0.014634 +vt 0.333610 0.015738 +vt 0.920389 0.032022 +vt 0.940473 0.031974 +vt 0.921194 0.031821 +vt 0.940029 0.031762 +vt 0.920798 0.031946 +vt 0.921570 0.031648 +vt 0.939677 0.031434 +vt 0.922232 0.031174 +vt 0.939449 0.031018 +vt 0.921916 0.031432 +vt 0.939371 0.030556 +vt 0.940945 0.013707 +vt 0.939425 0.030170 +vt 0.939585 0.029810 +vt 0.939839 0.029501 +vt 0.941413 0.012652 +vt 0.958552 0.012034 +vt 0.941358 0.013038 +vt 0.941199 0.013398 +vt 0.941107 0.011774 +vt 0.958867 0.011776 +vt 0.941334 0.012189 +vt 0.959214 0.011560 +vt 0.940755 0.011446 +vt 0.959589 0.011387 +vt 0.940310 0.011234 +vt 0.959985 0.011262 +vt 0.960394 0.011186 +s 0 +usemtl Material.001 +f 1/1/1 2/1/1 3/1/1 +f 4/2/2 3/3/2 2/4/2 +f 5/1/3 1/1/3 3/1/3 +f 6/1/4 5/1/4 3/1/4 +f 4/2/2 7/5/2 3/3/2 +f 8/6/2 3/3/2 7/5/2 +f 9/7/2 6/8/2 3/3/2 +f 10/9/2 11/10/2 3/3/2 +f 12/11/2 3/3/2 11/10/2 +f 13/12/2 10/9/2 3/3/2 +f 14/13/2 13/12/2 3/3/2 +f 15/14/2 14/13/2 3/3/2 +f 16/15/2 15/14/2 3/3/2 +f 17/16/2 16/15/2 3/3/2 +f 18/17/2 17/16/2 3/3/2 +f 19/18/2 18/17/2 3/3/2 +f 20/19/2 19/18/2 3/3/2 +f 21/20/2 20/19/2 3/3/2 +f 22/21/2 21/20/2 3/3/2 +f 23/22/2 22/21/2 3/3/2 +f 24/23/2 23/22/2 3/3/2 +f 25/24/2 24/23/2 3/3/2 +f 26/25/2 25/24/2 3/3/2 +f 27/26/2 26/25/2 3/3/2 +f 28/27/2 27/26/2 3/3/2 +f 29/28/2 28/27/2 3/3/2 +f 8/6/2 29/28/2 3/3/2 +f 30/29/2 31/30/2 3/3/2 +f 32/31/2 3/3/2 31/30/2 +f 33/32/2 30/29/2 3/3/2 +f 34/33/2 9/7/2 3/3/2 +f 35/34/2 34/33/2 3/3/2 +f 36/35/2 35/34/2 3/3/2 +f 37/36/2 36/35/2 3/3/2 +f 38/37/2 37/36/2 3/3/2 +f 39/38/2 38/37/2 3/3/2 +f 32/31/2 39/38/2 3/3/2 +f 12/11/2 33/32/2 3/3/2 +f 40/1/5 41/1/5 2/1/5 +f 42/39/2 2/4/2 41/40/2 +f 1/1/6 40/1/6 2/1/6 +f 42/39/2 4/2/2 2/4/2 +f 43/1/7 44/1/7 41/1/7 +f 45/41/2 41/40/2 44/42/2 +f 40/1/8 43/1/8 41/1/8 +f 45/41/2 42/39/2 41/40/2 +f 46/1/9 47/1/9 44/1/9 +f 48/43/2 44/42/2 47/44/2 +f 43/1/10 46/1/10 44/1/10 +f 48/43/2 45/41/2 44/42/2 +f 49/1/11 50/1/11 47/1/11 +f 51/45/2 47/44/2 50/46/2 +f 46/1/11 49/1/11 47/1/11 +f 51/45/2 48/43/2 47/44/2 +f 52/1/12 53/1/12 50/1/12 +f 54/47/2 50/46/2 53/48/2 +f 49/1/12 52/1/12 50/1/12 +f 54/47/2 51/45/2 50/46/2 +f 55/1/13 56/1/13 53/1/13 +f 57/49/2 53/48/2 56/50/2 +f 52/1/13 55/1/13 53/1/13 +f 57/49/2 54/47/2 53/48/2 +f 58/1/14 59/1/14 56/1/14 +f 60/51/2 56/50/2 59/52/2 +f 55/1/14 58/1/14 56/1/14 +f 60/51/2 57/49/2 56/50/2 +f 61/1/15 62/1/15 59/1/15 +f 63/53/2 59/52/2 62/54/2 +f 58/1/15 61/1/15 59/1/15 +f 63/53/2 60/51/2 59/52/2 +f 64/1/16 65/1/16 62/1/16 +f 66/55/2 62/54/2 65/56/2 +f 61/1/17 64/1/17 62/1/17 +f 66/55/2 63/53/2 62/54/2 +f 67/1/18 68/1/18 65/1/18 +f 65/56/2 68/57/2 69/58/2 +f 64/1/19 67/1/19 65/1/19 +f 70/59/2 66/55/2 65/56/2 +f 71/1/20 72/1/20 68/1/20 +f 68/57/2 72/60/2 69/58/2 +f 67/1/20 71/1/20 68/1/20 +f 65/56/2 69/58/2 73/61/2 +f 74/1/21 72/1/21 71/1/21 +f 73/61/2 70/59/2 65/56/2 +f 74/1/21 69/1/21 72/1/21 +f 74/1/22 71/1/22 67/1/22 +f 75/1/22 76/1/22 77/1/22 +f 74/1/22 67/1/22 64/1/22 +f 64/1/22 78/1/22 74/1/22 +f 64/1/22 77/1/22 78/1/22 +f 77/1/22 64/1/22 75/1/22 +f 79/1/22 80/1/22 76/1/22 +f 75/1/22 64/1/22 61/1/22 +f 75/1/22 79/1/22 76/1/22 +f 81/1/22 61/1/22 58/1/22 +f 81/1/22 75/1/22 61/1/22 +f 82/1/22 58/1/22 55/1/22 +f 82/1/22 81/1/22 58/1/22 +f 83/1/22 55/1/22 52/1/22 +f 83/1/22 82/1/22 55/1/22 +f 84/1/22 52/1/22 49/1/22 +f 84/1/22 83/1/22 52/1/22 +f 85/1/22 49/1/22 46/1/22 +f 85/1/22 84/1/22 49/1/22 +f 86/1/22 46/1/22 43/1/22 +f 86/1/22 85/1/22 46/1/22 +f 87/1/22 43/1/22 40/1/22 +f 87/1/22 86/1/22 43/1/22 +f 88/1/22 40/1/22 1/1/22 +f 88/1/22 87/1/22 40/1/22 +f 89/1/22 1/1/22 5/1/22 +f 89/1/22 88/1/22 1/1/22 +f 90/1/4 5/1/4 6/1/4 +f 89/1/22 5/1/22 91/1/22 +f 92/1/22 91/1/22 5/1/22 +f 93/1/22 5/1/22 90/1/22 +f 93/1/22 92/1/22 5/1/22 +f 94/1/23 7/1/23 4/1/23 +f 95/1/24 8/1/24 7/1/24 +f 94/1/24 95/1/24 7/1/24 +f 91/1/25 4/1/25 42/1/25 +f 91/1/23 94/1/23 4/1/23 +f 89/1/26 42/1/26 45/1/26 +f 89/1/25 91/1/25 42/1/25 +f 88/1/27 45/1/27 48/1/27 +f 89/1/28 45/1/28 88/1/28 +f 87/1/29 48/1/29 51/1/29 +f 88/1/27 48/1/27 87/1/27 +f 86/1/30 51/1/30 54/1/30 +f 87/1/29 51/1/29 86/1/29 +f 85/1/31 54/1/31 57/1/31 +f 86/1/30 54/1/30 85/1/30 +f 84/1/32 57/1/32 60/1/32 +f 85/1/31 57/1/31 84/1/31 +f 83/1/33 60/1/33 63/1/33 +f 84/1/32 60/1/32 83/1/32 +f 82/1/34 63/1/34 66/1/34 +f 83/1/33 63/1/33 82/1/33 +f 81/1/35 66/1/35 70/1/35 +f 82/1/34 66/1/34 81/1/34 +f 75/1/36 70/1/36 96/1/36 +f 81/1/35 70/1/35 75/1/35 +f 97/62/2 98/63/2 96/64/2 +f 79/1/37 96/1/37 98/1/37 +f 97/62/2 96/64/2 70/59/2 +f 70/59/2 99/65/2 97/62/2 +f 70/59/2 73/61/2 99/65/2 +f 75/1/36 96/1/36 79/1/36 +f 80/1/21 98/1/21 97/1/21 +f 79/1/37 98/1/37 80/1/37 +f 100/66/2 101/67/2 97/62/2 +f 76/1/38 97/1/38 101/1/38 +f 99/65/2 100/66/2 97/62/2 +f 80/1/21 97/1/21 76/1/21 +f 100/66/2 102/68/2 101/67/2 +f 103/1/39 101/1/39 102/1/39 +f 76/1/38 101/1/38 103/1/38 +f 104/69/2 105/70/2 102/68/2 +f 106/1/40 102/1/40 105/1/40 +f 100/66/2 104/69/2 102/68/2 +f 103/1/39 102/1/39 106/1/39 +f 107/71/2 108/72/2 105/70/2 +f 109/1/41 105/1/41 108/1/41 +f 104/69/2 107/71/2 105/70/2 +f 106/1/40 105/1/40 109/1/40 +f 110/73/2 111/74/2 108/72/2 +f 112/1/42 108/1/42 111/1/42 +f 107/71/2 110/73/2 108/72/2 +f 109/1/41 108/1/41 112/1/41 +f 113/75/2 114/76/2 111/74/2 +f 115/1/43 111/1/43 114/1/43 +f 110/73/2 113/75/2 111/74/2 +f 112/1/42 111/1/42 115/1/42 +f 116/77/2 117/78/2 114/76/2 +f 118/1/44 114/1/44 117/1/44 +f 119/79/2 116/77/2 114/76/2 +f 120/80/2 119/79/2 114/76/2 +f 121/81/2 120/80/2 114/76/2 +f 113/75/2 121/81/2 114/76/2 +f 115/1/43 114/1/43 118/1/43 +f 122/82/2 123/83/2 117/78/2 +f 124/1/45 117/1/45 123/1/45 +f 116/77/2 122/82/2 117/78/2 +f 118/1/44 117/1/44 124/1/44 +f 125/84/2 126/85/2 123/83/2 +f 127/1/46 123/1/46 126/1/46 +f 122/82/2 125/84/2 123/83/2 +f 124/1/47 123/1/47 127/1/47 +f 128/86/2 129/87/2 126/85/2 +f 130/1/48 126/1/48 129/1/48 +f 125/84/2 128/86/2 126/85/2 +f 127/1/46 126/1/46 130/1/46 +f 131/88/2 132/89/2 129/87/2 +f 133/1/49 129/1/49 132/1/49 +f 128/86/2 131/88/2 129/87/2 +f 130/1/48 129/1/48 133/1/48 +f 134/90/2 135/91/2 132/89/2 +f 136/1/50 132/1/50 135/1/50 +f 131/88/2 134/90/2 132/89/2 +f 133/1/49 132/1/49 136/1/49 +f 137/92/2 138/93/2 135/91/2 +f 139/1/51 135/1/51 138/1/51 +f 134/90/2 137/92/2 135/91/2 +f 136/1/50 135/1/50 139/1/50 +f 140/94/2 141/95/2 138/93/2 +f 142/1/52 138/1/52 141/1/52 +f 137/92/2 140/94/2 138/93/2 +f 139/1/51 138/1/51 142/1/51 +f 143/1/21 141/1/21 140/1/21 +f 142/1/52 141/1/52 143/1/52 +f 144/1/53 140/1/53 137/1/53 +f 143/1/21 140/1/21 144/1/21 +f 145/1/54 137/1/54 134/1/54 +f 144/1/53 137/1/53 145/1/53 +f 146/1/55 134/1/55 131/1/55 +f 145/1/54 134/1/54 146/1/54 +f 147/1/56 131/1/56 128/1/56 +f 146/1/55 131/1/55 147/1/55 +f 148/1/57 128/1/57 125/1/57 +f 147/1/56 128/1/56 148/1/56 +f 149/1/58 125/1/58 122/1/58 +f 148/1/57 125/1/57 149/1/57 +f 150/1/59 122/1/59 116/1/59 +f 149/1/58 122/1/58 150/1/58 +f 151/1/60 116/1/60 119/1/60 +f 150/1/59 116/1/59 151/1/59 +f 152/1/61 119/1/61 120/1/61 +f 151/1/60 119/1/60 152/1/60 +f 153/1/62 120/1/62 121/1/62 +f 152/1/61 120/1/61 153/1/61 +f 154/1/63 121/1/63 113/1/63 +f 153/1/62 121/1/62 154/1/62 +f 155/1/64 113/1/64 110/1/64 +f 154/1/63 113/1/63 155/1/63 +f 156/1/65 110/1/65 107/1/65 +f 155/1/64 110/1/64 156/1/64 +f 157/1/66 107/1/66 104/1/66 +f 156/1/65 107/1/65 157/1/65 +f 158/1/67 104/1/67 100/1/67 +f 157/1/66 104/1/66 158/1/66 +f 159/1/68 100/1/68 99/1/68 +f 158/1/67 100/1/67 159/1/67 +f 77/1/21 99/1/21 73/1/21 +f 159/1/68 99/1/68 77/1/68 +f 160/96/2 161/97/2 73/61/2 +f 78/1/69 73/1/69 161/1/69 +f 69/58/2 160/96/2 73/61/2 +f 77/1/21 73/1/21 78/1/21 +f 162/98/2 163/99/2 161/97/2 +f 164/1/70 161/1/70 163/1/70 +f 160/96/2 162/98/2 161/97/2 +f 78/1/69 161/1/69 164/1/69 +f 165/100/2 166/101/2 163/99/2 +f 167/1/71 163/1/71 166/1/71 +f 162/98/2 165/100/2 163/99/2 +f 164/1/70 163/1/70 167/1/70 +f 168/102/2 169/103/2 166/101/2 +f 170/1/72 166/1/72 169/1/72 +f 165/100/2 168/102/2 166/101/2 +f 167/1/71 166/1/71 170/1/71 +f 171/104/2 172/105/2 169/103/2 +f 173/1/73 169/1/73 172/1/73 +f 168/102/2 171/104/2 169/103/2 +f 170/1/74 169/1/74 173/1/74 +f 174/106/2 175/107/2 172/105/2 +f 176/1/75 172/1/75 175/1/75 +f 171/104/2 174/106/2 172/105/2 +f 173/1/73 172/1/73 176/1/73 +f 177/108/2 178/109/2 175/107/2 +f 179/1/76 175/1/76 178/1/76 +f 174/106/2 177/108/2 175/107/2 +f 176/1/77 175/1/77 179/1/77 +f 177/108/2 180/110/2 178/109/2 +f 181/1/78 178/1/78 180/1/78 +f 179/1/76 178/1/76 181/1/76 +f 177/108/2 182/111/2 180/110/2 +f 183/1/44 180/1/44 182/1/44 +f 181/1/78 180/1/78 183/1/78 +f 184/112/2 185/113/2 182/111/2 +f 186/1/47 182/1/47 185/1/47 +f 177/108/2 184/112/2 182/111/2 +f 183/1/44 182/1/44 186/1/44 +f 187/114/2 188/115/2 185/113/2 +f 189/1/46 185/1/46 188/1/46 +f 184/112/2 187/114/2 185/113/2 +f 186/1/45 185/1/45 189/1/45 +f 190/116/2 191/117/2 188/115/2 +f 192/1/48 188/1/48 191/1/48 +f 187/114/2 190/116/2 188/115/2 +f 189/1/46 188/1/46 192/1/46 +f 193/118/2 194/119/2 191/117/2 +f 195/1/49 191/1/49 194/1/49 +f 190/116/2 193/118/2 191/117/2 +f 192/1/48 191/1/48 195/1/48 +f 196/120/2 197/121/2 194/119/2 +f 198/1/50 194/1/50 197/1/50 +f 193/118/2 196/120/2 194/119/2 +f 195/1/49 194/1/49 198/1/49 +f 199/122/2 200/123/2 197/121/2 +f 201/1/51 197/1/51 200/1/51 +f 196/120/2 199/122/2 197/121/2 +f 198/1/50 197/1/50 201/1/50 +f 202/124/2 203/125/2 200/123/2 +f 204/1/52 200/1/52 203/1/52 +f 199/122/2 202/124/2 200/123/2 +f 201/1/51 200/1/51 204/1/51 +f 205/1/21 203/1/21 202/1/21 +f 204/1/52 203/1/52 205/1/52 +f 206/1/53 202/1/53 199/1/53 +f 205/1/21 202/1/21 206/1/21 +f 207/1/54 199/1/54 196/1/54 +f 206/1/53 199/1/53 207/1/53 +f 208/1/55 196/1/55 193/1/55 +f 207/1/54 196/1/54 208/1/54 +f 209/1/56 193/1/56 190/1/56 +f 208/1/55 193/1/55 209/1/55 +f 210/1/57 190/1/57 187/1/57 +f 209/1/79 190/1/79 210/1/79 +f 211/1/58 187/1/58 184/1/58 +f 210/1/57 187/1/57 211/1/57 +f 212/1/59 184/1/59 177/1/59 +f 211/1/58 184/1/58 212/1/58 +f 213/1/60 177/1/60 174/1/60 +f 212/1/80 177/1/80 213/1/80 +f 214/1/13 174/1/13 171/1/13 +f 213/1/60 174/1/60 214/1/60 +f 215/1/81 171/1/81 168/1/81 +f 214/1/82 171/1/82 215/1/82 +f 216/1/83 168/1/83 165/1/83 +f 215/1/84 168/1/84 216/1/84 +f 217/1/85 165/1/85 162/1/85 +f 216/1/86 165/1/86 217/1/86 +f 218/1/87 162/1/87 160/1/87 +f 217/1/85 162/1/85 218/1/85 +f 219/1/88 160/1/88 69/1/88 +f 218/1/87 160/1/87 219/1/87 +f 219/1/88 69/1/88 74/1/88 +f 220/126/2 221/127/2 6/8/2 +f 90/1/89 6/1/89 221/1/89 +f 222/128/2 220/126/2 6/8/2 +f 6/8/2 223/129/2 224/130/2 +f 225/131/2 223/129/2 6/8/2 +f 226/132/2 225/131/2 6/8/2 +f 227/133/2 226/132/2 6/8/2 +f 228/134/2 227/133/2 6/8/2 +f 229/135/2 228/134/2 6/8/2 +f 230/136/2 229/135/2 6/8/2 +f 9/7/2 230/136/2 6/8/2 +f 220/126/2 231/137/2 221/127/2 +f 232/1/90 221/1/90 231/1/90 +f 90/1/91 221/1/91 232/1/91 +f 220/126/2 233/138/2 231/137/2 +f 234/1/92 231/1/92 233/1/92 +f 232/1/93 231/1/93 234/1/93 +f 220/126/2 235/139/2 233/138/2 +f 236/1/94 233/1/94 235/1/94 +f 234/1/95 233/1/95 236/1/95 +f 237/140/2 238/141/2 235/139/2 +f 239/1/96 235/1/96 238/1/96 +f 220/126/2 237/140/2 235/139/2 +f 236/1/97 235/1/97 239/1/97 +f 240/142/2 241/143/2 238/141/2 +f 242/1/98 238/1/98 241/1/98 +f 237/140/2 240/142/2 238/141/2 +f 239/1/96 238/1/96 242/1/96 +f 243/144/2 244/145/2 241/143/2 +f 245/1/99 241/1/99 244/1/99 +f 240/142/2 243/144/2 241/143/2 +f 242/1/100 241/1/100 245/1/100 +f 246/146/2 247/147/2 244/145/2 +f 248/1/101 244/1/101 247/1/101 +f 243/144/2 246/146/2 244/145/2 +f 245/1/99 244/1/99 248/1/99 +f 249/148/2 250/149/2 247/147/2 +f 251/1/102 247/1/102 250/1/102 +f 246/146/2 249/148/2 247/147/2 +f 248/1/101 247/1/101 251/1/101 +f 252/150/2 253/151/2 250/149/2 +f 254/1/103 250/1/103 253/1/103 +f 249/148/2 252/150/2 250/149/2 +f 251/1/102 250/1/102 254/1/102 +f 255/152/2 256/153/2 253/151/2 +f 257/1/104 253/1/104 256/1/104 +f 252/150/2 255/152/2 253/151/2 +f 254/1/105 253/1/105 257/1/105 +f 258/154/2 259/155/2 256/153/2 +f 260/1/106 256/1/106 259/1/106 +f 255/152/2 258/154/2 256/153/2 +f 257/1/107 256/1/107 260/1/107 +f 261/1/108 259/1/108 258/1/108 +f 260/1/106 259/1/106 261/1/106 +f 262/1/109 258/1/109 255/1/109 +f 261/1/108 258/1/108 262/1/108 +f 263/1/110 255/1/110 252/1/110 +f 262/1/109 255/1/109 263/1/109 +f 264/1/111 252/1/111 249/1/111 +f 263/1/110 252/1/110 264/1/110 +f 265/1/112 249/1/112 246/1/112 +f 264/1/111 249/1/111 265/1/111 +f 266/1/113 246/1/113 243/1/113 +f 265/1/112 246/1/112 266/1/112 +f 267/1/114 243/1/114 240/1/114 +f 266/1/113 243/1/113 267/1/113 +f 268/1/115 240/1/115 237/1/115 +f 267/1/114 240/1/114 268/1/114 +f 269/1/116 237/1/116 220/1/116 +f 268/1/115 237/1/115 269/1/115 +f 270/156/2 271/157/2 220/126/2 +f 272/1/117 220/1/117 271/1/117 +f 273/158/2 270/156/2 220/126/2 +f 274/159/2 273/158/2 220/126/2 +f 275/160/2 274/159/2 220/126/2 +f 276/161/2 275/160/2 220/126/2 +f 277/162/2 276/161/2 220/126/2 +f 278/163/2 277/162/2 220/126/2 +f 279/164/2 278/163/2 220/126/2 +f 280/165/2 279/164/2 220/126/2 +f 281/166/2 280/165/2 220/126/2 +f 282/167/2 281/166/2 220/126/2 +f 283/168/2 282/167/2 220/126/2 +f 222/128/2 283/168/2 220/126/2 +f 269/1/116 220/1/116 272/1/116 +f 12/11/2 11/10/2 271/157/2 +f 284/1/116 271/1/116 11/1/116 +f 285/169/2 286/170/2 271/157/2 +f 287/171/2 271/157/2 286/170/2 +f 288/172/2 285/169/2 271/157/2 +f 289/173/2 288/172/2 271/157/2 +f 290/174/2 289/173/2 271/157/2 +f 291/175/2 290/174/2 271/157/2 +f 292/176/2 291/175/2 271/157/2 +f 293/177/2 292/176/2 271/157/2 +f 270/156/2 293/177/2 271/157/2 +f 294/178/2 12/11/2 271/157/2 +f 295/179/2 294/178/2 271/157/2 +f 296/180/2 295/179/2 271/157/2 +f 297/181/2 296/180/2 271/157/2 +f 287/171/2 297/181/2 271/157/2 +f 272/1/117 271/1/117 284/1/117 +f 298/1/115 11/1/115 10/1/115 +f 284/1/116 11/1/116 298/1/116 +f 299/1/114 10/1/114 13/1/114 +f 298/1/115 10/1/115 299/1/115 +f 300/1/113 13/1/113 14/1/113 +f 299/1/114 13/1/114 300/1/114 +f 301/1/112 14/1/112 15/1/112 +f 300/1/113 14/1/113 301/1/113 +f 302/1/111 15/1/111 16/1/111 +f 301/1/112 15/1/112 302/1/112 +f 303/1/110 16/1/110 17/1/110 +f 302/1/111 16/1/111 303/1/111 +f 304/1/109 17/1/109 18/1/109 +f 303/1/110 17/1/110 304/1/110 +f 305/1/108 18/1/108 19/1/108 +f 304/1/109 18/1/109 305/1/109 +f 306/1/118 19/1/118 20/1/118 +f 305/1/108 19/1/108 306/1/108 +f 307/1/119 20/1/119 21/1/119 +f 307/1/118 306/1/118 20/1/118 +f 308/1/120 21/1/120 22/1/120 +f 308/1/119 307/1/119 21/1/119 +f 309/1/121 22/1/121 23/1/121 +f 309/1/120 308/1/120 22/1/120 +f 310/1/122 23/1/122 24/1/122 +f 310/1/121 309/1/121 23/1/121 +f 311/1/123 24/1/123 25/1/123 +f 311/1/122 310/1/122 24/1/122 +f 312/1/124 25/1/124 26/1/124 +f 312/1/123 311/1/123 25/1/123 +f 313/1/125 26/1/125 27/1/125 +f 313/1/124 312/1/124 26/1/124 +f 314/1/126 27/1/126 28/1/126 +f 314/1/125 313/1/125 27/1/125 +f 315/1/127 28/1/127 29/1/127 +f 315/1/126 314/1/126 28/1/126 +f 316/1/128 29/1/128 8/1/128 +f 316/1/127 315/1/127 29/1/127 +f 95/1/128 316/1/128 8/1/128 +f 317/182/2 318/183/2 319/184/2 +f 320/1/129 319/1/129 318/1/129 +f 317/182/2 319/184/2 321/185/2 +f 322/1/130 321/1/130 319/1/130 +f 322/1/131 319/1/131 320/1/131 +f 317/182/2 323/186/2 318/183/2 +f 324/1/132 318/1/132 323/1/132 +f 325/1/133 320/1/133 318/1/133 +f 325/1/134 318/1/134 324/1/134 +f 317/182/2 326/187/2 323/186/2 +f 327/1/135 323/1/135 326/1/135 +f 324/1/136 323/1/136 327/1/136 +f 317/182/2 328/188/2 326/187/2 +f 329/1/137 326/1/137 328/1/137 +f 327/1/138 326/1/138 329/1/138 +f 317/182/2 330/189/2 328/188/2 +f 331/1/139 328/1/139 330/1/139 +f 329/1/140 328/1/140 331/1/140 +f 317/182/2 332/190/2 330/189/2 +f 331/1/141 330/1/141 332/1/141 +f 317/182/2 333/191/2 332/190/2 +f 334/1/142 332/1/142 333/1/142 +f 331/1/143 332/1/143 334/1/143 +f 317/182/2 335/192/2 333/191/2 +f 336/1/144 333/1/144 335/1/144 +f 334/1/145 333/1/145 336/1/145 +f 317/182/2 337/193/2 335/192/2 +f 338/1/146 335/1/146 337/1/146 +f 336/1/147 335/1/147 338/1/147 +f 317/182/2 286/170/2 337/193/2 +f 339/1/148 337/1/148 286/1/148 +f 338/1/149 337/1/149 339/1/149 +f 340/1/150 286/1/150 285/1/150 +f 341/194/2 287/171/2 286/170/2 +f 317/182/2 341/194/2 286/170/2 +f 339/1/151 286/1/151 340/1/151 +f 342/1/152 285/1/152 288/1/152 +f 340/1/153 285/1/153 342/1/153 +f 343/1/154 288/1/154 289/1/154 +f 342/1/155 288/1/155 343/1/155 +f 344/1/156 289/1/156 290/1/156 +f 343/1/157 289/1/157 344/1/157 +f 345/1/158 290/1/158 291/1/158 +f 344/1/159 290/1/159 345/1/159 +f 346/1/160 291/1/160 292/1/160 +f 347/1/161 291/1/161 346/1/161 +f 345/1/162 291/1/162 347/1/162 +f 348/1/163 292/1/163 293/1/163 +f 346/1/164 292/1/164 348/1/164 +f 349/1/165 293/1/165 270/1/165 +f 348/1/166 293/1/166 349/1/166 +f 350/1/167 270/1/167 273/1/167 +f 349/1/168 270/1/168 350/1/168 +f 350/1/169 273/1/169 274/1/169 +f 351/1/170 274/1/170 275/1/170 +f 350/1/171 274/1/171 351/1/171 +f 352/1/172 275/1/172 276/1/172 +f 353/1/173 275/1/173 352/1/173 +f 351/1/174 275/1/174 353/1/174 +f 354/1/175 276/1/175 277/1/175 +f 352/1/176 276/1/176 354/1/176 +f 355/1/177 277/1/177 278/1/177 +f 354/1/178 277/1/178 355/1/178 +f 356/1/179 278/1/179 279/1/179 +f 355/1/180 278/1/180 356/1/180 +f 356/1/181 279/1/181 280/1/181 +f 357/1/182 280/1/182 281/1/182 +f 356/1/183 280/1/183 357/1/183 +f 358/1/184 281/1/184 282/1/184 +f 357/1/185 281/1/185 358/1/185 +f 359/1/186 282/1/186 283/1/186 +f 358/1/187 282/1/187 359/1/187 +f 360/1/188 283/1/188 222/1/188 +f 359/1/189 283/1/189 360/1/189 +f 6/8/2 224/130/2 361/195/2 +f 362/1/190 222/1/190 363/1/190 +f 360/1/191 222/1/191 362/1/191 +f 6/8/2 361/195/2 364/196/2 +f 365/1/192 363/1/192 366/1/192 +f 362/1/193 363/1/193 365/1/193 +f 367/197/2 368/198/2 366/199/2 +f 369/1/194 366/1/194 368/1/194 +f 364/196/2 222/128/2 6/8/2 +f 364/196/2 363/200/2 222/128/2 +f 364/196/2 367/197/2 366/199/2 +f 364/196/2 366/199/2 363/200/2 +f 365/1/195 366/1/195 369/1/195 +f 370/201/2 371/202/2 368/198/2 +f 372/1/196 368/1/196 371/1/196 +f 373/203/2 370/201/2 368/198/2 +f 367/197/2 373/203/2 368/198/2 +f 369/1/197 368/1/197 372/1/197 +f 374/204/2 375/205/2 371/202/2 +f 376/1/198 371/1/198 375/1/198 +f 370/201/2 374/204/2 371/202/2 +f 372/1/199 371/1/199 376/1/199 +f 377/206/2 378/207/2 375/205/2 +f 379/1/200 375/1/200 378/1/200 +f 380/208/2 377/206/2 375/205/2 +f 374/204/2 380/208/2 375/205/2 +f 381/1/201 375/1/201 379/1/201 +f 376/1/202 375/1/202 381/1/202 +f 382/209/2 383/210/2 378/207/2 +f 384/1/203 378/1/203 383/1/203 +f 377/206/2 382/209/2 378/207/2 +f 379/1/204 378/1/204 384/1/204 +f 317/182/2 385/211/2 383/210/2 +f 386/1/205 383/1/205 385/1/205 +f 382/209/2 317/182/2 383/210/2 +f 384/1/206 383/1/206 386/1/206 +f 317/182/2 321/185/2 385/211/2 +f 322/1/207 385/1/207 321/1/207 +f 386/1/208 385/1/208 322/1/208 +f 387/1/108 31/1/108 30/1/108 +f 388/1/209 32/1/209 31/1/209 +f 388/1/209 31/1/209 387/1/209 +f 389/212/2 390/213/2 30/29/2 +f 391/1/210 30/1/210 390/1/210 +f 389/212/2 30/29/2 33/32/2 +f 387/1/108 30/1/108 391/1/108 +f 392/214/2 393/215/2 390/213/2 +f 394/1/211 390/1/211 393/1/211 +f 395/216/2 392/214/2 390/213/2 +f 389/212/2 395/216/2 390/213/2 +f 394/1/212 391/1/212 390/1/212 +f 396/217/2 397/218/2 393/215/2 +f 398/1/213 393/1/213 397/1/213 +f 392/214/2 396/217/2 393/215/2 +f 394/1/211 393/1/211 398/1/211 +f 399/219/2 400/220/2 397/218/2 +f 401/1/214 397/1/214 400/1/214 +f 402/221/2 399/219/2 397/218/2 +f 396/217/2 402/221/2 397/218/2 +f 398/1/215 397/1/215 401/1/215 +f 399/219/2 403/222/2 400/220/2 +f 404/1/216 400/1/216 403/1/216 +f 401/1/214 400/1/214 404/1/214 +f 405/223/2 406/224/2 403/222/2 +f 407/1/217 403/1/217 406/1/217 +f 399/219/2 405/223/2 403/222/2 +f 404/1/218 403/1/218 407/1/218 +f 405/223/2 408/225/2 406/224/2 +f 409/1/219 406/1/219 408/1/219 +f 407/1/220 406/1/220 409/1/220 +f 405/223/2 410/226/2 408/225/2 +f 411/1/221 408/1/221 410/1/221 +f 409/1/222 408/1/222 411/1/222 +f 412/227/2 413/228/2 410/226/2 +f 414/1/60 410/1/60 413/1/60 +f 415/229/2 412/227/2 410/226/2 +f 416/230/2 415/229/2 410/226/2 +f 405/223/2 416/230/2 410/226/2 +f 411/1/223 410/1/223 414/1/223 +f 417/231/2 418/232/2 413/228/2 +f 419/1/224 413/1/224 418/1/224 +f 420/233/2 417/231/2 413/228/2 +f 412/227/2 420/233/2 413/228/2 +f 414/1/60 413/1/60 419/1/60 +f 417/231/2 421/234/2 418/232/2 +f 422/1/225 418/1/225 421/1/225 +f 419/1/226 418/1/226 422/1/226 +f 423/235/2 424/236/2 421/234/2 +f 425/1/227 421/1/227 424/1/227 +f 417/231/2 423/235/2 421/234/2 +f 422/1/228 421/1/228 425/1/228 +f 426/237/2 427/238/2 424/236/2 +f 428/1/229 424/1/229 427/1/229 +f 423/235/2 426/237/2 424/236/2 +f 425/1/227 424/1/227 428/1/227 +f 426/237/2 429/239/2 427/238/2 +f 430/1/18 427/1/18 429/1/18 +f 428/1/230 427/1/230 430/1/230 +f 361/195/2 224/130/2 429/239/2 +f 431/1/231 429/1/231 224/1/231 +f 426/237/2 361/195/2 429/239/2 +f 430/1/18 429/1/18 431/1/18 +f 432/1/21 224/1/21 223/1/21 +f 431/1/231 224/1/231 432/1/231 +f 433/1/232 223/1/232 225/1/232 +f 432/1/21 223/1/21 433/1/21 +f 434/1/233 225/1/233 226/1/233 +f 433/1/232 225/1/232 434/1/232 +f 435/1/234 226/1/234 227/1/234 +f 434/1/235 226/1/235 435/1/235 +f 436/1/44 227/1/44 228/1/44 +f 435/1/236 227/1/236 436/1/236 +f 437/1/237 228/1/237 229/1/237 +f 436/1/238 228/1/238 437/1/238 +f 438/1/239 229/1/239 230/1/239 +f 437/1/240 229/1/240 438/1/240 +f 439/1/241 230/1/241 9/1/241 +f 438/1/239 230/1/239 439/1/239 +f 440/1/23 9/1/23 34/1/23 +f 439/1/242 9/1/242 440/1/242 +f 441/1/243 34/1/243 35/1/243 +f 440/1/23 34/1/23 441/1/23 +f 442/1/244 35/1/244 36/1/244 +f 441/1/245 35/1/245 442/1/245 +f 93/1/246 36/1/246 37/1/246 +f 442/1/247 36/1/247 93/1/247 +f 92/1/248 37/1/248 38/1/248 +f 93/1/249 37/1/249 92/1/249 +f 443/1/250 38/1/250 39/1/250 +f 92/1/117 38/1/117 443/1/117 +f 444/1/251 39/1/251 32/1/251 +f 443/1/252 39/1/252 444/1/252 +f 444/1/253 32/1/253 388/1/253 +f 445/1/108 33/1/108 12/1/108 +f 446/1/254 389/1/254 33/1/254 +f 446/1/255 33/1/255 445/1/255 +f 447/1/256 12/1/256 294/1/256 +f 445/1/108 12/1/108 447/1/108 +f 448/1/257 294/1/257 295/1/257 +f 447/1/256 294/1/256 448/1/256 +f 449/1/258 295/1/258 296/1/258 +f 448/1/257 295/1/257 449/1/257 +f 450/1/259 296/1/259 297/1/259 +f 449/1/260 296/1/260 450/1/260 +f 451/1/261 297/1/261 287/1/261 +f 450/1/213 297/1/213 451/1/213 +f 452/1/262 287/1/262 341/1/262 +f 451/1/263 287/1/263 452/1/263 +f 453/1/264 341/1/264 317/1/264 +f 452/1/265 341/1/265 453/1/265 +f 454/1/4 317/1/4 382/1/4 +f 453/1/266 317/1/266 454/1/266 +f 455/1/267 382/1/267 377/1/267 +f 454/1/4 382/1/4 455/1/4 +f 456/1/268 377/1/268 380/1/268 +f 456/1/269 455/1/269 377/1/269 +f 457/1/270 380/1/270 374/1/270 +f 456/1/271 380/1/271 457/1/271 +f 458/1/60 374/1/60 370/1/60 +f 457/1/272 374/1/272 458/1/272 +f 459/1/273 370/1/273 373/1/273 +f 458/1/274 370/1/274 459/1/274 +f 460/1/275 373/1/275 367/1/275 +f 459/1/276 373/1/276 460/1/276 +f 461/1/277 367/1/277 364/1/277 +f 460/1/275 367/1/275 461/1/275 +f 462/1/21 364/1/21 361/1/21 +f 461/1/277 364/1/277 462/1/277 +f 463/1/278 361/1/278 426/1/278 +f 462/1/21 361/1/21 463/1/21 +f 464/1/279 426/1/279 423/1/279 +f 463/1/280 426/1/280 464/1/280 +f 465/1/281 423/1/281 417/1/281 +f 464/1/282 423/1/282 465/1/282 +f 466/1/283 417/1/283 420/1/283 +f 465/1/238 417/1/238 466/1/238 +f 467/1/284 420/1/284 412/1/284 +f 466/1/283 420/1/283 467/1/283 +f 468/1/285 412/1/285 415/1/285 +f 467/1/284 412/1/284 468/1/284 +f 469/1/286 415/1/286 416/1/286 +f 468/1/287 415/1/287 469/1/287 +f 470/1/288 416/1/288 405/1/288 +f 469/1/289 416/1/289 470/1/289 +f 471/1/117 405/1/117 399/1/117 +f 470/1/288 405/1/288 471/1/288 +f 472/1/290 399/1/290 402/1/290 +f 471/1/117 399/1/117 472/1/117 +f 473/1/291 402/1/291 396/1/291 +f 472/1/290 402/1/290 473/1/290 +f 474/1/292 396/1/292 392/1/292 +f 473/1/293 396/1/293 474/1/293 +f 475/1/294 392/1/294 395/1/294 +f 474/1/295 392/1/295 475/1/295 +f 476/1/119 395/1/119 389/1/119 +f 475/1/296 395/1/296 476/1/296 +f 476/1/119 389/1/119 446/1/119 +f 305/1/22 306/1/22 307/1/22 +f 305/1/22 307/1/22 308/1/22 +f 305/1/22 308/1/22 309/1/22 +f 305/1/22 309/1/22 310/1/22 +f 305/1/22 310/1/22 311/1/22 +f 387/1/22 311/1/22 312/1/22 +f 387/1/22 305/1/22 311/1/22 +f 387/1/22 312/1/22 313/1/22 +f 387/1/22 313/1/22 314/1/22 +f 387/1/22 314/1/22 315/1/22 +f 387/1/22 315/1/22 316/1/22 +f 387/1/22 316/1/22 95/1/22 +f 387/1/22 95/1/22 94/1/22 +f 387/1/22 94/1/22 91/1/22 +f 388/1/22 387/1/22 91/1/22 +f 444/1/22 388/1/22 91/1/22 +f 443/1/22 444/1/22 91/1/22 +f 92/1/297 443/1/297 91/1/297 +f 387/1/22 304/1/22 305/1/22 +f 387/1/22 303/1/22 304/1/22 +f 387/1/22 302/1/22 303/1/22 +f 387/1/22 301/1/22 302/1/22 +f 387/1/22 300/1/22 301/1/22 +f 387/1/22 299/1/22 300/1/22 +f 299/1/22 387/1/22 391/1/22 +f 451/1/22 284/1/22 298/1/22 +f 299/1/22 391/1/22 445/1/22 +f 299/1/22 445/1/22 447/1/22 +f 450/1/22 451/1/22 298/1/22 +f 449/1/22 450/1/22 298/1/22 +f 448/1/22 449/1/22 298/1/22 +f 447/1/22 448/1/22 298/1/22 +f 447/1/22 298/1/22 299/1/22 +f 358/1/22 272/1/22 284/1/22 +f 357/1/22 358/1/22 284/1/22 +f 356/1/22 357/1/22 284/1/22 +f 355/1/22 356/1/22 284/1/22 +f 354/1/22 355/1/22 284/1/22 +f 352/1/22 354/1/22 284/1/22 +f 353/1/22 352/1/22 284/1/22 +f 351/1/22 353/1/22 284/1/22 +f 350/1/22 351/1/22 284/1/22 +f 349/1/22 350/1/22 284/1/22 +f 348/1/22 349/1/22 284/1/22 +f 346/1/22 348/1/22 284/1/22 +f 347/1/22 346/1/22 284/1/22 +f 345/1/22 347/1/22 284/1/22 +f 344/1/22 345/1/22 284/1/22 +f 343/1/22 344/1/22 284/1/22 +f 342/1/22 343/1/22 284/1/22 +f 340/1/22 342/1/22 284/1/22 +f 454/1/22 340/1/22 284/1/22 +f 453/1/22 454/1/22 284/1/22 +f 452/1/22 453/1/22 284/1/22 +f 451/1/22 452/1/22 284/1/22 +f 239/1/22 269/1/22 272/1/22 +f 236/1/22 239/1/22 272/1/22 +f 362/1/22 236/1/22 272/1/22 +f 360/1/22 362/1/22 272/1/22 +f 359/1/22 360/1/22 272/1/22 +f 358/1/22 359/1/22 272/1/22 +f 242/1/22 268/1/22 269/1/22 +f 239/1/22 242/1/22 269/1/22 +f 245/1/22 267/1/22 268/1/22 +f 242/1/22 245/1/22 268/1/22 +f 248/1/22 266/1/22 267/1/22 +f 245/1/22 248/1/22 267/1/22 +f 251/1/22 265/1/22 266/1/22 +f 248/1/22 251/1/22 266/1/22 +f 254/1/22 264/1/22 265/1/22 +f 251/1/22 254/1/22 265/1/22 +f 260/1/22 263/1/22 264/1/22 +f 257/1/22 260/1/22 264/1/22 +f 254/1/22 257/1/22 264/1/22 +f 261/1/22 262/1/22 263/1/22 +f 260/1/22 261/1/22 263/1/22 +f 362/1/22 234/1/22 236/1/22 +f 362/1/22 232/1/22 234/1/22 +f 362/1/22 90/1/22 232/1/22 +f 365/1/22 369/1/22 90/1/22 +f 462/1/22 90/1/22 369/1/22 +f 362/1/22 365/1/22 90/1/22 +f 442/1/22 93/1/22 90/1/22 +f 441/1/22 442/1/22 90/1/22 +f 440/1/22 441/1/22 90/1/22 +f 439/1/22 440/1/22 90/1/22 +f 438/1/22 439/1/22 90/1/22 +f 437/1/22 438/1/22 90/1/22 +f 436/1/22 437/1/22 90/1/22 +f 435/1/22 436/1/22 90/1/22 +f 434/1/22 435/1/22 90/1/22 +f 433/1/22 434/1/22 90/1/22 +f 432/1/22 433/1/22 90/1/22 +f 463/1/22 432/1/22 90/1/22 +f 462/1/22 463/1/22 90/1/22 +f 164/1/22 219/1/22 74/1/22 +f 78/1/22 164/1/22 74/1/22 +f 164/1/22 218/1/22 219/1/22 +f 167/1/22 217/1/22 218/1/22 +f 164/1/22 167/1/22 218/1/22 +f 170/1/22 216/1/22 217/1/22 +f 167/1/22 170/1/22 217/1/22 +f 173/1/22 215/1/22 216/1/22 +f 170/1/22 173/1/22 216/1/22 +f 176/1/22 214/1/22 215/1/22 +f 173/1/22 176/1/22 215/1/22 +f 186/1/22 213/1/22 214/1/22 +f 183/1/22 186/1/22 214/1/22 +f 181/1/22 183/1/22 214/1/22 +f 179/1/22 181/1/22 214/1/22 +f 176/1/22 179/1/22 214/1/22 +f 189/1/22 212/1/22 213/1/22 +f 186/1/22 189/1/22 213/1/22 +f 192/1/22 211/1/22 212/1/22 +f 189/1/22 192/1/22 212/1/22 +f 195/1/22 210/1/22 211/1/22 +f 192/1/22 195/1/22 211/1/22 +f 198/1/22 209/1/22 210/1/22 +f 195/1/22 198/1/22 210/1/22 +f 201/1/22 208/1/22 209/1/22 +f 198/1/22 201/1/22 209/1/22 +f 204/1/22 207/1/22 208/1/22 +f 201/1/22 204/1/22 208/1/22 +f 205/1/22 206/1/22 207/1/22 +f 204/1/22 205/1/22 207/1/22 +f 103/1/22 159/1/22 77/1/22 +f 76/1/22 103/1/22 77/1/22 +f 106/1/22 158/1/22 159/1/22 +f 103/1/22 106/1/22 159/1/22 +f 109/1/22 157/1/22 158/1/22 +f 106/1/22 109/1/22 158/1/22 +f 112/1/22 156/1/22 157/1/22 +f 109/1/22 112/1/22 157/1/22 +f 115/1/22 155/1/22 156/1/22 +f 112/1/22 115/1/22 156/1/22 +f 118/1/22 154/1/22 155/1/22 +f 115/1/22 118/1/22 155/1/22 +f 124/1/22 153/1/22 154/1/22 +f 118/1/22 124/1/22 154/1/22 +f 124/1/22 152/1/22 153/1/22 +f 124/1/22 151/1/22 152/1/22 +f 127/1/22 150/1/22 151/1/22 +f 124/1/22 127/1/22 151/1/22 +f 130/1/22 149/1/22 150/1/22 +f 127/1/22 130/1/22 150/1/22 +f 133/1/22 148/1/22 149/1/22 +f 130/1/22 133/1/22 149/1/22 +f 136/1/22 147/1/22 148/1/22 +f 133/1/22 136/1/22 148/1/22 +f 139/1/22 146/1/22 147/1/22 +f 136/1/22 139/1/22 147/1/22 +f 142/1/22 145/1/22 146/1/22 +f 139/1/22 142/1/22 146/1/22 +f 143/1/22 144/1/22 145/1/22 +f 142/1/22 143/1/22 145/1/22 +f 455/1/22 322/1/22 320/1/22 +f 455/1/22 320/1/22 325/1/22 +f 455/1/22 386/1/22 322/1/22 +f 455/1/22 384/1/22 386/1/22 +f 455/1/22 379/1/22 384/1/22 +f 457/1/22 381/1/22 379/1/22 +f 456/1/22 379/1/22 455/1/22 +f 456/1/22 457/1/22 379/1/22 +f 458/1/22 376/1/22 381/1/22 +f 457/1/22 458/1/22 381/1/22 +f 460/1/22 372/1/22 376/1/22 +f 459/1/22 460/1/22 376/1/22 +f 458/1/22 459/1/22 376/1/22 +f 462/1/22 369/1/22 372/1/22 +f 461/1/22 462/1/22 372/1/22 +f 460/1/22 461/1/22 372/1/22 +f 455/1/22 339/1/22 340/1/22 +f 454/1/22 455/1/22 340/1/22 +f 455/1/22 338/1/22 339/1/22 +f 455/1/22 336/1/22 338/1/22 +f 455/1/22 334/1/22 336/1/22 +f 455/1/22 331/1/22 334/1/22 +f 455/1/22 329/1/22 331/1/22 +f 455/1/22 327/1/22 329/1/22 +f 455/1/22 324/1/22 327/1/22 +f 455/1/22 325/1/22 324/1/22 +f 445/1/22 391/1/22 394/1/22 +f 464/1/22 431/1/22 432/1/22 +f 463/1/22 464/1/22 432/1/22 +f 464/1/22 430/1/22 431/1/22 +f 465/1/22 428/1/22 430/1/22 +f 464/1/22 465/1/22 430/1/22 +f 465/1/22 425/1/22 428/1/22 +f 466/1/22 422/1/22 425/1/22 +f 465/1/22 466/1/22 425/1/22 +f 467/1/22 419/1/22 422/1/22 +f 466/1/22 467/1/22 422/1/22 +f 471/1/22 414/1/22 419/1/22 +f 470/1/22 471/1/22 419/1/22 +f 469/1/22 470/1/22 419/1/22 +f 468/1/22 469/1/22 419/1/22 +f 467/1/22 468/1/22 419/1/22 +f 472/1/22 411/1/22 414/1/22 +f 471/1/22 472/1/22 414/1/22 +f 472/1/22 409/1/22 411/1/22 +f 472/1/22 407/1/22 409/1/22 +f 472/1/22 404/1/22 407/1/22 +f 473/1/22 401/1/22 404/1/22 +f 472/1/22 473/1/22 404/1/22 +f 474/1/22 398/1/22 401/1/22 +f 473/1/22 474/1/22 401/1/22 +f 476/1/22 394/1/22 398/1/22 +f 475/1/22 476/1/22 398/1/22 +f 474/1/22 475/1/22 398/1/22 +f 446/1/22 445/1/22 394/1/22 +f 476/1/22 446/1/22 394/1/22 diff --git a/resources/meshes/bambulab_x1.obj b/resources/meshes/bambulab_x1.obj new file mode 100644 index 0000000000..4adf0ada85 --- /dev/null +++ b/resources/meshes/bambulab_x1.obj @@ -0,0 +1,1999 @@ +# Blender 4.4.0 +# www.blender.org +mtllib bambulabs-3dp-X1.mtl +o bambulabs-3dp-X1 +v 107.097450 259.555542 -0.400000 +v 95.464462 259.464478 -0.400000 +v 100.535538 264.535522 -0.400000 +v 100.535538 264.535522 0.000000 +v 157.463837 264.535522 -0.400000 +v 162.534912 259.464478 -0.400000 +v 150.070450 260.000000 -0.400000 +v 100.857323 264.830383 -0.400000 +v 100.857323 264.830383 0.000000 +v 107.221794 259.707062 -0.400000 +v 107.373367 259.831451 -0.400000 +v 107.546310 259.923889 -0.400000 +v 107.733925 259.980804 -0.400000 +v 107.928932 260.000000 -0.400000 +v 106.948174 259.195160 -0.400000 +v 95.142677 259.169617 -0.400000 +v 95.464462 259.464478 0.000000 +v 107.005081 259.382751 -0.400000 +v 106.928947 259.000000 -0.400000 +v 94.796776 258.904236 -0.400000 +v 95.142677 259.169617 0.000000 +v 106.948174 258.804840 -0.400000 +v 94.429001 258.669922 -0.400000 +v 94.796776 258.904236 0.000000 +v 107.005081 258.617249 -0.400000 +v 94.042107 258.468506 -0.400000 +v 94.429001 258.669922 0.000000 +v 107.097450 258.444458 -0.400000 +v 93.638947 258.301514 -0.400000 +v 94.042107 258.468506 0.000000 +v 107.221794 258.292938 -0.400000 +v 93.222939 258.170349 -0.400000 +v 93.638947 258.301514 0.000000 +v 107.546310 258.076111 -0.400000 +v 92.797203 258.075989 -0.400000 +v 93.222939 258.170349 0.000000 +v 107.373367 258.168549 -0.400000 +v 107.733925 258.019196 -0.400000 +v 92.364960 258.019043 -0.400000 +v 92.797203 258.075989 0.000000 +v 107.928932 258.000000 -0.400000 +v 91.928932 258.000000 -0.400000 +v 92.364960 258.019043 0.000000 +v 252.094131 257.828613 -0.400000 +v 150.070450 258.000000 -0.400000 +v 91.928932 258.000000 0.000000 +v 7.500000 258.000000 -0.400000 +v 166.070450 258.000000 -0.400000 +v 6.964659 257.980865 -0.400000 +v 7.500000 258.000000 0.000000 +v 6.432667 257.923645 -0.400000 +v 6.964659 257.980865 0.000000 +v 5.905871 257.828613 -0.400000 +v 6.432667 257.923645 0.000000 +v 252.613068 257.696167 -0.400000 +v 5.386930 257.696167 -0.400000 +v 5.905871 257.828613 0.000000 +v 253.121048 257.527069 -0.400000 +v 4.878953 257.527069 -0.400000 +v 5.386930 257.696167 0.000000 +v 253.615540 257.322266 -0.400000 +v 4.384461 257.322266 -0.400000 +v 4.878953 257.527069 0.000000 +v 254.094299 257.082642 -0.400000 +v 3.905704 257.082642 -0.400000 +v 4.384461 257.322266 0.000000 +v 254.554901 256.809326 -0.400000 +v 3.445103 256.809326 -0.400000 +v 3.905704 257.082642 0.000000 +v 254.994598 256.504028 -0.400000 +v 3.005406 256.504028 -0.400000 +v 3.445103 256.809326 0.000000 +v 255.411362 256.168182 -0.400000 +v 2.588632 256.168182 -0.400000 +v 3.005406 256.504028 0.000000 +v 255.803299 255.803299 -0.400000 +v 2.196699 255.803299 -0.400000 +v 2.588632 256.168182 0.000000 +v 256.168182 255.411362 -0.400000 +v 1.831816 255.411362 -0.400000 +v 2.196699 255.803299 0.000000 +v 256.504028 254.994598 -0.400000 +v 1.495970 254.994598 -0.400000 +v 1.831816 255.411362 0.000000 +v 256.809326 254.554901 -0.400000 +v 1.190664 254.554901 -0.400000 +v 1.495970 254.994598 0.000000 +v 257.082642 254.094299 -0.400000 +v 0.917371 254.094299 -0.400000 +v 1.190664 254.554901 0.000000 +v 257.322266 253.615540 -0.400000 +v 0.677742 253.615540 -0.400000 +v 0.917371 254.094299 0.000000 +v 257.527069 253.121048 -0.400000 +v 0.472916 253.121048 -0.400000 +v 0.677742 253.615540 0.000000 +v 257.696167 252.613068 -0.400000 +v 0.303827 252.613068 -0.400000 +v 0.472916 253.121048 0.000000 +v 257.828613 252.094131 -0.400000 +v 0.171380 252.094131 -0.400000 +v 0.303827 252.613068 0.000000 +v 257.923645 251.567337 -0.400000 +v 0.076351 251.567337 -0.400000 +v 0.171380 252.094131 0.000000 +v 257.980865 251.035339 -0.400000 +v 0.019136 251.035339 -0.400000 +v 0.076351 251.567337 0.000000 +v 258.000000 250.500000 -0.400000 +v 0.000000 250.500000 -0.400000 +v 0.019136 251.035339 0.000000 +v 248.500000 0.000000 -0.400000 +v 0.000000 7.500000 -0.400000 +v 0.000000 250.500000 0.000000 +v 258.000000 -2.500000 -0.400000 +v 248.695023 -0.019211 -0.400000 +v 0.019136 6.964659 -0.400000 +v 0.000000 7.500000 0.000000 +v 0.076351 6.432667 -0.400000 +v 0.019136 6.964659 0.000000 +v 0.171380 5.905871 -0.400000 +v 0.076351 6.432667 0.000000 +v 0.303827 5.386930 -0.400000 +v 0.171380 5.905871 0.000000 +v 0.472916 4.878953 -0.400000 +v 0.303827 5.386930 0.000000 +v 0.677742 4.384461 -0.400000 +v 0.472916 4.878953 0.000000 +v 0.917371 3.905704 -0.400000 +v 0.677742 4.384461 0.000000 +v 1.190664 3.445103 -0.400000 +v 0.917371 3.905704 0.000000 +v 1.495970 3.005406 -0.400000 +v 1.190664 3.445103 0.000000 +v 1.831816 2.588632 -0.400000 +v 1.495970 3.005406 0.000000 +v 2.196699 2.196699 -0.400000 +v 1.831816 2.588632 0.000000 +v 2.588632 1.831816 -0.400000 +v 2.196699 2.196699 0.000000 +v 3.005406 1.495970 -0.400000 +v 2.588632 1.831816 0.000000 +v 3.445103 1.190664 -0.400000 +v 3.005406 1.495970 0.000000 +v 3.905704 0.917371 -0.400000 +v 3.445103 1.190664 0.000000 +v 4.384461 0.677742 -0.400000 +v 3.905704 0.917371 0.000000 +v 4.878953 0.472916 -0.400000 +v 4.384461 0.677742 0.000000 +v 236.474869 0.000000 -0.400000 +v 4.878953 0.472916 0.000000 +v 5.386930 0.303827 -0.400000 +v 231.318024 0.000000 -0.400000 +v 5.386930 0.303827 0.000000 +v 5.905871 0.171380 -0.400000 +v 225.500000 0.000000 -0.400000 +v 5.905871 0.171380 0.000000 +v 6.432667 0.076351 -0.400000 +v 6.432667 0.076351 0.000000 +v 6.964659 0.019136 -0.400000 +v 69.928932 0.000000 -0.400000 +v 7.500000 0.000000 -0.400000 +v 6.964659 0.019136 0.000000 +v 7.500000 0.000000 0.000000 +v 225.304977 -0.019211 -0.400000 +v 70.364960 -0.019053 -0.400000 +v 69.928932 0.000000 0.000000 +v 225.117325 -0.076134 -0.400000 +v 70.797203 -0.075985 -0.400000 +v 70.364960 -0.019053 0.000000 +v 224.944382 -0.168571 -0.400000 +v 71.222939 -0.170362 -0.400000 +v 70.797203 -0.075985 0.000000 +v 224.792892 -0.292893 -0.400000 +v 71.638947 -0.301509 -0.400000 +v 71.222939 -0.170362 0.000000 +v 224.668564 -0.444384 -0.400000 +v 72.042107 -0.468502 -0.400000 +v 71.638947 -0.301509 0.000000 +v 224.576126 -0.617322 -0.400000 +v 72.429001 -0.669929 -0.400000 +v 72.042107 -0.468502 0.000000 +v 224.519211 -0.804971 -0.400000 +v 72.796776 -0.904236 -0.400000 +v 72.429001 -0.669929 0.000000 +v 224.500000 -1.000000 -0.400000 +v 73.142677 -1.169622 -0.400000 +v 72.796776 -0.904236 0.000000 +v 224.500000 -6.000000 -0.400000 +v 73.464462 -1.464466 -0.400000 +v 73.142677 -1.169622 0.000000 +v 254.994598 -8.504030 -0.400000 +v 80.535538 -8.535534 -0.400000 +v 73.464462 -1.464466 0.000000 +v 255.411362 -8.168184 -0.400000 +v 225.500000 -7.000000 -0.400000 +v 225.304977 -6.980789 -0.400000 +v 225.117325 -6.923866 -0.400000 +v 224.944382 -6.831429 -0.400000 +v 224.792892 -6.707107 -0.400000 +v 224.668564 -6.555616 -0.400000 +v 224.576126 -6.382678 -0.400000 +v 224.519211 -6.195029 -0.400000 +v 254.554901 -8.809336 -0.400000 +v 80.857323 -8.830379 -0.400000 +v 80.535538 -8.535534 0.000000 +v 254.094299 -9.082629 -0.400000 +v 81.203224 -9.095764 -0.400000 +v 80.857323 -8.830379 0.000000 +v 253.615540 -9.322258 -0.400000 +v 81.570999 -9.330070 -0.400000 +v 81.203224 -9.095764 0.000000 +v 253.121048 -9.527083 -0.400000 +v 81.957893 -9.531498 -0.400000 +v 81.570999 -9.330070 0.000000 +v 252.613068 -9.696173 -0.400000 +v 82.361053 -9.698491 -0.400000 +v 81.957893 -9.531498 0.000000 +v 252.094131 -9.828620 -0.400000 +v 82.777061 -9.829638 -0.400000 +v 82.361053 -9.698491 0.000000 +v 251.567337 -9.923649 -0.400000 +v 83.202797 -9.924015 -0.400000 +v 82.777061 -9.829638 0.000000 +v 251.035339 -9.980864 -0.400000 +v 83.635040 -9.980947 -0.400000 +v 83.202797 -9.924015 0.000000 +v 250.500000 -10.000000 -0.400000 +v 84.071068 -10.000000 -0.400000 +v 83.635040 -9.980947 0.000000 +v 84.071068 -10.000000 0.000000 +v 250.500000 -10.000000 0.000000 +v 251.035339 -9.980864 0.000000 +v 251.567337 -9.923649 0.000000 +v 252.094131 -9.828620 0.000000 +v 252.613068 -9.696173 0.000000 +v 253.121048 -9.527083 0.000000 +v 253.615540 -9.322258 0.000000 +v 254.094299 -9.082629 0.000000 +v 254.554901 -8.809336 0.000000 +v 254.994598 -8.504030 0.000000 +v 255.803299 -7.803301 -0.400000 +v 255.411362 -8.168184 0.000000 +v 256.168182 -7.411368 -0.400000 +v 255.803299 -7.803301 0.000000 +v 248.500000 -7.000000 -0.400000 +v 256.504028 -6.994594 -0.400000 +v 256.168182 -7.411368 0.000000 +v 242.681976 -7.000000 -0.400000 +v 237.525131 -7.000000 -0.400000 +v 249.331436 -6.555616 -0.400000 +v 256.809326 -6.554897 -0.400000 +v 256.504028 -6.994594 0.000000 +v 249.207108 -6.707107 -0.400000 +v 249.055618 -6.831429 -0.400000 +v 248.882675 -6.923866 -0.400000 +v 248.695023 -6.980789 -0.400000 +v 249.480789 -6.195029 -0.400000 +v 257.082642 -6.094296 -0.400000 +v 256.809326 -6.554897 0.000000 +v 249.423874 -6.382678 -0.400000 +v 249.500000 -6.000000 -0.400000 +v 257.322266 -5.615539 -0.400000 +v 257.082642 -6.094296 0.000000 +v 249.500000 -1.000000 -0.400000 +v 257.527069 -5.121047 -0.400000 +v 257.322266 -5.615539 0.000000 +v 257.696167 -4.613070 -0.400000 +v 257.527069 -5.121047 0.000000 +v 257.828613 -4.094129 -0.400000 +v 257.696167 -4.613070 0.000000 +v 257.923645 -3.567333 -0.400000 +v 257.828613 -4.094129 0.000000 +v 257.980865 -3.035341 -0.400000 +v 257.923645 -3.567333 0.000000 +v 257.980865 -3.035341 0.000000 +v 258.000000 -2.500000 0.000000 +v 248.882675 -0.076134 -0.400000 +v 249.055618 -0.168571 -0.400000 +v 249.207108 -0.292893 -0.400000 +v 249.331436 -0.444384 -0.400000 +v 249.423874 -0.617322 -0.400000 +v 249.480789 -0.804971 -0.400000 +v 258.000000 250.500000 0.000000 +v 257.980865 251.035339 0.000000 +v 257.923645 251.567337 0.000000 +v 257.828613 252.094131 0.000000 +v 257.696167 252.613068 0.000000 +v 257.527069 253.121048 0.000000 +v 257.322266 253.615540 0.000000 +v 257.082642 254.094299 0.000000 +v 256.809326 254.554901 0.000000 +v 256.504028 254.994598 0.000000 +v 256.168182 255.411362 0.000000 +v 255.803299 255.803299 0.000000 +v 255.411362 256.168182 0.000000 +v 254.994598 256.504028 0.000000 +v 254.554901 256.809326 0.000000 +v 254.094299 257.082642 0.000000 +v 253.615540 257.322266 0.000000 +v 253.121048 257.527069 0.000000 +v 252.613068 257.696167 0.000000 +v 252.094131 257.828613 0.000000 +v 251.567337 257.923645 -0.400000 +v 251.567337 257.923645 0.000000 +v 251.035339 257.980865 -0.400000 +v 250.500000 258.000000 -0.400000 +v 251.035339 257.980865 0.000000 +v 250.500000 258.000000 0.000000 +v 150.265457 258.019196 -0.400000 +v 165.634415 258.019043 -0.400000 +v 166.070450 258.000000 0.000000 +v 150.453064 258.076111 -0.400000 +v 165.202179 258.075989 -0.400000 +v 165.634415 258.019043 0.000000 +v 150.626007 258.168549 -0.400000 +v 164.776443 258.170349 -0.400000 +v 165.202179 258.075989 0.000000 +v 150.777588 258.292938 -0.400000 +v 164.360428 258.301514 -0.400000 +v 164.776443 258.170349 0.000000 +v 150.901932 258.444458 -0.400000 +v 163.957275 258.468506 -0.400000 +v 164.360428 258.301514 0.000000 +v 150.994293 258.617249 -0.400000 +v 163.570374 258.669922 -0.400000 +v 163.957275 258.468506 0.000000 +v 151.051208 258.804840 -0.400000 +v 163.202606 258.904236 -0.400000 +v 163.570374 258.669922 0.000000 +v 151.070435 259.000000 -0.400000 +v 162.856705 259.169617 -0.400000 +v 163.202606 258.904236 0.000000 +v 150.994293 259.382751 -0.400000 +v 162.856705 259.169617 0.000000 +v 151.051208 259.195160 -0.400000 +v 162.534912 259.464478 0.000000 +v 150.265457 259.980804 -0.400000 +v 150.453064 259.923889 -0.400000 +v 150.626007 259.831451 -0.400000 +v 150.777588 259.707062 -0.400000 +v 150.901932 259.555542 -0.400000 +v 157.142059 264.830383 -0.400000 +v 157.463837 264.535522 0.000000 +v 101.203224 265.095764 -0.400000 +v 156.796158 265.095764 -0.400000 +v 157.142059 264.830383 0.000000 +v 101.570999 265.330078 -0.400000 +v 156.428375 265.330078 -0.400000 +v 156.796158 265.095764 0.000000 +v 101.957893 265.531494 -0.400000 +v 156.041489 265.531494 -0.400000 +v 156.428375 265.330078 0.000000 +v 102.361053 265.698486 -0.400000 +v 155.638321 265.698486 -0.400000 +v 156.041489 265.531494 0.000000 +v 102.777061 265.829651 -0.400000 +v 155.222321 265.829651 -0.400000 +v 155.638321 265.698486 0.000000 +v 103.202797 265.924011 -0.400000 +v 154.796585 265.924011 -0.400000 +v 155.222321 265.829651 0.000000 +v 103.635040 265.980957 -0.400000 +v 154.364334 265.980957 -0.400000 +v 154.796585 265.924011 0.000000 +v 104.071068 266.000000 -0.400000 +v 153.928314 266.000000 -0.400000 +v 154.364334 265.980957 0.000000 +v 153.928314 266.000000 0.000000 +v 104.071068 266.000000 0.000000 +v 103.635040 265.980957 0.000000 +v 103.202797 265.924011 0.000000 +v 102.777061 265.829651 0.000000 +v 102.361053 265.698486 0.000000 +v 101.957893 265.531494 0.000000 +v 101.570999 265.330078 0.000000 +v 101.203224 265.095764 0.000000 +v 237.878677 -6.146447 -0.400000 +v 236.121323 -0.853553 -0.400000 +v 241.974869 -6.707107 -0.400000 +v 241.974869 -6.707107 0.000000 +v 237.958099 -6.750034 -0.400000 +v 242.126358 -6.831429 -0.400000 +v 242.126358 -6.831429 0.000000 +v 237.958099 -6.249966 -0.400000 +v 238.008087 -6.370639 -0.400000 +v 238.025131 -6.500000 -0.400000 +v 238.008087 -6.629361 -0.400000 +v 232.025131 -0.292893 -0.400000 +v 236.041901 -0.750034 -0.400000 +v 236.121323 -0.853553 0.000000 +v 235.991913 -0.629361 -0.400000 +v 236.041901 -0.750034 0.000000 +v 235.974869 -0.500000 -0.400000 +v 235.991913 -0.629361 0.000000 +v 235.991913 -0.370639 -0.400000 +v 235.974869 -0.500000 0.000000 +v 236.041901 -0.249966 -0.400000 +v 235.991913 -0.370639 0.000000 +v 231.873642 -0.168571 -0.400000 +v 236.121323 -0.146447 -0.400000 +v 236.041901 -0.249966 0.000000 +v 231.700699 -0.076134 -0.400000 +v 236.224838 -0.067023 -0.400000 +v 236.121323 -0.146447 0.000000 +v 231.513046 -0.019211 -0.400000 +v 236.345520 -0.017038 -0.400000 +v 236.224838 -0.067023 0.000000 +v 236.345520 -0.017038 0.000000 +v 236.474869 0.000000 0.000000 +v 248.500000 0.000000 0.000000 +v 248.695023 -0.019211 0.000000 +v 248.882675 -0.076134 0.000000 +v 249.055618 -0.168571 0.000000 +v 249.207108 -0.292893 0.000000 +v 249.331436 -0.444384 0.000000 +v 249.423874 -0.617322 0.000000 +v 249.480789 -0.804971 0.000000 +v 249.500000 -1.000000 0.000000 +v 249.500000 -6.000000 0.000000 +v 249.480789 -6.195029 0.000000 +v 249.423874 -6.382678 0.000000 +v 249.331436 -6.555616 0.000000 +v 249.207108 -6.707107 0.000000 +v 249.055618 -6.831429 0.000000 +v 248.882675 -6.923866 0.000000 +v 248.695023 -6.980789 0.000000 +v 248.500000 -7.000000 0.000000 +v 237.654480 -6.982962 -0.400000 +v 242.486954 -6.980789 -0.400000 +v 242.681976 -7.000000 0.000000 +v 237.775162 -6.932977 -0.400000 +v 242.299301 -6.923866 -0.400000 +v 242.486954 -6.980789 0.000000 +v 237.878677 -6.853553 -0.400000 +v 242.299301 -6.923866 0.000000 +v 232.025131 -0.292893 0.000000 +v 231.873642 -0.168571 0.000000 +v 237.878677 -6.146447 0.000000 +v 237.958099 -6.249966 0.000000 +v 238.008087 -6.370639 0.000000 +v 238.025131 -6.500000 0.000000 +v 238.008087 -6.629361 0.000000 +v 237.958099 -6.750034 0.000000 +v 237.878677 -6.853553 0.000000 +v 237.775162 -6.932977 0.000000 +v 237.654480 -6.982962 0.000000 +v 237.525131 -7.000000 0.000000 +v 225.500000 -7.000000 0.000000 +v 225.304977 -6.980789 0.000000 +v 225.117325 -6.923866 0.000000 +v 224.944382 -6.831429 0.000000 +v 224.792892 -6.707107 0.000000 +v 224.668564 -6.555616 0.000000 +v 224.576126 -6.382678 0.000000 +v 224.519211 -6.195029 0.000000 +v 224.500000 -6.000000 0.000000 +v 224.500000 -1.000000 0.000000 +v 224.519211 -0.804971 0.000000 +v 224.576126 -0.617322 0.000000 +v 224.668564 -0.444384 0.000000 +v 224.792892 -0.292893 0.000000 +v 224.944382 -0.168571 0.000000 +v 225.117325 -0.076134 0.000000 +v 225.304977 -0.019211 0.000000 +v 225.500000 0.000000 0.000000 +v 231.318024 0.000000 0.000000 +v 231.513046 -0.019211 0.000000 +v 231.700699 -0.076134 0.000000 +v 107.928932 258.000000 0.000000 +v 150.070450 258.000000 0.000000 +v 107.733925 258.019196 0.000000 +v 107.546310 258.076111 0.000000 +v 107.373367 258.168549 0.000000 +v 107.221794 258.292938 0.000000 +v 107.097450 258.444458 0.000000 +v 107.005081 258.617249 0.000000 +v 106.948174 258.804840 0.000000 +v 106.928947 259.000000 0.000000 +v 106.948174 259.195160 0.000000 +v 107.005081 259.382751 0.000000 +v 107.097450 259.555542 0.000000 +v 107.221794 259.707062 0.000000 +v 107.373367 259.831451 0.000000 +v 107.546310 259.923889 0.000000 +v 107.733925 259.980804 0.000000 +v 107.928932 260.000000 0.000000 +v 150.070450 260.000000 0.000000 +v 150.265457 259.980804 0.000000 +v 150.453064 259.923889 0.000000 +v 150.626007 259.831451 0.000000 +v 150.777588 259.707062 0.000000 +v 150.901932 259.555542 0.000000 +v 150.994293 259.382751 0.000000 +v 151.051208 259.195160 0.000000 +v 151.070435 259.000000 0.000000 +v 151.051208 258.804840 0.000000 +v 150.994293 258.617249 0.000000 +v 150.901932 258.444458 0.000000 +v 150.777588 258.292938 0.000000 +v 150.626007 258.168549 0.000000 +v 150.453064 258.076111 0.000000 +v 150.265457 258.019196 0.000000 +vn -0.0000 -0.0000 -1.0000 +vn -0.7071 0.7071 -0.0000 +vn -0.6756 0.7373 -0.0000 +vn -0.6087 0.7934 -0.0000 +vn -0.5373 0.8434 -0.0000 +vn -0.4618 0.8870 -0.0000 +vn -0.3827 0.9239 -0.0000 +vn -0.3007 0.9537 -0.0000 +vn -0.2164 0.9763 -0.0000 +vn -0.1306 0.9914 -0.0000 +vn -0.0436 0.9990 -0.0000 +vn -0.0000 1.0000 -0.0000 +vn -0.0357 0.9994 -0.0000 +vn -0.1069 0.9943 -0.0000 +vn -0.1775 0.9841 -0.0000 +vn -0.2473 0.9689 -0.0000 +vn -0.3158 0.9488 -0.0000 +vn -0.3826 0.9239 -0.0000 +vn -0.4476 0.8942 -0.0000 +vn -0.5103 0.8600 -0.0000 +vn -0.5703 0.8214 -0.0000 +vn -0.6275 0.7787 -0.0000 +vn -0.6814 0.7319 -0.0000 +vn -0.7319 0.6814 -0.0000 +vn -0.7786 0.6275 -0.0000 +vn -0.8214 0.5703 -0.0000 +vn -0.8600 0.5103 -0.0000 +vn -0.8942 0.4476 -0.0000 +vn -0.9239 0.3827 -0.0000 +vn -0.9488 0.3158 -0.0000 +vn -0.9689 0.2473 -0.0000 +vn -0.9841 0.1775 -0.0000 +vn -0.9943 0.1069 -0.0000 +vn -0.9994 0.0357 -0.0000 +vn -1.0000 -0.0000 -0.0000 +vn -0.9994 -0.0357 -0.0000 +vn -0.9943 -0.1069 -0.0000 +vn -0.9841 -0.1775 -0.0000 +vn -0.9689 -0.2473 -0.0000 +vn -0.9488 -0.3158 -0.0000 +vn -0.9239 -0.3827 -0.0000 +vn -0.8942 -0.4476 -0.0000 +vn -0.8600 -0.5103 -0.0000 +vn -0.8214 -0.5703 -0.0000 +vn -0.7787 -0.6275 -0.0000 +vn -0.7319 -0.6814 -0.0000 +vn -0.6814 -0.7319 -0.0000 +vn -0.6275 -0.7787 -0.0000 +vn -0.5703 -0.8214 -0.0000 +vn -0.5103 -0.8600 -0.0000 +vn -0.4476 -0.8942 -0.0000 +vn -0.3827 -0.9239 -0.0000 +vn -0.3158 -0.9488 -0.0000 +vn -0.2473 -0.9689 -0.0000 +vn -0.1775 -0.9841 -0.0000 +vn -0.1069 -0.9943 -0.0000 +vn -0.0357 -0.9994 -0.0000 +vn -0.0000 -1.0000 -0.0000 +vn -0.0437 -0.9990 -0.0000 +vn -0.1306 -0.9914 -0.0000 +vn -0.2164 -0.9763 -0.0000 +vn -0.3007 -0.9537 -0.0000 +vn -0.4618 -0.8870 -0.0000 +vn -0.5373 -0.8434 -0.0000 +vn -0.6087 -0.7934 -0.0000 +vn -0.6756 -0.7373 -0.0000 +vn -0.7071 -0.7071 -0.0000 +vn 0.0357 -0.9994 -0.0000 +vn 0.1069 -0.9943 -0.0000 +vn 0.1775 -0.9841 -0.0000 +vn 0.2473 -0.9689 -0.0000 +vn 0.3158 -0.9488 -0.0000 +vn 0.3827 -0.9239 -0.0000 +vn 0.4476 -0.8942 -0.0000 +vn 0.5103 -0.8600 -0.0000 +vn 0.5703 -0.8214 -0.0000 +vn 0.6275 -0.7786 -0.0000 +vn 0.5704 -0.8214 -0.0000 +vn 0.6814 -0.7319 -0.0000 +vn 0.7319 -0.6814 -0.0000 +vn 0.7787 -0.6275 -0.0000 +vn 0.8214 -0.5703 -0.0000 +vn 0.8600 -0.5103 -0.0000 +vn 0.8943 -0.4475 -0.0000 +vn 0.9239 -0.3827 -0.0000 +vn 0.8942 -0.4476 -0.0000 +vn 0.9488 -0.3159 -0.0000 +vn 0.9239 -0.3826 -0.0000 +vn 0.9689 -0.2473 -0.0000 +vn 0.9488 -0.3158 -0.0000 +vn 0.9841 -0.1775 -0.0000 +vn 0.9943 -0.1070 -0.0000 +vn 0.9994 -0.0357 -0.0000 +vn 0.9943 -0.1069 -0.0000 +vn 1.0000 -0.0000 -0.0000 +vn 0.9994 -0.0358 -0.0000 +vn 0.9994 0.0358 -0.0000 +vn 0.9943 0.1069 -0.0000 +vn 0.9994 0.0357 -0.0000 +vn 0.9841 0.1775 -0.0000 +vn 0.9943 0.1070 -0.0000 +vn 0.9689 0.2473 -0.0000 +vn 0.9488 0.3158 -0.0000 +vn 0.9239 0.3826 -0.0000 +vn 0.9488 0.3159 -0.0000 +vn 0.8942 0.4476 -0.0000 +vn 0.9239 0.3827 -0.0000 +vn 0.8600 0.5103 -0.0000 +vn 0.8943 0.4475 -0.0000 +vn 0.8214 0.5703 -0.0000 +vn 0.7786 0.6275 -0.0000 +vn 0.7319 0.6814 -0.0000 +vn 0.6814 0.7319 -0.0000 +vn 0.6275 0.7786 -0.0000 +vn 0.5703 0.8214 -0.0000 +vn 0.5103 0.8600 -0.0000 +vn 0.4476 0.8942 -0.0000 +vn 0.3826 0.9239 -0.0000 +vn 0.3159 0.9488 -0.0000 +vn 0.3827 0.9239 -0.0000 +vn 0.2473 0.9689 -0.0000 +vn 0.3158 0.9488 -0.0000 +vn 0.1775 0.9841 -0.0000 +vn 0.1069 0.9943 -0.0000 +vn 0.0357 0.9994 -0.0000 +vn 0.0436 0.9990 -0.0000 +vn 0.1306 0.9914 -0.0000 +vn 0.2164 0.9763 -0.0000 +vn 0.3007 0.9537 -0.0000 +vn 0.4618 0.8870 -0.0000 +vn 0.5373 0.8434 -0.0000 +vn 0.6087 0.7934 -0.0000 +vn 0.6756 0.7373 -0.0000 +vn 0.7071 0.7071 -0.0000 +vn 0.6343 0.7731 -0.0000 +vn 0.6344 0.7730 -0.0000 +vn 0.7933 0.6089 -0.0000 +vn 0.9238 0.3829 -0.0000 +vn 0.7935 0.6085 -0.0000 +vn 0.9915 0.1304 -0.0000 +vn 0.9914 -0.1310 -0.0000 +vn 0.9914 0.1310 -0.0000 +vn 0.9915 -0.1304 -0.0000 +vn 0.7935 -0.6085 -0.0000 +vn 0.9238 -0.3829 -0.0000 +vn 0.6088 -0.7933 -0.0000 +vn 0.7933 -0.6089 -0.0000 +vn 0.3826 -0.9239 -0.0000 +vn 0.6087 -0.7934 -0.0000 +vn 0.1306 -0.9914 -0.0000 +vn -0.0980 -0.9952 -0.0000 +vn -0.2903 -0.9569 -0.0000 +vn -0.4714 -0.8819 -0.0000 +vn -0.6343 -0.7731 -0.0000 +vn -0.7730 -0.6344 -0.0000 +vn -0.6344 -0.7730 -0.0000 +vn -0.8819 -0.4714 -0.0000 +vn -0.9570 -0.2903 -0.0000 +vn -0.8819 -0.4715 -0.0000 +vn -0.9952 -0.0979 -0.0000 +vn -0.9952 -0.0981 -0.0000 +vn -0.9952 0.0981 -0.0000 +vn -0.9570 0.2903 -0.0000 +vn -0.9952 0.0979 -0.0000 +vn -0.8819 0.4715 -0.0000 +vn -0.7730 0.6344 -0.0000 +vn -0.8819 0.4714 -0.0000 +vn -0.6344 0.7730 -0.0000 +vn -0.4714 0.8819 -0.0000 +vn -0.6343 0.7731 -0.0000 +vn -0.2903 0.9569 -0.0000 +vn -0.0980 0.9952 -0.0000 +vn 0.0980 0.9952 -0.0000 +vn 0.2903 0.9569 -0.0000 +vn 0.4714 0.8819 -0.0000 +vn -0.7934 -0.6087 -0.0000 +vn -0.9239 -0.3826 -0.0000 +vn -0.9915 -0.1304 -0.0000 +vn -0.9238 -0.3829 -0.0000 +vn -0.9914 0.1307 -0.0000 +vn -0.9914 -0.1307 -0.0000 +vn -0.9238 0.3829 -0.0000 +vn -0.9915 0.1304 -0.0000 +vn -0.7934 0.6087 -0.0000 +vn -0.9239 0.3826 -0.0000 +vn -0.6088 0.7933 -0.0000 +vn 0.2902 0.9570 -0.0000 +vn 0.7730 0.6344 -0.0000 +vn 0.8819 0.4714 -0.0000 +vn 0.7729 0.6345 -0.0000 +vn 0.9570 0.2903 -0.0000 +vn 0.9952 0.0979 -0.0000 +vn 0.9952 0.0981 -0.0000 +vn 0.9952 -0.0981 -0.0000 +vn 0.9570 -0.2903 -0.0000 +vn 0.9952 -0.0979 -0.0000 +vn 0.8819 -0.4714 -0.0000 +vn 0.7729 -0.6345 -0.0000 +vn 0.6344 -0.7730 -0.0000 +vn 0.7730 -0.6344 -0.0000 +vn 0.4714 -0.8819 -0.0000 +vn 0.2902 -0.9570 -0.0000 +vn 0.0980 -0.9952 -0.0000 +vn 0.2903 -0.9569 -0.0000 +vn -0.2902 -0.9570 -0.0000 +vn 0.8819 0.4715 -0.0000 +vn 0.9569 0.2903 -0.0000 +vn 0.9952 0.0980 -0.0000 +vn 0.9570 0.2902 -0.0000 +vn 0.9952 -0.0980 -0.0000 +vn 0.9570 -0.2902 -0.0000 +vn 0.8819 -0.4715 -0.0000 +vn 0.9569 -0.2903 -0.0000 +vn -0.9569 -0.2903 -0.0000 +vn -0.8820 -0.4713 -0.0000 +vn -0.9952 -0.0980 -0.0000 +vn -0.9952 0.0980 -0.0000 +vn -0.9569 0.2903 -0.0000 +vn -0.8820 0.4713 -0.0000 +vn -0.0000 -0.0000 1.0000 +vt 0.000000 0.000000 +vt 0.401686 0.999931 +vt 0.596621 1.000000 +vt 0.403376 1.000000 +vt 0.598311 0.999931 +vt 0.400011 0.999725 +vt 0.599987 0.999725 +vt 0.398361 0.999383 +vt 0.601637 0.999383 +vt 0.396748 0.998908 +vt 0.603249 0.998908 +vt 0.395186 0.998302 +vt 0.604812 0.998302 +vt 0.393686 0.997573 +vt 0.606312 0.997573 +vt 0.392261 0.996724 +vt 0.607737 0.996724 +vt 0.390920 0.995762 +vt 0.609078 0.995762 +vt 0.389673 0.994694 +vt 0.610325 0.994694 +vt 0.584891 0.976650 +vt 0.629980 0.976321 +vt 0.370017 0.976321 +vt 0.418329 0.978261 +vt 0.581668 0.978261 +vt 0.584409 0.977199 +vt 0.583822 0.977650 +vt 0.583151 0.977985 +vt 0.582424 0.978191 +vt 0.585470 0.975345 +vt 0.631228 0.975252 +vt 0.585249 0.976024 +vt 0.585544 0.974638 +vt 0.632568 0.974291 +vt 0.585470 0.973931 +vt 0.633994 0.973442 +vt 0.585249 0.973251 +vt 0.635493 0.972712 +vt 0.584891 0.972625 +vt 0.637056 0.972107 +vt 0.584409 0.972076 +vt 0.638668 0.971632 +vt 0.583151 0.971290 +vt 0.640319 0.971290 +vt 0.583822 0.971625 +vt 0.582424 0.971084 +vt 0.641994 0.971084 +vt 0.581668 0.971014 +vt 0.643684 0.971014 +vt 0.022891 0.970394 +vt 0.418329 0.971014 +vt 0.356314 0.971014 +vt 0.973005 0.970945 +vt 0.970930 0.971014 +vt 0.975067 0.970738 +vt 0.977109 0.970394 +vt 0.020880 0.969914 +vt 0.979120 0.969914 +vt 0.018911 0.969301 +vt 0.981089 0.969301 +vt 0.016994 0.968559 +vt 0.983006 0.968559 +vt 0.015138 0.967691 +vt 0.984862 0.967691 +vt 0.013353 0.966700 +vt 0.986647 0.966700 +vt 0.011649 0.965594 +vt 0.988351 0.965594 +vt 0.010033 0.964377 +vt 0.989967 0.964377 +vt 0.008514 0.963055 +vt 0.991486 0.963055 +vt 0.007100 0.961635 +vt 0.992900 0.961635 +vt 0.005798 0.960125 +vt 0.994202 0.960125 +vt 0.004615 0.958532 +vt 0.995385 0.958532 +vt 0.003556 0.956863 +vt 0.996444 0.956863 +vt 0.002627 0.955129 +vt 0.997373 0.955129 +vt 0.001833 0.953337 +vt 0.998167 0.953337 +vt 0.001178 0.951497 +vt 0.998822 0.951497 +vt 0.000664 0.949617 +vt 0.999336 0.949617 +vt 0.000296 0.947708 +vt 0.999704 0.947708 +vt 0.000074 0.945780 +vt 0.999926 0.945780 +vt 0.000000 0.943841 +vt 1.000000 0.943841 +vt 0.967054 0.032609 +vt 1.000000 0.027174 +vt 0.029070 0.036232 +vt 0.271042 0.036232 +vt 0.874031 0.036232 +vt 0.026995 0.036301 +vt 0.024933 0.036509 +vt 0.022891 0.036853 +vt 0.020880 0.037333 +vt 0.018911 0.037945 +vt 0.016994 0.038687 +vt 0.015138 0.039556 +vt 0.013353 0.040546 +vt 0.011649 0.041652 +vt 0.010033 0.042869 +vt 0.008514 0.044191 +vt 0.007100 0.045611 +vt 0.005798 0.047121 +vt 0.004615 0.048714 +vt 0.003556 0.050383 +vt 0.002627 0.052118 +vt 0.001833 0.053909 +vt 0.001178 0.055750 +vt 0.000664 0.057630 +vt 0.000296 0.059539 +vt 0.000074 0.061466 +vt 0.000000 0.063406 +vt 0.963178 0.036232 +vt 0.916569 0.036232 +vt 0.896582 0.036232 +vt 0.966980 0.033315 +vt 0.966759 0.033995 +vt 0.966401 0.034622 +vt 0.965919 0.035171 +vt 0.965332 0.035621 +vt 0.964661 0.035956 +vt 0.963934 0.036162 +vt 0.967054 0.014493 +vt 0.999926 0.025234 +vt 0.999704 0.023307 +vt 0.999336 0.021398 +vt 0.998822 0.019518 +vt 0.998167 0.017677 +vt 0.997373 0.015886 +vt 0.996444 0.014151 +vt 0.966759 0.013106 +vt 0.995385 0.012482 +vt 0.966980 0.013786 +vt 0.963934 0.010939 +vt 0.994202 0.010889 +vt 0.964661 0.011145 +vt 0.965332 0.011480 +vt 0.965919 0.011931 +vt 0.966401 0.012480 +vt 0.963178 0.010870 +vt 0.992900 0.009379 +vt 0.312153 0.005306 +vt 0.991486 0.007959 +vt 0.989967 0.006637 +vt 0.988351 0.005420 +vt 0.986647 0.004314 +vt 0.313401 0.004238 +vt 0.984862 0.003324 +vt 0.314741 0.003276 +vt 0.983006 0.002456 +vt 0.316167 0.002427 +vt 0.981089 0.001714 +vt 0.317666 0.001697 +vt 0.979120 0.001101 +vt 0.319229 0.001092 +vt 0.977109 0.000621 +vt 0.320841 0.000617 +vt 0.975067 0.000277 +vt 0.324167 0.000069 +vt 0.973005 0.000069 +vt 0.322491 0.000275 +vt 0.325857 0.000000 +vt 0.970930 0.000000 +vt 0.870155 0.014493 +vt 0.284746 0.030926 +vt 0.940628 0.010870 +vt 0.920640 0.010870 +vt 0.874031 0.010870 +vt 0.870230 0.013786 +vt 0.870450 0.013106 +vt 0.870808 0.012480 +vt 0.871290 0.011931 +vt 0.871878 0.011480 +vt 0.872548 0.011145 +vt 0.873275 0.010939 +vt 0.870155 0.032609 +vt 0.283499 0.031994 +vt 0.282158 0.032956 +vt 0.870230 0.033315 +vt 0.280733 0.033805 +vt 0.870450 0.033995 +vt 0.279233 0.034534 +vt 0.870808 0.034622 +vt 0.277670 0.035139 +vt 0.871290 0.035171 +vt 0.276058 0.035615 +vt 0.872548 0.035956 +vt 0.274408 0.035957 +vt 0.871878 0.035621 +vt 0.873275 0.036162 +vt 0.272732 0.036163 +vt 0.029070 0.971014 +vt 0.026995 0.970945 +vt 0.024933 0.970738 +vt 0.417573 0.971084 +vt 0.358004 0.971084 +vt 0.416846 0.971290 +vt 0.359679 0.971290 +vt 0.416176 0.971625 +vt 0.361329 0.971632 +vt 0.415588 0.972076 +vt 0.362942 0.972107 +vt 0.415106 0.972625 +vt 0.364504 0.972712 +vt 0.414748 0.973251 +vt 0.366004 0.973442 +vt 0.414528 0.973931 +vt 0.367429 0.974291 +vt 0.414453 0.974638 +vt 0.368770 0.975252 +vt 0.414748 0.976024 +vt 0.414528 0.975345 +vt 0.417573 0.978191 +vt 0.416846 0.977985 +vt 0.416176 0.977650 +vt 0.415588 0.977199 +vt 0.415106 0.976650 +vt 0.897337 0.036162 +vt 0.916068 0.036170 +vt 0.915600 0.035989 +vt 0.898065 0.035956 +vt 0.915199 0.035701 +vt 0.898735 0.035621 +vt 0.914891 0.035326 +vt 0.899322 0.035171 +vt 0.914697 0.034889 +vt 0.914631 0.034420 +vt 0.914697 0.033952 +vt 0.922010 0.013962 +vt 0.914891 0.033514 +vt 0.915199 0.033139 +vt 0.922512 0.013150 +vt 0.937887 0.011931 +vt 0.922318 0.013587 +vt 0.922318 0.011775 +vt 0.938474 0.011480 +vt 0.922512 0.012212 +vt 0.922578 0.012681 +vt 0.922010 0.011400 +vt 0.939144 0.011145 +vt 0.921609 0.011112 +vt 0.939872 0.010939 +vt 0.921141 0.010931 +s 0 +usemtl Material.001 +f 1/1/1 2/1/1 3/1/1 +f 4/1/2 3/1/2 2/1/2 +f 5/1/1 6/1/1 3/1/1 +f 7/1/1 3/1/1 6/1/1 +f 8/1/1 5/1/1 3/1/1 +f 9/1/3 8/1/3 3/1/3 +f 10/1/1 1/1/1 3/1/1 +f 11/1/1 10/1/1 3/1/1 +f 12/1/1 11/1/1 3/1/1 +f 13/1/1 12/1/1 3/1/1 +f 14/1/1 13/1/1 3/1/1 +f 7/1/1 14/1/1 3/1/1 +f 9/1/3 3/1/3 4/1/3 +f 15/1/1 16/1/1 2/1/1 +f 17/1/3 2/1/3 16/1/3 +f 18/1/1 15/1/1 2/1/1 +f 1/1/1 18/1/1 2/1/1 +f 4/1/2 2/1/2 17/1/2 +f 19/1/1 20/1/1 16/1/1 +f 21/1/4 16/1/4 20/1/4 +f 15/1/1 19/1/1 16/1/1 +f 17/1/3 16/1/3 21/1/3 +f 22/1/1 23/1/1 20/1/1 +f 24/1/5 20/1/5 23/1/5 +f 19/1/1 22/1/1 20/1/1 +f 21/1/4 20/1/4 24/1/4 +f 25/1/1 26/1/1 23/1/1 +f 27/1/6 23/1/6 26/1/6 +f 22/1/1 25/1/1 23/1/1 +f 24/1/5 23/1/5 27/1/5 +f 28/1/1 29/1/1 26/1/1 +f 30/1/7 26/1/7 29/1/7 +f 25/1/1 28/1/1 26/1/1 +f 27/1/6 26/1/6 30/1/6 +f 31/1/1 32/1/1 29/1/1 +f 33/1/8 29/1/8 32/1/8 +f 28/1/1 31/1/1 29/1/1 +f 30/1/7 29/1/7 33/1/7 +f 34/1/1 35/1/1 32/1/1 +f 36/1/9 32/1/9 35/1/9 +f 37/1/1 34/1/1 32/1/1 +f 31/1/1 37/1/1 32/1/1 +f 33/1/8 32/1/8 36/1/8 +f 38/1/1 39/1/1 35/1/1 +f 40/1/10 35/1/10 39/1/10 +f 34/1/1 38/1/1 35/1/1 +f 36/1/9 35/1/9 40/1/9 +f 41/1/1 42/1/1 39/1/1 +f 43/1/11 39/1/11 42/1/11 +f 38/1/1 41/1/1 39/1/1 +f 40/1/10 39/1/10 43/1/10 +f 44/1/1 41/1/1 45/1/1 +f 46/1/12 42/1/12 47/1/12 +f 44/1/1 45/1/1 48/1/1 +f 43/1/11 42/1/11 46/1/11 +f 49/1/1 47/1/1 42/1/1 +f 50/1/13 47/1/13 49/1/13 +f 46/1/12 47/1/12 50/1/12 +f 51/1/1 49/1/1 42/1/1 +f 52/1/14 49/1/14 51/1/14 +f 44/1/1 42/1/1 41/1/1 +f 50/1/13 49/1/13 52/1/13 +f 44/1/1 53/1/1 51/1/1 +f 54/1/15 51/1/15 53/1/15 +f 44/1/1 51/1/1 42/1/1 +f 52/1/14 51/1/14 54/1/14 +f 55/1/1 56/1/1 53/1/1 +f 57/1/16 53/1/16 56/1/16 +f 44/1/1 55/1/1 53/1/1 +f 54/1/15 53/1/15 57/1/15 +f 58/1/1 59/1/1 56/1/1 +f 60/1/17 56/1/17 59/1/17 +f 55/1/1 58/1/1 56/1/1 +f 57/1/16 56/1/16 60/1/16 +f 61/1/1 62/1/1 59/1/1 +f 63/1/18 59/1/18 62/1/18 +f 58/1/1 61/1/1 59/1/1 +f 60/1/17 59/1/17 63/1/17 +f 64/1/1 65/1/1 62/1/1 +f 66/1/19 62/1/19 65/1/19 +f 61/1/1 64/1/1 62/1/1 +f 63/1/18 62/1/18 66/1/18 +f 67/1/1 68/1/1 65/1/1 +f 69/1/20 65/1/20 68/1/20 +f 64/1/1 67/1/1 65/1/1 +f 66/1/19 65/1/19 69/1/19 +f 70/1/1 71/1/1 68/1/1 +f 72/1/21 68/1/21 71/1/21 +f 67/1/1 70/1/1 68/1/1 +f 69/1/20 68/1/20 72/1/20 +f 73/1/1 74/1/1 71/1/1 +f 75/1/22 71/1/22 74/1/22 +f 70/1/1 73/1/1 71/1/1 +f 72/1/21 71/1/21 75/1/21 +f 76/1/1 77/1/1 74/1/1 +f 78/1/23 74/1/23 77/1/23 +f 73/1/1 76/1/1 74/1/1 +f 75/1/22 74/1/22 78/1/22 +f 79/1/1 80/1/1 77/1/1 +f 81/1/24 77/1/24 80/1/24 +f 76/1/1 79/1/1 77/1/1 +f 78/1/23 77/1/23 81/1/23 +f 82/1/1 83/1/1 80/1/1 +f 84/1/25 80/1/25 83/1/25 +f 79/1/1 82/1/1 80/1/1 +f 81/1/24 80/1/24 84/1/24 +f 85/1/1 86/1/1 83/1/1 +f 87/1/26 83/1/26 86/1/26 +f 82/1/1 85/1/1 83/1/1 +f 84/1/25 83/1/25 87/1/25 +f 88/1/1 89/1/1 86/1/1 +f 90/1/27 86/1/27 89/1/27 +f 85/1/1 88/1/1 86/1/1 +f 87/1/26 86/1/26 90/1/26 +f 91/1/1 92/1/1 89/1/1 +f 93/1/28 89/1/28 92/1/28 +f 88/1/1 91/1/1 89/1/1 +f 90/1/27 89/1/27 93/1/27 +f 94/1/1 95/1/1 92/1/1 +f 96/1/29 92/1/29 95/1/29 +f 91/1/1 94/1/1 92/1/1 +f 93/1/28 92/1/28 96/1/28 +f 97/1/1 98/1/1 95/1/1 +f 99/1/30 95/1/30 98/1/30 +f 94/1/1 97/1/1 95/1/1 +f 96/1/29 95/1/29 99/1/29 +f 100/1/1 101/1/1 98/1/1 +f 102/1/31 98/1/31 101/1/31 +f 97/1/1 100/1/1 98/1/1 +f 99/1/30 98/1/30 102/1/30 +f 103/1/1 104/1/1 101/1/1 +f 105/1/32 101/1/32 104/1/32 +f 100/1/1 103/1/1 101/1/1 +f 102/1/31 101/1/31 105/1/31 +f 106/1/1 107/1/1 104/1/1 +f 108/1/33 104/1/33 107/1/33 +f 103/1/1 106/1/1 104/1/1 +f 105/1/32 104/1/32 108/1/32 +f 109/1/1 110/1/1 107/1/1 +f 111/1/34 107/1/34 110/1/34 +f 106/1/1 109/1/1 107/1/1 +f 108/1/33 107/1/33 111/1/33 +f 112/1/1 113/1/1 110/1/1 +f 114/1/35 110/1/35 113/1/35 +f 109/1/1 115/1/1 110/1/1 +f 116/1/1 110/1/1 115/1/1 +f 116/1/1 112/1/1 110/1/1 +f 111/1/34 110/1/34 114/1/34 +f 112/1/1 117/1/1 113/1/1 +f 118/1/36 113/1/36 117/1/36 +f 114/1/35 113/1/35 118/1/35 +f 112/1/1 119/1/1 117/1/1 +f 120/1/37 117/1/37 119/1/37 +f 118/1/36 117/1/36 120/1/36 +f 112/1/1 121/1/1 119/1/1 +f 122/1/38 119/1/38 121/1/38 +f 120/1/37 119/1/37 122/1/37 +f 112/1/1 123/1/1 121/1/1 +f 124/1/39 121/1/39 123/1/39 +f 122/1/38 121/1/38 124/1/38 +f 112/1/1 125/1/1 123/1/1 +f 126/1/40 123/1/40 125/1/40 +f 124/1/39 123/1/39 126/1/39 +f 112/1/1 127/1/1 125/1/1 +f 128/1/41 125/1/41 127/1/41 +f 126/1/40 125/1/40 128/1/40 +f 112/1/1 129/1/1 127/1/1 +f 130/1/42 127/1/42 129/1/42 +f 128/1/41 127/1/41 130/1/41 +f 112/1/1 131/1/1 129/1/1 +f 132/1/43 129/1/43 131/1/43 +f 130/1/42 129/1/42 132/1/42 +f 112/1/1 133/1/1 131/1/1 +f 134/1/44 131/1/44 133/1/44 +f 132/1/43 131/1/43 134/1/43 +f 112/1/1 135/1/1 133/1/1 +f 136/1/45 133/1/45 135/1/45 +f 134/1/44 133/1/44 136/1/44 +f 112/1/1 137/1/1 135/1/1 +f 138/1/46 135/1/46 137/1/46 +f 136/1/45 135/1/45 138/1/45 +f 112/1/1 139/1/1 137/1/1 +f 140/1/47 137/1/47 139/1/47 +f 138/1/46 137/1/46 140/1/46 +f 112/1/1 141/1/1 139/1/1 +f 142/1/48 139/1/48 141/1/48 +f 140/1/47 139/1/47 142/1/47 +f 112/1/1 143/1/1 141/1/1 +f 144/1/49 141/1/49 143/1/49 +f 142/1/48 141/1/48 144/1/48 +f 112/1/1 145/1/1 143/1/1 +f 146/1/50 143/1/50 145/1/50 +f 144/1/49 143/1/49 146/1/49 +f 112/1/1 147/1/1 145/1/1 +f 148/1/51 145/1/51 147/1/51 +f 146/1/50 145/1/50 148/1/50 +f 112/1/1 149/1/1 147/1/1 +f 150/1/52 147/1/52 149/1/52 +f 148/1/51 147/1/51 150/1/51 +f 149/1/1 112/1/1 151/1/1 +f 152/1/53 149/1/53 153/1/53 +f 150/1/52 149/1/52 152/1/52 +f 149/1/1 151/1/1 154/1/1 +f 155/1/54 153/1/54 156/1/54 +f 152/1/53 153/1/53 155/1/53 +f 149/1/1 154/1/1 157/1/1 +f 158/1/55 156/1/55 159/1/55 +f 155/1/54 156/1/54 158/1/54 +f 157/1/1 153/1/1 149/1/1 +f 160/1/56 159/1/56 161/1/56 +f 158/1/55 159/1/55 160/1/55 +f 162/1/1 163/1/1 161/1/1 +f 164/1/57 161/1/57 163/1/57 +f 162/1/1 161/1/1 159/1/1 +f 157/1/1 156/1/1 153/1/1 +f 156/1/1 157/1/1 162/1/1 +f 162/1/1 159/1/1 156/1/1 +f 160/1/56 161/1/56 164/1/56 +f 165/1/58 163/1/58 162/1/58 +f 164/1/57 163/1/57 165/1/57 +f 166/1/1 167/1/1 162/1/1 +f 168/1/59 162/1/59 167/1/59 +f 157/1/1 166/1/1 162/1/1 +f 165/1/58 162/1/58 168/1/58 +f 169/1/1 170/1/1 167/1/1 +f 171/1/60 167/1/60 170/1/60 +f 166/1/1 169/1/1 167/1/1 +f 168/1/59 167/1/59 171/1/59 +f 172/1/1 173/1/1 170/1/1 +f 174/1/61 170/1/61 173/1/61 +f 169/1/1 172/1/1 170/1/1 +f 171/1/60 170/1/60 174/1/60 +f 175/1/1 176/1/1 173/1/1 +f 177/1/62 173/1/62 176/1/62 +f 172/1/1 175/1/1 173/1/1 +f 174/1/61 173/1/61 177/1/61 +f 178/1/1 179/1/1 176/1/1 +f 180/1/52 176/1/52 179/1/52 +f 175/1/1 178/1/1 176/1/1 +f 177/1/62 176/1/62 180/1/62 +f 181/1/1 182/1/1 179/1/1 +f 183/1/63 179/1/63 182/1/63 +f 178/1/1 181/1/1 179/1/1 +f 180/1/52 179/1/52 183/1/52 +f 184/1/1 185/1/1 182/1/1 +f 186/1/64 182/1/64 185/1/64 +f 181/1/1 184/1/1 182/1/1 +f 183/1/63 182/1/63 186/1/63 +f 187/1/1 188/1/1 185/1/1 +f 189/1/65 185/1/65 188/1/65 +f 184/1/1 187/1/1 185/1/1 +f 186/1/64 185/1/64 189/1/64 +f 190/1/1 191/1/1 188/1/1 +f 192/1/66 188/1/66 191/1/66 +f 187/1/1 190/1/1 188/1/1 +f 189/1/65 188/1/65 192/1/65 +f 193/1/1 194/1/1 191/1/1 +f 195/1/67 191/1/67 194/1/67 +f 196/1/1 193/1/1 191/1/1 +f 197/1/1 196/1/1 191/1/1 +f 198/1/1 197/1/1 191/1/1 +f 199/1/1 198/1/1 191/1/1 +f 200/1/1 199/1/1 191/1/1 +f 201/1/1 200/1/1 191/1/1 +f 202/1/1 201/1/1 191/1/1 +f 203/1/1 202/1/1 191/1/1 +f 204/1/1 203/1/1 191/1/1 +f 190/1/1 204/1/1 191/1/1 +f 192/1/66 191/1/66 195/1/66 +f 205/1/1 206/1/1 194/1/1 +f 207/1/66 194/1/66 206/1/66 +f 193/1/1 205/1/1 194/1/1 +f 195/1/67 194/1/67 207/1/67 +f 208/1/1 209/1/1 206/1/1 +f 210/1/65 206/1/65 209/1/65 +f 205/1/1 208/1/1 206/1/1 +f 207/1/66 206/1/66 210/1/66 +f 211/1/1 212/1/1 209/1/1 +f 213/1/64 209/1/64 212/1/64 +f 208/1/1 211/1/1 209/1/1 +f 210/1/65 209/1/65 213/1/65 +f 214/1/1 215/1/1 212/1/1 +f 216/1/63 212/1/63 215/1/63 +f 211/1/1 214/1/1 212/1/1 +f 213/1/64 212/1/64 216/1/64 +f 217/1/1 218/1/1 215/1/1 +f 219/1/52 215/1/52 218/1/52 +f 214/1/1 217/1/1 215/1/1 +f 216/1/63 215/1/63 219/1/63 +f 220/1/1 221/1/1 218/1/1 +f 222/1/62 218/1/62 221/1/62 +f 217/1/1 220/1/1 218/1/1 +f 219/1/52 218/1/52 222/1/52 +f 223/1/1 224/1/1 221/1/1 +f 225/1/61 221/1/61 224/1/61 +f 220/1/1 223/1/1 221/1/1 +f 222/1/62 221/1/62 225/1/62 +f 226/1/1 227/1/1 224/1/1 +f 228/1/60 224/1/60 227/1/60 +f 223/1/1 226/1/1 224/1/1 +f 225/1/61 224/1/61 228/1/61 +f 229/1/1 230/1/1 227/1/1 +f 231/1/59 227/1/59 230/1/59 +f 226/1/1 229/1/1 227/1/1 +f 228/1/60 227/1/60 231/1/60 +f 232/1/58 230/1/58 229/1/58 +f 231/1/59 230/1/59 232/1/59 +f 233/1/68 229/1/68 226/1/68 +f 232/1/58 229/1/58 233/1/58 +f 234/1/69 226/1/69 223/1/69 +f 233/1/68 226/1/68 234/1/68 +f 235/1/70 223/1/70 220/1/70 +f 234/1/69 223/1/69 235/1/69 +f 236/1/71 220/1/71 217/1/71 +f 235/1/70 220/1/70 236/1/70 +f 237/1/72 217/1/72 214/1/72 +f 236/1/71 217/1/71 237/1/71 +f 238/1/73 214/1/73 211/1/73 +f 237/1/72 214/1/72 238/1/72 +f 239/1/74 211/1/74 208/1/74 +f 238/1/73 211/1/73 239/1/73 +f 240/1/75 208/1/75 205/1/75 +f 239/1/74 208/1/74 240/1/74 +f 241/1/76 205/1/76 193/1/76 +f 240/1/75 205/1/75 241/1/75 +f 242/1/77 193/1/77 196/1/77 +f 241/1/78 193/1/78 242/1/78 +f 197/1/1 243/1/1 196/1/1 +f 244/1/79 196/1/79 243/1/79 +f 242/1/77 196/1/77 244/1/77 +f 197/1/1 245/1/1 243/1/1 +f 246/1/80 243/1/80 245/1/80 +f 244/1/79 243/1/79 246/1/79 +f 247/1/1 248/1/1 245/1/1 +f 249/1/81 245/1/81 248/1/81 +f 250/1/1 247/1/1 245/1/1 +f 251/1/1 250/1/1 245/1/1 +f 197/1/1 251/1/1 245/1/1 +f 246/1/80 245/1/80 249/1/80 +f 252/1/1 253/1/1 248/1/1 +f 254/1/82 248/1/82 253/1/82 +f 255/1/1 252/1/1 248/1/1 +f 256/1/1 255/1/1 248/1/1 +f 257/1/1 256/1/1 248/1/1 +f 258/1/1 257/1/1 248/1/1 +f 247/1/1 258/1/1 248/1/1 +f 249/1/81 248/1/81 254/1/81 +f 259/1/1 260/1/1 253/1/1 +f 261/1/83 253/1/83 260/1/83 +f 262/1/1 259/1/1 253/1/1 +f 252/1/1 262/1/1 253/1/1 +f 254/1/82 253/1/82 261/1/82 +f 263/1/1 264/1/1 260/1/1 +f 265/1/84 260/1/84 264/1/84 +f 259/1/1 263/1/1 260/1/1 +f 261/1/83 260/1/83 265/1/83 +f 266/1/1 267/1/1 264/1/1 +f 268/1/85 264/1/85 267/1/85 +f 263/1/1 266/1/1 264/1/1 +f 265/1/86 264/1/86 268/1/86 +f 266/1/1 269/1/1 267/1/1 +f 270/1/87 267/1/87 269/1/87 +f 268/1/88 267/1/88 270/1/88 +f 266/1/1 271/1/1 269/1/1 +f 272/1/89 269/1/89 271/1/89 +f 270/1/90 269/1/90 272/1/90 +f 266/1/1 273/1/1 271/1/1 +f 274/1/91 271/1/91 273/1/91 +f 272/1/89 271/1/89 274/1/89 +f 266/1/1 275/1/1 273/1/1 +f 276/1/92 273/1/92 275/1/92 +f 274/1/91 273/1/91 276/1/91 +f 266/1/1 115/1/1 275/1/1 +f 277/1/93 275/1/93 115/1/93 +f 276/1/94 275/1/94 277/1/94 +f 278/1/95 115/1/95 109/1/95 +f 279/1/1 116/1/1 115/1/1 +f 280/1/1 279/1/1 115/1/1 +f 281/1/1 280/1/1 115/1/1 +f 282/1/1 281/1/1 115/1/1 +f 283/1/1 282/1/1 115/1/1 +f 284/1/1 283/1/1 115/1/1 +f 266/1/1 284/1/1 115/1/1 +f 277/1/96 115/1/96 278/1/96 +f 285/1/97 109/1/97 106/1/97 +f 278/1/95 109/1/95 285/1/95 +f 286/1/98 106/1/98 103/1/98 +f 285/1/99 106/1/99 286/1/99 +f 287/1/100 103/1/100 100/1/100 +f 286/1/101 103/1/101 287/1/101 +f 288/1/102 100/1/102 97/1/102 +f 287/1/100 100/1/100 288/1/100 +f 289/1/103 97/1/103 94/1/103 +f 288/1/102 97/1/102 289/1/102 +f 290/1/104 94/1/104 91/1/104 +f 289/1/105 94/1/105 290/1/105 +f 291/1/106 91/1/106 88/1/106 +f 290/1/107 91/1/107 291/1/107 +f 292/1/108 88/1/108 85/1/108 +f 291/1/109 88/1/109 292/1/109 +f 293/1/110 85/1/110 82/1/110 +f 292/1/108 85/1/108 293/1/108 +f 294/1/111 82/1/111 79/1/111 +f 293/1/110 82/1/110 294/1/110 +f 295/1/112 79/1/112 76/1/112 +f 294/1/111 79/1/111 295/1/111 +f 296/1/113 76/1/113 73/1/113 +f 295/1/112 76/1/112 296/1/112 +f 297/1/114 73/1/114 70/1/114 +f 296/1/113 73/1/113 297/1/113 +f 298/1/115 70/1/115 67/1/115 +f 297/1/114 70/1/114 298/1/114 +f 299/1/116 67/1/116 64/1/116 +f 298/1/115 67/1/115 299/1/115 +f 300/1/117 64/1/117 61/1/117 +f 299/1/116 64/1/116 300/1/116 +f 301/1/118 61/1/118 58/1/118 +f 300/1/117 61/1/117 301/1/117 +f 302/1/119 58/1/119 55/1/119 +f 301/1/120 58/1/120 302/1/120 +f 303/1/121 55/1/121 44/1/121 +f 302/1/122 55/1/122 303/1/122 +f 304/1/123 44/1/123 305/1/123 +f 303/1/121 44/1/121 304/1/121 +f 306/1/124 305/1/124 307/1/124 +f 304/1/123 305/1/123 306/1/123 +f 48/1/1 308/1/1 307/1/1 +f 309/1/125 307/1/125 308/1/125 +f 48/1/1 307/1/1 305/1/1 +f 48/1/1 305/1/1 44/1/1 +f 306/1/124 307/1/124 309/1/124 +f 310/1/12 308/1/12 48/1/12 +f 309/1/125 308/1/125 310/1/125 +f 311/1/1 312/1/1 48/1/1 +f 313/1/126 48/1/126 312/1/126 +f 45/1/1 311/1/1 48/1/1 +f 310/1/12 48/1/12 313/1/12 +f 314/1/1 315/1/1 312/1/1 +f 316/1/127 312/1/127 315/1/127 +f 311/1/1 314/1/1 312/1/1 +f 313/1/126 312/1/126 316/1/126 +f 317/1/1 318/1/1 315/1/1 +f 319/1/128 315/1/128 318/1/128 +f 314/1/1 317/1/1 315/1/1 +f 316/1/127 315/1/127 319/1/127 +f 320/1/1 321/1/1 318/1/1 +f 322/1/129 318/1/129 321/1/129 +f 317/1/1 320/1/1 318/1/1 +f 319/1/128 318/1/128 322/1/128 +f 323/1/1 324/1/1 321/1/1 +f 325/1/120 321/1/120 324/1/120 +f 320/1/1 323/1/1 321/1/1 +f 322/1/129 321/1/129 325/1/129 +f 326/1/1 327/1/1 324/1/1 +f 328/1/130 324/1/130 327/1/130 +f 323/1/1 326/1/1 324/1/1 +f 325/1/120 324/1/120 328/1/120 +f 329/1/1 330/1/1 327/1/1 +f 331/1/131 327/1/131 330/1/131 +f 326/1/1 329/1/1 327/1/1 +f 328/1/130 327/1/130 331/1/130 +f 332/1/1 333/1/1 330/1/1 +f 334/1/132 330/1/132 333/1/132 +f 329/1/1 332/1/1 330/1/1 +f 331/1/131 330/1/131 334/1/131 +f 335/1/1 6/1/1 333/1/1 +f 336/1/133 333/1/133 6/1/133 +f 337/1/1 335/1/1 333/1/1 +f 332/1/1 337/1/1 333/1/1 +f 334/1/132 333/1/132 336/1/132 +f 338/1/134 6/1/134 5/1/134 +f 339/1/1 7/1/1 6/1/1 +f 340/1/1 339/1/1 6/1/1 +f 341/1/1 340/1/1 6/1/1 +f 342/1/1 341/1/1 6/1/1 +f 343/1/1 342/1/1 6/1/1 +f 335/1/1 343/1/1 6/1/1 +f 336/1/133 6/1/133 338/1/133 +f 8/1/1 344/1/1 5/1/1 +f 345/1/133 5/1/133 344/1/133 +f 338/1/134 5/1/134 345/1/134 +f 346/1/1 347/1/1 344/1/1 +f 348/1/132 344/1/132 347/1/132 +f 8/1/1 346/1/1 344/1/1 +f 345/1/133 344/1/133 348/1/133 +f 349/1/1 350/1/1 347/1/1 +f 351/1/131 347/1/131 350/1/131 +f 346/1/1 349/1/1 347/1/1 +f 348/1/132 347/1/132 351/1/132 +f 352/1/1 353/1/1 350/1/1 +f 354/1/130 350/1/130 353/1/130 +f 349/1/1 352/1/1 350/1/1 +f 351/1/131 350/1/131 354/1/131 +f 355/1/1 356/1/1 353/1/1 +f 357/1/120 353/1/120 356/1/120 +f 352/1/1 355/1/1 353/1/1 +f 354/1/130 353/1/130 357/1/130 +f 358/1/1 359/1/1 356/1/1 +f 360/1/129 356/1/129 359/1/129 +f 355/1/1 358/1/1 356/1/1 +f 357/1/120 356/1/120 360/1/120 +f 361/1/1 362/1/1 359/1/1 +f 363/1/128 359/1/128 362/1/128 +f 358/1/1 361/1/1 359/1/1 +f 360/1/129 359/1/129 363/1/129 +f 364/1/1 365/1/1 362/1/1 +f 366/1/127 362/1/127 365/1/127 +f 361/1/1 364/1/1 362/1/1 +f 363/1/128 362/1/128 366/1/128 +f 367/1/1 368/1/1 365/1/1 +f 369/1/126 365/1/126 368/1/126 +f 364/1/1 367/1/1 365/1/1 +f 366/1/127 365/1/127 369/1/127 +f 370/1/12 368/1/12 367/1/12 +f 369/1/126 368/1/126 370/1/126 +f 371/1/11 367/1/11 364/1/11 +f 370/1/12 367/1/12 371/1/12 +f 372/1/10 364/1/10 361/1/10 +f 372/1/11 371/1/11 364/1/11 +f 373/1/9 361/1/9 358/1/9 +f 372/1/10 361/1/10 373/1/10 +f 374/1/8 358/1/8 355/1/8 +f 373/1/9 358/1/9 374/1/9 +f 375/1/7 355/1/7 352/1/7 +f 374/1/8 355/1/8 375/1/8 +f 376/1/6 352/1/6 349/1/6 +f 375/1/7 352/1/7 376/1/7 +f 377/1/5 349/1/5 346/1/5 +f 376/1/6 349/1/6 377/1/6 +f 378/1/4 346/1/4 8/1/4 +f 377/1/5 346/1/5 378/1/5 +f 378/1/4 8/1/4 9/1/4 +f 379/1/1 380/1/1 381/1/1 +f 382/1/134 381/1/134 380/1/134 +f 383/1/1 381/1/1 384/1/1 +f 385/1/135 384/1/135 381/1/135 +f 386/1/1 379/1/1 381/1/1 +f 387/1/1 386/1/1 381/1/1 +f 388/1/1 387/1/1 381/1/1 +f 389/1/1 388/1/1 381/1/1 +f 383/1/1 389/1/1 381/1/1 +f 385/1/136 381/1/136 382/1/136 +f 390/1/1 391/1/1 380/1/1 +f 392/1/137 380/1/137 391/1/137 +f 379/1/1 390/1/1 380/1/1 +f 382/1/134 380/1/134 392/1/134 +f 390/1/1 393/1/1 391/1/1 +f 394/1/138 391/1/138 393/1/138 +f 392/1/139 391/1/139 394/1/139 +f 390/1/1 395/1/1 393/1/1 +f 396/1/140 393/1/140 395/1/140 +f 394/1/104 393/1/104 396/1/104 +f 390/1/1 397/1/1 395/1/1 +f 398/1/141 395/1/141 397/1/141 +f 396/1/142 395/1/142 398/1/142 +f 390/1/1 399/1/1 397/1/1 +f 400/1/88 397/1/88 399/1/88 +f 398/1/143 397/1/143 400/1/143 +f 401/1/1 402/1/1 399/1/1 +f 403/1/144 399/1/144 402/1/144 +f 401/1/1 399/1/1 390/1/1 +f 400/1/145 399/1/145 403/1/145 +f 404/1/1 405/1/1 402/1/1 +f 406/1/146 402/1/146 405/1/146 +f 401/1/1 404/1/1 402/1/1 +f 403/1/147 402/1/147 406/1/147 +f 407/1/1 408/1/1 405/1/1 +f 409/1/148 405/1/148 408/1/148 +f 404/1/1 407/1/1 405/1/1 +f 406/1/149 405/1/149 409/1/149 +f 154/1/1 151/1/1 408/1/1 +f 410/1/150 408/1/150 151/1/150 +f 407/1/1 154/1/1 408/1/1 +f 409/1/73 408/1/73 410/1/73 +f 411/1/58 151/1/58 112/1/58 +f 410/1/150 151/1/150 411/1/150 +f 412/1/151 112/1/151 116/1/151 +f 412/1/58 411/1/58 112/1/58 +f 413/1/152 116/1/152 279/1/152 +f 412/1/151 116/1/151 413/1/151 +f 414/1/153 279/1/153 280/1/153 +f 413/1/152 279/1/152 414/1/152 +f 415/1/154 280/1/154 281/1/154 +f 414/1/153 280/1/153 415/1/153 +f 416/1/155 281/1/155 282/1/155 +f 415/1/156 281/1/156 416/1/156 +f 417/1/157 282/1/157 283/1/157 +f 416/1/155 282/1/155 417/1/155 +f 418/1/158 283/1/158 284/1/158 +f 417/1/159 283/1/159 418/1/159 +f 419/1/160 284/1/160 266/1/160 +f 418/1/158 284/1/158 419/1/158 +f 420/1/35 266/1/35 263/1/35 +f 419/1/161 266/1/161 420/1/161 +f 421/1/162 263/1/162 259/1/162 +f 420/1/35 263/1/35 421/1/35 +f 422/1/163 259/1/163 262/1/163 +f 421/1/164 259/1/164 422/1/164 +f 423/1/165 262/1/165 252/1/165 +f 422/1/163 262/1/163 423/1/163 +f 424/1/166 252/1/166 255/1/166 +f 423/1/167 252/1/167 424/1/167 +f 425/1/168 255/1/168 256/1/168 +f 424/1/166 255/1/166 425/1/166 +f 426/1/169 256/1/169 257/1/169 +f 425/1/170 256/1/170 426/1/170 +f 427/1/171 257/1/171 258/1/171 +f 426/1/169 257/1/169 427/1/169 +f 428/1/172 258/1/172 247/1/172 +f 427/1/171 258/1/171 428/1/171 +f 429/1/12 247/1/12 250/1/12 +f 428/1/172 247/1/172 429/1/172 +f 430/1/1 431/1/1 250/1/1 +f 432/1/173 250/1/173 431/1/173 +f 251/1/1 430/1/1 250/1/1 +f 429/1/12 250/1/12 432/1/12 +f 433/1/1 434/1/1 431/1/1 +f 435/1/174 431/1/174 434/1/174 +f 430/1/1 433/1/1 431/1/1 +f 432/1/173 431/1/173 435/1/173 +f 436/1/1 384/1/1 434/1/1 +f 437/1/175 434/1/175 384/1/175 +f 433/1/1 436/1/1 434/1/1 +f 435/1/174 434/1/174 437/1/174 +f 436/1/1 383/1/1 384/1/1 +f 437/1/175 384/1/175 385/1/175 +f 438/1/67 390/1/67 379/1/67 +f 439/1/156 401/1/156 390/1/156 +f 439/1/156 390/1/156 438/1/156 +f 440/1/176 379/1/176 386/1/176 +f 438/1/67 379/1/67 440/1/67 +f 441/1/177 386/1/177 387/1/177 +f 440/1/176 386/1/176 441/1/176 +f 442/1/178 387/1/178 388/1/178 +f 441/1/179 387/1/179 442/1/179 +f 443/1/180 388/1/180 389/1/180 +f 442/1/181 388/1/181 443/1/181 +f 444/1/182 389/1/182 383/1/182 +f 443/1/183 389/1/183 444/1/183 +f 445/1/184 383/1/184 436/1/184 +f 444/1/185 383/1/185 445/1/185 +f 446/1/4 436/1/4 433/1/4 +f 445/1/184 436/1/184 446/1/184 +f 447/1/18 433/1/18 430/1/18 +f 446/1/186 433/1/186 447/1/186 +f 448/1/10 430/1/10 251/1/10 +f 447/1/18 430/1/18 448/1/18 +f 449/1/12 251/1/12 197/1/12 +f 448/1/10 251/1/10 449/1/10 +f 450/1/173 197/1/173 198/1/173 +f 450/1/12 449/1/12 197/1/12 +f 451/1/174 198/1/174 199/1/174 +f 450/1/173 198/1/173 451/1/173 +f 452/1/175 199/1/175 200/1/175 +f 451/1/187 199/1/187 452/1/187 +f 453/1/136 200/1/136 201/1/136 +f 452/1/175 200/1/175 453/1/175 +f 454/1/188 201/1/188 202/1/188 +f 453/1/136 201/1/136 454/1/136 +f 455/1/189 202/1/189 203/1/189 +f 454/1/190 202/1/190 455/1/190 +f 456/1/191 203/1/191 204/1/191 +f 455/1/189 203/1/189 456/1/189 +f 457/1/192 204/1/192 190/1/192 +f 456/1/191 204/1/191 457/1/191 +f 458/1/95 190/1/95 187/1/95 +f 457/1/193 190/1/193 458/1/193 +f 459/1/194 187/1/194 184/1/194 +f 458/1/95 187/1/95 459/1/95 +f 460/1/195 184/1/195 181/1/195 +f 459/1/196 184/1/196 460/1/196 +f 461/1/197 181/1/197 178/1/197 +f 460/1/195 181/1/195 461/1/195 +f 462/1/198 178/1/198 175/1/198 +f 461/1/197 178/1/197 462/1/197 +f 463/1/199 175/1/199 172/1/199 +f 462/1/200 175/1/200 463/1/200 +f 464/1/201 172/1/201 169/1/201 +f 463/1/199 172/1/199 464/1/199 +f 465/1/202 169/1/202 166/1/202 +f 464/1/201 169/1/201 465/1/201 +f 466/1/203 166/1/203 157/1/203 +f 465/1/204 166/1/204 466/1/204 +f 467/1/58 157/1/58 154/1/58 +f 466/1/203 157/1/203 467/1/203 +f 468/1/151 154/1/151 407/1/151 +f 467/1/58 154/1/58 468/1/58 +f 469/1/205 407/1/205 404/1/205 +f 468/1/151 407/1/151 469/1/151 +f 470/1/153 404/1/153 401/1/153 +f 469/1/152 404/1/152 470/1/152 +f 470/1/153 401/1/153 439/1/153 +f 471/1/173 41/1/173 38/1/173 +f 472/1/12 45/1/12 41/1/12 +f 472/1/12 41/1/12 471/1/12 +f 473/1/174 38/1/174 34/1/174 +f 471/1/173 38/1/173 473/1/173 +f 474/1/175 34/1/175 37/1/175 +f 473/1/174 34/1/174 474/1/174 +f 475/1/136 37/1/136 31/1/136 +f 474/1/175 37/1/175 475/1/175 +f 476/1/188 31/1/188 28/1/188 +f 475/1/136 31/1/136 476/1/136 +f 477/1/206 28/1/206 25/1/206 +f 476/1/188 28/1/188 477/1/188 +f 478/1/207 25/1/207 22/1/207 +f 477/1/206 25/1/206 478/1/206 +f 479/1/208 22/1/208 19/1/208 +f 478/1/209 22/1/209 479/1/209 +f 480/1/210 19/1/210 15/1/210 +f 479/1/208 19/1/208 480/1/208 +f 481/1/211 15/1/211 18/1/211 +f 480/1/210 15/1/210 481/1/210 +f 482/1/212 18/1/212 1/1/212 +f 481/1/213 18/1/213 482/1/213 +f 483/1/200 1/1/200 10/1/200 +f 482/1/212 1/1/212 483/1/212 +f 484/1/199 10/1/199 11/1/199 +f 483/1/200 10/1/200 484/1/200 +f 485/1/201 11/1/201 12/1/201 +f 484/1/199 11/1/199 485/1/199 +f 486/1/204 12/1/204 13/1/204 +f 485/1/201 12/1/201 486/1/201 +f 487/1/203 13/1/203 14/1/203 +f 486/1/204 13/1/204 487/1/204 +f 488/1/58 14/1/58 7/1/58 +f 487/1/203 14/1/203 488/1/203 +f 489/1/151 7/1/151 339/1/151 +f 489/1/58 488/1/58 7/1/58 +f 490/1/152 339/1/152 340/1/152 +f 489/1/151 339/1/151 490/1/151 +f 491/1/153 340/1/153 341/1/153 +f 490/1/152 340/1/152 491/1/152 +f 492/1/156 341/1/156 342/1/156 +f 491/1/153 341/1/153 492/1/153 +f 493/1/155 342/1/155 343/1/155 +f 492/1/156 342/1/156 493/1/156 +f 494/1/159 343/1/159 335/1/159 +f 493/1/155 343/1/155 494/1/155 +f 495/1/214 335/1/214 337/1/214 +f 494/1/215 335/1/215 495/1/215 +f 496/1/216 337/1/216 332/1/216 +f 495/1/214 337/1/214 496/1/214 +f 497/1/217 332/1/217 329/1/217 +f 496/1/216 332/1/216 497/1/216 +f 498/1/218 329/1/218 326/1/218 +f 497/1/217 329/1/217 498/1/217 +f 499/1/219 326/1/219 323/1/219 +f 498/1/218 326/1/218 499/1/218 +f 500/1/166 323/1/166 320/1/166 +f 499/1/165 323/1/165 500/1/165 +f 501/1/168 320/1/168 317/1/168 +f 500/1/166 320/1/166 501/1/166 +f 502/1/169 317/1/169 314/1/169 +f 501/1/168 317/1/168 502/1/168 +f 503/1/171 314/1/171 311/1/171 +f 502/1/169 314/1/169 503/1/169 +f 504/1/172 311/1/172 45/1/172 +f 503/1/171 311/1/171 504/1/171 +f 504/1/172 45/1/172 472/1/172 +f 372/2/220 370/3/220 371/4/220 +f 372/2/220 369/5/220 370/3/220 +f 373/6/220 366/7/220 369/5/220 +f 372/2/220 373/6/220 369/5/220 +f 374/8/220 363/9/220 366/7/220 +f 373/6/220 374/8/220 366/7/220 +f 375/10/220 360/11/220 363/9/220 +f 374/8/220 375/10/220 363/9/220 +f 376/12/220 357/13/220 360/11/220 +f 375/10/220 376/12/220 360/11/220 +f 377/14/220 354/15/220 357/13/220 +f 376/12/220 377/14/220 357/13/220 +f 378/16/220 351/17/220 354/15/220 +f 377/14/220 378/16/220 354/15/220 +f 9/18/220 348/19/220 351/17/220 +f 378/16/220 9/18/220 351/17/220 +f 4/20/220 345/21/220 348/19/220 +f 9/18/220 4/20/220 348/19/220 +f 494/22/220 338/23/220 345/21/220 +f 4/20/220 17/24/220 345/21/220 +f 488/25/220 345/21/220 17/24/220 +f 489/26/220 345/21/220 488/25/220 +f 493/27/220 494/22/220 345/21/220 +f 492/28/220 493/27/220 345/21/220 +f 491/29/220 492/28/220 345/21/220 +f 490/30/220 491/29/220 345/21/220 +f 489/26/220 490/30/220 345/21/220 +f 496/31/220 336/32/220 338/23/220 +f 495/33/220 496/31/220 338/23/220 +f 494/22/220 495/33/220 338/23/220 +f 497/34/220 334/35/220 336/32/220 +f 496/31/220 497/34/220 336/32/220 +f 498/36/220 331/37/220 334/35/220 +f 497/34/220 498/36/220 334/35/220 +f 499/38/220 328/39/220 331/37/220 +f 498/36/220 499/38/220 331/37/220 +f 500/40/220 325/41/220 328/39/220 +f 499/38/220 500/40/220 328/39/220 +f 501/42/220 322/43/220 325/41/220 +f 500/40/220 501/42/220 325/41/220 +f 503/44/220 319/45/220 322/43/220 +f 502/46/220 503/44/220 322/43/220 +f 501/42/220 502/46/220 322/43/220 +f 504/47/220 316/48/220 319/45/220 +f 503/44/220 504/47/220 319/45/220 +f 472/49/220 313/50/220 316/48/220 +f 504/47/220 472/49/220 316/48/220 +f 57/51/220 472/49/220 471/52/220 +f 57/51/220 471/52/220 46/53/220 +f 309/54/220 310/55/220 313/50/220 +f 306/56/220 309/54/220 313/50/220 +f 57/51/220 313/50/220 472/49/220 +f 57/51/220 304/57/220 306/56/220 +f 57/51/220 306/56/220 313/50/220 +f 60/58/220 303/59/220 304/57/220 +f 57/51/220 60/58/220 304/57/220 +f 63/60/220 302/61/220 303/59/220 +f 60/58/220 63/60/220 303/59/220 +f 66/62/220 301/63/220 302/61/220 +f 63/60/220 66/62/220 302/61/220 +f 69/64/220 300/65/220 301/63/220 +f 66/62/220 69/64/220 301/63/220 +f 72/66/220 299/67/220 300/65/220 +f 69/64/220 72/66/220 300/65/220 +f 75/68/220 298/69/220 299/67/220 +f 72/66/220 75/68/220 299/67/220 +f 78/70/220 297/71/220 298/69/220 +f 75/68/220 78/70/220 298/69/220 +f 81/72/220 296/73/220 297/71/220 +f 78/70/220 81/72/220 297/71/220 +f 84/74/220 295/75/220 296/73/220 +f 81/72/220 84/74/220 296/73/220 +f 87/76/220 294/77/220 295/75/220 +f 84/74/220 87/76/220 295/75/220 +f 90/78/220 293/79/220 294/77/220 +f 87/76/220 90/78/220 294/77/220 +f 93/80/220 292/81/220 293/79/220 +f 90/78/220 93/80/220 293/79/220 +f 96/82/220 291/83/220 292/81/220 +f 93/80/220 96/82/220 292/81/220 +f 99/84/220 290/85/220 291/83/220 +f 96/82/220 99/84/220 291/83/220 +f 102/86/220 289/87/220 290/85/220 +f 99/84/220 102/86/220 290/85/220 +f 105/88/220 288/89/220 289/87/220 +f 102/86/220 105/88/220 289/87/220 +f 108/90/220 287/91/220 288/89/220 +f 105/88/220 108/90/220 288/89/220 +f 111/92/220 286/93/220 287/91/220 +f 108/90/220 111/92/220 287/91/220 +f 114/94/220 285/95/220 286/93/220 +f 111/92/220 114/94/220 286/93/220 +f 420/96/220 278/97/220 285/95/220 +f 165/98/220 168/99/220 285/95/220 +f 467/100/220 285/95/220 168/99/220 +f 164/101/220 165/98/220 285/95/220 +f 160/102/220 164/101/220 285/95/220 +f 158/103/220 160/102/220 285/95/220 +f 155/104/220 158/103/220 285/95/220 +f 152/105/220 155/104/220 285/95/220 +f 150/106/220 152/105/220 285/95/220 +f 148/107/220 150/106/220 285/95/220 +f 146/108/220 148/107/220 285/95/220 +f 144/109/220 146/108/220 285/95/220 +f 142/110/220 144/109/220 285/95/220 +f 140/111/220 142/110/220 285/95/220 +f 138/112/220 140/111/220 285/95/220 +f 136/113/220 138/112/220 285/95/220 +f 134/114/220 136/113/220 285/95/220 +f 132/115/220 134/114/220 285/95/220 +f 130/116/220 132/115/220 285/95/220 +f 128/117/220 130/116/220 285/95/220 +f 126/118/220 128/117/220 285/95/220 +f 124/119/220 126/118/220 285/95/220 +f 122/120/220 124/119/220 285/95/220 +f 120/121/220 122/120/220 285/95/220 +f 118/122/220 120/121/220 285/95/220 +f 114/94/220 118/122/220 285/95/220 +f 412/123/220 285/95/220 411/124/220 +f 468/125/220 411/124/220 285/95/220 +f 419/126/220 420/96/220 285/95/220 +f 418/127/220 419/126/220 285/95/220 +f 417/128/220 418/127/220 285/95/220 +f 416/129/220 417/128/220 285/95/220 +f 415/130/220 416/129/220 285/95/220 +f 414/131/220 415/130/220 285/95/220 +f 413/132/220 414/131/220 285/95/220 +f 412/123/220 413/132/220 285/95/220 +f 467/100/220 468/125/220 285/95/220 +f 421/133/220 277/134/220 278/97/220 +f 420/96/220 421/133/220 278/97/220 +f 421/133/220 276/135/220 277/134/220 +f 421/133/220 274/136/220 276/135/220 +f 421/133/220 272/137/220 274/136/220 +f 421/133/220 270/138/220 272/137/220 +f 421/133/220 268/139/220 270/138/220 +f 421/133/220 265/140/220 268/139/220 +f 423/141/220 261/142/220 265/140/220 +f 422/143/220 423/141/220 265/140/220 +f 421/133/220 422/143/220 265/140/220 +f 428/144/220 254/145/220 261/142/220 +f 427/146/220 428/144/220 261/142/220 +f 426/147/220 427/146/220 261/142/220 +f 425/148/220 426/147/220 261/142/220 +f 424/149/220 425/148/220 261/142/220 +f 423/141/220 424/149/220 261/142/220 +f 429/150/220 249/151/220 254/145/220 +f 428/144/220 429/150/220 254/145/220 +f 207/152/220 246/153/220 249/151/220 +f 429/150/220 207/152/220 249/151/220 +f 207/152/220 244/154/220 246/153/220 +f 207/152/220 242/155/220 244/154/220 +f 207/152/220 241/156/220 242/155/220 +f 210/157/220 240/158/220 241/156/220 +f 207/152/220 210/157/220 241/156/220 +f 213/159/220 239/160/220 240/158/220 +f 210/157/220 213/159/220 240/158/220 +f 216/161/220 238/162/220 239/160/220 +f 213/159/220 216/161/220 239/160/220 +f 219/163/220 237/164/220 238/162/220 +f 216/161/220 219/163/220 238/162/220 +f 222/165/220 236/166/220 237/164/220 +f 219/163/220 222/165/220 237/164/220 +f 225/167/220 235/168/220 236/166/220 +f 222/165/220 225/167/220 236/166/220 +f 231/169/220 234/170/220 235/168/220 +f 228/171/220 231/169/220 235/168/220 +f 225/167/220 228/171/220 235/168/220 +f 232/172/220 233/173/220 234/170/220 +f 231/169/220 232/172/220 234/170/220 +f 458/174/220 195/175/220 207/152/220 +f 429/150/220 432/176/220 207/152/220 +f 449/177/220 207/152/220 432/176/220 +f 450/178/220 207/152/220 449/177/220 +f 457/179/220 458/174/220 207/152/220 +f 456/180/220 457/179/220 207/152/220 +f 455/181/220 456/180/220 207/152/220 +f 454/182/220 455/181/220 207/152/220 +f 453/183/220 454/182/220 207/152/220 +f 452/184/220 453/183/220 207/152/220 +f 451/185/220 452/184/220 207/152/220 +f 450/178/220 451/185/220 207/152/220 +f 459/186/220 192/187/220 195/175/220 +f 458/174/220 459/186/220 195/175/220 +f 459/186/220 189/188/220 192/187/220 +f 460/189/220 186/190/220 189/188/220 +f 459/186/220 460/189/220 189/188/220 +f 461/191/220 183/192/220 186/190/220 +f 460/189/220 461/191/220 186/190/220 +f 462/193/220 180/194/220 183/192/220 +f 461/191/220 462/193/220 183/192/220 +f 463/195/220 177/196/220 180/194/220 +f 462/193/220 463/195/220 180/194/220 +f 465/197/220 174/198/220 177/196/220 +f 464/199/220 465/197/220 177/196/220 +f 463/195/220 464/199/220 177/196/220 +f 466/200/220 171/201/220 174/198/220 +f 465/197/220 466/200/220 174/198/220 +f 467/100/220 168/99/220 171/201/220 +f 466/200/220 467/100/220 171/201/220 +f 46/53/220 50/202/220 52/203/220 +f 46/53/220 52/203/220 54/204/220 +f 46/53/220 54/204/220 57/51/220 +f 473/205/220 43/206/220 46/53/220 +f 471/52/220 473/205/220 46/53/220 +f 474/207/220 40/208/220 43/206/220 +f 473/205/220 474/207/220 43/206/220 +f 475/209/220 36/210/220 40/208/220 +f 474/207/220 475/209/220 40/208/220 +f 476/211/220 33/212/220 36/210/220 +f 475/209/220 476/211/220 36/210/220 +f 477/213/220 30/214/220 33/212/220 +f 476/211/220 477/213/220 33/212/220 +f 478/215/220 27/216/220 30/214/220 +f 477/213/220 478/215/220 30/214/220 +f 479/217/220 24/218/220 27/216/220 +f 478/215/220 479/217/220 27/216/220 +f 480/219/220 21/220/220 24/218/220 +f 479/217/220 480/219/220 24/218/220 +f 482/221/220 17/24/220 21/220/220 +f 481/222/220 482/221/220 21/220/220 +f 480/219/220 481/222/220 21/220/220 +f 487/223/220 488/25/220 17/24/220 +f 486/224/220 487/223/220 17/24/220 +f 485/225/220 486/224/220 17/24/220 +f 484/226/220 485/225/220 17/24/220 +f 483/227/220 484/226/220 17/24/220 +f 482/221/220 483/227/220 17/24/220 +f 469/228/220 410/229/220 411/124/220 +f 468/125/220 469/228/220 411/124/220 +f 469/228/220 409/230/220 410/229/220 +f 470/231/220 406/232/220 409/230/220 +f 469/228/220 470/231/220 409/230/220 +f 439/233/220 403/234/220 406/232/220 +f 470/231/220 439/233/220 406/232/220 +f 438/235/220 400/236/220 403/234/220 +f 439/233/220 438/235/220 403/234/220 +f 438/235/220 398/237/220 400/236/220 +f 438/235/220 396/238/220 398/237/220 +f 440/239/220 394/240/220 396/238/220 +f 438/235/220 440/239/220 396/238/220 +f 440/239/220 392/241/220 394/240/220 +f 442/242/220 382/243/220 392/241/220 +f 441/244/220 442/242/220 392/241/220 +f 440/239/220 441/244/220 392/241/220 +f 445/245/220 385/246/220 382/243/220 +f 444/247/220 445/245/220 382/243/220 +f 443/248/220 444/247/220 382/243/220 +f 442/242/220 443/248/220 382/243/220 +f 446/249/220 437/250/220 385/246/220 +f 445/245/220 446/249/220 385/246/220 +f 447/251/220 435/252/220 437/250/220 +f 446/249/220 447/251/220 437/250/220 +f 449/177/220 432/176/220 435/252/220 +f 448/253/220 449/177/220 435/252/220 +f 447/251/220 448/253/220 435/252/220 diff --git a/resources/meshes/ultimaker_replicator_plus_platform.3MF b/resources/meshes/ultimaker_replicator_plus_platform.3MF new file mode 100644 index 0000000000..1d250b8113 Binary files /dev/null and b/resources/meshes/ultimaker_replicator_plus_platform.3MF differ diff --git a/resources/meshes/ultimaker_sketch_large_platform.obj b/resources/meshes/ultimaker_sketch_large_platform.obj new file mode 100644 index 0000000000..e30fe8eecb --- /dev/null +++ b/resources/meshes/ultimaker_sketch_large_platform.obj @@ -0,0 +1,17214 @@ +# Exported from 3D Builder +o Object.1 +v 146.088806 62.686275 -0.500576 +v 146.557404 62.611229 -2.450565 +v 145.583191 62.604431 -2.450565 +v 151.477692 -52.996147 0.499562 +v 147.288788 -52.996147 0.499562 +v 151.495209 -52.996147 -0.500438 +v 147.425797 -0.702209 -2.450489 +v 146.707397 -1.409210 -2.450489 +v 146.552795 -0.387909 -2.450489 +v 147.288788 62.408684 -0.500576 +v 147.438095 62.290691 -2.450565 +v 145.258301 -41.396156 0.499546 +v 146.088806 -41.396156 0.499546 +v 142.924942 -41.396156 -0.500454 +v 148.195404 61.721394 0.499424 +v 148.156006 61.688290 -2.450565 +v 147.288788 62.428093 0.499424 +v 152.371597 -79.942924 2.054089 +v 152.290802 -80.502419 -4.750401 +v 153.095093 -79.698128 -4.750401 +v 143.803589 -4.556305 -0.123889 +v 142.924942 -17.796188 -0.500476 +v 142.924942 -3.696205 -0.500499 +v 148.624603 60.876671 -2.450565 +v 147.288788 13.003777 0.499485 +v 151.477692 13.003777 0.499485 +v 151.495209 13.003777 -0.500515 +v 151.261688 -80.986717 -4.750392 +v 150.793198 -80.707207 2.196591 +v 145.936798 -80.866112 -4.750401 +v 148.760895 60.603725 0.499424 +v 148.742889 60.603725 -0.500576 +v 148.787292 59.953720 -2.450565 +v 145.760895 -1.327209 -2.450489 +v 144.036896 -1.293709 -2.450489 +v 144.751801 -0.702209 -2.450489 +v 148.613098 -4.000107 -2.450489 +v 148.140808 -4.798706 -2.450481 +v 147.225296 -4.376900 -2.450481 +v 147.812805 -3.347107 0.249501 +v 147.225296 -4.376900 0.249508 +v 146.979599 -1.539909 0.249501 +v 148.742889 59.303726 -0.500568 +v 148.624603 59.030785 -2.450557 +v 148.140808 -1.293709 -2.450489 +v 147.288788 -52.996147 -0.500438 +v 148.195404 58.186069 0.499432 +v 148.156006 58.219154 -2.450557 +v 148.760895 59.303726 0.499432 +v 144.740402 -1.930710 -2.450489 +v 153.435196 -78.132820 0.692593 +v 153.134491 -79.071724 1.372792 +v 153.579407 -78.668938 -4.750401 +v 147.438095 57.616745 -2.450557 +v 147.288788 13.003777 -0.500515 +v 146.239807 -80.677299 2.116795 +v 147.288788 57.479359 0.499432 +v 147.288788 57.498779 -0.500568 +v 146.557404 57.296215 -2.450557 +v 146.088806 -4.796204 -2.450481 +v 146.088806 -4.796204 0.249508 +v 146.088806 57.221188 -0.500568 +v 147.608902 -2.179214 0.249501 +v 147.608902 -2.179214 -2.450489 +v 145.583191 57.303013 -2.450557 +v 147.288788 -51.696144 0.499562 +v 151.477692 -51.696144 0.499562 +v 151.495209 -51.696144 -0.500438 +v 143.564499 -2.092308 -2.450489 +v 141.438568 68.729523 0.736515 +v 142.098541 69.307228 0.923619 +v 141.374634 68.784225 -0.500583 +v 151.495209 -66.696129 -0.500423 +v 148.760895 -66.696129 0.499577 +v 148.742889 -66.696129 -0.500423 +v 144.024994 -1.242714 -0.029003 +v 151.477692 -66.696129 0.499577 +v 146.392700 61.677143 0.549427 +v 145.490295 61.598183 0.549427 +v 146.392700 61.677139 -2.450565 +v 144.432800 -5.233902 0.145710 +v 145.213806 61.469261 -2.450565 +v 153.134491 72.979324 1.372609 +v 153.435196 72.040329 0.692517 +v 153.381805 73.112106 -4.750584 +v 152.226700 73.855164 2.149212 +v 152.727798 74.042671 -4.750584 +v 148.760895 -65.396141 0.499577 +v 151.495209 -65.396141 -0.500423 +v 148.742889 -65.396141 -0.500423 +v 151.477692 -65.396141 0.499577 +v 146.088806 -52.996147 0.499562 +v 145.258301 -52.996147 0.499562 +v 146.088806 -52.996147 -0.500438 +v 146.963806 61.469265 0.549427 +v 147.429398 61.078602 -2.450565 +v 148.786987 -3.088600 -2.450489 +v 147.812805 -3.347107 -2.450489 +v 144.573303 60.828724 0.549427 +v 147.604401 60.828724 0.549427 +v 145.197998 -4.552505 -2.450481 +v 144.751801 -5.390205 -2.450481 +v 144.740402 -4.161705 -2.450481 +v 151.477692 -3.696205 0.499501 +v 148.760895 -3.696205 0.499501 +v 148.742889 -3.696205 -0.500499 +v 151.778000 73.359283 -4.750584 +v 151.797195 74.696701 -4.750584 +v 151.495209 -3.696205 -0.500499 +v 144.444305 60.552261 -2.450565 +v 145.648407 -76.735924 2.299595 +v 151.806488 -80.238213 2.258290 +v 145.606689 70.664833 2.295720 +v 143.390594 -3.088600 -2.450489 +v 144.338806 -3.046204 -2.450489 +v 147.838806 59.953720 -2.450565 +v 148.760895 -2.396210 0.499501 +v 151.495209 -2.396210 -0.500499 +v 148.742889 -2.396210 -0.500499 +v 147.288788 11.703773 0.499485 +v 147.288788 -0.571808 0.499501 +v 147.288788 11.703773 -0.500515 +v 147.812195 59.649834 0.549435 +v 147.288788 25.003761 0.499470 +v 147.288788 25.003761 -0.500530 +v 141.917877 69.322372 -0.500583 +v 144.365402 59.649834 0.549435 +v 151.477692 -2.396210 0.499501 +v 144.036896 -4.798706 -2.450481 +v 152.260498 72.784302 -4.750584 +v 142.101151 69.388474 -0.500583 +v 147.288788 -51.696144 -0.500438 +v 151.477692 25.003761 0.499470 +v 151.495209 25.003761 -0.500530 +v 146.088806 -63.313637 -0.500423 +v 146.594498 -63.395454 -2.450412 +v 145.583191 -63.395454 -2.450412 +v 145.258301 -5.667801 0.499508 +v 145.258301 -17.796188 0.499524 +v 147.288788 -63.591133 -0.500423 +v 147.462494 -63.723457 -2.450412 +v 147.288788 -42.696144 -0.500446 +v 147.288788 -63.571739 0.499577 +v 148.207703 -64.293236 0.499577 +v 148.167999 -64.326057 -2.450412 +v 148.627808 -65.132057 -2.450412 +v 145.760895 -1.327209 0.249501 +v 148.787292 -66.046150 -2.450412 +v 148.613098 -2.092308 -2.450489 +v 146.389709 -64.322151 -2.450412 +v 145.221802 -64.526054 -2.450412 +v 148.627808 -66.960228 -2.450412 +v 147.288788 26.303757 0.499470 +v 151.477692 26.303757 0.499470 +v 151.495209 26.303757 -0.500530 +v 148.207703 -67.799019 0.499577 +v 148.167999 -67.766228 -2.450412 +v 145.854202 -80.221321 2.199292 +v 145.554993 -77.852119 -0.500408 +v 145.566589 -78.902519 -0.500408 +v 147.462494 -68.368828 -2.450405 +v 147.288788 26.303757 -0.500530 +v 145.465607 -79.892738 -2.900402 +v 147.288788 -68.520515 0.499585 +v 147.288788 -68.501015 -0.500415 +v 146.594498 -68.696831 -2.450405 +v 145.461792 -78.944435 -2.900402 +v 146.088806 -68.778618 -0.500415 +v 143.656006 -75.315819 1.758595 +v 142.089478 -75.381721 0.954190 +v 144.070496 -75.756325 -0.500408 +v 145.583191 -68.696831 -2.450405 +v 141.370148 -74.867012 -0.500408 +v 141.552917 -75.029823 0.756390 +v 141.266556 25.653755 -0.500530 +v 144.363007 69.685516 1.911717 +v 143.392090 69.457703 -0.500583 +v 145.258301 -51.696144 0.499562 +v 142.924942 -51.696144 -0.500438 +v 142.924942 -42.696144 -0.500446 +v 141.740143 -75.311913 -0.500408 +v 146.088806 -75.568321 0.499592 +v 145.258301 -74.802223 0.499592 +v 146.088806 -68.796120 0.499585 +v 145.258301 -68.667717 0.499585 +v 151.736496 73.309799 -2.900585 +v 151.105896 73.673866 -2.900585 +v 151.127991 73.734573 -4.750584 +v 145.624908 -0.387909 -2.450489 +v 144.715195 -63.723457 -2.450412 +v 143.564499 -4.000107 -2.450489 +v 143.430801 -3.696205 -0.283702 +v 147.425797 -5.390205 -2.450481 +v 148.179901 -1.260208 0.499501 +v 147.288788 -42.696144 0.499554 +v 147.288788 35.303749 0.499455 +v 148.179901 -4.832207 0.499508 +v 147.288788 35.303749 -0.500545 +v 151.477692 -42.696144 0.499554 +v 151.495209 -42.696144 -0.500446 +v 151.477692 35.303749 0.499455 +v 151.495209 35.303749 -0.500545 +v 147.288788 36.603745 0.499455 +v 151.477692 36.603745 0.499455 +v 151.495209 36.603745 -0.500545 +v 144.715195 -68.368828 -2.450405 +v 147.288788 36.603745 -0.500545 +v 147.288788 -5.520607 0.499508 +v 145.624908 -5.704506 -2.450481 +v 147.288788 -5.501205 -0.500492 +v 146.552795 -5.704506 -2.450481 +v 144.009598 -67.766228 -2.450412 +v 145.258301 11.703773 0.499485 +v 145.258301 -0.424614 0.499501 +v 142.924942 11.703773 -0.500515 +v 147.288788 -0.591209 -0.500499 +v 146.088806 -5.778702 -0.500492 +v 143.803589 -67.556221 -0.123821 +v 147.288788 45.603745 0.499447 +v 147.419495 -64.909645 -2.450412 +v 143.549805 -66.960228 -2.450412 +v 143.430801 -2.396210 -0.283702 +v 152.359009 -78.513237 -2.900402 +v 152.453598 72.067780 -2.900577 +v 152.517197 72.078995 -4.750576 +v 146.088806 -5.796204 0.499508 +v 143.430801 -66.696129 -0.283626 +v 146.389709 -64.322136 0.549580 +v 145.496002 -64.399635 0.549580 +v 147.419495 -64.909630 0.549580 +v 142.924942 -52.996147 -0.500438 +v 143.390289 -66.046150 -2.450412 +v 144.788788 69.722549 2.221020 +v 144.994797 -76.285622 2.084393 +v 144.758087 -64.909645 -2.450412 +v 146.088806 -17.796188 0.499524 +v 146.088806 -17.796188 -0.500476 +v 143.430801 -65.396141 -0.283626 +v 147.288788 -41.396156 0.499546 +v 151.477692 -41.396156 0.499546 +v 151.495209 -41.396156 -0.500454 +v 143.549805 -65.132057 -2.450412 +v 144.582489 -65.155342 0.549580 +v 144.369797 -65.718254 -2.450412 +v 147.807800 -65.718254 -2.450412 +v 147.807800 -65.718239 0.549580 +v 150.799988 74.663750 2.117810 +v 146.034897 74.836304 -4.750584 +v 150.764099 -79.924538 -4.750401 +v 150.752899 -79.860832 -2.900402 +v 151.469391 -79.667839 -4.750401 +v 144.024994 -64.242638 -0.028926 +v 144.338989 -66.073631 0.549580 +v 144.009598 -64.326057 -2.450412 +v 145.258301 -63.424538 0.499577 +v 151.495209 11.703773 -0.500515 +v 151.477692 11.703773 0.499485 +v 147.288788 45.603745 -0.500553 +v 151.477692 45.603745 0.499447 +v 151.495209 45.603745 -0.500553 +v 146.088806 -63.296135 0.499577 +v 145.197998 -4.552505 0.249508 +v 144.740402 -1.930710 0.249501 +v 151.994904 -79.143837 -2.900402 +v 152.419708 -78.535332 -4.750401 +v 146.088806 -0.313713 -0.500499 +v 153.681900 72.014999 -4.750576 +v 152.044403 -79.185341 -4.750401 +v 145.221802 -67.566216 0.549580 +v 146.389709 -67.770012 0.549580 +v 146.389709 -67.770027 -2.450412 +v 147.288788 -17.796188 0.499524 +v 147.288788 -17.796188 -0.500476 +v 144.451797 -66.664742 0.549580 +v 144.338806 -3.046204 0.249501 +v 144.740402 -4.161705 0.249508 +v 145.074295 70.488548 -0.500583 +v 145.440399 71.207138 -0.500583 +v 145.958588 74.234230 2.231808 +v 146.560898 74.511490 2.280407 +v 147.288788 -41.396156 -0.500454 +v 145.390991 -79.957329 -4.750401 +v 145.258301 -42.696144 0.499554 +v 146.088806 62.703724 0.499424 +v 144.715195 62.276440 -2.450565 +v 145.258301 62.575314 0.499424 +v 151.437103 -79.611839 -2.900402 +v 146.088806 -31.096169 0.499539 +v 145.258301 -31.096169 0.499539 +v 146.088806 -19.096191 0.499524 +v 145.258301 -19.096191 0.499524 +v 144.009598 61.673809 -2.450565 +v 144.432800 62.141445 0.145627 +v 146.088806 -42.696144 0.499554 +v 146.088806 -51.696144 0.499562 +v 143.549805 60.867809 -2.450565 +v 143.803589 61.463863 -0.123973 +v 146.088806 -32.396172 0.499539 +v 145.258301 -32.396172 0.499539 +v 143.430801 60.603725 -0.283779 +v 145.221802 -67.566231 -2.450412 +v 143.390289 59.953720 -2.450565 +v 146.088806 26.303757 0.499470 +v 145.258301 26.303757 0.499470 +v 146.088806 35.303749 0.499455 +v 143.430801 59.303726 -0.283771 +v 143.549805 59.039635 -2.450557 +v 145.258301 35.303749 0.499455 +v 146.088806 36.603745 0.499455 +v 145.258301 36.603745 0.499455 +v 146.088806 45.603745 0.499447 +v 151.495209 -17.796188 -0.500476 +v 143.763306 58.506927 -0.141269 +v 150.588196 -78.926933 -2.900402 +v 144.009598 58.233635 -2.450557 +v 145.258301 45.603745 0.499447 +v 146.088806 13.003777 0.499485 +v 145.258301 13.003777 0.499485 +v 146.088806 25.003761 0.499470 +v 145.258301 25.003761 0.499470 +v 144.715195 57.631004 -2.450557 +v 145.258301 57.332138 0.499432 +v 151.477692 -17.796188 0.499524 +v 146.088806 46.903740 0.499447 +v 146.045593 57.204067 0.499432 +v 152.204498 72.752007 -2.900585 +v 151.477692 -19.096191 0.499524 +v 147.288788 -19.096191 0.499524 +v 147.288788 -19.096191 -0.500476 +v 147.288788 -32.396172 -0.500461 +v 147.288788 -32.396172 0.499539 +v 151.495209 -19.096191 -0.500476 +v 146.088806 46.903740 -0.500553 +v 151.477692 -32.396172 0.499539 +v 151.495209 -32.396172 -0.500461 +v 145.318298 -76.992424 -0.500408 +v 142.924942 68.003716 -0.500583 +v 147.725800 -66.664742 0.549580 +v 146.955902 -67.566216 0.549580 +v 142.924942 60.603725 -0.500576 +v 146.955902 -67.566231 -2.450412 +v 144.153503 68.177025 0.025914 +v 147.288788 -31.096169 0.499539 +v 144.451797 -66.664757 -2.450412 +v 147.288788 -31.096169 -0.500461 +v 147.213699 58.613148 0.549435 +v 146.088806 58.203728 0.549435 +v 146.088806 -31.096169 -0.500461 +v 151.495209 -31.096169 -0.500461 +v 145.465607 73.800308 -2.900585 +v 145.390991 73.864899 -4.750584 +v 145.258301 68.709854 0.499417 +v 151.088806 72.537880 0.499417 +v 147.288788 72.792641 0.499409 +v 151.331787 72.248184 0.499417 +v 144.963898 58.613148 0.549435 +v 144.802902 -76.264824 -0.500408 +v 151.477692 60.603725 0.499424 +v 151.477692 -31.096169 0.499539 +v 151.495209 60.603725 -0.500576 +v 146.088806 -19.096191 -0.500476 +v 142.924942 -31.096169 -0.500461 +v 151.495209 59.303726 -0.500568 +v 144.444305 59.355194 -2.450557 +v 147.429398 58.828846 -2.450557 +v 145.461792 72.851990 -2.900585 +v 145.566589 72.810097 -0.500591 +v 145.213806 58.438175 -2.450557 +v 146.392700 58.230305 -2.450557 +v 147.288788 -78.885017 0.499592 +v 147.288788 -78.902519 -0.500408 +v 150.577896 -78.868523 0.499592 +v 151.477692 46.903740 0.499447 +v 151.477692 59.303726 0.499432 +v 147.288788 46.903740 0.499447 +v 142.924942 59.303726 -0.500568 +v 142.924942 46.903740 -0.500553 +v 146.088806 -75.568321 -0.500408 +v 145.258301 46.903740 0.499447 +v 146.088806 -0.296211 0.499501 +v 146.088806 69.475876 0.499417 +v 145.217987 68.682510 -0.500583 +v 146.088806 69.475876 -0.500583 +v 144.153992 68.177177 -0.500583 +v 145.217987 -74.774925 -0.500408 +v 147.288788 72.810097 -0.500591 +v 151.222992 -78.496117 0.499592 +v 144.503998 69.918274 -0.500583 +v 142.924942 -19.096191 -0.500476 +v 146.088806 -32.396172 -0.500461 +v 147.725800 -66.664757 -2.450412 +v 142.988800 -74.096123 -0.473018 +v 144.153992 -74.269615 -0.500415 +v 142.095749 35.953751 -0.500545 +v 146.088806 11.703773 0.499485 +v 146.088806 11.703773 -0.500515 +v 146.088806 -41.396156 -0.500454 +v 147.288788 46.903740 -0.500553 +v 146.088806 45.603745 -0.500553 +v 142.924942 45.603745 -0.500553 +v 151.495209 46.903740 -0.500553 +v 142.924942 36.603745 -0.500545 +v 146.088806 36.603745 -0.500545 +v 142.095749 25.653755 -0.500530 +v 151.126892 -78.675728 -2.900402 +v 142.924942 35.303749 -0.500545 +v 146.088806 35.303749 -0.500545 +v 142.924942 26.303757 -0.500530 +v 146.088806 26.303757 -0.500530 +v 150.962891 72.698151 -2.900585 +v 142.095749 -3.046204 -0.500499 +v 146.088806 25.003761 -0.500530 +v 142.924942 25.003761 -0.500530 +v 142.924942 13.003777 -0.500515 +v 146.088806 13.003777 -0.500515 +v 151.383209 -78.370232 -2.900402 +v 142.095749 -31.746162 -0.500461 +v 142.095749 -42.046150 -0.500454 +v 142.924942 -32.396172 -0.500461 +v 146.088806 -42.696144 -0.500446 +v 146.088806 -51.696144 -0.500438 +v 142.924942 -66.696129 -0.500423 +v 151.537109 71.703705 -2.900577 + +f 1 2 3 +f 284 1 3 +f 286 284 3 +f 285 286 3 +f 80 285 3 +f 80 82 285 +f 82 292 285 +f 292 293 285 +f 297 293 292 +f 296 297 292 +f 300 297 296 +f 302 300 296 +f 110 302 296 +f 82 110 296 +f 99 110 82 +f 79 99 82 +f 356 99 79 +f 347 356 79 +f 78 347 79 +f 78 79 80 +f 95 78 80 +f 96 95 80 +f 96 80 2 +f 11 96 2 +f 10 11 2 +f 10 17 11 +f 17 15 11 +f 15 16 11 +f 15 24 16 +f 24 116 16 +f 116 96 16 +f 116 100 96 +f 123 100 116 +f 365 123 116 +f 33 365 116 +f 44 365 33 +f 43 44 33 +f 32 43 33 +f 32 33 24 +f 31 32 24 +f 31 360 32 +f 31 358 360 +f 358 355 360 +f 360 355 423 +f 363 360 423 +f 401 363 423 +f 260 401 423 +f 205 260 423 +f 202 205 423 +f 155 202 423 +f 134 155 423 +f 27 134 423 +f 256 27 423 +f 118 256 423 +f 109 118 423 +f 312 109 423 +f 332 312 423 +f 349 332 423 +f 335 349 423 +f 241 335 423 +f 200 241 423 +f 68 200 423 +f 6 68 423 +f 89 6 423 +f 416 89 423 +f 224 416 423 +f 423 410 224 +f 224 410 326 +f 224 326 130 +f 225 224 130 +f 225 130 85 +f 267 225 85 +f 84 267 85 +f 83 84 85 +f 86 83 85 +f 86 85 87 +f 86 87 108 +f 247 86 108 +f 247 108 248 +f 280 247 248 +f 279 280 248 +f 351 279 248 +f 188 351 248 +f 187 351 188 +f 186 187 188 +f 107 186 188 +f 107 188 108 +f 326 186 107 +f 186 410 187 +f 410 350 187 +f 410 366 350 +f 366 279 350 +f 367 279 366 +f 386 367 366 +f 386 278 367 +f 278 113 367 +f 277 113 278 +f 383 277 278 +f 383 388 277 +f 388 176 277 +f 177 176 388 +f 382 177 388 +f 382 384 177 +f 384 337 177 +f 177 337 131 +f 71 177 131 +f 126 71 131 +f 72 71 126 +f 175 72 126 +f 394 175 126 +f 377 394 126 +f 376 377 126 +f 340 376 126 +f 337 340 126 +f 297 340 337 +f 306 376 340 +f 300 306 340 +f 306 313 376 +f 313 306 307 +f 315 313 307 +f 315 307 364 +f 321 315 364 +f 368 321 364 +f 356 368 364 +f 127 356 364 +f 127 364 110 +f 65 321 368 +f 369 65 368 +f 347 369 368 +f 347 346 369 +f 369 346 365 +f 48 369 365 +f 48 54 369 +f 54 59 369 +f 58 59 54 +f 57 58 54 +f 47 57 54 +f 373 57 47 +f 373 47 374 +f 373 374 401 +f 375 373 401 +f 375 401 398 +f 57 375 398 +f 401 258 398 +f 258 399 398 +f 398 399 333 +f 398 333 62 +f 398 62 58 +f 333 324 62 +f 324 325 62 +f 62 325 65 +f 62 65 59 +f 325 322 65 +f 325 379 322 +f 322 379 377 +f 313 322 377 +f 379 333 377 +f 324 379 325 +f 379 324 333 +f 333 399 377 +f 399 400 377 +f 399 311 400 +f 311 316 400 +f 316 402 400 +f 402 394 400 +f 403 394 402 +f 310 403 402 +f 310 309 403 +f 403 309 399 +f 309 310 311 +f 205 394 403 +f 207 205 403 +f 207 403 258 +f 219 207 258 +f 260 219 258 +f 259 219 260 +f 259 204 219 +f 204 203 219 +f 203 204 205 +f 204 259 205 +f 219 203 207 +f 203 205 207 +f 205 407 394 +f 407 406 394 +f 406 404 394 +f 408 404 406 +f 308 408 406 +f 305 308 406 +f 305 304 308 +f 303 304 305 +f 303 305 407 +f 409 303 407 +f 198 409 407 +f 162 409 198 +f 196 162 198 +f 202 196 198 +f 201 196 202 +f 201 154 196 +f 154 153 196 +f 153 154 155 +f 153 155 162 +f 154 201 155 +f 196 153 162 +f 162 155 409 +f 155 404 409 +f 155 412 404 +f 412 413 404 +f 413 414 404 +f 414 215 404 +f 215 411 404 +f 404 411 175 +f 411 417 175 +f 417 418 175 +f 418 173 175 +f 173 174 175 +f 174 70 175 +f 233 70 174 +f 169 233 174 +f 170 169 174 +f 170 174 181 +f 171 170 181 +f 171 181 392 +f 393 171 392 +f 392 183 393 +f 183 385 393 +f 183 378 385 +f 378 357 385 +f 357 171 385 +f 357 234 171 +f 234 169 171 +f 336 234 357 +f 111 234 336 +f 159 111 336 +f 159 336 378 +f 371 159 378 +f 371 378 168 +f 371 168 165 +f 164 371 165 +f 164 165 161 +f 156 164 161 +f 156 161 157 +f 156 157 152 +f 74 156 152 +f 75 74 152 +f 75 152 148 +f 90 75 148 +f 90 148 146 +f 88 90 146 +f 144 88 146 +f 144 146 145 +f 144 145 141 +f 143 144 141 +f 140 143 141 +f 140 141 136 +f 135 140 136 +f 135 136 137 +f 261 135 137 +f 255 261 137 +f 190 255 137 +f 151 190 137 +f 150 151 137 +f 228 151 150 +f 230 228 150 +f 220 230 150 +f 220 150 136 +f 246 230 220 +f 245 246 220 +f 245 220 145 +f 338 246 245 +f 391 338 245 +f 152 391 245 +f 339 338 391 +f 341 339 391 +f 157 341 391 +f 270 339 341 +f 271 270 341 +f 161 271 341 +f 161 166 271 +f 166 172 271 +f 271 172 301 +f 269 271 301 +f 274 269 301 +f 274 301 344 +f 274 344 244 +f 253 274 244 +f 243 253 244 +f 243 244 235 +f 229 243 235 +f 229 235 151 +f 151 235 254 +f 235 242 254 +f 242 252 254 +f 252 255 254 +f 255 252 231 +f 93 255 231 +f 94 93 231 +f 94 231 179 +f 421 94 179 +f 295 421 179 +f 178 295 179 +f 178 179 180 +f 283 178 180 +f 420 283 180 +f 420 180 418 +f 241 420 418 +f 241 418 281 +f 239 241 281 +f 239 281 330 +f 331 239 330 +f 335 331 330 +f 334 331 335 +f 240 334 335 +f 240 239 334 +f 334 239 331 +f 281 397 330 +f 330 397 390 +f 330 390 349 +f 349 390 417 +f 349 417 348 +f 345 349 348 +f 345 348 329 +f 343 345 329 +f 328 343 329 +f 327 328 329 +f 332 327 329 +f 327 343 328 +f 359 343 327 +f 359 327 349 +f 343 359 349 +f 329 348 361 +f 329 361 273 +f 312 329 273 +f 272 312 273 +f 272 273 210 +f 208 272 210 +f 208 210 193 +f 197 208 193 +f 197 193 38 +f 197 38 37 +f 105 197 37 +f 106 105 37 +f 106 37 97 +f 119 106 97 +f 119 97 149 +f 117 119 149 +f 194 117 149 +f 194 149 45 +f 194 45 7 +f 121 194 7 +f 216 121 7 +f 216 7 9 +f 266 216 9 +f 266 9 189 +f 214 266 189 +f 36 214 189 +f 34 36 189 +f 34 35 36 +f 34 50 35 +f 50 69 35 +f 69 76 35 +f 76 214 35 +f 214 76 215 +f 213 214 215 +f 396 213 215 +f 395 213 396 +f 266 395 396 +f 122 266 396 +f 122 396 55 +f 256 122 55 +f 256 257 122 +f 257 120 122 +f 120 121 122 +f 257 121 120 +f 55 396 415 +f 55 415 125 +f 25 55 125 +f 124 25 125 +f 134 124 125 +f 133 124 134 +f 133 25 124 +f 26 25 133 +f 26 133 27 +f 25 26 27 +f 25 27 55 +f 125 415 412 +f 415 319 412 +f 317 319 415 +f 317 415 414 +f 318 317 414 +f 320 318 414 +f 319 318 320 +f 319 320 413 +f 317 318 319 +f 415 396 414 +f 380 395 266 +f 395 380 213 +f 380 214 213 +f 76 222 215 +f 222 76 69 +f 114 222 69 +f 192 222 114 +f 191 192 114 +f 103 191 114 +f 103 114 115 +f 275 103 115 +f 263 275 115 +f 263 115 50 +f 147 263 50 +f 262 263 147 +f 61 262 147 +f 42 61 147 +f 42 147 34 +f 8 42 34 +f 8 34 9 +f 63 42 8 +f 64 63 8 +f 64 8 45 +f 40 63 64 +f 98 40 64 +f 97 98 64 +f 41 40 98 +f 39 41 98 +f 37 39 98 +f 61 41 39 +f 60 61 39 +f 193 60 39 +f 193 211 60 +f 211 209 60 +f 60 209 101 +f 262 60 101 +f 276 262 101 +f 276 101 103 +f 101 102 103 +f 102 129 103 +f 102 81 129 +f 81 21 129 +f 129 21 191 +f 21 81 22 +f 21 22 23 +f 192 21 23 +f 192 23 411 +f 23 22 411 +f 22 389 411 +f 361 389 22 +f 237 361 22 +f 236 237 22 +f 139 236 22 +f 138 139 22 +f 236 139 138 +f 226 236 138 +f 226 138 217 +f 237 226 217 +f 273 237 217 +f 217 138 209 +f 209 138 102 +f 236 226 237 +f 361 291 389 +f 291 362 389 +f 362 417 389 +f 291 289 362 +f 289 288 362 +f 288 348 362 +f 288 290 348 +f 288 289 290 +f 290 289 291 +f 290 291 361 +f 81 138 22 +f 138 81 102 +f 262 276 275 +f 209 102 101 +f 217 209 211 +f 210 217 211 +f 40 41 42 +f 63 40 42 +f 41 61 42 +f 262 61 60 +f 262 275 263 +f 275 276 103 +f 115 114 50 +f 129 191 103 +f 21 192 191 +f 192 411 222 +f 50 114 69 +f 147 50 34 +f 35 214 36 +f 214 380 266 +f 9 34 189 +f 216 266 122 +f 7 8 9 +f 121 216 122 +f 194 121 257 +f 128 194 257 +f 128 257 118 +f 117 128 118 +f 45 8 7 +f 149 64 45 +f 128 117 194 +f 117 118 119 +f 97 64 149 +f 106 119 118 +f 37 98 97 +f 104 105 106 +f 109 104 106 +f 197 105 104 +f 323 197 104 +f 323 104 312 +f 37 38 39 +f 38 193 39 +f 323 208 197 +f 210 211 193 +f 323 272 208 +f 273 217 210 +f 272 323 312 +f 273 361 237 +f 348 290 361 +f 343 349 345 +f 348 417 362 +f 390 419 417 +f 390 299 419 +f 299 12 419 +f 12 14 419 +f 14 418 419 +f 397 418 14 +f 13 397 14 +f 13 298 397 +f 298 13 299 +f 12 13 14 +f 13 12 299 +f 298 299 390 +f 397 298 390 +f 239 240 241 +f 281 418 397 +f 142 420 241 +f 142 421 420 +f 421 294 420 +f 132 421 142 +f 66 132 142 +f 195 66 142 +f 200 195 142 +f 199 195 200 +f 199 66 195 +f 67 66 199 +f 67 199 68 +f 66 67 68 +f 66 68 132 +f 68 46 132 +f 46 94 132 +f 46 135 94 +f 135 92 94 +f 294 283 420 +f 294 295 283 +f 180 179 418 +f 295 178 283 +f 295 294 421 +f 132 94 421 +f 231 422 179 +f 422 181 179 +f 181 173 179 +f 227 422 231 +f 238 227 231 +f 227 238 232 +f 221 227 232 +f 244 221 232 +f 244 232 242 +f 218 227 221 +f 212 218 221 +f 212 221 344 +f 206 212 344 +f 206 185 212 +f 172 185 206 +f 168 185 172 +f 184 185 168 +f 182 184 168 +f 182 183 184 +f 184 183 185 +f 185 218 212 +f 218 185 392 +f 218 392 422 +f 232 238 242 +f 227 218 422 +f 92 93 94 +f 92 261 93 +f 252 238 231 +f 238 252 242 +f 235 244 242 +f 253 243 229 +f 253 229 228 +f 344 221 244 +f 301 206 344 +f 269 274 253 +f 270 269 253 +f 172 206 301 +f 168 172 166 +f 269 270 271 +f 339 270 253 +f 338 339 253 +f 246 338 253 +f 246 253 230 +f 230 253 228 +f 228 229 151 +f 151 254 190 +f 254 255 190 +f 261 255 93 +f 261 92 135 +f 136 150 137 +f 140 135 46 +f 141 220 136 +f 143 140 46 +f 5 143 46 +f 6 5 46 +f 4 5 6 +f 4 143 5 +f 144 143 4 +f 91 144 4 +f 91 4 89 +f 88 91 89 +f 145 220 141 +f 146 245 145 +f 91 88 144 +f 88 89 90 +f 73 90 89 +f 148 245 146 +f 73 75 90 +f 152 245 148 +f 73 74 75 +f 77 74 73 +f 77 73 416 +f 387 77 416 +f 405 387 416 +f 264 405 416 +f 223 264 416 +f 264 223 265 +f 268 264 265 +f 53 268 265 +f 53 265 267 +f 51 53 267 +f 51 52 53 +f 52 20 53 +f 52 18 20 +f 18 19 20 +f 20 19 268 +f 19 251 268 +f 251 287 268 +f 250 287 251 +f 249 250 251 +f 28 249 251 +f 249 28 282 +f 28 30 282 +f 30 158 282 +f 158 163 282 +f 163 250 282 +f 250 163 314 +f 314 163 167 +f 160 314 167 +f 160 371 314 +f 371 372 314 +f 314 372 405 +f 287 314 405 +f 370 372 371 +f 372 370 164 +f 387 372 164 +f 163 160 167 +f 158 160 163 +f 160 158 159 +f 56 158 30 +f 29 56 30 +f 56 29 111 +f 29 112 111 +f 111 112 113 +f 233 111 113 +f 233 113 176 +f 113 112 86 +f 279 113 86 +f 112 18 86 +f 112 29 28 +f 112 28 19 +f 158 56 111 +f 28 29 30 +f 282 250 249 +f 287 250 314 +f 19 28 251 +f 18 112 19 +f 83 18 52 +f 52 51 84 +f 20 268 53 +f 287 264 268 +f 265 223 225 +f 264 287 405 +f 372 387 405 +f 387 156 77 +f 156 74 77 +f 152 157 391 +f 157 161 341 +f 387 164 156 +f 165 166 161 +f 164 370 371 +f 165 168 166 +f 378 182 168 +f 371 160 159 +f 158 111 159 +f 111 233 234 +f 336 357 378 +f 183 182 378 +f 185 183 392 +f 385 171 393 +f 392 181 422 +f 169 170 171 +f 234 233 169 +f 70 233 176 +f 70 176 71 +f 181 174 173 +f 418 179 173 +f 419 418 417 +f 389 417 411 +f 222 411 215 +f 396 215 414 +f 320 414 413 +f 412 319 413 +f 125 412 155 +f 304 303 409 +f 304 409 408 +f 308 304 408 +f 409 404 408 +f 407 305 406 +f 198 407 205 +f 316 310 402 +f 311 310 316 +f 309 311 399 +f 258 403 399 +f 47 49 374 +f 374 49 363 +f 363 49 43 +f 49 47 44 +f 47 48 44 +f 373 375 57 +f 57 398 58 +f 58 62 59 +f 47 54 48 +f 346 347 100 +f 100 347 95 +f 59 65 369 +f 65 322 321 +f 321 322 315 +f 364 307 110 +f 322 313 315 +f 307 306 302 +f 313 377 376 +f 400 394 377 +f 394 404 175 +f 175 70 72 +f 70 71 72 +f 337 126 131 +f 342 337 384 +f 352 342 384 +f 352 286 342 +f 342 286 337 +f 286 293 337 +f 352 384 382 +f 381 352 382 +f 381 382 383 +f 1 381 383 +f 1 383 386 +f 10 1 386 +f 284 352 381 +f 71 176 177 +f 383 382 388 +f 176 113 277 +f 383 278 386 +f 113 279 367 +f 410 386 366 +f 354 386 410 +f 353 354 410 +f 355 353 410 +f 355 17 353 +f 353 17 354 +f 354 17 386 +f 187 350 351 +f 350 279 351 +f 279 247 280 +f 108 188 248 +f 279 86 247 +f 87 107 108 +f 130 107 87 +f 86 18 83 +f 83 52 84 +f 84 51 267 +f 267 265 225 +f 85 130 87 +f 223 224 225 +f 130 326 107 +f 326 410 186 +f 223 416 224 +f 73 89 416 +f 89 4 6 +f 6 46 68 +f 68 199 200 +f 200 142 241 +f 241 240 335 +f 335 330 349 +f 349 327 332 +f 332 329 312 +f 312 104 109 +f 109 106 118 +f 118 257 256 +f 27 256 55 +f 27 133 134 +f 134 125 155 +f 155 201 202 +f 202 198 205 +f 205 259 260 +f 260 258 401 +f 401 374 363 +f 363 43 360 +f 423 355 410 +f 358 15 355 +f 358 31 15 +f 43 32 360 +f 43 49 44 +f 44 48 365 +f 346 123 365 +f 123 346 100 +f 33 116 24 +f 15 31 24 +f 15 17 355 +f 17 10 386 +f 16 96 11 +f 100 95 96 +f 95 347 78 +f 356 347 368 +f 356 127 99 +f 99 127 110 +f 110 307 302 +f 306 300 302 +f 297 300 340 +f 293 297 337 +f 82 296 292 +f 79 82 80 +f 293 286 285 +f 284 286 352 +f 284 381 1 +f 2 80 3 +f 1 10 2 + + +o Object.2 +v -146.088806 -51.696159 -3.000431 +v -142.888794 -51.696159 -3.000431 +v -146.088806 -42.696159 -3.000438 +v -147.288788 -51.696159 -3.000431 +v -147.288788 -42.696159 -3.000438 +v -150.188812 -42.696159 -3.000438 +v -146.633911 0.044991 -1.000499 +v -147.508301 -0.587608 -1.300502 +v -146.581787 -0.250412 -1.300502 +v -147.658295 -0.327812 -1.000499 +v -143.101501 -1.970711 -4.450489 +v -143.642395 -1.022408 -4.450489 +v -143.642395 -1.022408 -4.750492 +v -150.188812 -51.696159 -3.000431 +v -148.263611 -1.221413 -1.300502 +v -148.493408 -1.028511 -1.000499 +v -143.155609 -62.903328 -1.000423 +v -142.949799 -62.786537 -1.000423 +v -142.923615 -62.745552 -3.000415 +v -150.188812 -41.396172 -3.000446 +v -147.288788 -41.396172 -3.000446 +v -150.188812 -32.396187 -3.000454 +v -148.756500 -2.075211 -1.300502 +v -149.038391 -1.972610 -1.000499 +v -142.960510 -66.588844 -4.739414 +v -142.683014 -75.701332 -4.690197 +v -142.989014 -75.703636 -4.742199 +v -147.288788 -32.396187 -3.000454 +v -148.927704 -3.046204 -1.300502 +v -149.227692 -3.046204 -1.000499 +v -150.188812 26.303757 -3.000522 +v -147.288788 35.303749 -3.000537 +v -150.188812 35.303749 -3.000537 +v -147.288788 26.303757 -3.000522 +v -148.756500 -4.017204 -1.300502 +v -149.038391 -4.119804 -1.000492 +v -142.913788 -66.046150 -4.733913 +v -143.050598 -65.124245 -4.746814 +v -143.042999 -3.942604 -4.746395 +v -150.188812 36.603745 -3.000537 +v -147.288788 45.603741 -3.000545 +v -150.188812 45.603741 -3.000545 +v -148.263611 -4.871002 -1.300495 +v -148.493408 -5.063904 -1.000492 +v -142.913788 59.953716 -4.734066 +v -142.913788 -3.046204 -4.733989 +v -143.042999 59.057281 -4.746463 +v -147.508301 -5.504807 -1.300495 +v -147.658295 -5.764603 -1.000492 +v -147.288788 36.603745 -3.000537 +v -146.088806 36.603745 -3.000537 +v -142.888794 45.603741 -3.000545 +v -146.088806 45.603741 -3.000545 +v -146.581787 -5.842003 -1.300495 +v -146.633911 -6.137405 -1.000492 +v -142.888794 -32.396172 -1.000461 +v -146.088806 -32.396172 -1.000461 +v -142.888794 -32.396187 -3.000454 +v -142.888794 -41.396172 -3.000446 +v -142.888794 -41.396156 -1.000454 +v -143.204193 -62.904854 -3.000415 +v -144.927612 -62.009850 -3.000415 +v -145.218109 -74.774940 -3.000400 +v -144.153992 -74.269615 -1.000415 +v -144.153992 -74.269630 -3.000408 +v -147.508301 -0.587608 -2.550495 +v -146.581787 -0.250412 -2.550495 +v -142.888794 -52.996162 -3.000431 +v -148.263611 -1.221413 -2.550495 +v -146.088806 -61.846153 -3.000415 +v -146.088806 -52.996162 -3.000431 +v -148.756500 -2.075211 -2.550495 +v -144.927612 -62.009834 -1.000423 +v -148.927704 -3.046204 -2.550495 +v -148.129700 -0.614014 -4.750492 +v -148.838409 -1.458710 -4.750492 +v -152.399902 71.703705 -4.750576 +v -142.888794 36.603745 -3.000537 +v -148.756500 -4.017204 -2.550495 +v -142.683014 69.608887 -4.690372 +v -149.215607 -2.494911 -4.750492 +v -149.215607 -3.597504 -4.750492 +v -148.263611 -4.871002 -2.550487 +v -146.088806 26.303757 -3.000522 +v -142.888794 35.303749 -3.000537 +v -146.088806 35.303749 -3.000537 +v -147.508301 -5.504807 -2.550487 +v -141.841187 69.467010 -4.245174 +v -143.170197 -1.796211 -4.750492 +v -146.581787 -5.842003 -2.550487 +v -148.129700 62.385906 -4.750568 +v -148.838409 61.541218 -4.750568 +v -142.888794 -69.487038 -3.000408 +v -142.982208 -69.269524 -1.000415 +v -143.062286 -69.215034 -3.000408 +v -146.088806 -41.396156 -1.000454 +v -146.088806 -41.396172 -3.000446 +v -142.888794 -74.096138 -3.000408 +v -143.393188 58.972603 -1.300571 +v -142.963196 59.402592 -1.000568 +v -143.220215 59.953720 -1.300579 +v -152.399902 -77.796135 -4.750401 +v -141.996887 -75.626335 -4.370098 +v -143.657501 57.913624 -1.000568 +v -143.891296 58.109825 -1.300571 +v -142.913788 59.953716 -4.450565 +v -143.101501 61.029205 -4.450565 +v -142.888794 -74.096123 -1.000415 +v -144.654510 57.469444 -1.300571 +v -143.342590 -69.229424 -1.000415 +v -143.342590 -69.229439 -3.000408 +v -142.888794 26.303757 -3.000522 +v -145.003296 56.971294 -1.000568 +v -145.590698 57.128704 -1.300571 +v -147.174713 62.937233 -4.750568 +v -152.369415 72.052933 -4.750576 +v -152.130493 72.709259 -4.750584 +v -146.088806 56.779884 -1.000568 +v -143.642395 57.929901 -4.750560 +v -146.088806 -75.568336 -3.000400 +v -146.088806 -70.246132 -3.000408 +v -146.375305 -1.421310 -2.550495 +v -146.913788 -1.617310 -2.925495 +v -146.375305 -1.421310 -2.925495 +v -146.913788 -1.617310 -2.550495 +v -143.182312 -64.771233 -1.000423 +v -143.753693 -63.896538 -1.000423 +v -143.978302 -64.103340 -1.300426 +v -145.381012 -79.807228 -4.750401 +v -150.738007 -79.776634 -4.750401 +v -146.088806 -69.221138 -4.750408 +v -147.352814 -1.985611 -2.925495 +v -147.352814 -1.985611 -2.550495 +v -143.155609 0.096588 -3.000492 +v -143.204193 0.095093 -1.000499 +v -142.949799 0.213387 -3.000492 +v -143.674500 -63.984154 -4.750415 +v -144.515717 -63.288246 -4.750415 +v -145.493896 -6.165001 -4.750484 +v -147.639313 -2.481911 -2.925495 +v -147.639313 -2.481911 -2.550495 +v -142.904510 0.299088 -1.000499 +v -145.502502 -70.205040 -3.000408 +v -147.738800 -3.046204 -2.925495 +v -147.738800 -3.046204 -2.550495 +v -144.066895 -75.960640 -4.750401 +v -145.542908 -69.173836 -4.750408 +v -147.639313 -3.610504 -2.925495 +v -147.639313 -3.610504 -2.550495 +v -144.375488 -6.880905 -3.000484 +v -142.888794 -11.696198 -3.000476 +v -143.298889 -6.208107 -3.000484 +v -144.375488 -69.880836 -3.000408 +v -147.352814 -4.106804 -2.925487 +v -147.352814 -4.106804 -2.550487 +v -144.680389 -76.404640 -4.750401 +v -147.512207 57.488335 -2.550563 +v -146.088806 58.303722 -2.550563 +v -146.913788 58.524784 -2.550563 +v -146.913788 -4.475105 -2.925487 +v -146.913788 -4.475105 -2.550487 +v -145.354309 -77.739738 -4.750401 +v -146.088806 -4.696205 -2.925487 +v -146.088806 -4.696205 -2.550487 +v -143.105316 58.867809 -4.450557 +v -143.642395 61.977535 -4.450565 +v -144.472595 62.686577 -4.450565 +v -144.472595 62.686577 -4.750568 +v -145.802307 61.578651 -2.550571 +v -145.263794 61.382660 -2.550571 +v -144.665405 62.419109 -2.550571 +v -143.907990 61.783600 -2.550571 +v -145.616608 -63.216637 -1.300426 +v -146.583191 -63.242653 -2.550418 +v -145.620209 -63.238152 -2.550418 +v -146.586914 -63.221138 -1.300426 +v -147.523102 -63.561836 -1.300426 +v -147.512207 -63.580757 -2.550418 +v -141.608215 -75.404137 -3.999500 +v -148.286316 -64.202232 -1.300426 +v -148.269592 -64.216255 -2.550418 +v -141.359009 69.025208 -3.598674 +v -148.784393 -65.065041 -1.300426 +v -148.763916 -65.072456 -2.550418 +v -145.594513 57.150185 -2.550563 +v -145.263794 58.524784 -2.550563 +v -144.665405 57.488335 -2.550563 +v -148.957397 -66.046135 -1.300426 +v -148.935608 -66.046150 -2.550418 +v -149.215607 60.505047 -4.750568 +v -150.120697 -68.266212 -1.000415 +v -150.188812 -77.596123 -1.000408 +v -150.188812 -77.596138 -3.000400 +v -148.784393 -67.027214 -1.300426 +v -148.763916 -67.019737 -2.550418 +v -142.888794 46.903736 -3.000545 +v -142.892792 56.561245 -3.000560 +v -143.155609 56.810955 -3.000560 +v -148.269592 -67.876030 -2.550418 +v -148.286316 -67.890022 -1.300426 +v -146.640106 -69.172935 -4.450405 +v -147.164307 -69.033440 -4.750408 +v -144.375488 56.119053 -3.000560 +v -147.512207 -68.511528 -2.550411 +v -147.523102 -68.530418 -1.300418 +v -146.375305 61.578651 -2.550571 +v -145.594513 62.757259 -2.550571 +v -143.656616 -5.087006 -4.450481 +v -143.105316 -4.132103 -4.450481 +v -143.642395 -5.070000 -4.750484 +v -146.583191 -68.849632 -2.550411 +v -146.586914 -68.871117 -1.300418 +v -148.855713 -69.205940 -3.000408 +v -149.794891 -68.171623 -1.000415 +v -149.747498 -68.191841 -3.000408 +v -148.503113 -63.984154 -4.750415 +v -149.058807 -64.923851 -4.750415 +v -146.640106 -6.173004 -4.750484 +v -146.088806 -68.892937 -2.550411 +v -146.088806 -68.914726 -1.300418 +v -146.792999 62.734550 -1.300579 +v -146.583191 62.757259 -2.550571 +v -145.384613 62.734550 -1.300579 +v -147.512207 62.419109 -2.550571 +v -141.190613 -74.686333 -3.034801 +v -149.215607 59.402386 -4.750560 +v -151.681488 73.244301 -4.750584 +v -147.657806 62.355221 -1.300579 +v -148.269592 61.783600 -2.550571 +v -146.913788 61.382660 -2.550571 +v -147.174713 -0.062714 -4.750492 +v -145.502502 55.794857 -3.000560 +v -146.088806 -67.696129 -2.550418 +v -145.164490 -68.738640 -2.550411 +v -145.263794 -67.475029 -2.550418 +v -148.352509 61.715649 -1.300579 +v -148.763916 60.927380 -2.550571 +v -146.913788 -67.475029 -2.550418 +v -150.084808 -68.229439 -3.000408 +v -145.493896 63.072472 -4.450565 +v -145.493896 63.072472 -4.750568 +v -148.802002 60.885151 -1.300579 +v -148.935608 59.953720 -2.550571 +v -147.288788 -77.596138 -3.000400 +v -147.288788 -70.071037 -3.000408 +v -147.850800 -69.858635 -3.000408 +v -148.957397 59.953720 -1.300579 +v -148.763916 58.980064 -2.550563 +v -148.784393 58.972603 -1.300571 +v -148.269592 58.123844 -2.550563 +v -146.583191 57.150185 -2.550563 +v -146.634705 -62.918449 -4.750415 +v -147.661896 -63.288246 -4.750415 +v -148.286316 58.109825 -1.300571 +v -146.088806 55.753727 -3.000560 +v -146.088806 46.903736 -3.000545 +v -147.523102 57.469444 -1.300571 +v -146.586914 57.128704 -1.300571 +v -141.171112 68.418892 -2.810573 +v -147.288788 -77.596123 -1.000408 +v -146.038910 56.779110 -4.750560 +v -145.537506 56.826950 -4.450557 +v -145.493896 56.834961 -4.750560 +v -144.340302 -68.292641 -2.550411 +v -142.888794 5.603783 -3.000499 +v -143.020111 56.760826 -1.000568 +v -143.252411 56.805973 -1.000568 +v -144.927612 0.990089 -3.000492 +v -150.024994 -0.903114 -1.000499 +v -149.790100 -0.919113 -1.000499 +v -149.888794 -0.935814 -3.000492 +v -150.149811 -63.783546 -3.000415 +v -149.896301 -63.935631 -1.000423 +v -149.844910 -63.932549 -3.000415 +v -144.501312 57.204090 -4.450557 +v -147.676300 -0.296608 -4.450489 +v -146.640106 0.080589 -4.450489 +v -146.088806 1.153786 -3.000492 +v -146.088806 5.603783 -3.000499 +v -148.520996 -1.005310 -4.450489 +v -145.117188 70.911682 -4.750576 +v -146.640106 63.080471 -4.750568 +v -145.351196 71.627266 -4.750576 +v -149.072296 -1.960312 -4.450489 +v -150.043091 -63.893028 -1.000423 +v -144.672394 70.304268 -4.750576 +v -149.263794 -3.046204 -4.450489 +v -149.072296 -4.132103 -4.450481 +v -144.824799 61.014320 -2.550571 +v -144.538300 60.518051 -2.550571 +v -143.413696 60.927380 -2.550571 +v -146.088806 -52.996147 -1.000438 +v -148.520996 -5.087006 -4.450481 +v -150.156097 -0.772011 -3.000492 +v -147.676300 -5.795807 -4.450481 +v -147.738800 59.953720 -2.550571 +v -147.639313 60.518051 -2.550571 +v -145.802307 -1.421310 -2.925495 +v -146.640106 -6.173004 -4.450481 +v -144.515717 -68.804039 -4.750408 +v -145.493896 0.072586 -4.450489 +v -145.537506 -6.173004 -4.450481 +v -151.076691 73.593536 -4.750584 +v -146.640106 63.080471 -4.450565 +v -147.676300 62.703346 -4.450565 +v -144.472595 -0.313309 -4.450489 +v -143.170197 61.203716 -4.750568 +v -148.520996 61.994568 -4.450565 +v -143.170197 69.618408 -4.750576 +v -149.207611 -65.451256 -4.750415 +v -149.072296 61.039627 -4.450565 +v -145.263794 -1.617310 -2.925495 +v -144.060791 69.865166 -4.750576 +v -149.263794 59.953716 -4.450565 +v -144.472595 57.220860 -4.750560 +v -142.892792 56.561245 -1.000568 +v -149.072296 58.867809 -4.450557 +v -148.838409 58.366219 -4.750560 +v -148.520996 57.912872 -4.450557 +v -148.129700 57.521530 -4.750560 +v -144.472595 -5.779106 -4.750484 +v -147.676300 57.204090 -4.450557 +v -147.174713 56.970200 -4.750560 +v -150.188812 -52.996162 -3.000431 +v -147.288788 -70.071022 -1.000415 +v -146.640106 56.826950 -4.450557 +v -148.376709 -62.523949 -3.000415 +v -147.288788 -62.021248 -3.000415 +v -146.640106 0.080589 -4.750492 +v -145.493896 0.072586 -4.750492 +v -147.288788 -52.996162 -3.000431 +v -145.157410 -68.759315 -1.300418 +v -144.326904 -68.309822 -1.300418 +v -143.687286 -67.615120 -1.300426 +v -143.705597 -67.603233 -2.550418 +v -143.308014 -66.750328 -1.300426 +v -143.329102 -66.745049 -2.550418 +v -148.838409 -4.633705 -4.750484 +v -143.230011 -65.809227 -1.300426 +v -143.251709 -65.811043 -2.550418 +v -148.129700 -5.478401 -4.750484 +v -143.461792 -64.893837 -1.300426 +v -143.481812 -64.902550 -2.550418 +v -147.174713 -6.029701 -4.750484 +v -143.994415 -64.118050 -2.550418 +v -144.723511 -63.523232 -1.300426 +v -144.733887 -63.542442 -2.550418 +v -145.542908 -62.918449 -4.750415 +v -146.640106 -62.919350 -4.450412 +v -147.676300 -63.296547 -4.450412 +v -145.537506 -62.919350 -4.450412 +v -143.242004 59.953720 -2.550571 +v -146.088806 6.803780 -3.000499 +v -142.888794 6.803780 -3.000499 +v -142.888794 15.803787 -3.000515 +v -146.088806 15.803787 -3.000515 +v -146.088806 -21.896187 -3.000469 +v -142.888794 -21.896187 -3.000469 +v -142.888794 -12.896194 -3.000476 +v -146.088806 -12.896194 -3.000476 +v -145.537506 -69.172935 -4.450405 +v -146.088806 -67.696129 -2.925418 +v -144.515717 -68.804039 -4.450405 +v -142.888794 -31.096184 -3.000454 +v -142.888794 -23.096191 -3.000469 +v -146.088806 -23.096191 -3.000469 +v -145.263794 -67.475029 -2.925418 +v -144.501312 -63.296547 -4.450412 +v -146.088806 -31.096184 -3.000454 +v -148.520996 -64.005348 -4.450412 +v -150.188812 -31.096184 -3.000454 +v -147.288788 -31.096184 -3.000454 +v -147.288788 -23.096191 -3.000469 +v -150.156097 -0.772011 -1.000499 +v -150.188812 -23.096191 -3.000469 +v -150.188812 -21.896187 -3.000469 +v -147.288788 -21.896187 -3.000469 +v -147.288788 -12.896194 -3.000476 +v -143.674500 -68.108131 -4.450405 +v -150.188812 -12.896194 -3.000476 +v -144.824799 -67.106728 -2.925418 +v -143.656616 -64.005348 -4.450412 +v -150.188812 6.803780 -3.000499 +v -147.288788 6.803780 -3.000499 +v -147.288788 15.803787 -3.000515 +v -149.072296 -64.960243 -4.450412 +v -150.188812 15.803787 -3.000515 +v -150.188812 17.003777 -3.000515 +v -147.288788 17.003777 -3.000515 +v -150.188812 25.003761 -3.000522 +v -147.288788 25.003761 -3.000522 +v -143.105316 -64.960243 -4.450412 +v -143.118805 -67.168434 -4.450412 +v -149.263794 -66.046150 -4.450412 +v -149.207611 -66.641045 -4.750415 +v -142.086914 -75.499626 -1.000408 +v -143.765015 -75.660927 -1.000408 +v -144.538300 -66.610451 -2.925418 +v -144.438812 59.953720 -2.550571 +v -145.263794 -4.475105 -2.550487 +v -145.263794 -4.475105 -2.925487 +v -143.642395 61.977535 -4.750568 +v -142.913788 -66.046150 -4.450412 +v -145.802307 -64.421257 -2.550418 +v -146.375305 -64.421257 -2.925418 +v -145.802307 -64.421257 -2.925418 +v -146.375305 -64.421257 -2.550418 +v -146.913788 -64.617256 -2.925418 +v -145.502502 -7.205101 -3.000484 +v -144.824799 -4.106804 -2.550487 +v -144.824799 -4.106804 -2.925487 +v -146.913788 -64.617256 -2.550418 +v -147.352814 -64.985542 -2.925418 +v -147.352814 -64.985542 -2.550418 +v -147.639313 -65.481850 -2.925418 +v -147.639313 -65.481850 -2.550418 +v -147.738800 -66.046150 -2.925418 +v -145.457397 -78.796135 -3.000400 +v -145.457397 -79.746132 -3.000400 +v -147.738800 -66.046150 -2.550418 +v -147.639313 -66.610451 -2.925418 +v -148.376709 -69.568321 -1.000415 +v -147.639313 -66.610451 -2.550418 +v -147.352814 -67.106728 -2.925418 +v -144.538300 -3.610504 -2.550495 +v -144.538300 -3.610504 -2.925495 +v -147.352814 -67.106728 -2.550418 +v -146.913788 -67.475029 -2.925418 +v -146.088806 -11.696198 -3.000476 +v -144.438812 -3.046204 -2.550495 +v -147.639313 59.389393 -2.550563 +v -146.088806 -7.246201 -3.000484 +v -143.907990 58.123844 -2.550563 +v -144.824799 58.893124 -2.550563 +v -144.538300 59.389393 -2.550563 +v -143.413696 58.980064 -2.550563 +v -144.472595 -0.313309 -4.750492 +v -146.913788 61.382660 -2.925571 +v -146.375305 61.578651 -2.925571 +v -148.376709 0.475990 -3.000492 +v -147.288788 0.978691 -3.000492 +v -147.288788 5.603783 -3.000499 +v -150.188812 5.603783 -3.000499 +v -147.352814 61.014320 -2.925571 +v -147.352814 61.014320 -2.550571 +v -144.438812 -3.046204 -2.925495 +v -147.639313 60.518051 -2.925571 +v -144.538300 -2.481911 -2.550495 +v -144.538300 -2.481911 -2.925495 +v -147.738800 59.953720 -2.925571 +v -147.639313 59.389393 -2.925563 +v -147.352814 58.893124 -2.925563 +v -147.352814 58.893124 -2.550563 +v -152.278595 -78.484032 -4.750401 +v -146.913788 58.524784 -2.925563 +v -150.730804 72.643394 -3.000576 +v -145.457397 73.653702 -3.000583 +v -150.727386 73.624084 -3.000583 +v -146.088806 58.303722 -2.925563 +v -146.088806 64.153717 -3.000568 +v -145.218109 68.682503 -3.000576 +v -146.088806 69.475876 -3.000576 +v -144.824799 -1.985611 -2.550495 +v -144.824799 -1.985611 -2.925495 +v -143.062286 -6.215103 -1.000492 +v -143.062286 -6.215103 -3.000484 +v -144.153992 68.177170 -3.000576 +v -145.457397 72.703705 -3.000583 +v -145.263794 -1.617310 -2.550495 +v -143.342590 -6.229500 -1.000492 +v -144.927612 63.990005 -3.000568 +v -142.888794 68.003708 -3.000576 +v -151.363800 73.392456 -3.000583 +v -145.802307 -1.421310 -2.550495 +v -143.155609 63.096485 -3.000568 +v -149.747498 -5.191902 -1.000492 +v -150.084808 -5.229500 -1.000492 +v -150.120697 -5.266304 -3.000484 +v -143.656616 57.912872 -4.450557 +v -146.088806 -32.396187 -3.000454 +v -141.452789 68.961563 -1.000583 +v -141.249786 68.411385 -1.000583 +v -151.882599 72.957146 -3.000583 +v -151.254791 72.203705 -3.000576 +v -152.309204 72.042328 -3.000576 +v -149.747498 -5.191902 -3.000484 +v -144.438812 -66.046150 -2.925418 +v -142.949799 63.213356 -3.000568 +v -150.188812 -11.696198 -3.000476 +v -147.288788 -11.696198 -3.000476 +v -147.288788 -7.071106 -3.000484 +v -147.850800 -6.858704 -3.000484 +v -146.088806 -42.696144 -1.000446 +v -149.058807 -67.168434 -4.450412 +v -141.730988 69.239746 -1.000583 +v -144.501312 -5.795807 -4.450481 +v -148.855713 -6.206001 -3.000484 +v -145.516205 -77.715324 -1.000408 +v -145.544708 -78.761223 -1.000408 +v -148.503113 -68.108131 -4.450405 +v -144.538300 -65.481850 -2.925418 +v -142.086914 69.407242 -1.000583 +v -147.661896 -68.804039 -4.450405 +v -146.088806 -51.696144 -1.000438 +v -144.824799 -64.985542 -2.925418 +v -145.595795 -0.250412 -1.300502 +v -145.543701 0.044991 -1.000499 +v -144.669312 -0.587608 -1.300502 +v -141.244690 -6.186104 -1.000492 +v -141.244690 -22.496185 -1.000476 +v -141.249786 -74.503822 -1.000415 +v -144.071106 -0.641609 -1.000499 +v -143.914093 -1.221413 -1.300502 +v -143.370392 -1.476707 -1.000499 +v -143.421112 -2.075211 -1.300502 +v -142.997589 -2.501114 -1.000499 +v -143.249908 -3.046204 -1.300502 +v -141.244690 16.403770 -1.000522 +v -142.997589 -3.591301 -1.000499 +v -143.421112 -4.017204 -1.300502 +v -141.244690 35.953751 -1.000545 +v -143.370392 -4.615700 -1.000492 +v -143.914093 -4.871002 -1.300495 +v -144.071106 -5.450806 -1.000492 +v -144.669312 -5.504807 -1.300495 +v -145.381012 73.714813 -4.750584 +v -145.218109 -74.774925 -1.000408 +v -145.015198 -5.995804 -1.000492 +v -145.595795 -5.842003 -1.300495 +v -145.595795 -0.250412 -2.550495 +v -144.669312 -0.587608 -2.550495 +v -141.353607 -74.883217 -1.000408 +v -143.914093 -1.221413 -2.550495 +v -142.913788 -3.046204 -4.450489 +v -143.421112 -2.075211 -2.550495 +v -141.579803 -75.205116 -1.000408 +v -143.249908 -3.046204 -2.550495 +v -143.421112 -4.017204 -2.550495 +v -142.888794 68.003708 -1.000583 +v -144.153992 68.177170 -1.000583 +v -143.914093 -4.871002 -2.550487 +v -144.669312 -5.504807 -2.550487 +v -150.727386 -79.716530 -3.000400 +v -152.309204 -78.134727 -3.000400 +v -145.595795 -5.842003 -2.550487 +v -151.394409 -79.537834 -4.750401 +v -151.929413 -79.088829 -4.750401 +v -144.824799 -67.106728 -2.550418 +v -147.288788 71.503708 -1.000583 +v -146.688812 72.668800 -1.000583 +v -150.871399 72.539497 -1.000583 +v -150.188812 71.503708 -1.000583 +v -145.418213 71.209335 -1.000583 +v -145.544708 72.668800 -1.000583 +v -142.888794 -42.696159 -3.000438 +v -146.867889 63.030437 -1.000576 +v -146.088806 69.475876 -1.000583 +v -143.367310 69.475967 -1.000583 +v -152.077606 -78.771141 -3.000400 +v -151.128113 72.324059 -1.000583 +v -151.339203 71.871300 -1.000583 +v -148.112610 -68.492531 -4.750408 +v -143.674500 -68.108131 -4.750408 +v -150.043091 62.106842 -1.000576 +v -147.288788 63.978638 -1.000576 +v -145.050903 70.493629 -1.000583 +v -150.556396 -78.746513 -1.000408 +v -151.009216 -78.535423 -1.000408 +v -150.562408 -78.780937 -3.000400 +v -144.479492 69.927513 -1.000583 +v -145.218109 68.682503 -1.000583 +v -142.888794 -42.696144 -1.000446 +v -145.059509 -76.597725 -1.000408 +v -144.487305 -76.025520 -1.000408 +v -148.376709 -62.523933 -1.000423 +v -142.888794 -51.696144 -1.000438 +v -143.155609 63.096485 -1.000576 +v -142.949799 63.213356 -1.000576 +v -146.088806 64.153717 -1.000576 +v -146.088806 17.003777 -3.000515 +v -142.888794 17.003777 -3.000515 +v -142.888794 25.003761 -3.000522 +v -146.088806 25.003761 -3.000522 +v -147.288788 -62.021233 -1.000423 +v -145.263794 -64.617256 -2.925418 +v -151.154907 -78.438942 -3.000400 +v -145.826691 63.116718 -1.000576 +v -144.927612 63.990005 -1.000576 +v -146.088806 -61.846138 -1.000423 +v -144.813904 62.860237 -1.000576 +v -148.376709 63.475895 -1.000576 +v -147.824707 62.610752 -1.000576 +v -143.939209 62.288792 -1.000576 +v -151.353912 -22.496185 -1.000476 +v -151.353912 -6.186104 -1.000492 +v -151.388794 -77.796135 -3.000400 +v -151.353912 -31.746162 -1.000461 +v -146.088806 -70.246117 -1.000415 +v -151.353912 -42.046150 -1.000454 +v -151.353912 -52.346153 -1.000438 +v -151.353912 -66.046135 -1.000423 +v -151.224609 -78.278618 -1.000408 +v -149.090698 60.984261 -1.000576 +v -148.593414 61.903130 -1.000576 +v -149.896301 62.064209 -1.000576 +v -151.353912 46.253735 -1.000553 +v -151.353912 59.953720 -1.000576 +v -151.388794 71.703705 -3.000576 +v -151.353912 35.953751 -1.000545 +v -144.538300 -66.610451 -2.550418 +v -142.958313 60.476120 -1.000576 +v -151.353912 25.653755 -1.000530 +v -143.297516 61.464302 -1.000576 +v -151.353912 16.403770 -1.000522 +v -151.353912 6.203781 -1.000507 +v -149.262695 59.953720 -1.000576 +v -145.502502 -70.205025 -1.000415 +v -150.084808 57.770443 -1.000568 +v -144.438812 -66.046150 -2.550418 +v -149.747498 57.807995 -1.000568 +v -149.071198 58.868206 -1.000568 +v -142.888794 -52.996147 -1.000438 +v -148.520111 57.913624 -1.000568 +v -144.538300 -65.481850 -2.550418 +v -147.288788 -52.996147 -1.000438 +v -148.855713 56.793976 -1.000568 +v -147.675690 57.205093 -1.000568 +v -146.088806 -11.696198 -1.000484 +v -142.888794 -11.696198 -1.000484 +v -143.375610 60.885151 -1.300579 +v -142.892792 -6.438705 -1.000492 +v -142.892792 -6.438705 -3.000484 +v -144.375488 56.119053 -1.000568 +v -150.188812 -52.996147 -1.000438 +v -147.850800 56.141174 -1.000568 +v -146.088806 -7.246201 -1.000492 +v -146.639893 56.828106 -1.000568 +v -145.502502 -7.205101 -1.000492 +v -147.288788 55.928806 -1.000568 +v -144.375488 -6.880905 -1.000492 +v -145.502502 55.794857 -1.000568 +v -146.088806 55.753727 -1.000568 +v -146.088806 5.603783 -1.000507 +v -146.088806 1.153786 -1.000499 +v -146.088806 46.903736 -1.000553 +v -145.263794 58.524784 -2.925563 +v -150.188812 46.903736 -1.000553 +v -147.288788 46.903736 -1.000553 +v -146.688812 46.253735 -1.000553 +v -142.888794 46.903736 -1.000553 +v -144.824799 58.893124 -2.925563 +v -144.927612 0.990089 -1.000499 +v -150.188812 45.603741 -1.000553 +v -150.188812 36.603745 -1.000545 +v -144.538300 59.389393 -2.925563 +v -146.088806 45.603741 -1.000553 +v -146.088806 36.603745 -1.000545 +v -146.688812 35.953751 -1.000545 +v -147.288788 45.603741 -1.000553 +v -142.888794 45.603741 -1.000553 +v -147.288788 36.603745 -1.000545 +v -142.888794 36.603745 -1.000545 +v -144.438812 59.953720 -2.925571 +v -150.188812 26.303757 -1.000530 +v -150.188812 35.303749 -1.000545 +v -143.825104 61.715649 -1.300579 +v -146.088806 35.303749 -1.000545 +v -146.088806 26.303757 -1.000530 +v -146.688812 25.653755 -1.000530 +v -147.288788 35.303749 -1.000545 +v -142.888794 35.303749 -1.000545 +v -144.538300 60.518051 -2.925571 +v -147.288788 26.303757 -1.000530 +v -142.888794 26.303757 -1.000530 +v -142.888794 5.603783 -1.000507 +v -144.824799 61.014320 -2.925571 +v -150.188812 17.003777 -1.000522 +v -150.188812 25.003761 -1.000530 +v -146.088806 25.003761 -1.000530 +v -146.088806 17.003777 -1.000522 +v -146.688812 16.403770 -1.000522 +v -147.288788 25.003761 -1.000530 +v -142.888794 25.003761 -1.000530 +v -145.263794 61.382660 -2.925571 +v -147.288788 17.003777 -1.000522 +v -142.888794 17.003777 -1.000522 +v -145.802307 61.578651 -2.925571 +v -147.288788 5.603783 -1.000507 +v -150.188812 5.603783 -1.000507 +v -150.188812 6.803780 -1.000507 +v -150.188812 15.803787 -1.000522 +v -146.088806 15.803787 -1.000522 +v -146.088806 6.803780 -1.000507 +v -146.688812 6.203781 -1.000507 +v -147.288788 15.803787 -1.000522 +v -142.888794 15.803787 -1.000522 +v -147.288788 6.803780 -1.000507 +v -142.888794 6.803780 -1.000507 +v -144.519806 62.355221 -1.300579 +v -146.688812 0.093689 -1.000499 +v -147.288788 0.978691 -1.000499 +v -148.376709 0.475990 -1.000499 +v -150.188812 -41.396156 -1.000454 +v -146.088806 -69.219917 -1.000415 +v -145.058289 -69.048012 -1.000415 +v -142.901917 0.093689 -1.000499 +v -144.824799 -64.985542 -2.550418 +v -147.288788 -11.696198 -1.000484 +v -147.288788 -7.071106 -1.000492 +v -147.850800 -6.858704 -1.000492 +v -148.855713 -6.206001 -1.000492 +v -150.188812 -11.696198 -1.000484 +v -144.375488 -69.880821 -1.000415 +v -145.263794 -64.617256 -2.550418 +v -148.821716 -67.662331 -4.750415 +v -142.901917 -6.186104 -1.000492 +v -146.688812 -6.186104 -1.000492 +v -146.688812 -22.496185 -1.000476 +v -147.288788 -12.896194 -1.000484 +v -150.188812 -12.896194 -1.000484 +v -146.088806 -12.896194 -1.000484 +v -142.888794 -12.896194 -1.000484 +v -150.188812 -21.896187 -1.000476 +v -147.288788 -21.896187 -1.000476 +v -146.088806 -21.896187 -1.000476 +v -142.888794 -21.896187 -1.000476 +v -151.642212 -79.289940 -3.000400 +v -150.188812 -23.096191 -1.000476 +v -150.188812 -31.096169 -1.000461 +v -146.088806 -23.096191 -1.000476 +v -146.088806 -31.096169 -1.000461 +v -146.688812 -31.746162 -1.000461 +v -147.288788 -23.096191 -1.000476 +v -142.888794 -23.096191 -1.000476 +v -147.288788 -31.096169 -1.000461 +v -142.888794 -31.096169 -1.000461 +v -150.188812 -32.396172 -1.000461 +v -150.188812 -42.696144 -1.000446 +v -147.288788 -32.396172 -1.000461 +v -146.688812 -42.046150 -1.000454 +v -150.188812 -51.696144 -1.000438 +v -147.288788 -41.396156 -1.000454 +v -150.120697 57.733604 -3.000560 +v -149.794891 57.828243 -3.000560 +v -147.288788 -42.696144 -1.000446 +v -146.688812 -52.346153 -1.000438 +v -147.288788 -51.696144 -1.000438 +v -150.188812 46.903736 -3.000545 +v -147.288788 46.903736 -3.000545 +v -147.288788 55.928806 -3.000560 +v -148.376709 56.431545 -3.000560 +v -147.174316 -63.063728 -1.000423 +v -145.566406 -62.915535 -1.000423 +v -144.578217 -63.254829 -1.000423 +v -148.128906 -63.614830 -1.000423 +v -143.753693 -68.195717 -1.000415 +v -146.088806 -75.568321 -1.000408 +v -148.837402 -64.459236 -1.000423 +v -142.925812 -65.784035 -1.000423 +v -149.214417 -65.495033 -1.000423 +v -149.214417 -66.597237 -1.000423 +v -148.837402 -67.633018 -1.000423 +v -143.012115 -66.825233 -1.000423 +v -148.128906 -68.477425 -1.000415 +v -147.288788 71.503708 -3.000576 +v -150.188812 71.503708 -3.000576 +v -150.043091 62.106842 -3.000568 +v -148.376709 63.475895 -3.000568 +v -147.174316 -69.028526 -1.000415 +v -147.288788 63.978638 -3.000568 +v -149.896301 62.064209 -3.000568 + +f 424 425 426 +f 916 424 426 +f 978 916 426 +f 995 916 978 +f 999 995 978 +f 425 999 978 +f 927 999 425 +f 1169 999 927 +f 1169 927 1163 +f 1168 1169 1163 +f 1161 1168 1163 +f 1161 1163 1022 +f 1164 1161 1022 +f 1023 1164 1022 +f 1023 1022 1019 +f 1024 1023 1019 +f 1025 1024 1019 +f 1009 1025 1019 +f 1009 1019 967 +f 982 1009 967 +f 982 967 877 +f 970 982 877 +f 970 877 625 +f 969 970 625 +f 553 969 625 +f 554 553 625 +f 624 554 625 +f 926 624 625 +f 926 625 985 +f 923 926 985 +f 923 985 1138 +f 917 923 1138 +f 917 1138 818 +f 817 917 818 +f 817 818 733 +f 809 817 733 +f 809 733 640 +f 793 809 640 +f 793 640 639 +f 773 793 639 +f 773 639 676 +f 773 676 675 +f 772 773 675 +f 771 772 675 +f 771 675 562 +f 561 771 562 +f 560 561 562 +f 560 562 744 +f 560 744 633 +f 461 560 633 +f 462 461 633 +f 632 462 633 +f 631 632 633 +f 631 849 632 +f 632 849 957 +f 632 957 469 +f 957 434 469 +f 469 434 512 +f 469 512 542 +f 470 469 542 +f 588 470 542 +f 902 588 542 +f 738 902 542 +f 698 902 738 +f 686 698 738 +f 512 686 738 +f 512 436 686 +f 436 860 686 +f 860 753 686 +f 753 684 686 +f 684 685 686 +f 749 685 684 +f 749 684 746 +f 745 749 746 +f 745 746 743 +f 742 745 743 +f 742 743 741 +f 740 742 741 +f 740 741 649 +f 737 740 649 +f 737 649 613 +f 734 737 613 +f 734 613 515 +f 731 734 515 +f 731 515 514 +f 728 731 514 +f 728 514 538 +f 727 728 538 +f 727 538 705 +f 727 705 664 +f 663 727 664 +f 590 663 664 +f 591 590 664 +f 591 664 732 +f 825 591 732 +f 730 825 732 +f 503 730 732 +f 981 503 732 +f 981 732 736 +f 993 981 736 +f 993 736 709 +f 989 993 709 +f 989 709 704 +f 976 989 704 +f 976 704 706 +f 891 976 706 +f 880 891 706 +f 880 706 949 +f 880 949 726 +f 881 880 726 +f 896 881 726 +f 650 896 726 +f 538 650 726 +f 538 540 650 +f 540 906 650 +f 908 906 540 +f 539 908 540 +f 500 908 539 +f 538 500 539 +f 525 908 500 +f 505 525 500 +f 504 505 500 +f 499 504 500 +f 498 499 500 +f 654 498 500 +f 649 654 500 +f 699 498 654 +f 700 699 654 +f 700 654 752 +f 700 752 753 +f 724 700 753 +f 729 724 753 +f 729 721 724 +f 735 721 729 +f 435 735 729 +f 435 729 860 +f 887 735 435 +f 434 887 435 +f 434 435 436 +f 872 887 434 +f 872 871 887 +f 871 886 887 +f 886 871 958 +f 886 958 956 +f 892 886 956 +f 892 956 954 +f 897 892 954 +f 897 954 953 +f 545 897 953 +f 545 953 490 +f 548 545 490 +f 489 548 490 +f 432 489 490 +f 929 432 490 +f 929 930 432 +f 930 430 432 +f 430 431 432 +f 430 433 431 +f 433 438 431 +f 431 438 492 +f 431 492 489 +f 492 556 489 +f 564 556 492 +f 495 564 492 +f 568 564 495 +f 497 568 495 +f 446 497 495 +f 438 446 495 +f 439 446 438 +f 439 447 446 +f 447 452 446 +f 447 453 452 +f 453 458 452 +f 452 458 502 +f 452 502 497 +f 502 572 497 +f 502 578 572 +f 572 578 577 +f 572 577 571 +f 568 572 571 +f 568 571 567 +f 567 571 711 +f 567 711 710 +f 563 567 710 +f 563 710 707 +f 555 563 707 +f 555 707 703 +f 546 555 703 +f 546 703 699 +f 547 546 699 +f 545 546 547 +f 548 555 546 +f 548 556 555 +f 703 707 499 +f 556 563 555 +f 707 710 504 +f 564 567 563 +f 710 711 505 +f 711 761 505 +f 711 716 761 +f 716 764 761 +f 764 525 761 +f 767 525 764 +f 718 767 764 +f 718 722 767 +f 722 641 767 +f 722 562 641 +f 722 725 562 +f 725 919 562 +f 725 824 919 +f 824 834 919 +f 919 834 631 +f 919 631 744 +f 824 823 834 +f 823 833 834 +f 834 833 849 +f 833 848 849 +f 848 853 849 +f 849 853 869 +f 869 853 872 +f 869 872 957 +f 848 961 853 +f 961 960 853 +f 853 960 871 +f 961 943 960 +f 943 940 960 +f 960 940 958 +f 940 938 958 +f 940 939 938 +f 939 937 938 +f 938 937 936 +f 938 936 956 +f 937 935 936 +f 936 935 931 +f 936 931 954 +f 935 930 931 +f 930 935 1129 +f 935 937 1129 +f 937 939 1129 +f 939 942 1129 +f 942 932 1129 +f 1129 932 565 +f 558 1129 565 +f 558 565 559 +f 557 558 559 +f 557 559 688 +f 691 557 688 +f 691 688 702 +f 701 691 702 +f 1066 701 702 +f 1098 1066 702 +f 1066 1098 1121 +f 1066 1121 1117 +f 1067 1066 1117 +f 1123 1067 1117 +f 1111 1123 1117 +f 1112 1111 1117 +f 1112 1117 1038 +f 797 1112 1038 +f 1018 797 1038 +f 1018 1038 1031 +f 1019 1018 1031 +f 1019 1031 908 +f 1031 907 908 +f 1031 984 907 +f 984 983 907 +f 907 983 879 +f 907 879 906 +f 906 879 896 +f 983 974 879 +f 974 891 879 +f 974 973 891 +f 973 977 891 +f 976 977 973 +f 980 976 973 +f 979 980 973 +f 972 979 973 +f 988 979 972 +f 988 972 1188 +f 1193 988 1188 +f 1191 1193 1188 +f 1191 1188 1189 +f 1190 1191 1189 +f 987 1190 1189 +f 975 987 1189 +f 972 975 1189 +f 975 972 974 +f 987 975 984 +f 1030 987 984 +f 1030 1028 987 +f 987 1028 1194 +f 1194 1028 1191 +f 1028 1014 1191 +f 1014 988 1191 +f 1014 1015 988 +f 1027 1015 1014 +f 1026 1027 1014 +f 1027 1026 665 +f 1027 665 659 +f 659 665 660 +f 659 660 652 +f 651 659 652 +f 651 652 647 +f 644 651 647 +f 644 647 645 +f 644 645 630 +f 646 644 630 +f 594 646 630 +f 592 594 630 +f 629 592 630 +f 592 629 862 +f 1110 592 862 +f 1110 862 727 +f 593 592 1110 +f 1107 593 1110 +f 1107 1110 663 +f 712 593 1107 +f 1099 712 1107 +f 1099 1107 590 +f 589 1099 590 +f 1095 1099 589 +f 530 1095 589 +f 530 589 825 +f 1086 1095 530 +f 529 1086 530 +f 529 530 468 +f 588 529 468 +f 588 1078 529 +f 468 530 730 +f 1078 1086 529 +f 1078 858 1086 +f 858 822 1086 +f 858 859 822 +f 859 775 822 +f 822 775 713 +f 822 713 1095 +f 713 775 714 +f 712 713 714 +f 712 714 595 +f 714 1089 595 +f 1089 1122 595 +f 595 1122 594 +f 593 595 594 +f 1089 1016 1122 +f 1016 1013 1122 +f 1122 1013 646 +f 1013 1010 646 +f 1010 1013 1011 +f 1010 1011 1002 +f 979 1010 1002 +f 1010 979 644 +f 1002 1011 894 +f 1002 894 883 +f 980 1002 883 +f 980 883 885 +f 994 980 885 +f 884 994 885 +f 890 994 884 +f 883 890 884 +f 963 994 890 +f 895 963 890 +f 894 895 890 +f 894 898 895 +f 898 911 895 +f 911 962 895 +f 1001 962 911 +f 1000 1001 911 +f 1016 1001 1000 +f 1016 1036 1001 +f 1036 1034 1001 +f 1034 905 1001 +f 523 905 1034 +f 523 1034 524 +f 522 523 524 +f 522 524 775 +f 524 1053 775 +f 527 523 522 +f 528 527 522 +f 528 522 859 +f 856 528 859 +f 532 528 856 +f 610 532 856 +f 610 856 857 +f 609 610 857 +f 609 857 1074 +f 1069 609 1074 +f 1069 1074 698 +f 685 1069 698 +f 882 1069 685 +f 882 581 1069 +f 582 581 882 +f 582 882 878 +f 876 582 878 +f 876 878 875 +f 854 876 875 +f 854 875 874 +f 719 854 874 +f 719 874 873 +f 720 719 873 +f 720 873 870 +f 868 720 870 +f 868 870 867 +f 653 868 867 +f 653 867 861 +f 629 653 861 +f 653 629 645 +f 861 867 731 +f 868 653 647 +f 867 870 734 +f 720 868 652 +f 870 873 737 +f 719 720 660 +f 666 719 660 +f 873 874 740 +f 854 719 666 +f 671 854 666 +f 670 671 666 +f 665 670 666 +f 670 672 671 +f 672 673 671 +f 671 673 876 +f 672 677 673 +f 677 580 673 +f 673 580 582 +f 677 680 580 +f 680 674 580 +f 580 674 581 +f 674 608 581 +f 581 608 609 +f 681 608 674 +f 681 537 608 +f 608 537 610 +f 1060 537 681 +f 1050 1060 681 +f 1050 681 680 +f 1046 1050 680 +f 1049 1050 1046 +f 1043 1049 1046 +f 1043 1046 1044 +f 1043 1044 1039 +f 1041 1043 1039 +f 1041 1039 1030 +f 1029 1041 1030 +f 1029 1030 1031 +f 1032 1029 1031 +f 1035 1032 1031 +f 1037 1035 1031 +f 1037 1100 1035 +f 1100 1101 1035 +f 1101 1092 1035 +f 1035 1092 1096 +f 1035 1096 1087 +f 1087 1096 457 +f 1087 457 454 +f 1087 454 456 +f 1088 1087 456 +f 455 1088 456 +f 1093 1088 455 +f 457 1093 455 +f 1088 1093 1081 +f 1088 1081 1032 +f 1032 1081 1084 +f 1032 1084 1077 +f 1077 1084 473 +f 1077 473 463 +f 1077 463 465 +f 1076 1077 465 +f 464 1076 465 +f 1082 1076 464 +f 473 1082 464 +f 1076 1082 1072 +f 1076 1072 1071 +f 1076 1071 1029 +f 1029 1071 1070 +f 1070 1071 1172 +f 1070 1172 1171 +f 1041 1070 1171 +f 1041 1171 1166 +f 1171 1167 1166 +f 1167 1043 1166 +f 1171 1174 1167 +f 1174 1049 1167 +f 1058 1049 1174 +f 1173 1058 1174 +f 1062 1058 1173 +f 1071 1062 1173 +f 1058 1062 1060 +f 1072 1060 1062 +f 1072 1068 1060 +f 1060 1068 1065 +f 1065 541 1060 +f 1065 1064 541 +f 541 1064 536 +f 541 536 537 +f 537 536 532 +f 536 527 532 +f 536 1056 527 +f 1056 690 527 +f 690 689 527 +f 689 739 527 +f 739 689 620 +f 1073 739 620 +f 619 1073 620 +f 619 620 621 +f 626 619 621 +f 1056 626 621 +f 1056 1064 626 +f 1064 655 626 +f 655 619 626 +f 679 619 655 +f 678 679 655 +f 1065 678 655 +f 1068 679 678 +f 1068 619 679 +f 1068 1073 619 +f 1073 905 739 +f 1083 905 1073 +f 1079 1083 1073 +f 1079 1073 1072 +f 1080 1079 1072 +f 1081 1080 1072 +f 1081 1085 1080 +f 1080 1085 501 +f 1080 501 474 +f 1080 474 476 +f 474 475 476 +f 475 1083 476 +f 501 1083 475 +f 474 501 475 +f 1085 1083 501 +f 1085 944 1083 +f 1090 944 1085 +f 1090 1094 944 +f 1097 944 1094 +f 1097 1094 535 +f 1091 1097 535 +f 1091 535 507 +f 1091 507 509 +f 1090 1091 509 +f 508 1090 509 +f 1091 1090 1081 +f 1092 1091 1081 +f 507 508 509 +f 507 535 508 +f 1092 1097 1091 +f 1102 1097 1092 +f 1103 1102 1092 +f 1104 1103 1092 +f 1105 1104 1092 +f 1108 1104 1105 +f 1108 1105 814 +f 812 1108 814 +f 812 814 813 +f 811 812 813 +f 1100 811 813 +f 1100 812 811 +f 814 1101 813 +f 1100 1108 812 +f 1105 1101 814 +f 1037 1104 1108 +f 1114 1104 1037 +f 1113 1114 1037 +f 1038 1113 1037 +f 1038 1120 1113 +f 1113 1120 807 +f 1113 807 806 +f 1113 806 810 +f 806 808 810 +f 808 1114 810 +f 1118 1114 808 +f 807 1118 808 +f 806 807 808 +f 1120 1118 807 +f 1120 1117 1118 +f 1118 1117 1104 +f 1117 1116 1104 +f 1116 1115 1104 +f 1115 1109 1104 +f 1115 941 1109 +f 1109 941 1106 +f 1109 1106 1004 +f 1103 1109 1004 +f 1103 1004 1003 +f 1003 1004 1005 +f 1003 1005 1006 +f 1102 1003 1006 +f 1106 1102 1006 +f 1005 1106 1006 +f 1004 1106 1005 +f 1106 941 944 +f 944 941 682 +f 905 944 682 +f 904 905 682 +f 904 682 605 +f 918 904 605 +f 918 605 511 +f 925 918 511 +f 925 511 503 +f 511 449 503 +f 503 449 468 +f 449 469 468 +f 469 449 462 +f 449 460 462 +f 460 449 448 +f 826 460 448 +f 816 826 448 +f 802 816 448 +f 986 802 448 +f 450 986 448 +f 450 723 986 +f 723 786 986 +f 784 786 723 +f 570 784 723 +f 554 784 570 +f 569 554 570 +f 450 569 570 +f 820 569 450 +f 449 820 450 +f 819 820 449 +f 526 819 449 +f 602 819 526 +f 511 602 526 +f 959 819 602 +f 648 959 602 +f 605 648 602 +f 955 959 648 +f 934 955 648 +f 933 934 648 +f 932 933 648 +f 932 648 682 +f 1052 933 932 +f 1054 1052 932 +f 1054 932 1139 +f 888 1054 1139 +f 888 1139 1140 +f 893 888 1140 +f 1063 893 1140 +f 1061 1063 1140 +f 1059 1061 1140 +f 1051 1059 1140 +f 1141 1051 1140 +f 1142 1141 1140 +f 1131 1142 1140 +f 1132 1131 1140 +f 1133 1132 1140 +f 1134 1133 1140 +f 1134 1140 478 +f 1134 478 472 +f 1134 472 467 +f 899 1134 467 +f 899 467 459 +f 899 459 453 +f 900 899 453 +f 900 453 1018 +f 1018 1135 900 +f 900 1135 901 +f 1135 912 901 +f 912 920 901 +f 901 920 909 +f 899 901 909 +f 920 899 909 +f 912 915 920 +f 915 1134 920 +f 912 914 915 +f 914 1133 915 +f 912 913 914 +f 913 1131 914 +f 1135 1131 913 +f 1143 1131 1135 +f 1017 1143 1135 +f 1017 1146 1143 +f 1143 1146 803 +f 801 1143 803 +f 799 801 803 +f 799 800 801 +f 800 1142 801 +f 1147 1142 800 +f 1146 1147 800 +f 1146 800 799 +f 1142 1143 801 +f 1146 799 803 +f 1017 1147 1146 +f 1151 1147 1017 +f 1152 1151 1017 +f 1020 1152 1017 +f 1020 1017 1019 +f 1020 1158 1152 +f 1152 1158 795 +f 1152 795 794 +f 1152 794 798 +f 794 796 798 +f 796 1151 798 +f 1156 1151 796 +f 795 1156 796 +f 1151 1156 1141 +f 1156 1155 1141 +f 1155 1154 1141 +f 1154 1153 1141 +f 1153 1149 1141 +f 1141 1149 1148 +f 1141 1148 1144 +f 1144 1148 783 +f 782 1144 783 +f 780 782 783 +f 780 781 782 +f 781 1145 782 +f 1149 1145 781 +f 1149 933 1145 +f 1148 781 780 +f 1145 1144 782 +f 1144 1145 1052 +f 1144 1052 1051 +f 1051 1052 574 +f 1051 574 852 +f 852 574 832 +f 855 852 832 +f 1059 855 832 +f 1059 852 855 +f 832 574 573 +f 1061 832 573 +f 573 574 575 +f 1063 573 575 +f 574 1055 575 +f 575 1055 889 +f 888 575 889 +f 1055 1054 889 +f 574 1054 1055 +f 1148 780 783 +f 1148 1149 781 +f 1153 933 1149 +f 1153 1157 933 +f 1159 933 1157 +f 1159 1157 787 +f 1154 1159 787 +f 1154 787 792 +f 1154 792 789 +f 792 787 789 +f 787 788 789 +f 788 1153 789 +f 787 1157 788 +f 479 933 1159 +f 480 479 1159 +f 480 1159 1155 +f 519 480 1155 +f 1163 519 1155 +f 1162 1163 1155 +f 1160 1162 1155 +f 1160 1155 1020 +f 1126 1160 1020 +f 1022 1126 1020 +f 1022 1165 1126 +f 1126 1165 444 +f 1126 444 443 +f 443 444 445 +f 1160 443 445 +f 451 1160 445 +f 444 451 445 +f 444 1165 451 +f 1165 1162 451 +f 1160 1126 443 +f 1162 1160 451 +f 1165 1163 1162 +f 1163 483 519 +f 519 483 482 +f 519 482 520 +f 520 482 903 +f 480 520 903 +f 481 480 903 +f 482 481 903 +f 482 483 481 +f 483 479 481 +f 916 483 1163 +f 480 519 520 +f 479 480 481 +f 483 933 479 +f 995 933 483 +f 1157 1153 788 +f 1153 1154 789 +f 1155 1159 1154 +f 1158 1155 1156 +f 794 795 796 +f 1158 1156 795 +f 1020 1155 1158 +f 1151 1152 798 +f 1151 1141 1147 +f 1135 913 912 +f 1017 1135 1018 +f 1018 453 692 +f 692 453 693 +f 692 693 694 +f 692 694 717 +f 797 692 717 +f 797 717 866 +f 717 694 866 +f 694 863 866 +f 863 865 866 +f 865 1112 866 +f 863 864 865 +f 864 1124 865 +f 1124 1111 865 +f 863 1124 864 +f 1125 1124 863 +f 1125 1123 1124 +f 433 1123 1125 +f 439 433 1125 +f 693 439 1125 +f 694 1125 863 +f 693 1125 694 +f 899 900 901 +f 459 467 466 +f 459 466 458 +f 458 466 506 +f 466 510 506 +f 506 510 584 +f 506 584 578 +f 578 584 583 +f 584 586 583 +f 583 586 722 +f 584 587 586 +f 586 587 824 +f 510 587 584 +f 510 513 587 +f 513 968 587 +f 587 968 823 +f 968 965 823 +f 968 952 965 +f 952 948 965 +f 965 948 964 +f 965 964 833 +f 948 946 964 +f 964 946 961 +f 948 947 946 +f 947 945 946 +f 946 945 943 +f 945 942 943 +f 945 1139 942 +f 947 1139 945 +f 951 1139 947 +f 478 1139 951 +f 478 951 952 +f 477 478 952 +f 951 947 948 +f 952 951 948 +f 477 952 968 +f 513 477 968 +f 471 477 513 +f 472 477 471 +f 471 513 510 +f 466 471 510 +f 467 471 466 +f 1134 899 920 +f 467 472 471 +f 472 478 477 +f 1133 1134 915 +f 1132 1133 914 +f 1131 1132 914 +f 1143 1142 1131 +f 1147 1141 1142 +f 1141 1144 1051 +f 1059 1051 852 +f 1061 1059 832 +f 1063 1061 573 +f 893 1063 575 +f 888 893 575 +f 1140 1139 478 +f 1054 888 889 +f 1052 1054 574 +f 1145 933 1052 +f 995 934 933 +f 955 934 531 +f 531 934 517 +f 531 517 516 +f 521 531 516 +f 521 516 534 +f 576 521 534 +f 1136 576 534 +f 533 1136 534 +f 517 533 534 +f 517 534 518 +f 533 517 1179 +f 1179 517 1186 +f 1179 1186 759 +f 757 1179 759 +f 757 759 760 +f 758 757 760 +f 758 760 1033 +f 971 758 1033 +f 971 1033 821 +f 804 971 821 +f 804 821 816 +f 658 971 804 +f 790 658 804 +f 790 804 802 +f 786 790 802 +f 785 790 786 +f 785 656 790 +f 661 656 785 +f 661 785 851 +f 850 661 851 +f 850 851 847 +f 846 850 847 +f 846 847 844 +f 843 846 844 +f 843 844 840 +f 839 843 840 +f 839 840 838 +f 837 839 838 +f 837 838 836 +f 835 837 836 +f 835 836 831 +f 830 835 831 +f 830 831 828 +f 827 830 828 +f 827 828 829 +f 1137 827 829 +f 1008 1137 829 +f 1008 829 774 +f 791 1008 774 +f 791 774 561 +f 928 1008 791 +f 805 928 791 +f 805 791 560 +f 924 928 805 +f 815 924 805 +f 815 805 461 +f 826 815 461 +f 826 910 815 +f 821 910 826 +f 910 924 815 +f 910 1042 924 +f 1042 1047 924 +f 1047 1042 763 +f 1047 763 766 +f 1130 1047 766 +f 1130 766 768 +f 1137 1130 768 +f 1137 768 770 +f 768 551 770 +f 551 769 770 +f 770 769 598 +f 827 770 598 +f 769 596 598 +f 596 597 598 +f 597 830 598 +f 596 599 597 +f 599 600 597 +f 600 601 597 +f 601 835 597 +f 600 603 601 +f 603 604 601 +f 604 837 601 +f 603 606 604 +f 606 607 604 +f 607 839 604 +f 606 611 607 +f 611 612 607 +f 612 843 607 +f 611 617 612 +f 617 618 612 +f 618 846 612 +f 617 622 618 +f 618 622 850 +f 617 623 622 +f 623 627 622 +f 622 627 661 +f 623 628 627 +f 628 634 627 +f 627 634 656 +f 634 642 656 +f 642 657 656 +f 656 657 658 +f 657 687 658 +f 657 755 687 +f 755 756 687 +f 687 756 758 +f 755 1128 756 +f 1128 1179 756 +f 1128 1136 1179 +f 1040 1136 1128 +f 1021 1040 1128 +f 1127 1021 1128 +f 1127 1128 643 +f 1127 643 635 +f 1192 1127 635 +f 1192 635 628 +f 1187 1192 628 +f 845 1192 1187 +f 637 845 1187 +f 637 1187 1185 +f 637 1185 1024 +f 614 637 1024 +f 637 614 638 +f 636 637 638 +f 636 638 662 +f 616 636 662 +f 614 616 662 +f 614 615 616 +f 615 667 616 +f 616 667 668 +f 616 668 669 +f 668 748 669 +f 748 845 669 +f 669 845 636 +f 667 748 668 +f 683 748 667 +f 683 1021 748 +f 683 1180 1021 +f 1021 1180 544 +f 1021 544 566 +f 544 486 566 +f 486 488 566 +f 566 488 576 +f 1040 566 576 +f 486 487 488 +f 488 487 521 +f 950 487 486 +f 543 950 486 +f 1180 950 543 +f 1180 996 950 +f 996 997 950 +f 997 996 579 +f 997 579 569 +f 996 585 579 +f 579 585 554 +f 585 552 554 +f 841 552 585 +f 922 841 585 +f 921 922 585 +f 922 921 1180 +f 841 922 992 +f 966 841 992 +f 1150 966 992 +f 1150 992 1009 +f 992 991 1009 +f 990 991 992 +f 991 990 615 +f 1025 991 615 +f 990 683 615 +f 990 922 683 +f 966 1150 969 +f 966 842 841 +f 842 966 553 +f 552 842 553 +f 922 990 992 +f 841 842 552 +f 996 921 585 +f 921 996 1180 +f 950 997 487 +f 997 820 487 +f 820 531 487 +f 543 486 544 +f 1180 543 544 +f 683 922 1180 +f 615 683 667 +f 615 614 1025 +f 616 669 636 +f 614 662 638 +f 1185 1184 1024 +f 1024 1184 1183 +f 1024 1183 696 +f 1024 696 708 +f 708 696 695 +f 708 695 747 +f 1057 708 747 +f 754 1057 747 +f 751 754 747 +f 750 751 747 +f 697 750 747 +f 697 998 750 +f 998 1007 750 +f 998 1178 1007 +f 1178 1175 1007 +f 1007 1175 1048 +f 1007 1048 754 +f 1048 1175 1169 +f 1057 1048 1169 +f 1057 1169 1023 +f 1023 1169 1170 +f 1175 1012 1169 +f 1012 715 1169 +f 715 1012 493 +f 715 493 494 +f 491 715 494 +f 1045 715 491 +f 441 1045 491 +f 442 441 491 +f 484 442 491 +f 485 484 491 +f 493 485 491 +f 496 485 493 +f 496 440 485 +f 1177 440 496 +f 1176 1177 496 +f 1176 496 1012 +f 1177 1176 596 +f 1177 550 440 +f 550 441 440 +f 550 549 441 +f 549 1182 441 +f 1182 934 441 +f 1182 549 765 +f 762 1182 765 +f 762 765 766 +f 1186 1182 762 +f 765 549 551 +f 549 550 551 +f 550 1177 769 +f 440 484 485 +f 484 440 442 +f 440 441 442 +f 441 934 1045 +f 1045 934 999 +f 715 1045 999 +f 493 491 494 +f 1012 496 493 +f 1175 1176 1012 +f 1176 1175 599 +f 1175 1178 600 +f 696 1178 998 +f 1181 1178 696 +f 1178 1181 603 +f 696 998 697 +f 750 1007 751 +f 751 1007 754 +f 1048 1057 754 +f 708 1057 1023 +f 695 697 747 +f 695 696 697 +f 1183 1181 696 +f 1181 1183 606 +f 1183 1184 611 +f 1184 1185 617 +f 1185 1187 623 +f 845 637 636 +f 845 748 1192 +f 748 1127 1192 +f 635 643 642 +f 748 1021 1127 +f 1040 1021 566 +f 643 1128 755 +f 643 755 657 +f 642 643 657 +f 635 642 634 +f 628 635 634 +f 1187 628 623 +f 1185 623 617 +f 1184 617 611 +f 1183 611 606 +f 1181 606 603 +f 1178 603 600 +f 1175 600 599 +f 1176 599 596 +f 769 1177 596 +f 551 550 769 +f 765 551 768 +f 766 765 768 +f 1047 1130 928 +f 763 762 766 +f 759 762 763 +f 1042 760 763 +f 1033 1042 910 +f 924 1047 928 +f 928 1130 1008 +f 774 829 772 +f 1130 1137 1008 +f 827 1137 770 +f 829 828 772 +f 830 827 598 +f 828 831 773 +f 835 830 597 +f 831 836 793 +f 837 835 601 +f 836 838 809 +f 839 837 604 +f 838 840 817 +f 843 839 607 +f 840 844 917 +f 846 843 612 +f 844 847 917 +f 618 850 846 +f 847 851 923 +f 622 661 850 +f 851 785 926 +f 627 656 661 +f 656 658 790 +f 658 687 971 +f 821 1033 910 +f 687 758 971 +f 1033 760 1042 +f 756 757 758 +f 760 759 763 +f 756 1179 757 +f 759 1186 762 +f 1186 517 1182 +f 1136 533 1179 +f 1136 1040 576 +f 488 521 576 +f 534 516 518 +f 487 531 521 +f 516 517 518 +f 517 934 1182 +f 959 955 531 +f 819 959 531 +f 820 819 531 +f 820 997 569 +f 569 579 554 +f 784 785 786 +f 785 784 624 +f 450 570 723 +f 786 802 986 +f 802 804 816 +f 816 821 826 +f 460 826 461 +f 448 449 450 +f 511 526 449 +f 962 918 925 +f 962 925 981 +f 963 962 981 +f 511 605 602 +f 962 904 918 +f 682 648 605 +f 962 905 904 +f 941 932 682 +f 1098 932 941 +f 1115 1119 941 +f 1121 941 1119 +f 1121 1119 777 +f 1116 1121 777 +f 1116 777 776 +f 1116 776 779 +f 776 778 779 +f 778 1115 779 +f 776 777 778 +f 777 1119 778 +f 1119 1115 778 +f 1115 1116 779 +f 1114 1113 810 +f 1114 1118 1104 +f 1104 1109 1103 +f 1102 1103 1003 +f 1102 1106 1097 +f 535 1094 508 +f 1106 944 1097 +f 1094 1090 508 +f 1090 1085 1081 +f 1079 1080 476 +f 1083 1079 476 +f 1083 944 905 +f 620 689 621 +f 689 690 621 +f 690 1056 621 +f 1064 1056 536 +f 1064 1065 655 +f 1065 1068 678 +f 1072 1073 1068 +f 1171 1173 1174 +f 1171 1172 1173 +f 1172 1071 1173 +f 1071 1072 1062 +f 1082 1081 1072 +f 1077 1076 1029 +f 463 464 465 +f 463 473 464 +f 1084 1082 473 +f 1084 1081 1082 +f 1093 1092 1081 +f 1087 1088 1032 +f 454 455 456 +f 454 457 455 +f 1096 1093 457 +f 1096 1092 1093 +f 1101 1105 1092 +f 1101 1100 813 +f 1037 1108 1100 +f 1035 1087 1032 +f 1032 1077 1029 +f 1070 1041 1029 +f 1043 1041 1166 +f 1039 1044 672 +f 1044 1046 677 +f 1049 1043 1167 +f 1049 1058 1050 +f 1058 1060 1050 +f 1060 541 537 +f 680 681 674 +f 1046 680 677 +f 1044 677 672 +f 1039 672 670 +f 1026 1039 670 +f 1039 1026 1028 +f 874 875 742 +f 671 876 854 +f 875 878 745 +f 673 582 876 +f 878 882 749 +f 580 581 582 +f 581 609 1069 +f 1074 857 1078 +f 1074 1078 902 +f 608 610 609 +f 857 856 858 +f 537 532 610 +f 532 527 528 +f 527 739 523 +f 524 1034 1053 +f 523 739 905 +f 1034 1036 1053 +f 1053 1036 1089 +f 1001 905 962 +f 898 1000 911 +f 1011 1000 898 +f 962 963 895 +f 994 963 981 +f 980 994 993 +f 883 884 885 +f 883 894 890 +f 1011 898 894 +f 1013 1000 1011 +f 1013 1016 1000 +f 1036 1016 1089 +f 1053 1089 714 +f 775 1053 714 +f 859 522 775 +f 856 859 858 +f 857 858 1078 +f 1086 822 1095 +f 1095 713 1099 +f 713 712 1099 +f 593 712 595 +f 629 861 862 +f 862 861 728 +f 592 593 594 +f 1122 646 594 +f 1010 644 646 +f 645 629 630 +f 647 653 645 +f 979 651 644 +f 979 1015 651 +f 652 868 647 +f 1015 659 651 +f 660 720 652 +f 665 666 660 +f 1026 670 665 +f 1015 1027 659 +f 1028 1026 1014 +f 1030 1039 1028 +f 987 1194 1190 +f 1194 1191 1190 +f 1191 988 1193 +f 1188 972 1189 +f 1015 979 988 +f 979 1002 980 +f 972 973 974 +f 983 975 974 +f 984 975 983 +f 1030 984 1031 +f 1017 1018 1019 +f 1038 1037 1031 +f 1018 692 797 +f 1112 797 866 +f 1038 1117 1120 +f 1111 1112 865 +f 1124 1123 1111 +f 1123 1075 1067 +f 1067 1075 691 +f 1123 558 1075 +f 1117 1121 1116 +f 1098 941 1121 +f 1066 1067 701 +f 1067 691 701 +f 688 1098 702 +f 1075 557 691 +f 559 1098 688 +f 1075 558 557 +f 565 1098 559 +f 1123 1129 558 +f 430 1129 1123 +f 565 932 1098 +f 1139 932 942 +f 942 939 940 +f 943 942 940 +f 946 943 961 +f 964 961 848 +f 833 964 848 +f 823 965 833 +f 587 823 824 +f 586 824 725 +f 586 725 722 +f 583 722 718 +f 577 583 718 +f 577 718 716 +f 641 525 767 +f 733 525 641 +f 716 718 764 +f 571 716 711 +f 571 577 716 +f 578 583 577 +f 502 506 578 +f 458 506 502 +f 453 459 458 +f 453 447 693 +f 447 439 693 +f 446 452 497 +f 572 568 497 +f 564 568 567 +f 556 564 563 +f 438 495 492 +f 433 439 438 +f 433 430 1123 +f 430 930 1129 +f 931 930 929 +f 931 929 953 +f 432 431 489 +f 556 548 489 +f 545 548 546 +f 953 929 490 +f 897 545 547 +f 721 897 547 +f 721 547 700 +f 954 931 953 +f 892 897 721 +f 956 936 954 +f 886 892 735 +f 958 938 956 +f 871 960 958 +f 853 871 872 +f 887 886 735 +f 735 892 721 +f 724 721 700 +f 752 654 746 +f 547 699 700 +f 699 703 498 +f 703 499 498 +f 707 504 499 +f 710 505 504 +f 761 525 505 +f 967 908 525 +f 908 907 906 +f 538 539 540 +f 906 896 650 +f 896 879 881 +f 879 880 881 +f 949 706 726 +f 706 705 726 +f 879 891 880 +f 977 976 891 +f 704 705 706 +f 980 989 976 +f 709 705 704 +f 980 993 989 +f 736 705 709 +f 994 981 993 +f 981 925 503 +f 503 468 730 +f 730 530 825 +f 825 589 591 +f 732 664 736 +f 589 590 591 +f 590 1107 663 +f 663 1110 727 +f 664 705 736 +f 705 538 726 +f 862 728 727 +f 538 514 500 +f 861 731 728 +f 514 515 500 +f 867 734 731 +f 515 613 500 +f 870 737 734 +f 613 649 500 +f 873 740 737 +f 741 654 649 +f 874 742 740 +f 743 654 741 +f 875 745 742 +f 746 654 743 +f 878 749 745 +f 684 752 746 +f 882 685 749 +f 753 752 684 +f 860 729 753 +f 436 435 860 +f 685 698 686 +f 698 1074 902 +f 902 1078 588 +f 588 468 470 +f 468 469 470 +f 512 738 542 +f 512 434 436 +f 957 872 434 +f 849 869 957 +f 834 849 631 +f 632 469 462 +f 460 461 462 +f 461 805 560 +f 744 631 633 +f 562 919 744 +f 560 791 561 +f 561 774 771 +f 562 675 641 +f 774 772 771 +f 828 773 772 +f 675 676 641 +f 676 639 641 +f 831 793 773 +f 639 640 641 +f 836 809 793 +f 640 733 641 +f 838 817 809 +f 818 525 733 +f 840 917 817 +f 1138 525 818 +f 847 923 917 +f 985 525 1138 +f 851 926 923 +f 625 525 985 +f 785 624 926 +f 624 784 554 +f 552 553 554 +f 553 966 969 +f 969 1150 970 +f 877 525 625 +f 1150 982 970 +f 877 967 525 +f 982 1150 1009 +f 967 1019 908 +f 991 1025 1009 +f 1025 614 1024 +f 1024 708 1023 +f 1022 1020 1019 +f 1023 1170 1164 +f 1164 1170 427 +f 1164 427 437 +f 437 427 429 +f 1161 437 429 +f 428 1161 429 +f 427 428 429 +f 427 1170 428 +f 1170 1168 428 +f 1161 1164 437 +f 1022 1163 1165 +f 1168 1161 428 +f 1170 1169 1168 +f 927 916 1163 +f 715 999 1169 +f 999 934 995 +f 916 995 483 +f 916 927 424 +f 425 978 426 +f 927 425 424 + + +o Object.3 +v -152.290802 74.409988 -4.750584 +v -151.554810 74.374481 2.221806 +v -151.261688 74.894272 -4.750584 +v -147.288788 -0.591209 -0.500499 +v -146.088806 -0.313713 -0.500499 +v -146.552795 -0.387909 -2.450489 +v -146.088806 -63.296135 0.499577 +v -145.258301 -63.424538 0.499577 +v -145.583191 -63.395454 -2.450412 +v -146.088806 -63.313637 -0.500423 +v -144.715210 -63.723457 -2.450412 +v -142.924896 -17.796188 -0.500476 +v -143.763306 -4.493004 -0.141193 +v -142.924896 -3.696205 -0.500499 +v -145.197998 -4.552505 0.249508 +v -146.061310 -4.796005 0.249508 +v -144.442291 -3.639000 0.249501 +v -145.449799 -76.837517 2.200291 +v -145.718811 -77.662315 2.200291 +v -145.534393 -77.690422 -0.500408 +v -145.197998 58.447430 0.549435 +v -144.442291 59.360939 0.549435 +v -144.952301 58.623013 -2.450557 +v -144.009613 -64.326057 -2.450412 +v -152.477112 -79.843819 2.003796 +v -153.213013 -78.900719 1.259594 +v -153.579407 -78.668938 -4.750401 +v -141.651703 69.041382 0.798520 +v -141.352112 68.524979 0.670117 +v -141.466888 68.943726 -0.500583 +v -144.340607 -5.160103 0.106205 +v -144.024994 -64.242638 -0.028926 +v -147.288788 -31.096169 0.499539 +v -147.288788 -31.096169 -0.500461 +v -151.495209 -31.096169 -0.500461 +v -148.742889 -2.396210 -0.500499 +v -148.742889 -3.696205 -0.500499 +v -151.495209 -2.396210 -0.500499 +v -143.549805 -65.132057 -2.450412 +v -153.095093 -79.698128 -4.750401 +v -145.769714 74.002342 2.159710 +v -145.585205 71.157196 2.155415 +v -145.475189 71.323509 -0.500583 +v -145.566498 72.810097 -0.500591 +v -151.736511 73.309799 -2.900585 +v -152.204498 72.752007 -2.900585 +v -152.260498 72.784302 -4.750584 +v -143.430817 -65.396141 -0.283626 +v -143.390289 -66.046150 -2.450412 +v -151.518188 -80.383125 2.278691 +v -150.792694 -80.704002 2.200291 +v -152.882202 73.304413 1.706410 +v -153.343201 72.435310 1.006115 +v -145.465607 73.800308 -2.900585 +v -146.979614 -4.552505 0.249508 +v -146.116302 -1.296410 0.249501 +v -143.430817 -66.696129 -0.283626 +v -143.549805 -66.960228 -2.450412 +v -145.258301 -5.667801 0.499508 +v -145.461792 72.851990 -2.900585 +v -145.258301 -17.796188 0.499524 +v -143.803589 -67.556221 -0.123821 +v -144.009613 -67.766228 -2.450412 +v -142.924896 36.603745 -0.500545 +v -145.258301 45.603745 0.499447 +v -142.924896 45.603745 -0.500553 +v -143.274414 69.225388 1.557316 +v -142.089508 69.289276 0.954014 +v -143.669006 69.517319 -0.500583 +v -141.740112 69.219505 -0.500583 +v -147.288788 -32.396172 -0.500461 +v -147.288788 -32.396172 0.499539 +v -151.495209 -32.396172 -0.500461 +v -144.432800 -68.233818 0.145787 +v -144.715210 -68.368828 -2.450405 +v -144.442291 60.546513 0.549427 +v -145.470215 61.590755 0.549427 +v -144.568695 -2.179214 -2.450489 +v -144.442291 -2.453407 0.249501 +v -145.470215 -1.409210 -2.450489 +v -150.962891 72.698151 -2.900585 +v -146.088806 13.003777 0.499485 +v -146.088806 13.003777 -0.500515 +v -146.088806 25.003761 -0.500530 +v -145.258301 -68.667717 0.499585 +v -145.583191 -68.696831 -2.450405 +v -147.288788 -19.096191 0.499524 +v -147.288788 -19.096191 -0.500476 +v -145.258301 62.575314 0.499424 +v -146.088806 62.703724 0.499424 +v -145.258301 68.709854 0.499417 +v -144.715210 57.631004 -2.450557 +v -145.583191 57.303013 -2.450557 +v -146.088806 58.203724 -2.450557 +v -146.088806 69.475876 0.499417 +v -152.517212 72.078995 -4.750576 +v -146.045593 -68.795815 0.499585 +v -146.088806 58.203728 0.549435 +v -146.979614 58.447430 0.549435 +v -146.116302 61.703514 0.549427 +v -146.088806 -68.778618 -0.500415 +v -146.088806 45.603745 0.499447 +v -146.088806 45.603745 -0.500553 +v -151.778015 73.359283 -4.750584 +v -147.288788 -0.571808 0.499501 +v -147.425812 -0.702209 -2.450489 +v -152.453613 72.067780 -2.900577 +v -152.359009 -78.513237 -2.900402 +v -152.419708 -78.535332 -4.750401 +v -141.333405 -74.504326 0.662487 +v -141.266602 -3.046204 -0.500499 +v -146.241516 -81.025017 -4.750392 +v -151.261688 -80.986717 -4.750392 +v -145.784912 -64.322746 -2.450412 +v -145.784912 -64.322731 0.549580 +v -146.963806 -64.530647 -2.450412 +v -143.564514 -2.092308 -2.450489 +v -144.036804 -1.293709 -2.450489 +v -146.963806 -64.530632 0.549580 +v -145.258301 36.603745 0.499455 +v -145.068512 -76.573112 -0.500408 +v -151.477692 -32.396172 0.499539 +v -145.258301 26.303757 0.499470 +v -142.924896 26.303757 -0.500530 +v -146.088806 26.303757 -0.500530 +v -147.733307 -65.447655 -2.450412 +v -150.764099 -79.924538 -4.750401 +v -151.469391 -79.667839 -4.750401 +v -144.748199 -64.921242 0.549580 +v -144.748199 -64.921257 -2.450412 +v -145.465607 -79.892738 -2.900402 +v -145.764893 -79.959023 2.197590 +v -145.390991 -79.957329 -4.750401 +v -147.437195 -1.930710 -2.450489 +v -147.838806 -3.046204 -2.450489 +v -148.140808 -1.293709 -2.450489 +v -146.134796 -80.456398 2.259892 +v -148.613098 -2.092308 -2.450489 +v -147.429413 -64.921242 0.549580 +v -144.338806 -66.046135 0.549580 +v -144.338806 -66.046150 -2.450412 +v -147.838806 -66.046135 0.549580 +v -145.197998 -1.539909 0.249501 +v -146.416687 -1.327209 -2.450489 +v -147.733307 -66.644646 -2.450412 +v -147.288788 72.792641 0.499409 +v -150.933289 72.646751 0.499417 +v -147.288788 72.810097 -0.500591 +v -147.735413 59.360939 0.549435 +v -147.735413 60.546513 0.549427 +v -143.430817 -2.396210 -0.283702 +v -143.803589 -1.536110 -0.123897 +v -142.924896 11.703773 -0.500515 +v -145.390991 73.864899 -4.750584 +v -151.127991 73.734573 -4.750584 +v -141.266602 35.953751 -0.500545 +v -150.388794 74.672783 2.155407 +v -144.432800 -0.858513 0.145703 +v -143.390594 -3.088600 -2.450489 +v -145.583191 62.604431 -2.450565 +v -146.088806 62.686275 -0.500576 +v -144.715210 62.276440 -2.450565 +v -144.952301 61.284435 0.549427 +v -144.568695 60.820770 -2.450565 +v -146.088806 57.221188 -0.500568 +v -146.594513 57.303013 -2.450557 +v -147.288788 -41.396156 0.499546 +v -147.288788 57.498779 -0.500568 +v -144.432800 62.141445 0.145627 +v -144.009613 61.673809 -2.450565 +v -146.088806 26.303757 0.499470 +v -147.288788 57.479359 0.499432 +v -147.462494 57.631004 -2.450557 +v -148.207703 58.200817 0.499432 +v -151.105896 73.673866 -2.900585 +v -143.803589 61.463863 -0.123973 +v -143.549805 60.867809 -2.450565 +v -145.258301 -0.424614 0.499501 +v -144.751801 -0.702209 -2.450489 +v -145.624908 -0.387909 -2.450489 +v -143.430817 60.603725 -0.283779 +v -143.390289 59.953720 -2.450565 +v -148.167999 58.233635 -2.450557 +v -144.730194 -75.903313 2.169392 +v -143.430817 59.303726 -0.283771 +v -143.549805 59.039635 -2.450557 +v -145.056610 70.122757 2.217915 +v -148.627808 59.039635 -2.450557 +v -152.226715 73.855164 2.149212 +v -143.763306 58.506920 -0.141269 +v -144.009613 58.233635 -2.450557 +v -148.760895 59.303726 0.499432 +v -150.752899 -79.860832 -2.900402 +v -148.742889 59.303726 -0.500568 +v -148.787292 59.953720 -2.450565 +v -145.258301 57.332138 0.499432 +v -143.832794 -75.514626 1.729489 +v -144.492096 -76.002113 -0.500408 +v -146.534088 74.680511 2.116612 +v -145.936798 74.773682 -4.750584 +v -148.742889 60.603725 -0.500576 +v -148.627808 60.867809 -2.450565 +v -148.786987 -3.088600 -2.450489 +v -141.266602 -42.046150 -0.500454 +v -141.266602 -31.746162 -0.500461 +v -148.760895 60.603725 0.499424 +v -145.258301 11.703773 0.499485 +v -145.648407 70.643547 2.299420 +v -146.088806 57.203728 0.499432 +v -152.290802 -80.502419 -4.750401 +v -151.495209 60.603725 -0.500576 +v -146.088806 35.303749 0.499455 +v -146.088806 35.303749 -0.500545 +v -148.207703 61.706646 0.499424 +v -147.288788 -41.396156 -0.500454 +v -148.167999 61.673809 -2.450565 +v -143.434692 -3.696106 -0.500499 +v -143.564514 -4.000107 -2.450489 +v -141.472992 -75.044823 -0.500408 +v -147.462494 62.276440 -2.450565 +v -148.613098 -4.000107 -2.450489 +v -147.288788 62.428093 0.499424 +v -148.760895 -3.696205 0.499501 +v -147.288788 62.408684 -0.500576 +v -151.477692 60.603725 0.499424 +v -144.036804 -4.798706 -2.450481 +v -148.179901 -4.832207 0.499508 +v -148.140808 -4.798706 -2.450481 +v -146.594513 62.604431 -2.450565 +v -148.179901 -1.260208 0.499501 +v -146.088806 -0.296211 0.499501 +v -144.751801 -5.390205 -2.450481 +v -144.471008 69.894730 -0.500583 +v -147.425812 -5.390205 -2.450481 +v -151.495209 59.303726 -0.500568 +v -145.848206 -80.797920 -4.750401 +v -145.258301 46.903740 0.499447 +v -146.088806 46.903740 0.499447 +v -151.477692 -19.096191 0.499524 +v -151.495209 -19.096191 -0.500476 +v -147.288788 -5.520607 0.499508 +v -147.288788 -5.501205 -0.500492 +v -153.095093 73.605713 -4.750584 +v -145.624908 -5.704506 -2.450481 +v -146.552795 -5.704506 -2.450481 +v -151.477692 -31.096169 0.499539 +v -145.258301 13.003777 0.499485 +v -145.258301 25.003761 0.499470 +v -146.088806 25.003761 0.499470 +v -146.088806 -5.778702 -0.500492 +v -151.437103 -79.611839 -2.900402 +v -146.088806 36.603745 0.499455 +v -145.258301 35.303749 0.499455 +v -142.924896 35.303749 -0.500545 +v -151.477692 59.303726 0.499432 +v -146.088806 -5.796204 0.499508 +v -142.924896 25.003761 -0.500530 +v -151.495209 -41.396156 -0.500454 +v -147.225311 61.284435 0.549427 +v -146.416687 61.672722 -2.450565 +v -147.437195 61.069210 -2.450565 +v -144.547394 69.527054 2.149014 +v -144.952301 -4.376900 -2.450481 +v -144.364899 -3.347107 -2.450489 +v -151.477692 -2.396210 0.499501 +v -142.073395 -75.309319 1.031094 +v -141.569702 -74.995415 0.815190 +v -147.838806 59.953720 -2.450565 +v -148.760895 -2.396210 0.499501 +v -151.495209 -3.696205 -0.500499 +v -146.979614 58.447426 -2.450557 +v -151.477692 -3.696205 0.499501 +v -147.437195 58.838234 -2.450557 +v -145.097809 70.521492 -0.500583 +v -145.258301 -41.396156 0.499546 +v -146.088806 -41.396156 0.499546 +v -145.258301 -32.396172 0.499539 +v -146.088806 -32.396172 0.499539 +v -145.258301 -51.696144 0.499562 +v -146.088806 -51.696144 0.499562 +v -145.258301 -42.696144 0.499554 +v -146.088806 -42.696144 0.499554 +v -145.258301 -31.096169 0.499539 +v -146.088806 -31.096169 0.499539 +v -145.258301 -19.096191 0.499524 +v -146.088806 -19.096191 0.499524 +v -143.766907 -75.638618 -0.500408 +v -147.225311 -1.715508 0.249501 +v -145.470215 61.590752 -2.450565 +v -147.735413 -2.453407 0.249501 +v -142.924896 13.003777 -0.500515 +v -144.748199 -67.171013 0.549580 +v -146.088806 11.703773 0.499485 +v -146.088806 11.703773 -0.500515 +v -147.735413 -3.639000 0.249501 +v -147.437195 -4.161705 -2.450481 +v -151.477692 -41.396156 0.499546 +v -147.429413 -67.171013 0.549580 +v -146.979614 -4.552505 -2.450481 +v -146.088806 -4.796204 -2.450481 +v -146.088806 69.475876 -0.500583 +v -146.557404 -63.388649 -2.450412 +v -146.392700 -67.769524 0.549580 +v -147.288788 -63.591133 -0.500423 +v -147.438110 -63.709145 -2.450412 +v -147.288788 -63.571739 0.499577 +v -148.195404 -64.278435 0.499577 +v -148.156006 -64.311546 -2.450412 +v -148.624603 -65.123146 -2.450412 +v -145.784912 -67.769524 0.549580 +v -148.787292 -66.046150 -2.450412 +v -148.742889 -65.396141 -0.500423 +v -148.760895 -65.396141 0.499577 +v -148.742889 -66.696129 -0.500423 +v -148.624603 -66.969032 -2.450412 +v -146.088806 -32.396172 -0.500461 +v -148.760895 -66.696129 0.499577 +v -148.156006 -67.780739 -2.450412 +v -148.195404 -67.813820 0.499577 +v -141.266602 25.653755 -0.500530 +v -147.438110 -68.383141 -2.450405 +v -146.557404 -68.703636 -2.450405 +v -147.288788 -68.501015 -0.500415 +v -147.288788 -68.520515 0.499585 +v -142.988800 68.003716 -0.473186 +v -144.704712 68.390442 -0.500583 +v -142.924896 -32.396172 -0.500461 +v -147.288788 11.703773 0.499485 +v -147.288788 11.703773 -0.500515 +v -142.924896 -74.096123 -0.500415 +v -144.153503 -74.269417 0.026082 +v -147.288788 -17.796188 0.499524 +v -151.477692 -17.796188 0.499524 +v -153.579407 72.576546 -4.750576 +v -145.258301 -74.802223 0.499592 +v -151.412109 -78.168526 0.499592 +v -151.477692 -66.696129 0.499577 +v -146.088806 -52.996147 0.499562 +v -147.288788 -78.885017 0.499592 +v -150.577911 -78.868523 0.499592 +v -142.924896 -41.396156 -0.500454 +v -146.088806 -17.796188 0.499524 +v -151.477692 11.703773 0.499485 +v -151.495209 11.703773 -0.500515 +v -147.288788 13.003777 0.499485 +v -151.477692 13.003777 0.499485 +v -147.288788 25.003761 0.499470 +v -151.477692 25.003761 0.499470 +v -141.408905 68.398071 0.786015 +v -147.288788 26.303757 0.499470 +v -151.477692 26.303757 0.499470 +v -147.288788 35.303749 0.499455 +v -151.477692 35.303749 0.499455 +v -147.288788 36.603745 0.499455 +v -151.477692 36.603745 0.499455 +v -147.288788 45.603745 0.499447 +v -144.748199 -67.171028 -2.450412 +v -151.477692 45.603745 0.499447 +v -147.288788 46.903740 0.499447 +v -151.477692 46.903740 0.499447 +v -146.963806 -67.561638 -2.450412 +v -151.495209 -17.796188 -0.500476 +v -144.364899 59.652840 -2.450557 +v -145.784912 -67.769539 -2.450412 +v -147.288788 -17.796188 -0.500476 +v -146.088806 -41.396156 -0.500454 +v -151.461212 71.892807 0.499417 +v -151.477692 -51.696144 0.499562 +v -147.288788 -51.696144 0.499562 +v -151.495209 -51.696144 -0.500438 +v -147.288788 -52.996147 0.499562 +v -151.477692 -52.996147 0.499562 +v -152.044403 -79.185341 -4.750401 +v -151.477692 -65.396141 0.499577 +v -142.924896 -52.996147 -0.500438 +v -145.258301 -52.996147 0.499562 +v -147.288788 -51.696144 -0.500438 +v -142.101196 -75.480919 -0.500408 +v -151.495209 13.003777 -0.500515 +v -151.519592 71.903107 -2.900577 +v -145.218109 -74.774925 -0.500408 +v -144.153992 -74.269615 -0.500415 +v -146.088806 -42.696144 -0.500446 +v -146.088806 -75.568321 -0.500408 +v -146.088806 -75.568321 0.499592 +v -147.288788 -42.696144 -0.500446 +v -147.288788 -42.696144 0.499554 +v -151.495209 -42.696144 -0.500446 +v -142.924896 -42.696144 -0.500446 +v -147.288788 13.003777 -0.500515 +v -151.477692 -42.696144 0.499554 +v -147.288788 25.003761 -0.500530 +v -146.088806 -17.796188 -0.500476 +v -142.924896 59.303726 -0.500568 +v -142.924896 46.903740 -0.500553 +v -151.495209 25.003761 -0.500530 +v -142.924896 -51.696144 -0.500438 +v -151.994904 -79.143837 -2.900402 +v -147.288788 46.903740 -0.500553 +v -146.088806 46.903740 -0.500553 +v -151.495209 45.603745 -0.500553 +v -151.495209 46.903740 -0.500553 +v -147.288788 45.603745 -0.500553 +v -147.288788 36.603745 -0.500545 +v -146.088806 36.603745 -0.500545 +v -151.495209 35.303749 -0.500545 +v -151.495209 36.603745 -0.500545 +v -150.588196 -78.926933 -2.900402 +v -147.288788 35.303749 -0.500545 +v -145.461792 -78.944435 -2.900402 +v -147.288788 26.303757 -0.500530 +v -151.495209 26.303757 -0.500530 +v -146.088806 -19.096191 -0.500476 +v -142.924896 -19.096191 -0.500476 +v -146.088806 -31.096169 -0.500461 +v -142.924896 -31.096169 -0.500461 +v -151.268402 -78.534233 -2.900402 +v -146.088806 -51.696144 -0.500438 +v -151.537109 -77.796135 -2.900402 +v -151.495209 -52.996147 -0.500438 +v -147.288788 -52.996147 -0.500438 +v -146.088806 -52.996147 -0.500438 +v -147.288788 -78.902519 -0.500408 +v -145.566498 -78.902519 -0.500408 +v -151.495209 -66.696129 -0.500423 +v -151.495209 -65.396141 -0.500423 + +f 1195 1196 1197 +f 1349 1195 1197 +f 1348 1349 1197 +f 1394 1348 1197 +f 1351 1394 1197 +f 1351 1393 1394 +f 1393 1235 1394 +f 1351 1235 1393 +f 1196 1235 1351 +f 1402 1235 1196 +f 1212 1402 1196 +f 1244 1212 1196 +f 1244 1196 1383 +f 1244 1383 1219 +f 1244 1219 1404 +f 1307 1244 1404 +f 1307 1404 1322 +f 1321 1307 1322 +f 1445 1321 1322 +f 1592 1445 1322 +f 1592 1322 1567 +f 1302 1592 1567 +f 1302 1567 1303 +f 1301 1302 1303 +f 1301 1303 1290 +f 1240 1301 1290 +f 1240 1290 1241 +f 1239 1240 1241 +f 1239 1241 1298 +f 1369 1239 1298 +f 1369 1298 1349 +f 1275 1239 1369 +f 1248 1275 1369 +f 1248 1369 1348 +f 1235 1248 1348 +f 1235 1238 1248 +f 1238 1254 1248 +f 1254 1238 1275 +f 1238 1342 1275 +f 1342 1341 1275 +f 1341 1574 1275 +f 1275 1574 1240 +f 1341 1561 1574 +f 1561 1419 1574 +f 1419 1405 1574 +f 1405 1429 1574 +f 1429 1613 1574 +f 1613 1302 1574 +f 1611 1302 1613 +f 1530 1611 1613 +f 1619 1530 1613 +f 1620 1619 1613 +f 1614 1620 1613 +f 1564 1614 1613 +f 1582 1564 1613 +f 1452 1582 1613 +f 1267 1452 1613 +f 1229 1267 1613 +f 1434 1229 1613 +f 1556 1434 1613 +f 1464 1556 1613 +f 1232 1464 1613 +f 1538 1232 1613 +f 1573 1538 1613 +f 1590 1573 1613 +f 1606 1590 1613 +f 1600 1606 1613 +f 1601 1600 1613 +f 1595 1601 1613 +f 1596 1595 1613 +f 1593 1595 1596 +f 1553 1593 1596 +f 1554 1553 1596 +f 1554 1596 1429 +f 1449 1554 1429 +f 1386 1449 1429 +f 1388 1386 1429 +f 1386 1388 1382 +f 1368 1386 1382 +f 1377 1368 1382 +f 1377 1382 1467 +f 1465 1377 1467 +f 1293 1465 1467 +f 1343 1293 1467 +f 1343 1467 1462 +f 1344 1343 1462 +f 1344 1462 1455 +f 1453 1344 1455 +f 1453 1455 1454 +f 1294 1453 1454 +f 1271 1294 1454 +f 1483 1271 1454 +f 1483 1454 1354 +f 1356 1483 1354 +f 1283 1356 1354 +f 1284 1283 1354 +f 1355 1284 1354 +f 1423 1355 1354 +f 1418 1355 1423 +f 1414 1418 1423 +f 1455 1414 1423 +f 1455 1410 1414 +f 1410 1408 1414 +f 1408 1416 1414 +f 1416 1408 1561 +f 1396 1408 1410 +f 1462 1396 1410 +f 1462 1389 1396 +f 1389 1395 1396 +f 1395 1400 1396 +f 1400 1395 1405 +f 1395 1388 1405 +f 1388 1395 1389 +f 1400 1408 1396 +f 1400 1419 1408 +f 1416 1418 1414 +f 1418 1416 1342 +f 1416 1340 1342 +f 1340 1416 1341 +f 1355 1418 1342 +f 1495 1355 1342 +f 1237 1495 1342 +f 1468 1495 1237 +f 1236 1468 1237 +f 1235 1236 1237 +f 1236 1381 1468 +f 1381 1427 1468 +f 1427 1520 1468 +f 1263 1520 1427 +f 1519 1520 1263 +f 1264 1519 1263 +f 1262 1264 1263 +f 1261 1262 1263 +f 1381 1261 1263 +f 1381 1456 1261 +f 1261 1456 1543 +f 1456 1378 1543 +f 1378 1391 1543 +f 1391 1461 1543 +f 1461 1304 1543 +f 1543 1304 1223 +f 1222 1543 1223 +f 1222 1223 1224 +f 1222 1224 1264 +f 1224 1589 1264 +f 1589 1588 1264 +f 1588 1375 1264 +f 1588 1379 1375 +f 1375 1379 1376 +f 1375 1376 1371 +f 1370 1375 1371 +f 1370 1371 1364 +f 1363 1370 1364 +f 1363 1364 1356 +f 1364 1358 1356 +f 1370 1363 1519 +f 1363 1283 1519 +f 1283 1285 1519 +f 1371 1358 1364 +f 1557 1358 1371 +f 1557 1270 1358 +f 1270 1357 1358 +f 1358 1357 1483 +f 1357 1270 1271 +f 1270 1216 1271 +f 1216 1215 1271 +f 1215 1292 1271 +f 1292 1215 1288 +f 1293 1292 1288 +f 1292 1293 1294 +f 1288 1215 1217 +f 1286 1288 1217 +f 1385 1286 1217 +f 1380 1385 1217 +f 1380 1217 1557 +f 1380 1557 1376 +f 1217 1216 1557 +f 1384 1385 1380 +f 1379 1384 1380 +f 1384 1390 1385 +f 1390 1384 1589 +f 1431 1390 1589 +f 1431 1589 1594 +f 1432 1431 1594 +f 1432 1594 1359 +f 1403 1432 1359 +f 1403 1359 1287 +f 1390 1403 1287 +f 1390 1287 1286 +f 1287 1359 1360 +f 1287 1360 1288 +f 1288 1360 1465 +f 1360 1367 1465 +f 1360 1362 1367 +f 1362 1366 1367 +f 1366 1368 1367 +f 1366 1554 1368 +f 1593 1366 1362 +f 1359 1593 1362 +f 1359 1362 1360 +f 1594 1593 1359 +f 1594 1597 1593 +f 1431 1432 1403 +f 1589 1597 1594 +f 1297 1597 1589 +f 1260 1297 1589 +f 1260 1296 1297 +f 1296 1446 1297 +f 1446 1599 1297 +f 1599 1598 1297 +f 1599 1350 1598 +f 1350 1603 1598 +f 1598 1603 1600 +f 1603 1546 1600 +f 1546 1547 1600 +f 1547 1545 1600 +f 1546 1545 1547 +f 1544 1545 1546 +f 1544 1546 1605 +f 1544 1605 1606 +f 1545 1544 1606 +f 1605 1546 1603 +f 1407 1605 1603 +f 1319 1605 1407 +f 1365 1319 1407 +f 1406 1365 1407 +f 1448 1406 1407 +f 1448 1407 1350 +f 1318 1448 1350 +f 1514 1318 1350 +f 1223 1514 1350 +f 1223 1305 1514 +f 1305 1485 1514 +f 1485 1451 1514 +f 1451 1278 1514 +f 1514 1278 1605 +f 1278 1586 1605 +f 1605 1586 1590 +f 1586 1541 1590 +f 1541 1542 1590 +f 1542 1540 1590 +f 1541 1540 1542 +f 1539 1540 1541 +f 1539 1541 1584 +f 1539 1584 1573 +f 1584 1523 1573 +f 1488 1523 1584 +f 1277 1488 1584 +f 1277 1584 1586 +f 1347 1488 1277 +f 1485 1347 1277 +f 1441 1485 1277 +f 1276 1441 1277 +f 1276 1277 1278 +f 1443 1276 1278 +f 1442 1276 1443 +f 1442 1443 1451 +f 1441 1442 1451 +f 1441 1276 1442 +f 1347 1487 1488 +f 1487 1425 1488 +f 1425 1199 1488 +f 1425 1372 1199 +f 1199 1372 1374 +f 1200 1199 1374 +f 1338 1200 1374 +f 1274 1338 1374 +f 1373 1274 1374 +f 1312 1274 1373 +f 1352 1312 1373 +f 1372 1352 1373 +f 1352 1372 1347 +f 1346 1352 1347 +f 1345 1346 1347 +f 1305 1345 1347 +f 1305 1411 1345 +f 1345 1411 1353 +f 1345 1353 1311 +f 1353 1272 1311 +f 1311 1272 1312 +f 1346 1311 1312 +f 1353 1458 1272 +f 1458 1211 1272 +f 1211 1273 1272 +f 1272 1273 1274 +f 1273 1337 1274 +f 1273 1210 1337 +f 1210 1250 1337 +f 1337 1250 1338 +f 1250 1482 1338 +f 1482 1328 1338 +f 1338 1328 1300 +f 1328 1330 1300 +f 1330 1424 1300 +f 1424 1299 1300 +f 1299 1198 1300 +f 1300 1198 1200 +f 1299 1522 1198 +f 1198 1522 1523 +f 1199 1198 1523 +f 1523 1522 1538 +f 1522 1537 1538 +f 1522 1299 1537 +f 1299 1424 1537 +f 1424 1459 1537 +f 1537 1459 1232 +f 1459 1230 1232 +f 1230 1231 1232 +f 1231 1230 1397 +f 1415 1231 1397 +f 1415 1397 1490 +f 1422 1415 1490 +f 1493 1422 1490 +f 1249 1493 1490 +f 1489 1249 1490 +f 1489 1490 1329 +f 1484 1489 1329 +f 1484 1329 1328 +f 1489 1484 1250 +f 1249 1489 1250 +f 1249 1494 1493 +f 1494 1428 1493 +f 1439 1428 1494 +f 1438 1439 1494 +f 1426 1438 1494 +f 1426 1494 1457 +f 1420 1426 1457 +f 1412 1420 1457 +f 1412 1457 1458 +f 1207 1420 1412 +f 1411 1207 1412 +f 1207 1411 1208 +f 1206 1207 1208 +f 1206 1208 1305 +f 1399 1206 1305 +f 1304 1399 1305 +f 1304 1398 1399 +f 1398 1535 1399 +f 1535 1521 1399 +f 1521 1510 1399 +f 1399 1510 1228 +f 1609 1399 1228 +f 1609 1228 1607 +f 1478 1609 1607 +f 1480 1478 1607 +f 1608 1480 1607 +f 1608 1607 1587 +f 1206 1608 1587 +f 1255 1206 1587 +f 1536 1255 1587 +f 1536 1587 1444 +f 1450 1536 1444 +f 1253 1450 1444 +f 1253 1444 1438 +f 1255 1450 1253 +f 1587 1559 1444 +f 1444 1559 1436 +f 1444 1436 1439 +f 1559 1435 1436 +f 1436 1435 1428 +f 1435 1421 1428 +f 1428 1421 1422 +f 1435 1527 1421 +f 1421 1527 1466 +f 1417 1421 1466 +f 1417 1466 1464 +f 1231 1417 1464 +f 1421 1417 1415 +f 1466 1527 1464 +f 1526 1527 1435 +f 1527 1526 1556 +f 1526 1559 1556 +f 1559 1282 1556 +f 1607 1282 1559 +f 1526 1435 1559 +f 1255 1536 1450 +f 1255 1253 1206 +f 1253 1225 1206 +f 1225 1253 1426 +f 1587 1607 1559 +f 1479 1480 1608 +f 1477 1479 1608 +f 1610 1477 1608 +f 1399 1610 1608 +f 1478 1477 1610 +f 1477 1478 1479 +f 1479 1478 1480 +f 1478 1610 1609 +f 1607 1228 1282 +f 1228 1281 1282 +f 1282 1281 1434 +f 1281 1433 1434 +f 1433 1440 1434 +f 1281 1440 1433 +f 1227 1440 1281 +f 1440 1227 1229 +f 1227 1228 1229 +f 1227 1281 1228 +f 1610 1399 1609 +f 1510 1265 1228 +f 1228 1265 1267 +f 1265 1266 1267 +f 1266 1316 1267 +f 1316 1491 1267 +f 1361 1491 1316 +f 1491 1361 1452 +f 1361 1409 1452 +f 1409 1361 1265 +f 1266 1361 1316 +f 1361 1266 1265 +f 1510 1409 1265 +f 1560 1409 1510 +f 1472 1560 1510 +f 1471 1472 1510 +f 1471 1470 1472 +f 1469 1470 1471 +f 1469 1471 1521 +f 1470 1469 1535 +f 1470 1535 1560 +f 1472 1470 1560 +f 1560 1582 1409 +f 1398 1582 1560 +f 1398 1577 1582 +f 1577 1580 1582 +f 1580 1581 1582 +f 1581 1585 1582 +f 1585 1562 1582 +f 1563 1562 1585 +f 1562 1563 1564 +f 1563 1571 1564 +f 1571 1563 1580 +f 1581 1563 1585 +f 1563 1581 1580 +f 1577 1571 1580 +f 1612 1571 1577 +f 1476 1612 1577 +f 1475 1476 1577 +f 1583 1475 1577 +f 1473 1475 1583 +f 1591 1473 1583 +f 1591 1583 1398 +f 1569 1591 1398 +f 1413 1569 1398 +f 1413 1524 1569 +f 1524 1242 1569 +f 1242 1226 1569 +f 1226 1202 1569 +f 1202 1570 1569 +f 1569 1570 1616 +f 1570 1532 1616 +f 1532 1204 1616 +f 1616 1204 1615 +f 1616 1615 1612 +f 1591 1616 1612 +f 1474 1591 1612 +f 1204 1498 1615 +f 1498 1500 1615 +f 1500 1565 1615 +f 1615 1565 1614 +f 1615 1614 1571 +f 1565 1566 1614 +f 1565 1500 1566 +f 1500 1501 1566 +f 1501 1568 1566 +f 1566 1568 1620 +f 1568 1507 1620 +f 1507 1506 1620 +f 1506 1507 1503 +f 1505 1506 1503 +f 1320 1505 1503 +f 1320 1503 1502 +f 1320 1502 1499 +f 1310 1320 1499 +f 1310 1499 1496 +f 1310 1496 1203 +f 1308 1310 1203 +f 1205 1308 1203 +f 1202 1205 1203 +f 1201 1202 1203 +f 1204 1201 1203 +f 1202 1218 1205 +f 1218 1324 1205 +f 1335 1324 1218 +f 1233 1335 1218 +f 1226 1233 1218 +f 1243 1335 1233 +f 1242 1243 1233 +f 1242 1251 1243 +f 1251 1252 1243 +f 1252 1551 1243 +f 1252 1257 1551 +f 1257 1558 1551 +f 1558 1504 1551 +f 1504 1486 1551 +f 1551 1486 1335 +f 1486 1334 1335 +f 1334 1486 1323 +f 1334 1323 1324 +f 1324 1323 1308 +f 1323 1309 1308 +f 1323 1486 1309 +f 1486 1313 1309 +f 1309 1313 1310 +f 1486 1333 1313 +f 1313 1333 1320 +f 1333 1336 1320 +f 1336 1339 1320 +f 1336 1492 1339 +f 1492 1555 1339 +f 1555 1512 1339 +f 1512 1509 1339 +f 1339 1509 1505 +f 1509 1508 1505 +f 1511 1508 1509 +f 1508 1511 1619 +f 1508 1619 1506 +f 1511 1531 1619 +f 1511 1513 1531 +f 1513 1530 1531 +f 1518 1530 1513 +f 1518 1513 1515 +f 1517 1518 1515 +f 1516 1517 1515 +f 1516 1515 1555 +f 1280 1516 1555 +f 1280 1555 1558 +f 1269 1280 1558 +f 1279 1280 1269 +f 1268 1279 1269 +f 1268 1269 1257 +f 1256 1268 1257 +f 1268 1256 1524 +f 1256 1251 1524 +f 1279 1268 1524 +f 1525 1279 1524 +f 1525 1524 1576 +f 1575 1525 1576 +f 1481 1575 1576 +f 1572 1481 1576 +f 1572 1460 1481 +f 1460 1391 1481 +f 1391 1392 1481 +f 1461 1460 1572 +f 1461 1572 1413 +f 1481 1392 1575 +f 1392 1578 1575 +f 1578 1529 1575 +f 1579 1529 1578 +f 1579 1578 1295 +f 1291 1579 1295 +f 1291 1295 1280 +f 1578 1617 1295 +f 1295 1617 1517 +f 1214 1617 1578 +f 1315 1214 1578 +f 1212 1214 1315 +f 1378 1212 1315 +f 1378 1315 1392 +f 1212 1213 1214 +f 1213 1618 1214 +f 1213 1326 1618 +f 1618 1326 1604 +f 1617 1618 1604 +f 1617 1604 1602 +f 1533 1617 1602 +f 1534 1533 1602 +f 1534 1602 1611 +f 1602 1445 1611 +f 1387 1445 1602 +f 1325 1387 1602 +f 1387 1325 1327 +f 1387 1327 1321 +f 1327 1306 1321 +f 1430 1306 1327 +f 1326 1430 1327 +f 1326 1331 1430 +f 1331 1306 1430 +f 1331 1245 1306 +f 1306 1245 1307 +f 1245 1331 1213 +f 1244 1245 1213 +f 1325 1326 1327 +f 1533 1534 1518 +f 1533 1518 1617 +f 1604 1325 1602 +f 1326 1325 1604 +f 1331 1326 1213 +f 1618 1617 1214 +f 1529 1579 1291 +f 1529 1291 1279 +f 1392 1315 1578 +f 1529 1525 1575 +f 1524 1572 1576 +f 1529 1279 1525 +f 1279 1291 1280 +f 1555 1497 1558 +f 1280 1295 1516 +f 1295 1517 1516 +f 1617 1518 1517 +f 1515 1513 1512 +f 1534 1530 1518 +f 1513 1511 1512 +f 1512 1511 1509 +f 1515 1512 1555 +f 1492 1497 1555 +f 1497 1492 1333 +f 1504 1497 1333 +f 1492 1336 1333 +f 1486 1504 1333 +f 1497 1504 1558 +f 1257 1269 1558 +f 1256 1257 1252 +f 1251 1256 1252 +f 1243 1551 1335 +f 1335 1334 1324 +f 1324 1308 1205 +f 1308 1309 1310 +f 1496 1204 1203 +f 1499 1498 1496 +f 1313 1320 1310 +f 1502 1501 1499 +f 1503 1501 1502 +f 1339 1505 1320 +f 1508 1506 1505 +f 1507 1501 1503 +f 1507 1568 1501 +f 1501 1500 1499 +f 1500 1498 1499 +f 1498 1204 1496 +f 1532 1201 1204 +f 1570 1201 1532 +f 1202 1201 1570 +f 1202 1226 1218 +f 1226 1242 1233 +f 1251 1242 1524 +f 1413 1572 1524 +f 1569 1616 1591 +f 1474 1473 1591 +f 1473 1474 1475 +f 1475 1474 1476 +f 1476 1474 1612 +f 1612 1615 1571 +f 1583 1577 1398 +f 1521 1471 1510 +f 1535 1469 1521 +f 1535 1398 1560 +f 1304 1413 1398 +f 1399 1608 1206 +f 1225 1207 1206 +f 1207 1225 1420 +f 1225 1426 1420 +f 1494 1209 1457 +f 1209 1211 1457 +f 1209 1210 1211 +f 1210 1209 1494 +f 1253 1438 1426 +f 1444 1439 1438 +f 1439 1436 1428 +f 1249 1210 1494 +f 1428 1422 1493 +f 1422 1421 1415 +f 1490 1397 1329 +f 1329 1397 1332 +f 1329 1332 1330 +f 1417 1231 1415 +f 1397 1230 1332 +f 1230 1463 1332 +f 1463 1424 1332 +f 1459 1463 1230 +f 1463 1459 1424 +f 1332 1424 1330 +f 1328 1329 1330 +f 1482 1484 1328 +f 1484 1482 1250 +f 1210 1249 1250 +f 1211 1210 1273 +f 1457 1211 1458 +f 1412 1458 1353 +f 1411 1412 1353 +f 1208 1411 1305 +f 1346 1345 1311 +f 1372 1401 1347 +f 1401 1372 1487 +f 1352 1346 1312 +f 1272 1274 1312 +f 1274 1337 1338 +f 1338 1300 1200 +f 1198 1199 1200 +f 1372 1373 1374 +f 1372 1425 1487 +f 1401 1487 1347 +f 1488 1199 1523 +f 1540 1539 1573 +f 1584 1541 1586 +f 1278 1277 1586 +f 1451 1443 1278 +f 1485 1441 1451 +f 1305 1347 1485 +f 1318 1514 1319 +f 1317 1318 1319 +f 1317 1447 1318 +f 1447 1317 1406 +f 1318 1447 1448 +f 1447 1406 1448 +f 1317 1365 1406 +f 1365 1317 1319 +f 1319 1514 1605 +f 1407 1603 1350 +f 1258 1350 1599 +f 1314 1258 1599 +f 1314 1259 1258 +f 1258 1259 1260 +f 1259 1314 1296 +f 1350 1258 1260 +f 1350 1260 1224 +f 1446 1314 1599 +f 1314 1446 1296 +f 1259 1296 1260 +f 1297 1598 1597 +f 1598 1550 1597 +f 1597 1550 1595 +f 1550 1552 1595 +f 1550 1549 1552 +f 1552 1549 1601 +f 1549 1548 1601 +f 1548 1598 1601 +f 1548 1549 1550 +f 1548 1550 1598 +f 1431 1403 1390 +f 1390 1286 1385 +f 1286 1287 1288 +f 1215 1216 1217 +f 1216 1270 1557 +f 1375 1370 1519 +f 1376 1557 1371 +f 1379 1380 1376 +f 1384 1379 1588 +f 1589 1384 1588 +f 1260 1589 1224 +f 1223 1350 1224 +f 1222 1262 1543 +f 1223 1304 1305 +f 1304 1461 1413 +f 1391 1460 1461 +f 1391 1378 1392 +f 1402 1378 1456 +f 1402 1456 1381 +f 1262 1261 1543 +f 1262 1222 1264 +f 1375 1519 1264 +f 1519 1285 1520 +f 1285 1289 1520 +f 1520 1289 1495 +f 1285 1284 1289 +f 1381 1263 1427 +f 1236 1402 1381 +f 1520 1495 1468 +f 1289 1355 1495 +f 1289 1284 1355 +f 1283 1284 1285 +f 1283 1363 1356 +f 1358 1483 1356 +f 1454 1423 1354 +f 1357 1271 1483 +f 1271 1292 1294 +f 1454 1455 1423 +f 1344 1453 1294 +f 1455 1462 1410 +f 1343 1344 1294 +f 1467 1389 1462 +f 1293 1343 1294 +f 1293 1288 1465 +f 1367 1377 1465 +f 1382 1389 1467 +f 1367 1368 1377 +f 1382 1388 1389 +f 1386 1368 1449 +f 1368 1554 1449 +f 1553 1554 1366 +f 1553 1366 1593 +f 1597 1595 1593 +f 1552 1601 1595 +f 1598 1600 1601 +f 1545 1606 1600 +f 1605 1590 1606 +f 1540 1573 1590 +f 1523 1538 1573 +f 1537 1232 1538 +f 1231 1464 1232 +f 1527 1556 1464 +f 1282 1434 1556 +f 1440 1229 1434 +f 1228 1267 1229 +f 1491 1452 1267 +f 1409 1582 1452 +f 1562 1564 1582 +f 1571 1614 1564 +f 1566 1620 1614 +f 1506 1619 1620 +f 1531 1530 1619 +f 1530 1534 1611 +f 1429 1596 1613 +f 1388 1429 1405 +f 1419 1400 1405 +f 1408 1419 1561 +f 1416 1561 1341 +f 1340 1341 1342 +f 1238 1237 1342 +f 1235 1237 1238 +f 1254 1275 1248 +f 1298 1241 1437 +f 1298 1437 1195 +f 1437 1383 1195 +f 1246 1383 1437 +f 1528 1246 1437 +f 1247 1246 1528 +f 1221 1247 1528 +f 1290 1221 1528 +f 1220 1247 1221 +f 1219 1220 1221 +f 1234 1219 1221 +f 1234 1221 1303 +f 1220 1219 1246 +f 1220 1246 1247 +f 1241 1528 1437 +f 1275 1240 1239 +f 1290 1528 1241 +f 1574 1301 1240 +f 1303 1221 1290 +f 1574 1302 1301 +f 1567 1234 1303 +f 1404 1234 1567 +f 1592 1302 1611 +f 1445 1592 1611 +f 1445 1387 1321 +f 1306 1307 1321 +f 1322 1404 1567 +f 1245 1244 1307 +f 1404 1219 1234 +f 1219 1383 1246 +f 1244 1213 1212 +f 1212 1378 1402 +f 1235 1402 1236 +f 1235 1348 1394 +f 1348 1369 1349 +f 1349 1298 1195 +f 1196 1351 1197 +f 1383 1196 1195 + + +o Object.4 +v 147.288788 55.928806 -3.000560 +v 147.288788 46.903736 -3.000545 +v 147.850800 56.141174 -3.000560 +v 150.188797 46.903736 -3.000545 +v 148.855804 56.793976 -3.000560 +v 145.543701 0.044991 -1.000499 +v 144.669296 -0.587608 -1.300502 +v 145.595795 -0.250412 -1.300502 +v 144.519287 -0.327812 -1.000499 +v 152.309204 -78.134727 -3.000400 +v 152.077606 -78.771141 -3.000400 +v 152.278595 -78.484032 -4.750401 +v 151.254791 72.203705 -3.000576 +v 151.882599 72.957146 -3.000583 +v 151.363800 73.392456 -3.000583 +v 143.914093 -1.221413 -1.300502 +v 143.684296 -1.028511 -1.000499 +v 149.666702 57.744953 -3.000560 +v 150.084808 57.770443 -3.000560 +v 143.421097 -2.075211 -1.300502 +v 143.139175 -1.972610 -1.000499 +v 143.907990 -67.876030 -2.550418 +v 144.665405 -68.511528 -2.550411 +v 145.263794 -67.475029 -2.550418 +v 143.760406 -75.659416 -1.000408 +v 141.901688 -75.431313 -1.000408 +v 142.683044 -75.701332 -4.690197 +v 143.249878 -3.046204 -1.300502 +v 142.949875 -3.046204 -1.000499 +v 147.512207 -68.511528 -2.550411 +v 148.269592 -67.876030 -2.550418 +v 147.352798 -67.106728 -2.550418 +v 152.309204 72.042328 -3.000576 +v 143.421097 -4.017204 -1.300502 +v 143.139175 -4.119804 -1.000492 +v 145.802307 61.578651 -2.550571 +v 146.375305 61.578651 -2.550571 +v 146.583099 62.757259 -2.550571 +v 147.512207 62.419109 -2.550571 +v 143.914093 -4.871002 -1.300495 +v 143.684296 -5.063904 -1.000492 +v 147.288788 63.978638 -3.000568 +v 150.188797 71.503708 -3.000576 +v 147.288788 71.503708 -3.000576 +v 145.493896 -69.164940 -4.750408 +v 144.472595 -68.778938 -4.750408 +v 144.669296 -5.504807 -1.300495 +v 144.519287 -5.764603 -1.000492 +v 147.288788 17.003777 -1.000522 +v 147.288788 17.003777 -3.000515 +v 147.288788 25.003761 -3.000522 +v 146.088806 57.106945 -2.550563 +v 146.586899 57.128704 -1.300571 +v 146.583099 57.150185 -2.550563 +v 145.595795 -5.842003 -1.300495 +v 146.088806 -6.185104 -1.000492 +v 147.523102 57.469444 -1.300571 +v 147.512207 57.488335 -2.550563 +v 146.581787 -5.842003 -1.300495 +v 144.669296 -5.504807 -2.550487 +v 145.595795 -5.842003 -2.550487 +v 146.088806 -4.696205 -2.550487 +v 148.286301 58.109825 -1.300571 +v 148.269592 58.123844 -2.550563 +v 146.581787 -0.250412 -1.300502 +v 146.581787 -0.250412 -2.550495 +v 145.595795 -0.250412 -2.550495 +v 144.669296 -0.587608 -2.550495 +v 147.508301 -0.587608 -2.550495 +v 148.784393 58.972603 -1.300571 +v 148.763901 58.980064 -2.550563 +v 148.957397 59.953720 -1.300579 +v 148.935608 59.953720 -2.550571 +v 147.508301 -0.587608 -1.300502 +v 143.914093 -1.221413 -2.550495 +v 148.263596 -1.221413 -2.550495 +v 148.784393 60.934841 -1.300579 +v 148.763901 60.927380 -2.550571 +v 148.286301 61.797630 -1.300579 +v 148.263596 -1.221413 -1.300502 +v 148.269592 61.783600 -2.550571 +v 143.421097 -2.075211 -2.550495 +v 148.756500 -2.075211 -2.550495 +v 147.523102 62.438011 -1.300579 +v 146.586899 62.778736 -1.300579 +v 148.756500 -2.075211 -1.300502 +v 143.249878 -3.046204 -2.550495 +v 148.927704 -3.046204 -2.550495 +v 145.202393 62.681931 -1.300579 +v 145.620209 62.761677 -2.550571 +v 142.888809 -21.896187 -3.000469 +v 146.088806 -21.896187 -3.000469 +v 146.088806 -12.896194 -3.000476 +v 148.927704 -3.046204 -1.300502 +v 142.888809 -12.896194 -3.000476 +v 142.921509 0.258492 -1.000499 +v 143.230682 0.097687 -3.000492 +v 142.921509 0.258492 -3.000492 +v 142.914978 59.953720 -1.000576 +v 143.461792 58.801414 -1.300571 +v 143.229996 59.716831 -1.300571 +v 144.538300 -65.481850 -2.550418 +v 144.824799 -64.985542 -2.550418 +v 143.413696 -65.072456 -2.550418 +v 143.340195 58.366806 -1.000568 +v 142.888809 6.803780 -3.000499 +v 146.088806 6.803780 -3.000499 +v 146.088806 15.803787 -3.000515 +v 142.888809 15.803787 -3.000515 +v 142.888809 17.003777 -3.000515 +v 146.088806 17.003777 -3.000515 +v 142.888809 25.003761 -3.000522 +v 143.978302 58.010876 -1.300571 +v 146.088806 25.003761 -3.000522 +v 146.581787 -5.842003 -2.550487 +v 147.508301 -5.504807 -2.550487 +v 146.913788 -4.475105 -2.550487 +v 150.188797 17.003777 -3.000515 +v 150.188797 25.003761 -3.000522 +v 144.048706 57.522423 -1.000568 +v 144.723495 57.430862 -1.300571 +v 149.896301 -0.935707 -3.000492 +v 149.896301 -0.935707 -1.000499 +v 150.043091 -0.893112 -3.000492 +v 147.288788 6.803780 -3.000499 +v 150.188797 6.803780 -3.000499 +v 150.188797 15.803787 -3.000515 +v 147.288788 15.803787 -3.000515 +v 147.288788 -21.896187 -3.000469 +v 150.188797 -21.896187 -3.000469 +v 150.188797 -12.896194 -3.000476 +v 145.003296 56.971294 -1.000568 +v 145.590698 57.128704 -1.300571 +v 147.352798 -64.985542 -2.550418 +v 148.763901 -65.072456 -2.550418 +v 148.269592 -64.216255 -2.550418 +v 147.288788 -12.896194 -3.000476 +v 150.188797 -31.096184 -3.000454 +v 150.188797 -23.096191 -3.000469 +v 147.288788 -23.096191 -3.000469 +v 146.088806 56.779884 -1.000568 +v 147.288788 -31.096184 -3.000454 +v 145.263794 -4.475105 -2.550487 +v 145.537689 -62.920540 -1.000423 +v 144.654495 -63.561836 -1.300426 +v 145.590698 -63.221138 -1.300426 +v 144.501892 -63.297539 -1.000423 +v 148.376709 63.475895 -3.000568 +v 150.118591 62.171280 -3.000568 +v 143.891296 -64.202232 -1.300426 +v 143.657501 -64.006035 -1.000423 +v 146.088806 -4.696205 -2.925487 +v 143.393188 -65.065041 -1.300426 +v 143.106384 -64.960640 -1.000423 +v 146.913788 -4.475105 -2.925487 +v 143.220215 -66.046135 -1.300426 +v 142.914978 -66.046135 -1.000423 +v 145.263794 -4.475105 -2.925487 +v 149.790100 62.080811 -3.000568 +v 143.393188 -67.027214 -1.300426 +v 143.106384 -67.131615 -1.000423 +v 145.351196 -77.719734 -4.750401 +v 144.918793 -76.682838 -4.750401 +v 146.088806 -69.221138 -4.750408 +v 147.288788 25.003761 -1.000530 +v 143.891296 -67.890022 -1.300426 +v 143.657501 -68.086220 -1.000423 +v 144.824799 -4.106804 -2.550487 +v 150.188797 6.803780 -1.000507 +v 150.188797 15.803787 -1.000522 +v 144.654495 -68.530418 -1.300418 +v 144.501892 -68.794716 -1.000415 +v 147.352798 -4.106804 -2.550487 +v 147.352798 -4.106804 -2.925487 +v 145.590698 -68.871117 -1.300418 +v 146.088806 -69.219917 -1.000415 +v 144.824799 -4.106804 -2.925487 +v 150.738007 -79.776634 -4.750401 +v 146.586899 -68.871117 -1.300418 +v 150.188797 25.003761 -1.000530 +v 144.538300 -3.610504 -2.550495 +v 147.639297 -3.610504 -2.550495 +v 147.639297 -3.610504 -2.925495 +v 146.375305 -1.421310 -2.550495 +v 145.802307 -1.421310 -2.925495 +v 146.375305 -1.421310 -2.925495 +v 145.802307 -1.421310 -2.550495 +v 149.263794 -3.046204 -4.750492 +v 148.838409 58.366219 -4.750560 +v 149.215607 59.402386 -4.750560 +v 146.913788 -1.617310 -2.925495 +v 146.913788 -1.617310 -2.550495 +v 145.263794 -1.617310 -2.925495 +v 144.538300 -3.610504 -2.925495 +v 149.263397 -2.996300 -4.750492 +v 145.263794 -1.617310 -2.550495 +v 144.515701 -0.288307 -4.750492 +v 143.674500 -0.984207 -4.750492 +v 143.170227 58.703720 -4.750560 +v 147.352798 -1.985611 -2.925495 +v 147.352798 -1.985611 -2.550495 +v 144.384003 -76.152931 -4.750401 +v 144.824799 -1.985611 -2.925495 +v 148.838409 61.541218 -4.750568 +v 148.129700 62.385906 -4.750568 +v 152.399902 71.703705 -4.750576 +v 152.399902 -77.796135 -4.750401 +v 144.824799 -1.985611 -2.550495 +v 143.642395 57.929901 -4.750560 +v 147.639297 -2.481911 -2.925495 +v 147.639297 -2.481911 -2.550495 +v 144.438797 -3.046204 -2.550495 +v 144.538300 -2.481911 -2.925495 +v 143.355988 -1.430008 -4.750492 +v 142.960541 -2.503510 -4.739491 +v 144.538300 -2.481911 -2.550495 +v 143.413696 -67.019737 -2.550418 +v 144.824799 -67.106728 -2.550418 +v 147.738800 -3.046204 -2.925495 +v 147.738800 -3.046204 -2.550495 +v 142.888809 46.903736 -3.000545 +v 143.252411 56.805973 -3.000560 +v 142.892746 56.561245 -3.000560 +v 144.438797 -3.046204 -2.925495 +v 150.188797 5.603783 -3.000499 +v 144.927597 55.917439 -3.000560 +v 144.733902 62.457390 -2.550571 +v 141.353607 -74.883217 -1.000408 +v 141.249802 -74.503822 -1.000415 +v 141.171127 -74.511330 -2.810398 +v 143.914093 -4.871002 -2.550487 +v 144.402695 62.274471 -1.300579 +v 143.994400 61.881790 -2.550571 +v 143.907990 -64.216255 -2.550418 +v 148.376709 0.475990 -3.000492 +v 143.710907 -75.815529 -4.750401 +v 151.929398 -79.088829 -4.750401 +v 143.687302 61.522701 -1.300579 +v 143.481796 61.097260 -2.550571 +v 147.288788 0.978691 -3.000492 +v 151.394409 -79.537834 -4.750401 +v 147.174698 -69.029640 -4.750408 +v 148.263596 -4.871002 -2.550487 +v 143.360596 60.840172 -1.300579 +v 143.251740 60.188801 -2.550571 +v 151.076691 73.593536 -4.750584 +v 145.354599 71.649536 -4.750576 +v 145.380997 73.714813 -4.750584 +v 147.288788 5.603783 -3.000499 +v 146.088806 -67.696129 -2.550418 +v 143.329102 59.254875 -2.550563 +v 141.579819 -75.205116 -1.000408 +v 141.358948 -75.117638 -3.598499 +v 147.676300 -0.296608 -4.450489 +v 146.640106 0.080589 -4.450489 +v 143.705597 58.396675 -2.550563 +v 142.888809 -31.096184 -3.000454 +v 146.088806 -31.096184 -3.000454 +v 146.088806 -23.096191 -3.000469 +v 145.457397 73.653702 -3.000583 +v 150.727402 73.624084 -3.000583 +v 144.340302 57.707214 -2.550563 +v 141.835876 -75.556633 -4.240200 +v 142.683044 69.608887 -4.690372 +v 141.996887 69.533951 -4.370274 +v 145.164490 57.261185 -2.550563 +v 142.913818 -66.046150 -4.733913 +v 151.642197 -79.289940 -3.000400 +v 146.913788 -64.617256 -2.550418 +v 144.824799 61.014320 -2.550571 +v 145.263794 61.382660 -2.550571 +v 145.217987 68.682503 -3.000576 +v 146.088806 64.153717 -3.000568 +v 146.088806 69.475876 -3.000576 +v 144.153992 68.177170 -3.000576 +v 141.190552 68.593964 -3.034977 +v 142.913818 -3.046204 -4.733989 +v 146.583099 -68.849632 -2.550411 +v 146.913788 -67.475029 -2.550418 +v 142.888809 -23.096191 -3.000469 +v 142.913818 59.953716 -4.734066 +v 150.038788 62.104301 -1.000576 +v 145.594498 -68.849632 -2.550411 +v 148.520996 -64.005348 -4.750415 +v 147.676300 -63.296547 -4.750415 +v 141.244720 -42.046150 -1.000454 +v 141.244720 -22.496185 -1.000476 +v 149.888794 62.064110 -1.000576 +v 150.727402 -79.716530 -3.000400 +v 150.188797 17.003777 -1.000522 +v 145.263794 -64.617256 -2.550418 +v 146.088806 25.003761 -1.000530 +v 144.927597 63.990005 -3.000568 +v 143.242020 -66.046150 -2.550418 +v 144.438797 -66.046150 -2.550418 +v 147.512207 -63.580757 -2.550418 +v 144.665405 -63.580757 -2.550418 +v 141.244720 35.953751 -1.000545 +v 141.249802 68.411385 -1.000583 +v 150.043091 -0.893112 -1.000499 +v 141.244720 16.403770 -1.000522 +v 146.640106 56.826950 -4.450557 +v 146.088806 58.303722 -2.925563 +v 147.676300 57.204090 -4.450557 +v 147.523102 -68.530418 -1.300418 +v 146.375305 -64.421257 -2.550418 +v 142.888809 68.003708 -3.000576 +v 141.244720 0.093689 -1.000499 +v 145.493896 63.072472 -4.750568 +v 144.472595 62.686577 -4.750568 +v 142.988983 69.611160 -4.742374 +v 145.802307 -64.421257 -2.550418 +v 146.088806 55.753727 -3.000560 +v 141.260712 68.833786 -3.345378 +v 141.608246 69.311752 -3.999675 +v 149.888794 -63.935753 -3.000415 +v 150.038788 -63.895531 -1.000423 +v 150.170700 -63.738350 -3.000415 +v 148.286301 -67.890022 -1.300426 +v 142.961105 -66.592155 -4.739513 +v 146.913788 61.382660 -2.550571 +v 141.452789 68.961563 -1.000583 +v 146.640106 -62.919350 -4.750415 +v 146.640106 -62.919350 -4.450412 +v 145.493896 -62.927345 -4.750415 +v 150.730804 72.643394 -3.000576 +v 149.888794 -63.935738 -1.000423 +v 151.388794 71.703705 -3.000576 +v 148.784393 -67.027214 -1.300426 +v 148.763901 -67.019737 -2.550418 +v 144.927597 0.990089 -3.000492 +v 146.088806 1.153786 -3.000492 +v 146.088806 5.603783 -3.000499 +v 147.676300 -63.296547 -4.450412 +v 145.594498 -63.242653 -2.550418 +v 143.188812 63.094646 -3.000568 +v 151.388794 -77.796135 -3.000400 +v 141.730957 69.239746 -1.000583 +v 143.012482 63.151947 -3.000568 +v 142.086914 69.407242 -1.000583 +v 147.352798 61.014320 -2.550571 +v 149.263794 -66.046150 -4.750415 +v 149.072296 -64.960243 -4.750415 +v 144.538300 60.518051 -2.550571 +v 150.084808 57.770443 -1.000568 +v 149.747589 57.807995 -1.000568 +v 147.288788 15.803787 -1.000522 +v 146.913788 58.524784 -2.925563 +v 146.583099 -63.242653 -2.550418 +v 143.421097 -4.017204 -2.550495 +v 142.888809 5.603783 -3.000499 +v 143.390991 69.479630 -1.000583 +v 144.080902 69.875328 -4.750576 +v 148.957397 -66.046135 -1.300426 +v 148.935608 -66.046150 -2.550418 +v 148.756500 -4.017204 -2.550495 +v 145.537506 0.080589 -4.450489 +v 144.498901 69.941612 -1.000583 +v 144.688293 70.320168 -4.750576 +v 144.501297 -0.296608 -4.450489 +v 148.520996 57.912872 -4.450557 +v 143.656601 -1.005310 -4.450489 +v 145.065094 70.513092 -1.000583 +v 147.352798 58.893124 -2.925563 +v 145.127396 70.931755 -4.750576 +v 143.105286 -1.960312 -4.450489 +v 148.784393 -65.065041 -1.300426 +v 145.425507 71.232239 -1.000583 +v 149.072296 58.867809 -4.450557 +v 142.913818 -3.046204 -4.450489 +v 148.520996 -1.005310 -4.450489 +v 143.118774 -4.168503 -4.450481 +v 146.688797 72.668800 -1.000583 +v 150.871399 72.539497 -1.000583 +v 145.457397 72.703705 -3.000583 +v 147.639297 59.389393 -2.925563 +v 143.674500 -5.108200 -4.450481 +v 145.544708 72.668800 -1.000583 +v 148.286301 -64.202232 -1.300426 +v 148.520996 -64.005348 -4.450412 +v 144.515701 -5.804100 -4.450481 +v 149.263794 59.953716 -4.450565 +v 147.523102 -63.561836 -1.300426 +v 151.353897 -66.046135 -1.000423 +v 151.224609 -78.278618 -1.000408 +v 147.738800 59.953720 -2.925571 +v 145.537506 -6.173004 -4.450481 +v 151.353897 -52.346153 -1.000438 +v 145.457397 -78.796135 -3.000400 +v 145.512909 -77.693916 -1.000408 +v 151.353897 -42.046150 -1.000454 +v 151.353897 -31.746162 -1.000461 +v 145.493896 -62.927345 -4.450412 +v 151.353897 -22.496185 -1.000476 +v 144.472595 -63.313255 -4.450412 +v 144.472595 -63.313255 -4.750415 +v 151.353897 -3.046204 -1.000499 +v 147.639297 -65.481850 -2.550418 +v 143.642395 -64.022346 -4.450412 +v 143.642395 -64.022346 -4.750415 +v 149.072296 61.039627 -4.450565 +v 151.353897 6.203781 -1.000507 +v 147.639297 60.518051 -2.925571 +v 143.101501 -64.970650 -4.450412 +v 143.170227 -64.796150 -4.750415 +v 151.353897 16.403770 -1.000522 +v 146.586899 -63.221138 -1.300426 +v 151.353897 25.653755 -1.000530 +v 151.353897 35.953751 -1.000545 +v 143.105286 -67.132042 -4.450412 +v 143.642395 -68.069939 -4.750415 +v 151.353897 46.253735 -1.000553 +v 143.656601 -68.086937 -4.450412 +v 148.520996 61.994568 -4.450565 +v 151.353897 59.953720 -1.000576 +v 151.339203 71.871300 -1.000583 +v 147.352798 61.014320 -2.925571 +v 144.501297 -68.795738 -4.450405 +v 150.556396 -78.746513 -1.000408 +v 145.544708 -78.761223 -1.000408 +v 150.562500 -78.780937 -3.000400 +v 145.537506 -69.172935 -4.450405 +v 147.676300 62.703346 -4.450565 +v 146.088806 58.303722 -2.550563 +v 146.088806 17.003777 -1.000522 +v 146.913788 61.382660 -2.925571 +v 142.888809 17.003777 -1.000522 +v 143.674500 -5.108200 -4.750484 +v 143.170227 -4.296204 -4.750484 +v 145.050903 -76.586021 -1.000408 +v 142.913818 -66.046150 -4.450412 +v 146.640106 -6.173004 -4.450481 +v 146.640106 63.080471 -4.450565 +v 144.479492 -76.019920 -1.000408 +v 146.634705 0.081490 -4.750492 +v 145.542908 0.081490 -4.750492 +v 146.375305 61.578651 -2.925571 +v 147.288788 6.803780 -1.000507 +v 147.661896 -0.288307 -4.750492 +v 148.129700 57.521530 -4.750560 +v 146.088806 -67.696129 -2.925418 +v 146.640106 -69.172935 -4.450405 +v 146.088806 5.603783 -1.000507 +v 142.888809 5.603783 -1.000507 +v 149.072296 -64.960243 -4.450412 +v 146.088806 46.903736 -3.000545 +v 148.503098 -0.984207 -4.750492 +v 149.058807 -1.923912 -4.750492 +v 147.676300 -68.795738 -4.450405 +v 146.913788 -67.475029 -2.925418 +v 143.230682 0.097687 -1.000499 +v 144.927597 0.990089 -1.000499 +v 149.072296 -1.960312 -4.450489 +v 144.472595 57.220860 -4.750560 +v 147.288788 -21.896187 -1.000476 +v 150.188797 -21.896187 -1.000476 +v 149.263794 -3.046204 -4.450489 +v 146.088806 1.153786 -1.000499 +v 148.520996 -68.086937 -4.450412 +v 147.352798 -67.106728 -2.925418 +v 146.088806 -11.696198 -1.000484 +v 146.088806 -7.246201 -1.000492 +v 146.088806 -7.246201 -3.000484 +v 145.493896 63.072472 -4.450565 +v 146.088806 -11.696198 -3.000476 +v 145.502502 -7.205101 -1.000492 +v 144.472595 62.686577 -4.450565 +v 145.502502 -7.205101 -3.000484 +v 144.375488 -6.880905 -1.000492 +v 144.375488 -6.880905 -3.000484 +v 143.642395 61.977535 -4.450565 +v 143.642395 61.977535 -4.750568 +v 147.174698 56.970200 -4.750560 +v 143.342590 -6.229500 -1.000492 +v 149.072296 -67.132042 -4.450412 +v 143.107910 -6.198204 -3.000484 +v 143.101501 61.029205 -4.450565 +v 143.170227 61.203716 -4.750568 +v 147.639297 -66.610451 -2.925418 +v 151.681488 73.244301 -4.750584 +v 142.888809 -11.696198 -1.000484 +v 142.888809 -11.696198 -3.000476 +v 142.904449 -6.391502 -3.000484 +v 142.892746 -6.438705 -1.000492 +v 143.105286 58.867809 -4.450557 +v 143.656601 57.912872 -4.450557 +v 149.263794 -66.046150 -4.450412 +v 144.501297 57.204090 -4.450557 +v 147.738800 -66.046150 -2.925418 +v 145.493896 56.834961 -4.750560 +v 147.288788 -11.696198 -1.000484 +v 150.188797 -11.696198 -1.000484 +v 150.188797 -11.696198 -3.000476 +v 147.288788 -11.696198 -3.000476 +v 150.084808 -5.229500 -1.000492 +v 150.084808 -5.229500 -3.000484 +v 145.537506 56.826950 -4.450557 +v 147.850800 -6.858704 -1.000492 +v 147.288788 -7.071106 -1.000492 +v 147.288788 -7.071106 -3.000484 +v 146.913788 58.524784 -2.550563 +v 147.639297 -65.481850 -2.925418 +v 148.376709 -6.568405 -3.000484 +v 148.855804 -6.206001 -1.000492 +v 149.794891 -5.171700 -3.000484 +v 149.747589 -5.191902 -1.000492 +v 142.913818 59.953716 -4.450565 +v 142.982208 56.730305 -1.000568 +v 143.020035 56.760826 -3.000560 +v 146.640106 63.080471 -4.750568 +v 147.288788 5.603783 -1.000507 +v 147.288788 0.978691 -1.000499 +v 145.802307 61.578651 -2.925571 +v 145.263794 61.382660 -2.925571 +v 146.640106 56.826950 -4.750560 +v 144.824799 61.014320 -2.925571 +v 148.376709 0.475990 -1.000499 +v 144.538300 60.518051 -2.925571 +v 148.376709 -62.523949 -3.000415 +v 150.188797 -52.996162 -3.000431 +v 144.438797 59.953720 -2.550571 +v 144.438797 59.953720 -2.925571 +v 144.538300 59.389393 -2.550563 +v 144.538300 59.389393 -2.925563 +v 144.824799 58.893124 -2.925563 +v 146.088806 15.803787 -1.000522 +v 142.888809 15.803787 -1.000522 +v 147.288788 -62.021248 -3.000415 +v 144.824799 58.893124 -2.550563 +v 145.263794 58.524784 -2.925563 +v 147.288788 -52.996162 -3.000431 +v 145.263794 58.524784 -2.550563 +v 150.188797 5.603783 -1.000507 +v 145.802307 -64.421257 -2.925418 +v 146.375305 -64.421257 -2.925418 +v 145.263794 -64.617256 -2.925418 +v 152.130493 72.709259 -4.750584 +v 144.824799 -64.985542 -2.925418 +v 144.538300 -65.481850 -2.925418 +v 144.438797 -66.046150 -2.925418 +v 144.538300 -66.610451 -2.925418 +v 144.538300 -66.610451 -2.550418 +v 144.824799 -67.106728 -2.925418 +v 145.263794 -67.475029 -2.925418 +v 142.888809 -31.096169 -1.000461 +v 142.888809 -23.096191 -1.000476 +v 146.088806 -31.096169 -1.000461 +v 150.084808 -68.229439 -3.000408 +v 150.084808 -68.229424 -1.000415 +v 149.747589 -68.191841 -3.000408 +v 147.352798 -64.985542 -2.925418 +v 149.747589 -68.191826 -1.000415 +v 146.088806 -23.096191 -1.000476 +v 149.058807 -4.168503 -4.750484 +v 147.288788 -77.596138 -3.000400 +v 150.188797 -77.596138 -3.000400 +v 147.850800 -69.858635 -3.000408 +v 146.913788 -64.617256 -2.925418 +v 147.288788 -70.071037 -3.000408 +v 146.639893 -69.171715 -1.000415 +v 147.675690 -68.794716 -1.000415 +v 148.855804 -69.205940 -3.000408 +v 148.520096 -68.086220 -1.000423 +v 149.071198 -67.131615 -1.000423 +v 147.639297 -66.610451 -2.550418 +v 143.342590 56.770405 -1.000568 +v 149.262695 -66.046135 -1.000423 +v 149.071198 -64.960640 -1.000423 +v 142.888809 25.003761 -1.000530 +v 148.520096 -64.006035 -1.000423 +v 148.503098 -5.108200 -4.750484 +v 147.675690 -63.297539 -1.000423 +v 146.639893 -62.920540 -1.000423 +v 147.288788 -52.996147 -1.000438 +v 147.288788 -62.021233 -1.000423 +v 148.376709 -62.523933 -1.000423 +v 149.215607 60.505047 -4.750568 +v 146.633896 0.044991 -1.000499 +v 145.380997 -79.807228 -4.750401 +v 147.658295 -0.327812 -1.000499 +v 148.493408 -1.028511 -1.000499 +v 150.188797 -52.996147 -1.000438 +v 149.038391 -1.972610 -1.000499 +v 149.227692 -3.046204 -1.000499 +v 149.072296 -67.132042 -4.750415 +v 148.756500 -4.017204 -1.300502 +v 149.038391 -4.119804 -1.000492 +v 148.263596 -4.871002 -1.300495 +v 147.288788 -77.596123 -1.000408 +v 150.188797 -77.596123 -1.000408 +v 142.921509 63.258446 -1.000576 +v 143.188812 63.094646 -1.000576 +v 148.106506 -5.450806 -1.000492 +v 147.508301 -5.504807 -1.300495 +v 147.162399 -5.995804 -1.000492 +v 147.738800 -66.046150 -2.550418 +v 147.850800 -69.858620 -1.000415 +v 147.288788 -70.071022 -1.000415 +v 148.855804 -69.205925 -1.000415 +v 146.088806 -75.568321 -1.000408 +v 146.088806 -70.246117 -1.000415 +v 146.088806 -70.246132 -3.000408 +v 146.088806 -75.568336 -3.000400 +v 145.502502 -70.205025 -1.000415 +v 144.927597 -70.082436 -3.000408 +v 144.375488 -69.880821 -1.000415 +v 143.252411 -69.193932 -3.000408 +v 143.342590 -69.229424 -1.000415 +v 147.288788 71.503708 -1.000583 +v 147.288788 63.978638 -1.000576 +v 146.639893 63.079346 -1.000576 +v 146.088806 69.475876 -1.000583 +v 150.188797 71.503708 -1.000583 +v 142.892746 -69.438622 -1.000415 +v 142.888809 -74.096123 -1.000415 +v 142.923645 -69.346733 -3.000408 +v 151.128098 72.324059 -1.000583 +v 142.888809 -74.096138 -3.000408 +v 145.217987 -74.774925 -1.000408 +v 145.217987 -74.774940 -3.000400 +v 145.217987 68.682503 -1.000583 +v 144.153992 -74.269615 -1.000415 +v 144.153992 -74.269630 -3.000408 +v 144.153992 68.177170 -1.000583 +v 142.888809 68.003708 -1.000583 +v 143.062332 -69.215019 -1.000415 +v 146.088806 64.153717 -1.000576 +v 146.088806 -52.996162 -3.000431 +v 146.088806 -52.996147 -1.000438 +v 142.888809 -52.996162 -3.000431 +v 150.188797 -12.896194 -1.000484 +v 142.888809 -52.996147 -1.000438 +v 142.921509 -62.741432 -1.000423 +v 142.921509 -62.741447 -3.000415 +v 143.230682 -62.902229 -1.000423 +v 144.927597 -62.009834 -1.000423 +v 143.188812 -62.905251 -3.000415 +v 144.515701 -5.804100 -4.750484 +v 144.927597 -62.009850 -3.000415 +v 145.592300 63.088486 -1.000576 +v 147.661896 -5.804100 -4.750484 +v 147.661896 -5.804100 -4.450481 +v 144.647888 62.781628 -1.000576 +v 144.927597 63.990005 -1.000576 +v 146.088806 -61.846138 -1.000423 +v 146.088806 -61.846153 -3.000415 +v 148.376709 63.475895 -1.000576 +v 147.675690 62.702351 -1.000576 +v 146.088806 -32.396187 -3.000454 +v 146.088806 -32.396172 -1.000461 +v 142.888809 -32.396187 -3.000454 +v 143.844604 62.197960 -1.000576 +v 142.888809 -32.396172 -1.000461 +v 142.888809 -41.396156 -1.000454 +v 142.888809 -41.396172 -3.000446 +v 147.352798 58.893124 -2.550563 +v 145.542908 -6.173904 -4.750484 +v 146.088806 -41.396156 -1.000454 +v 146.088806 -41.396172 -3.000446 +v 148.520996 -68.086937 -4.750415 +v 148.520096 61.993820 -1.000576 +v 152.369400 72.052933 -4.750576 +v 146.088806 -42.696159 -3.000438 +v 146.088806 -42.696144 -1.000446 +v 142.888809 -42.696159 -3.000438 +v 143.260895 61.394611 -1.000576 +v 142.888809 -42.696144 -1.000446 +v 142.888809 -51.696144 -1.000438 +v 147.288788 -12.896194 -1.000484 +v 142.888809 -51.696159 -3.000431 +v 146.088806 -51.696144 -1.000438 +v 146.088806 -51.696159 -3.000431 +v 149.071198 61.039242 -1.000576 +v 150.188797 -42.696144 -1.000446 +v 147.288788 -42.696144 -1.000446 +v 150.188797 -42.696159 -3.000438 +v 147.288788 -42.696159 -3.000438 +v 147.288788 -51.696144 -1.000438 +v 146.634705 -6.173904 -4.750484 +v 149.214401 59.402592 -1.000568 +v 147.288788 -51.696159 -3.000431 +v 150.188797 -51.696144 -1.000438 +v 150.188797 -51.696159 -3.000431 +v 147.288788 -41.396156 -1.000454 +v 150.188797 -41.396156 -1.000454 +v 150.188797 -41.396172 -3.000446 +v 147.676300 -68.795738 -4.750408 +v 148.837402 58.366806 -1.000568 +v 147.288788 -41.396172 -3.000446 +v 148.855804 56.793976 -1.000568 +v 148.128906 57.522423 -1.000568 +v 150.188797 -32.396172 -1.000461 +v 143.062332 -6.215103 -1.000492 +v 150.188797 -32.396187 -3.000454 +v 147.288788 -32.396172 -1.000461 +v 147.288788 -32.396187 -3.000454 +v 147.850800 56.141174 -1.000568 +v 146.639893 56.828106 -1.000568 +v 147.288788 26.303757 -1.000530 +v 150.188797 26.303757 -1.000530 +v 147.288788 26.303757 -3.000522 +v 150.188797 26.303757 -3.000522 +v 144.375488 56.119053 -1.000568 +v 150.188797 35.303749 -3.000537 +v 150.188797 35.303749 -1.000545 +v 145.502502 55.794857 -1.000568 +v 147.288788 55.928806 -1.000568 +v 147.288788 35.303749 -1.000545 +v 147.288788 35.303749 -3.000537 +v 146.088806 6.803780 -1.000507 +v 146.088806 55.753727 -1.000568 +v 142.888809 46.903736 -1.000553 +v 146.088806 46.903736 -1.000553 +v 146.688797 46.253735 -1.000553 +v 147.288788 46.903736 -1.000553 +v 150.188797 46.903736 -1.000553 +v 142.888809 45.603741 -1.000553 +v 142.888809 36.603745 -1.000545 +v 146.088806 45.603741 -1.000553 +v 146.688797 35.953751 -1.000545 +v 147.288788 36.603745 -1.000545 +v 147.288788 45.603741 -1.000553 +v 150.188797 45.603741 -1.000553 +v 146.088806 36.603745 -1.000545 +v 150.188797 36.603745 -1.000545 +v 150.188797 45.603741 -3.000545 +v 142.888809 35.303749 -1.000545 +v 142.888809 26.303757 -1.000530 +v 146.688797 25.653755 -1.000530 +v 146.088806 35.303749 -1.000545 +v 146.088806 26.303757 -1.000530 +v 147.639297 59.389393 -2.550563 +v 149.058807 -4.168503 -4.450481 +v 146.688797 16.403770 -1.000522 +v 147.738800 59.953720 -2.550571 +v 147.288788 45.603741 -3.000545 +v 147.639297 60.518051 -2.550571 +v 147.288788 36.603745 -3.000537 +v 142.888809 6.803780 -1.000507 +v 146.688797 6.203781 -1.000507 +v 148.503098 -5.108200 -4.450481 +v 146.688797 0.093689 -1.000499 +v 150.188797 36.603745 -3.000537 +v 142.901886 0.093689 -1.000499 +v 145.457397 -79.746132 -3.000400 +v 147.174698 62.937233 -4.750568 +v 142.888809 45.603741 -3.000545 +v 146.088806 45.603741 -3.000545 +v 142.888809 36.603745 -3.000537 +v 150.188797 -31.096169 -1.000461 +v 146.088806 36.603745 -3.000537 +v 142.888809 35.303749 -3.000537 +v 146.088806 35.303749 -3.000537 +v 142.888809 26.303757 -3.000522 +v 146.088806 26.303757 -3.000522 +v 147.288788 -31.096169 -1.000461 +v 150.188797 -23.096191 -1.000476 +v 142.901886 -6.186104 -1.000492 +v 146.688797 -6.186104 -1.000492 +v 151.009201 -78.535423 -1.000408 +v 151.154907 -78.438942 -3.000400 +v 146.088806 -12.896194 -1.000484 +v 146.688797 -22.496185 -1.000476 +v 142.888809 -12.896194 -1.000484 +v 142.888809 -21.896187 -1.000476 +v 146.088806 -21.896187 -1.000476 +v 146.688797 -31.746162 -1.000461 +v 147.288788 -23.096191 -1.000476 +v 146.688797 -42.046150 -1.000454 +v 146.688797 -52.346153 -1.000438 + +f 1621 1622 1623 +f 2327 1621 1623 +f 2317 2327 1623 +f 2317 1623 1625 +f 2310 2317 1625 +f 2310 1625 1638 +f 1966 2310 1638 +f 1965 1966 1638 +f 1639 1965 1638 +f 1624 1639 1638 +f 1624 1965 1639 +f 2336 1965 1624 +f 2336 1624 1622 +f 2335 2336 1622 +f 2327 2335 1622 +f 2335 2327 2318 +f 2334 2335 2318 +f 2334 2318 2331 +f 2333 2334 2331 +f 2333 2331 1933 +f 2066 2333 1933 +f 1841 2066 1933 +f 1841 1933 1846 +f 1841 1846 1842 +f 1841 1842 1843 +f 2128 1841 1843 +f 2128 1843 2129 +f 2128 2129 1842 +f 2186 2128 1842 +f 2323 2186 1842 +f 2186 2323 1752 +f 2186 1752 1740 +f 1740 1752 1741 +f 1740 1741 1733 +f 1725 1740 1733 +f 1725 1733 1720 +f 1719 1725 1720 +f 1719 1720 1721 +f 1719 1721 1864 +f 2286 1719 1864 +f 2286 1864 1858 +f 2272 2286 1858 +f 2272 1858 1852 +f 2263 2272 1852 +f 2263 1852 1709 +f 2260 2263 1709 +f 2231 2260 1709 +f 1705 2231 1709 +f 1705 1709 1710 +f 1658 1705 1710 +f 1656 1658 1710 +f 1891 1656 1710 +f 1847 1891 1710 +f 1890 1891 1847 +f 1853 1890 1847 +f 1852 1853 1847 +f 1964 1890 1853 +f 1859 1964 1853 +f 1858 1859 1853 +f 2141 1964 1859 +f 1865 2141 1859 +f 1864 1865 1859 +f 1871 2141 1865 +f 1721 1871 1865 +f 1871 2143 2141 +f 2141 2143 2142 +f 2141 2142 2138 +f 2138 2142 2127 +f 2138 2127 2097 +f 2136 2138 2097 +f 2136 2097 2091 +f 2134 2136 2091 +f 2134 2091 2087 +f 2133 2134 2087 +f 2133 2087 2084 +f 2057 2133 2084 +f 2057 2084 2053 +f 2046 2057 2053 +f 2043 2046 2053 +f 2043 2053 2130 +f 2366 2043 2130 +f 2366 2130 1866 +f 2100 2366 1866 +f 1635 2100 1866 +f 1881 1635 1866 +f 1880 1881 1866 +f 1880 1866 1868 +f 1995 1880 1868 +f 1867 1995 1868 +f 1998 1995 1867 +f 1988 1998 1867 +f 1983 1988 1867 +f 1985 1983 1867 +f 1985 1867 1866 +f 1979 1983 1985 +f 2130 1979 1985 +f 2130 1973 1979 +f 1973 1978 1979 +f 1972 1978 1973 +f 1931 1972 1973 +f 1929 1931 1973 +f 1929 1930 1931 +f 1930 2092 1931 +f 2092 2098 1931 +f 1901 1931 2098 +f 2097 1901 2098 +f 1884 1931 1901 +f 1897 1884 1901 +f 1897 1901 1835 +f 1990 1897 1835 +f 1986 1990 1835 +f 1986 1835 1834 +f 1982 1986 1834 +f 1982 1834 1818 +f 1980 1982 1818 +f 1980 1818 1817 +f 1977 1980 1817 +f 1977 1817 2056 +f 1875 1977 2056 +f 2055 1875 2056 +f 2055 2056 2110 +f 2055 2110 2135 +f 2059 2055 2135 +f 2067 2059 2135 +f 2068 2067 2135 +f 1815 2068 2135 +f 1815 2135 2093 +f 1815 2093 2060 +f 1815 2060 1809 +f 1808 1815 1809 +f 1808 1809 1810 +f 1808 1810 1826 +f 1905 1808 1826 +f 1904 1905 1826 +f 1963 1904 1826 +f 1962 1963 1826 +f 1827 1962 1826 +f 1630 1827 1826 +f 1653 1630 1826 +f 1653 1826 2282 +f 1653 2282 2157 +f 1634 1653 2157 +f 1634 2157 2100 +f 1633 1653 1634 +f 1633 1634 1635 +f 1946 1633 1635 +f 1994 1633 1946 +f 1993 1994 1946 +f 1993 1946 1995 +f 1995 1946 1881 +f 2229 1994 1993 +f 2230 2229 1993 +f 2231 2230 1993 +f 2232 2231 1993 +f 1988 2232 1993 +f 2247 2231 2232 +f 2247 2232 1893 +f 1913 2247 1893 +f 1913 1893 1895 +f 1927 1913 1895 +f 2245 1927 1895 +f 2244 2245 1895 +f 2244 1895 1892 +f 2241 2244 1892 +f 2241 1892 1894 +f 2232 2241 1894 +f 2241 2232 1983 +f 1978 2241 1983 +f 1892 1893 1894 +f 2244 2241 1978 +f 2245 2244 1972 +f 2245 1972 1960 +f 1958 2245 1960 +f 1958 1960 1885 +f 1935 1958 1885 +f 1883 1935 1885 +f 1883 1885 1884 +f 1647 1883 1884 +f 1647 1884 1887 +f 1647 1887 1940 +f 2031 1647 1940 +f 2030 2031 1940 +f 2051 2030 1940 +f 2160 2030 2051 +f 2160 2051 2024 +f 2159 2160 2024 +f 2158 2159 2024 +f 2158 2024 2019 +f 2156 2158 2019 +f 2156 2019 2015 +f 2154 2156 2015 +f 2154 2015 2013 +f 2155 2154 2013 +f 2155 2013 1944 +f 2178 2155 1944 +f 1954 2178 1944 +f 1954 1944 1943 +f 1905 1954 1943 +f 2000 1954 1905 +f 2000 2171 1954 +f 2122 2171 2000 +f 2065 2122 2000 +f 2065 2000 1904 +f 2109 2122 2065 +f 2107 2109 2065 +f 2107 2065 1963 +f 2099 2109 2107 +f 2095 2099 2107 +f 2095 2107 1962 +f 2205 2095 1962 +f 2079 2095 2205 +f 2280 2079 2205 +f 1827 2280 2205 +f 1827 2307 2280 +f 2307 2069 2280 +f 2062 2069 2307 +f 1862 2062 2307 +f 1784 2062 1862 +f 1798 1784 1862 +f 1861 1798 1862 +f 1857 1861 1862 +f 1632 1857 1862 +f 1827 1632 1862 +f 1631 1857 1632 +f 1630 1631 1632 +f 1631 1630 2381 +f 1888 1631 2381 +f 2041 1888 2381 +f 2380 2041 2381 +f 2005 2380 2381 +f 2005 2381 1957 +f 2004 2005 1957 +f 2008 2004 1957 +f 2011 2008 1957 +f 2012 2011 1957 +f 2014 2012 1957 +f 2017 2014 1957 +f 2017 1957 1948 +f 2022 2017 1948 +f 2026 2022 1948 +f 2028 2026 1948 +f 2029 2028 1948 +f 2032 2029 1948 +f 2035 2032 1948 +f 2036 2035 1948 +f 2036 1948 1633 +f 2237 2036 1633 +f 2233 2036 2237 +f 2233 2237 1994 +f 1902 2036 2233 +f 1902 2233 1663 +f 1769 1902 1663 +f 1768 1769 1663 +f 1662 1768 1663 +f 1662 1663 1664 +f 2230 1662 1664 +f 2230 2267 1662 +f 2267 1768 1662 +f 2267 1908 1768 +f 1908 1779 1768 +f 1908 1902 1779 +f 1908 2035 1902 +f 2293 2035 1908 +f 2281 2293 1908 +f 2293 2281 1699 +f 1697 2293 1699 +f 1697 1699 1698 +f 1692 1697 1698 +f 1693 1692 1698 +f 2357 1693 1698 +f 1961 2357 1698 +f 1961 1698 1701 +f 1941 1961 1701 +f 1941 1701 1659 +f 1657 1941 1659 +f 1657 1659 1658 +f 1941 1657 2046 +f 1701 1704 1659 +f 1704 1705 1659 +f 1704 2268 1705 +f 2281 2268 1704 +f 2268 2281 2267 +f 2231 2268 2267 +f 1699 1704 1701 +f 1961 1941 2046 +f 2037 1961 2046 +f 2357 1961 2037 +f 2023 2357 2037 +f 2023 2037 2034 +f 2021 2023 2034 +f 2021 2034 1824 +f 2197 2021 1824 +f 2197 1824 1826 +f 1824 1825 1826 +f 2002 2021 2197 +f 1810 2002 2197 +f 1989 2002 1810 +f 1989 1996 2002 +f 1996 2006 2002 +f 1996 2352 2006 +f 2352 2355 2006 +f 2006 2355 2023 +f 2352 1691 2355 +f 1691 1693 2355 +f 1691 1690 1693 +f 1683 1690 1691 +f 1684 1683 1691 +f 1677 1683 1684 +f 1678 1677 1684 +f 1678 1684 2276 +f 2121 1678 2276 +f 2121 2276 1984 +f 1968 2121 1984 +f 1968 1984 1981 +f 1924 1968 1981 +f 1924 1981 2060 +f 1923 1968 1924 +f 1922 1923 1924 +f 1922 1924 2093 +f 1923 1922 2117 +f 2150 1923 2117 +f 2150 2117 2108 +f 2145 2150 2108 +f 2145 2108 2106 +f 2144 2145 2106 +f 2144 2106 2105 +f 2142 2144 2105 +f 2105 2106 1829 +f 2105 1829 1819 +f 1901 2105 1819 +f 2127 2105 1901 +f 1829 1817 1819 +f 2074 1817 1829 +f 2106 2074 1829 +f 2143 2145 2144 +f 2143 2149 2145 +f 1876 2149 2143 +f 1876 1882 2149 +f 1882 2152 2149 +f 2149 2152 2150 +f 1882 1886 2152 +f 1886 2044 2152 +f 2152 2044 1923 +f 1886 1672 2044 +f 1672 1674 2044 +f 2044 1674 2121 +f 1672 1673 1674 +f 1674 1673 1678 +f 1753 1673 1672 +f 1761 1673 1753 +f 1752 1761 1753 +f 2326 1761 1752 +f 2326 2331 1761 +f 1761 2318 1673 +f 1673 2318 1677 +f 2318 2311 1677 +f 2318 2317 2311 +f 1753 1672 1886 +f 1741 1753 1886 +f 1741 1886 1882 +f 1733 1882 1876 +f 2106 2108 2074 +f 2108 2110 2074 +f 2149 2150 2145 +f 2108 2117 2110 +f 2152 1923 2150 +f 2117 1922 2110 +f 1923 2044 1968 +f 1981 1984 1989 +f 1981 1989 1809 +f 2044 2121 1968 +f 1984 2276 1996 +f 1674 1678 2121 +f 2276 1684 2352 +f 1673 1677 1678 +f 1677 2311 1683 +f 2311 2308 1683 +f 2311 2310 2308 +f 1683 2308 1690 +f 2308 2300 1690 +f 1690 2300 1692 +f 2300 2293 1692 +f 2300 1966 2293 +f 2308 1966 2300 +f 1684 1691 2352 +f 2276 2352 1996 +f 1984 1996 1989 +f 2002 2006 2021 +f 1824 2034 1825 +f 2034 2043 1825 +f 2006 2023 2021 +f 2034 2037 2043 +f 2355 2357 2023 +f 2355 1693 2357 +f 1690 1692 1693 +f 1698 1699 1701 +f 1692 2293 1697 +f 1699 2281 1704 +f 1965 2035 2293 +f 2281 1908 2267 +f 1779 1769 1768 +f 1779 1902 1769 +f 1663 2233 1664 +f 2233 2229 1664 +f 1902 2035 2036 +f 1965 2032 2035 +f 2343 2029 2032 +f 2342 2343 2032 +f 2342 2032 2336 +f 2342 2336 2334 +f 2341 2342 2334 +f 2340 2341 2334 +f 2339 2340 2334 +f 2339 2334 2337 +f 2339 2337 2367 +f 2368 2339 2367 +f 2371 2368 2367 +f 2369 2371 2367 +f 2338 2371 2369 +f 2337 2338 2369 +f 2338 2337 1918 +f 1918 2344 2338 +f 2347 2344 1918 +f 2348 2347 1918 +f 1921 2348 1918 +f 1921 1918 1896 +f 1928 1921 1896 +f 1907 1928 1896 +f 1850 1907 1896 +f 1850 1896 1873 +f 1848 1850 1873 +f 1872 1848 1873 +f 1646 1872 1873 +f 1646 1873 1883 +f 1872 1646 2235 +f 1646 2242 2235 +f 2235 2242 2238 +f 2235 2238 2236 +f 2234 2235 2236 +f 2246 2234 2236 +f 2246 2236 2227 +f 2228 2246 2227 +f 2226 2228 2227 +f 2225 2226 2227 +f 2238 2225 2227 +f 2238 2243 2225 +f 2243 2222 2225 +f 2222 2224 2225 +f 2221 2224 2222 +f 2220 2221 2222 +f 2223 2220 2222 +f 2240 2223 2222 +f 2220 2223 2240 +f 2239 2220 2240 +f 2239 2240 2243 +f 2242 2239 2243 +f 1645 2239 2242 +f 1645 2054 2239 +f 2054 1645 1856 +f 1822 2054 1856 +f 1822 1856 1665 +f 1784 1822 1665 +f 2042 1784 1665 +f 2038 2042 1665 +f 2038 1665 1666 +f 2033 2038 1666 +f 2033 1666 2031 +f 2163 2038 2033 +f 2161 2163 2033 +f 2161 2033 2030 +f 2162 2163 2161 +f 1915 2162 2161 +f 1915 2161 2160 +f 1722 1915 2160 +f 1915 1722 1724 +f 1914 1915 1724 +f 1773 1914 1724 +f 1770 1773 1724 +f 1770 1724 1854 +f 1765 1770 1854 +f 1765 1854 1917 +f 1766 1765 1917 +f 1766 1917 1955 +f 2027 1766 1955 +f 1969 2027 1955 +f 1926 1969 1955 +f 1932 1926 1955 +f 1926 1932 2154 +f 1926 1916 1969 +f 1926 1889 1916 +f 1889 1756 1916 +f 1756 2003 1916 +f 2003 2027 1916 +f 2003 2192 2027 +f 2192 2193 2027 +f 2193 2192 2195 +f 2193 2195 2390 +f 2249 2193 2390 +f 2252 2249 2390 +f 2252 2390 2291 +f 2252 2291 2288 +f 1849 2252 2288 +f 1849 2288 1906 +f 1849 1906 1850 +f 2288 2287 1906 +f 2287 2278 1906 +f 1906 2278 2274 +f 2274 2273 1906 +f 1906 2273 2165 +f 1906 2165 1907 +f 2165 2166 1907 +f 2166 2385 1907 +f 1907 2385 2384 +f 1907 2384 2101 +f 2101 2104 1907 +f 2104 2378 1907 +f 2378 1649 1907 +f 2378 1655 1649 +f 1649 1655 1654 +f 1649 1654 1648 +f 1641 1649 1648 +f 1641 1648 1640 +f 1637 1641 1640 +f 1637 1640 1636 +f 1629 1637 1636 +f 1629 1636 1627 +f 1626 1629 1627 +f 1626 1627 1628 +f 2198 1626 1628 +f 1685 2198 1628 +f 1685 1628 1686 +f 1689 1685 1686 +f 1804 1689 1686 +f 1807 1804 1686 +f 1687 1807 1686 +f 1688 1807 1687 +f 1628 1688 1687 +f 1816 1807 1688 +f 1695 1816 1688 +f 1627 1695 1688 +f 1828 1816 1695 +f 1702 1828 1695 +f 1636 1702 1695 +f 1836 1828 1702 +f 1707 1836 1702 +f 1640 1707 1702 +f 1832 1836 1707 +f 1801 1832 1707 +f 1970 1801 1707 +f 1648 1970 1707 +f 1970 1788 1801 +f 1801 1788 1797 +f 1801 1797 1814 +f 1814 1797 1992 +f 1844 1814 1992 +f 1844 1992 1990 +f 1833 1844 1990 +f 1836 1844 1833 +f 1832 1814 1844 +f 1797 1997 1992 +f 1992 1997 2049 +f 1897 1992 2049 +f 2025 1897 2049 +f 2020 2025 2049 +f 2016 2020 2049 +f 1945 2016 2049 +f 2048 1945 2049 +f 2258 1945 2048 +f 2001 2258 2048 +f 1997 2001 2048 +f 1778 2001 1997 +f 1778 1772 2001 +f 1772 2007 2001 +f 2007 1772 2052 +f 2007 2052 2299 +f 2007 2299 2277 +f 2007 2277 2258 +f 2299 1945 2277 +f 1943 1945 2299 +f 1943 2299 2261 +f 1943 2261 2191 +f 1943 2191 2174 +f 1943 2174 1808 +f 2174 2353 1808 +f 2353 2077 1808 +f 2353 1803 2077 +f 1803 1839 2077 +f 1839 1830 2077 +f 2077 1830 2073 +f 2077 2073 1815 +f 1830 1820 2073 +f 2073 1820 1991 +f 2073 1991 2068 +f 1820 1811 1991 +f 1991 1811 1874 +f 1991 1874 2059 +f 1811 1806 1874 +f 1874 1806 1875 +f 1811 1812 1806 +f 1812 1804 1806 +f 1804 1805 1806 +f 1806 1805 1977 +f 1821 1812 1811 +f 1812 1821 1696 +f 1812 1696 1689 +f 1696 1694 1689 +f 1700 1694 1696 +f 1703 1700 1696 +f 1706 1700 1703 +f 1708 1706 1703 +f 1831 1708 1703 +f 1821 1831 1703 +f 1831 1821 1820 +f 1840 1708 1831 +f 1840 1831 1830 +f 1976 1708 1840 +f 1802 1976 1840 +f 1802 1840 1839 +f 1863 1976 1802 +f 1793 1863 1802 +f 1793 1802 1803 +f 1794 1793 1803 +f 1737 1793 1794 +f 1775 1737 1794 +f 1775 1794 2361 +f 2262 1775 2361 +f 2262 2361 2191 +f 1772 1775 2262 +f 1772 1682 1775 +f 1763 1682 1772 +f 1680 1682 1763 +f 1851 1680 1763 +f 1851 1763 1788 +f 1788 1763 1778 +f 1660 1680 1851 +f 1654 1660 1851 +f 1654 1851 1970 +f 1660 1667 1680 +f 1667 1681 1680 +f 1667 1675 1681 +f 1675 1735 1681 +f 1681 1735 1682 +f 1682 1735 1737 +f 1735 1736 1737 +f 1735 1679 1736 +f 1679 2214 1736 +f 1736 2214 1863 +f 2214 2208 1863 +f 2214 2213 2208 +f 2213 2207 2208 +f 2208 2207 2206 +f 2208 2206 1976 +f 2206 1714 1976 +f 2206 2207 1714 +f 2207 2204 1714 +f 1714 2204 1706 +f 2204 2203 1706 +f 2204 2126 2203 +f 2126 2115 2203 +f 2115 2017 2203 +f 2203 2017 1743 +f 2201 2203 1743 +f 2200 2201 1743 +f 2200 1743 2137 +f 2198 2200 2137 +f 2362 2198 2137 +f 2362 2137 2132 +f 2362 2132 2360 +f 2063 2362 2360 +f 2063 2360 2064 +f 2063 2064 1971 +f 1953 2063 1971 +f 1951 1953 1971 +f 1717 1951 1971 +f 1718 1717 1971 +f 1716 1718 1971 +f 1716 1717 1718 +f 1716 2071 1717 +f 2071 2072 1717 +f 2071 2362 2072 +f 2072 2362 2078 +f 2072 2078 1951 +f 1951 2078 1952 +f 1952 2078 1953 +f 2364 2362 2071 +f 1626 2362 2364 +f 2364 2071 1716 +f 1928 2364 1716 +f 1716 2064 1928 +f 1928 2064 2359 +f 2064 2330 2359 +f 2359 2330 1727 +f 2359 1727 1726 +f 2359 1726 1729 +f 2147 2359 1729 +f 2146 2147 1729 +f 1728 2146 1729 +f 1727 2146 1728 +f 2147 2146 2354 +f 2147 2354 2045 +f 2147 2045 1921 +f 1921 2045 2047 +f 2047 2189 1921 +f 2189 2047 1732 +f 1912 2189 1732 +f 1734 1912 1732 +f 1731 1734 1732 +f 1730 1731 1732 +f 2047 1731 1730 +f 1731 1912 1734 +f 2045 1912 1731 +f 1912 2349 2189 +f 2189 2349 2351 +f 2189 2351 2348 +f 2348 2351 2375 +f 2348 2375 2374 +f 2374 2375 2372 +f 2347 2374 2372 +f 2350 2347 2372 +f 2373 2350 2372 +f 2351 2350 2373 +f 2347 2350 2340 +f 2350 2349 2340 +f 2349 2319 2340 +f 2319 2328 2340 +f 2328 2029 2340 +f 2340 2029 2345 +f 2328 2325 2029 +f 2325 2328 2324 +f 2320 2325 2324 +f 2322 2320 2324 +f 2322 2324 2329 +f 2321 2322 2329 +f 2328 2321 2329 +f 2320 2322 2321 +f 2319 2320 2321 +f 2320 2028 2325 +f 1785 2028 2320 +f 1785 2320 2349 +f 1669 1785 2349 +f 2354 1669 2349 +f 2354 1910 1669 +f 1669 1910 1738 +f 1669 1738 1670 +f 1669 1670 1671 +f 1670 1739 1671 +f 1739 1785 1671 +f 1800 1785 1739 +f 1738 1800 1739 +f 1670 1738 1739 +f 1910 1800 1738 +f 1910 2026 1800 +f 1967 2026 1910 +f 1967 1790 2026 +f 1790 1967 1747 +f 1746 1790 1747 +f 1745 1746 1747 +f 1745 1747 1748 +f 2058 1745 1748 +f 1967 2058 1748 +f 2058 1967 2354 +f 2360 2058 2354 +f 2360 1789 2058 +f 2058 1789 1746 +f 2131 1789 2360 +f 2131 2022 1789 +f 1789 2022 1790 +f 2131 2153 2022 +f 1920 2022 2153 +f 1920 2153 1744 +f 1743 1920 1744 +f 1742 1743 1744 +f 1742 1744 1845 +f 1855 1742 1845 +f 1860 1855 1845 +f 1860 1845 1869 +f 2131 1860 1869 +f 2131 2132 1860 +f 1845 2131 1869 +f 2137 1855 1860 +f 2137 1742 1855 +f 1744 2153 1845 +f 2153 2131 1845 +f 2058 1746 1745 +f 1789 1790 1746 +f 1747 1967 1748 +f 1967 1910 2354 +f 1785 1669 1671 +f 1785 1800 2028 +f 2324 2328 2329 +f 2328 2319 2321 +f 2349 2320 2319 +f 2375 2373 2372 +f 2375 2351 2373 +f 2351 2349 2350 +f 1912 2354 2349 +f 2047 1730 1732 +f 2047 2045 1731 +f 2045 2354 1912 +f 2146 2360 2354 +f 2330 2360 2146 +f 2359 2147 1921 +f 1726 1728 1729 +f 1726 1727 1728 +f 2330 2146 1727 +f 1649 2364 1928 +f 1717 2072 1951 +f 1951 1952 1953 +f 2078 2063 1953 +f 2064 1716 1971 +f 2064 2360 2330 +f 2078 2362 2063 +f 2132 2131 2360 +f 2132 2137 1860 +f 2137 1743 1742 +f 2201 2200 1694 +f 1694 2200 1685 +f 2203 2201 1700 +f 1743 2017 1920 +f 2115 2126 2125 +f 2116 2115 2125 +f 2113 2116 2125 +f 2123 2113 2125 +f 2124 2123 2125 +f 2124 2118 2123 +f 2118 2120 2123 +f 2118 2119 2120 +f 2119 2114 2120 +f 2114 2113 2120 +f 2111 2113 2114 +f 2111 2112 2113 +f 2289 2112 2111 +f 2383 2289 2111 +f 2383 2111 2379 +f 2382 2383 2379 +f 2081 2382 2379 +f 2082 2081 2379 +f 2086 2082 2379 +f 2089 2086 2379 +f 2094 2089 2379 +f 2313 2094 2379 +f 2313 2379 2378 +f 2378 2379 1676 +f 2378 1676 1668 +f 2378 1668 1661 +f 1661 1668 1667 +f 1668 1676 1675 +f 1676 1679 1675 +f 1676 2215 1679 +f 1676 2379 2215 +f 2379 2124 2215 +f 2215 2124 2213 +f 2094 2313 2096 +f 2090 2094 2096 +f 2103 2090 2096 +f 2102 2090 2103 +f 2101 2102 2103 +f 2101 2085 2102 +f 2102 2085 2088 +f 2085 2083 2088 +f 2083 2086 2088 +f 2085 2081 2083 +f 2101 2081 2085 +f 2102 2088 2090 +f 2088 2089 2090 +f 2313 2103 2096 +f 2313 2104 2103 +f 2089 2094 2090 +f 2086 2089 2088 +f 2082 2086 2083 +f 2081 2082 2083 +f 2384 2382 2081 +f 2382 2384 1715 +f 1713 2382 1715 +f 1711 1713 1715 +f 2385 1711 1715 +f 2385 2386 1711 +f 2386 1712 1711 +f 2386 2382 1712 +f 2385 2383 2386 +f 1711 1712 1713 +f 1712 2382 1713 +f 2386 2383 2382 +f 2111 2119 2379 +f 2383 2075 2289 +f 2289 2075 1757 +f 1751 2289 1757 +f 1749 1751 1757 +f 1749 1750 1751 +f 1750 2251 1751 +f 2076 2251 1750 +f 2075 2076 1750 +f 2076 2014 2251 +f 2251 2014 2112 +f 2112 2014 2115 +f 2388 2014 2076 +f 2388 2076 2383 +f 2376 2388 2383 +f 2387 2376 2383 +f 2173 2387 2383 +f 2166 2173 2383 +f 2173 2166 1900 +f 1879 2173 1900 +f 1877 1879 1900 +f 2165 1877 1900 +f 2165 1878 1877 +f 2165 2167 1878 +f 1878 2167 1879 +f 1877 1878 1879 +f 2167 2173 1879 +f 2167 2387 2173 +f 2273 2387 2167 +f 2273 2270 2387 +f 2270 2389 2387 +f 2389 2304 2387 +f 2304 2315 2387 +f 2315 2370 2387 +f 2315 2012 2370 +f 2370 2012 2377 +f 2370 2377 1758 +f 2370 1758 1762 +f 2376 2370 1762 +f 1762 1758 1760 +f 2388 1762 1760 +f 1759 2388 1760 +f 2377 2388 1759 +f 1758 1759 1760 +f 1758 2377 1759 +f 2315 2312 2012 +f 2312 2315 2314 +f 2306 2312 2314 +f 2309 2306 2314 +f 2309 2314 2316 +f 2304 2309 2316 +f 2304 2306 2309 +f 2304 2305 2306 +f 2305 2312 2306 +f 2305 2011 2312 +f 2295 2011 2305 +f 2295 2305 2389 +f 2298 2295 2389 +f 2390 2298 2389 +f 2284 2390 2389 +f 2287 2284 2389 +f 2284 2287 2285 +f 2283 2284 2285 +f 2290 2283 2285 +f 2288 2290 2285 +f 2288 2292 2290 +f 2290 2292 2283 +f 2292 2284 2283 +f 2291 2284 2292 +f 2390 2302 2298 +f 2298 2302 2303 +f 2298 2303 2301 +f 2298 2301 2297 +f 2301 2296 2297 +f 2296 2295 2297 +f 2294 2295 2296 +f 2303 2294 2296 +f 2301 2303 2296 +f 2302 2294 2303 +f 2302 2008 2294 +f 2194 2008 2302 +f 2194 2202 2008 +f 1937 2008 2202 +f 1937 2202 1938 +f 1936 1937 1938 +f 1936 1938 2139 +f 1947 1936 2139 +f 2196 1947 2139 +f 2195 2196 2139 +f 2195 2139 2148 +f 2195 2148 2151 +f 2194 2195 2151 +f 2140 2194 2151 +f 2148 2140 2151 +f 2148 2139 2140 +f 2190 1947 2196 +f 2192 2190 2196 +f 2190 2188 1947 +f 2188 2004 1947 +f 1947 2004 1937 +f 2187 2004 2188 +f 2187 2188 1987 +f 1974 2187 1987 +f 1974 1987 1755 +f 1975 1974 1755 +f 2018 1975 1755 +f 1754 2018 1755 +f 1754 1755 1756 +f 2018 1754 2171 +f 2171 1754 2178 +f 1754 1889 2178 +f 2216 1975 2018 +f 2216 2018 2122 +f 1950 1975 2216 +f 2185 1950 2216 +f 2185 2216 2109 +f 1651 1950 2185 +f 1652 1651 2185 +f 1652 2185 2099 +f 2080 1652 2099 +f 1899 1652 2080 +f 2070 1899 2080 +f 2070 2080 2079 +f 2069 2070 2079 +f 2061 2070 2069 +f 2061 1870 2070 +f 1644 1870 2061 +f 1644 2061 2164 +f 1838 1644 2164 +f 1838 2164 2163 +f 1642 1644 1838 +f 1837 1642 1838 +f 1837 1838 2162 +f 1837 2162 1914 +f 1776 1837 1914 +f 1776 1780 1837 +f 1777 1780 1776 +f 1774 1777 1776 +f 1774 1776 1773 +f 1771 1774 1773 +f 1774 1771 2255 +f 2255 1771 1767 +f 2255 1767 2256 +f 2255 2256 2257 +f 2253 2255 2257 +f 2253 2257 2254 +f 2253 2254 2250 +f 2252 2253 2250 +f 2254 2257 2250 +f 2257 2259 2250 +f 2259 2266 2250 +f 2266 2248 2250 +f 2248 2249 2250 +f 2266 2249 2248 +f 2265 2249 2266 +f 2259 2265 2266 +f 2256 2265 2259 +f 1849 2255 2253 +f 1777 2255 1849 +f 2234 1777 1849 +f 2234 1781 1777 +f 2234 1787 1781 +f 1781 1787 1786 +f 1781 1786 1780 +f 1780 1786 1642 +f 1786 1643 1642 +f 1786 1791 1643 +f 1791 1903 1643 +f 1643 1903 1870 +f 1903 1898 1870 +f 1870 1898 1899 +f 1898 1650 1899 +f 1898 1799 1650 +f 1799 1925 1650 +f 1650 1925 1651 +f 1925 1939 1651 +f 1925 2181 1939 +f 2181 2183 1939 +f 1939 2183 1949 +f 1939 1949 1950 +f 2183 2184 1949 +f 1949 2184 1974 +f 2183 2172 2184 +f 2184 2172 2004 +f 2172 2169 2004 +f 2169 2172 2170 +f 2168 2169 2170 +f 2176 2168 2170 +f 2182 2176 2170 +f 2219 2182 2170 +f 2219 2217 2182 +f 2217 2177 2182 +f 2217 2218 2177 +f 2218 2179 2177 +f 2179 2175 2177 +f 2175 2176 2177 +f 2209 2176 2175 +f 2218 2209 2175 +f 2220 2209 2218 +f 2040 2209 2220 +f 2010 2040 2220 +f 2050 2010 2220 +f 2054 2050 2220 +f 2010 2050 1783 +f 1782 2010 1783 +f 1782 1783 1784 +f 2009 2010 1782 +f 2365 2009 1782 +f 2199 2365 1782 +f 1798 2199 1782 +f 1798 2365 2199 +f 1909 2365 1798 +f 2365 1909 2041 +f 2365 2041 2009 +f 2041 2040 2009 +f 2039 2040 2041 +f 2040 2039 2210 +f 2039 2380 2210 +f 1783 2050 1822 +f 2040 2010 2009 +f 2040 2210 2209 +f 2209 2210 2176 +f 2210 2169 2176 +f 2210 2005 2169 +f 2218 2175 2179 +f 2218 2217 2180 +f 2221 2218 2180 +f 1796 2221 2180 +f 1796 2180 1799 +f 1796 1799 1795 +f 1792 1796 1795 +f 1792 1795 1791 +f 1787 1792 1791 +f 2228 1792 1787 +f 2226 1796 1792 +f 2226 2224 1796 +f 2180 2217 2181 +f 2217 2219 2181 +f 2177 2176 2182 +f 2176 2169 2168 +f 2172 2219 2170 +f 2219 2172 2183 +f 2181 2219 2183 +f 2180 2181 1925 +f 1799 2180 1925 +f 1795 1799 1898 +f 1795 1898 1903 +f 1791 1795 1903 +f 1787 1791 1786 +f 2257 2256 2259 +f 2256 1767 2265 +f 1767 1764 2265 +f 1764 2193 2265 +f 2193 1764 1766 +f 1764 1767 1765 +f 1767 1771 1770 +f 1777 1774 2255 +f 1777 1781 1780 +f 1780 1642 1837 +f 1642 1643 1644 +f 2164 2061 2042 +f 2042 2061 2062 +f 1643 1870 1644 +f 1870 1899 2070 +f 1899 1650 1652 +f 1650 1651 1652 +f 1651 1939 1950 +f 1950 1949 1975 +f 1949 1974 1975 +f 1755 1987 1756 +f 1987 1999 1756 +f 2184 2187 1974 +f 1987 2188 1999 +f 2184 2004 2187 +f 2188 2190 1999 +f 1999 2190 2003 +f 2139 1938 2140 +f 1947 1937 1936 +f 1938 2202 2140 +f 2202 2194 2140 +f 2194 2302 2390 +f 2295 2298 2297 +f 2295 2294 2011 +f 2314 2315 2316 +f 2315 2304 2316 +f 2389 2305 2304 +f 2278 2389 2270 +f 2278 2270 2279 +f 2279 2270 2269 +f 2275 2279 2269 +f 2275 2269 2271 +f 2274 2275 2271 +f 2274 2279 2275 +f 2269 2270 2271 +f 2270 2273 2271 +f 2387 2370 2376 +f 2388 2376 1762 +f 2388 2377 2014 +f 2075 1750 1749 +f 2251 2289 1751 +f 2075 1749 1757 +f 2383 2076 2075 +f 2289 2251 2112 +f 2119 2111 2114 +f 2119 2118 2379 +f 2118 2124 2379 +f 2120 2113 2123 +f 2113 2112 2116 +f 2112 2115 2116 +f 2126 2124 2125 +f 2124 2126 2207 +f 2207 2126 2204 +f 2213 2124 2207 +f 2215 2213 2214 +f 1679 2215 2214 +f 1675 1679 1735 +f 1668 1675 1667 +f 1661 1667 1660 +f 1655 1661 1660 +f 1680 1681 1682 +f 2361 1794 2353 +f 1682 1737 1775 +f 1737 1736 1793 +f 1736 1863 1793 +f 1863 2208 1976 +f 1976 1714 1708 +f 1714 1706 1708 +f 1706 2203 1700 +f 1700 2201 1694 +f 1821 1703 1696 +f 1820 1821 1811 +f 1830 1831 1820 +f 1839 1840 1830 +f 1803 1802 1839 +f 1794 1803 2353 +f 2361 2353 2174 +f 2191 2361 2174 +f 2261 2262 2191 +f 2052 2262 2261 +f 2299 2052 2261 +f 2052 1772 2262 +f 1763 1772 1778 +f 2001 2007 2258 +f 2277 1945 2258 +f 2015 2016 1945 +f 2019 2020 2016 +f 2024 2025 2020 +f 2024 1887 2025 +f 1887 1897 2025 +f 1997 2048 2049 +f 1797 1778 1997 +f 1788 1778 1797 +f 1970 1851 1788 +f 1832 1801 1814 +f 1836 1832 1844 +f 1828 1836 1833 +f 1828 1833 1823 +f 1823 1833 1986 +f 1816 1828 1823 +f 1816 1823 1813 +f 1813 1823 1982 +f 1807 1816 1813 +f 1807 1813 1805 +f 1805 1813 1980 +f 1804 1807 1805 +f 1804 1812 1689 +f 1694 1685 1689 +f 1628 1687 1686 +f 2200 2198 1685 +f 1626 2198 2362 +f 1628 1627 1688 +f 1629 1626 2364 +f 1627 1636 1695 +f 1637 1629 2364 +f 1636 1640 1702 +f 1641 1637 2364 +f 1640 1648 1707 +f 1649 1641 2364 +f 1648 1654 1970 +f 1655 1660 1654 +f 2378 1661 1655 +f 2104 2313 2378 +f 2104 2101 2103 +f 2384 2081 2101 +f 2384 2385 1715 +f 2166 2383 2385 +f 2166 2165 1900 +f 2273 2167 2165 +f 2273 2274 2271 +f 2274 2278 2279 +f 2287 2389 2278 +f 2287 2288 2285 +f 2253 2252 1849 +f 2288 2291 2292 +f 2291 2390 2284 +f 2249 2252 2250 +f 2265 2193 2249 +f 2195 2194 2390 +f 2192 2196 2195 +f 2190 2192 2003 +f 1999 2003 1756 +f 1889 1754 1756 +f 1889 1926 2155 +f 1916 2027 1969 +f 2027 2193 1766 +f 1917 1932 1955 +f 1911 1932 1917 +f 1932 1911 2156 +f 1764 1765 1766 +f 1854 1911 1917 +f 1723 1911 1854 +f 1911 1723 2158 +f 1767 1770 1765 +f 1724 1723 1854 +f 1771 1773 1770 +f 1773 1776 1914 +f 1722 1723 1724 +f 1723 1722 2159 +f 2162 1915 1914 +f 2162 1838 2163 +f 2163 2164 2038 +f 1665 1647 1666 +f 2164 2042 2038 +f 1783 1822 1784 +f 1856 1647 1665 +f 2050 2054 1822 +f 1856 1645 1647 +f 1645 1646 1647 +f 2054 2220 2239 +f 2220 2218 2221 +f 2224 2221 1796 +f 2243 2240 2222 +f 2224 2226 2225 +f 2228 2226 1792 +f 2246 2228 1787 +f 2234 2246 1787 +f 2235 2234 1849 +f 1849 1848 2235 +f 2238 2227 2236 +f 2242 2243 2238 +f 1646 1645 2242 +f 1848 1872 2235 +f 1848 1849 1850 +f 1873 1896 1934 +f 1873 1934 1935 +f 1934 1942 1935 +f 1896 1942 1934 +f 1919 1942 1896 +f 1919 2245 1942 +f 2211 2245 1919 +f 1719 2211 1919 +f 2128 1719 1919 +f 2332 2128 1919 +f 1918 2332 1919 +f 2245 2211 1959 +f 2211 2212 1959 +f 2212 1956 1959 +f 1959 1956 1927 +f 2212 2264 1956 +f 1956 2264 1913 +f 2212 2272 2264 +f 2211 2272 2212 +f 1906 1907 1850 +f 1907 1649 1928 +f 1928 2359 1921 +f 1918 1919 1896 +f 1921 2189 2348 +f 2347 2348 2374 +f 2347 2340 2344 +f 1918 2337 2332 +f 2337 2333 2332 +f 2338 2344 2371 +f 2371 2344 2368 +f 2344 2339 2368 +f 2337 2369 2367 +f 2344 2340 2339 +f 2340 2345 2341 +f 2341 2345 2358 +f 2345 2363 2358 +f 2358 2363 2356 +f 2342 2358 2356 +f 2346 2342 2356 +f 2363 2346 2356 +f 2363 2345 2346 +f 2345 2343 2346 +f 2342 2341 2358 +f 2343 2342 2346 +f 2345 2029 2343 +f 2325 2028 2029 +f 1800 2026 2028 +f 1790 2022 2026 +f 1920 2017 2022 +f 1957 1630 1948 +f 2115 2014 2017 +f 2377 2012 2014 +f 2312 2011 2012 +f 2294 2008 2011 +f 1937 2004 2008 +f 2169 2005 2004 +f 2380 2005 2210 +f 2380 2039 2041 +f 1909 1888 2041 +f 1888 1909 1861 +f 2381 1630 1957 +f 1631 1888 1857 +f 1888 1861 1857 +f 1909 1798 1861 +f 1798 1782 1784 +f 2042 2062 1784 +f 2062 2061 2069 +f 1827 1862 2307 +f 2069 2079 2280 +f 2079 2080 2095 +f 2080 2099 2095 +f 2099 2185 2109 +f 2109 2216 2122 +f 2122 2018 2171 +f 1943 1944 1945 +f 2171 2178 1954 +f 2178 1889 2155 +f 1944 2013 1945 +f 1926 2154 2155 +f 2013 2015 1945 +f 1932 2156 2154 +f 2015 2019 2016 +f 1911 2158 2156 +f 2019 2024 2020 +f 1723 2159 2158 +f 1722 2160 2159 +f 2024 2051 1887 +f 2160 2161 2030 +f 2030 2033 2031 +f 1666 1647 2031 +f 1887 2051 1940 +f 1646 1883 1647 +f 1883 1873 1935 +f 1942 1958 1935 +f 1885 1960 1884 +f 1942 2245 1958 +f 2245 1959 1927 +f 1956 1913 1927 +f 1895 1893 1892 +f 2264 2247 1913 +f 2264 2263 2247 +f 1893 2232 1894 +f 2231 2267 2230 +f 2229 2230 1664 +f 2229 2233 1994 +f 1994 2237 1633 +f 1948 1653 1633 +f 2282 2366 2157 +f 1825 2366 2282 +f 1826 1825 2282 +f 1630 1653 1948 +f 1630 1632 1827 +f 1827 2205 1962 +f 1962 2107 1963 +f 1963 2065 1904 +f 1904 2000 1905 +f 1905 1943 1808 +f 1810 2197 1826 +f 1809 1989 1810 +f 1808 2077 1815 +f 2060 1981 1809 +f 2093 1924 2060 +f 2135 1922 2093 +f 1815 2073 2068 +f 2068 1991 2067 +f 2067 1991 2059 +f 2059 1874 2055 +f 2110 1922 2135 +f 2110 2056 2074 +f 1874 1875 2055 +f 1806 1977 1875 +f 2056 1817 2074 +f 1805 1980 1977 +f 1817 1818 1819 +f 1813 1982 1980 +f 1818 1834 1819 +f 1823 1986 1982 +f 1834 1835 1819 +f 1833 1990 1986 +f 1990 1992 1897 +f 1835 1901 1819 +f 1887 1884 1897 +f 1884 1960 1931 +f 2097 2098 2092 +f 2091 2092 1930 +f 2087 1930 1929 +f 1960 1972 1931 +f 1972 2244 1978 +f 2130 1929 1973 +f 1978 1983 1979 +f 1983 2232 1988 +f 1988 1993 1998 +f 1998 1993 1995 +f 1866 1867 1868 +f 1995 1881 1880 +f 1946 1635 1881 +f 1635 1634 2100 +f 2157 2366 2100 +f 2130 1985 1866 +f 1825 2043 2366 +f 2130 2053 1929 +f 2037 2046 2043 +f 2046 1657 2057 +f 1657 1656 2057 +f 2053 2084 1929 +f 1656 2133 2057 +f 2084 2087 1929 +f 1891 2134 2133 +f 2087 2091 1930 +f 1890 2136 2134 +f 2091 2097 2092 +f 1964 2138 2136 +f 2097 2127 1901 +f 2142 2105 2127 +f 2143 2144 2142 +f 1871 1876 2143 +f 1720 1876 1871 +f 1964 2141 2138 +f 1890 1964 2136 +f 1891 1890 2134 +f 1656 1891 2133 +f 1656 1657 1658 +f 1659 1705 1658 +f 1709 1847 1710 +f 2268 2231 1705 +f 2260 2231 2247 +f 2263 2260 2247 +f 1709 1852 1847 +f 2272 2263 2264 +f 1852 1858 1853 +f 2286 2272 2211 +f 1858 1864 1859 +f 1719 2286 2211 +f 1864 1721 1865 +f 1721 1720 1871 +f 2128 1725 1719 +f 1720 1733 1876 +f 2128 1740 1725 +f 1733 1741 1882 +f 1752 1753 1741 +f 2323 2326 1752 +f 2326 2323 1846 +f 2128 2186 1740 +f 2128 2332 1841 +f 2129 1843 1842 +f 1846 2323 1842 +f 1933 2326 1846 +f 2332 2066 1841 +f 2332 2333 2066 +f 2331 2326 1933 +f 2337 2334 2333 +f 1761 2331 2318 +f 2334 2336 2335 +f 2336 2032 1965 +f 1966 1965 2293 +f 2310 1966 2308 +f 1625 1624 1638 +f 2317 2310 2311 +f 1623 1624 1625 +f 2327 2317 2318 +f 1622 1624 1623 +f 2327 1622 1621 + + +o Object.5 +v -23.926620 -125.801857 3.382252 +v -24.023338 -125.849861 3.141255 +v -24.070038 -125.902565 3.008450 +v -24.577934 -125.658852 3.477345 +v -24.601799 -125.891762 3.211453 +v -24.496948 -125.886757 3.106450 +v -19.667480 -121.792259 0.999646 +v -19.967911 -121.761452 0.999646 +v -21.389999 -120.042473 0.999646 +v -16.561901 -125.754951 3.419354 +v -19.926620 -125.657555 3.476346 +v -19.971561 -125.779259 3.364651 +v 23.966848 -125.814659 3.327252 +v 24.041889 -125.814156 3.142651 +v 24.119698 -122.828163 3.169743 +v 24.000729 -122.909660 3.249646 +v 20.491549 -122.849251 3.451046 +v 19.893248 -122.905663 3.499943 +v 20.408529 -122.822060 3.249646 +v -20.530823 -121.548759 0.999646 +v -7.924133 -120.292168 3.497944 +v -4.566620 -117.310570 3.475636 +v -7.917381 -117.596077 3.497036 +v -8.502941 -116.312874 3.143734 +v -8.606071 -117.596077 3.499638 +v -8.372101 -120.262581 3.110142 +v 0.323380 -125.602058 3.490147 +v 3.893250 -122.905663 3.499943 +v 4.453819 -120.348473 3.477047 +v 8.088650 -120.342873 3.462445 +v 8.023129 -120.276878 3.208447 +v 8.028229 -120.306572 3.442547 +v 4.501518 -125.795357 3.241055 +v 4.494938 -122.909660 3.213948 +v 4.394829 -122.833153 3.164242 +v 8.556599 -125.856560 3.285351 +v 8.506050 -125.847466 3.191555 +v 8.504528 -125.900963 3.048352 +v 29.711819 -112.912270 1.313641 +v 29.890598 -112.991676 -0.500362 +v 29.643829 -112.586372 -0.500370 +v -27.021278 -124.440865 0.149647 +v 27.251488 -124.421852 0.149647 +v -27.132568 -124.436455 -1.000354 +v -20.988403 -121.157951 0.999646 +v -21.286545 -120.635277 0.999646 +v 20.389999 -123.370964 0.999646 +v 26.948259 -123.370964 0.999646 +v 20.389999 -123.400658 0.149647 +v 29.448778 -112.512474 1.076634 +v -3.961292 -120.276772 3.482342 +v -0.264442 -117.315773 3.430935 +v -3.893932 -116.832680 3.380238 +v 16.014118 -122.738457 3.499447 +v 15.966848 -125.743156 3.403950 +v 16.037308 -122.807762 3.469647 +v 0.335190 -120.296074 3.499249 +v 3.893929 -117.596077 3.499638 +v 0.323380 -117.305168 3.477437 +v -12.023201 -120.296272 3.432744 +v -11.943432 -117.305977 3.470440 +v -12.010670 -120.257179 3.215344 +v -0.327923 -125.603859 3.491246 +v -3.910461 -125.803062 3.386654 +v -0.327923 -125.800453 3.385754 +v -21.363945 -119.741570 0.999646 +v 16.008398 -122.895760 3.211743 +v -22.463058 -118.432167 0.999638 +v -22.144173 -117.970772 0.999638 +v -22.463058 -118.432182 -2.200351 +v -17.993462 -120.635277 0.999646 +v -18.291603 -121.157951 0.999646 +v -17.993462 -119.449669 0.999646 +v -28.249168 -123.709862 -1.000354 +v -29.668961 -124.451454 -1.000354 +v -28.398834 -123.274452 -1.000354 +v -0.326092 -122.920662 3.495144 +v -0.261841 -125.685555 3.407544 +v -0.170712 -122.835060 3.178944 +v -17.890003 -120.042473 0.999646 +v -24.367691 -122.824562 3.177845 +v -24.449699 -122.830559 3.424649 +v -24.457413 -122.886253 3.154446 +v -18.503471 -121.373161 0.999646 +v 29.282688 -112.278572 -0.500370 +v 29.036568 -112.245171 0.977429 +v -8.411350 -120.342873 3.462445 +v -8.071583 -120.364769 3.483944 +v -8.059650 -120.292366 3.169644 +v -21.160103 -119.175377 0.999638 +v 23.973488 -122.798561 3.495442 +v -18.291603 -118.926979 0.999638 +v -27.417862 -120.717476 -1.000354 +v -27.417862 -121.892464 -1.000354 +v -28.338051 -120.709877 -1.000354 +v 0.356068 -125.866554 3.293156 +v 0.245529 -125.786263 3.213353 +v 0.156559 -125.881660 3.063954 +v -20.032772 -122.761360 3.495747 +v -19.904942 -122.851860 3.499546 +v -16.595062 -120.291573 3.499546 +v -27.234619 -125.847557 3.286755 +v 4.556969 -120.284279 3.492344 +v 7.933380 -117.310570 3.475636 +v 4.573380 -117.596077 3.494435 +v -16.577923 -125.603859 3.491246 +v 19.691048 -116.792870 -0.500362 +v 18.889999 -116.880180 -0.500362 +v 18.889999 -114.033577 -0.500362 +v 28.594330 -112.141777 0.958828 +v -20.529041 -120.245979 3.467648 +v -23.992714 -122.890755 3.440342 +v -20.411350 -120.342873 3.462445 +v -20.776535 -118.711769 0.999638 +v -8.561901 -125.708153 3.449650 +v -11.982403 -125.690056 3.416348 +v -11.910461 -125.803062 3.386654 +v -18.749180 -118.536171 0.999638 +v -19.943031 -120.284279 3.492344 +v -16.566612 -117.310570 3.475636 +v -19.971561 -117.308479 3.449040 +v 15.915808 -120.295876 3.499142 +v 12.532259 -122.836555 3.487446 +v 16.493559 -120.358467 3.492344 +v -20.740898 -123.100273 -2.200344 +v -20.390003 -123.204659 0.999646 +v -21.250244 -122.865471 -2.200344 +v 8.576088 -120.222771 3.495144 +v 11.985558 -117.315773 3.430935 +v 8.573380 -117.305168 3.477437 +v -20.258591 -118.405373 0.999638 +v -12.606071 -117.596077 3.499638 +v -12.582840 -117.022667 3.430340 +v -15.943432 -117.305977 3.470440 +v -19.021423 -121.679451 0.999646 +v -19.312080 -118.323479 0.999638 +v -4.010490 -122.880760 3.227543 +v -4.120132 -122.833260 3.157742 +v -4.008041 -125.824455 3.186154 +v 28.752758 -112.080879 -0.500370 +v 27.230949 -123.253960 0.999943 +v 27.071838 -123.389458 0.149746 +v -19.312080 -121.761452 0.999646 +v 2.398289 -120.042488 -2.309047 +v 2.276810 -120.042488 -2.420047 +v 2.174217 -119.366982 -2.420047 +v -21.711624 -122.546577 -2.200344 +v -21.750710 -122.513756 0.999646 +v -22.111320 -122.153175 -2.200344 +v 28.502899 -112.059868 -0.500370 +v -16.029003 -120.391777 3.498143 +v -16.014400 -120.271675 3.233143 +v -2.251720 -120.717491 -2.361743 +v -2.398293 -120.042488 -2.309047 +v -2.205162 -120.042488 -2.458545 +v 29.845518 -117.101372 3.238736 +v 29.757259 -123.621254 3.286747 +v 29.992237 -114.163673 -0.500362 +v -22.463058 -121.652657 0.999646 +v -22.819145 -120.717476 0.999646 +v -22.680199 -121.191277 -2.200344 +v -21.294388 -122.839851 0.999646 +v -22.832428 -120.651482 -2.200344 +v -22.819145 -120.717476 -0.500354 +v -22.889603 -120.093483 -2.200344 +v 20.597258 -125.866264 3.292950 +v 20.489668 -125.870354 3.130650 +v 27.336849 -123.065163 0.999745 +v 27.363539 -123.106453 0.149746 +v 16.460869 -120.717476 -0.500354 +v 16.389999 -120.042473 -0.500354 +v 16.438389 -120.601189 -2.200344 +v 4.573380 -125.711266 3.452954 +v 4.520687 -125.885658 3.135556 +v -27.579819 -124.324364 -1.000354 +v -28.668991 -125.549355 -1.000354 +v -27.964371 -124.074654 -1.000354 +v 12.438299 -120.345467 3.470242 +v 15.948788 -117.025566 3.417935 +v 12.606068 -116.830467 3.379536 +v 18.503468 -121.373161 0.999646 +v 18.119898 -120.909462 0.999646 +v 17.916058 -120.343376 0.999646 +v 29.886719 -113.294670 1.389935 +v 19.900568 -117.309776 3.482937 +v 20.022268 -120.271675 3.201245 +v 20.073668 -116.268272 3.111439 +v 11.958969 -122.830559 3.492245 +v 11.938099 -125.754951 3.419354 +v 11.998379 -125.794456 3.243054 +v 27.882479 -124.144066 0.149647 +v 27.251488 -124.421852 -1.000354 +v -0.675503 -117.868294 -2.420055 +v 0.675030 -117.790688 -2.361553 +v 0.675690 -117.925987 -2.450954 +v 21.286539 -120.635277 0.999646 +v 20.988398 -121.157951 0.999646 +v 21.389999 -120.042473 0.999646 +v 24.038908 -125.901161 3.031750 +v 29.995628 -113.420967 -0.500362 +v 29.989639 -123.466164 -1.000354 +v 30.016998 -114.211571 -1.000362 +v -12.430103 -122.769661 3.489247 +v -12.006302 -122.831352 3.468342 +v -8.482861 -120.342278 3.482449 +v -19.640003 -121.792473 -2.500347 +v 17.916058 -119.741570 0.999646 +v 21.286539 -119.449669 0.999646 +v 4.032497 -122.760551 3.495945 +v 29.190548 -124.546364 3.442044 +v 28.737537 -125.090660 3.416043 +v 29.279799 -124.609856 3.326649 +v -20.258591 -121.679466 -2.500347 +v -20.776535 -121.373177 -2.500347 +v 28.417858 -121.892464 -1.000354 +v 28.478218 -120.662971 -1.000354 +v 28.604778 -120.570976 -1.000354 +v -28.417862 -121.892464 -1.000354 +v -28.634254 -120.538872 -1.000354 +v -16.400002 -122.764351 3.490048 +v 20.530819 -121.548759 0.999646 +v -0.200790 -122.802254 3.469944 +v 18.119898 -119.175377 0.999638 +v 20.988398 -118.926979 0.999638 +v -21.160103 -120.909477 -2.500347 +v -21.363945 -120.343391 -2.500347 +v 28.375978 -123.384056 -1.000354 +v 28.417858 -121.892464 0.149647 +v 19.639999 -121.792458 0.999646 +v 19.021418 -121.679451 0.999646 +v 18.503468 -118.711769 0.999638 +v -8.569160 -122.920753 3.492749 +v 27.260639 -123.283653 0.149945 +v -21.363945 -119.741585 -2.500347 +v -21.160103 -119.175392 -2.500354 +v -0.213242 -125.871452 3.105450 +v 19.967918 -121.761452 0.999646 +v 20.530819 -118.536171 0.999638 +v 12.077429 -122.890862 3.123944 +v -20.776535 -118.711784 -2.500354 +v -2.350803 -119.367287 -2.236248 +v -4.541031 -122.830559 3.492245 +v -4.523483 -122.910652 3.459546 +v -4.452442 -122.842354 3.207249 +v -24.507599 -116.576271 3.224736 +v -24.477730 -120.271675 3.201245 +v -24.411514 -116.193474 3.089634 +v -20.258591 -118.405388 -2.500354 +v 28.375978 -123.384056 0.149647 +v 19.021418 -118.405373 0.999638 +v 27.377708 -121.892464 0.149647 +v 27.417858 -121.892464 -1.000354 +v 27.400398 -120.717476 -0.500354 +v 28.329437 -120.711281 -0.500354 +v 27.417858 -120.717476 -1.000354 +v 19.967918 -118.323479 0.999638 +v -19.312080 -118.323494 -2.500354 +v 23.922068 -125.603859 3.491246 +v 29.668959 -124.451454 -1.000354 +v 28.193048 -123.804558 -1.000354 +v 28.655727 -120.511375 -0.500354 +v 28.745068 -120.295677 -1.000354 +v -23.983063 -120.281578 3.468243 +v -20.606060 -117.596077 3.499638 +v -23.943428 -117.019875 3.419735 +v -20.577930 -125.603859 3.491246 +v -23.982399 -125.595757 3.448246 +v -27.579819 -124.324364 0.149647 +v 4.507290 -122.890755 3.440342 +v 29.448238 -112.641975 1.261227 +v 29.721409 -113.237267 1.561337 +v 19.639999 -121.792473 -2.500347 +v 19.021418 -121.679466 -2.500347 +v -7.926620 -125.602058 3.490147 +v -7.934341 -122.890465 3.492245 +v -8.114540 -122.835060 3.156147 +v 7.997059 -116.312874 3.143734 +v 20.389999 -123.204659 0.999646 +v 20.389999 -123.204659 0.149647 +v 20.098768 -125.895164 3.037556 +v 19.899498 -125.887566 3.231053 +v 16.098759 -125.895164 3.037556 +v -19.312080 -121.761467 -2.500347 +v 20.389999 -114.033577 -0.500362 +v 18.503468 -121.373177 -2.500347 +v 21.750708 -117.571175 0.999638 +v 21.294378 -117.245079 0.999638 +v 27.348019 -116.658073 0.999638 +v 18.119898 -120.909477 -2.500347 +v 28.776447 -114.643578 -1.000362 +v -16.071232 -116.366966 3.121838 +v -15.910473 -116.742775 3.348141 +v -18.749180 -121.548775 -2.500347 +v 17.916058 -120.343391 -2.500347 +v -8.063923 -125.793663 3.126950 +v 8.042587 -122.886253 3.154446 +v 7.978539 -125.772453 3.359654 +v 8.030640 -125.800758 3.158055 +v 4.517597 -125.595757 3.448246 +v 7.995979 -122.854851 3.460049 +v 17.916058 -119.741585 -2.500347 +v -18.291603 -121.157967 -2.500347 +v 18.119898 -119.175392 -2.500354 +v -17.993462 -120.635292 -2.500347 +v 19.922068 -125.603859 3.491246 +v 19.938099 -125.754951 3.419354 +v -8.452633 -125.850960 3.118550 +v 20.070049 -120.373070 3.488842 +v 20.556969 -120.284279 3.492344 +v 18.503468 -118.711784 -2.500354 +v -17.890003 -120.042488 -2.500347 +v 20.389999 -116.880180 0.999638 +v 28.762287 -114.692772 -0.500362 +v -12.569160 -122.920753 3.492749 +v -12.577930 -125.603859 3.491246 +v -12.430401 -122.822655 3.425549 +v 19.021418 -118.405388 -2.500354 +v -28.531158 -112.178078 1.027432 +v -28.980484 -112.137978 -0.500370 +v 22.819128 -119.367470 0.999646 +v 22.463049 -118.432167 0.999638 +v 27.811419 -125.617958 3.416043 +v 27.670038 -125.776756 3.244252 +v 16.606068 -116.830467 3.379536 +v 19.967918 -118.323494 -2.500354 +v -2.405453 -120.717476 -2.080745 +v -2.505001 -120.042473 -0.500354 +v -2.498062 -120.042473 -2.083347 +v -29.995628 -113.420967 -0.500362 +v -29.844559 -113.169472 1.368840 +v -29.876938 -112.959373 -0.500362 +v -17.993462 -119.449684 -2.500347 +v -15.926620 -125.657555 3.476346 +v -12.467140 -120.381981 3.495747 +v -12.540310 -116.446770 3.207638 +v -12.467411 -120.234779 3.157643 +v -12.411522 -116.193474 3.089634 +v 20.248989 -123.234871 -2.200344 +v 19.639999 -123.292473 -2.200344 +v 20.192778 -122.940178 -2.500347 +v -18.291603 -118.926994 -2.500354 +v 19.639999 -122.992470 -2.500347 +v 20.788788 -123.082680 -2.200344 +v -18.749180 -118.536186 -2.500354 +v -29.741470 -123.136665 3.416043 +v -29.524643 -117.286674 3.480435 +v -29.655128 -116.988670 3.399540 +v 21.294378 -122.839867 -2.200344 +v 21.141668 -122.581673 -2.500347 +v 21.750708 -122.513771 -2.200344 +v 22.144169 -122.114067 -2.200344 +v 21.913008 -121.922874 -2.500347 +v 27.348019 -119.367470 0.999646 +v 28.880058 -114.407280 -1.000362 +v 18.889999 -123.400658 0.149647 +v 18.889999 -123.370964 0.999646 +v 18.889999 -123.204659 0.149647 +v -27.204819 -125.602455 3.491543 +v 22.463049 -121.652672 -2.200344 +v 22.697859 -121.143379 -2.200344 +v 22.415598 -121.041771 -2.500347 +v 24.556568 -117.305977 3.470440 +v 29.652868 -117.363579 3.464337 +v 24.606068 -116.811974 3.373440 +v 29.658928 -123.237465 3.463345 +v 24.493698 -122.831352 3.468342 +v 15.899498 -125.887566 3.231053 +v 12.439648 -125.827461 3.122853 +v 12.573378 -125.602562 3.490048 +v 12.506048 -125.847466 3.191555 +v 19.967918 -121.761467 -2.500347 +v 22.841608 -120.601189 -2.200344 +v -28.572624 -120.600471 -0.500354 +v -28.338051 -120.709877 -0.500354 +v 22.889999 -120.042488 -2.200344 +v 22.589998 -120.042488 -2.500347 +v 22.144169 -117.970772 0.999638 +v 29.188028 -114.112175 -0.500362 +v 29.297367 -114.083778 -1.000362 +v 22.841608 -119.483696 -2.200344 +v 20.530819 -121.548775 -2.500347 +v -7.910461 -125.803062 3.386654 +v 18.889999 -123.204659 0.999646 +v 22.697859 -118.941582 -2.200351 +v 22.415598 -119.043190 -2.500354 +v 20.988398 -121.157967 -2.500347 +v 8.573380 -125.602562 3.490048 +v 8.467228 -122.761360 3.495747 +v 8.457027 -122.839561 3.249646 +v 22.463049 -118.432182 -2.200351 +v -16.529491 -122.897362 3.468045 +v 22.144169 -117.970787 -2.200351 +v 21.913008 -118.162086 -2.500354 +v 28.838417 -114.462074 -0.500362 +v 21.750708 -117.571190 -2.200351 +v -20.594452 -125.838264 3.342953 +v 20.389948 -120.282677 3.126744 +v 21.286539 -120.635292 -2.500347 +v 21.294378 -117.245094 -2.200351 +v 21.141668 -117.503288 -2.500354 +v -24.099991 -122.748055 3.496045 +v 20.788788 -117.002281 -2.200351 +v 21.389999 -120.042488 -2.500347 +v 20.248989 -116.849983 -2.200351 +v 20.192778 -117.144691 -2.500354 +v 20.389999 -116.880180 -0.500362 +v 19.691048 -116.792885 -2.200351 +v 0.000000 -117.544380 -2.083355 +v 0.675117 -117.637367 -2.083355 +v 0.000000 -117.644188 -2.309055 +v -29.989639 -123.466164 -1.000354 +v 20.389999 -116.658073 0.999638 +v 21.286539 -119.449684 -2.500347 +v 11.967289 -120.351372 3.497448 +v 12.023129 -120.276878 3.208447 +v -19.640003 -123.292458 0.149647 +v -19.640003 -123.292473 -2.200344 +v -19.081230 -123.244072 -2.200344 +v -20.740898 -116.984596 -2.200351 +v -19.588951 -116.792870 -0.500362 +v -19.640003 -116.792488 -2.200351 +v -20.400002 -122.757362 3.493046 +v -20.022270 -122.871651 3.201245 +v 27.117809 -125.814461 3.363354 +v 7.899498 -125.887566 3.231053 +v 4.400749 -125.863258 3.082554 +v -18.890003 -123.204659 0.149647 +v -0.675243 -117.657066 -2.159252 +v -18.539101 -123.100273 -2.200344 +v 20.988398 -118.926994 -2.500354 +v -18.890003 -123.204659 0.999646 +v -22.437408 -121.696877 -2.200344 +v -30.012695 -114.191170 -1.000362 +v 4.489330 -120.257179 3.215344 +v -17.985622 -122.839851 0.999646 +v -18.029762 -122.865471 -2.200344 +v 8.041180 -125.880455 3.089451 +v 16.546318 -122.894264 3.482045 +v 19.904938 -120.291573 3.499546 +v 23.985558 -117.315773 3.430935 +v 20.573389 -117.305168 3.477437 +v 20.530819 -118.536186 -2.500354 +v 3.976688 -125.900459 3.063855 +v 3.899498 -125.887566 3.231053 +v -17.529301 -122.513756 0.999646 +v -17.568371 -122.546577 -2.200344 +v 27.400398 -114.033577 -0.500362 +v -24.506088 -122.819054 3.482548 +v 4.573380 -117.018272 3.426640 +v 4.441628 -116.169975 3.080441 +v 4.451729 -116.356880 3.134335 +v 23.948788 -116.747475 3.334935 +v 20.602808 -116.608269 3.295842 +v -17.135830 -122.114052 0.999646 +v -17.168682 -122.153175 -2.200344 +v -20.043610 -125.871651 3.100354 +v -20.491600 -122.895760 3.211743 +v -12.556160 -120.284081 3.492047 +v 21.294378 -122.839851 0.999646 +v -29.230309 -112.433372 1.156033 +v -28.456490 -112.298576 1.129132 +v 29.568548 -116.904671 3.399640 +v -27.860580 -125.438255 3.491543 +v -24.450600 -120.340767 3.469548 +v -16.816952 -121.652657 0.999646 +v -16.842590 -121.696877 -2.200344 +v 12.385458 -122.835060 3.156147 +v -16.458881 -120.278481 3.174443 +v -16.460873 -120.717476 0.999646 +v -16.599812 -121.191277 -2.200344 +v 0.674999 -119.367470 0.999646 +v 16.460869 -119.367470 0.999646 +v 16.460869 -119.367470 -0.500354 +v -16.460873 -120.717476 -0.500354 +v 24.466179 -120.317680 3.452549 +v -8.485882 -122.738457 3.499447 +v -8.445583 -122.848457 3.180249 +v 21.750708 -122.513756 0.999646 +v -19.132813 -122.948479 -2.500347 +v -19.640003 -122.992470 -2.500347 +v -16.447571 -120.651482 -2.200344 +v -4.082481 -125.899254 3.028454 +v -16.390400 -120.093483 -2.200344 +v -16.390003 -120.042473 -0.500354 +v -16.460873 -119.367470 -0.500354 +v -16.438393 -119.483696 -2.200344 +v 2.385330 -119.367180 -2.159244 +v -16.460873 -119.367470 0.999646 +v -16.582142 -118.941582 -2.200351 +v 27.762018 -125.474358 3.491543 +v -18.178402 -122.604866 -2.500347 +v 0.674999 -114.033577 -0.500362 +v 0.674999 -117.630074 -0.500362 +v -0.675003 -114.033577 -0.500362 +v -20.639282 -122.818077 -2.500347 +v 2.412338 -119.367470 -0.500354 +v -16.816952 -118.432167 0.999638 +v 23.957838 -120.367378 3.499142 +v 20.418459 -122.722359 3.500348 +v -16.816952 -118.432182 -2.200351 +v -17.135830 -117.970772 0.999638 +v -20.390003 -116.880180 -0.500362 +v -17.135830 -117.970787 -2.200351 +v -17.396801 -121.958275 -2.500347 +v -22.819145 -119.367470 -0.500354 +v -22.841599 -119.483696 -2.200344 +v -21.520401 -122.315468 -2.500347 +v 2.405308 -120.717476 -2.083347 +v 2.301388 -120.717491 -2.309246 +v 2.498070 -120.042473 -2.083347 +v -17.529301 -117.571175 0.999638 +v 3.995979 -122.854851 3.460049 +v -17.529301 -117.571190 -2.200351 +v -17.985622 -117.245079 0.999638 +v 16.816948 -121.652672 -2.200344 +v 16.460869 -120.717476 0.999646 +v 16.582138 -121.143379 -2.200344 +v -29.673904 -112.799767 1.221432 +v -16.880440 -121.085167 -2.500347 +v -16.060352 -125.827461 3.122853 +v -16.463230 -125.801064 3.150654 +v -16.401241 -125.895164 3.037556 +v -22.179192 -121.544075 -2.500347 +v -8.006821 -122.785561 3.492047 +v 24.079229 -120.326073 3.435246 +v -17.985622 -117.245094 -2.200351 +v -18.890003 -116.880180 0.999638 +v -18.890003 -116.880180 -0.500362 +v -18.539101 -116.984596 -2.200351 +v -29.058289 -125.244560 -1.000354 +v 16.036768 -125.801064 3.150654 +v -22.537750 -120.595192 -2.500347 +v -16.400002 -120.366966 3.483349 +v -4.477722 -120.271675 3.201245 +v -4.059650 -120.292366 3.169644 +v -16.690361 -120.088783 -2.500347 +v -4.472301 -125.893654 3.069851 +v -4.514542 -125.857857 3.192250 +v -8.140671 -125.852760 3.083050 +v -8.023350 -125.849861 3.141255 +v 29.702608 -113.479271 1.701535 +v 19.639999 -123.292458 0.149647 +v -22.537750 -119.489693 -2.500347 +v -16.880440 -118.999687 -2.500354 +v 22.144169 -122.114052 0.999646 +v -8.602802 -116.607475 3.295437 +v -11.926620 -117.018272 3.426640 +v -22.179192 -118.540794 -2.500354 +v 22.463049 -121.652657 0.999646 +v -17.396801 -118.126595 -2.500354 +v 4.017147 -120.342278 3.482449 +v 0.282848 -122.792152 3.497448 +v 12.506519 -116.416878 3.179837 +v 12.400059 -116.152473 3.071637 +v 12.486019 -120.234779 3.188443 +v -21.520401 -117.769493 -2.500354 +v 22.819128 -120.717476 0.999646 +v -0.290291 -120.312477 3.491948 +v -3.960373 -122.785255 3.498745 +v -27.915482 -125.579964 3.416043 +v -28.523384 -125.213554 3.442044 +v 22.819128 -120.717476 -0.500354 +v -4.546272 -120.249367 3.482045 +v -0.161350 -120.342873 3.462445 +v 0.139950 -120.282677 3.126744 +v -0.234520 -120.268181 3.216443 +v -18.178402 -117.479988 -2.500354 +v -4.540310 -116.446770 3.207638 +v 11.976679 -125.900459 3.063855 +v -11.926620 -125.602058 3.490147 +v 22.889999 -120.042473 -0.500354 +v 22.819128 -119.367470 -0.500354 +v -20.523312 -125.900459 3.063855 +v -16.012012 -122.793556 3.487744 +v -20.639282 -117.266884 -2.500354 +v 29.929607 -114.075676 -1.000362 +v 29.853218 -114.031776 -0.500362 +v -19.132813 -117.136391 -2.500354 +v 0.158527 -122.829262 3.183545 +v -16.600502 -125.887566 3.231053 +v -8.401241 -125.895164 3.037556 +v -8.594452 -125.838264 3.342953 +v -12.082481 -125.899254 3.028454 +v -29.912544 -114.065575 -1.000362 +v 4.007668 -120.247566 3.214543 +v -27.178154 -123.298363 0.999943 +v -26.948265 -123.370964 0.999646 +v -27.083458 -123.386559 0.149746 +v 2.174408 -120.717491 -2.420146 +v -1.945930 -120.717491 -2.497448 +v 16.422699 -120.319069 3.249646 +v 16.486029 -120.234779 3.188443 +v 16.101448 -120.315178 3.179348 +v 20.565649 -122.855659 3.495442 +v 24.569748 -125.881660 3.231755 +v 24.573378 -125.602058 3.490147 +v 24.384068 -122.883354 3.111348 +v -29.753822 -123.693062 3.244244 +v -29.860420 -123.146461 3.199849 +v 0.674999 -119.367485 -2.500347 +v -20.390003 -123.204659 0.149647 +v -2.032162 -119.366890 -2.481350 +v -0.675003 -119.367485 -2.500347 +v 29.603798 -123.956566 3.363347 +v 12.025558 -122.742760 3.499249 +v 16.441629 -116.169975 3.080441 +v -16.042973 -122.839561 3.249646 +v 27.400398 -119.367470 -0.500354 +v -0.675003 -117.630074 -0.500362 +v -29.768272 -113.322075 1.581234 +v -4.511841 -125.761360 3.349255 +v 16.476648 -125.849861 3.141255 +v -29.568008 -112.503868 -0.500370 +v -4.577930 -125.603859 3.491246 +v 27.348019 -120.717476 0.999646 +v 8.541397 -117.022072 3.410237 +v 11.917158 -117.022667 3.430340 +v 28.298119 -125.757164 -1.000347 +v 27.882479 -124.144066 -1.000354 +v -3.926613 -125.602058 3.490147 +v -22.144173 -117.970787 -2.200351 +v 16.573378 -125.657555 3.476346 +v -27.275345 -123.201164 0.999943 +v -27.260643 -123.283653 0.149945 +v -27.366531 -123.094856 0.149746 +v 18.597248 -122.801979 -2.500347 +v -20.198772 -123.244072 -2.200344 +v -24.029045 -122.871651 3.186146 +v 3.922070 -125.658852 3.477345 +v 0.323380 -125.757957 3.422650 +v 4.413967 -120.315178 3.192944 +v 17.724129 -122.285667 -2.500347 +v -29.358139 -124.115654 3.479947 +v -0.281071 -116.752876 3.320141 +v 7.978539 -125.646461 3.441143 +v 17.077538 -121.504066 -2.500347 +v 27.021269 -126.042458 -1.000347 +v -29.525314 -124.197563 3.326649 +v -21.750710 -117.571175 0.999638 +v -29.067688 -124.760551 3.416043 +v -29.001503 -112.229774 0.969632 +v 16.733929 -120.549690 -2.500347 +v -24.134415 -122.860756 3.121243 +v 0.181808 -120.382973 3.493443 +v 8.465919 -116.286079 3.125439 +v 8.389938 -120.282677 3.126744 +v -12.501011 -125.859459 3.162152 +v -15.926620 -125.835457 3.339055 +v -15.995472 -125.900963 3.048352 +v 4.040268 -122.895760 3.152447 +v 29.058298 -125.244560 -1.000354 +v 16.733929 -119.535286 -2.500347 +v -16.491592 -122.895760 3.211743 +v -27.400398 -120.717476 -0.500354 +v 20.573389 -125.602058 3.490147 +v -27.348022 -120.717476 0.999646 +v -27.348022 -119.367470 0.999646 +v -22.819145 -119.367470 0.999646 +v -27.400398 -119.367470 -0.500354 +v 8.459728 -122.895760 3.152447 +v -27.348022 -116.658073 0.999638 +v -27.400398 -114.033577 -0.500362 +v 17.077538 -118.580894 -2.500354 +v -20.390003 -116.658073 0.999638 +v -20.390003 -114.033577 -0.500362 +v 28.193048 -123.804558 0.149647 +v -7.943432 -117.305977 3.470440 +v -8.058372 -116.169975 3.080441 +v -27.964371 -124.074654 0.149647 +v -20.390003 -116.880180 0.999638 +v 17.724129 -117.799294 -2.500354 +v -20.390003 -123.370964 0.999646 +v -3.992710 -122.890755 3.440342 +v -18.890003 -116.658073 0.999638 +v -29.846069 -117.035179 3.222935 +v -29.658401 -116.696480 3.305737 +v -18.890003 -114.033577 -0.500362 +v -0.675003 -116.658073 0.999638 +v -28.762291 -114.710274 -1.000362 +v -29.304008 -114.081581 -1.000362 +v 18.597248 -117.282890 -2.500354 +v -20.059650 -120.292366 3.169644 +v -0.675003 -119.367470 0.999646 +v 4.088478 -116.193474 3.089634 +v 24.375938 -125.816261 3.099553 +v 20.038048 -122.860756 3.185048 +v -28.904015 -114.372368 -1.000362 +v 28.456490 -112.298576 1.129132 +v 16.385458 -122.835060 3.156147 +v -24.571671 -120.223473 3.493947 +v -24.537071 -117.312675 3.457837 +v -2.412342 -120.717476 -0.500354 +v 7.917160 -117.022667 3.430340 +v -12.455170 -122.838264 3.249646 +v -12.062141 -122.911461 3.128743 +v -22.144173 -122.114052 0.999646 +v -12.040241 -122.853554 3.193745 +v 0.267609 -117.028069 3.385441 +v -24.059654 -120.292366 3.169644 +v -20.058361 -116.169975 3.080441 +v -20.502941 -116.312874 3.143734 +v -23.981514 -116.301476 3.142941 +v -20.492332 -120.247566 3.214543 +v 2.504997 -120.042473 -0.500354 +v 2.412338 -120.717476 -0.500354 +v -16.411522 -116.193474 3.089634 +v 27.318838 -126.027657 -1.000347 +v -12.058372 -116.169975 3.080441 +v -4.058372 -116.169975 3.080441 +v -4.411522 -116.193474 3.089634 +v 0.191628 -116.169975 3.080441 +v -0.161522 -116.193474 3.089634 +v 8.127899 -120.262581 3.110142 +v 20.451729 -116.356880 3.134335 +v 11.997059 -116.312874 3.143734 +v 12.127899 -120.262581 3.110142 +v 16.088478 -116.193474 3.089634 +v 24.495188 -116.520378 3.195637 +v -28.586899 -125.302757 3.326649 +v 19.987429 -120.254280 3.450047 +v 24.440348 -120.292366 3.169644 +v 24.349998 -116.234871 3.095738 +v 24.096018 -116.154076 3.072438 +v 24.022278 -120.271675 3.201245 +v 19.900568 -116.742378 3.349141 +v 16.492268 -120.269371 3.421147 +v -27.021278 -126.042458 -1.000347 +v -12.546833 -125.790062 3.376057 +v -22.697861 -118.941582 -2.200351 +v -20.576881 -116.743675 3.345440 +v -20.390003 -123.400658 0.149647 +v -27.786682 -125.943153 -1.000347 +v -21.750710 -117.571190 -2.200351 +v -21.294388 -117.245094 -2.200351 +v -28.818344 -114.504570 -0.500362 +v -29.171249 -114.121071 -0.500362 +v -28.249168 -123.709862 0.149647 +v -29.978844 -114.131874 -0.500362 +v 0.674999 -120.717476 0.999646 +v -0.675003 -120.717476 0.149647 +v -0.675003 -120.717476 0.999646 +v 0.674999 -120.717476 0.149647 +v -28.398834 -123.274452 0.149647 +v 19.031008 -123.234871 -2.200344 +v 18.491209 -123.082680 -2.200344 +v 0.674999 -116.658073 0.999638 +v 17.985609 -122.839867 -2.200344 +v -22.890015 -120.042473 -0.500354 +v 17.529289 -122.513771 -2.200344 +v -18.890003 -123.370964 0.999646 +v -18.890003 -123.400658 0.149647 +v 17.135828 -122.114067 -2.200344 +v -21.294388 -117.245079 0.999638 +v 0.674999 -123.400658 0.149647 +v -0.675003 -123.400658 0.149647 +v 16.389999 -120.042488 -2.200344 +v 16.438389 -119.483696 -2.200344 +v 16.582138 -118.941582 -2.200351 +v 16.816948 -118.432182 -2.200351 +v 17.135828 -117.970787 -2.200351 +v 17.529289 -117.571190 -2.200351 +v -2.405113 -119.367378 -2.083347 +v -0.675003 -123.370964 0.999646 +v 17.985609 -117.245094 -2.200351 +v 18.491209 -117.002281 -2.200351 +v 19.031008 -116.849983 -2.200351 +v 0.674999 -123.370964 0.999646 +v 17.985609 -122.839851 0.999646 +v 17.529289 -122.513756 0.999646 +v 17.135828 -122.114052 0.999646 +v 16.816948 -121.652657 0.999646 +v -2.412342 -119.367470 -0.500354 +v -28.721085 -120.388481 -0.500354 +v -27.377701 -121.892464 0.149647 +v -28.417862 -121.892464 0.149647 +v 17.135828 -117.970772 0.999638 +v 16.816948 -118.432167 0.999638 +v 18.889999 -116.880180 0.999638 +v 18.889999 -116.658073 0.999638 +v 17.985609 -117.245079 0.999638 +v 17.529289 -117.571175 0.999638 +v -28.754692 -114.751076 -0.500362 + +f 2391 2392 2393 +f 2963 2391 2393 +f 2963 2393 3117 +f 2970 2963 3117 +f 2912 2970 3117 +f 3039 2912 3117 +f 3027 3039 3117 +f 3027 3117 2434 +f 2582 3027 2434 +f 2433 2582 2434 +f 2432 2433 2434 +f 2658 2432 2434 +f 2658 2434 2565 +f 2658 2565 2567 +f 3059 2658 2567 +f 3059 2567 2464 +f 3127 3059 2464 +f 3127 2464 2466 +f 3133 3127 2466 +f 3133 2466 2608 +f 3165 3133 2608 +f 2484 3165 2608 +f 2484 2608 2485 +f 2483 2484 2485 +f 3044 2483 2485 +f 2764 3044 2485 +f 2763 2764 2485 +f 2763 2485 2609 +f 3163 2763 2609 +f 3172 3163 2609 +f 3172 2609 3069 +f 3125 3172 3069 +f 3125 3069 3077 +f 3126 3125 3077 +f 3126 3077 3070 +f 3128 3126 3070 +f 3128 3070 2974 +f 2823 3128 2974 +f 2609 2823 2974 +f 2609 2608 2823 +f 2608 2801 2823 +f 2801 3128 2823 +f 3065 3128 2801 +f 2989 3065 2801 +f 2988 2989 2801 +f 2465 2988 2801 +f 2465 2801 2466 +f 3028 2988 2465 +f 3030 3028 2465 +f 2920 3030 2465 +f 2920 2465 2464 +f 2566 3030 2920 +f 2566 2920 2567 +f 3109 3030 2566 +f 2950 3109 2566 +f 3122 2950 2566 +f 3122 2566 2565 +f 2492 2950 3122 +f 3117 2492 3122 +f 2396 2492 3117 +f 2395 2492 2396 +f 2394 2395 2396 +f 2472 2394 2396 +f 2472 2396 2473 +f 2471 2472 2473 +f 2471 2473 3018 +f 3018 2473 3033 +f 2392 3018 3033 +f 2657 3018 2392 +f 2657 2502 3018 +f 2502 2791 3018 +f 2791 2472 3018 +f 2838 2472 2791 +f 2838 2791 2653 +f 2653 2854 2838 +f 2748 2838 2854 +f 2853 2748 2854 +f 2853 2854 3080 +f 3023 2853 3080 +f 2736 3023 3080 +f 3080 3081 2736 +f 2736 3081 2737 +f 2735 2736 2737 +f 2735 2737 3065 +f 3065 2737 3066 +f 3065 3066 2720 +f 3065 2720 2719 +f 2719 2720 2721 +f 3128 2719 2721 +f 2720 2908 2721 +f 2721 2908 3003 +f 3126 2721 3003 +f 2908 2850 3003 +f 3003 2850 2709 +f 3052 3003 2709 +f 3055 3052 2709 +f 2540 3055 2709 +f 2500 2540 2709 +f 2708 2500 2709 +f 3031 2708 2709 +f 3031 2850 2708 +f 2850 2851 2708 +f 2850 2635 2851 +f 2635 2637 2851 +f 2637 3091 2851 +f 3091 3090 2851 +f 3090 3096 2851 +f 3096 2727 2851 +f 2727 3098 2851 +f 3098 2414 2851 +f 2414 3058 2851 +f 3058 3100 2851 +f 3100 3099 2851 +f 3099 3102 2851 +f 3102 3101 2851 +f 3101 3074 2851 +f 3074 2840 2851 +f 2840 2944 2851 +f 2944 3107 2851 +f 3107 3078 2851 +f 2851 3078 2500 +f 3078 2661 2500 +f 2500 2661 2660 +f 2500 2660 2440 +f 2500 2440 2476 +f 2500 2476 2475 +f 2500 2475 2530 +f 2475 2837 2530 +f 2530 2837 2540 +f 2837 2674 2540 +f 2674 2499 2540 +f 2499 2882 2540 +f 2882 2884 2540 +f 2884 3067 2540 +f 2884 3068 3067 +f 3068 3064 3067 +f 3064 2918 3067 +f 2918 2810 3067 +f 3067 2810 3055 +f 2810 2892 3055 +f 2892 3054 3055 +f 3060 3054 2892 +f 3060 2892 2809 +f 3124 3060 2809 +f 3124 2809 2946 +f 3123 3124 2946 +f 2938 3123 2946 +f 2630 2938 2946 +f 2638 2630 2946 +f 2638 2946 2965 +f 2647 2638 2965 +f 2647 2965 2968 +f 2734 2647 2968 +f 2957 2734 2968 +f 2919 2957 2968 +f 2811 2919 2968 +f 2810 2919 2811 +f 2809 2810 2811 +f 2809 2811 2965 +f 2919 2916 2957 +f 2916 2940 2957 +f 2940 2731 2957 +f 2722 2731 2940 +f 2934 2722 2940 +f 2893 2934 2940 +f 2903 2893 2940 +f 2901 2893 2903 +f 2904 2901 2903 +f 2904 2903 2916 +f 2917 2904 2916 +f 2904 2917 3068 +f 2901 2904 3068 +f 2891 2901 3068 +f 2887 2891 3068 +f 2878 2887 3068 +f 3073 2878 3068 +f 2878 3073 3162 +f 2878 3162 2875 +f 2878 2875 2879 +f 2875 2876 2879 +f 2879 2876 2926 +f 2879 2926 2934 +f 2890 2879 2934 +f 2887 2879 2890 +f 2926 2701 2934 +f 2926 2694 2701 +f 2694 2461 2701 +f 2461 2470 2701 +f 2701 2470 2722 +f 2470 2463 2722 +f 2470 2461 2463 +f 2461 2462 2463 +f 2462 2474 2463 +f 2463 2474 2482 +f 2463 2482 2731 +f 2731 2482 2734 +f 2482 2508 2734 +f 2482 2474 2508 +f 2508 2474 2526 +f 2508 2526 2647 +f 2474 2525 2526 +f 2525 2533 2526 +f 2533 2397 2526 +f 2397 2521 2526 +f 2526 2521 2638 +f 2397 2504 2521 +f 2521 2504 2630 +f 2504 2625 2630 +f 2504 2480 2625 +f 2480 2624 2625 +f 2625 2624 2933 +f 2625 2933 2938 +f 2933 2460 2938 +f 2460 3011 2938 +f 2460 2459 3011 +f 2459 3029 3011 +f 3011 3029 3123 +f 3029 3143 3123 +f 3143 3029 3051 +f 3060 3143 3051 +f 3029 2459 3051 +f 2459 2458 3051 +f 2458 3048 3051 +f 3048 3047 3051 +f 3051 3047 3049 +f 3051 3049 3052 +f 3054 3051 3052 +f 3049 3163 3052 +f 3047 3048 3049 +f 3048 2895 3049 +f 2895 2763 3049 +f 3138 2763 2895 +f 3138 2895 2555 +f 2554 3138 2555 +f 2553 2554 2555 +f 2553 2555 2922 +f 2551 2553 2922 +f 2913 2551 2922 +f 2913 2922 2616 +f 2615 2913 2616 +f 2436 2615 2616 +f 2399 2436 2616 +f 2456 2399 2616 +f 2456 2616 2624 +f 2397 2399 2456 +f 2397 2456 2480 +f 2397 2398 2399 +f 2398 2410 2399 +f 2410 2435 2399 +f 2435 2410 2604 +f 2435 2604 2615 +f 2604 2897 2615 +f 2885 2897 2604 +f 2603 2885 2604 +f 2870 2885 2603 +f 2596 2870 2603 +f 2398 2596 2603 +f 2869 2870 2596 +f 2869 2596 2673 +f 2881 2869 2673 +f 2881 2673 2683 +f 2894 2881 2683 +f 2894 2683 2692 +f 2909 2894 2692 +f 2909 2692 2694 +f 2692 2462 2694 +f 2856 2894 2909 +f 2860 2856 2909 +f 2871 2860 2909 +f 2871 2909 2926 +f 2873 2871 2926 +f 2864 2871 2873 +f 2874 2864 2873 +f 2875 2874 2873 +f 2717 2874 2875 +f 2717 2864 2874 +f 3082 2864 2717 +f 3082 2717 2716 +f 3130 3082 2716 +f 3130 2716 2543 +f 3130 2543 2980 +f 3132 3130 2980 +f 2979 3132 2980 +f 2979 2980 2535 +f 2899 2979 2535 +f 2534 2899 2535 +f 2534 2535 2536 +f 2877 2534 2536 +f 2877 2536 2990 +f 2886 2877 2990 +f 2861 2886 2990 +f 2883 2861 2990 +f 2883 2990 2585 +f 2584 2883 2585 +f 2583 2584 2585 +f 2583 2800 2584 +f 2800 2799 2584 +f 2798 2799 2800 +f 2818 2798 2800 +f 2818 2999 2798 +f 2999 2883 2798 +f 2883 2999 2884 +f 2999 3073 2884 +f 3073 2999 2993 +f 2999 2818 2993 +f 2993 2818 2583 +f 2990 2993 2583 +f 2990 2980 2993 +f 2980 2992 2993 +f 3162 2993 2992 +f 2631 3162 2992 +f 2545 2631 2992 +f 2544 2631 2545 +f 2543 2544 2545 +f 2718 2631 2544 +f 2716 2718 2544 +f 2718 3152 2631 +f 2718 2717 3152 +f 2717 3162 3152 +f 3152 3162 2631 +f 2980 2545 2992 +f 2883 2799 2798 +f 2818 2800 2583 +f 2799 2883 2584 +f 2585 2990 2583 +f 3136 2861 2883 +f 3136 2883 2882 +f 3169 3136 2882 +f 3169 3168 3136 +f 3168 3170 3136 +f 3170 3171 3136 +f 3171 3166 3136 +f 3166 3167 3136 +f 3167 2862 3136 +f 2862 3167 3148 +f 2863 2862 3148 +f 3147 2863 3148 +f 3147 3148 3042 +f 3032 3147 3042 +f 2691 3032 3042 +f 2693 2691 3042 +f 2693 3042 3053 +f 2700 2693 3053 +f 2700 3053 3061 +f 2707 2700 3061 +f 2707 3061 3071 +f 2715 2707 3071 +f 2715 3071 2795 +f 2832 2715 2795 +f 2790 2832 2795 +f 2792 2790 2795 +f 2794 2792 2795 +f 2797 2794 2795 +f 2796 2794 2797 +f 2497 2796 2797 +f 3156 2497 2797 +f 3156 2797 3071 +f 3155 3156 3071 +f 3155 2498 3156 +f 3168 2498 3155 +f 3154 3168 3155 +f 3154 3155 3061 +f 3151 3154 3061 +f 3151 3170 3154 +f 2498 2497 3156 +f 2497 2498 2499 +f 2498 3169 2499 +f 2796 2497 2674 +f 2802 2796 2674 +f 2678 2802 2674 +f 2678 2702 2802 +f 2677 2702 2678 +f 2676 2677 2678 +f 2767 2676 2678 +f 2711 2767 2678 +f 2710 2711 2678 +f 2743 2710 2678 +f 2743 2678 2998 +f 2743 2998 2962 +f 2961 2962 2998 +f 2644 2961 2998 +f 2651 2644 2998 +f 2651 2998 2703 +f 2651 2703 2680 +f 2652 2651 2680 +f 2652 2680 2744 +f 2652 2744 2769 +f 2966 2652 2769 +f 2768 2966 2769 +f 2768 2967 2966 +f 2967 2548 2966 +f 2548 2592 2966 +f 2548 2591 2592 +f 2591 2605 2592 +f 2605 2652 2592 +f 2605 2607 2652 +f 2605 2606 2607 +f 2606 2644 2607 +f 2644 2606 2645 +f 2643 2644 2645 +f 2642 2643 2645 +f 2605 2642 2645 +f 2605 2641 2642 +f 2641 3005 2642 +f 2558 3005 2641 +f 2559 2558 2641 +f 2618 2559 2641 +f 2639 2559 2618 +f 2639 2618 2617 +f 2650 2639 2617 +f 2649 2650 2617 +f 2591 2649 2617 +f 2547 2649 2591 +f 2547 2994 2649 +f 2994 2602 2649 +f 2602 3041 2649 +f 2602 2601 3041 +f 2601 3008 3041 +f 3041 3008 3009 +f 3041 3009 2650 +f 3009 3056 2650 +f 2581 3056 3009 +f 2582 2581 3009 +f 2581 2623 3056 +f 2623 2559 3056 +f 2623 2531 2559 +f 2531 2623 2532 +f 2438 2531 2532 +f 2438 2532 2439 +f 2437 2438 2439 +f 2437 2439 2669 +f 2668 2437 2669 +f 2668 2669 2733 +f 2668 2733 2738 +f 2849 2668 2738 +f 2849 2738 2740 +f 2868 2849 2740 +f 2868 2740 2741 +f 2935 2868 2741 +f 2935 2741 2749 +f 2939 2935 2749 +f 2939 2749 2750 +f 2947 2939 2750 +f 2952 2947 2750 +f 2952 2750 2762 +f 2952 2762 2765 +f 2961 2952 2765 +f 2961 2765 2770 +f 2770 2765 2766 +f 2770 2766 2775 +f 2774 2770 2775 +f 2780 2774 2775 +f 2780 2775 2783 +f 2782 2780 2783 +f 2785 2782 2783 +f 2785 2783 2790 +f 2789 2785 2790 +f 2676 2785 2789 +f 2783 2820 2790 +f 2803 2820 2783 +f 2803 2598 2820 +f 2598 2614 2820 +f 2820 2614 2832 +f 2614 2628 2832 +f 2614 2611 2628 +f 2611 2627 2628 +f 2628 2627 2646 +f 2628 2646 2715 +f 2627 2619 2646 +f 2619 2640 2646 +f 2646 2640 2707 +f 2619 2621 2640 +f 2640 2621 2700 +f 2619 2620 2621 +f 2620 2571 2621 +f 2571 2613 2621 +f 2621 2613 2693 +f 2571 2597 2613 +f 2613 2597 2691 +f 2597 2684 2691 +f 2597 2573 2684 +f 2573 2679 2684 +f 2679 3026 2684 +f 3026 3032 2684 +f 3026 2562 3032 +f 2562 3146 3032 +f 2562 2561 3146 +f 2561 2863 3146 +f 2561 3094 2863 +f 3094 2886 2863 +f 2886 3094 2900 +f 3094 3095 2900 +f 3095 2898 2900 +f 2898 2899 2900 +f 2898 3132 2899 +f 3129 3132 2898 +f 3129 3157 3132 +f 3157 3144 3132 +f 3144 3145 3132 +f 3144 2432 3145 +f 3145 2432 3141 +f 3153 3145 3141 +f 3140 3153 3141 +f 3140 3141 2817 +f 2821 3140 2817 +f 2821 2817 2819 +f 2821 2819 2826 +f 2825 2821 2826 +f 2825 2826 2836 +f 2835 2825 2836 +f 2835 2836 2845 +f 2844 2835 2845 +f 2844 2845 2856 +f 2855 2844 2856 +f 3153 2844 2855 +f 3153 2855 2859 +f 3153 2859 3131 +f 3131 2859 2864 +f 2864 2859 2860 +f 2859 2855 2860 +f 3153 2835 2844 +f 2845 2836 2894 +f 3153 2825 2835 +f 2836 2826 2881 +f 3153 2821 2825 +f 2826 2819 2881 +f 2817 2808 2819 +f 2819 2808 2869 +f 2808 2807 2869 +f 2806 2807 2808 +f 2807 2806 3017 +f 2807 3017 2870 +f 2806 2991 3017 +f 3017 2991 2515 +f 3017 2515 2885 +f 2515 2517 2885 +f 2515 2516 2517 +f 2516 2552 2517 +f 2517 2552 2537 +f 2517 2537 2897 +f 2537 2539 2897 +f 2897 2539 2913 +f 2539 2822 2913 +f 2539 3086 2822 +f 3086 2549 2822 +f 2822 2549 2551 +f 2549 2550 2551 +f 2550 2554 2551 +f 2554 2550 3044 +f 2550 3046 3044 +f 3046 3164 3044 +f 3044 3164 2484 +f 3046 3015 3164 +f 3015 3133 3164 +f 3015 3014 3133 +f 3013 3014 3015 +f 3013 2976 3014 +f 3014 2976 2978 +f 3014 2978 2658 +f 2976 2977 2978 +f 2977 3062 2978 +f 3062 3121 2978 +f 3121 2432 2978 +f 3121 3062 2991 +f 3062 2516 2991 +f 3062 2977 2516 +f 2977 2976 3013 +f 2977 3013 2550 +f 3046 3013 3015 +f 2550 3013 3046 +f 2549 2977 2550 +f 3086 2977 2549 +f 2538 2977 3086 +f 2552 2977 2538 +f 2538 3086 2539 +f 2537 2538 2539 +f 2552 2538 2537 +f 2516 2977 2552 +f 2991 2516 2515 +f 2806 3121 2991 +f 3141 3121 2806 +f 2817 2806 2808 +f 3141 2806 2817 +f 3153 3140 2821 +f 3153 3131 3145 +f 3145 3131 3130 +f 3141 2432 3121 +f 2745 2432 3144 +f 2746 2745 3144 +f 2745 2746 2747 +f 2932 2745 2747 +f 2932 2747 2729 +f 2932 2729 2728 +f 2669 2932 2728 +f 2728 2729 2730 +f 2733 2728 2730 +f 2733 2730 2739 +f 2739 2730 2761 +f 2739 2761 2771 +f 2742 2739 2771 +f 2742 2771 2776 +f 2751 2742 2776 +f 2751 2776 2788 +f 2751 2788 2766 +f 2762 2751 2766 +f 2766 2788 2793 +f 2788 2586 2793 +f 2586 2588 2793 +f 2793 2588 2803 +f 2793 2803 2775 +f 2586 2587 2588 +f 2588 2587 2598 +f 2587 2611 2598 +f 2611 2587 2776 +f 2587 2586 2788 +f 2776 2587 2788 +f 2749 2742 2751 +f 2771 2611 2776 +f 2740 2739 2742 +f 2761 2627 2771 +f 2730 2662 2761 +f 2662 2619 2761 +f 2730 2732 2662 +f 2662 2732 2663 +f 2620 2662 2663 +f 2732 3016 2663 +f 2663 3016 2675 +f 2571 2663 2675 +f 2572 2571 2675 +f 2572 2675 2679 +f 2675 3022 2679 +f 2571 2572 2573 +f 3016 3022 2675 +f 3016 3139 3022 +f 3139 3142 3022 +f 3142 2905 3022 +f 3022 2905 3026 +f 2905 2907 3026 +f 2905 2906 2907 +f 2906 2560 2907 +f 2907 2560 2562 +f 2560 2906 3095 +f 2560 3095 2561 +f 2906 3129 3095 +f 3161 2906 2905 +f 3161 3157 2906 +f 3160 3157 3161 +f 3160 3161 3142 +f 3159 3157 3160 +f 3159 3160 3139 +f 3137 3159 3139 +f 3158 3159 3137 +f 3135 3158 3137 +f 3135 3137 3016 +f 2773 3158 3135 +f 2747 2773 3135 +f 3134 2747 3135 +f 3134 3135 2732 +f 2729 3134 2732 +f 2773 3157 3158 +f 2746 3157 2773 +f 3158 3157 3159 +f 3142 3161 2905 +f 3139 3160 3142 +f 3137 3139 3016 +f 2732 3135 3016 +f 2729 2732 2730 +f 2729 2747 3134 +f 2439 2745 2932 +f 2746 2773 2747 +f 2439 2432 2745 +f 3157 2746 3144 +f 2906 3157 3129 +f 3095 3129 2898 +f 2561 3095 3094 +f 2560 2561 2562 +f 2907 2562 3026 +f 3022 3026 2679 +f 2573 2572 2679 +f 2571 2573 2597 +f 2571 2620 2663 +f 2620 2619 2662 +f 2619 2627 2761 +f 2627 2611 2771 +f 2598 2611 2614 +f 2588 2598 2803 +f 2767 2782 2785 +f 2711 2780 2782 +f 2775 2803 2783 +f 2710 2774 2780 +f 2710 2962 2774 +f 2962 2770 2774 +f 2766 2793 2775 +f 2643 2952 2961 +f 2643 3005 2952 +f 2765 2762 2766 +f 2762 2750 2751 +f 3005 2947 2952 +f 2558 2939 2947 +f 2558 2531 2939 +f 2750 2749 2751 +f 2438 2935 2939 +f 2749 2741 2742 +f 2438 2868 2935 +f 2741 2740 2742 +f 2438 2849 2868 +f 2740 2738 2739 +f 2438 2668 2849 +f 2738 2733 2739 +f 2669 2728 2733 +f 2439 2932 2669 +f 2438 2437 2668 +f 2532 2433 2439 +f 2531 2438 2939 +f 2532 2623 2433 +f 2433 2623 2581 +f 3008 2582 3009 +f 3008 3097 2582 +f 2713 3097 3008 +f 2713 2814 3097 +f 2814 3027 3097 +f 2814 2985 3027 +f 2985 3075 3027 +f 3075 2589 3027 +f 2589 2557 3027 +f 2557 2670 3027 +f 2670 2672 3027 +f 2672 2758 3027 +f 2758 2959 3027 +f 2959 2428 3027 +f 2428 2827 3027 +f 2827 2816 3027 +f 2816 2833 3027 +f 2833 2488 3027 +f 2488 2872 3027 +f 2872 2927 3027 +f 2927 2929 3027 +f 2929 2971 3027 +f 2971 2973 3027 +f 2971 2972 2973 +f 2972 2507 2973 +f 2507 2506 2973 +f 2506 3085 2973 +f 2973 3085 3084 +f 3037 2973 3084 +f 3084 3118 3037 +f 3118 3038 3037 +f 3037 3038 3039 +f 3038 2910 3039 +f 3038 2723 2910 +f 2723 2997 2910 +f 2910 2997 3043 +f 2911 2910 3043 +f 2781 2911 3043 +f 2610 2781 3043 +f 2541 2781 2610 +f 2522 2541 2610 +f 2522 2610 2964 +f 2848 2522 2964 +f 2964 2723 2848 +f 2723 2724 2848 +f 2848 2724 2523 +f 2523 2724 2726 +f 2523 2726 2725 +f 2523 2725 2681 +f 2682 2523 2681 +f 2681 2524 2682 +f 2524 2681 2542 +f 2541 2524 2542 +f 2858 2541 2542 +f 2858 2542 3096 +f 3096 2510 2858 +f 2510 2491 2858 +f 2923 2858 2491 +f 2401 2923 2491 +f 2490 2401 2491 +f 2489 2490 2491 +f 2490 2489 2813 +f 2489 2812 2813 +f 2813 2812 2847 +f 2846 2813 2847 +f 2963 2846 2847 +f 2402 2813 2846 +f 2400 2402 2846 +f 2400 2846 2970 +f 2911 2400 2970 +f 2400 2401 2402 +f 2496 2401 2400 +f 2496 2400 2781 +f 2496 2781 2401 +f 2401 2813 2402 +f 2812 2963 2847 +f 2812 2656 2963 +f 2656 2786 2963 +f 2656 2391 2786 +f 2656 2657 2391 +f 2656 2503 2657 +f 2503 2656 2812 +f 2812 2509 2503 +f 2503 2509 3093 +f 2501 2503 3093 +f 2654 2501 3093 +f 2654 3093 3091 +f 3120 2654 3091 +f 3120 3091 3092 +f 2655 3120 3092 +f 2655 3092 3089 +f 2653 2655 3089 +f 2653 3089 2636 +f 2636 3089 2637 +f 2653 2654 2655 +f 3092 2637 3089 +f 2654 3120 2655 +f 3093 3072 3091 +f 2501 2654 2502 +f 2501 2502 2503 +f 2509 3072 3093 +f 2509 2511 3072 +f 2511 3090 3072 +f 2509 2510 2511 +f 2510 2509 2489 +f 2812 2489 2509 +f 2401 2490 2813 +f 2401 2781 2923 +f 2491 2510 2489 +f 2511 2510 3096 +f 2923 2541 2858 +f 2681 3096 2542 +f 2524 2523 2682 +f 2522 2523 2524 +f 2681 2725 2727 +f 2725 2726 2727 +f 2726 2452 2727 +f 2450 2452 2726 +f 2450 2451 2452 +f 2451 3098 2452 +f 2451 2937 3098 +f 2937 2936 3098 +f 2415 2936 2937 +f 2415 2414 2936 +f 2414 2415 2416 +f 2416 2479 2414 +f 2477 2479 2416 +f 2595 2477 2416 +f 2622 2477 2595 +f 2960 2622 2595 +f 2594 2960 2595 +f 2593 2594 2595 +f 2595 2415 2593 +f 2415 2450 2593 +f 2450 2704 2593 +f 2593 2704 2706 +f 2704 2705 2706 +f 2705 3118 2706 +f 2705 2704 2723 +f 2450 2724 2704 +f 2594 2593 2706 +f 2594 2706 3087 +f 2506 2594 3087 +f 3087 2706 3084 +f 2960 2594 2506 +f 2505 2960 2506 +f 2505 2622 2960 +f 2622 2505 2697 +f 2622 2697 2867 +f 2866 2622 2867 +f 2866 2867 2666 +f 2914 2866 2666 +f 2665 2914 2666 +f 2664 2665 2666 +f 2685 2664 2666 +f 2772 2664 2685 +f 2772 2685 2930 +f 2928 2772 2930 +f 2928 2930 2929 +f 3001 2772 2928 +f 2634 3001 2928 +f 2634 2928 2927 +f 2633 3001 2634 +f 2632 2633 2634 +f 2528 2632 2634 +f 2872 2528 2634 +f 2529 2528 2872 +f 2454 2529 2872 +f 2455 2454 2872 +f 2626 2455 2872 +f 2468 2455 2626 +f 2468 2626 2469 +f 2467 2468 2469 +f 2612 2467 2469 +f 2969 2612 2469 +f 2487 2969 2469 +f 2487 3020 2969 +f 3020 2942 2969 +f 2417 2942 3020 +f 3019 2417 3020 +f 3020 2486 3019 +f 3019 2486 2834 +f 3019 2834 2833 +f 2902 3019 2833 +f 2902 2833 3040 +f 2425 2902 3040 +f 2816 2425 3040 +f 2423 2425 2816 +f 2564 2423 2816 +f 2815 2564 2816 +f 2815 2563 2564 +f 2687 2563 2815 +f 2687 2815 2827 +f 2688 2687 2827 +f 2427 2688 2827 +f 2688 2427 2686 +f 2427 3050 2686 +f 2779 2686 3050 +f 2690 2686 2779 +f 2778 2690 2779 +f 2777 2778 2779 +f 2427 2777 2779 +f 2426 2777 2427 +f 2426 2427 2428 +f 2579 2777 2426 +f 2579 2426 2959 +f 2579 2959 2580 +f 2578 2579 2580 +f 2578 2580 2629 +f 2578 2629 2857 +f 2513 2578 2857 +f 2759 2513 2857 +f 2760 2759 2857 +f 2760 2857 2758 +f 2757 2760 2758 +f 2445 2760 2757 +f 2445 2757 2921 +f 2457 2445 2921 +f 2921 3002 2457 +f 3002 3079 2457 +f 3079 2446 2457 +f 2828 2446 3079 +f 2444 2446 2828 +f 2444 2828 2829 +f 2829 2575 2444 +f 2575 2514 2444 +f 2759 2444 2514 +f 2445 2444 2759 +f 2514 2575 2714 +f 2514 2714 3116 +f 2514 3116 2512 +f 2512 2513 2514 +f 2512 2569 2513 +f 2569 2568 2513 +f 2995 2513 2568 +f 2995 2568 2578 +f 2568 2804 2578 +f 2777 2578 2804 +f 2804 2568 2945 +f 2805 2804 2945 +f 2805 2945 3106 +f 3105 2805 3106 +f 3105 2519 2805 +f 3007 2519 3105 +f 3007 3105 3035 +f 3006 3007 3035 +f 3006 3035 3036 +f 2518 3006 3036 +f 2420 2518 3036 +f 2420 3036 2421 +f 2420 2421 2422 +f 2422 2599 2420 +f 2599 2659 2420 +f 2659 2689 2420 +f 2689 2690 2420 +f 3025 2690 2689 +f 3025 2689 2563 +f 2563 2689 2423 +f 2423 2689 2424 +f 2690 3025 2687 +f 2689 2659 2424 +f 2424 2659 2425 +f 2599 2902 2659 +f 2599 2418 2902 +f 2493 2418 2599 +f 2494 2493 2599 +f 2493 2494 2495 +f 2493 2495 2824 +f 2419 2493 2824 +f 2419 2824 3021 +f 2419 3021 2975 +f 2941 2419 2975 +f 2448 2941 2975 +f 2448 2975 3074 +f 2448 3074 3088 +f 2449 2448 3088 +f 2449 3088 2447 +f 2447 3088 2955 +f 3034 2447 2955 +f 3034 2955 2954 +f 3034 2954 2467 +f 3010 2467 2954 +f 2949 3010 2954 +f 2948 2949 2954 +f 2948 2954 2956 +f 2442 2948 2956 +f 3024 2442 2956 +f 3102 3024 2956 +f 2956 2955 3102 +f 2442 3024 2443 +f 2441 2442 2443 +f 2441 2443 2925 +f 2924 2441 2925 +f 2924 2925 3100 +f 2958 2924 3100 +f 2412 2924 2958 +f 2412 2958 3058 +f 3057 2412 3058 +f 2479 3057 3058 +f 2411 3057 2479 +f 2478 2411 2479 +f 2622 2411 2478 +f 2413 3057 2411 +f 2411 2412 2413 +f 2412 2411 2914 +f 2953 2412 2914 +f 2413 2412 3057 +f 2412 2953 2924 +f 2953 2441 2924 +f 2441 2953 2632 +f 2441 2632 2949 +f 2949 2632 3063 +f 2664 2632 2953 +f 3004 2632 2664 +f 3004 2664 3001 +f 2925 2443 3099 +f 2442 2441 2949 +f 2443 3024 3099 +f 2948 2442 2949 +f 3010 2949 3063 +f 3010 3063 2527 +f 2529 3010 2527 +f 2527 3063 2528 +f 2453 2467 3010 +f 2453 3010 2454 +f 2954 2955 2956 +f 3034 2467 2447 +f 3088 3101 2955 +f 2447 2448 2449 +f 2448 2447 2942 +f 2612 2942 2447 +f 2941 2448 2942 +f 2417 2419 2941 +f 2417 2418 2419 +f 2975 3021 3074 +f 3021 2841 3074 +f 2824 2841 3021 +f 2495 2841 2824 +f 2495 2839 2841 +f 2839 2840 2841 +f 2839 3083 2840 +f 3083 2667 2840 +f 2667 3035 2840 +f 3083 2494 2667 +f 2667 2494 2421 +f 2667 2421 3103 +f 3103 3036 2667 +f 2494 3083 2839 +f 2495 2494 2839 +f 2419 2418 2493 +f 2422 2494 2599 +f 2494 2422 2421 +f 2421 3036 3103 +f 2518 2420 2690 +f 2520 3006 2518 +f 2518 2519 2520 +f 2519 2518 2778 +f 2804 2519 2778 +f 2520 2519 3006 +f 3036 3035 2667 +f 3035 3105 2944 +f 2945 2944 3105 +f 2943 2944 2945 +f 2945 2570 2943 +f 2570 2569 2943 +f 2569 3107 2943 +f 2569 2983 3107 +f 2983 2982 3107 +f 2982 2996 3107 +f 2982 2714 2996 +f 2714 3115 2996 +f 3115 2577 2996 +f 2996 2577 3078 +f 2577 3104 3078 +f 3104 2843 3078 +f 2843 3113 3078 +f 3113 3112 3078 +f 3111 3112 3113 +f 3114 3111 3113 +f 2842 3114 3113 +f 2830 3114 2842 +f 2830 2842 2831 +f 2699 2830 2831 +f 2699 2831 2787 +f 2699 2787 2576 +f 2698 2699 2576 +f 3110 2698 2576 +f 2575 3110 2576 +f 2575 2576 2577 +f 2829 2698 3110 +f 2408 2698 2829 +f 3012 2408 2829 +f 2695 2408 3012 +f 2695 3012 2696 +f 2696 3012 2671 +f 2696 2671 2670 +f 3076 2696 2670 +f 2408 2696 3076 +f 2409 2408 3076 +f 2557 2409 3076 +f 3045 2409 2557 +f 2556 3045 2557 +f 2403 2556 2557 +f 2648 2556 2403 +f 2481 2648 2403 +f 2481 2403 2406 +f 2481 2406 2405 +f 2987 2481 2405 +f 3075 2987 2405 +f 2404 3075 2405 +f 2403 2404 2405 +f 2403 2589 2404 +f 2756 2481 2987 +f 2986 2756 2987 +f 2985 2986 2987 +f 2880 2756 2986 +f 2880 2986 2712 +f 2601 2880 2712 +f 2601 2712 2713 +f 2600 2880 2601 +f 2712 2986 2814 +f 2880 2600 2756 +f 2600 2755 2756 +f 2755 2753 2756 +f 2753 2865 2756 +f 2865 2753 2752 +f 2865 2752 3111 +f 3111 2752 3108 +f 2752 2754 3108 +f 2754 2852 3108 +f 3108 2852 2931 +f 3108 2931 2661 +f 3112 3108 2661 +f 2931 2852 2661 +f 2852 2546 2661 +f 2661 2546 2574 +f 2429 2661 2574 +f 2429 2574 2430 +f 2429 2430 2431 +f 2440 2429 2431 +f 2440 2431 2475 +f 2431 2768 2475 +f 2768 2784 2475 +f 2784 2768 2744 +f 2430 2768 2431 +f 2574 2590 2430 +f 2590 2967 2430 +f 2574 2548 2590 +f 2574 2546 2548 +f 2546 2547 2548 +f 2755 2547 2546 +f 2852 2753 2546 +f 2753 2852 2754 +f 2752 2753 2754 +f 2753 2755 2546 +f 2755 2600 2994 +f 2481 2756 2865 +f 2865 2888 2481 +f 3045 2481 2888 +f 2984 3045 2888 +f 2889 2984 2888 +f 2888 2830 2889 +f 2888 2915 2830 +f 2984 2889 2407 +f 2889 2408 2407 +f 2889 2699 2408 +f 2984 2407 3045 +f 2888 2865 2915 +f 2915 2865 3114 +f 2406 2403 2405 +f 2648 2481 3045 +f 2648 3045 2556 +f 3045 2407 2409 +f 2407 2408 2409 +f 2671 3012 3002 +f 2671 3002 2672 +f 3012 2828 3002 +f 2408 2695 2696 +f 2408 2699 2698 +f 2576 2787 2577 +f 2787 2831 3104 +f 2830 2699 2889 +f 2831 2842 2843 +f 2830 2915 3114 +f 3114 2865 3111 +f 3108 3112 3111 +f 2843 2842 3113 +f 2831 2843 3104 +f 2787 3104 2577 +f 3115 2575 2577 +f 2981 2982 2983 +f 2512 2981 2983 +f 2981 3116 2982 +f 2519 3007 3006 +f 3106 2945 3105 +f 2519 2804 2805 +f 2568 2570 2945 +f 2568 2569 2570 +f 2569 2512 2983 +f 2512 3116 2981 +f 3116 2714 2982 +f 2575 3115 2714 +f 2829 3110 2575 +f 2828 3012 2829 +f 2444 2445 2446 +f 3002 2828 3079 +f 3002 2921 2672 +f 2446 2445 2457 +f 2921 2757 2672 +f 2445 2759 2760 +f 2513 2759 2514 +f 2513 2995 2578 +f 2758 2857 2629 +f 2580 2758 2629 +f 2579 2578 2777 +f 2778 2777 2804 +f 2518 2690 2778 +f 2690 2687 2686 +f 2779 3050 2427 +f 2686 2687 2688 +f 3025 2563 2687 +f 2563 2423 2564 +f 2423 2424 2425 +f 2659 2902 2425 +f 2418 3019 2902 +f 2834 2486 2488 +f 2486 2487 2488 +f 2487 2626 2488 +f 3019 2418 2417 +f 2942 2417 2941 +f 2486 3020 2487 +f 2942 2612 2969 +f 2447 2467 2612 +f 2453 2468 2467 +f 2626 2487 2469 +f 2468 2453 2455 +f 2453 2454 2455 +f 2454 3010 2529 +f 2527 2528 2529 +f 3063 2632 2528 +f 2632 3004 2633 +f 2633 3004 3001 +f 2929 2930 2685 +f 2685 2697 2929 +f 3001 2664 2772 +f 2665 2664 2953 +f 2914 2665 2953 +f 2866 2914 2411 +f 2685 2666 2867 +f 2411 2622 2866 +f 2697 2685 2867 +f 2505 2972 2697 +f 2478 2477 2622 +f 2477 2478 2479 +f 2415 2595 2416 +f 2451 2415 2937 +f 2450 2415 2451 +f 2724 2450 2726 +f 2723 2704 2724 +f 2522 2848 2523 +f 2964 2610 2997 +f 2541 2522 2524 +f 2541 2923 2781 +f 2781 2400 2911 +f 2910 2911 2912 +f 2610 3043 2997 +f 2723 2964 2997 +f 2705 2723 3038 +f 2705 3038 3118 +f 2706 3118 3084 +f 2973 3037 3039 +f 3087 3084 3085 +f 2506 3087 3085 +f 2505 2506 2507 +f 2505 2507 2972 +f 2697 2972 2971 +f 2929 2697 2971 +f 2927 2928 2929 +f 2927 2872 2634 +f 2626 2872 2488 +f 2833 2834 2488 +f 2833 2816 3040 +f 2827 2815 2816 +f 2428 2427 2827 +f 2959 2426 2428 +f 2758 2580 2959 +f 2672 2757 2758 +f 2670 2671 2672 +f 2670 2557 3076 +f 2589 2403 2557 +f 3075 2404 2589 +f 2985 2987 3075 +f 2814 2986 2985 +f 2712 2814 2713 +f 2601 2713 3008 +f 2600 2601 2602 +f 2600 2602 2994 +f 2755 2994 2547 +f 2649 3041 2650 +f 3056 2639 2650 +f 2617 2618 2605 +f 3056 2559 2639 +f 2531 2558 2559 +f 2558 2947 3005 +f 2618 2641 2605 +f 3005 2643 2642 +f 2606 2605 2645 +f 2591 2617 2605 +f 2548 2547 2591 +f 2548 2967 2590 +f 2967 2768 2430 +f 2592 2652 2966 +f 2744 2768 2769 +f 2680 2784 2744 +f 2607 2651 2652 +f 2703 2784 2680 +f 2784 2703 2837 +f 2703 2998 2837 +f 2644 2651 2607 +f 2644 2643 2961 +f 2962 2961 2770 +f 2998 2678 2837 +f 2710 2743 2962 +f 2711 2710 2780 +f 2767 2711 2782 +f 2676 2767 2785 +f 2677 2676 2789 +f 2677 2789 2792 +f 2702 2677 2792 +f 2796 2702 2792 +f 2802 2702 2796 +f 2796 2792 2794 +f 2792 2789 2790 +f 2820 2832 2790 +f 2832 2628 2715 +f 3071 2797 2795 +f 2646 2707 2715 +f 3061 3155 3071 +f 2640 2700 2707 +f 3053 3151 3061 +f 3150 3151 3053 +f 3149 3150 3053 +f 3149 3166 3150 +f 3150 3171 3151 +f 2621 2693 2700 +f 3042 3149 3053 +f 2613 2691 2693 +f 2684 3032 2691 +f 3146 3147 3032 +f 3148 3149 3042 +f 3146 2863 3147 +f 2861 2862 2863 +f 3148 3167 3149 +f 3167 3166 3149 +f 3166 3171 3150 +f 3171 3170 3151 +f 3170 3168 3154 +f 3168 3169 2498 +f 2862 2861 3136 +f 2861 2863 2886 +f 2886 2900 2877 +f 2536 2980 2990 +f 2900 2534 2877 +f 2900 2899 2534 +f 2535 2980 2536 +f 2899 3132 2979 +f 3132 3145 3130 +f 2543 2545 2980 +f 2716 2544 2543 +f 3130 3131 3082 +f 2716 2717 2718 +f 3082 3131 2864 +f 2864 2860 2871 +f 2855 2856 2860 +f 2856 2845 2894 +f 2683 2474 2692 +f 2836 2881 2894 +f 2673 2525 2683 +f 2819 2869 2881 +f 2596 2533 2673 +f 2807 2870 2869 +f 2870 3017 2885 +f 2885 2517 2897 +f 2410 2603 2604 +f 2410 2398 2603 +f 2398 2397 2596 +f 2435 2436 2399 +f 2436 2435 2615 +f 2897 2913 2615 +f 2616 2922 2624 +f 2822 2551 2913 +f 2555 2896 2922 +f 2922 2896 2933 +f 2896 3119 2933 +f 2896 2895 3119 +f 2551 2554 2553 +f 2554 3044 3138 +f 2555 2895 2896 +f 3044 2763 3138 +f 2895 3048 3119 +f 3048 2458 3119 +f 3119 2458 2460 +f 2458 2459 2460 +f 3119 2460 2933 +f 2624 2922 2933 +f 2480 2456 2624 +f 2397 2480 2504 +f 2397 2533 2596 +f 2533 2525 2673 +f 2525 2474 2683 +f 2474 2462 2692 +f 2462 2461 2694 +f 2909 2694 2926 +f 2876 2873 2926 +f 2875 2873 2876 +f 3162 2717 2875 +f 3162 3073 2993 +f 2887 2878 2879 +f 2891 2887 2890 +f 2891 2890 2893 +f 2901 2891 2893 +f 2893 2890 2934 +f 2701 2722 2934 +f 2722 2463 2731 +f 2916 2903 2940 +f 2917 2916 2919 +f 2918 2917 2919 +f 2731 2734 2957 +f 2734 2508 2647 +f 2965 2811 2968 +f 2526 2638 2647 +f 2521 2630 2638 +f 2630 2625 2938 +f 3011 3123 2938 +f 3123 3143 3124 +f 2946 2809 2965 +f 3143 3060 3124 +f 3054 3060 3051 +f 2892 2810 2809 +f 2810 2918 2919 +f 3064 2917 2918 +f 3068 2917 3064 +f 3073 3068 2884 +f 2882 2883 2884 +f 2499 3169 2882 +f 2674 2497 2499 +f 2837 2678 2674 +f 2784 2837 2475 +f 2476 2440 2475 +f 2660 2429 2440 +f 2660 2661 2429 +f 3112 2661 3078 +f 3107 2996 3078 +f 2944 2943 3107 +f 2840 3035 2944 +f 2841 2840 3074 +f 3088 3074 3101 +f 2955 3101 3102 +f 3099 3024 3102 +f 2925 3099 3100 +f 3058 2958 3100 +f 2479 3058 2414 +f 2936 2414 3098 +f 2452 3098 2727 +f 3096 2681 2727 +f 3090 2511 3096 +f 3072 3090 3091 +f 2637 3092 3091 +f 2635 2636 2637 +f 3081 2636 2635 +f 3066 3081 2635 +f 3066 2635 3000 +f 3000 2635 2850 +f 2851 2500 2708 +f 2500 2530 2540 +f 3067 3055 2540 +f 3055 3054 3052 +f 3052 3125 3003 +f 2850 3031 2709 +f 2908 3000 2850 +f 2720 3000 2908 +f 3066 3000 2720 +f 2737 3081 3066 +f 3081 3080 2636 +f 3023 2736 2735 +f 3023 2735 2988 +f 2951 2853 3023 +f 2951 3023 3030 +f 2950 2853 2951 +f 3080 2854 2636 +f 2748 2853 2950 +f 2394 2838 2748 +f 2394 2748 2492 +f 2854 2653 2636 +f 2654 2653 2791 +f 2654 2791 2502 +f 2502 2657 2503 +f 2392 3033 2473 +f 2472 2471 3018 +f 2396 2392 2473 +f 2838 2394 2472 +f 2395 2394 2492 +f 2492 2748 2950 +f 3109 2950 2951 +f 3109 2951 3030 +f 3030 3023 3028 +f 3028 3023 2988 +f 2988 2735 2989 +f 2989 2735 3065 +f 3128 3065 2719 +f 3070 2609 2974 +f 3126 3128 2721 +f 3125 3126 3003 +f 3077 3069 3070 +f 3172 3125 3052 +f 3069 2609 3070 +f 3163 3172 3052 +f 2763 3163 3049 +f 3044 2764 2763 +f 3044 2484 2483 +f 2485 2608 2609 +f 3164 3165 2484 +f 3164 3133 3165 +f 2466 2801 2608 +f 3014 3127 3133 +f 2464 2465 2466 +f 3014 3059 3127 +f 2567 2920 2464 +f 3014 2658 3059 +f 2565 2566 2567 +f 2434 3122 2565 +f 2978 2432 2658 +f 2433 2432 2439 +f 2433 2581 2582 +f 3097 3027 2582 +f 3117 3122 2434 +f 2973 3039 3027 +f 2910 2912 3039 +f 2911 2970 2912 +f 2970 2846 2963 +f 2393 2396 3117 +f 2786 2391 2963 +f 2392 2396 2393 +f 2391 2657 2392 + + +o Object.6 +v 19.639999 -123.492470 -4.100346 +v 20.819969 -123.284370 -4.100346 +v 19.639999 -123.554680 -7.383235 +v 23.089998 -120.042488 -4.100346 +v 21.289999 -120.042488 -4.100346 +v 22.881939 -118.862495 -4.100353 +v -20.239082 -116.644875 -1.000362 +v -21.364998 -117.054695 -2.600353 +v -20.239082 -116.644890 -2.600353 +v -21.364998 -117.054680 -1.000362 +v -17.990002 -120.042488 -4.100346 +v -17.990002 -120.042488 -2.600345 +v -18.376030 -118.981895 -4.100353 +v -18.376030 -118.981895 -2.600353 +v -22.282860 -117.824791 -2.600353 +v -22.282860 -117.824776 -1.000362 +v 20.903969 -118.981895 -2.600353 +v 21.289999 -120.042488 -2.600345 +v 22.881939 -118.862495 -2.600353 +v 18.089508 -120.606789 -2.600345 +v 18.089508 -119.478096 -2.600345 +v 16.398058 -118.862495 -2.600353 +v -22.881943 -118.862495 -2.600353 +v -22.881943 -118.862480 -1.000362 +v 18.089508 -119.478096 -4.100346 +v 18.089508 -120.606789 -4.100346 +v 16.189999 -120.042488 -4.100346 +v -19.353481 -118.417488 -4.100353 +v -23.089989 -120.042488 -2.600345 +v -23.089989 -120.042473 -1.000354 +v -19.353481 -118.417488 -2.600353 +v 16.398058 -121.222374 -4.100346 +v -22.881943 -121.222374 -2.600345 +v -22.881943 -121.222359 -1.000354 +v 16.189999 -120.042488 -2.600345 +v -22.282860 -122.260078 -2.600345 +v -21.364998 -123.030174 -2.600345 +v -20.465000 -121.471367 -2.600345 +v -22.282860 -122.260063 -1.000354 +v -17.915001 -123.030174 -2.600345 +v -16.997150 -122.260078 -2.600345 +v -18.376030 -121.103081 -2.600345 +v 20.903969 -121.103081 -4.100346 +v -21.364998 -123.030159 -1.000354 +v 22.881939 -121.222374 -4.100346 +v -27.314049 -126.015755 -1.350345 +v 27.314049 -126.015755 -1.350345 +v 27.976858 -125.500465 -1.350353 +v -20.239082 -123.440071 -2.600345 +v -20.234371 -123.440865 -1.000354 +v -28.173988 -125.414665 -1.350353 +v -18.376030 -121.103081 -4.100346 +v -19.040913 -123.440071 -2.600345 +v 23.347578 -123.322075 -4.400349 +v 27.184269 -123.269768 -4.400349 +v 24.148718 -122.085472 -4.400349 +v -19.640003 -123.492455 -0.000354 +v -19.353481 -121.667366 -2.600345 +v 21.857618 -122.685280 -4.100346 +v 22.594679 -121.941277 -7.383235 +v 20.239088 -116.644875 -1.000362 +v 19.040909 -116.644890 -2.600353 +v 20.239088 -116.644890 -2.600353 +v 19.040909 -116.644875 -1.000362 +v 28.429049 -125.677666 -1.350353 +v -28.429054 -125.677666 -1.350353 +v 17.914999 -117.054695 -2.600353 +v 17.914999 -117.054680 -1.000362 +v 18.814999 -121.471367 -4.100346 +v 16.997149 -122.260078 -4.100346 +v 16.997149 -117.824791 -2.600353 +v 16.997149 -117.824776 -1.000362 +v 16.398058 -118.862480 -1.000362 +v -14.850410 -118.792595 -4.400356 +v 14.707909 -120.463188 -4.400349 +v -15.932423 -116.762794 -4.400356 +v 16.189999 -120.042473 -1.000354 +v 23.089998 -120.042488 -2.600345 +v 27.448698 -122.221062 -0.117351 +v 27.417858 -122.042458 -1.000354 +v 16.398058 -121.222374 -2.600345 +v 16.398058 -121.222359 -1.000354 +v 23.224518 -120.042488 -7.450542 +v 23.030298 -118.878593 -7.450550 +v 28.343929 -115.717995 -7.500347 +v 16.997149 -122.260078 -2.600345 +v 16.997149 -122.260063 -1.000354 +v 29.814678 -114.341286 -6.173458 +v 29.776989 -123.568779 -6.228146 +v 29.406948 -114.676888 -7.028248 +v 17.914999 -123.030174 -2.600345 +v 17.914999 -123.030159 -1.000354 +v 17.914999 -123.030174 -4.100346 +v -16.398060 -121.222374 -2.600345 +v 19.040909 -123.440071 -2.600345 +v 19.045628 -123.440865 -1.000354 +v -21.190498 -120.606789 -2.600345 +v -29.338959 -124.299858 -1.350353 +v 20.239088 -123.440071 -2.600345 +v -15.131283 -122.085472 -4.400349 +v -15.932423 -123.322075 -4.400349 +v 19.639999 -123.492455 -0.000354 +v -16.242413 -120.641594 -4.100346 +v 19.926519 -121.667366 -4.100346 +v -20.465000 -118.613487 -4.100353 +v 29.329538 -124.938759 -1.350353 +v -29.329544 -124.938759 -1.350353 +v -20.465000 -118.613487 -2.600353 +v -21.190498 -119.478096 -4.100346 +v -16.997150 -117.824791 -4.100353 +v -17.915001 -117.054695 -4.100353 +v -16.190002 -120.042488 -2.600345 +v -21.190498 -119.478096 -2.600345 +v 29.391699 -124.196953 -1.350353 +v -20.819969 -123.284370 -4.100346 +v -21.857620 -122.685280 -4.100346 +v -20.465000 -121.471367 -4.100346 +v -21.190498 -120.606789 -4.100346 +v -22.545418 -121.909676 -7.247143 +v -28.749458 -123.764977 -7.396038 +v -23.058525 -120.533989 -7.247143 +v 29.363068 -124.588966 -6.228146 +v 28.063389 -125.543678 -6.576046 +v 28.973080 -124.071266 -7.213139 +v -16.398060 -118.862495 -2.600353 +v -22.282860 -117.824791 -4.100353 +v -21.364998 -117.054695 -4.100353 +v 27.314289 -123.361351 -0.000255 +v 16.221479 -120.533989 -7.247143 +v 16.624508 -121.980370 -7.450542 +v 16.116018 -121.077171 -7.490238 +v 20.903969 -121.103081 -2.600345 +v 22.881939 -121.222374 -2.600345 +v -27.255798 -125.661079 -6.740543 +v -27.814850 -125.734978 -6.228138 +v -28.512329 -125.304680 -6.576046 +v -16.685322 -121.941277 -7.383235 +v -16.200680 -121.052269 -7.450542 +v 19.332838 -116.335594 -7.498844 +v 27.250389 -116.882790 -4.400356 +v 27.318989 -116.778175 -1.000263 +v 14.850399 -118.792595 -4.400356 +v 23.239069 -116.643974 -1.000362 +v 23.347578 -116.762794 -4.400356 +v -19.040913 -116.644890 -4.100353 +v 15.131279 -122.085472 -4.400349 +v -16.997150 -117.824791 -2.600353 +v 19.926519 -118.417488 -2.600353 +v 18.814999 -118.613487 -4.100353 +v 19.926519 -118.417488 -4.100353 +v 16.222639 -119.472191 -7.292843 +v 18.814999 -118.613487 -2.600353 +v -29.878578 -123.911263 -1.350353 +v -17.422382 -122.685280 -4.100346 +v -18.460033 -123.284370 -4.100346 +v -19.353481 -121.667366 -4.100346 +v 29.878578 -123.911263 -1.350353 +v -19.349960 -116.542183 -7.383244 +v -28.343933 -115.717995 -7.500347 +v 18.814999 -121.471367 -2.600345 +v 15.932419 -116.762794 -4.400356 +v 28.678259 -123.916267 -7.396038 +v 28.267859 -122.221062 -0.117351 +v -17.915001 -117.054695 -2.600353 +v -16.104370 -119.452492 -7.450542 +v 22.282848 -122.260078 -2.600345 +v 27.840168 -125.727379 -6.228138 +v 28.588049 -125.371376 -6.228146 +v 27.352718 -124.699867 -7.455036 +v -27.021278 -124.366875 -7.500340 +v -22.627785 -121.767479 -4.100346 +v -23.037582 -120.641594 -4.100346 +v -20.239082 -116.644890 -4.100353 +v 27.665218 -125.153572 -7.213139 +v -20.502201 -116.637688 -7.383244 +v -21.561012 -117.102089 -7.383244 +v 27.790459 -124.025658 -0.000354 +v 27.790459 -124.025658 -1.000354 +v 29.657009 -114.404869 -1.350360 +v -22.677414 -118.398689 -7.247150 +v 21.129068 -123.303078 -7.450542 +v 29.984119 -114.161278 -1.350360 +v -30.000473 -114.202980 -1.350360 +v -28.809761 -115.314293 -7.426144 +v -23.037582 -119.443382 -4.100346 +v -19.040913 -116.644890 -2.600353 +v -29.657013 -114.404869 -1.350360 +v -27.790749 -124.939568 -7.314739 +v -23.175629 -119.452492 -7.450542 +v -17.741142 -122.997169 -7.383235 +v 19.926519 -121.667366 -2.600345 +v 21.364998 -123.030174 -2.600345 +v -22.538315 -117.786583 -7.490246 +v 17.152519 -117.340294 -7.490246 +v -19.106323 -123.754280 -7.500340 +v 18.229149 -116.826088 -7.383244 +v -29.349709 -124.305656 -1.000354 +v -29.669235 -114.392677 -1.000362 +v -21.507202 -122.947868 -7.247143 +v -16.398060 -118.862495 -4.100353 +v -27.718658 -124.369377 -7.490139 +v 29.669228 -114.392677 -1.000362 +v -20.131512 -123.460976 -7.247143 +v 15.932419 -123.322075 -4.400349 +v -14.707912 -120.463188 -4.400349 +v -19.640003 -123.492470 -4.100346 +v 29.402687 -124.202354 -1.000354 +v -16.868351 -117.885185 -7.383244 +v 20.239088 -116.644890 -4.100353 +v 19.040909 -116.644890 -4.100353 +v 28.560228 -125.199165 -1.000354 +v 27.981289 -125.511864 -1.000354 +v 17.914999 -117.054695 -4.100353 +v -29.267502 -124.556572 -6.576046 +v -29.771935 -123.594566 -6.228146 +v 16.997149 -117.824791 -4.100353 +v 16.551079 -118.370796 -7.383244 +v 16.398058 -118.862495 -4.100353 +v 27.227098 -124.273857 -0.000354 +v -29.687408 -123.044273 -6.667446 +v -27.298912 -123.374855 -0.000255 +v -27.450638 -122.302666 -0.061657 +v -28.267860 -122.221062 -0.117351 +v -28.002640 -123.813454 -0.000354 +v -18.650490 -123.412376 -7.383235 +v 18.180958 -123.237267 -7.383235 +v -19.640003 -123.626976 -7.450542 +v -27.879723 -125.548851 -1.000354 +v -27.172379 -123.277870 -4.400349 +v -23.347580 -123.322075 -4.400349 +v -24.148720 -122.085472 -4.400349 +v 28.755409 -115.259285 -7.428249 +v -29.799248 -114.338081 -6.241657 +v 24.148718 -122.085457 -1.000354 +v 23.239069 -123.440865 -1.000354 +v 22.282848 -117.824791 -4.100353 +v 22.411648 -117.885185 -7.383244 +v -16.040932 -116.643974 -1.000362 +v 16.040928 -116.643974 -1.000362 +v 22.282848 -117.824791 -2.600353 +v -28.267860 -122.042458 -1.000354 +v -27.417862 -122.042458 -1.000354 +v -27.319145 -116.778374 -1.000263 +v -28.789444 -125.222374 -6.228146 +v -19.040913 -116.644875 -1.000362 +v -23.239075 -116.643974 -1.000362 +v -27.700424 -124.089851 -0.000354 +v 28.267859 -122.042458 -1.000354 +v -24.572090 -120.463188 -4.400349 +v 24.572088 -120.463173 -1.000354 +v 24.572088 -120.463188 -4.400349 +v -24.148720 -117.999367 -1.000362 +v -17.915001 -117.054680 -1.000362 +v -16.997150 -117.824776 -1.000362 +v -18.229153 -116.826088 -7.383244 +v -24.429588 -118.792595 -4.400356 +v -27.251450 -116.884285 -4.400356 +v 15.131279 -117.999367 -1.000362 +v 21.364998 -117.054680 -1.000362 +v 22.282848 -117.824776 -1.000362 +v -14.850410 -118.792580 -1.000362 +v 20.903969 -118.981895 -4.100353 +v 22.881939 -118.862480 -1.000362 +v 24.429588 -118.792580 -1.000362 +v -24.572090 -119.621773 -1.000354 +v -23.239075 -123.440865 -1.000354 +v -16.398060 -118.862480 -1.000362 +v 14.707909 -119.621773 -1.000354 +v -14.707912 -120.463173 -1.000354 +v -23.347580 -116.762794 -4.400356 +v 23.089998 -120.042473 -1.000354 +v -16.190002 -120.042473 -1.000354 +v 21.561008 -117.102089 -7.383244 +v -24.429588 -121.292351 -1.000354 +v -20.649872 -123.481773 -7.450542 +v 14.850399 -121.292351 -1.000354 +v -16.398060 -121.222359 -1.000354 +v -15.131283 -122.085457 -1.000354 +v 22.881939 -121.222359 -1.000354 +v -16.040932 -123.440865 -1.000354 +v -16.997150 -122.260063 -1.000354 +v 16.040928 -123.440865 -1.000354 +v 22.282848 -122.260063 -1.000354 +v 21.364998 -117.054695 -2.600353 +v -28.117249 -123.638359 -1.000354 +v -17.915001 -123.030159 -1.000354 +v 24.429588 -118.792595 -4.400356 +v 21.364998 -123.030159 -1.000354 +v 21.364998 -117.054695 -4.100353 +v -19.045631 -123.440865 -1.000354 +v 20.234369 -123.440865 -1.000354 +v -16.652210 -121.767479 -4.100346 +v -27.520454 -124.186562 -1.000354 +v 27.227098 -124.273857 -1.000354 + +f 3173 3174 3175 +f 3173 3175 3398 +f 3265 3173 3398 +f 3242 3265 3398 +f 3242 3398 3302 +f 3204 3242 3302 +f 3204 3302 3301 +f 3199 3204 3301 +f 3199 3301 3323 +f 3390 3199 3323 +f 3390 3323 3389 +f 3388 3390 3389 +f 3388 3389 3366 +f 3385 3388 3366 +f 3385 3366 3368 +f 3382 3385 3368 +f 3382 3368 3311 +f 3381 3382 3311 +f 3445 3381 3311 +f 3445 3311 3257 +f 3409 3445 3257 +f 3256 3409 3257 +f 3255 3256 3257 +f 3334 3255 3257 +f 3404 3334 3257 +f 3404 3257 3331 +f 3356 3404 3331 +f 3292 3356 3331 +f 3361 3292 3331 +f 3365 3361 3331 +f 3348 3365 3331 +f 3347 3348 3331 +f 3330 3347 3331 +f 3330 3345 3347 +f 3345 3299 3347 +f 3200 3299 3345 +f 3317 3200 3345 +f 3185 3200 3317 +f 3283 3185 3317 +f 3283 3317 3427 +f 3380 3283 3427 +f 3380 3427 3257 +f 3427 3330 3257 +f 3282 3283 3380 +f 3372 3282 3380 +f 3337 3372 3380 +f 3337 3380 3311 +f 3310 3337 3311 +f 3309 3310 3311 +f 3362 3309 3311 +f 3397 3362 3311 +f 3367 3397 3311 +f 3399 3397 3367 +f 3342 3399 3367 +f 3342 3367 3303 +f 3302 3342 3303 +f 3303 3367 3323 +f 3399 3342 3447 +f 3375 3399 3447 +f 3375 3447 3371 +f 3287 3375 3371 +f 3288 3287 3371 +f 3288 3371 3291 +f 3343 3288 3291 +f 3344 3343 3291 +f 3344 3291 3293 +f 3344 3293 3361 +f 3357 3344 3361 +f 3357 3361 3352 +f 3298 3357 3352 +f 3298 3352 3348 +f 3299 3298 3348 +f 3277 3298 3299 +f 3277 3281 3298 +f 3280 3281 3277 +f 3203 3280 3277 +f 3203 3277 3200 +f 3186 3203 3200 +f 3203 3186 3336 +f 3203 3336 3358 +f 3203 3358 3181 +f 3358 3417 3181 +f 3417 3179 3181 +f 3179 3180 3181 +f 3180 3280 3181 +f 3285 3280 3180 +f 3187 3285 3180 +f 3182 3187 3180 +f 3182 3188 3187 +f 3188 3195 3187 +f 3188 3196 3195 +f 3196 3201 3195 +f 3201 3269 3195 +f 3269 3285 3195 +f 3285 3269 3290 +f 3285 3290 3281 +f 3281 3290 3357 +f 3269 3289 3290 +f 3289 3343 3290 +f 3269 3210 3289 +f 3289 3210 3328 +f 3378 3289 3328 +f 3327 3378 3328 +f 3326 3327 3328 +f 3326 3328 3224 +f 3464 3326 3224 +f 3275 3464 3224 +f 3275 3224 3183 +f 3275 3183 3372 +f 3224 3214 3183 +f 3214 3184 3183 +f 3183 3184 3185 +f 3183 3185 3282 +f 3184 3186 3185 +f 3186 3184 3319 +f 3184 3297 3319 +f 3297 3439 3319 +f 3439 3426 3319 +f 3319 3426 3336 +f 3426 3425 3336 +f 3425 3426 3410 +f 3417 3425 3410 +f 3417 3410 3370 +f 3410 3411 3370 +f 3411 3233 3370 +f 3233 3315 3370 +f 3315 3374 3370 +f 3370 3374 3359 +f 3270 3370 3359 +f 3270 3359 3355 +f 3325 3270 3355 +f 3325 3355 3387 +f 3279 3325 3387 +f 3386 3279 3387 +f 3386 3387 3392 +f 3386 3392 3292 +f 3308 3386 3292 +f 3360 3308 3292 +f 3360 3292 3373 +f 3342 3360 3373 +f 3342 3373 3291 +f 3341 3360 3342 +f 3334 3341 3342 +f 3334 3342 3175 +f 3334 3175 3353 +f 3334 3353 3232 +f 3353 3231 3232 +f 3231 3217 3232 +f 3232 3217 3255 +f 3217 3176 3255 +f 3217 3215 3176 +f 3176 3215 3177 +f 3176 3177 3178 +f 3176 3178 3256 +f 3178 3177 3408 +f 3178 3408 3409 +f 3177 3434 3408 +f 3408 3434 3461 +f 3408 3461 3445 +f 3461 3434 3381 +f 3434 3322 3381 +f 3434 3189 3322 +f 3189 3320 3322 +f 3320 3321 3322 +f 3322 3321 3385 +f 3320 3324 3321 +f 3324 3197 3321 +f 3321 3197 3388 +f 3324 3193 3197 +f 3193 3198 3197 +f 3197 3198 3199 +f 3193 3192 3198 +f 3192 3241 3198 +f 3241 3242 3198 +f 3192 3332 3241 +f 3241 3332 3276 +f 3174 3241 3276 +f 3231 3174 3276 +f 3231 3276 3215 +f 3276 3363 3215 +f 3363 3304 3215 +f 3363 3364 3304 +f 3364 3338 3304 +f 3338 3305 3304 +f 3304 3305 3190 +f 3304 3190 3177 +f 3305 3250 3190 +f 3190 3250 3191 +f 3189 3190 3191 +f 3189 3191 3412 +f 3189 3412 3456 +f 3412 3432 3456 +f 3432 3431 3456 +f 3456 3431 3235 +f 3320 3456 3235 +f 3234 3320 3235 +f 3233 3234 3235 +f 3233 3236 3234 +f 3236 3239 3234 +f 3239 3324 3234 +f 3236 3240 3239 +f 3240 3243 3239 +f 3243 3193 3239 +f 3194 3193 3243 +f 3244 3194 3243 +f 3244 3245 3194 +f 3245 3207 3194 +f 3207 3192 3194 +f 3253 3192 3207 +f 3249 3253 3207 +f 3249 3254 3253 +f 3254 3258 3253 +f 3253 3258 3332 +f 3258 3263 3332 +f 3263 3267 3332 +f 3267 3271 3332 +f 3332 3271 3363 +f 3268 3271 3267 +f 3264 3268 3267 +f 3454 3268 3264 +f 3454 3264 3259 +f 3454 3259 3254 +f 3448 3454 3254 +f 3454 3448 3318 +f 3376 3454 3318 +f 3273 3376 3318 +f 3273 3318 3247 +f 3272 3273 3247 +f 3272 3247 3377 +f 3450 3272 3377 +f 3441 3450 3377 +f 3441 3377 3246 +f 3433 3441 3246 +f 3433 3246 3248 +f 3410 3433 3248 +f 3333 3410 3248 +f 3314 3333 3248 +f 3247 3314 3248 +f 3247 3440 3314 +f 3440 3430 3314 +f 3440 3249 3430 +f 3249 3245 3430 +f 3430 3245 3411 +f 3430 3411 3333 +f 3448 3249 3440 +f 3448 3440 3247 +f 3314 3430 3333 +f 3246 3247 3248 +f 3439 3441 3433 +f 3444 3441 3439 +f 3450 3441 3444 +f 3449 3450 3444 +f 3449 3444 3284 +f 3266 3449 3284 +f 3266 3284 3184 +f 3453 3449 3266 +f 3213 3453 3266 +f 3213 3266 3214 +f 3212 3213 3214 +f 3230 3212 3214 +f 3225 3212 3230 +f 3210 3225 3230 +f 3221 3225 3210 +f 3209 3221 3210 +f 3208 3209 3210 +f 3205 3208 3210 +f 3206 3208 3205 +f 3202 3206 3205 +f 3202 3205 3201 +f 3446 3206 3202 +f 3446 3202 3437 +f 3446 3437 3421 +f 3403 3446 3421 +f 3401 3403 3421 +f 3401 3421 3429 +f 3415 3401 3429 +f 3442 3415 3429 +f 3428 3442 3429 +f 3428 3424 3442 +f 3424 3418 3442 +f 3424 3196 3418 +f 3202 3196 3424 +f 3437 3424 3428 +f 3418 3415 3442 +f 3415 3418 3370 +f 3414 3415 3370 +f 3413 3414 3370 +f 3369 3413 3370 +f 3369 3457 3413 +f 3457 3395 3413 +f 3395 3394 3413 +f 3393 3394 3395 +f 3396 3393 3395 +f 3419 3393 3396 +f 3419 3396 3465 +f 3466 3419 3465 +f 3400 3466 3465 +f 3369 3400 3465 +f 3400 3369 3270 +f 3223 3400 3270 +f 3223 3270 3238 +f 3218 3223 3238 +f 3218 3238 3307 +f 3339 3218 3307 +f 3339 3307 3295 +f 3339 3295 3340 +f 3237 3339 3340 +f 3237 3340 3294 +f 3278 3237 3294 +f 3278 3294 3261 +f 3329 3278 3261 +f 3329 3261 3260 +f 3354 3329 3260 +f 3354 3260 3405 +f 3355 3354 3405 +f 3260 3262 3405 +f 3262 3404 3405 +f 3351 3329 3354 +f 3359 3351 3354 +f 3286 3329 3351 +f 3379 3286 3351 +f 3374 3379 3351 +f 3420 3379 3374 +f 3313 3420 3374 +f 3252 3420 3313 +f 3252 3313 3312 +f 3227 3252 3312 +f 3423 3227 3312 +f 3459 3423 3312 +f 3316 3459 3312 +f 3436 3459 3316 +f 3315 3436 3316 +f 3313 3315 3316 +f 3435 3436 3315 +f 3432 3435 3315 +f 3435 3443 3436 +f 3443 3422 3436 +f 3406 3422 3443 +f 3451 3406 3443 +f 3451 3443 3250 +f 3407 3406 3451 +f 3455 3407 3451 +f 3455 3451 3305 +f 3460 3407 3455 +f 3460 3455 3338 +f 3463 3407 3460 +f 3463 3460 3364 +f 3271 3463 3364 +f 3274 3463 3271 +f 3274 3407 3463 +f 3274 3300 3407 +f 3407 3300 3226 +f 3407 3226 3228 +f 3226 3227 3228 +f 3226 3300 3227 +f 3300 3251 3227 +f 3300 3349 3251 +f 3349 3335 3251 +f 3251 3335 3252 +f 3335 3349 3350 +f 3335 3350 3420 +f 3349 3391 3350 +f 3391 3466 3350 +f 3466 3384 3350 +f 3384 3383 3350 +f 3383 3379 3350 +f 3383 3384 3220 +f 3383 3220 3286 +f 3286 3220 3278 +f 3384 3400 3220 +f 3300 3391 3349 +f 3391 3300 3274 +f 3391 3274 3229 +f 3419 3391 3229 +f 3229 3274 3452 +f 3229 3452 3462 +f 3229 3462 3225 +f 3222 3229 3225 +f 3229 3222 3438 +f 3393 3229 3438 +f 3393 3438 3401 +f 3414 3393 3401 +f 3438 3402 3401 +f 3402 3438 3403 +f 3438 3222 3216 +f 3438 3216 3211 +f 3438 3211 3206 +f 3211 3216 3209 +f 3216 3222 3221 +f 3462 3452 3458 +f 3462 3458 3212 +f 3458 3452 3453 +f 3274 3454 3452 +f 3452 3454 3273 +f 3406 3407 3228 +f 3406 3228 3423 +f 3422 3406 3423 +f 3443 3435 3191 +f 3436 3422 3459 +f 3422 3423 3459 +f 3228 3227 3423 +f 3251 3252 3227 +f 3313 3316 3312 +f 3335 3420 3252 +f 3350 3379 3420 +f 3379 3383 3286 +f 3260 3261 3262 +f 3262 3261 3296 +f 3296 3334 3262 +f 3296 3295 3334 +f 3295 3346 3334 +f 3295 3306 3346 +f 3346 3306 3360 +f 3294 3295 3296 +f 3278 3329 3286 +f 3261 3294 3296 +f 3220 3237 3278 +f 3220 3219 3237 +f 3218 3219 3220 +f 3237 3219 3339 +f 3294 3340 3295 +f 3295 3307 3306 +f 3306 3307 3308 +f 3308 3307 3416 +f 3219 3218 3339 +f 3307 3238 3416 +f 3238 3279 3416 +f 3218 3220 3223 +f 3238 3270 3279 +f 3220 3400 3223 +f 3400 3384 3466 +f 3391 3419 3466 +f 3465 3396 3457 +f 3419 3229 3393 +f 3394 3393 3414 +f 3396 3395 3457 +f 3369 3465 3457 +f 3394 3414 3413 +f 3418 3179 3370 +f 3182 3179 3418 +f 3415 3414 3401 +f 3421 3428 3429 +f 3401 3402 3403 +f 3438 3446 3403 +f 3421 3437 3428 +f 3437 3202 3424 +f 3446 3438 3206 +f 3206 3211 3208 +f 3211 3209 3208 +f 3216 3221 3209 +f 3222 3225 3221 +f 3225 3462 3212 +f 3212 3458 3213 +f 3458 3453 3213 +f 3453 3452 3449 +f 3284 3444 3297 +f 3452 3450 3449 +f 3450 3452 3272 +f 3377 3247 3246 +f 3452 3273 3272 +f 3454 3376 3273 +f 3318 3448 3247 +f 3259 3264 3263 +f 3274 3268 3454 +f 3268 3274 3271 +f 3264 3267 3263 +f 3259 3263 3258 +f 3254 3259 3258 +f 3448 3254 3249 +f 3245 3249 3207 +f 3245 3244 3411 +f 3244 3240 3411 +f 3240 3244 3243 +f 3240 3236 3411 +f 3431 3233 3235 +f 3431 3432 3315 +f 3435 3432 3412 +f 3191 3435 3412 +f 3250 3443 3191 +f 3305 3451 3250 +f 3338 3455 3305 +f 3364 3460 3338 +f 3271 3364 3363 +f 3332 3363 3276 +f 3253 3332 3192 +f 3192 3193 3194 +f 3193 3324 3239 +f 3324 3320 3234 +f 3320 3189 3456 +f 3190 3189 3434 +f 3177 3190 3434 +f 3215 3304 3177 +f 3217 3231 3215 +f 3174 3231 3353 +f 3334 3346 3341 +f 3346 3360 3341 +f 3373 3292 3291 +f 3306 3308 3360 +f 3308 3416 3386 +f 3392 3405 3292 +f 3387 3405 3392 +f 3416 3279 3386 +f 3387 3355 3405 +f 3279 3270 3325 +f 3359 3354 3355 +f 3369 3370 3270 +f 3374 3351 3359 +f 3315 3313 3374 +f 3233 3431 3315 +f 3411 3236 3233 +f 3411 3410 3333 +f 3426 3433 3410 +f 3426 3439 3433 +f 3444 3439 3297 +f 3184 3284 3297 +f 3214 3266 3184 +f 3230 3214 3224 +f 3464 3275 3310 +f 3326 3464 3309 +f 3328 3230 3224 +f 3327 3326 3362 +f 3378 3327 3397 +f 3375 3378 3397 +f 3378 3287 3289 +f 3210 3230 3328 +f 3205 3210 3269 +f 3205 3269 3201 +f 3196 3202 3201 +f 3196 3188 3418 +f 3188 3182 3418 +f 3195 3285 3187 +f 3179 3182 3180 +f 3179 3417 3370 +f 3425 3417 3358 +f 3336 3425 3358 +f 3186 3319 3336 +f 3280 3203 3181 +f 3280 3285 3281 +f 3281 3357 3298 +f 3290 3344 3357 +f 3291 3292 3293 +f 3343 3344 3290 +f 3288 3343 3289 +f 3371 3342 3291 +f 3287 3288 3289 +f 3287 3378 3375 +f 3447 3342 3371 +f 3375 3397 3399 +f 3397 3327 3362 +f 3362 3326 3309 +f 3309 3464 3310 +f 3310 3275 3337 +f 3275 3372 3337 +f 3372 3183 3282 +f 3427 3317 3330 +f 3282 3185 3283 +f 3185 3186 3200 +f 3200 3277 3299 +f 3317 3345 3330 +f 3299 3348 3347 +f 3352 3365 3348 +f 3352 3361 3365 +f 3293 3292 3361 +f 3292 3405 3356 +f 3405 3404 3356 +f 3257 3330 3331 +f 3262 3334 3404 +f 3334 3232 3255 +f 3255 3176 3256 +f 3256 3178 3409 +f 3409 3408 3445 +f 3311 3380 3257 +f 3461 3381 3445 +f 3322 3382 3381 +f 3368 3367 3311 +f 3322 3385 3382 +f 3366 3367 3368 +f 3321 3388 3385 +f 3389 3367 3366 +f 3197 3390 3388 +f 3323 3367 3389 +f 3197 3199 3390 +f 3301 3303 3323 +f 3198 3204 3199 +f 3301 3302 3303 +f 3242 3204 3198 +f 3398 3342 3302 +f 3265 3242 3241 +f 3173 3265 3241 +f 3175 3342 3398 +f 3175 3174 3353 +f 3174 3173 3241 + + +o Object.7 +v 146.251007 61.444931 -3.300571 +v 146.237701 62.699688 -4.550571 +v 145.643890 62.667496 -4.550571 +v 144.458588 59.781425 -4.747760 +v 143.354889 59.656387 -4.750560 +v 143.354889 60.251045 -4.750568 +v 148.774506 59.362549 -4.750560 +v 147.630997 59.759605 -4.716564 +v 148.838806 59.953716 -4.750568 +v 145.070892 62.508408 -4.750568 +v 145.070892 62.508408 -4.550571 +v 145.643890 62.667496 -4.750568 +v 146.200897 58.457912 -3.300563 +v 145.459000 58.592365 -3.300563 +v 145.070892 57.399029 -4.550563 +v 146.862091 61.239010 -3.300571 +v 146.824493 62.603477 -4.550571 +v 146.237701 62.699688 -4.750568 +v 146.035309 58.668484 -3.750560 +v 146.089600 58.633354 -3.750560 +v 145.932999 58.476540 -4.625362 +v 147.376892 62.383377 -4.550571 +v 147.518295 60.180138 -4.643772 +v 147.718994 60.126007 -4.747768 +v 146.015106 61.178909 -3.750568 +v 146.005798 60.248440 -3.750568 +v 145.842987 60.403305 -4.637669 +v 147.869095 62.049667 -4.550571 +v 147.869095 62.049667 -4.750568 +v 147.169998 60.474384 0.249424 +v 146.837006 60.891926 0.249424 +v 146.527191 61.070774 0.249424 +v 144.803101 59.900532 -3.750568 +v 145.639191 59.707897 -4.637661 +v 144.635101 59.680386 -4.707157 +v 144.092300 58.062550 -4.750560 +v 143.732498 58.535950 -4.750560 +v 144.529907 59.645329 -4.747760 +v 144.545502 57.677582 -4.550563 +v 145.181091 58.759583 -3.300563 +v 144.565491 60.157406 -4.707164 +v 144.593994 59.819328 -4.651859 +v 146.364700 60.311516 -4.615268 +v 146.198395 60.180401 -3.750568 +v 146.308701 61.379848 -4.628170 +v 147.120392 61.042709 -3.300571 +v 148.278107 61.617947 -4.550571 +v 147.409195 59.954491 -3.750568 +v 146.469101 60.216255 -4.615268 +v 145.684387 60.244038 -4.678768 +v 144.640991 60.145016 -4.598964 +v 144.666504 60.333927 -4.747768 +v 146.381592 60.037182 -3.750568 +v 146.087296 61.273891 -3.750568 +v 147.534088 60.355011 -3.300571 +v 145.778290 60.324207 -4.678768 +v 148.278107 61.617947 -4.750568 +v 148.584595 61.108418 -4.550571 +v 144.849487 59.108746 -3.300563 +v 144.545502 62.229866 -4.550571 +v 144.092300 58.062550 -4.550563 +v 143.482788 59.075642 -4.750560 +v 148.584595 58.799030 -4.750560 +v 148.278107 58.289490 -4.750560 +v 147.537903 59.647316 -4.725559 +v 148.774506 60.544888 -4.550571 +v 145.966400 61.447937 -4.649868 +v 145.890991 61.395016 -4.598964 +v 143.732498 61.371487 -4.750568 +v 143.732498 61.371487 -4.550571 +v 144.092300 61.844887 -4.750568 +v 145.726105 61.373207 -4.743969 +v 144.092300 61.844887 -4.550571 +v 144.545502 62.229866 -4.750568 +v 147.569092 59.711052 -3.300563 +v 148.838806 59.953716 -4.550571 +v 145.070892 57.399029 -4.750560 +v 144.545502 57.677582 -4.750560 +v 145.885101 58.430389 -4.707157 +v 148.584595 61.108418 -4.750568 +v 145.900909 61.483788 -4.706768 +v 147.376892 62.383377 -4.750568 +v 143.732498 58.535950 -4.550563 +v 148.774506 59.362549 -4.550563 +v 145.818909 59.490566 -4.678761 +v 145.808701 58.515820 -4.706760 +v 145.718292 59.643246 -4.678761 +v 145.770203 60.031631 -3.750568 +v 146.237701 57.207760 -4.550563 +v 145.643890 57.239952 -4.550563 +v 143.482788 60.831795 -4.750568 +v 143.482788 60.831795 -4.550571 +v 146.346191 59.501286 -4.658962 +v 146.408203 59.617428 -4.658962 +v 146.478302 59.553387 -4.736660 +v 146.824493 62.603477 -4.750568 +v 147.328201 59.108746 -3.300563 +v 148.584595 58.799030 -4.550563 +v 148.774506 60.544888 -4.750568 +v 147.376892 57.524059 -4.750560 +v 146.237701 57.207760 -4.750560 +v 146.430206 58.435261 -4.747760 +v 147.505295 60.300179 -4.738864 +v 148.278107 58.289490 -4.550563 +v 143.482788 59.075642 -4.550563 +v 145.888794 59.827660 -3.750560 +v 146.010895 59.635120 -3.750560 +v 146.172302 59.660889 -3.750560 +v 146.246307 58.469761 -4.640759 +v 147.869095 57.857780 -4.550563 +v 145.643890 57.239952 -4.750560 +v 146.200897 61.449535 -0.050579 +v 145.755005 61.416115 -0.050579 +v 146.996597 58.759583 -3.300563 +v 147.376892 57.524059 -4.550563 +v 145.821808 61.123634 0.249424 +v 146.357300 61.545067 -4.747768 +v 146.718597 58.592365 -3.300563 +v 147.553696 59.768158 -4.629360 +v 146.824493 57.303959 -4.550563 +v 147.869095 57.857780 -4.750560 +v 146.636795 61.350033 -0.050579 +v 145.007599 59.433064 0.249432 +v 144.902191 60.132576 0.249424 +v 144.605591 59.730164 -0.050571 +v 144.608597 59.711052 -3.300563 +v 145.338806 61.252766 -0.050579 +v 143.354889 59.656387 -4.550563 +v 147.275391 59.774876 0.249432 +v 145.209106 60.769936 0.249424 +v 146.443100 60.413216 -4.736668 +v 143.354889 60.251045 -4.550571 +v 145.057297 61.042709 -3.300571 +v 145.609894 61.375202 -3.300571 +v 144.768402 59.954491 -3.750568 +v 146.178497 58.757088 0.249432 +v 146.688797 58.914497 0.249432 +v 146.968506 59.137520 0.249432 +v 144.643494 60.355011 -3.300571 +v 146.824493 57.303959 -4.750560 +v 147.024002 61.126472 -0.050579 +v 147.588806 59.953724 -0.050579 +v 147.522202 59.511593 -0.050571 +v 144.737396 59.302898 -0.050571 +v 144.605591 60.177284 -0.050579 +v 144.989197 60.973984 -0.050579 +v 147.328201 59.108749 -0.050571 +v 147.522202 60.395855 -0.050579 +v 145.153595 58.780979 -0.050571 +v 147.371094 59.898041 -3.750568 +v 147.024002 58.780979 -0.050571 +v 146.286499 59.826080 -3.750560 +v 144.737396 60.604553 -0.050579 +v 146.636795 58.557419 -0.050571 +v 147.328201 60.798706 -0.050579 +v 145.540802 58.557419 -0.050571 +v 146.200897 58.457916 -0.050571 +v 145.209106 59.137520 0.249432 +v 145.821808 58.783817 0.249432 + +f 3467 3468 3469 +f 3600 3467 3469 +f 3477 3600 3469 +f 3477 3469 3478 +f 3476 3477 3478 +f 3547 3476 3478 +f 3583 3547 3478 +f 3484 3583 3478 +f 3562 3583 3484 +f 3483 3562 3484 +f 3468 3483 3484 +f 3482 3483 3468 +f 3482 3488 3483 +f 3483 3488 3548 +f 3488 3495 3548 +f 3495 3583 3548 +f 3597 3583 3495 +f 3569 3597 3495 +f 3523 3569 3495 +f 3513 3523 3495 +f 3494 3513 3495 +f 3512 3513 3494 +f 3482 3512 3494 +f 3607 3512 3482 +f 3588 3607 3482 +f 3578 3588 3482 +f 3578 3482 3467 +f 3579 3578 3467 +f 3498 3578 3579 +f 3582 3498 3579 +f 3593 3582 3579 +f 3593 3579 3600 +f 3599 3593 3600 +f 3612 3593 3599 +f 3605 3612 3599 +f 3605 3599 3539 +f 3536 3605 3539 +f 3536 3539 3537 +f 3535 3536 3537 +f 3538 3535 3537 +f 3538 3537 3540 +f 3547 3538 3540 +f 3534 3538 3547 +f 3533 3534 3547 +f 3511 3533 3547 +f 3511 3520 3533 +f 3510 3520 3511 +f 3509 3510 3511 +f 3509 3511 3583 +f 3519 3510 3509 +f 3515 3519 3509 +f 3515 3509 3597 +f 3514 3519 3515 +f 3489 3514 3515 +f 3489 3515 3569 +f 3490 3489 3569 +f 3490 3569 3565 +f 3475 3490 3565 +f 3542 3475 3565 +f 3532 3542 3565 +f 3532 3565 3546 +f 3524 3532 3546 +f 3524 3546 3523 +f 3521 3532 3524 +f 3521 3524 3513 +f 3521 3541 3532 +f 3614 3541 3521 +f 3621 3614 3521 +f 3621 3521 3512 +f 3496 3614 3621 +f 3497 3496 3621 +f 3497 3621 3607 +f 3498 3497 3607 +f 3496 3497 3498 +f 3496 3608 3614 +f 3496 3595 3608 +f 3595 3609 3608 +f 3608 3609 3541 +f 3609 3563 3541 +f 3541 3563 3550 +f 3541 3550 3542 +f 3542 3550 3473 +f 3550 3529 3473 +f 3473 3529 3474 +f 3473 3474 3475 +f 3529 3531 3474 +f 3531 3585 3474 +f 3585 3489 3474 +f 3585 3531 3560 +f 3618 3585 3560 +f 3574 3618 3560 +f 3559 3574 3560 +f 3559 3560 3561 +f 3568 3559 3561 +f 3568 3561 3531 +f 3587 3568 3531 +f 3530 3587 3531 +f 3570 3587 3530 +f 3564 3570 3530 +f 3564 3530 3529 +f 3563 3570 3564 +f 3563 3576 3570 +f 3563 3580 3576 +f 3580 3581 3576 +f 3576 3581 3566 +f 3576 3566 3587 +f 3581 3586 3566 +f 3586 3606 3566 +f 3566 3606 3567 +f 3566 3567 3568 +f 3568 3567 3545 +f 3487 3568 3545 +f 3552 3487 3545 +f 3545 3544 3552 +f 3552 3544 3504 +f 3553 3552 3504 +f 3501 3553 3504 +f 3508 3501 3504 +f 3508 3504 3470 +f 3507 3508 3470 +f 3507 3470 3557 +f 3507 3557 3535 +f 3518 3507 3535 +f 3517 3507 3518 +f 3516 3517 3518 +f 3522 3516 3518 +f 3522 3518 3538 +f 3538 3493 3522 +f 3493 3492 3522 +f 3492 3554 3522 +f 3519 3554 3492 +f 3519 3618 3554 +f 3616 3618 3519 +f 3491 3492 3493 +f 3491 3493 3534 +f 3520 3491 3534 +f 3520 3492 3491 +f 3554 3516 3522 +f 3516 3554 3517 +f 3554 3601 3517 +f 3601 3508 3517 +f 3554 3572 3601 +f 3572 3499 3601 +f 3601 3499 3501 +f 3499 3500 3501 +f 3499 3572 3500 +f 3500 3572 3553 +f 3572 3573 3553 +f 3573 3551 3553 +f 3573 3487 3551 +f 3573 3485 3487 +f 3485 3486 3487 +f 3486 3575 3487 +f 3575 3486 3559 +f 3486 3485 3574 +f 3574 3485 3573 +f 3574 3573 3554 +f 3573 3572 3554 +f 3557 3558 3535 +f 3598 3558 3557 +f 3472 3598 3557 +f 3594 3598 3472 +f 3471 3594 3472 +f 3470 3471 3472 +f 3528 3471 3470 +f 3528 3571 3471 +f 3549 3571 3528 +f 3503 3549 3528 +f 3503 3528 3504 +f 3502 3503 3504 +f 3502 3527 3503 +f 3505 3527 3502 +f 3544 3505 3502 +f 3481 3505 3544 +f 3543 3481 3544 +f 3556 3481 3543 +f 3577 3556 3543 +f 3577 3543 3545 +f 3555 3556 3577 +f 3567 3555 3577 +f 3586 3555 3567 +f 3479 3555 3586 +f 3584 3479 3586 +f 3620 3479 3584 +f 3617 3620 3584 +f 3617 3584 3580 +f 3603 3620 3617 +f 3604 3603 3617 +f 3604 3617 3613 +f 3604 3613 3609 +f 3613 3617 3563 +f 3602 3603 3604 +f 3602 3604 3595 +f 3625 3602 3595 +f 3624 3625 3595 +f 3589 3624 3595 +f 3624 3589 3615 +f 3622 3624 3615 +f 3622 3615 3480 +f 3479 3622 3480 +f 3479 3480 3481 +f 3623 3622 3479 +f 3623 3625 3622 +f 3480 3615 3506 +f 3480 3506 3505 +f 3506 3525 3505 +f 3506 3615 3525 +f 3615 3610 3525 +f 3525 3610 3592 +f 3525 3592 3571 +f 3571 3592 3594 +f 3610 3591 3592 +f 3591 3611 3592 +f 3592 3611 3605 +f 3592 3605 3598 +f 3611 3619 3605 +f 3611 3590 3619 +f 3590 3596 3619 +f 3619 3596 3612 +f 3590 3496 3596 +f 3596 3496 3582 +f 3589 3496 3590 +f 3589 3590 3591 +f 3591 3590 3611 +f 3610 3589 3591 +f 3615 3589 3610 +f 3625 3624 3622 +f 3602 3625 3623 +f 3602 3623 3620 +f 3603 3602 3620 +f 3620 3623 3479 +f 3555 3479 3556 +f 3556 3479 3481 +f 3481 3480 3505 +f 3505 3525 3527 +f 3527 3525 3549 +f 3527 3549 3503 +f 3549 3525 3571 +f 3571 3594 3471 +f 3594 3592 3598 +f 3598 3605 3558 +f 3470 3472 3557 +f 3517 3508 3507 +f 3504 3528 3470 +f 3508 3601 3501 +f 3501 3500 3553 +f 3551 3552 3553 +f 3544 3502 3504 +f 3543 3544 3545 +f 3487 3552 3551 +f 3575 3568 3487 +f 3567 3577 3545 +f 3586 3567 3606 +f 3584 3586 3581 +f 3580 3584 3581 +f 3617 3580 3563 +f 3570 3576 3587 +f 3587 3566 3568 +f 3575 3559 3568 +f 3486 3574 3559 +f 3618 3574 3554 +f 3618 3616 3585 +f 3616 3514 3585 +f 3560 3531 3561 +f 3529 3530 3531 +f 3550 3564 3529 +f 3563 3564 3550 +f 3609 3613 3563 +f 3595 3604 3609 +f 3589 3595 3496 +f 3614 3608 3541 +f 3541 3542 3532 +f 3542 3473 3475 +f 3474 3490 3475 +f 3565 3569 3546 +f 3474 3489 3490 +f 3585 3514 3489 +f 3514 3616 3519 +f 3519 3492 3510 +f 3510 3492 3520 +f 3533 3520 3534 +f 3534 3493 3538 +f 3538 3518 3535 +f 3558 3536 3535 +f 3537 3539 3540 +f 3539 3526 3540 +f 3540 3526 3476 +f 3558 3605 3536 +f 3539 3599 3526 +f 3526 3599 3477 +f 3619 3612 3605 +f 3612 3596 3593 +f 3596 3582 3593 +f 3496 3498 3582 +f 3498 3588 3578 +f 3498 3607 3588 +f 3607 3621 3512 +f 3512 3521 3513 +f 3513 3524 3523 +f 3546 3569 3523 +f 3569 3515 3597 +f 3509 3583 3597 +f 3488 3494 3495 +f 3482 3494 3488 +f 3483 3548 3562 +f 3548 3583 3562 +f 3511 3547 3583 +f 3547 3540 3476 +f 3526 3477 3476 +f 3469 3484 3478 +f 3599 3600 3477 +f 3600 3579 3467 +f 3469 3468 3484 +f 3467 3482 3468 + + +o Object.8 +v 143.732498 -1.628410 -4.550495 +v 144.545502 -0.770111 -4.550495 +v 143.732498 -1.628410 -4.750492 +v 146.267700 -4.232803 0.249508 +v 145.910004 -4.232803 0.249508 +v 146.088806 -4.546204 -0.050495 +v 147.551208 -3.380005 -3.300495 +v 148.584595 -4.200905 -4.550488 +v 148.838806 -3.046204 -4.550495 +v 145.888794 -3.172302 -3.750492 +v 145.897491 -4.494003 -4.598880 +v 145.818909 -3.509407 -4.678691 +v 144.626404 -3.380005 -3.300495 +v 144.623901 -2.723709 -3.300495 +v 143.354889 -2.748909 -4.550495 +v 144.916107 -2.111008 -0.050502 +v 145.272598 -2.166512 0.249501 +v 145.437988 -1.694809 -0.050502 +v 144.894699 -2.138412 -3.300495 +v 145.243805 -1.806808 -3.300495 +v 146.198395 -2.819511 -3.750492 +v 145.962799 -2.846214 -3.750492 +v 146.159195 -1.795410 -3.750492 +v 145.842987 -2.596611 -4.637592 +v 145.664398 -2.793015 -4.637592 +v 144.651398 -2.803909 -4.671695 +v 146.090302 -4.366402 -3.750484 +v 146.169998 -1.548409 -3.300495 +v 144.999802 -4.077705 -3.300495 +v 143.482788 -3.924301 -4.550495 +v 146.255295 -1.449715 -4.738789 +v 145.900909 -1.516113 -4.706691 +v 143.482788 -3.924301 -4.750492 +v 147.518097 -2.788910 -4.683895 +v 146.459290 -2.689407 -4.712390 +v 147.869095 -0.950310 -4.750492 +v 146.261108 -4.676407 -4.747684 +v 145.884491 -4.616005 -4.732685 +v 144.092300 -4.937401 -4.550488 +v 147.553696 -2.723709 -3.300495 +v 148.584595 -1.891510 -4.550495 +v 146.286591 -4.487503 -4.598880 +v 147.177795 -4.077705 -3.300495 +v 145.049591 -3.646202 0.249501 +v 148.584595 -4.200905 -4.750484 +v 147.607300 -3.347603 -4.739292 +v 148.838806 -3.046204 -4.750492 +v 147.869095 -5.142105 -4.550488 +v 146.237701 -5.792206 -4.750484 +v 144.803101 -3.099403 -3.750492 +v 144.647491 -3.244003 -4.598888 +v 144.789795 -3.796204 -0.050502 +v 144.592987 -2.934105 -0.050502 +v 146.824493 -5.696007 -4.750484 +v 146.297394 -1.602112 -4.629695 +v 146.169998 -4.544006 -3.300487 +v 145.687500 -4.491501 -3.300487 +v 144.529907 -3.354607 -4.747692 +v 143.354889 -2.748909 -4.750492 +v 146.933807 -1.806808 -3.300495 +v 147.282990 -2.138412 -3.300495 +v 145.070892 -5.600906 -4.550488 +v 147.567902 -3.191002 -4.623196 +v 147.355804 -3.110703 -3.750492 +v 146.933807 -4.285606 -0.050495 +v 145.639191 -3.292000 -4.637592 +v 146.552002 -3.316101 -4.678691 +v 146.351410 -3.426506 -4.615192 +v 146.824493 -5.696007 -4.550488 +v 146.214905 -3.246201 -3.750492 +v 145.070892 -5.600906 -4.750484 +v 147.869095 -0.950310 -4.550495 +v 144.892197 -3.135902 0.249501 +v 148.584595 -1.891510 -4.750492 +v 146.237701 -5.792206 -4.550488 +v 146.824493 -0.396408 -4.750492 +v 145.643890 -0.332413 -4.750492 +v 146.824493 -0.396408 -4.550495 +v 145.437988 -4.397606 -0.050495 +v 147.869095 -5.142105 -4.750484 +v 146.267700 -1.859612 0.249501 +v 145.643890 -0.332413 -4.550495 +v 144.545502 -0.770111 -4.750492 +v 144.092300 -4.937401 -4.750484 +v 146.904999 -3.925903 0.249501 +v 147.205902 -3.484604 0.249501 +v 147.485107 -3.594200 -0.050502 +v 147.258698 -2.779213 0.249501 +v 147.551208 -2.712410 -0.050502 +v 146.312408 -1.563011 -0.050502 +v 147.109100 -1.946609 -0.050502 +v 146.904999 -2.166512 0.249501 + +f 3626 3627 3628 +f 3684 3626 3628 +f 3683 3684 3628 +f 3651 3683 3628 +f 3657 3651 3628 +f 3657 3628 3708 +f 3657 3708 3702 +f 3656 3657 3702 +f 3701 3656 3702 +f 3707 3701 3702 +f 3627 3707 3702 +f 3627 3645 3707 +f 3645 3653 3707 +f 3653 3685 3707 +f 3685 3703 3707 +f 3685 3697 3703 +f 3703 3697 3661 +f 3703 3661 3701 +f 3697 3666 3661 +f 3666 3699 3661 +f 3699 3659 3661 +f 3659 3660 3661 +f 3660 3680 3661 +f 3680 3656 3661 +f 3648 3656 3680 +f 3646 3648 3680 +f 3646 3647 3648 +f 3648 3647 3649 +f 3648 3649 3657 +f 3647 3650 3649 +f 3649 3650 3651 +f 3650 3647 3651 +f 3647 3675 3651 +f 3675 3676 3651 +f 3675 3691 3676 +f 3676 3691 3683 +f 3691 3663 3683 +f 3663 3696 3683 +f 3696 3709 3683 +f 3709 3658 3683 +f 3709 3655 3658 +f 3655 3640 3658 +f 3658 3640 3684 +f 3655 3638 3640 +f 3638 3639 3640 +f 3640 3639 3626 +f 3639 3644 3626 +f 3644 3645 3626 +f 3644 3641 3645 +f 3641 3643 3645 +f 3641 3642 3643 +f 3642 3706 3643 +f 3706 3715 3643 +f 3643 3715 3653 +f 3706 3717 3715 +f 3717 3716 3715 +f 3715 3716 3685 +f 3716 3686 3685 +f 3685 3686 3666 +f 3686 3665 3666 +f 3665 3634 3666 +f 3665 3632 3634 +f 3632 3633 3634 +f 3634 3633 3672 +f 3634 3672 3699 +f 3633 3670 3672 +f 3670 3671 3672 +f 3671 3659 3672 +f 3688 3659 3671 +f 3688 3671 3692 +f 3695 3688 3692 +f 3695 3692 3693 +f 3652 3695 3693 +f 3667 3652 3693 +f 3667 3693 3671 +f 3705 3667 3671 +f 3705 3679 3667 +f 3679 3662 3667 +f 3667 3662 3636 +f 3636 3662 3663 +f 3637 3636 3663 +f 3635 3636 3637 +f 3635 3637 3691 +f 3635 3652 3636 +f 3674 3663 3662 +f 3679 3674 3662 +f 3700 3674 3679 +f 3694 3700 3679 +f 3681 3700 3694 +f 3681 3694 3673 +f 3668 3681 3673 +f 3668 3673 3633 +f 3690 3681 3668 +f 3712 3690 3668 +f 3712 3668 3632 +f 3710 3690 3712 +f 3711 3710 3712 +f 3711 3712 3714 +f 3713 3711 3714 +f 3713 3714 3716 +f 3716 3714 3665 +f 3714 3712 3665 +f 3710 3711 3713 +f 3710 3713 3717 +f 3710 3629 3690 +f 3629 3631 3690 +f 3629 3630 3631 +f 3631 3630 3704 +f 3631 3704 3682 +f 3681 3631 3682 +f 3682 3704 3654 +f 3682 3654 3664 +f 3687 3682 3664 +f 3687 3664 3696 +f 3674 3687 3696 +f 3700 3682 3687 +f 3664 3654 3655 +f 3704 3677 3654 +f 3654 3677 3638 +f 3677 3678 3638 +f 3677 3698 3678 +f 3678 3698 3641 +f 3678 3641 3639 +f 3669 3698 3677 +f 3698 3669 3642 +f 3669 3630 3642 +f 3704 3669 3677 +f 3630 3669 3704 +f 3630 3629 3706 +f 3629 3710 3706 +f 3690 3631 3681 +f 3673 3694 3705 +f 3673 3705 3670 +f 3681 3682 3700 +f 3700 3687 3674 +f 3694 3679 3705 +f 3652 3667 3636 +f 3695 3652 3635 +f 3695 3635 3647 +f 3695 3689 3688 +f 3689 3695 3646 +f 3689 3646 3660 +f 3692 3671 3693 +f 3688 3689 3659 +f 3670 3705 3671 +f 3633 3673 3670 +f 3632 3668 3633 +f 3712 3632 3665 +f 3716 3665 3686 +f 3717 3713 3716 +f 3710 3717 3706 +f 3630 3706 3642 +f 3698 3642 3641 +f 3639 3641 3644 +f 3638 3678 3639 +f 3654 3638 3655 +f 3664 3655 3709 +f 3696 3664 3709 +f 3674 3696 3663 +f 3637 3663 3691 +f 3675 3635 3691 +f 3647 3635 3675 +f 3646 3695 3647 +f 3660 3646 3680 +f 3659 3689 3660 +f 3672 3659 3699 +f 3666 3634 3699 +f 3685 3666 3697 +f 3715 3685 3653 +f 3645 3643 3653 +f 3707 3703 3701 +f 3661 3656 3701 +f 3656 3648 3657 +f 3708 3627 3702 +f 3649 3651 3657 +f 3651 3676 3683 +f 3683 3658 3684 +f 3640 3626 3684 +f 3628 3627 3708 +f 3626 3645 3627 + + +o Object.9 +v 145.755005 -64.583733 -0.050426 +v 146.200897 -64.550331 -0.050426 +v 145.609894 -64.624657 -3.300418 +v 146.251007 -64.554955 -3.300418 +v 146.966888 -63.440147 -4.550418 +v 146.386108 -63.312248 -4.550418 +v 146.088806 -68.796135 -4.550411 +v 145.497589 -68.731834 -4.550411 +v 146.088806 -68.796135 -4.750408 +v 145.718292 -66.356651 -4.678616 +v 145.808701 -67.484032 -4.706615 +v 144.669296 -66.408852 -4.743816 +v 144.424591 -68.235435 -4.750408 +v 146.351410 -66.426445 -4.615116 +v 146.510193 -66.290749 -4.615116 +v 146.376892 -66.506050 -4.696613 +v 146.862091 -64.760857 -3.300418 +v 147.506592 -63.689751 -4.550418 +v 147.518097 -65.788857 -4.683818 +v 147.409195 -66.045357 -3.750415 +v 146.469101 -65.783653 -4.615116 +v 146.200897 -67.541924 -0.050426 +v 145.568100 -67.127312 0.249577 +v 145.540802 -67.442421 -0.050426 +v 144.989197 -65.025932 -0.050426 +v 145.338806 -64.747139 -0.050426 +v 145.057297 -64.957146 -3.300418 +v 145.049591 -66.646141 0.249577 +v 144.892197 -66.135841 0.249577 +v 144.605591 -66.269737 -0.050426 +v 147.120392 -64.957146 -3.300418 +v 147.979996 -64.049644 -4.550418 +v 143.438995 -66.781853 -4.750415 +v 143.342804 -66.195045 -4.550418 +v 143.342804 -66.195045 -4.750415 +v 145.568100 -64.964928 0.249577 +v 143.375000 -65.601250 -4.550418 +v 144.803101 -66.099342 -3.750415 +v 145.888794 -66.172249 -3.750415 +v 145.639191 -66.291954 -4.637516 +v 148.364990 -64.502846 -4.550418 +v 146.459290 -65.689354 -4.712315 +v 147.534088 -65.644844 -3.300418 +v 146.636795 -64.649834 -0.050426 +v 148.643494 -65.028252 -4.550418 +v 143.992889 -67.826439 -4.750415 +v 146.198395 -65.819450 -3.750415 +v 146.172302 -66.338951 -3.750415 +v 145.962799 -65.846153 -3.750415 +v 145.815491 -64.592445 -4.707012 +v 145.842987 -65.596550 -4.637516 +v 145.780396 -64.487251 -4.747615 +v 146.267700 -67.232719 0.249577 +v 146.010895 -66.364754 -3.750415 +v 145.877808 -67.467842 -4.596912 +v 145.818909 -66.509346 -4.678616 +v 148.802597 -65.601250 -4.550418 +v 143.375000 -65.601250 -4.750415 +v 145.497589 -68.731834 -4.750408 +v 147.569092 -66.288857 -3.300418 +v 148.518494 -67.334236 -4.750415 +v 148.184799 -67.826439 -4.750415 +v 147.528107 -66.388649 -4.739117 +v 143.534088 -65.028252 -4.550418 +v 146.333405 -65.624748 -4.615116 +v 148.834808 -66.195045 -4.550418 +v 146.035309 -67.331337 -3.750415 +v 144.558701 -66.234047 -4.706615 +v 148.738602 -66.781853 -4.550418 +v 146.090302 -67.366341 -3.750415 +v 145.942902 -67.532127 -4.639019 +v 146.407410 -66.124046 -3.750415 +v 147.543091 -66.236351 -4.613712 +v 143.659195 -67.334236 -4.750415 +v 147.328201 -66.891151 -3.300418 +v 146.267700 -64.859535 0.249577 +v 147.355804 -66.110649 -3.750415 +v 148.518494 -67.334236 -4.550418 +v 143.534088 -65.028252 -4.750415 +v 147.641602 -66.168556 -4.714016 +v 148.184799 -67.826439 -4.550418 +v 143.812698 -64.502846 -4.550418 +v 144.643494 -65.644844 -3.300418 +v 146.996597 -67.240334 -3.300418 +v 147.752991 -68.235435 -4.550411 +v 146.381592 -65.962654 -3.750415 +v 148.738602 -66.781853 -4.750415 +v 146.718597 -67.407539 -3.300418 +v 147.243500 -68.541939 -4.550411 +v 145.049591 -65.446129 0.249577 +v 147.575500 -65.912453 -4.636318 +v 144.768402 -66.045357 -3.750415 +v 144.611603 -66.201744 -4.624912 +v 146.679993 -68.731834 -4.550411 +v 147.328201 -65.201134 -0.050426 +v 143.812698 -64.502846 -4.750415 +v 146.200897 -67.541939 -3.300418 +v 144.934097 -68.541939 -4.550411 +v 146.276703 -67.576241 -4.706615 +v 145.811096 -67.651833 -4.749813 +v 147.127991 -66.646141 0.249577 +v 147.285492 -66.135841 0.249577 +v 147.127991 -65.446129 0.249577 +v 145.597900 -65.816444 -4.615116 +v 145.770203 -65.968254 -3.750415 +v 144.650909 -65.766045 -4.706615 +v 148.834808 -66.195045 -4.750415 +v 146.386108 -63.312248 -4.750415 +v 146.966888 -63.440147 -4.750415 +v 144.577393 -65.880745 -4.682819 +v 147.506592 -63.689751 -4.750415 +v 144.685608 -66.321648 -4.694019 +v 147.618896 -65.858253 -4.706615 +v 147.979996 -64.049644 -4.750415 +v 144.197601 -64.049644 -4.550418 +v 147.024002 -64.873329 -0.050426 +v 148.364990 -64.502846 -4.750415 +v 145.667206 -65.673256 -4.736515 +v 144.737396 -65.395332 -0.050426 +v 148.643494 -65.028252 -4.750415 +v 148.802597 -65.601250 -4.750415 +v 146.331100 -64.608757 -4.671619 +v 146.035599 -64.760445 -3.750415 +v 145.890991 -64.604851 -4.598812 +v 146.159195 -64.795357 -3.750415 +v 144.197601 -64.049644 -4.750415 +v 146.272400 -64.527946 -4.695713 +v 146.423309 -67.506233 -4.738918 +v 145.153595 -67.218819 -0.050426 +v 144.670990 -63.689751 -4.550418 +v 147.752991 -68.235435 -4.750408 +v 144.934097 -68.541939 -4.750408 +v 144.424591 -68.235435 -4.550411 +v 147.243500 -68.541939 -4.750408 +v 146.679993 -68.731834 -4.750408 +v 144.670990 -63.689751 -4.750415 +v 145.210693 -63.440147 -4.550418 +v 147.588806 -66.046135 -0.050426 +v 147.522202 -66.488228 -0.050426 +v 146.322800 -67.453835 -4.640918 +v 144.737396 -66.696938 -0.050426 +v 144.608597 -66.288857 -3.300418 +v 144.849487 -66.891151 -3.300418 +v 143.992889 -67.826439 -4.550418 +v 145.916504 -64.415947 -4.747615 +v 144.605591 -65.822533 -0.050426 +v 145.210693 -63.440147 -4.750415 +v 147.328201 -66.891136 -0.050426 +v 145.791504 -63.312248 -4.550418 +v 143.438995 -66.781853 -4.550418 +v 145.791504 -63.312248 -4.750415 +v 147.024002 -67.218819 -0.050426 +v 145.181091 -67.240334 -3.300418 +v 147.522202 -65.604042 -0.050426 +v 145.459000 -67.407539 -3.300418 +v 146.636795 -67.442421 -0.050426 +v 146.609497 -67.127312 0.249577 +v 146.468994 -64.623848 -4.747615 +v 143.659195 -67.334236 -4.550418 +v 146.609497 -64.964928 0.249577 + +f 3718 3719 3720 +f 3743 3718 3720 +f 3744 3743 3720 +f 3744 3720 3854 +f 3847 3744 3854 +f 3847 3854 3853 +f 3843 3847 3853 +f 3769 3843 3853 +f 3769 3853 3864 +f 3862 3769 3864 +f 3862 3864 3868 +f 3862 3868 3825 +f 3844 3862 3825 +f 3826 3844 3825 +f 3722 3826 3825 +f 3723 3722 3825 +f 3721 3722 3723 +f 3720 3721 3723 +f 3866 3720 3723 +f 3866 3723 3868 +f 3721 3734 3722 +f 3734 3735 3722 +f 3734 3748 3735 +f 3748 3749 3735 +f 3735 3749 3828 +f 3735 3828 3826 +f 3749 3831 3828 +f 3831 3875 3828 +f 3875 3844 3828 +f 3875 3839 3844 +f 3842 3844 3839 +f 3764 3842 3839 +f 3782 3764 3839 +f 3782 3839 3759 +f 3759 3738 3782 +f 3736 3738 3759 +f 3736 3759 3831 +f 3830 3736 3831 +f 3834 3830 3831 +f 3758 3834 3831 +f 3758 3762 3834 +f 3762 3837 3834 +f 3762 3774 3837 +f 3774 3838 3837 +f 3838 3830 3837 +f 3824 3830 3838 +f 3783 3824 3838 +f 3783 3786 3824 +f 3786 3804 3824 +f 3804 3797 3824 +f 3804 3780 3797 +f 3790 3797 3780 +f 3733 3790 3780 +f 3845 3733 3780 +f 3779 3845 3780 +f 3778 3779 3780 +f 3798 3779 3778 +f 3795 3798 3778 +f 3795 3778 3804 +f 3792 3798 3795 +f 3792 3795 3786 +f 3777 3792 3786 +f 3856 3792 3777 +f 3855 3856 3777 +f 3855 3777 3760 +f 3871 3855 3760 +f 3812 3871 3760 +f 3812 3760 3748 +f 3833 3812 3748 +f 3877 3812 3833 +f 3877 3833 3761 +f 3877 3761 3719 +f 3793 3877 3719 +f 3818 3877 3793 +f 3874 3818 3793 +f 3770 3874 3793 +f 3740 3770 3793 +f 3753 3740 3793 +f 3753 3793 3718 +f 3807 3740 3753 +f 3807 3753 3743 +f 3742 3807 3743 +f 3836 3807 3742 +f 3836 3742 3800 +f 3863 3836 3800 +f 3859 3863 3800 +f 3859 3800 3754 +f 3751 3859 3754 +f 3751 3754 3752 +f 3750 3751 3752 +f 3785 3750 3752 +f 3785 3752 3827 +f 3810 3785 3827 +f 3809 3810 3827 +f 3823 3809 3827 +f 3823 3827 3796 +f 3823 3796 3813 +f 3769 3823 3813 +f 3835 3823 3769 +f 3769 3768 3835 +f 3768 3821 3835 +f 3768 3766 3821 +f 3766 3822 3821 +f 3821 3822 3823 +f 3756 3822 3766 +f 3771 3756 3766 +f 3765 3771 3766 +f 3764 3765 3766 +f 3803 3765 3764 +f 3803 3764 3738 +f 3737 3803 3738 +f 3737 3794 3803 +f 3794 3789 3803 +f 3789 3794 3790 +f 3789 3790 3732 +f 3765 3789 3732 +f 3765 3732 3731 +f 3787 3765 3731 +f 3857 3787 3731 +f 3857 3731 3733 +f 3787 3857 3816 +f 3787 3816 3788 +f 3787 3788 3772 +f 3784 3787 3772 +f 3771 3784 3772 +f 3771 3772 3773 +f 3771 3773 3727 +f 3773 3728 3727 +f 3727 3728 3729 +f 3729 3757 3727 +f 3757 3756 3727 +f 3755 3756 3757 +f 3755 3757 3829 +f 3810 3755 3829 +f 3810 3829 3729 +f 3756 3755 3809 +f 3829 3757 3729 +f 3728 3730 3729 +f 3730 3763 3729 +f 3729 3763 3785 +f 3763 3791 3785 +f 3763 3876 3791 +f 3876 3867 3791 +f 3791 3867 3750 +f 3876 3860 3867 +f 3860 3859 3867 +f 3860 3858 3859 +f 3858 3747 3859 +f 3858 3745 3747 +f 3745 3746 3747 +f 3747 3746 3863 +f 3746 3745 3807 +f 3846 3745 3858 +f 3740 3745 3846 +f 3741 3740 3846 +f 3741 3846 3872 +f 3814 3741 3872 +f 3814 3872 3815 +f 3725 3814 3815 +f 3725 3815 3776 +f 3726 3725 3776 +f 3726 3776 3817 +f 3852 3726 3817 +f 3852 3817 3816 +f 3851 3852 3816 +f 3848 3851 3816 +f 3779 3848 3816 +f 3802 3848 3779 +f 3802 3806 3848 +f 3805 3806 3802 +f 3801 3805 3802 +f 3801 3802 3798 +f 3873 3805 3801 +f 3869 3873 3801 +f 3865 3869 3801 +f 3865 3801 3792 +f 3874 3869 3865 +f 3874 3873 3869 +f 3873 3814 3805 +f 3805 3814 3811 +f 3814 3724 3811 +f 3811 3724 3852 +f 3873 3739 3814 +f 3770 3739 3873 +f 3805 3811 3806 +f 3806 3811 3851 +f 3806 3851 3848 +f 3811 3852 3851 +f 3724 3726 3852 +f 3776 3849 3817 +f 3849 3730 3817 +f 3849 3850 3730 +f 3850 3861 3730 +f 3850 3860 3861 +f 3870 3860 3850 +f 3815 3870 3850 +f 3870 3846 3860 +f 3815 3850 3849 +f 3724 3725 3726 +f 3776 3815 3849 +f 3724 3814 3725 +f 3872 3870 3815 +f 3739 3741 3814 +f 3872 3846 3870 +f 3739 3740 3741 +f 3846 3858 3860 +f 3861 3860 3876 +f 3861 3876 3763 +f 3730 3861 3763 +f 3817 3730 3728 +f 3728 3788 3817 +f 3773 3772 3728 +f 3728 3772 3788 +f 3788 3816 3817 +f 3816 3857 3845 +f 3787 3784 3765 +f 3731 3732 3733 +f 3794 3737 3790 +f 3790 3737 3808 +f 3808 3737 3736 +f 3789 3765 3803 +f 3765 3784 3771 +f 3756 3771 3727 +f 3822 3756 3809 +f 3840 3766 3768 +f 3840 3768 3841 +f 3844 3840 3841 +f 3844 3841 3767 +f 3841 3768 3767 +f 3842 3766 3840 +f 3767 3768 3769 +f 3821 3823 3835 +f 3796 3799 3813 +f 3799 3832 3813 +f 3813 3832 3843 +f 3799 3800 3832 +f 3800 3744 3832 +f 3781 3800 3799 +f 3781 3799 3796 +f 3775 3781 3796 +f 3754 3781 3775 +f 3827 3775 3796 +f 3822 3809 3823 +f 3809 3755 3810 +f 3810 3729 3785 +f 3827 3752 3775 +f 3791 3750 3785 +f 3867 3751 3750 +f 3752 3754 3775 +f 3867 3859 3751 +f 3754 3800 3781 +f 3747 3863 3859 +f 3863 3746 3836 +f 3800 3742 3744 +f 3746 3807 3836 +f 3745 3740 3807 +f 3770 3740 3739 +f 3874 3770 3873 +f 3818 3874 3865 +f 3818 3865 3856 +f 3819 3818 3856 +f 3818 3819 3820 +f 3820 3819 3871 +f 3818 3820 3877 +f 3719 3761 3734 +f 3761 3833 3734 +f 3877 3820 3812 +f 3748 3760 3758 +f 3820 3871 3812 +f 3819 3855 3871 +f 3760 3777 3774 +f 3777 3783 3774 +f 3819 3856 3855 +f 3856 3865 3792 +f 3792 3801 3798 +f 3798 3802 3779 +f 3779 3816 3845 +f 3857 3733 3845 +f 3732 3790 3733 +f 3790 3808 3797 +f 3797 3808 3830 +f 3804 3778 3780 +f 3786 3795 3804 +f 3777 3786 3783 +f 3824 3797 3830 +f 3774 3783 3838 +f 3760 3774 3762 +f 3760 3762 3758 +f 3837 3830 3834 +f 3808 3736 3830 +f 3736 3737 3738 +f 3764 3782 3738 +f 3764 3766 3842 +f 3842 3840 3844 +f 3759 3839 3875 +f 3759 3875 3831 +f 3749 3758 3831 +f 3748 3758 3749 +f 3833 3748 3734 +f 3719 3734 3721 +f 3722 3735 3826 +f 3828 3844 3826 +f 3844 3767 3862 +f 3868 3723 3825 +f 3864 3866 3868 +f 3854 3866 3864 +f 3767 3769 3862 +f 3769 3813 3843 +f 3832 3847 3843 +f 3853 3854 3864 +f 3832 3744 3847 +f 3854 3720 3866 +f 3742 3743 3744 +f 3743 3753 3718 +f 3719 3721 3720 +f 3718 3793 3719 + + +o Object.10 +v -145.708496 60.216255 -4.615268 +v -145.979187 60.180401 -3.750568 +v -145.812897 60.311516 -4.615268 +v -146.567810 61.375202 -3.300571 +v -145.609894 61.375202 -3.300571 +v -145.791504 62.687595 -4.550571 +v -144.670990 62.310078 -4.550571 +v -148.802612 60.398617 -4.550571 +v -147.485107 60.501732 -3.300571 +v -148.364990 61.496986 -4.550571 +v -146.679993 57.268009 -4.750560 +v -147.243500 57.457890 -4.550563 +v -147.752991 57.764462 -4.750560 +v -145.999115 61.150375 0.249424 +v -145.488800 60.992954 0.249424 +v -145.755005 61.416115 -0.050579 +v -147.374512 59.900532 -3.750568 +v -146.538391 59.707897 -4.637661 +v -147.530090 59.755947 -4.598957 +v -147.120392 61.042709 -3.300571 +v -144.737396 59.302898 -0.050571 +v -145.338806 58.654690 -0.050571 +v -144.695313 59.398510 -3.300563 +v -146.342194 59.567558 -4.596263 +v -146.246796 58.402290 -4.715663 +v -144.902191 60.132576 0.249424 +v -144.605591 60.177284 -0.050579 +v -145.097290 59.277748 0.249432 +v -144.424591 57.764462 -4.750560 +v -145.497589 57.268009 -4.750560 +v -145.699310 59.553387 -4.736660 +v -143.812714 61.496986 -4.550571 +v -148.184814 58.173412 -4.550563 +v -147.506592 62.310078 -4.550571 +v -145.057312 61.042709 -3.300571 +v -146.018402 61.204491 -3.750568 +v -146.189514 60.198181 -3.750568 +v -146.334595 60.403305 -4.637669 +v -147.572113 60.177284 -0.050579 +v -147.261597 60.888954 -0.050579 +v -148.834808 59.804836 -4.750560 +v -148.643494 60.971596 -4.750568 +v -146.088806 58.453724 -3.300563 +v -146.739594 58.602280 -0.050571 +v -146.718597 58.592365 -3.300563 +v -144.639709 59.647316 -4.725559 +v -143.375000 60.398617 -4.550571 +v -147.492004 59.678238 -4.694164 +v -146.190704 59.711761 -3.750560 +v -146.088806 58.453728 -0.050571 +v -144.692505 60.501732 -3.300571 +v -147.569092 59.711052 -3.300563 +v -144.838013 59.883350 -3.750560 +v -147.618896 59.765816 -4.706760 +v -144.591003 60.034931 -3.300571 +v -147.387909 59.203728 -0.050571 +v -147.288788 59.953724 0.249424 +v -146.530914 61.387085 -0.050579 +v -143.438995 59.218021 -4.550563 +v -144.596497 60.141148 -4.671772 +v -147.170013 60.474384 0.249424 +v -146.688812 60.992954 0.249424 +v -146.966888 62.559765 -4.750568 +v -146.005310 59.660889 -3.750560 +v -144.575012 59.802326 -4.681858 +v -145.826294 59.573418 -4.615261 +v -143.659088 58.665600 -4.750560 +v -143.992889 58.173412 -4.550563 +v -147.232117 58.982643 -3.300563 +v -146.688812 58.914497 0.249432 +v -145.488800 58.914497 0.249432 +v -148.738586 59.218021 -4.550563 +v -148.518494 58.665600 -4.750560 +v -146.088806 57.203720 -4.750560 +v -146.088806 57.203720 -4.550563 +v -146.088013 58.633354 -3.750560 +v -144.945587 58.982643 -3.300563 +v -145.766296 58.488792 -3.300563 +v -144.934113 57.457890 -4.550563 +v -144.989197 60.973984 -0.050579 +v -147.524292 60.168427 -4.629169 +v -147.980011 61.950207 -4.750568 +v -145.497589 57.268009 -4.550563 +v -145.929108 58.461750 -4.655560 +v -145.999115 58.757088 0.249432 +v -143.438995 59.218021 -4.750560 +v -145.820313 61.545067 -4.747768 +v -146.276703 61.483788 -4.706768 +v -145.791504 62.687595 -4.750568 +v -144.670990 62.310078 -4.750568 +v -143.812714 61.496986 -4.750568 +v -145.870209 61.353848 -4.592868 +v -143.375000 60.398617 -4.750568 +v -147.511108 60.333927 -4.747768 +v -147.080292 59.277748 0.249432 +v -146.551910 60.223618 -4.678768 + +f 3878 3879 3880 +f 3937 3878 3880 +f 3937 3880 3968 +f 3970 3937 3968 +f 3924 3970 3968 +f 3909 3924 3968 +f 3909 3968 3967 +f 3884 3909 3967 +f 3884 3967 3966 +f 3883 3884 3966 +f 3940 3883 3966 +f 3965 3940 3966 +f 3964 3965 3966 +f 3969 3965 3964 +f 3880 3969 3964 +f 3969 3913 3965 +f 3913 3915 3965 +f 3915 3971 3965 +f 3965 3971 3919 +f 3965 3919 3959 +f 3919 3887 3959 +f 3887 3911 3959 +f 3911 3940 3959 +f 3911 3881 3940 +f 3897 3881 3911 +f 3897 3917 3881 +f 3917 3935 3881 +f 3935 3882 3881 +f 3881 3882 3883 +f 3935 3893 3882 +f 3893 3957 3882 +f 3957 3912 3882 +f 3882 3912 3909 +f 3957 3904 3912 +f 3904 3928 3912 +f 3912 3928 3924 +f 3928 3932 3924 +f 3932 3936 3924 +f 3932 3900 3936 +f 3900 3945 3936 +f 3936 3945 3963 +f 3936 3963 3970 +f 3945 3944 3963 +f 3963 3944 3942 +f 3963 3942 3937 +f 3942 3930 3937 +f 3941 3930 3942 +f 3941 3942 3943 +f 3953 3941 3943 +f 3961 3953 3943 +f 3961 3943 3908 +f 3907 3961 3908 +f 3906 3907 3908 +f 3906 3908 3923 +f 3944 3906 3923 +f 3956 3907 3906 +f 3945 3956 3906 +f 3955 3956 3945 +f 3954 3955 3945 +f 3899 3955 3954 +f 3899 3954 3900 +f 3898 3899 3900 +f 3905 3899 3898 +f 3903 3905 3898 +f 3903 3898 3904 +f 3904 3898 3932 +f 3934 3905 3903 +f 3934 3903 3892 +f 3938 3934 3892 +f 3938 3892 3939 +f 3938 3939 3917 +f 3916 3938 3917 +f 3939 3892 3891 +f 3939 3891 3935 +f 3891 3892 3893 +f 3934 3938 3916 +f 3933 3934 3916 +f 3933 3916 3929 +f 3946 3933 3929 +f 3946 3929 3949 +f 3910 3946 3949 +f 3910 3949 3950 +f 3890 3910 3950 +f 3890 3950 3931 +f 3925 3890 3931 +f 3931 3896 3925 +f 3896 3895 3925 +f 3895 3902 3925 +f 3901 3902 3895 +f 3926 3901 3895 +f 3894 3926 3895 +f 3914 3926 3894 +f 3914 3894 3958 +f 3973 3914 3958 +f 3973 3958 3971 +f 3958 3918 3971 +f 3931 3918 3958 +f 3914 3973 3915 +f 3894 3896 3958 +f 3941 3926 3914 +f 3879 3941 3914 +f 3879 3914 3913 +f 3926 3902 3901 +f 3926 3953 3902 +f 3894 3895 3896 +f 3896 3931 3958 +f 3902 3890 3925 +f 3888 3890 3902 +f 3951 3888 3902 +f 3951 3902 3961 +f 3951 3952 3888 +f 3952 3889 3888 +f 3952 3922 3889 +f 3922 3946 3889 +f 3922 3921 3946 +f 3920 3921 3922 +f 3927 3921 3920 +f 3927 3920 3955 +f 3955 3920 3952 +f 3955 3952 3960 +f 3960 3952 3907 +f 3927 3947 3921 +f 3947 3972 3921 +f 3921 3972 3933 +f 3972 3947 3905 +f 3947 3948 3905 +f 3947 3962 3948 +f 3948 3962 3927 +f 3948 3927 3899 +f 3962 3947 3927 +f 3920 3922 3952 +f 3952 3951 3907 +f 3888 3889 3890 +f 3931 3950 3918 +f 3889 3910 3890 +f 3950 3949 3918 +f 3949 3885 3918 +f 3918 3885 3919 +f 3889 3946 3910 +f 3949 3929 3885 +f 3929 3886 3885 +f 3885 3886 3887 +f 3886 3897 3887 +f 3886 3916 3897 +f 3921 3933 3946 +f 3929 3916 3886 +f 3972 3934 3933 +f 3892 3903 3957 +f 3972 3905 3934 +f 3905 3948 3899 +f 3899 3927 3955 +f 3955 3960 3956 +f 3956 3960 3907 +f 3907 3951 3961 +f 3943 3923 3908 +f 3953 3961 3902 +f 3941 3953 3926 +f 3942 3923 3943 +f 3930 3941 3879 +f 3944 3923 3942 +f 3945 3906 3944 +f 3900 3954 3945 +f 3898 3900 3932 +f 3904 3932 3928 +f 3903 3904 3957 +f 3892 3957 3893 +f 3891 3893 3935 +f 3917 3939 3935 +f 3916 3917 3897 +f 3887 3897 3911 +f 3885 3887 3919 +f 3971 3918 3919 +f 3915 3973 3971 +f 3913 3914 3915 +f 3879 3913 3969 +f 3965 3959 3940 +f 3940 3881 3883 +f 3882 3884 3883 +f 3967 3964 3966 +f 3882 3909 3884 +f 3968 3964 3967 +f 3912 3924 3909 +f 3924 3936 3970 +f 3963 3937 3970 +f 3880 3964 3968 +f 3937 3930 3878 +f 3880 3879 3969 +f 3930 3879 3878 + + +o Object.11 +v -147.526306 -2.803909 -4.671695 +v -147.581116 -3.233604 -4.671695 +v -147.640198 -2.888214 -4.715595 +v -146.968506 -2.230011 0.249501 +v -145.097290 -2.370209 0.249501 +v -145.650391 -1.929214 0.249501 +v -148.834808 -3.195107 -4.750492 +v -148.802612 -2.601311 -4.750492 +v -146.018402 -1.795410 -3.750492 +v -145.966400 -1.519508 -4.692195 +v -145.823608 -1.578209 -4.707394 +v -146.150696 -1.774010 -3.750492 +v -146.679993 -5.731903 -4.750484 +v -147.243500 -5.542000 -4.750484 +v -146.366608 -4.651901 -4.749881 +v -146.355804 -1.876312 0.249501 +v -146.331116 -4.483604 -4.671688 +v -146.268311 -4.522606 -4.643688 +v -144.588806 -3.046204 -3.300495 +v -143.482788 -3.924301 -4.550495 +v -143.354889 -3.343506 -4.550495 +v -146.966888 -0.440208 -4.750492 +v -146.679993 -0.360512 -4.550495 +v -146.386108 -0.312309 -4.750492 +v -148.643494 -4.064102 -4.550495 +v -147.588806 -3.046204 -3.300495 +v -148.802612 -3.491104 -4.550495 +v -143.342804 -3.195107 -4.750492 +v -144.458588 -2.873909 -4.747692 +v -143.375000 -2.601311 -4.750492 +v -147.752991 -5.235504 -4.750484 +v -146.468994 -4.468506 -4.747684 +v -147.510315 -3.525200 -3.300495 +v -148.738586 -3.781906 -4.750492 +v -147.170013 -3.566902 0.249501 +v -145.097290 -3.722206 0.249501 +v -144.888794 -3.046204 0.249501 +v -147.616608 -3.401901 -4.749889 +v -145.820313 -1.454910 -4.747692 +v -145.497589 -5.731903 -4.750484 +v -145.900909 -4.576302 -4.706684 +v -148.364990 -1.502914 -4.750492 +v -148.184814 -1.265907 -4.550495 +v -147.980011 -1.049713 -4.750492 +v -144.667297 -3.525200 -3.300495 +v -147.275391 -2.867409 0.249501 +v -143.732513 -4.464005 -4.550488 +v -144.575012 -3.197601 -4.681789 +v -144.596497 -2.858810 -4.671695 +v -148.834808 -2.897308 -4.550495 +v -148.738586 -2.310509 -4.550495 +v -148.364990 -4.589500 -4.550488 +v -146.579712 -2.816513 -4.615192 +v -147.511108 -2.666008 -4.747692 +v -145.979187 -2.819511 -3.750492 +v -144.727509 -2.416412 -3.300495 +v -143.354889 -2.748909 -4.550495 +v -143.482788 -2.168114 -4.550495 +v -146.399292 -2.675713 -4.678691 +v -147.506592 -0.689812 -4.750492 +v -147.243500 -0.550407 -4.550495 +v -143.992889 -4.826500 -4.750484 +v -144.424591 -5.235504 -4.750484 +v -145.742401 -4.462700 -4.738781 +v -146.189514 -2.801712 -3.750492 +v -146.334595 -2.596611 -4.637592 +v -147.374512 -3.099403 -3.750492 +v -146.333313 -3.146904 -3.750492 +v -146.538391 -3.292000 -4.637592 +v -146.362091 -1.592514 -4.707088 +v -147.177795 -4.077705 -3.300495 +v -145.800690 -3.506104 -4.696690 +v -144.570313 -3.347603 -4.739292 +v -144.092316 -4.937401 -4.550488 +v -147.980011 -5.042702 -4.550488 +v -146.142395 -4.331406 -3.750484 +v -146.088013 -4.366600 -3.750484 +v -144.999786 -4.077705 -3.300495 +v -147.450195 -2.416412 -3.300495 +v -144.570313 -2.704910 -4.747692 +v -143.534088 -2.028313 -4.750492 +v -148.643494 -2.028313 -4.750492 +v -144.665192 -3.260803 -4.612094 +v -146.088806 -5.796204 -4.750484 +v -145.730988 -3.322105 -4.615192 +v -144.545502 -5.322304 -4.550488 +v -145.903290 -4.510902 -4.629086 +v -148.518494 -4.334305 -4.750484 +v -147.506592 -5.402603 -4.550488 +v -146.166687 -3.364799 -3.750492 +v -146.459290 -3.356705 -4.678691 +v -145.858307 -3.529305 -4.615192 +v -145.976715 -1.550407 -0.050502 +v -146.636810 -4.442505 -3.300487 +v -145.795990 -2.962700 -3.750492 +v -145.718292 -2.689407 -4.712390 +v -145.070892 -5.600906 -4.550488 +v -146.342010 -3.470604 -4.637592 +v -148.518494 -1.758110 -4.550495 +v -146.966888 -5.652206 -4.550488 +v -147.522186 -3.488304 -0.050502 +v -147.572113 -2.822609 -0.050502 +v -145.540802 -4.442505 -3.300487 +v -145.117706 -1.903008 -3.300495 +v -143.732513 -1.628410 -4.550495 +v -146.005310 -3.339005 -3.750492 +v -146.260498 -1.557709 -4.656894 +v -146.444489 -1.518509 -4.749889 +v -146.261108 -1.416008 -4.747692 +v -146.407410 -2.968300 -3.750492 +v -145.643890 -5.760002 -4.550488 +v -148.184814 -4.826500 -4.750484 +v -146.088806 -5.796204 -4.550488 +v -147.752991 -0.856911 -4.550495 +v -144.768494 -3.045403 -3.750492 +v -145.708496 -2.783714 -4.615192 +v -143.812714 -1.502914 -4.750492 +v -146.007599 -4.544006 -3.300487 +v -146.422607 -1.583809 -0.050502 +v -144.197601 -1.049713 -4.750492 +v -147.409210 -3.045403 -3.750492 +v -145.844208 -2.624809 -4.615192 +v -146.237701 -0.300209 -4.550495 +v -145.791504 -0.312309 -4.750492 +v -145.643890 -0.332413 -4.550495 +v -145.650391 -4.163300 0.249508 +v -145.210693 -0.440208 -4.750492 +v -145.070892 -0.491508 -4.550495 +v -144.934113 -5.542000 -4.750484 +v -144.545502 -0.770111 -4.550495 +v -145.540802 -1.649910 -0.050502 +v -144.670990 -0.689812 -4.750492 +v -144.092316 -1.155014 -4.550495 +v -144.821198 -3.110504 -3.750492 +v -143.438995 -3.781906 -4.750492 +v -147.059906 -1.903008 -3.300495 +v -145.891113 -3.173805 -3.750492 +v -146.838806 -1.747208 -0.050502 +v -143.659088 -4.334305 -4.750484 +v -145.153595 -1.873512 -0.050502 +v -147.188416 -2.025909 -0.050502 +v -144.588806 -3.046204 -0.050502 +v -144.655396 -2.604111 -0.050502 +v -144.655396 -3.488304 -0.050502 +v -145.533600 -1.652710 -3.300495 +v -147.440308 -2.395409 -0.050502 +v -144.849396 -3.891205 -0.050502 +v -147.328217 -3.891205 -0.050502 +v -147.024109 -4.218903 -0.050495 +v -145.153595 -4.218903 -0.050495 +v -146.688812 -4.085403 0.249501 +v -144.849396 -2.201210 -0.050502 +v -146.636810 -4.442505 -0.050495 +v -145.540802 -4.442505 -0.050495 +v -145.976715 -4.542000 -0.050495 +v -145.976715 -1.550407 -3.300495 +v -146.331512 -1.566010 -3.300495 +v -145.999115 -4.242805 0.249508 + +f 3974 3975 3976 +f 3974 3976 4027 +f 4026 3974 4027 +f 4032 4026 4027 +f 4032 4027 4081 +f 4043 4032 4081 +f 4080 4043 4081 +f 4080 4081 4082 +f 3983 4080 4082 +f 3983 4082 4012 +f 3984 3983 4012 +f 3984 4012 4100 +f 4105 3984 4100 +f 4103 4105 4100 +f 4101 4103 4100 +f 4098 4101 4100 +f 4098 4100 4097 +f 4096 4098 4097 +f 4096 4097 3997 +f 3996 4096 3997 +f 3995 3996 3997 +f 4082 3995 3997 +f 4034 3996 3995 +f 4033 4034 3995 +f 4081 4033 3995 +f 4081 4017 4033 +f 4017 4087 4033 +f 4016 4087 4017 +f 4015 4016 4017 +f 4072 4016 4015 +f 4055 4072 4015 +f 3976 4055 4015 +f 3976 3981 4055 +f 3981 4024 4055 +f 4023 4024 3981 +f 3980 4023 3981 +f 4000 4023 3980 +f 4007 4000 3980 +f 4011 4007 3980 +f 4011 3980 3976 +f 4061 4007 4011 +f 4085 4061 4011 +f 4005 4085 4011 +f 4011 4064 4005 +f 4071 4005 4064 +f 4063 4071 4064 +f 4041 4063 4064 +f 4042 4041 4064 +f 4040 4041 4042 +f 4040 4042 3975 +f 4094 4040 3975 +f 3975 4042 4011 +f 4041 4040 4094 +f 4083 4041 4094 +f 4083 4094 3974 +f 4110 4041 4083 +f 4110 4083 4038 +f 4068 4110 4038 +f 4068 4038 4028 +f 4068 4028 4069 +f 4089 4068 4069 +f 4053 4089 4069 +f 4053 4069 4105 +f 4093 4053 4105 +f 4106 4093 4105 +f 4106 4078 4093 +f 4078 4090 4093 +f 4078 4054 4090 +f 4054 4053 4090 +f 4002 4053 4054 +f 4003 4002 4054 +f 4031 4003 4054 +f 4031 4030 4003 +f 4030 4001 4003 +f 4030 3994 4001 +f 3994 4108 4001 +f 4108 4021 4001 +f 4001 4021 4002 +f 4021 4022 4002 +f 4021 4088 4022 +f 4022 4088 4089 +f 4107 4088 4021 +f 4056 4107 4021 +f 4056 4021 4046 +f 4056 4046 4058 +f 4110 4056 4058 +f 4079 4110 4058 +f 4065 4079 4058 +f 4065 4058 4045 +f 4065 4045 4060 +f 4060 4050 4065 +f 4050 4060 3991 +f 4049 4050 3991 +f 3990 4049 3991 +f 3990 3991 3988 +f 3990 3988 4005 +f 3988 4004 4005 +f 3987 4004 3988 +f 3986 3987 3988 +f 4057 3986 3988 +f 4013 4057 3988 +f 4013 3988 4014 +f 4013 4014 4037 +f 4102 4013 4037 +f 4036 4102 4037 +f 4035 4036 4037 +f 4035 4037 4046 +f 4112 4035 4046 +f 4108 4112 4046 +f 3993 4112 4108 +f 3993 4020 4112 +f 4018 4020 3993 +f 3992 4018 3993 +f 3992 3993 3994 +f 4117 4018 3992 +f 4115 4117 3992 +f 4115 3992 4029 +f 4116 4115 4029 +f 4125 4116 4029 +f 4125 4029 4077 +f 4113 4125 4077 +f 4113 4077 4118 +f 4104 4113 4118 +f 4104 4118 4129 +f 4066 4104 4129 +f 4066 4129 4130 +f 4092 4066 4130 +f 4109 4092 4130 +f 4109 4130 3996 +f 4111 4092 4109 +f 4114 4111 4109 +f 4052 4114 4109 +f 4052 4109 4016 +f 4119 4114 4052 +f 3999 4119 4052 +f 3999 4052 4024 +f 4024 4052 4072 +f 4075 4119 3999 +f 4074 4075 3999 +f 4006 4074 3999 +f 4006 3999 3998 +f 4025 4006 3998 +f 4025 3998 4061 +f 4044 4006 4025 +f 4048 4044 4025 +f 4048 4025 4085 +f 4004 4048 4085 +f 4062 4048 4004 +f 4062 4044 4048 +f 4067 4044 4062 +f 4073 4067 4062 +f 4073 4062 3987 +f 4086 4067 4073 +f 4086 4073 3986 +f 4091 4067 4086 +f 4091 4086 4084 +f 4076 4091 4084 +f 4076 4084 4070 +f 4051 4076 4070 +f 4051 4070 4059 +f 4051 4059 4047 +f 4018 4051 4047 +f 4120 4051 4018 +f 4120 4123 4051 +f 4123 4127 4051 +f 4099 4127 4123 +f 4099 4131 4127 +f 4131 4128 4127 +f 4127 4128 4091 +f 4128 4131 4126 +f 4128 4126 4067 +f 4131 4124 4126 +f 4126 4124 4122 +f 4126 4122 4044 +f 4122 4121 4044 +f 4122 4008 4121 +f 4121 4008 4074 +f 4008 4019 4074 +f 4019 4008 4010 +f 4019 4010 3978 +f 3977 4019 3978 +f 3977 3978 3979 +f 3989 3977 3979 +f 3989 3979 4066 +f 3977 3989 4114 +f 3979 3978 4113 +f 4019 3977 4075 +f 3978 4010 4125 +f 4008 4009 4010 +f 4010 4009 4115 +f 4099 4009 4008 +f 4124 4099 4008 +f 4009 4099 4120 +f 4009 4120 4117 +f 4124 4008 4122 +f 4124 4131 4099 +f 4099 4123 4120 +f 4047 4059 4036 +f 4059 4070 4102 +f 4127 4076 4051 +f 4070 4084 4013 +f 4127 4091 4076 +f 4084 4086 4013 +f 4091 4128 4067 +f 4067 4126 4044 +f 4044 4121 4006 +f 3998 3999 4000 +f 4121 4074 4006 +f 4074 4019 4075 +f 4075 3977 4119 +f 4119 3977 4114 +f 4114 3989 4111 +f 4111 3989 4092 +f 4092 3989 4066 +f 4130 4129 4096 +f 3979 4104 4066 +f 4129 4118 4098 +f 3979 4113 4104 +f 4118 4077 4106 +f 4118 4106 4103 +f 3978 4125 4113 +f 4077 4029 4078 +f 4029 4031 4078 +f 4010 4116 4125 +f 4010 4115 4116 +f 4029 3992 4030 +f 4009 4117 4115 +f 4117 4120 4018 +f 4018 4047 4020 +f 4020 4047 4035 +f 4020 4035 4112 +f 4037 4045 4046 +f 4047 4036 4035 +f 4059 4102 4036 +f 4070 4013 4102 +f 4060 4037 4014 +f 4086 4057 4013 +f 4057 4086 3986 +f 3986 4073 3987 +f 3987 4062 4004 +f 3991 4014 3988 +f 4063 4049 3990 +f 4079 4049 4063 +f 4050 4049 4079 +f 4060 4014 3991 +f 4060 4045 4037 +f 4050 4079 4065 +f 4110 4079 4063 +f 4058 4046 4045 +f 4110 4107 4056 +f 4088 4107 4068 +f 4108 4046 4021 +f 3994 3993 4108 +f 3992 3994 4030 +f 4029 4030 4031 +f 4001 4002 4003 +f 4002 4022 4053 +f 4078 4031 4054 +f 4077 4078 4106 +f 4090 4053 4093 +f 4022 4089 4053 +f 4088 4068 4089 +f 4028 4095 4069 +f 4095 3984 4069 +f 4095 4028 3984 +f 4028 3982 3984 +f 4028 4038 3982 +f 3982 4038 3985 +f 3982 3985 3983 +f 3985 4038 4039 +f 3985 4039 4043 +f 4039 4038 4032 +f 4107 4110 4068 +f 4038 4083 4032 +f 4110 4063 4041 +f 4063 3990 4071 +f 4071 3990 4005 +f 4011 4042 4064 +f 4004 4085 4005 +f 4085 4025 4061 +f 4061 3998 4007 +f 3998 4000 4007 +f 4000 3999 4023 +f 4023 3999 4024 +f 3976 3980 3981 +f 4024 4072 4055 +f 4072 4052 4016 +f 4016 4109 4087 +f 4087 4109 4034 +f 4081 4015 4017 +f 4087 4034 4033 +f 4034 4109 3996 +f 3996 4130 4096 +f 4097 4082 3997 +f 4129 4098 4096 +f 4118 4101 4098 +f 4118 4103 4101 +f 4103 4106 4105 +f 4069 3984 4105 +f 4100 4012 4097 +f 3982 3983 3984 +f 4012 4082 4097 +f 3983 3985 4080 +f 4082 4081 3995 +f 4080 3985 4043 +f 4043 4039 4032 +f 4081 4027 4015 +f 4083 4026 4032 +f 4026 4083 3974 +f 4027 3976 4015 +f 3976 3975 4011 +f 4094 3975 3974 + + +o Object.12 +v -146.261108 -64.415947 -4.747615 +v -146.386108 -63.312248 -4.750415 +v -145.791504 -63.312248 -4.750415 +v -148.518494 -67.334236 -4.750415 +v -148.738586 -66.781853 -4.550418 +v -148.738586 -66.781853 -4.750415 +v -146.088806 -64.546150 -3.300418 +v -145.210693 -63.440147 -4.550418 +v -145.791504 -63.312248 -4.550418 +v -145.901398 -67.538429 -4.671619 +v -145.742401 -67.462639 -4.738712 +v -145.916504 -67.676338 -4.747615 +v -147.235504 -66.399834 0.249577 +v -147.235504 -65.692436 0.249577 +v -147.572113 -65.822533 -0.050426 +v -145.437988 -64.694649 -3.300418 +v -145.800690 -66.506050 -4.696613 +v -144.620392 -66.311455 -4.707515 +v -148.834808 -66.195045 -4.550418 +v -144.670990 -63.689751 -4.550418 +v -147.188416 -65.025932 -0.050426 +v -146.968506 -65.229927 0.249577 +v -146.838806 -64.747139 -0.050426 +v -145.891113 -66.173744 -3.750415 +v -145.730988 -66.322044 -4.615116 +v -143.992889 -67.826439 -4.750415 +v -144.838013 -66.116554 -3.750415 +v -144.197601 -64.049644 -4.550418 +v -148.834808 -66.195045 -4.750415 +v -146.150696 -64.773949 -3.750415 +v -146.312897 -65.563850 -4.591915 +v -146.303711 -64.633247 -4.595317 +v -145.057312 -64.957146 -3.300418 +v -143.812714 -64.502846 -4.550418 +v -148.802612 -65.601250 -4.550418 +v -145.795990 -65.962654 -3.750415 +v -145.979187 -65.819450 -3.750415 +v -146.422607 -64.583733 -0.050426 +v -146.355804 -64.876228 0.249577 +v -145.755005 -64.583733 -0.050426 +v -146.189514 -65.801643 -3.750415 +v -147.581116 -66.233543 -4.671619 +v -146.386108 -66.375450 -4.615116 +v -147.542511 -66.319450 -4.707012 +v -143.534088 -65.028252 -4.550418 +v -147.522186 -66.488228 -0.050426 +v -147.586609 -65.964943 -3.300418 +v -147.120392 -64.957146 -3.300418 +v -148.802612 -65.601250 -4.750415 +v -144.692505 -65.498146 -3.300418 +v -143.375000 -65.601250 -4.550418 +v -146.323792 -66.501854 -4.615116 +v -146.468994 -67.468437 -4.747615 +v -146.489105 -66.435646 -4.736515 +v -147.752991 -68.235435 -4.750408 +v -144.591003 -65.964943 -3.300418 +v -146.088806 -68.796135 -4.550411 +v -146.679993 -68.731834 -4.550411 +v -146.088806 -68.796135 -4.750408 +v -148.643494 -65.028252 -4.550418 +v -143.342804 -66.195045 -4.550418 +v -145.768890 -65.659355 -4.696613 +v -145.599701 -65.763252 -4.696613 +v -144.695313 -66.601357 -3.300418 +v -148.184814 -67.826439 -4.750415 +v -147.569092 -66.288857 -3.300418 +v -143.438995 -66.781853 -4.550418 +v -146.376892 -65.586250 -4.696613 +v -144.888794 -66.046135 0.249577 +v -144.605591 -66.269737 -0.050426 +v -144.605591 -65.822533 -0.050426 +v -143.659088 -67.334236 -4.750415 +v -146.407410 -65.968254 -3.750415 +v -143.659088 -67.334236 -4.550418 +v -148.643494 -65.028252 -4.750415 +v -148.364990 -64.502846 -4.550418 +v -146.366608 -67.651833 -4.749813 +v -144.575012 -66.197548 -4.681713 +v -143.992889 -67.826439 -4.550418 +v -146.088013 -67.366539 -3.750415 +v -146.142395 -67.331337 -3.750415 +v -146.005310 -66.338951 -3.750415 +v -145.858887 -64.663048 -4.620213 +v -145.930817 -64.494743 -4.715519 +v -145.823608 -64.578148 -4.707317 +v -146.166687 -66.364754 -3.750415 +v -144.945587 -67.017235 -3.300418 +v -145.459015 -67.407539 -3.300418 +v -144.424591 -68.235435 -4.550411 +v -144.424591 -68.235435 -4.750408 +v -144.934113 -68.541939 -4.550411 +v -148.364990 -64.502846 -4.750415 +v -147.980011 -64.049644 -4.550418 +v -147.232117 -67.017235 -3.300418 +v -146.392487 -65.724144 -4.615116 +v -145.766296 -67.511040 -3.300418 +v -145.497589 -68.731834 -4.550411 +v -147.980011 -64.049644 -4.750415 +v -146.251099 -64.545052 -4.669513 +v -145.650391 -64.929131 0.249577 +v -145.338806 -64.747139 -0.050426 +v -145.097290 -65.370140 0.249577 +v -146.288788 -66.172249 -3.750415 +v -143.438995 -66.781853 -4.750415 +v -147.506592 -63.689751 -4.550418 +v -147.387909 -66.796135 -0.050426 +v -146.088806 -67.546135 -3.300418 +v -145.756592 -64.673744 -4.731213 +v -147.718994 -66.218452 -4.747615 +v -145.210693 -63.440147 -4.750415 +v -144.670990 -63.689751 -4.750415 +v -143.342804 -66.195045 -4.750415 +v -144.197601 -64.049644 -4.750415 +v -147.243500 -68.541939 -4.750408 +v -143.812714 -64.502846 -4.750415 +v -147.374512 -66.099342 -3.750415 +v -147.669617 -65.882652 -4.732212 +v -143.534088 -65.028252 -4.750415 +v -144.558716 -65.858253 -4.706615 +v -143.375000 -65.601250 -4.750415 +v -146.018402 -64.795357 -3.750415 +v -147.440308 -65.395332 -0.050426 +v -145.858307 -66.529243 -4.615116 +v -147.506592 -63.689751 -4.750415 +v -144.768494 -66.045357 -3.750415 +v -147.510498 -65.807655 -4.656818 +v -146.966888 -63.440147 -4.550418 +v -144.934113 -68.541939 -4.750408 +v -146.679993 -68.731834 -4.750408 +v -145.497589 -68.731834 -4.750408 +v -146.293091 -67.615929 -4.732616 +v -146.258698 -67.508141 -4.596614 +v -147.243500 -68.541939 -4.550411 +v -146.966888 -63.440147 -4.750415 +v -146.386108 -63.312248 -4.550418 +v -147.409210 -66.045357 -3.750415 +v -146.397186 -64.487251 -4.747615 +v -146.567810 -64.624657 -3.300418 +v -144.989197 -65.025932 -0.050426 +v -147.511108 -65.665947 -4.747615 +v -144.737396 -65.395332 -0.050426 +v -147.752991 -68.235435 -4.550411 +v -147.485107 -65.498146 -3.300418 +v -146.527191 -67.163216 0.249577 +v -145.999115 -67.242821 0.249577 +v -145.650391 -67.163216 0.249577 +v -144.737396 -66.696938 -0.050426 +v -146.837006 -66.984322 0.249577 +v -146.718597 -67.407539 -3.300418 +v -144.989197 -67.066414 -0.050426 +v -144.659515 -65.788857 -4.683818 +v -145.097290 -66.722130 0.249577 +v -145.338806 -67.345116 -0.050426 +v -148.184814 -67.826439 -4.550418 +v -147.109100 -67.145714 -0.050426 +v -145.755005 -67.508522 -0.050426 +v -146.088806 -67.546120 -0.050426 +v -148.518494 -67.334236 -4.550418 +v -146.739594 -67.397621 -0.050426 + +f 4132 4133 4134 +f 4215 4132 4134 +f 4216 4215 4134 +f 4241 4216 4134 +f 4139 4241 4134 +f 4140 4139 4134 +f 4138 4139 4140 +f 4266 4138 4140 +f 4266 4140 4133 +f 4265 4266 4133 +f 4258 4266 4265 +f 4255 4258 4265 +f 4268 4255 4265 +f 4132 4268 4265 +f 4230 4268 4132 +f 4230 4163 4268 +f 4163 4199 4268 +f 4199 4271 4268 +f 4268 4271 4223 +f 4268 4223 4229 +f 4223 4224 4229 +f 4224 4236 4229 +f 4229 4236 4255 +f 4224 4179 4236 +f 4179 4269 4236 +f 4236 4269 4258 +f 4269 4138 4258 +f 4269 4169 4138 +f 4169 4171 4138 +f 4171 4147 4138 +f 4171 4232 4147 +f 4232 4164 4147 +f 4147 4164 4159 +f 4147 4159 4151 +f 4147 4151 4139 +f 4151 4159 4242 +f 4151 4242 4241 +f 4159 4244 4242 +f 4244 4239 4242 +f 4239 4216 4242 +f 4239 4214 4216 +f 4193 4214 4239 +f 4193 4168 4214 +f 4168 4252 4214 +f 4252 4215 4214 +f 4252 4161 4215 +f 4215 4161 4230 +f 4252 4172 4161 +f 4161 4172 4162 +f 4161 4162 4163 +f 4162 4172 4226 +f 4162 4226 4199 +f 4172 4204 4226 +f 4226 4204 4257 +f 4226 4257 4271 +f 4257 4248 4271 +f 4271 4248 4206 +f 4248 4180 4206 +f 4180 4191 4206 +f 4191 4207 4206 +f 4206 4207 4223 +f 4191 4274 4207 +f 4274 4179 4207 +f 4274 4253 4179 +f 4253 4152 4179 +f 4152 4154 4179 +f 4152 4153 4154 +f 4154 4153 4169 +f 4153 4170 4169 +f 4153 4231 4170 +f 4170 4231 4171 +f 4153 4233 4231 +f 4231 4233 4232 +f 4233 4270 4232 +f 4233 4272 4270 +f 4270 4272 4164 +f 4272 4181 4164 +f 4164 4181 4176 +f 4164 4176 4165 +f 4165 4176 4246 +f 4165 4246 4244 +f 4246 4250 4244 +f 4250 4282 4244 +f 4282 4193 4244 +f 4282 4194 4193 +f 4282 4256 4194 +f 4256 4167 4194 +f 4167 4168 4194 +f 4167 4155 4168 +f 4168 4155 4172 +f 4158 4155 4167 +f 4155 4158 4149 +f 4155 4149 4156 +f 4213 4155 4156 +f 4254 4213 4156 +f 4148 4254 4156 +f 4141 4254 4148 +f 4141 4148 4142 +f 4141 4142 4143 +f 4262 4141 4143 +f 4262 4143 4208 +f 4263 4262 4208 +f 4263 4208 4184 +f 4183 4263 4184 +f 4183 4184 4185 +f 4174 4183 4185 +f 4175 4174 4185 +f 4185 4196 4175 +f 4196 4135 4175 +f 4175 4135 4240 +f 4173 4175 4240 +f 4248 4173 4240 +f 4240 4160 4248 +f 4240 4137 4160 +f 4137 4150 4160 +f 4150 4166 4160 +f 4160 4166 4180 +f 4150 4178 4166 +f 4166 4178 4191 +f 4197 4178 4150 +f 4136 4197 4150 +f 4225 4197 4136 +f 4289 4225 4136 +f 4289 4136 4135 +f 4135 4136 4137 +f 4285 4225 4289 +f 4285 4289 4196 +f 4186 4285 4196 +f 4273 4285 4186 +f 4245 4273 4186 +f 4245 4186 4208 +f 4260 4245 4208 +f 4190 4260 4208 +f 4261 4190 4208 +f 4188 4190 4261 +f 4228 4188 4261 +f 4228 4261 4259 +f 4222 4228 4259 +f 4222 4259 4221 +f 4220 4222 4221 +f 4220 4221 4157 +f 4210 4220 4157 +f 4210 4157 4203 +f 4205 4210 4203 +f 4205 4203 4235 +f 4198 4205 4235 +f 4198 4235 4243 +f 4192 4198 4243 +f 4192 4243 4251 +f 4182 4192 4251 +f 4182 4251 4249 +f 4176 4182 4249 +f 4251 4250 4249 +f 4187 4192 4182 +f 4181 4187 4182 +f 4202 4187 4181 +f 4202 4201 4187 +f 4201 4195 4187 +f 4201 4278 4195 +f 4278 4281 4195 +f 4281 4218 4195 +f 4195 4218 4210 +f 4218 4219 4210 +f 4281 4219 4218 +f 4281 4284 4219 +f 4284 4287 4219 +f 4287 4227 4219 +f 4219 4227 4222 +f 4287 4238 4227 +f 4227 4238 4228 +f 4287 4288 4238 +f 4238 4288 4280 +f 4238 4280 4189 +f 4188 4238 4189 +f 4189 4280 4264 +f 4189 4264 4260 +f 4264 4280 4273 +f 4280 4225 4273 +f 4280 4286 4225 +f 4286 4237 4225 +f 4237 4177 4225 +f 4237 4144 4177 +f 4177 4144 4146 +f 4177 4146 4178 +f 4178 4146 4274 +f 4144 4145 4146 +f 4146 4145 4253 +f 4144 4200 4145 +f 4145 4200 4233 +f 4144 4283 4200 +f 4200 4283 4201 +f 4279 4283 4144 +f 4279 4277 4283 +f 4283 4277 4281 +f 4275 4277 4279 +f 4275 4279 4286 +f 4290 4275 4286 +f 4288 4275 4290 +f 4276 4275 4288 +f 4275 4276 4277 +f 4277 4276 4287 +f 4279 4144 4237 +f 4286 4279 4237 +f 4290 4286 4280 +f 4288 4290 4280 +f 4276 4288 4287 +f 4277 4287 4284 +f 4277 4284 4281 +f 4283 4281 4278 +f 4283 4278 4201 +f 4200 4201 4202 +f 4200 4202 4272 +f 4187 4195 4192 +f 4243 4250 4251 +f 4243 4209 4250 +f 4209 4256 4250 +f 4158 4256 4209 +f 4195 4198 4192 +f 4235 4209 4243 +f 4235 4149 4209 +f 4195 4205 4198 +f 4235 4203 4149 +f 4195 4210 4205 +f 4203 4157 4149 +f 4157 4142 4149 +f 4219 4220 4210 +f 4157 4221 4142 +f 4219 4222 4220 +f 4221 4259 4142 +f 4227 4228 4222 +f 4259 4261 4143 +f 4238 4188 4228 +f 4188 4189 4190 +f 4190 4189 4260 +f 4260 4264 4245 +f 4264 4273 4245 +f 4273 4225 4285 +f 4225 4177 4197 +f 4197 4177 4178 +f 4136 4150 4137 +f 4135 4137 4240 +f 4196 4289 4135 +f 4186 4196 4185 +f 4173 4174 4175 +f 4247 4174 4173 +f 4267 4247 4173 +f 4267 4173 4257 +f 4234 4247 4267 +f 4204 4234 4267 +f 4217 4234 4204 +f 4155 4217 4204 +f 4234 4217 4174 +f 4247 4234 4174 +f 4217 4183 4174 +f 4184 4186 4185 +f 4217 4263 4183 +f 4217 4212 4263 +f 4212 4211 4263 +f 4211 4141 4263 +f 4211 4212 4213 +f 4213 4212 4217 +f 4208 4186 4184 +f 4261 4208 4143 +f 4263 4141 4262 +f 4259 4143 4142 +f 4142 4148 4149 +f 4141 4211 4254 +f 4211 4213 4254 +f 4155 4213 4217 +f 4156 4149 4148 +f 4158 4209 4149 +f 4256 4158 4167 +f 4250 4256 4282 +f 4249 4250 4246 +f 4176 4249 4246 +f 4181 4182 4176 +f 4272 4202 4181 +f 4233 4200 4272 +f 4153 4145 4233 +f 4145 4153 4152 +f 4253 4145 4152 +f 4146 4253 4274 +f 4178 4274 4191 +f 4166 4191 4180 +f 4248 4160 4180 +f 4257 4173 4248 +f 4204 4267 4257 +f 4155 4204 4172 +f 4168 4172 4252 +f 4168 4193 4194 +f 4193 4239 4244 +f 4159 4165 4244 +f 4164 4165 4159 +f 4232 4270 4164 +f 4231 4232 4171 +f 4169 4170 4171 +f 4154 4169 4269 +f 4179 4154 4269 +f 4207 4179 4224 +f 4207 4224 4223 +f 4271 4206 4223 +f 4199 4226 4271 +f 4162 4199 4163 +f 4230 4161 4163 +f 4268 4229 4255 +f 4236 4258 4255 +f 4258 4138 4266 +f 4138 4147 4139 +f 4139 4151 4241 +f 4242 4216 4241 +f 4214 4215 4216 +f 4215 4230 4132 +f 4133 4140 4134 +f 4132 4265 4133 + + +o Object.13 +v 19.639999 -122.542473 -4.100346 +v 21.297808 -121.913673 -4.100346 +v 20.320988 -121.378975 -4.100346 +v 21.511278 -121.700279 -7.100338 +v 20.379009 -121.322472 -7.100338 +v 21.118019 -120.042488 -7.100338 +v 19.874649 -118.560875 0.549641 +v 20.700659 -118.981773 0.549641 +v 19.874649 -118.560890 -4.100353 +v 20.700659 -118.981789 -4.100353 +v 22.067348 -120.640785 -7.100338 +v 17.982189 -121.913673 -7.100338 +v 17.302458 -120.928978 -7.100338 +v 18.161978 -120.042488 -7.100338 +v 20.453169 -119.229271 0.899640 +v 20.775839 -119.862572 0.899647 +v 18.158468 -120.277077 0.549649 +v 18.504158 -119.862572 0.899647 +v 18.303488 -119.361473 0.549649 +v 18.900988 -121.322472 -7.100338 +v 18.753489 -122.379967 -4.100346 +v 19.405348 -121.523979 -4.100346 +v 18.579338 -121.103081 -4.100346 +v 21.121529 -119.807777 0.549649 +v 21.121529 -119.807793 -4.100346 +v 17.158228 -119.741081 -7.100338 +v 22.067348 -119.444191 -7.100338 +v 17.768719 -121.700279 -4.100346 +v 20.664658 -120.564568 0.899647 +v 20.976509 -120.723473 0.549649 +v 18.615339 -120.564568 0.899647 +v 20.976509 -120.723488 -4.100346 +v 18.900988 -118.762489 -7.100346 +v 20.379009 -118.762489 -7.100346 +v 21.977539 -120.928978 -4.100346 +v 22.030729 -121.297173 -4.300350 +v 22.339998 -120.042488 -4.300350 +v 17.582539 -118.622292 -7.100346 +v 21.511278 -118.384682 -7.100346 +v 20.320988 -121.378960 0.549649 +v 17.619019 -121.832878 -4.300350 +v 17.212648 -120.640785 -4.100346 +v 17.018459 -120.688591 -4.300350 +v 18.158468 -120.277092 -4.100346 +v 18.478188 -117.828789 -7.100346 +v 20.526508 -117.704887 -7.100346 +v 22.030729 -121.297173 -6.900349 +v 21.173769 -122.264473 -6.900349 +v 22.121769 -119.741081 -4.100346 +v 18.161978 -120.042488 -5.100346 +v 18.900988 -121.322472 -5.100346 +v 18.579338 -121.103065 0.549649 +v 21.173769 -122.264473 -4.300350 +v 20.379009 -118.762489 -5.100353 +v 18.900988 -118.762489 -5.100353 +v 19.117908 -121.067055 0.899647 +v 20.162088 -121.067055 0.899647 +v 21.118019 -120.042488 -5.100346 +v 19.639999 -122.542473 -7.100338 +v 20.379009 -121.322472 -5.100346 +v 18.303488 -119.361488 -4.100346 +v 19.819899 -118.906578 0.899640 +v 17.212648 -119.444191 -4.100346 +v 19.405348 -121.523964 0.549649 +v 18.682568 -122.566978 -4.300350 +v 18.682568 -122.566978 -6.900349 +v 17.619019 -121.832878 -6.900349 +v 22.339998 -120.042488 -6.900349 +v 21.697458 -118.622292 -4.100353 +v 19.965448 -122.722771 -4.300350 +v 18.682568 -117.517891 -4.300357 +v 18.753489 -117.704887 -4.100353 +v 19.965448 -117.362190 -4.300357 +v 17.018459 -120.688591 -6.900349 +v 17.768719 -118.384682 -4.100353 +v 18.959009 -118.705986 -4.100353 +v 17.619019 -118.251991 -4.300357 +v 17.018459 -119.396294 -6.900349 +v 20.526508 -122.379967 -7.100338 +v 20.801809 -117.828789 -4.100353 +v 17.018459 -119.396294 -4.300350 +v 17.619019 -118.251991 -6.900356 +v 21.173769 -117.820396 -4.300357 +v 18.682568 -117.517891 -6.900356 +v 19.965448 -117.362190 -6.900356 +v 22.030729 -118.787682 -4.300357 +v 22.030729 -118.787682 -6.900356 +v 18.826828 -119.229271 0.899640 +v 19.965448 -122.722771 -6.900349 +v 18.959009 -118.705971 0.549641 +v 21.173769 -117.820396 -6.900356 + +f 4291 4292 4293 +f 4291 4293 4312 +f 4311 4291 4312 +f 4311 4312 4313 +f 4318 4311 4313 +f 4332 4318 4313 +f 4332 4313 4334 +f 4334 4351 4332 +f 4332 4351 4353 +f 4332 4353 4333 +f 4331 4332 4333 +f 4331 4333 4357 +f 4356 4331 4357 +f 4356 4357 4302 +f 4349 4356 4302 +f 4349 4302 4310 +f 4295 4349 4310 +f 4341 4295 4310 +f 4340 4341 4310 +f 4340 4310 4304 +f 4345 4340 4304 +f 4345 4304 4323 +f 4344 4345 4323 +f 4324 4344 4323 +f 4324 4323 4335 +f 4324 4335 4336 +f 4329 4324 4336 +f 4381 4329 4336 +f 4375 4381 4336 +f 4373 4381 4375 +f 4363 4373 4375 +f 4374 4363 4375 +f 4374 4375 4335 +f 4372 4374 4335 +f 4328 4372 4335 +f 4368 4372 4328 +f 4316 4368 4328 +f 4323 4316 4328 +f 4364 4368 4316 +f 4303 4364 4316 +f 4304 4303 4316 +f 4302 4303 4304 +f 4357 4364 4303 +f 4364 4371 4368 +f 4371 4367 4368 +f 4371 4365 4367 +f 4365 4362 4367 +f 4367 4362 4361 +f 4367 4361 4372 +f 4361 4362 4363 +f 4362 4370 4363 +f 4299 4370 4362 +f 4366 4299 4362 +f 4366 4297 4299 +f 4297 4298 4299 +f 4298 4300 4299 +f 4298 4314 4300 +f 4314 4315 4300 +f 4300 4315 4359 +f 4300 4359 4370 +f 4370 4359 4373 +f 4359 4376 4373 +f 4359 4339 4376 +f 4339 4327 4376 +f 4376 4327 4377 +f 4376 4377 4381 +f 4327 4358 4377 +f 4377 4358 4317 +f 4377 4317 4329 +f 4358 4301 4317 +f 4301 4296 4317 +f 4296 4324 4317 +f 4296 4348 4324 +f 4350 4348 4296 +f 4295 4350 4296 +f 4294 4295 4296 +f 4294 4369 4295 +f 4338 4369 4294 +f 4337 4338 4294 +f 4337 4294 4301 +f 4343 4338 4337 +f 4326 4343 4337 +f 4326 4337 4358 +f 4292 4343 4326 +f 4325 4292 4326 +f 4325 4326 4327 +f 4292 4325 4322 +f 4322 4325 4315 +f 4320 4322 4315 +f 4320 4330 4322 +f 4330 4293 4322 +f 4330 4354 4293 +f 4330 4347 4354 +f 4347 4346 4354 +f 4354 4346 4342 +f 4354 4342 4312 +f 4346 4321 4342 +f 4342 4321 4307 +f 4342 4307 4313 +f 4321 4308 4307 +f 4307 4308 4309 +f 4307 4309 4334 +f 4308 4378 4309 +f 4309 4378 4380 +f 4309 4380 4351 +f 4351 4380 4366 +f 4351 4366 4365 +f 4380 4378 4297 +f 4378 4352 4297 +f 4352 4305 4297 +f 4308 4305 4352 +f 4308 4306 4305 +f 4305 4306 4298 +f 4378 4308 4352 +f 4321 4306 4308 +f 4321 4346 4306 +f 4346 4347 4306 +f 4347 4319 4306 +f 4306 4319 4314 +f 4319 4320 4314 +f 4319 4347 4320 +f 4347 4330 4320 +f 4315 4325 4339 +f 4343 4360 4338 +f 4360 4379 4338 +f 4360 4355 4379 +f 4355 4356 4379 +f 4291 4355 4360 +f 4291 4360 4343 +f 4338 4379 4369 +f 4379 4349 4369 +f 4350 4341 4348 +f 4301 4294 4296 +f 4358 4337 4301 +f 4327 4326 4358 +f 4339 4325 4327 +f 4315 4339 4359 +f 4314 4320 4315 +f 4306 4314 4298 +f 4305 4298 4297 +f 4380 4297 4366 +f 4299 4300 4370 +f 4365 4366 4362 +f 4353 4365 4371 +f 4333 4371 4364 +f 4368 4367 4372 +f 4372 4361 4374 +f 4361 4363 4374 +f 4370 4373 4363 +f 4373 4376 4381 +f 4381 4377 4329 +f 4317 4324 4329 +f 4335 4375 4336 +f 4323 4328 4335 +f 4348 4344 4324 +f 4348 4340 4344 +f 4304 4316 4323 +f 4344 4340 4345 +f 4348 4341 4340 +f 4341 4350 4295 +f 4369 4349 4295 +f 4310 4302 4304 +f 4379 4356 4349 +f 4302 4357 4303 +f 4355 4331 4356 +f 4355 4318 4331 +f 4357 4333 4364 +f 4333 4353 4371 +f 4353 4351 4365 +f 4334 4309 4351 +f 4313 4307 4334 +f 4318 4332 4331 +f 4311 4318 4355 +f 4312 4342 4313 +f 4291 4311 4355 +f 4293 4354 4312 +f 4293 4292 4322 +f 4292 4291 4343 + + +o Object.14 +v -20.162090 -121.067055 0.899647 +v -18.826832 -120.855553 0.899647 +v -20.775841 -120.222374 0.899647 +v -17.768723 -121.700279 -7.100338 +v -18.901173 -121.322578 -7.100338 +v -18.161980 -120.042686 -7.100338 +v -19.405350 -118.560875 0.549641 +v -18.579342 -118.981773 0.549641 +v -19.405350 -118.560890 -4.100353 +v -18.579342 -118.981789 -4.100353 +v -18.161980 -120.042686 -5.100346 +v -21.118019 -120.042290 -5.100346 +v -18.900810 -118.762596 -5.100353 +v -17.212643 -120.640785 -7.100338 +v -19.874653 -121.523964 0.549649 +v -20.700661 -121.103065 0.549649 +v -18.900810 -118.762596 -7.100346 +v -18.753822 -122.380074 -4.100346 +v -17.768963 -121.700478 -4.100346 +v -18.959011 -121.378975 -4.100346 +v -20.802124 -122.255867 -4.100346 +v -19.874653 -121.523979 -4.100346 +v -20.700661 -121.103081 -4.100346 +v -18.158463 -119.807777 0.549649 +v -18.158463 -119.807793 -4.100346 +v -21.297798 -121.913673 -7.100338 +v -21.977539 -120.928978 -7.100338 +v -21.118019 -120.042290 -7.100338 +v -20.379192 -121.322380 -7.100338 +v -19.640003 -121.192451 0.899647 +v -22.121773 -119.741081 -7.100338 +v -17.212643 -119.444191 -7.100338 +v -18.303490 -120.723473 0.549649 +v -18.303490 -120.723488 -4.100346 +v -21.697662 -121.462273 -4.100346 +v -18.106232 -122.264473 -6.900349 +v -19.314552 -122.722771 -6.900349 +v -18.753490 -122.379967 -7.100338 +v -17.212730 -120.641090 -4.100346 +v -20.378830 -118.762383 -7.100346 +v -18.959011 -121.378960 0.549649 +v -21.697464 -118.622292 -7.100346 +v -17.768723 -118.384682 -7.100346 +v -17.249451 -121.297569 -4.300350 +v -16.940002 -120.042488 -4.300350 +v -22.121819 -120.343391 -4.100346 +v -22.261635 -120.688286 -4.300350 +v -21.661240 -121.832573 -4.300350 +v -21.121529 -120.277092 -4.100346 +v -19.640003 -122.542473 -7.100338 +v -20.801804 -117.828789 -7.100346 +v -18.753490 -117.704887 -7.100346 +v -18.901173 -121.322578 -5.100346 +v -20.379192 -121.322380 -5.100346 +v -20.162090 -119.017769 0.899640 +v -19.460102 -118.906578 0.899640 +v -18.106541 -122.264671 -4.300350 +v -20.976509 -119.361488 -4.100346 +v -17.212570 -119.444496 -4.100346 +v -18.615341 -119.520378 0.899647 +v -19.640362 -122.542473 -4.100346 +v -22.261551 -120.688591 -6.900349 +v -22.261551 -119.396294 -6.900349 +v -18.504162 -120.222374 0.899647 +v -20.597790 -122.566872 -4.300350 +v -21.977440 -119.155693 -4.100353 +v -16.940002 -120.042488 -6.900349 +v -20.378830 -118.762383 -5.100353 +v -19.314930 -122.722771 -4.300350 +v -17.768600 -118.384789 -4.100353 +v -20.320980 -118.705986 -4.100353 +v -20.597443 -122.566978 -6.900349 +v -21.660980 -121.832878 -6.900349 +v -20.976509 -119.361473 0.549649 +v -20.664661 -119.520378 0.899647 +v -20.320980 -118.705971 0.549641 +v -17.249271 -118.787682 -6.900356 +v -20.238243 -117.615089 -4.100353 +v -18.753410 -117.704887 -4.100353 +v -20.597351 -117.517891 -4.300357 +v -21.297691 -118.171089 -4.100353 +v -21.660980 -118.251991 -6.900356 +v -21.660843 -118.251884 -4.300357 +v -21.121529 -120.277077 0.549649 +v -22.261475 -119.395988 -4.300350 +v -18.106232 -117.820396 -6.900356 +v -19.314522 -117.362190 -4.300357 +v -20.597443 -117.517891 -6.900356 +v -18.106102 -117.820488 -4.300357 +v -17.249271 -121.297173 -6.900349 +v -17.249142 -118.787987 -4.300357 +v -19.314552 -117.362190 -6.900356 + +f 4382 4383 4384 +f 4382 4384 4397 +f 4396 4382 4397 +f 4396 4397 4403 +f 4396 4403 4401 +f 4422 4396 4401 +f 4422 4401 4415 +f 4414 4422 4415 +f 4414 4415 4406 +f 4405 4414 4406 +f 4405 4406 4391 +f 4389 4405 4391 +f 4389 4391 4390 +f 4388 4389 4390 +f 4457 4388 4390 +f 4452 4457 4390 +f 4452 4390 4462 +f 4447 4452 4462 +f 4447 4462 4464 +f 4466 4447 4464 +f 4466 4464 4444 +f 4443 4466 4444 +f 4443 4444 4412 +f 4408 4443 4412 +f 4409 4408 4412 +f 4409 4412 4421 +f 4449 4409 4421 +f 4394 4449 4421 +f 4398 4394 4421 +f 4398 4421 4433 +f 4424 4398 4433 +f 4467 4424 4433 +f 4473 4467 4433 +f 4469 4473 4433 +f 4432 4469 4433 +f 4463 4469 4432 +f 4423 4463 4432 +f 4421 4423 4432 +f 4444 4463 4423 +f 4463 4461 4469 +f 4461 4468 4469 +f 4460 4468 4461 +f 4459 4460 4461 +f 4462 4459 4461 +f 4459 4390 4460 +f 4460 4470 4468 +f 4468 4470 4467 +f 4470 4472 4467 +f 4472 4458 4467 +f 4472 4426 4458 +f 4426 4448 4458 +f 4458 4448 4413 +f 4458 4413 4424 +f 4448 4395 4413 +f 4395 4387 4413 +f 4387 4398 4413 +f 4387 4392 4398 +f 4434 4392 4387 +f 4386 4434 4387 +f 4385 4386 4387 +f 4385 4419 4386 +f 4419 4431 4386 +f 4386 4431 4410 +f 4435 4386 4410 +f 4393 4435 4410 +f 4393 4410 4409 +f 4410 4407 4409 +f 4392 4435 4393 +f 4392 4393 4394 +f 4431 4407 4410 +f 4431 4453 4407 +f 4453 4454 4407 +f 4407 4454 4408 +f 4453 4429 4454 +f 4429 4428 4454 +f 4454 4428 4443 +f 4429 4416 4428 +f 4416 4427 4428 +f 4428 4427 4466 +f 4427 4416 4430 +f 4430 4439 4427 +f 4427 4439 4447 +f 4430 4455 4439 +f 4455 4457 4439 +f 4455 4456 4457 +f 4456 4436 4457 +f 4456 4383 4436 +f 4383 4437 4436 +f 4436 4437 4388 +f 4383 4445 4437 +f 4445 4441 4437 +f 4437 4441 4389 +f 4441 4445 4405 +f 4445 4383 4422 +f 4383 4411 4422 +f 4384 4456 4455 +f 4465 4384 4455 +f 4465 4455 4430 +f 4404 4465 4430 +f 4397 4465 4404 +f 4416 4404 4430 +f 4416 4402 4404 +f 4402 4403 4404 +f 4402 4442 4403 +f 4442 4402 4446 +f 4450 4442 4446 +f 4450 4446 4453 +f 4450 4453 4418 +f 4450 4418 4417 +f 4438 4450 4417 +f 4438 4417 4471 +f 4425 4438 4471 +f 4426 4425 4471 +f 4420 4425 4426 +f 4440 4420 4426 +f 4406 4420 4440 +f 4406 4440 4451 +f 4451 4440 4472 +f 4420 4400 4425 +f 4400 4420 4415 +f 4400 4438 4425 +f 4400 4399 4438 +f 4399 4400 4401 +f 4442 4399 4401 +f 4471 4417 4385 +f 4471 4385 4395 +f 4399 4450 4438 +f 4417 4418 4419 +f 4399 4442 4450 +f 4446 4402 4429 +f 4402 4416 4429 +f 4446 4429 4453 +f 4418 4453 4431 +f 4418 4431 4419 +f 4417 4419 4385 +f 4435 4434 4386 +f 4434 4435 4392 +f 4395 4385 4387 +f 4448 4471 4395 +f 4426 4471 4448 +f 4440 4426 4472 +f 4451 4472 4470 +f 4460 4451 4470 +f 4391 4451 4460 +f 4464 4461 4463 +f 4468 4473 4469 +f 4468 4467 4473 +f 4467 4458 4424 +f 4413 4398 4424 +f 4421 4432 4433 +f 4392 4394 4398 +f 4394 4393 4449 +f 4449 4393 4409 +f 4421 4412 4423 +f 4407 4408 4409 +f 4454 4443 4408 +f 4412 4444 4423 +f 4428 4466 4443 +f 4444 4464 4463 +f 4427 4447 4466 +f 4464 4462 4461 +f 4439 4452 4447 +f 4462 4390 4459 +f 4439 4457 4452 +f 4457 4436 4388 +f 4437 4389 4388 +f 4390 4391 4460 +f 4441 4405 4389 +f 4391 4406 4451 +f 4445 4414 4405 +f 4415 4420 4406 +f 4445 4422 4414 +f 4401 4400 4415 +f 4411 4396 4422 +f 4403 4442 4401 +f 4403 4397 4404 +f 4411 4382 4396 +f 4397 4384 4465 +f 4384 4383 4456 +f 4411 4383 4382 + + +o Object.15 +v -134.485016 108.676865 -0.500629 +v -132.832306 110.646484 -0.500629 +v -132.485016 110.676865 -0.500629 +v 134.514999 108.676865 -0.500629 +v 132.514999 110.676865 -0.500629 +v 132.862305 110.646484 -0.500629 +v -134.454590 109.024162 -0.500629 +v -134.364410 109.360909 -0.500629 +v -134.217010 109.676865 -0.500629 +v -133.169006 110.556252 -0.500629 +v 133.199036 110.556252 -0.500629 +v -133.485016 110.408913 -0.500629 +v 133.514999 110.408913 -0.500629 +v -134.017090 109.962440 -0.500629 +v -133.770599 110.208954 -0.500629 +v 133.800568 110.208954 -0.500629 +v 134.047089 109.962440 -0.500629 +v 134.247040 109.676865 -0.500629 +v 134.484619 109.024162 -0.500629 +v 134.394379 109.360909 -0.500629 +v -134.485016 -106.322884 -0.500377 +v 134.514999 -106.322884 -0.500377 +v -134.364410 -107.006889 -0.500370 +v -134.454590 -106.670189 -0.500370 +v 132.514999 -108.322868 -0.500370 +v -132.485016 -108.322868 -0.500370 +v -132.832306 -108.292473 -0.500370 +v -133.169006 -108.202278 -0.500370 +v -133.485016 -108.054970 -0.500370 +v -133.770599 -107.854973 -0.500370 +v -134.017090 -107.608467 -0.500370 +v -134.217010 -107.322884 -0.500370 +v 134.394379 -107.006889 -0.500370 +v 134.247040 -107.322884 -0.500370 +v 134.484619 -106.670189 -0.500370 +v 134.047089 -107.608467 -0.500370 +v 133.800568 -107.854973 -0.500370 +v 133.514999 -108.054970 -0.500370 +v 133.199036 -108.202278 -0.500370 +v 132.862305 -108.292473 -0.500370 +v -132.485016 110.676865 -0.000629 +v 132.514999 110.676865 -0.000629 +v 132.862305 110.646484 -0.000629 +v 133.199036 110.556252 -0.000629 +v 133.514999 110.408920 -0.000629 +v 133.800568 110.208954 -0.000629 +v 134.047089 109.962440 -0.000629 +v 134.247040 109.676865 -0.000629 +v 134.394379 109.360909 -0.000629 +v 134.484619 109.024162 -0.000629 +v 134.514999 108.676865 -0.000629 +v 134.514999 -106.322884 -0.000377 +v 134.484619 -106.670189 -0.000370 +v 134.394379 -107.006889 -0.000370 +v 134.247040 -107.322884 -0.000370 +v 134.047089 -107.608467 -0.000370 +v 133.800568 -107.854973 -0.000370 +v 133.514999 -108.054970 -0.000370 +v 133.199036 -108.202278 -0.000370 +v 132.862305 -108.292473 -0.000370 +v 132.514999 -108.322868 -0.000370 +v -132.485016 -108.322868 -0.000370 +v -134.485016 -106.322884 -0.000377 +v -134.454590 -106.670189 -0.000370 +v -134.364410 -107.006889 -0.000370 +v -134.217010 -107.322884 -0.000370 +v -134.017090 -107.608467 -0.000370 +v -133.770599 -107.854973 -0.000370 +v -133.485016 -108.054970 -0.000370 +v -133.169006 -108.202278 -0.000370 +v -132.832306 -108.292473 -0.000370 +v -134.485016 108.676865 -0.000629 +v -132.832306 110.646484 -0.000629 +v -133.169006 110.556252 -0.000629 +v -133.485016 110.408920 -0.000629 +v -133.770599 110.208954 -0.000629 +v -134.017090 109.962440 -0.000629 +v -134.217010 109.676865 -0.000629 +v -134.364410 109.360909 -0.000629 +v -134.454590 109.024162 -0.000629 + +f 4474 4475 4476 +f 4477 4474 4476 +f 4478 4477 4476 +f 4514 4478 4476 +f 4514 4515 4478 +f 4515 4516 4478 +f 4516 4479 4478 +f 4516 4517 4479 +f 4517 4484 4479 +f 4484 4477 4479 +f 4486 4477 4484 +f 4518 4486 4484 +f 4518 4519 4486 +f 4519 4489 4486 +f 4519 4520 4489 +f 4520 4490 4489 +f 4490 4477 4489 +f 4491 4477 4490 +f 4521 4491 4490 +f 4521 4522 4491 +f 4522 4493 4491 +f 4493 4492 4491 +f 4523 4492 4493 +f 4523 4524 4492 +f 4524 4477 4492 +f 4524 4495 4477 +f 4495 4494 4477 +f 4495 4498 4494 +f 4498 4499 4494 +f 4499 4500 4494 +f 4500 4501 4494 +f 4501 4502 4494 +f 4502 4503 4494 +f 4503 4504 4494 +f 4504 4505 4494 +f 4505 4496 4494 +f 4496 4497 4494 +f 4497 4536 4494 +f 4494 4536 4474 +f 4536 4545 4474 +f 4545 4553 4474 +f 4474 4553 4480 +f 4553 4552 4480 +f 4480 4552 4481 +f 4480 4481 4475 +f 4481 4482 4475 +f 4482 4483 4475 +f 4483 4546 4475 +f 4546 4514 4475 +f 4546 4545 4514 +f 4547 4545 4546 +f 4548 4545 4547 +f 4548 4547 4485 +f 4488 4548 4485 +f 4487 4488 4485 +f 4482 4487 4485 +f 4482 4550 4487 +f 4550 4549 4487 +f 4550 4545 4549 +f 4551 4545 4550 +f 4552 4545 4551 +f 4551 4550 4482 +f 4487 4549 4488 +f 4549 4548 4488 +f 4485 4547 4483 +f 4549 4545 4548 +f 4547 4546 4483 +f 4482 4485 4483 +f 4481 4551 4482 +f 4552 4551 4481 +f 4553 4545 4552 +f 4536 4525 4545 +f 4525 4524 4545 +f 4545 4524 4515 +f 4535 4525 4536 +f 4537 4535 4536 +f 4538 4535 4537 +f 4538 4537 4496 +f 4539 4535 4538 +f 4539 4538 4505 +f 4540 4535 4539 +f 4540 4539 4504 +f 4541 4535 4540 +f 4541 4540 4503 +f 4542 4535 4541 +f 4542 4541 4502 +f 4543 4535 4542 +f 4543 4542 4501 +f 4544 4535 4543 +f 4544 4543 4500 +f 4535 4544 4499 +f 4534 4535 4499 +f 4535 4534 4525 +f 4534 4533 4525 +f 4533 4532 4525 +f 4532 4531 4525 +f 4531 4530 4525 +f 4530 4529 4525 +f 4529 4528 4525 +f 4528 4527 4525 +f 4527 4526 4525 +f 4525 4526 4495 +f 4526 4508 4495 +f 4508 4506 4495 +f 4506 4507 4495 +f 4507 4509 4495 +f 4509 4510 4495 +f 4510 4511 4495 +f 4511 4512 4495 +f 4512 4513 4495 +f 4533 4513 4512 +f 4532 4512 4511 +f 4531 4511 4510 +f 4530 4510 4509 +f 4529 4509 4507 +f 4528 4507 4506 +f 4527 4506 4508 +f 4526 4527 4508 +f 4527 4528 4506 +f 4528 4529 4507 +f 4529 4530 4509 +f 4530 4531 4510 +f 4531 4532 4511 +f 4532 4533 4512 +f 4533 4534 4513 +f 4534 4498 4513 +f 4537 4536 4497 +f 4496 4537 4497 +f 4505 4538 4496 +f 4504 4539 4505 +f 4503 4540 4504 +f 4502 4541 4503 +f 4501 4542 4502 +f 4500 4543 4501 +f 4499 4544 4500 +f 4498 4534 4499 +f 4513 4498 4495 +f 4524 4525 4495 +f 4524 4523 4521 +f 4524 4521 4520 +f 4522 4523 4493 +f 4523 4522 4521 +f 4492 4477 4491 +f 4520 4521 4490 +f 4524 4520 4519 +f 4524 4519 4518 +f 4524 4518 4517 +f 4489 4477 4486 +f 4517 4518 4484 +f 4524 4517 4516 +f 4524 4516 4515 +f 4545 4515 4514 +f 4479 4477 4478 +f 4477 4494 4474 +f 4475 4514 4476 +f 4474 4480 4475 + + +o Object.16 +v -145.570892 62.890945 -1.000576 +v -145.570892 62.890949 -0.500576 +v -146.088806 62.936268 -1.000576 +v -146.088806 62.936272 -0.500576 +v -146.606689 62.890945 -1.000576 +v -146.606689 62.890949 -0.500576 +v -147.108887 62.756390 -1.000576 +v -145.068695 62.756390 -1.000576 +v -145.068695 62.756393 -0.500576 +v -147.108887 62.756393 -0.500576 +v -147.580109 62.536682 -1.000576 +v -144.597504 62.536682 -1.000576 +v -144.597504 62.536686 -0.500576 +v -147.580109 62.536686 -0.500576 +v -148.005890 62.238480 -1.000576 +v -144.171692 62.238480 -1.000576 +v -144.171692 62.238483 -0.500576 +v -148.005890 62.238483 -0.500576 +v -148.373596 61.870861 -1.000576 +v -143.804016 61.870861 -1.000576 +v -143.804016 61.870865 -0.500576 +v -148.373596 61.870865 -0.500576 +v -148.671814 61.444992 -1.000576 +v -143.505890 61.444992 -1.000576 +v -143.505890 61.444996 -0.500576 +v -148.671814 61.444996 -0.500576 +v -148.891510 60.973812 -1.000576 +v -143.286102 60.973812 -1.000576 +v -143.286102 60.973816 -0.500576 +v -148.891510 60.973816 -0.500576 +v -149.026001 60.471630 -1.000576 +v -143.151611 60.471630 -1.000576 +v -143.151611 60.471634 -0.500576 +v -149.026001 60.471634 -0.500576 +v -149.071411 59.953720 -1.000576 +v -143.106293 59.953720 -1.000576 +v -143.106293 59.953724 -0.500576 +v -149.071411 59.953724 -0.500576 +v -146.088806 -0.063713 -0.500499 +v -146.606689 -0.109009 -1.000499 +v -146.088806 -0.063713 -1.000499 +v -146.606689 -0.109009 -0.500499 +v -147.108887 -0.243507 -1.000499 +v -147.108887 -0.243507 -0.500499 +v -147.580109 -0.463211 -1.000499 +v -147.580109 -0.463211 -0.500499 +v -148.005890 -0.761414 -1.000499 +v -148.005890 -0.761414 -0.500499 +v -148.373596 -1.129112 -1.000499 +v -148.373596 -1.129112 -0.500499 +v -148.671814 -1.554909 -1.000499 +v -148.671814 -1.554909 -0.500499 +v -148.891510 -2.026108 -1.000499 +v -148.891510 -2.026108 -0.500499 +v -149.026001 -2.528313 -1.000499 +v -149.026001 -2.528313 -0.500499 +v -149.071411 -3.046204 -1.000499 +v -149.071411 -3.046204 -0.500499 +v -149.026001 -3.564102 -1.000499 +v -149.026001 -3.564102 -0.500499 +v -148.891510 -4.066299 -1.000499 +v -148.891510 -4.066299 -0.500499 +v -148.671814 -4.537506 -1.000492 +v -148.671814 -4.537506 -0.500492 +v -148.373596 -4.963303 -1.000492 +v -148.373596 -4.963303 -0.500492 +v -148.005890 -5.331001 -1.000492 +v -148.005890 -5.331001 -0.500492 +v -147.580109 -5.629204 -1.000492 +v -147.580109 -5.629204 -0.500492 +v -147.108887 -5.848900 -1.000492 +v -147.108887 -5.848900 -0.500492 +v -146.606689 -5.983406 -1.000492 +v -146.606689 -5.983406 -0.500492 +v -146.088806 -6.028702 -1.000492 +v -146.088806 -6.028702 -0.500492 +v 146.606689 -63.108940 -1.000423 +v 146.606689 -63.108940 -0.500423 +v 146.088806 -63.063637 -1.000423 +v 146.088806 -63.063637 -0.500423 +v 145.570892 -63.108940 -1.000423 +v 145.570892 -63.108940 -0.500423 +v 145.068695 -63.243431 -1.000423 +v 147.108902 -63.243431 -1.000423 +v 147.108902 -63.243431 -0.500423 +v 145.068695 -63.243431 -0.500423 +v 144.597504 -63.463127 -1.000423 +v 147.580109 -63.463127 -1.000423 +v 147.580109 -63.463127 -0.500423 +v 144.597504 -63.463127 -0.500423 +v 144.171692 -63.761330 -1.000423 +v 148.005997 -63.761330 -1.000423 +v 148.005997 -63.761330 -0.500423 +v 144.171692 -63.761330 -0.500423 +v 143.804001 -64.129036 -1.000423 +v 148.373596 -64.129036 -1.000423 +v 148.373596 -64.129036 -0.500423 +v 143.804001 -64.129036 -0.500423 +v 143.505798 -64.554832 -1.000423 +v 148.671799 -64.554832 -1.000423 +v 148.671799 -64.554832 -0.500423 +v 143.505798 -64.554832 -0.500423 +v 143.286133 -65.026039 -1.000423 +v 148.891495 -65.026039 -1.000423 +v 148.891495 -65.026039 -0.500423 +v 143.286133 -65.026039 -0.500423 +v 143.151581 -65.528236 -1.000423 +v 149.026001 -65.528236 -1.000423 +v 149.026001 -65.528236 -0.500423 +v 143.151581 -65.528236 -0.500423 +v 143.106262 -66.046135 -1.000423 +v 149.071396 -66.046135 -1.000423 +v 149.071396 -66.046135 -0.500423 +v 143.106262 -66.046135 -0.500423 +v 146.606689 62.890945 -1.000576 +v 146.606689 62.890949 -0.500576 +v 146.088806 62.936268 -1.000576 +v 146.088806 62.936272 -0.500576 +v 145.570892 62.890945 -1.000576 +v 145.570892 62.890949 -0.500576 +v 145.068695 62.756390 -1.000576 +v 147.108902 62.756390 -1.000576 +v 147.108902 62.756393 -0.500576 +v 145.068695 62.756393 -0.500576 +v 144.597504 62.536682 -1.000576 +v 147.580109 62.536682 -1.000576 +v 147.580109 62.536686 -0.500576 +v 144.597504 62.536686 -0.500576 +v 144.171692 62.238480 -1.000576 +v 148.005997 62.238480 -1.000576 +v 148.005997 62.238483 -0.500576 +v 144.171692 62.238483 -0.500576 +v 143.804001 61.870861 -1.000576 +v 148.373596 61.870861 -1.000576 +v 148.373596 61.870865 -0.500576 +v 143.804001 61.870865 -0.500576 +v 143.505798 61.444992 -1.000576 +v 148.671799 61.444992 -1.000576 +v 148.671799 61.444996 -0.500576 +v 143.505798 61.444996 -0.500576 +v 143.286133 60.973812 -1.000576 +v 148.891495 60.973812 -1.000576 +v 148.891495 60.973816 -0.500576 +v 143.286133 60.973816 -0.500576 +v 143.151581 60.471630 -1.000576 +v 149.026001 60.471630 -1.000576 +v 149.026001 60.471634 -0.500576 +v 143.151581 60.471634 -0.500576 +v 143.106262 59.953720 -1.000576 +v 149.071396 59.953720 -1.000576 +v 149.071396 59.953724 -0.500576 +v 143.106262 59.953724 -0.500576 +v 146.606689 -0.109009 -1.000499 +v 146.606689 -0.109009 -0.500499 +v 146.088806 -0.063713 -1.000499 +v 146.088806 -0.063713 -0.500499 +v 145.570892 -0.109009 -1.000499 +v 145.570892 -0.109009 -0.500499 +v 145.068695 -0.243507 -1.000499 +v 147.108902 -0.243507 -1.000499 +v 147.108902 -0.243507 -0.500499 +v 145.068695 -0.243507 -0.500499 +v 144.597504 -0.463211 -1.000499 +v 147.580109 -0.463211 -1.000499 +v 147.580109 -0.463211 -0.500499 +v 144.597504 -0.463211 -0.500499 +v 144.171692 -0.761414 -1.000499 +v 148.005997 -0.761414 -1.000499 +v 148.005997 -0.761414 -0.500499 +v 144.171692 -0.761414 -0.500499 +v 143.804001 -1.129112 -1.000499 +v 148.373596 -1.129112 -1.000499 +v 148.373596 -1.129112 -0.500499 +v 143.804001 -1.129112 -0.500499 +v 143.505798 -1.554909 -1.000499 +v 148.671799 -1.554909 -1.000499 +v 148.671799 -1.554909 -0.500499 +v 143.505798 -1.554909 -0.500499 +v 143.286133 -2.026108 -1.000499 +v 148.891495 -2.026108 -1.000499 +v 148.891495 -2.026108 -0.500499 +v 143.286133 -2.026108 -0.500499 +v 143.151581 -2.528313 -1.000499 +v 149.026001 -2.528313 -1.000499 +v 149.026001 -2.528313 -0.500499 +v 143.151581 -2.528313 -0.500499 +v 143.106262 -3.046204 -1.000499 +v 149.071396 -3.046204 -1.000499 +v 149.071396 -3.046204 -0.500499 +v 143.106262 -3.046204 -0.500499 +v -145.570892 -63.108940 -1.000423 +v -145.570892 -63.108940 -0.500423 +v -146.088806 -63.063637 -1.000423 +v -146.088806 -63.063637 -0.500423 +v -146.606689 -63.108940 -1.000423 +v -146.606689 -63.108940 -0.500423 +v -147.108887 -63.243431 -1.000423 +v -145.068695 -63.243431 -1.000423 +v -145.068695 -63.243431 -0.500423 +v -147.108887 -63.243431 -0.500423 +v -147.580109 -63.463127 -1.000423 +v -144.597504 -63.463127 -1.000423 +v -144.597504 -63.463127 -0.500423 +v -147.580109 -63.463127 -0.500423 +v -148.005890 -63.761330 -1.000423 +v -144.171692 -63.761330 -1.000423 +v -144.171692 -63.761330 -0.500423 +v -148.005890 -63.761330 -0.500423 +v -148.373596 -64.129036 -1.000423 +v -143.804016 -64.129036 -1.000423 +v -143.804016 -64.129036 -0.500423 +v -148.373596 -64.129036 -0.500423 +v -148.671814 -64.554832 -1.000423 +v -143.505890 -64.554832 -1.000423 +v -143.505890 -64.554832 -0.500423 +v -148.671814 -64.554832 -0.500423 +v -148.891510 -65.026039 -1.000423 +v -143.286102 -65.026039 -1.000423 +v -143.286102 -65.026039 -0.500423 +v -148.891510 -65.026039 -0.500423 +v -149.026001 -65.528236 -1.000423 +v -143.151611 -65.528236 -1.000423 +v -143.151611 -65.528236 -0.500423 +v -149.026001 -65.528236 -0.500423 +v -149.071411 -66.046135 -1.000423 +v -143.106293 -66.046135 -1.000423 +v -143.106293 -66.046135 -0.500423 +v -149.071411 -66.046135 -0.500423 +v 0.453159 -117.426369 -0.500362 +v 0.000000 -117.387474 -0.500362 +v 0.000000 -117.387474 -1.000362 +v 0.453159 -117.426369 -1.000362 +v 0.893028 -117.542168 -0.500362 +v 0.893028 -117.542168 -1.000362 +v 1.306690 -117.731270 -0.500362 +v 1.306690 -117.731270 -1.000362 +v 1.681999 -117.988167 -0.500362 +v 1.681999 -117.988167 -1.000362 +v 2.007938 -118.305473 -0.500362 +v 2.007938 -118.305473 -1.000362 +v 2.274960 -118.673668 -0.500362 +v 2.274960 -118.673668 -1.000362 +v 2.475208 -119.082069 -0.500362 +v 2.475208 -119.082069 -1.000362 +v 2.602810 -119.518578 -0.500354 +v 2.602810 -119.518578 -1.000354 +v 2.654030 -119.970573 -0.500354 +v 2.654030 -119.970573 -1.000354 +v 2.627357 -120.424568 -0.500354 +v 2.627357 -120.424568 -1.000354 +v 2.523567 -120.867455 -0.500354 +v 2.523567 -120.867455 -1.000354 +v -108.280006 113.448616 -0.500637 +v -111.521309 116.042473 -0.500637 +v -138.588806 116.042473 -0.500637 +v -143.588806 111.042473 -0.500629 +v -143.512787 111.910713 -0.500637 +v -139.457092 115.966507 -0.500637 +v -108.459007 113.601486 -0.500637 +v -111.286705 116.024002 -0.500637 +v 143.588806 71.953712 -0.500583 +v 143.588806 111.042473 -0.500629 +v 111.521317 116.042473 -0.500637 +v 111.286667 116.024002 -0.500637 +v 138.588806 116.042473 -0.500637 +v 139.457062 115.966507 -0.500637 +v -111.057808 115.969048 -0.500637 +v 111.057785 115.969048 -0.500637 +v -110.840309 115.878983 -0.500637 +v 110.840332 115.878983 -0.500637 +v -140.298889 115.740929 -0.500637 +v 143.512802 111.910713 -0.500637 +v 140.298920 115.740929 -0.500637 +v -110.639702 115.755997 -0.500637 +v 110.639641 115.755997 -0.500637 +v -110.460701 115.603134 -0.500637 +v 110.460655 115.603134 -0.500637 +v -143.287292 112.752571 -0.500637 +v -141.088806 115.372604 -0.500637 +v -141.802704 114.872688 -0.500637 +v -142.419006 114.256409 -0.500637 +v -142.918915 113.542473 -0.500637 +v 141.088821 115.372604 -0.500637 +v 108.459000 113.601486 -0.500637 +v 141.802750 114.872688 -0.500637 +v 142.419037 114.256409 -0.500637 +v 143.287262 112.752571 -0.500637 +v 142.918945 113.542473 -0.500637 +v 108.280022 113.448616 -0.500637 +v -108.079308 113.325630 -0.500637 +v 108.079330 113.325630 -0.500637 +v -143.588806 71.953712 -0.500583 +v -107.861900 113.235550 -0.500637 +v 72.880630 28.453758 -0.500537 +v 107.861870 113.235550 -0.500637 +v -107.633003 113.180603 -0.500637 +v 107.632996 113.180603 -0.500637 +v -72.880600 28.453758 -0.500537 +v -107.398399 113.162140 -0.500637 +v 107.398346 113.162140 -0.500637 +v 16.176128 -122.951759 -1.000354 +v 16.077459 -122.959953 -1.000354 +v 16.272108 -122.927452 -1.000354 +v -23.103874 -122.951759 -1.000354 +v -23.202530 -122.959953 -1.000354 +v -23.007889 -122.927452 -1.000354 +v -147.588806 71.953712 -0.500583 +v -148.136292 71.910622 -0.500583 +v 147.588806 71.953712 -0.500583 +v 148.136292 71.910622 -0.500583 +v -148.670410 71.782410 -0.500583 +v 148.670395 71.782410 -0.500583 +v -149.177795 71.572235 -0.500583 +v 149.177795 71.572235 -0.500583 +v -149.646088 71.285271 -0.500583 +v 149.646088 71.285271 -0.500583 +v -150.063690 70.928581 -0.500583 +v 150.063690 70.928581 -0.500583 +v -150.420410 70.510963 -0.500583 +v 150.420395 70.510963 -0.500583 +v -150.080109 28.453758 -0.500537 +v -150.707306 70.042679 -0.500583 +v -151.045715 69.001236 -0.500583 +v -151.088806 68.453720 -0.500583 +v 150.707306 70.042679 -0.500583 +v -150.917511 69.535271 -0.500583 +v 150.917496 69.535271 -0.500583 +v 151.045700 69.001236 -0.500583 +v 151.088806 68.453720 -0.500583 +v 16.362789 -122.887764 -1.000354 +v 151.088806 28.453758 -0.500537 +v -149.026001 59.435814 -0.500568 +v -143.151611 59.435814 -0.500568 +v 143.151581 59.435814 -0.500568 +v 149.026001 59.435814 -0.500568 +v -148.891510 58.933640 -0.500568 +v -143.286102 58.933640 -0.500568 +v 143.286133 58.933640 -0.500568 +v 148.891495 58.933640 -0.500568 +v -148.671814 58.462460 -0.500568 +v -143.505890 58.462460 -0.500568 +v 143.505798 58.462460 -0.500568 +v 148.671799 58.462460 -0.500568 +v -148.373596 58.036587 -0.500568 +v -143.804016 58.036587 -0.500568 +v 143.804001 58.036587 -0.500568 +v 148.373596 58.036587 -0.500568 +v -148.005890 57.668968 -0.500568 +v -144.171692 57.668968 -0.500568 +v 144.171692 57.668968 -0.500568 +v 148.005997 57.668968 -0.500568 +v -147.580109 57.370770 -0.500568 +v -144.597504 57.370770 -0.500568 +v 144.597504 57.370770 -0.500568 +v 147.580109 57.370770 -0.500568 +v -147.108887 57.151047 -0.500568 +v -145.068695 57.151047 -0.500568 +v 145.068695 57.151047 -0.500568 +v 147.108902 57.151047 -0.500568 +v -146.606689 57.016499 -0.500568 +v -145.570892 57.016499 -0.500568 +v 145.570892 57.016499 -0.500568 +v 146.606689 57.016499 -0.500568 +v -146.088806 56.971188 -0.500568 +v 146.088806 56.971188 -0.500568 +v -150.080109 -34.546165 -0.500461 +v -151.088806 -74.546120 -0.500408 +v -145.570892 -0.109009 -0.500499 +v -145.068695 -0.243507 -0.500499 +v -143.286102 -2.026108 -0.500499 +v -143.151611 -2.528313 -0.500499 +v -72.880600 -34.546165 -0.500461 +v -144.597504 -0.463211 -0.500499 +v -144.171692 -0.761414 -0.500499 +v -143.804016 -1.129112 -0.500499 +v -143.505890 -1.554909 -0.500499 +v 72.880630 -34.546165 -0.500461 +v 151.088806 -34.546165 -0.500461 +v -143.106293 -3.046204 -0.500499 +v -143.151611 -3.564102 -0.500499 +v 143.151581 -3.564102 -0.500499 +v 149.026001 -3.564102 -0.500499 +v -143.286102 -4.066299 -0.500499 +v 143.286133 -4.066299 -0.500499 +v 148.891495 -4.066299 -0.500499 +v -143.505890 -4.537506 -0.500492 +v 143.505798 -4.537506 -0.500492 +v 148.671799 -4.537506 -0.500492 +v -143.804016 -4.963303 -0.500492 +v 143.804001 -4.963303 -0.500492 +v 148.373596 -4.963303 -0.500492 +v -144.171692 -5.331001 -0.500492 +v 144.171692 -5.331001 -0.500492 +v 148.005997 -5.331001 -0.500492 +v -144.597504 -5.629204 -0.500492 +v 144.597504 -5.629204 -0.500492 +v 147.580109 -5.629204 -0.500492 +v -145.068695 -5.848900 -0.500492 +v 145.068695 -5.848900 -0.500492 +v 147.108902 -5.848900 -0.500492 +v -145.570892 -5.983406 -0.500492 +v 145.570892 -5.983406 -0.500492 +v 146.606689 -5.983406 -0.500492 +v 146.088806 -6.028702 -0.500492 +v -16.176132 -122.951759 -1.000354 +v -16.272110 -122.927452 -1.000354 +v -16.362801 -122.887764 -1.000354 +v -150.420410 -76.603416 -0.500408 +v -72.880600 -93.208107 -0.500392 +v 72.880630 -93.208107 -0.500392 +v 151.088806 -74.546120 -0.500408 +v -149.026001 -66.564034 -0.500423 +v -143.151611 -66.564034 -0.500423 +v 143.151581 -66.564034 -0.500423 +v 149.026001 -66.564034 -0.500423 +v -148.891510 -67.066216 -0.500423 +v -143.286102 -67.066216 -0.500423 +v 143.286133 -67.066216 -0.500423 +v 148.891495 -67.066216 -0.500423 +v -148.671814 -67.537422 -0.500423 +v -143.505890 -67.537422 -0.500423 +v 143.505798 -67.537422 -0.500423 +v 148.671799 -67.537422 -0.500423 +v -148.373596 -67.963219 -0.500423 +v -143.804016 -67.963219 -0.500423 +v 143.804001 -67.963219 -0.500423 +v 148.373596 -67.963219 -0.500423 +v -148.005890 -68.330925 -0.500415 +v -144.171692 -68.330925 -0.500415 +v 144.171692 -68.330925 -0.500415 +v 148.005997 -68.330925 -0.500415 +v -147.580109 -68.629112 -0.500415 +v -144.597504 -68.629112 -0.500415 +v 144.597504 -68.629112 -0.500415 +v 147.580109 -68.629112 -0.500415 +v -147.108887 -68.848824 -0.500415 +v -145.068695 -68.848824 -0.500415 +v 143.588806 -78.046120 -0.500408 +v 145.068695 -68.848824 -0.500415 +v 151.045700 -75.093620 -0.500408 +v 147.108902 -68.848824 -0.500415 +v -150.063690 -77.021019 -0.500408 +v -146.606689 -68.983315 -0.500415 +v -145.570892 -68.983315 -0.500415 +v 145.570892 -68.983315 -0.500415 +v 150.420395 -76.603416 -0.500408 +v 150.707306 -76.135124 -0.500408 +v 150.917496 -75.627724 -0.500408 +v 146.606689 -68.983315 -0.500415 +v 149.646088 -77.377724 -0.500408 +v 150.063690 -77.021019 -0.500408 +v -147.588806 -78.046120 -0.500408 +v -146.088806 -69.028618 -0.500415 +v -149.177795 -77.664619 -0.500408 +v -148.670410 -77.874825 -0.500408 +v -148.136292 -78.003014 -0.500408 +v -149.646088 -77.377724 -0.500408 +v 146.088806 -69.028618 -0.500415 +v 147.588806 -78.046120 -0.500408 +v 148.136292 -78.003014 -0.500408 +v 148.670395 -77.874825 -0.500408 +v 149.177795 -77.664619 -0.500408 +v -143.588806 -78.046120 -0.500408 +v -151.045715 -75.093620 -0.500408 +v -150.707306 -76.135124 -0.500408 +v -150.917511 -75.627724 -0.500408 +v -143.588806 -93.208107 -0.500392 +v 143.588806 -93.208107 -0.500392 +v -128.915192 -109.782967 -0.500370 +v -128.684906 -109.727272 -0.500370 +v -129.133911 -109.874275 -0.500370 +v -143.588806 -109.134880 -0.500370 +v -130.812408 -112.582069 -0.500370 +v -129.790192 -110.537773 -0.500370 +v -129.667816 -110.334770 -0.500370 +v -129.515015 -110.153679 -0.500370 +v -129.335510 -109.998878 -0.500370 +v -128.448608 -109.708580 -0.500370 +v -16.077473 -122.959953 -1.000354 +v -91.145195 -109.786369 -0.500370 +v -90.922295 -109.881767 -0.500370 +v -90.717705 -110.011879 -0.500370 +v -90.536797 -110.173180 -0.500370 +v -90.384209 -110.361473 -0.500370 +v -90.263908 -110.571877 -0.500370 +v -89.166100 -112.913872 -0.500362 +v -91.622108 -109.708580 -0.500370 +v -91.380501 -109.728172 -0.500370 +v -87.305199 -114.320076 -0.500362 +v -86.902504 -114.352776 -0.500362 +v -88.965599 -113.264580 -0.500362 +v -88.711296 -113.578468 -0.500362 +v -88.409706 -113.847374 -0.500362 +v -88.068703 -114.064079 -0.500362 +v -87.697304 -114.223076 -0.500362 +v 16.359869 -118.441475 -0.500362 +v 16.681858 -117.904274 -0.500362 +v 17.090958 -117.429970 -0.500362 +v 30.207767 -111.524071 -0.500370 +v 30.675508 -111.309975 -0.500370 +v 17.575108 -117.032677 -0.500362 +v 18.120058 -116.723976 -0.500362 +v -69.674500 -112.573769 -0.500370 +v -69.473999 -112.223076 -0.500370 +v -67.410805 -111.134880 -0.500370 +v -31.685455 -111.134880 -0.500370 +v -31.172951 -111.178978 -0.500370 +v -30.675514 -111.309975 -0.500370 +v 16.134449 -119.025780 -0.500362 +v -69.219704 -111.909172 -0.500370 +v -68.918098 -111.640373 -0.500370 +v -68.577103 -111.423576 -0.500370 +v -68.205704 -111.264580 -0.500370 +v -67.813499 -111.167580 -0.500370 +v -72.097504 -114.352776 -0.500362 +v -71.694901 -114.320076 -0.500362 +v -71.302704 -114.223076 -0.500362 +v -70.931305 -114.064079 -0.500362 +v -70.590302 -113.847374 -0.500362 +v -70.288704 -113.578468 -0.500362 +v -70.034401 -113.264580 -0.500362 +v -69.833900 -112.913872 -0.500362 +v 31.172939 -111.178978 -0.500370 +v 91.380463 -109.728172 -0.500370 +v 91.622078 -109.708580 -0.500370 +v 90.263885 -110.571877 -0.500370 +v 90.384171 -110.361473 -0.500370 +v 90.536789 -110.173180 -0.500370 +v 90.717743 -110.011879 -0.500370 +v 90.922318 -109.881767 -0.500370 +v 91.145157 -109.786369 -0.500370 +v -22.917198 -122.887764 -1.000354 +v 22.834288 -122.833656 -1.000354 +v 22.604509 -122.311256 -1.000354 +v 22.620649 -122.213661 -1.000354 +v 88.017029 -114.339668 -0.500362 +v 88.173889 -114.300880 -0.500362 +v 88.322464 -114.237267 -0.500362 +v 88.458839 -114.150566 -0.500362 +v 88.579483 -114.043068 -0.500362 +v 88.681213 -113.917473 -0.500362 +v 16.675489 -122.311256 -1.000354 +v 16.659348 -122.213661 -1.000354 +v 68.682281 -111.186775 -0.500370 +v 68.830849 -111.250374 -0.500370 +v 68.967224 -111.337074 -0.500370 +v 69.087868 -111.444572 -0.500370 +v 69.189606 -111.570168 -0.500370 +v -16.675491 -122.311256 -1.000354 +v -16.659351 -122.213661 -1.000354 +v 31.685438 -111.134880 -0.500370 +v 68.525406 -111.147972 -0.500370 +v -22.604515 -122.311256 -1.000354 +v -22.620651 -122.213661 -1.000354 +v 128.448608 -109.708580 -0.500370 +v 128.684860 -109.727272 -0.500370 +v 128.915222 -109.782967 -0.500370 +v 129.133926 -109.874275 -0.500370 +v 129.335526 -109.998878 -0.500370 +v 129.514999 -110.153679 -0.500370 +v 129.667847 -110.334770 -0.500370 +v 129.790253 -110.537773 -0.500370 +v 143.588806 -109.134880 -0.500370 +v -139.588806 -113.134880 -0.500362 +v -140.283417 -113.074074 -0.500362 +v -143.528107 -109.829475 -0.500370 +v 130.894012 -112.717369 -0.500370 +v 131.549332 -113.122368 -0.500362 +v 139.588806 -113.134880 -0.500362 +v 143.528000 -109.829475 -0.500370 +v -143.347595 -110.502968 -0.500370 +v 143.347595 -110.502968 -0.500370 +v -143.052887 -111.134880 -0.500370 +v 143.052917 -111.134880 -0.500370 +v -142.159912 -112.199074 -0.500370 +v -141.588806 -112.598976 -0.500370 +v -142.653015 -111.706078 -0.500370 +v -140.956909 -112.893669 -0.500370 +v 142.652985 -111.706078 -0.500370 +v -30.207771 -111.524071 -0.500370 +v -19.326851 -116.405876 -0.500362 +v -18.709751 -116.512978 -0.500362 +v -29.783478 -111.814873 -0.500370 +v -21.704895 -117.032677 -0.500362 +v -21.159950 -116.723976 -0.500362 +v -20.570240 -116.512978 -0.500362 +v -19.953152 -116.405876 -0.500362 +v 19.953159 -116.405876 -0.500362 +v 20.570248 -116.512978 -0.500362 +v 19.326838 -116.405876 -0.500362 +v 21.159939 -116.723976 -0.500362 +v 21.704889 -117.032677 -0.500362 +v 29.783478 -111.814873 -0.500370 +v 18.709759 -116.512978 -0.500362 +v 142.159958 -112.199074 -0.500370 +v 70.318779 -113.917473 -0.500362 +v -29.415092 -112.173866 -0.500370 +v -22.189049 -117.429970 -0.500362 +v 22.189039 -117.429970 -0.500362 +v 29.415098 -112.173866 -0.500370 +v -29.113464 -112.590569 -0.500370 +v 29.113468 -112.590569 -0.500370 +v 140.956909 -112.893669 -0.500370 +v 141.588821 -112.598976 -0.500370 +v 140.283401 -113.074074 -0.500362 +v -131.549316 -113.122368 -0.500362 +v 26.973879 -122.320656 -1.000354 +v 26.041208 -122.959953 -1.000354 +v 27.021788 -122.156059 -1.000354 +v -131.395813 -113.085274 -0.500362 +v -131.249908 -113.024376 -0.500362 +v -131.115601 -112.941368 -0.500362 +v -130.995911 -112.838173 -0.500370 +v -130.894012 -112.717369 -0.500370 +v 15.996859 -120.266167 -1.000354 +v 16.012249 -119.640068 -1.000354 +v -26.675201 -122.733253 -1.000354 +v -26.797989 -122.613655 -1.000354 +v -27.021805 -122.156059 -1.000354 +v -28.887451 -113.052681 -0.500362 +v 28.887447 -113.052681 -0.500362 +v 130.995911 -112.838173 -0.500370 +v 131.115555 -112.941368 -0.500362 +v 131.249969 -113.024376 -0.500362 +v 131.395752 -113.085274 -0.500362 +v -28.743698 -113.546577 -0.500362 +v -22.598145 -117.904274 -0.500362 +v 28.743698 -113.546577 -0.500362 +v -27.021805 -122.156059 -0.500354 +v -23.267754 -119.640068 -0.500354 +v -23.145554 -119.025780 -0.500362 +v -22.920128 -118.441475 -0.500362 +v 22.598139 -117.904274 -0.500362 +v 22.920128 -118.441475 -0.500362 +v 23.145548 -119.025780 -0.500362 +v 27.021788 -122.156059 -0.500354 +v -26.533775 -122.830254 -1.000354 +v -26.377861 -122.901558 -1.000354 +v 70.982971 -114.339668 -0.500362 +v 70.420517 -114.043068 -0.500362 +v 70.541161 -114.150566 -0.500362 +v 70.826096 -114.300880 -0.500362 +v 70.677536 -114.237267 -0.500362 +v -18.120052 -116.723976 -0.500362 +v -17.575111 -117.032677 -0.500362 +v -17.090961 -117.429970 -0.500362 +v -16.681862 -117.904274 -0.500362 +v -16.359871 -118.441475 -0.500362 +v -0.453171 -117.426369 -0.500362 +v -16.134453 -119.025780 -0.500362 +v -0.893032 -117.542168 -0.500362 +v -1.306690 -117.731270 -0.500362 +v -1.682003 -117.988167 -0.500362 +v 16.012249 -119.640068 -0.500354 +v -16.012253 -119.640068 -0.500354 +v -2.007942 -118.305473 -0.500362 +v -2.274963 -118.673668 -0.500362 +v -2.475201 -119.082069 -0.500362 +v 23.267748 -119.640068 -0.500354 +v -2.602810 -119.518578 -0.500354 +v -2.654030 -119.970573 -0.500354 +v -23.283142 -120.266167 -0.500354 +v -15.996861 -120.266167 -0.500354 +v -2.627350 -120.424568 -0.500354 +v 15.996859 -120.266167 -0.500354 +v 23.283138 -120.266167 -0.500354 +v -23.191254 -120.885658 -0.500354 +v -16.088741 -120.885658 -0.500354 +v -2.523571 -120.867455 -0.500354 +v 16.088739 -120.885658 -0.500354 +v 23.191259 -120.885658 -0.500354 +v 16.627369 -122.119957 -0.500354 +v -16.285191 -121.480354 -0.500354 +v -16.627373 -122.119957 -0.500354 +v 16.285189 -121.480354 -0.500354 +v -22.994812 -121.480354 -0.500354 +v 22.994808 -121.480354 -0.500354 +v -22.620651 -122.213661 -0.500354 +v 22.652628 -122.119957 -0.500354 +v -26.212044 -122.945259 -0.500354 +v -23.202530 -122.959953 -0.500354 +v 16.445709 -122.833656 -1.000354 +v -16.675343 -122.410255 -1.000354 +v -26.898544 -122.474754 -1.000354 +v -16.176132 -122.951759 -0.500354 +v 16.077459 -122.959953 -0.500354 +v -16.445702 -122.833656 -1.000354 +v 23.103868 -122.951759 -0.500354 +v -22.834305 -122.833656 -1.000354 +v -26.973885 -122.320656 -1.000354 +v -16.659351 -122.213661 -0.500354 +v -16.445702 -122.833656 -0.500354 +v -16.362801 -122.887764 -0.500354 +v -16.272110 -122.927452 -0.500354 +v 16.659348 -122.213661 -0.500354 +v 22.620649 -122.213661 -0.500354 +v -26.973885 -122.320656 -0.500354 +v -26.212044 -122.945259 -1.000354 +v 26.212048 -122.945259 -0.500354 +v 26.377859 -122.901558 -0.500354 +v 26.533768 -122.830254 -0.500354 +v 26.675198 -122.733253 -0.500354 +v 26.797998 -122.613655 -0.500354 +v 26.898539 -122.474754 -0.500354 +v 26.973879 -122.320656 -0.500354 +v -22.604515 -122.311256 -0.500354 +v -16.675491 -122.311256 -0.500354 +v -16.579472 -122.688560 -0.500354 +v -16.518593 -122.766655 -0.500354 +v 16.675489 -122.311256 -0.500354 +v 22.604509 -122.311256 -0.500354 +v -22.604652 -122.410255 -0.500354 +v -16.675343 -122.410255 -0.500354 +v 16.675348 -122.410255 -0.500354 +v 22.604649 -122.410255 -0.500354 +v -26.898544 -122.474754 -0.500354 +v -22.621078 -122.507957 -0.500354 +v -16.658932 -122.507957 -0.500354 +v 16.658928 -122.507957 -0.500354 +v 22.621069 -122.507957 -0.500354 +v -26.797989 -122.613655 -0.500354 +v -22.653328 -122.601555 -0.500354 +v -16.626671 -122.601555 -0.500354 +v 16.626669 -122.601555 -0.500354 +v 22.653328 -122.601555 -0.500354 +v 22.700529 -122.688560 -0.500354 +v 22.761408 -122.766655 -0.500354 +v 22.834288 -122.833656 -0.500354 +v 22.917208 -122.887764 -0.500354 +v 23.007889 -122.927452 -0.500354 +v -22.700539 -122.688560 -0.500354 +v 16.579468 -122.688560 -0.500354 +v -26.377861 -122.901558 -0.500354 +v -26.675201 -122.733253 -0.500354 +v -23.103874 -122.951759 -0.500354 +v -22.761398 -122.766655 -0.500354 +v 16.176128 -122.951759 -0.500354 +v 16.272108 -122.927452 -0.500354 +v 16.518589 -122.766655 -0.500354 +v -26.533775 -122.830254 -0.500354 +v -22.917198 -122.887764 -0.500354 +v -22.834305 -122.833656 -0.500354 +v -23.007889 -122.927452 -0.500354 +v 16.445709 -122.833656 -0.500354 +v 16.362789 -122.887764 -0.500354 +v -149.026001 59.435810 -1.000568 +v -143.151611 59.435810 -1.000568 +v -148.891510 58.933636 -1.000568 +v -143.286102 58.933636 -1.000568 +v -148.671814 58.462456 -1.000568 +v -143.505890 58.462456 -1.000568 +v -148.373596 58.036583 -1.000568 +v -143.804016 58.036583 -1.000568 +v -148.005890 57.668964 -1.000568 +v -144.171692 57.668964 -1.000568 +v -147.580109 57.370766 -1.000568 +v -144.597504 57.370766 -1.000568 +v -147.108887 57.151043 -1.000568 +v -145.068695 57.151043 -1.000568 +v -146.606689 57.016495 -1.000568 +v -145.570892 57.016495 -1.000568 +v -146.088806 56.971184 -1.000568 +v -145.570892 -0.109009 -1.000499 +v -145.068695 -0.243507 -1.000499 +v -144.597504 -0.463211 -1.000499 +v -144.171692 -0.761414 -1.000499 +v -143.804016 -1.129112 -1.000499 +v -143.505890 -1.554909 -1.000499 +v -143.286102 -2.026108 -1.000499 +v -143.151611 -2.528313 -1.000499 +v -143.106293 -3.046204 -1.000499 +v -143.151611 -3.564102 -1.000499 +v -143.286102 -4.066299 -1.000499 +v -143.505890 -4.537506 -1.000492 +v -143.804016 -4.963303 -1.000492 +v -144.171692 -5.331001 -1.000492 +v -144.597504 -5.629204 -1.000492 +v -145.068695 -5.848900 -1.000492 +v -145.570892 -5.983406 -1.000492 +v 143.151581 -66.564034 -1.000423 +v 149.026001 -66.564034 -1.000423 +v 143.286133 -67.066216 -1.000423 +v 148.891495 -67.066216 -1.000423 +v 143.505798 -67.537422 -1.000423 +v 148.671799 -67.537422 -1.000423 +v 143.804001 -67.963219 -1.000423 +v 148.373596 -67.963219 -1.000423 +v 144.171692 -68.330925 -1.000415 +v 148.005997 -68.330925 -1.000415 +v 144.597504 -68.629112 -1.000415 +v 147.580109 -68.629112 -1.000415 +v 145.068695 -68.848824 -1.000415 +v 147.108902 -68.848824 -1.000415 +v 145.570892 -68.983315 -1.000415 +v 146.606689 -68.983315 -1.000415 +v 146.088806 -69.028618 -1.000415 +v 143.151581 59.435810 -1.000568 +v 149.026001 59.435810 -1.000568 +v 143.286133 58.933636 -1.000568 +v 148.891495 58.933636 -1.000568 +v 143.505798 58.462456 -1.000568 +v 148.671799 58.462456 -1.000568 +v 143.804001 58.036583 -1.000568 +v 148.373596 58.036583 -1.000568 +v 144.171692 57.668964 -1.000568 +v 148.005997 57.668964 -1.000568 +v 144.597504 57.370766 -1.000568 +v 147.580109 57.370766 -1.000568 +v 145.068695 57.151043 -1.000568 +v 147.108902 57.151043 -1.000568 +v 145.570892 57.016495 -1.000568 +v 146.606689 57.016495 -1.000568 +v 146.088806 56.971184 -1.000568 +v 143.151581 -3.564102 -1.000499 +v 149.026001 -3.564102 -1.000499 +v 143.286133 -4.066299 -1.000499 +v 148.891495 -4.066299 -1.000499 +v 143.505798 -4.537506 -1.000492 +v 148.671799 -4.537506 -1.000492 +v 143.804001 -4.963303 -1.000492 +v 148.373596 -4.963303 -1.000492 +v 144.171692 -5.331001 -1.000492 +v 148.005997 -5.331001 -1.000492 +v 144.597504 -5.629204 -1.000492 +v 147.580109 -5.629204 -1.000492 +v 145.068695 -5.848900 -1.000492 +v 147.108902 -5.848900 -1.000492 +v 145.570892 -5.983406 -1.000492 +v 146.606689 -5.983406 -1.000492 +v 146.088806 -6.028702 -1.000492 +v -149.026001 -66.564034 -1.000423 +v -143.151611 -66.564034 -1.000423 +v -148.891510 -67.066216 -1.000423 +v -143.286102 -67.066216 -1.000423 +v -148.671814 -67.537422 -1.000423 +v -143.505890 -67.537422 -1.000423 +v -148.373596 -67.963219 -1.000423 +v -143.804016 -67.963219 -1.000423 +v -148.005890 -68.330925 -1.000415 +v -144.171692 -68.330925 -1.000415 +v -147.580109 -68.629112 -1.000415 +v -144.597504 -68.629112 -1.000415 +v -147.108887 -68.848824 -1.000415 +v -145.068695 -68.848824 -1.000415 +v -146.606689 -68.983315 -1.000415 +v -145.570892 -68.983315 -1.000415 +v -146.088806 -69.028618 -1.000415 +v -2.523571 -120.867455 -1.000354 +v -0.453171 -117.426369 -1.000362 +v -0.893032 -117.542168 -1.000362 +v -1.306690 -117.731270 -1.000362 +v -1.682003 -117.988167 -1.000362 +v -2.007942 -118.305473 -1.000362 +v -2.274963 -118.673668 -1.000362 +v -2.475201 -119.082069 -1.000362 +v -2.602810 -119.518578 -1.000354 +v -2.654030 -119.970573 -1.000354 +v -2.627350 -120.424568 -1.000354 +v -91.622108 -109.708580 -1.000370 +v -91.380501 -109.728172 -1.000370 +v -91.145195 -109.786369 -1.000370 +v -90.922295 -109.881767 -1.000370 +v -90.717705 -110.011879 -1.000370 +v -90.536797 -110.173180 -1.000370 +v -90.384209 -110.361473 -1.000370 +v -90.263908 -110.571877 -1.000370 +v -89.166100 -112.913872 -1.000362 +v -88.965599 -113.264580 -1.000362 +v -88.711296 -113.578468 -1.000362 +v -88.409706 -113.847374 -1.000362 +v -88.068703 -114.064079 -1.000362 +v -87.697304 -114.223076 -1.000362 +v -87.305199 -114.320076 -1.000362 +v -86.902504 -114.352776 -1.000362 +v 16.518589 -122.766655 -1.000354 +v -16.518593 -122.766655 -1.000354 +v -72.097504 -114.352776 -1.000362 +v -69.833900 -112.913872 -1.000362 +v -70.034401 -113.264580 -1.000362 +v -70.288704 -113.578468 -1.000362 +v -70.590302 -113.847374 -1.000362 +v -70.931305 -114.064079 -1.000362 +v -71.302704 -114.223076 -1.000362 +v -71.694901 -114.320076 -1.000362 +v -69.674500 -112.573769 -1.000370 +v -67.813499 -111.167580 -1.000370 +v -67.410805 -111.134880 -1.000370 +v -68.205704 -111.264580 -1.000370 +v -68.577103 -111.423576 -1.000370 +v -68.918098 -111.640373 -1.000370 +v -69.219704 -111.909172 -1.000370 +v -69.473999 -112.223076 -1.000370 +v -31.685455 -111.134880 -1.000370 +v -31.172951 -111.178978 -1.000370 +v -30.675514 -111.309975 -1.000370 +v -30.207771 -111.524071 -1.000370 +v -29.783478 -111.814873 -1.000370 +v -29.415092 -112.173866 -1.000370 +v -29.113464 -112.590569 -1.000370 +v -28.887451 -113.052681 -1.000362 +v -28.743698 -113.546577 -1.000362 +v 22.652628 -122.119957 -1.000354 +v 16.627369 -122.119957 -1.000354 +v -22.761398 -122.766655 -1.000354 +v 26.212048 -122.945259 -1.000354 +v 26.675198 -122.733253 -1.000354 +v 22.699589 -122.032753 -1.000354 +v 22.917208 -122.887764 -1.000354 +v -22.604652 -122.410255 -1.000354 +v -22.621078 -122.507957 -1.000354 +v -22.653328 -122.601555 -1.000354 +v -22.700539 -122.688560 -1.000354 +v -19.326851 -116.405876 -1.000362 +v -19.953152 -116.405876 -1.000362 +v -20.570240 -116.512978 -1.000362 +v -18.709751 -116.512978 -1.000362 +v -21.159950 -116.723976 -1.000362 +v -18.120052 -116.723976 -1.000362 +v -21.704895 -117.032677 -1.000362 +v -17.575111 -117.032677 -1.000362 +v -22.189049 -117.429970 -1.000362 +v -17.090961 -117.429970 -1.000362 +v -22.598145 -117.904274 -1.000362 +v -16.681862 -117.904274 -1.000362 +v -22.920128 -118.441475 -1.000362 +v -16.359871 -118.441475 -1.000362 +v -23.145554 -119.025780 -1.000362 +v -16.134453 -119.025780 -1.000362 +v -23.267754 -119.640068 -1.000354 +v -16.012253 -119.640068 -1.000354 +v -23.283142 -120.266167 -1.000354 +v -15.996861 -120.266167 -1.000354 +v -23.191254 -120.885658 -1.000354 +v -16.088741 -120.885658 -1.000354 +v -22.994812 -121.480354 -1.000354 +v -16.285191 -121.480354 -1.000354 +v 26.377859 -122.901558 -1.000354 +v 23.007889 -122.927452 -1.000354 +v -16.658932 -122.507957 -1.000354 +v -16.626671 -122.601555 -1.000354 +v -16.579472 -122.688560 -1.000354 +v 26.533768 -122.830254 -1.000354 +v 16.579468 -122.688560 -1.000354 +v 16.675348 -122.410255 -1.000354 +v 16.658928 -122.507957 -1.000354 +v 16.626669 -122.601555 -1.000354 +v 19.953159 -116.405876 -1.000362 +v 19.326838 -116.405876 -1.000362 +v 18.709759 -116.512978 -1.000362 +v 20.570248 -116.512978 -1.000362 +v 18.120058 -116.723976 -1.000362 +v 21.159939 -116.723976 -1.000362 +v 17.575108 -117.032677 -1.000362 +v 21.704889 -117.032677 -1.000362 +v 17.090958 -117.429970 -1.000362 +v 22.189039 -117.429970 -1.000362 +v 16.681858 -117.904274 -1.000362 +v 22.598139 -117.904274 -1.000362 +v 16.359869 -118.441475 -1.000362 +v 22.920128 -118.441475 -1.000362 +v 16.134449 -119.025780 -1.000362 +v 23.145548 -119.025780 -1.000362 +v 23.267748 -119.640068 -1.000354 +v 23.283138 -120.266167 -1.000354 +v 16.088739 -120.885658 -1.000354 +v 23.191259 -120.885658 -1.000354 +v 16.285189 -121.480354 -1.000354 +v 22.994808 -121.480354 -1.000354 +v 22.604649 -122.410255 -1.000354 +v 22.621069 -122.507957 -1.000354 +v 22.653328 -122.601555 -1.000354 +v 22.700529 -122.688560 -1.000354 +v 22.761408 -122.766655 -1.000354 +v 23.103868 -122.951759 -1.000354 +v 26.898539 -122.474754 -1.000354 +v 26.797998 -122.613655 -1.000354 +v 28.743698 -113.546577 -1.000362 +v 31.172939 -111.178978 -1.000370 +v 31.685438 -111.134880 -1.000370 +v 30.675508 -111.309975 -1.000370 +v 30.207767 -111.524071 -1.000370 +v 29.783478 -111.814873 -1.000370 +v 29.415098 -112.173866 -1.000370 +v 29.113468 -112.590569 -1.000370 +v 28.887447 -113.052681 -1.000362 +v 68.525406 -111.147972 -1.000370 +v 68.682281 -111.186775 -1.000370 +v 68.830849 -111.250374 -1.000370 +v 68.967224 -111.337074 -1.000370 +v 69.087868 -111.444572 -1.000370 +v 69.189606 -111.570168 -1.000370 +v 70.238586 -113.777168 -1.000362 +v 70.318779 -113.917473 -1.000362 +v 70.420517 -114.043068 -1.000362 +v 70.541161 -114.150566 -1.000362 +v 70.677536 -114.237267 -1.000362 +v 70.826096 -114.300880 -1.000362 +v 70.982971 -114.339668 -1.000362 +v 88.017029 -114.339668 -1.000362 +v 88.681213 -113.917473 -1.000362 +v 88.579483 -114.043068 -1.000362 +v 88.458839 -114.150566 -1.000362 +v 88.322464 -114.237267 -1.000362 +v 88.173889 -114.300880 -1.000362 +v 90.263885 -110.571877 -1.000370 +v 91.380463 -109.728172 -1.000370 +v 91.622078 -109.708580 -1.000370 +v 91.145157 -109.786369 -1.000370 +v 90.922318 -109.881767 -1.000370 +v 90.717743 -110.011879 -1.000370 +v 90.536789 -110.173180 -1.000370 +v 90.384171 -110.361473 -1.000370 +v 128.448608 -109.708580 -1.000370 +v 128.684860 -109.727272 -1.000370 +v 128.915222 -109.782967 -1.000370 +v 129.133926 -109.874275 -1.000370 +v 129.335526 -109.998878 -1.000370 +v 129.514999 -110.153679 -1.000370 +v 129.667847 -110.334770 -1.000370 +v 129.790253 -110.537773 -1.000370 +v 130.812408 -112.582069 -1.000370 +v 130.894012 -112.717369 -1.000370 +v 130.995911 -112.838173 -1.000370 +v 131.115555 -112.941368 -1.000362 +v 131.249969 -113.024376 -1.000362 +v 131.395752 -113.085274 -1.000362 +v 131.549332 -113.122368 -1.000362 +v 139.588806 -113.134880 -1.000362 +v 143.528000 -109.829475 -1.000370 +v 143.588806 -109.134880 -1.000370 +v 143.347595 -110.502968 -1.000370 +v 143.052917 -111.134880 -1.000370 +v 142.652985 -111.706078 -1.000370 +v 142.159958 -112.199074 -1.000370 +v 141.588821 -112.598976 -1.000370 +v 140.956909 -112.893669 -1.000370 +v 140.283401 -113.074074 -1.000362 +v 143.588806 -93.208107 -1.000392 +v 143.588806 -78.046120 -1.000408 +v 147.588806 -78.046120 -1.000408 +v 151.045700 -75.093620 -1.000408 +v 151.088806 -74.546120 -1.000408 +v 150.917496 -75.627724 -1.000408 +v 150.707306 -76.135124 -1.000408 +v 150.420395 -76.603416 -1.000408 +v 150.063690 -77.021019 -1.000408 +v 149.646088 -77.377724 -1.000408 +v 149.177795 -77.664619 -1.000408 +v 148.670395 -77.874825 -1.000408 +v 148.136292 -78.003014 -1.000408 +v 151.088806 28.453758 -1.000537 +v 151.088806 68.453712 -1.000583 +v 151.088806 -34.546165 -1.000461 +v 148.136292 71.910622 -1.000583 +v 147.588806 71.953712 -1.000583 +v 148.670395 71.782410 -1.000583 +v 149.177795 71.572235 -1.000583 +v 149.646088 71.285271 -1.000583 +v 150.063690 70.928581 -1.000583 +v 150.420395 70.510963 -1.000583 +v 150.707306 70.042679 -1.000583 +v 150.917496 69.535271 -1.000583 +v 151.045700 69.001236 -1.000583 +v 143.588806 71.953712 -1.000583 +v 143.588806 111.042473 -1.000629 +v 138.588806 116.042465 -1.000637 +v 139.457062 115.966507 -1.000637 +v 140.298920 115.740929 -1.000637 +v 141.088821 115.372604 -1.000637 +v 141.802750 114.872688 -1.000637 +v 142.419037 114.256409 -1.000637 +v 142.918945 113.542473 -1.000637 +v 143.287262 112.752571 -1.000637 +v 143.512802 111.910713 -1.000637 +v 111.521317 116.042465 -1.000637 +v 111.286667 116.024002 -1.000637 +v 111.057785 115.969048 -1.000637 +v 110.840332 115.878983 -1.000637 +v 110.639641 115.755997 -1.000637 +v 110.460655 115.603127 -1.000637 +v 108.459000 113.601486 -1.000637 +v 108.280022 113.448608 -1.000637 +v 108.079330 113.325630 -1.000637 +v 107.861870 113.235550 -1.000637 +v 107.632996 113.180603 -1.000637 +v 107.398346 113.162140 -1.000637 +v -107.398399 113.162140 -1.000637 +v -108.280006 113.448608 -1.000637 +v -108.459007 113.601486 -1.000637 +v -108.079308 113.325630 -1.000637 +v -107.861900 113.235550 -1.000637 +v -107.633003 113.180603 -1.000637 +v -110.460701 115.603127 -1.000637 +v -111.286705 116.024002 -1.000637 +v -111.521309 116.042465 -1.000637 +v -111.057808 115.969048 -1.000637 +v -110.840309 115.878983 -1.000637 +v -110.639702 115.755997 -1.000637 +v -138.588806 116.042465 -1.000637 +v -139.457092 115.966507 -1.000637 +v -140.298889 115.740929 -1.000637 +v -141.088806 115.372604 -1.000637 +v -141.802704 114.872688 -1.000637 +v -142.419006 114.256409 -1.000637 +v -142.918915 113.542473 -1.000637 +v -143.287292 112.752571 -1.000637 +v -143.512787 111.910713 -1.000637 +v -143.588806 111.042473 -1.000629 +v -143.588806 71.953712 -1.000583 +v -147.588806 71.953712 -1.000583 +v -148.136292 71.910622 -1.000583 +v -148.670410 71.782410 -1.000583 +v -149.177795 71.572235 -1.000583 +v -149.646088 71.285271 -1.000583 +v -150.063690 70.928581 -1.000583 +v -150.420410 70.510963 -1.000583 +v -150.707306 70.042679 -1.000583 +v -150.917511 69.535271 -1.000583 +v -151.045715 69.001236 -1.000583 +v -151.088806 68.453712 -1.000583 +v -151.088806 -74.546120 -1.000408 +v -151.045715 -75.093620 -1.000408 +v -150.917511 -75.627724 -1.000408 +v -150.707306 -76.135124 -1.000408 +v -150.420410 -76.603416 -1.000408 +v -150.063690 -77.021019 -1.000408 +v -149.646088 -77.377724 -1.000408 +v -149.177795 -77.664619 -1.000408 +v -148.670410 -77.874825 -1.000408 +v -148.136292 -78.003014 -1.000408 +v -147.588806 -78.046120 -1.000408 +v -143.588806 -78.046120 -1.000408 +v -143.588806 -93.208107 -1.000392 +v -143.588806 -109.134880 -1.000370 +v -143.528107 -109.829475 -1.000370 +v -143.347595 -110.502968 -1.000370 +v -143.052887 -111.134880 -1.000370 +v -142.653015 -111.706078 -1.000370 +v -142.159912 -112.199074 -1.000370 +v -141.588806 -112.598976 -1.000370 +v -140.956909 -112.893669 -1.000370 +v -140.283417 -113.074074 -1.000362 +v -139.588806 -113.134880 -1.000362 +v -131.549316 -113.122368 -1.000362 +v -130.894012 -112.717369 -1.000370 +v -130.995911 -112.838173 -1.000370 +v -131.115601 -112.941368 -1.000362 +v -131.249908 -113.024376 -1.000362 +v -131.395813 -113.085274 -1.000362 +v -129.790192 -110.537773 -1.000370 +v -128.684906 -109.727272 -1.000370 +v -128.448608 -109.708580 -1.000370 +v -128.915192 -109.782967 -1.000370 +v -129.133911 -109.874275 -1.000370 +v -129.335510 -109.998878 -1.000370 +v -129.515015 -110.153679 -1.000370 +v -129.667816 -110.334770 -1.000370 +v -72.880600 28.453758 -1.000537 +v 72.880630 28.453758 -1.000537 +v -150.080109 28.453758 -1.000537 +v -150.080109 -34.546165 -1.000461 +v 72.880630 -34.546165 -1.000461 +v -72.880600 -34.546165 -1.000461 +v 72.880630 -93.208107 -1.000392 +v -72.880600 -93.208107 -1.000392 + +f 4554 4555 4556 +f 4554 4556 5662 +f 4561 4554 5662 +f 4565 4561 5662 +f 4569 4565 5662 +f 4573 4569 5662 +f 4577 4573 5662 +f 4581 4577 5662 +f 5711 4581 5662 +f 5711 5662 5643 +f 5644 5711 5643 +f 4843 5644 5643 +f 4806 4843 5643 +f 4806 5643 5641 +f 4812 4806 5641 +f 4812 5641 5642 +f 4829 4812 5642 +f 4829 5642 5646 +f 4829 5646 5651 +f 4827 4829 5651 +f 4827 5651 5650 +f 4822 4827 5650 +f 4822 5650 5649 +f 4820 4822 5649 +f 4820 5649 5647 +f 4813 4820 5647 +f 4813 5647 5648 +f 4807 4813 5648 +f 4808 4807 5648 +f 4808 5648 5652 +f 5653 4808 5652 +f 5661 5653 5652 +f 5661 5654 5653 +f 5654 4811 5653 +f 4824 4811 5654 +f 5655 4824 5654 +f 5656 5655 5654 +f 5657 5656 5654 +f 5658 5657 5654 +f 5659 5658 5654 +f 5660 5659 5654 +f 5660 4831 5659 +f 4831 4835 5659 +f 4835 4831 4824 +f 4834 4835 4824 +f 4833 4834 4824 +f 4832 4833 4824 +f 4833 4832 5656 +f 4834 4833 5657 +f 4835 4834 5658 +f 4831 4810 4824 +f 4810 4831 5660 +f 5661 4810 5660 +f 4809 4810 5661 +f 4845 4809 5661 +f 5662 4845 5661 +f 5662 5661 5648 +f 4860 4845 5662 +f 4860 5662 5663 +f 5664 4860 5663 +f 4558 5664 5663 +f 4556 4558 5663 +f 4557 4558 4556 +f 4557 4559 4558 +f 4559 4560 4558 +f 4558 4560 5668 +f 4558 5668 5667 +f 4558 5667 5666 +f 4558 5666 5665 +f 5666 4864 5665 +f 4864 4861 5665 +f 5665 4861 5664 +f 4864 4559 4861 +f 4861 4559 4860 +f 4866 4559 4864 +f 4868 4559 4866 +f 4868 4866 5667 +f 4563 4559 4868 +f 4870 4563 4868 +f 4870 4868 5668 +f 5669 4870 5668 +f 4872 4870 5669 +f 5670 4872 5669 +f 5672 5670 5669 +f 5673 5672 5669 +f 5713 5673 5669 +f 4588 5713 5669 +f 4584 4588 5669 +f 4580 4584 5669 +f 4576 4580 5669 +f 4572 4576 5669 +f 4568 4572 5669 +f 4564 4568 5669 +f 4560 4564 5669 +f 4563 4564 4560 +f 4563 4567 4564 +f 4567 4568 4564 +f 4567 4571 4568 +f 4571 4567 4872 +f 4575 4571 4872 +f 4579 4575 4872 +f 4583 4579 4872 +f 4587 4583 4872 +f 4591 4587 4872 +f 4874 4591 4872 +f 4877 4874 4872 +f 4876 4877 4872 +f 4875 4876 4872 +f 4879 4876 4875 +f 4879 4875 5671 +f 5672 4879 5671 +f 5671 4875 5670 +f 4876 4879 5672 +f 4877 4876 5673 +f 4920 4877 5673 +f 5674 4920 5673 +f 5714 5674 5673 +f 5678 5674 5714 +f 4778 5678 5714 +f 4774 4778 5714 +f 4770 4774 5714 +f 4766 4770 5714 +f 4762 4766 5714 +f 4758 4762 5714 +f 4754 4758 5714 +f 4750 4754 5714 +f 4748 4750 5714 +f 4746 4748 5714 +f 4744 4746 5714 +f 4751 4744 5714 +f 4755 4751 5714 +f 5716 4755 5714 +f 5716 5714 5331 +f 5716 5331 5330 +f 5716 5330 5329 +f 5716 5329 5328 +f 5716 5328 5327 +f 5716 5327 5326 +f 5716 5326 5325 +f 5716 5325 5711 +f 5715 5716 5711 +f 5712 5715 5711 +f 5712 5711 5640 +f 5639 5712 5640 +f 4852 5639 5640 +f 4849 4852 5640 +f 4849 5640 5645 +f 4846 4849 5645 +f 4846 5645 5644 +f 4845 4849 4846 +f 4845 4846 4843 +f 4845 4851 4849 +f 4574 4851 4845 +f 4570 4574 4845 +f 4566 4570 4845 +f 4562 4566 4845 +f 4555 4562 4845 +f 4557 4555 4845 +f 4566 4562 4561 +f 4570 4566 4565 +f 4574 4570 4569 +f 4578 4851 4574 +f 4578 4574 4573 +f 4582 4851 4578 +f 4582 4578 4577 +f 4586 4851 4582 +f 4586 4582 4581 +f 4585 4586 4581 +f 4590 4586 4585 +f 4589 4590 4585 +f 5711 4589 4585 +f 5711 5300 4589 +f 5300 4886 4589 +f 4890 4886 5300 +f 5302 4890 5300 +f 4894 4890 5302 +f 5304 4894 5302 +f 5711 5304 5302 +f 5711 5306 5304 +f 5306 4898 5304 +f 4902 4898 5306 +f 5308 4902 5306 +f 4906 4902 5308 +f 5310 4906 5308 +f 5711 5310 5308 +f 5711 5312 5310 +f 5312 4910 5310 +f 4914 4910 5312 +f 5314 4914 5312 +f 5713 5314 5312 +f 5713 5315 5314 +f 5315 4917 5314 +f 4913 4917 5315 +f 4913 5315 5313 +f 4909 4913 5313 +f 4909 5313 5311 +f 4905 4909 5311 +f 4905 5311 5309 +f 4901 4905 5309 +f 4901 5309 5307 +f 4897 4901 5307 +f 4897 5307 5305 +f 4893 4897 5305 +f 4893 5305 5303 +f 4889 4893 5303 +f 4889 5303 5301 +f 4885 4889 5301 +f 4885 5301 5299 +f 4591 4885 5299 +f 4591 5299 4588 +f 5301 5713 5299 +f 4874 4889 4885 +f 5303 5713 5301 +f 4874 4893 4889 +f 5305 5713 5303 +f 4874 4897 4893 +f 5307 5713 5305 +f 4874 4901 4897 +f 5309 5713 5307 +f 4874 4905 4901 +f 5311 5713 5309 +f 4874 4909 4905 +f 5313 5713 5311 +f 4874 4913 4909 +f 4874 4917 4913 +f 4917 4874 4914 +f 5315 5713 5313 +f 4917 4914 5314 +f 4914 4874 4910 +f 4910 4874 4906 +f 4874 4851 4906 +f 4922 4851 4874 +f 4921 4922 4874 +f 4592 4921 4874 +f 4595 4592 4874 +f 4597 4595 4874 +f 4599 4597 4874 +f 4601 4599 4874 +f 4603 4601 4874 +f 4605 4603 4874 +f 4607 4605 4874 +f 4609 4607 4874 +f 4611 4609 4874 +f 4919 4611 4874 +f 4919 4613 4611 +f 4611 4613 4612 +f 4611 4612 4610 +f 4612 5714 4610 +f 4610 5714 5713 +f 4608 4610 5713 +f 4606 4608 5713 +f 4604 4606 5713 +f 4602 4604 5713 +f 4600 4602 5713 +f 4598 4600 5713 +f 4596 4598 5713 +f 4593 4596 5713 +f 4594 4593 5713 +f 5316 4594 5713 +f 5317 5316 5713 +f 5318 5317 5713 +f 5711 5318 5713 +f 5319 5318 5711 +f 5320 5319 5711 +f 5321 5320 5711 +f 5322 5321 5711 +f 5323 5322 5711 +f 5324 5323 5711 +f 5324 4932 5323 +f 4932 4924 5323 +f 4932 4925 4924 +f 4924 4925 4851 +f 4923 4924 4851 +f 4929 4923 4851 +f 4928 4929 4851 +f 4927 4928 4851 +f 4926 4927 4851 +f 4927 4926 5318 +f 4928 4927 5319 +f 4929 4928 5320 +f 4923 4929 5321 +f 4924 4923 5322 +f 4925 4930 4851 +f 4930 4847 4851 +f 4851 4847 4852 +f 4847 4853 4852 +f 4853 4847 4850 +f 4853 4850 5638 +f 5639 4853 5638 +f 5638 4850 5637 +f 5617 5638 5637 +f 5617 5637 5636 +f 5618 5617 5636 +f 5618 5636 5635 +f 5618 5635 5619 +f 5620 5618 5619 +f 4819 5620 5619 +f 4818 4819 5619 +f 4816 4818 5619 +f 4816 5619 5628 +f 5629 4816 5628 +f 5634 5629 5628 +f 5635 5634 5628 +f 5635 4842 5634 +f 4842 4837 5634 +f 5634 4837 5633 +f 5634 5633 5632 +f 5634 5632 5631 +f 5634 5631 5630 +f 5631 4821 5630 +f 4821 4817 5630 +f 5630 4817 5629 +f 4821 4814 4817 +f 4817 4814 4816 +f 4814 4815 4816 +f 4815 4814 5617 +f 4814 5608 5617 +f 5608 4670 5617 +f 4670 4672 5617 +f 4672 4674 5617 +f 4674 4678 5617 +f 4678 4682 5617 +f 4682 4686 5617 +f 4686 5712 5617 +f 4690 5712 4686 +f 4689 4690 4686 +f 4685 4689 4686 +f 4689 4685 4814 +f 4693 4689 4814 +f 4697 4693 4814 +f 4847 4697 4814 +f 4847 4814 4844 +f 4848 4847 4844 +f 4848 4844 5636 +f 4844 4814 4842 +f 4847 4701 4697 +f 4697 4701 4698 +f 4697 4698 4694 +f 4698 5712 4694 +f 4702 5712 4698 +f 5350 5712 4702 +f 4705 5350 4702 +f 4701 4705 4702 +f 4705 4887 5350 +f 4887 5352 5350 +f 4887 4891 5352 +f 4891 5354 5352 +f 5354 5712 5352 +f 5356 5712 5354 +f 4895 5356 5354 +f 4895 4899 5356 +f 4899 5358 5356 +f 4899 4903 5358 +f 4903 5360 5358 +f 5360 5712 5358 +f 5604 5712 5360 +f 5362 5604 5360 +f 4907 5362 5360 +f 4907 4911 5362 +f 4911 5364 5362 +f 4911 4915 5364 +f 4915 5366 5364 +f 5366 5604 5364 +f 5604 5366 5365 +f 5604 5365 5363 +f 5604 5363 5361 +f 5604 5361 5359 +f 5604 5359 5357 +f 5604 5357 5355 +f 5604 5355 5353 +f 5604 5353 5351 +f 5604 5351 4703 +f 5604 4703 5605 +f 4882 5604 5605 +f 4882 5605 5616 +f 4881 4882 5616 +f 4881 5616 5615 +f 4880 4881 5615 +f 4880 5615 5614 +f 4878 4880 5614 +f 4878 5614 5613 +f 4873 4878 5613 +f 4873 5613 5612 +f 4871 4873 5612 +f 4871 5612 5611 +f 4869 4871 5611 +f 4869 5611 5610 +f 4867 4869 5610 +f 4867 5610 5609 +f 4865 4867 5609 +f 4865 5609 5607 +f 4863 4865 5607 +f 4863 5607 5608 +f 4862 4863 5608 +f 4671 4863 4862 +f 4673 4671 4862 +f 4673 4862 4814 +f 4677 4673 4814 +f 4681 4677 4814 +f 4677 4681 4678 +f 4673 4677 4674 +f 4671 4673 4672 +f 4671 4669 4863 +f 4669 4671 4670 +f 4668 4669 4670 +f 4676 4669 4668 +f 4675 4676 4668 +f 4675 4668 5611 +f 4680 4676 4675 +f 4679 4680 4675 +f 4679 4675 5616 +f 4684 4680 4679 +f 4683 4684 4679 +f 4683 4679 5605 +f 4687 4683 5605 +f 4691 4687 5605 +f 4695 4691 5605 +f 4699 4695 5605 +f 4699 4700 4695 +f 4700 4696 4695 +f 4696 4700 4882 +f 4692 4696 4882 +f 4688 4692 4882 +f 4684 4688 4882 +f 4692 4688 4687 +f 4696 4692 4691 +f 4700 4704 4882 +f 4704 4884 4882 +f 4888 4884 4704 +f 4888 4704 4703 +f 4703 4704 4699 +f 4892 4884 4888 +f 4892 4888 5351 +f 4896 4884 4892 +f 4896 4892 5353 +f 4900 4884 4896 +f 4900 4896 5355 +f 4904 4884 4900 +f 4904 4900 5357 +f 4908 4884 4904 +f 4908 4904 5359 +f 4912 4884 4908 +f 4912 4908 5361 +f 4916 4884 4912 +f 4916 4912 5363 +f 4918 4884 4916 +f 4918 4916 5365 +f 4884 4918 4915 +f 4704 4700 4699 +f 4695 4696 4691 +f 4691 4692 4687 +f 4687 4688 4683 +f 4688 4684 4683 +f 4680 4684 4882 +f 4676 4680 4882 +f 4669 4676 4871 +f 5607 4668 5608 +f 4669 4865 4863 +f 5609 4668 5607 +f 4669 4867 4865 +f 5610 4668 5609 +f 4669 4869 4867 +f 5611 4668 5610 +f 4669 4871 4869 +f 5612 4675 5611 +f 4676 4873 4871 +f 5613 4675 5612 +f 4676 4878 4873 +f 5614 4675 5613 +f 4676 4880 4878 +f 5615 4675 5614 +f 4676 4881 4880 +f 5616 4675 5615 +f 4676 4882 4881 +f 5605 4679 5616 +f 4882 4884 5604 +f 4884 5606 5604 +f 5606 4741 5604 +f 4741 4737 5604 +f 4737 4733 5604 +f 4733 4729 5604 +f 4729 4725 5604 +f 4725 4721 5604 +f 4721 4717 5604 +f 4717 4713 5604 +f 4713 4706 5604 +f 4706 4708 5604 +f 4708 4710 5604 +f 4710 4712 5604 +f 4711 4712 4710 +f 4709 4711 4710 +f 4711 4709 4884 +f 4715 4711 4884 +f 4719 4715 4884 +f 4719 4884 4847 +f 4723 4719 4847 +f 4727 4723 4847 +f 4731 4727 4847 +f 4735 4731 4847 +f 4739 4735 4847 +f 4743 4739 4847 +f 4739 4743 4740 +f 4739 4740 4736 +f 4736 4740 5712 +f 4732 4736 5712 +f 4728 4732 5712 +f 4724 4728 5712 +f 4720 4724 5712 +f 4716 4720 5712 +f 4712 4716 5712 +f 4715 4716 4712 +f 4719 4720 4716 +f 4723 4724 4720 +f 4727 4728 4724 +f 4731 4732 4728 +f 4735 4736 4732 +f 4743 5367 4740 +f 5367 5715 4740 +f 5369 5715 5367 +f 4934 5369 5367 +f 4934 4937 5369 +f 4937 5371 5369 +f 4937 4940 5371 +f 4940 5373 5371 +f 5373 5715 5371 +f 5375 5715 5373 +f 4943 5375 5373 +f 4943 4946 5375 +f 4946 5377 5375 +f 4946 4949 5377 +f 4949 5379 5377 +f 5379 5606 5377 +f 5606 5715 5377 +f 5606 4636 5715 +f 4636 4640 5715 +f 4640 4644 5715 +f 4644 4648 5715 +f 4648 4652 5715 +f 4652 4656 5715 +f 4656 4660 5715 +f 4660 4664 5715 +f 4664 5333 5715 +f 5333 5335 5715 +f 5335 5592 5715 +f 5592 5717 5715 +f 5591 5717 5592 +f 4991 5591 5592 +f 5012 4991 5592 +f 5593 5012 5592 +f 5593 5592 5347 +f 5349 5593 5347 +f 4998 5349 5347 +f 4992 4998 5347 +f 4992 5347 5345 +f 4987 4992 5345 +f 4987 5345 5343 +f 4983 4987 5343 +f 4983 5343 5341 +f 4979 4983 5341 +f 4979 5341 5339 +f 4975 4979 5339 +f 4975 5339 5337 +f 4971 4975 5337 +f 4971 5337 5335 +f 4967 4971 5335 +f 4963 4971 4967 +f 4963 4967 4667 +f 4963 4667 4930 +f 4667 4663 4930 +f 4663 4659 4930 +f 4659 4655 4930 +f 4655 4651 4930 +f 4651 4647 4930 +f 4647 4643 4930 +f 4643 4931 4930 +f 4930 4931 4952 +f 4930 4952 4949 +f 4931 4955 4952 +f 4952 4955 5381 +f 4952 5381 5379 +f 4955 5383 5381 +f 5383 5606 5381 +f 5606 5383 5382 +f 5606 5382 5380 +f 5606 5380 5378 +f 5606 5378 5376 +f 5606 5376 5374 +f 5606 5374 5372 +f 5606 5372 5370 +f 5606 5370 5368 +f 5370 4938 5368 +f 4938 4935 5368 +f 5368 4935 4741 +f 4935 4742 4741 +f 4935 4931 4742 +f 4742 4931 4884 +f 4738 4742 4884 +f 4734 4738 4884 +f 4730 4734 4884 +f 4726 4730 4884 +f 4722 4726 4884 +f 4718 4722 4884 +f 4714 4718 4884 +f 4707 4714 4884 +f 4714 4707 4706 +f 4718 4714 4713 +f 4722 4718 4717 +f 4726 4722 4721 +f 4730 4726 4725 +f 4734 4730 4729 +f 4738 4734 4733 +f 4742 4738 4737 +f 4938 4931 4935 +f 4941 4931 4938 +f 4944 4931 4941 +f 4944 4941 5372 +f 4947 4931 4944 +f 4947 4944 5374 +f 4950 4931 4947 +f 4950 4947 5376 +f 4953 4931 4950 +f 4953 4950 5378 +f 4956 4931 4953 +f 4956 4953 5380 +f 4957 4931 4956 +f 4957 4956 5382 +f 4941 4938 5370 +f 5372 4941 5370 +f 5374 4944 5372 +f 5376 4947 5374 +f 5378 4950 5376 +f 5380 4953 5378 +f 5382 4956 5380 +f 5383 4957 5382 +f 4955 4957 5383 +f 4931 4957 4955 +f 4643 4639 4931 +f 4639 4635 4931 +f 4635 4633 4931 +f 4633 4631 4931 +f 4631 4638 4931 +f 4638 4642 4931 +f 4642 4646 4931 +f 4646 4650 4931 +f 4650 4654 4931 +f 4654 4658 4931 +f 4658 4662 4931 +f 4662 4666 4931 +f 4666 4964 4931 +f 4931 4964 5595 +f 4931 5595 5606 +f 5595 4665 5606 +f 4665 4661 5606 +f 4661 4657 5606 +f 4657 4653 5606 +f 4653 4649 5606 +f 4649 4645 5606 +f 4645 4641 5606 +f 4641 4637 5606 +f 4637 4630 5606 +f 4630 4632 5606 +f 4632 4634 5606 +f 4633 4634 4632 +f 4630 4631 4632 +f 4637 4638 4630 +f 4641 4642 4637 +f 4645 4646 4641 +f 4649 4650 4645 +f 4653 4654 4649 +f 4657 4658 4653 +f 4661 4662 4657 +f 4665 4666 4661 +f 4968 4666 4665 +f 5334 4968 4665 +f 4972 4968 5334 +f 5336 4972 5334 +f 5595 5336 5334 +f 5595 5338 5336 +f 5338 4976 5336 +f 4980 4976 5338 +f 5340 4980 5338 +f 4984 4980 5340 +f 5342 4984 5340 +f 5595 5342 5340 +f 5595 5344 5342 +f 5344 4988 5342 +f 4994 4988 5344 +f 5346 4994 5344 +f 5002 4994 5346 +f 5348 5002 5346 +f 5600 5348 5346 +f 5599 5600 5346 +f 5598 5599 5346 +f 5597 5598 5346 +f 5596 5597 5346 +f 5594 5596 5346 +f 5595 5594 5346 +f 4993 5594 5595 +f 4993 5001 5594 +f 5001 4993 4994 +f 5000 5001 4994 +f 4999 5000 4994 +f 5004 4999 4994 +f 5003 5004 4994 +f 5004 5003 5599 +f 4999 5004 5598 +f 5000 4999 5597 +f 5001 5000 5596 +f 5001 5596 5594 +f 5000 5597 5596 +f 4999 5598 5597 +f 5004 5599 5598 +f 5003 5600 5599 +f 5003 5015 5600 +f 5015 5601 5600 +f 5015 5014 5601 +f 5014 5602 5601 +f 5601 5602 5348 +f 5602 5603 5348 +f 5603 5349 5348 +f 5349 5011 5348 +f 5013 5603 5602 +f 5013 5012 5603 +f 5012 5013 5002 +f 5011 5012 5002 +f 5013 5014 5002 +f 5014 5013 5602 +f 5014 5015 5002 +f 5015 5003 5002 +f 5600 5601 5348 +f 5011 5002 5348 +f 5002 5003 4994 +f 4994 4993 4988 +f 4993 4964 4988 +f 4988 4964 4984 +f 5595 5346 5344 +f 4988 4984 5342 +f 4984 4964 4980 +f 4980 4964 4976 +f 4976 4964 4972 +f 5595 5340 5338 +f 4976 4972 5336 +f 4972 4964 4968 +f 5595 5334 4665 +f 4964 4993 5595 +f 4968 4964 4666 +f 4666 4662 4661 +f 4662 4658 4657 +f 4658 4654 4653 +f 4654 4650 4649 +f 4650 4646 4645 +f 4646 4642 4641 +f 4642 4638 4637 +f 4638 4631 4630 +f 4631 4633 4632 +f 4633 4635 4634 +f 4635 4636 4634 +f 4635 4639 4636 +f 4639 4643 4640 +f 4643 4647 4644 +f 4647 4651 4648 +f 4651 4655 4652 +f 4655 4659 4656 +f 4659 4663 4660 +f 4663 4667 4664 +f 4667 4967 5333 +f 4963 4975 4971 +f 5339 5592 5337 +f 4963 4979 4975 +f 5341 5592 5339 +f 4963 4983 4979 +f 5343 5592 5341 +f 4963 4987 4983 +f 4963 4991 4987 +f 4963 5021 4991 +f 5078 5021 4963 +f 5077 5078 4963 +f 5084 5077 4963 +f 5083 5084 4963 +f 5082 5083 4963 +f 5081 5082 4963 +f 5080 5081 4963 +f 5079 5080 4963 +f 5094 5079 4963 +f 5093 5094 4963 +f 5092 5093 4963 +f 5091 5092 4963 +f 5090 5091 4963 +f 5089 5090 4963 +f 5101 5089 4963 +f 5100 5101 4963 +f 5099 5100 4963 +f 5098 5099 4963 +f 5097 5098 4963 +f 5105 5097 4963 +f 5104 5105 4963 +f 5076 5104 4963 +f 5076 4963 4962 +f 5053 5076 4962 +f 5052 5053 4962 +f 5055 5052 4962 +f 5054 5055 4962 +f 5051 5054 4962 +f 5050 5051 4962 +f 5049 5050 4962 +f 5062 5049 4962 +f 4782 5062 4962 +f 5061 4782 4962 +f 5060 5061 4962 +f 5059 5060 4962 +f 5058 5059 4962 +f 5067 5058 4962 +f 5066 5067 4962 +f 5065 5066 4962 +f 5064 5065 4962 +f 5063 5064 4962 +f 5057 5063 4962 +f 5056 5057 4962 +f 5075 5056 4962 +f 5074 5075 4962 +f 5073 5074 4962 +f 5072 5073 4962 +f 5071 5072 4962 +f 5070 5071 4962 +f 5069 5070 4962 +f 5068 5069 4962 +f 5043 5068 4962 +f 5042 5043 4962 +f 5048 5042 4962 +f 5047 5048 4962 +f 5046 5047 4962 +f 5045 5046 4962 +f 5044 5045 4962 +f 5039 5044 4962 +f 5038 5039 4962 +f 5037 5038 4962 +f 5036 5037 4962 +f 5035 5036 4962 +f 5034 5035 4962 +f 5033 5034 4962 +f 5041 5033 4962 +f 5040 5041 4962 +f 5031 5040 4962 +f 5031 4962 5020 +f 5023 5031 5020 +f 5022 5023 5020 +f 5024 5022 5020 +f 5030 5024 5020 +f 5029 5030 5020 +f 5028 5029 5020 +f 5027 5028 5020 +f 5026 5027 5020 +f 5025 5026 5020 +f 5025 5020 5686 +f 5687 5025 5686 +f 5697 5687 5686 +f 5702 5697 5686 +f 5701 5702 5686 +f 5700 5701 5686 +f 5699 5700 5686 +f 5698 5699 5686 +f 5703 5698 5686 +f 5710 5703 5686 +f 5709 5710 5686 +f 5708 5709 5686 +f 5707 5708 5686 +f 5706 5707 5686 +f 5704 5706 5686 +f 5705 5704 5686 +f 5412 5705 5686 +f 5718 5412 5686 +f 5718 5686 5716 +f 5717 5718 5716 +f 5717 5447 5718 +f 5447 5446 5718 +f 5446 5440 5718 +f 5440 5439 5718 +f 5439 5441 5718 +f 5441 5442 5718 +f 5442 5443 5718 +f 5443 5444 5718 +f 5444 5445 5718 +f 5445 5438 5718 +f 5438 5431 5718 +f 5431 5432 5718 +f 5432 5433 5718 +f 5433 5434 5718 +f 5434 5435 5718 +f 5435 5436 5718 +f 5436 5437 5718 +f 5437 5430 5718 +f 5430 5427 5718 +f 5427 5426 5718 +f 5426 5425 5718 +f 5425 5424 5718 +f 5424 5423 5718 +f 5423 5422 5718 +f 5422 5421 5718 +f 5421 5420 5718 +f 5420 5419 5718 +f 5419 5418 5718 +f 5418 5417 5718 +f 5417 5416 5718 +f 5416 5415 5718 +f 5415 5414 5718 +f 5414 5413 5718 +f 5414 5033 5413 +f 5415 5034 5414 +f 5416 5035 5415 +f 5417 5036 5416 +f 5418 5037 5417 +f 5419 5038 5418 +f 5420 5039 5419 +f 5421 5039 5420 +f 5422 5044 5421 +f 5423 5045 5422 +f 5424 5046 5423 +f 5425 5047 5424 +f 5426 5048 5425 +f 5427 5042 5426 +f 5430 5068 5427 +f 5068 5430 5437 +f 5069 5437 5436 +f 5070 5436 5435 +f 5071 5435 5434 +f 5072 5434 5433 +f 5073 5433 5432 +f 5074 5432 5431 +f 5056 5431 5438 +f 5057 5438 5445 +f 5063 5445 5444 +f 5064 5444 5443 +f 5065 5443 5442 +f 5066 5442 5441 +f 5067 5441 5439 +f 5058 5439 5440 +f 5446 5059 5440 +f 5447 5060 5446 +f 5448 5447 5717 +f 5469 5448 5717 +f 5471 5469 5717 +f 5473 5471 5717 +f 5475 5473 5717 +f 5477 5475 5717 +f 5479 5477 5717 +f 5481 5479 5717 +f 5402 5481 5717 +f 4784 5402 5717 +f 5533 4784 5717 +f 5531 5533 5717 +f 5532 5531 5717 +f 5539 5532 5717 +f 5540 5539 5717 +f 5541 5540 5717 +f 5542 5541 5717 +f 5543 5542 5717 +f 5544 5543 5717 +f 5545 5544 5717 +f 5551 5545 5717 +f 5552 5551 5717 +f 5557 5552 5717 +f 5556 5557 5717 +f 5555 5556 5717 +f 5554 5555 5717 +f 5553 5554 5717 +f 5558 5553 5717 +f 5565 5558 5717 +f 5564 5565 5717 +f 5563 5564 5717 +f 5562 5563 5717 +f 5561 5562 5717 +f 5559 5561 5717 +f 5560 5559 5717 +f 5566 5560 5717 +f 5566 5108 5560 +f 5108 5078 5560 +f 5109 5108 5566 +f 5567 5109 5566 +f 5567 5566 5591 +f 5568 5567 5591 +f 5569 5568 5591 +f 5570 5569 5591 +f 5571 5570 5591 +f 5572 5571 5591 +f 5573 5572 5591 +f 5574 5573 5591 +f 5583 5574 5591 +f 5021 5583 5591 +f 5021 5116 5583 +f 5116 5123 5583 +f 5123 5582 5583 +f 5582 5586 5583 +f 5586 5587 5583 +f 5587 5588 5583 +f 5588 5589 5583 +f 5589 5590 5583 +f 5590 5581 5583 +f 5122 5581 5590 +f 5158 5122 5590 +f 5122 5158 5148 +f 5122 5148 5132 +f 5122 5132 5127 +f 5122 5127 5125 +f 5122 5125 5123 +f 5125 5127 5584 +f 5125 5584 5582 +f 5127 5585 5584 +f 5585 5586 5584 +f 5132 5586 5585 +f 5127 5132 5585 +f 5132 5148 5586 +f 5158 5156 5148 +f 5156 5157 5148 +f 5148 5157 5587 +f 5157 5156 5588 +f 5156 5158 5589 +f 5581 5122 5580 +f 5581 5580 5574 +f 5580 5579 5574 +f 5579 5578 5574 +f 5578 5577 5574 +f 5577 5576 5574 +f 5576 5575 5574 +f 5575 5120 5574 +f 5576 5120 5575 +f 5175 5120 5576 +f 5175 5121 5120 +f 5120 5121 5116 +f 5115 5120 5116 +f 5120 5115 5573 +f 5121 5122 5116 +f 5176 5121 5175 +f 5176 5175 5577 +f 5177 5121 5176 +f 5177 5176 5578 +f 5178 5121 5177 +f 5178 5177 5579 +f 5121 5178 5580 +f 5577 5175 5576 +f 5578 5176 5577 +f 5579 5177 5578 +f 5580 5178 5579 +f 5122 5121 5580 +f 5158 5590 5589 +f 5156 5589 5588 +f 5157 5588 5587 +f 5148 5587 5586 +f 5584 5586 5582 +f 5123 5125 5582 +f 5122 5123 5116 +f 5115 5116 5021 +f 5114 5115 5021 +f 5113 5114 5021 +f 5112 5113 5021 +f 5111 5112 5021 +f 5110 5111 5021 +f 5109 5110 5021 +f 5111 5110 5568 +f 5112 5111 5569 +f 5113 5112 5570 +f 5114 5113 5571 +f 5115 5114 5572 +f 5581 5574 5583 +f 5574 5120 5573 +f 5573 5115 5572 +f 5572 5114 5571 +f 5571 5113 5570 +f 5570 5112 5569 +f 5569 5111 5568 +f 5568 5110 5567 +f 5110 5109 5567 +f 5108 5109 5021 +f 5078 5559 5560 +f 5077 5561 5559 +f 5084 5562 5561 +f 5083 5563 5562 +f 5082 5564 5563 +f 5081 5565 5564 +f 5080 5558 5565 +f 5079 5553 5558 +f 5093 5554 5553 +f 5092 5555 5554 +f 5091 5556 5555 +f 5090 5557 5556 +f 5089 5552 5557 +f 5552 5089 5551 +f 5089 5192 5551 +f 5192 5195 5551 +f 5551 5195 5550 +f 5195 5196 5550 +f 5550 5196 5549 +f 5550 5549 5545 +f 5549 5548 5545 +f 5548 5547 5545 +f 5547 5546 5545 +f 5546 5149 5545 +f 5547 5149 5546 +f 5193 5149 5547 +f 5193 5192 5149 +f 5194 5192 5193 +f 5194 5193 5548 +f 5548 5193 5547 +f 5549 5194 5548 +f 5196 5194 5549 +f 5196 5195 5194 +f 5195 5192 5194 +f 5192 5089 5149 +f 5551 5550 5545 +f 5545 5149 5544 +f 5149 5101 5544 +f 5544 5101 5543 +f 5543 5100 5542 +f 5542 5099 5541 +f 5541 5098 5540 +f 5540 5097 5539 +f 5539 5105 5532 +f 5104 5531 5532 +f 5076 5533 5531 +f 5502 4784 5533 +f 5501 5502 5533 +f 5534 5501 5533 +f 5053 5534 5533 +f 5500 5501 5534 +f 5503 5500 5534 +f 5505 5503 5534 +f 5507 5505 5534 +f 5535 5507 5534 +f 5052 5535 5534 +f 5052 5146 5535 +f 5146 5536 5535 +f 5536 5509 5535 +f 5537 5509 5536 +f 5153 5537 5536 +f 5153 5155 5537 +f 5155 5538 5537 +f 5155 5174 5538 +f 5174 5530 5538 +f 5530 5511 5538 +f 5511 5509 5538 +f 5511 5186 5509 +f 5186 5152 5509 +f 5509 5152 5507 +f 5152 5145 5507 +f 5145 5152 5146 +f 5152 5153 5146 +f 5152 5186 5181 +f 5152 5181 5174 +f 5186 5187 5181 +f 5187 5188 5181 +f 5188 5189 5181 +f 5181 5189 5162 +f 5181 5162 5530 +f 5162 5516 5530 +f 5516 5515 5530 +f 5515 5513 5530 +f 5515 5188 5513 +f 5212 5188 5515 +f 5516 5212 5515 +f 5219 5212 5516 +f 5517 5219 5516 +f 5224 5219 5517 +f 5519 5224 5517 +f 5162 5519 5517 +f 5162 5521 5519 +f 5521 5230 5519 +f 5232 5230 5521 +f 5460 5232 5521 +f 5455 5232 5460 +f 5086 5455 5460 +f 5461 5086 5460 +f 5491 5461 5460 +f 5527 5491 5460 +f 5161 5527 5460 +f 5162 5161 5460 +f 5160 5161 5162 +f 5258 5160 5162 +f 5258 5257 5160 +f 5257 5528 5160 +f 5257 5256 5528 +f 5256 5529 5528 +f 5529 5161 5528 +f 5459 5161 5529 +f 5255 5459 5529 +f 5255 5254 5459 +f 5254 5495 5459 +f 5495 5490 5459 +f 5490 5458 5459 +f 5252 5458 5490 +f 5253 5252 5490 +f 5252 5253 5189 +f 5241 5252 5189 +f 5241 5189 5232 +f 5249 5241 5232 +f 5249 5232 5088 +f 5087 5249 5088 +f 5086 5087 5088 +f 5086 5522 5087 +f 5522 5264 5087 +f 5268 5264 5522 +f 5523 5268 5522 +f 5273 5268 5523 +f 5524 5273 5523 +f 5086 5524 5523 +f 5086 5526 5524 +f 5526 5525 5524 +f 5525 5278 5524 +f 5279 5278 5525 +f 5278 5279 5273 +f 5279 5280 5273 +f 5280 5281 5273 +f 5281 5282 5273 +f 5282 5283 5273 +f 5283 5241 5273 +f 5241 5283 5527 +f 5283 5282 5491 +f 5282 5281 5461 +f 5281 5280 5086 +f 5280 5279 5526 +f 5526 5279 5525 +f 5086 5280 5526 +f 5278 5273 5524 +f 5273 5241 5268 +f 5268 5241 5264 +f 5086 5523 5522 +f 5264 5249 5087 +f 5264 5241 5249 +f 5252 5241 5527 +f 5253 5254 5189 +f 5252 5161 5458 +f 5253 5490 5495 +f 5254 5253 5495 +f 5254 5255 5189 +f 5255 5256 5189 +f 5458 5161 5459 +f 5256 5255 5529 +f 5256 5257 5189 +f 5257 5258 5189 +f 5528 5161 5160 +f 5161 5252 5527 +f 5527 5283 5491 +f 5491 5282 5461 +f 5461 5281 5086 +f 5086 5088 5455 +f 5088 5232 5455 +f 5232 5189 5230 +f 5230 5189 5224 +f 5162 5460 5521 +f 5230 5224 5519 +f 5224 5189 5219 +f 5219 5189 5212 +f 5162 5517 5516 +f 5189 5258 5162 +f 5212 5189 5188 +f 5188 5187 5513 +f 5513 5187 5511 +f 5187 5186 5511 +f 5513 5511 5530 +f 5174 5181 5530 +f 5152 5174 5155 +f 5152 5155 5153 +f 5538 5509 5537 +f 5146 5153 5536 +f 5145 5146 5052 +f 5144 5145 5052 +f 5142 5144 5052 +f 5141 5142 5052 +f 5143 5141 5052 +f 5147 5143 5052 +f 5143 5147 5502 +f 5147 5504 5502 +f 5147 5055 5504 +f 5055 5506 5504 +f 5506 4784 5504 +f 5508 4784 5506 +f 5054 5508 5506 +f 5508 5510 4784 +f 5510 5512 4784 +f 5512 4785 4784 +f 4785 4782 4784 +f 4782 4783 4784 +f 4786 4782 4785 +f 4787 4786 4785 +f 5514 4787 4785 +f 5514 4789 4787 +f 4789 4788 4787 +f 4790 4788 4789 +f 4791 4790 4789 +f 4792 4790 4791 +f 4793 4792 4791 +f 5169 4793 4791 +f 5514 5169 4791 +f 5062 5169 5514 +f 5062 5207 5169 +f 5207 5168 5169 +f 5168 4803 5169 +f 4803 4801 5169 +f 5169 4801 4799 +f 5169 4799 4797 +f 5169 4797 4795 +f 4797 4796 4795 +f 4796 4794 4795 +f 4795 4794 4793 +f 4796 5207 4794 +f 4794 5207 4792 +f 4798 5207 4796 +f 4800 5207 4798 +f 4800 4798 4799 +f 4800 5218 5207 +f 4802 5218 4800 +f 4802 4800 4801 +f 4802 4804 5218 +f 4804 5223 5218 +f 5218 5223 5518 +f 5218 5518 5168 +f 5518 4805 5168 +f 5518 5520 4805 +f 5520 5456 4805 +f 5456 5103 4805 +f 4805 5103 5401 +f 4804 4805 5401 +f 5222 4804 5401 +f 5217 5222 5401 +f 5217 5401 5411 +f 5214 5217 5411 +f 5214 5411 5410 +f 5213 5214 5410 +f 5213 5410 5409 +f 5211 5213 5409 +f 5211 5409 5408 +f 5210 5211 5408 +f 5210 5408 5407 +f 5209 5210 5407 +f 5209 5407 5406 +f 5206 5209 5406 +f 5206 5406 5405 +f 5205 5206 5405 +f 5205 5405 5404 +f 5204 5205 5404 +f 5204 5404 5403 +f 5202 5204 5403 +f 5202 5403 5402 +f 4783 5202 5402 +f 5201 5202 4783 +f 5200 5201 4783 +f 5199 5200 4783 +f 5199 4783 5198 +f 5199 5198 5473 +f 5198 4783 5197 +f 5198 5197 5471 +f 5197 4783 5135 +f 5197 5135 5469 +f 5469 5135 5466 +f 5135 5134 5466 +f 5466 5134 5467 +f 5466 5467 5449 +f 5466 5449 5448 +f 5449 5133 5448 +f 5133 5061 5448 +f 5133 5134 5061 +f 5140 5134 5133 +f 5139 5140 5133 +f 5138 5139 5133 +f 5137 5138 5133 +f 5136 5137 5133 +f 5151 5137 5136 +f 5150 5151 5136 +f 5150 5136 5450 +f 5451 5150 5450 +f 5474 5451 5450 +f 5472 5474 5450 +f 5472 5450 5449 +f 5470 5472 5449 +f 5468 5470 5449 +f 5139 5470 5468 +f 5138 5472 5470 +f 5137 5474 5472 +f 5474 5452 5451 +f 5452 5154 5451 +f 5173 5154 5452 +f 5453 5173 5452 +f 5179 5173 5453 +f 5454 5179 5453 +f 5474 5454 5453 +f 5474 5476 5454 +f 5476 5478 5454 +f 5478 5480 5454 +f 5480 5172 5454 +f 5172 5182 5454 +f 5243 5182 5172 +f 5237 5243 5172 +f 5171 5237 5172 +f 5170 5171 5172 +f 5190 5170 5172 +f 5191 5190 5172 +f 5251 5191 5172 +f 4858 5251 5172 +f 4858 5172 5107 +f 5106 4858 5107 +f 5259 5106 5107 +f 5231 5259 5107 +f 5229 5231 5107 +f 5229 5107 5488 +f 5220 5229 5488 +f 5220 5488 5486 +f 5215 5220 5486 +f 5215 5486 5484 +f 5183 5215 5484 +f 5183 5484 5482 +f 5184 5183 5482 +f 5184 5482 5480 +f 5185 5184 5480 +f 5184 5185 5179 +f 5185 5180 5179 +f 5180 5185 5478 +f 5183 5184 5179 +f 5182 5183 5179 +f 5484 5172 5482 +f 5182 5215 5183 +f 5486 5172 5484 +f 5182 5220 5215 +f 5488 5172 5486 +f 5182 5229 5220 +f 5182 5231 5229 +f 5182 5233 5231 +f 5233 5234 5231 +f 5234 5233 5251 +f 5233 5286 5251 +f 5286 5233 5274 +f 5287 5286 5274 +f 5287 5274 5170 +f 5293 5286 5287 +f 5293 5287 5190 +f 5286 5293 5191 +f 5274 5233 5269 +f 5274 5269 5171 +f 5269 5233 5250 +f 5269 5250 5237 +f 5250 5233 5182 +f 5234 5259 5231 +f 5234 5265 5259 +f 5234 5270 5265 +f 5265 5270 5462 +f 5265 5462 5106 +f 5270 5463 5462 +f 5463 4858 5462 +f 5464 4858 5463 +f 5275 5464 5463 +f 5275 5284 5464 +f 5284 5465 5464 +f 5284 5289 5465 +f 5289 5457 5465 +f 5457 4858 5465 +f 5242 4858 5457 +f 5295 5242 5457 +f 5295 5294 5242 +f 5294 5085 5242 +f 5294 5296 5085 +f 5296 4859 5085 +f 4859 4858 5085 +f 4857 4858 4859 +f 5288 4857 4859 +f 5288 5234 4857 +f 5234 5288 5284 +f 5234 4858 4857 +f 5296 5288 4859 +f 5288 5296 5289 +f 5296 5294 5289 +f 5294 5295 5289 +f 5085 4858 5242 +f 5289 5295 5457 +f 5288 5289 5284 +f 5234 5284 5275 +f 5465 4858 5464 +f 5270 5275 5463 +f 5234 5275 5270 +f 5259 5265 5106 +f 5462 4858 5106 +f 5107 5172 5488 +f 4858 5234 5251 +f 5251 5286 5191 +f 5191 5293 5190 +f 5190 5287 5170 +f 5170 5274 5171 +f 5171 5269 5237 +f 5237 5250 5243 +f 5250 5182 5243 +f 5482 5172 5480 +f 5185 5480 5478 +f 5180 5478 5476 +f 5151 5180 5476 +f 5180 5151 5173 +f 5151 5476 5474 +f 5182 5179 5454 +f 5179 5180 5173 +f 5173 5151 5154 +f 5474 5453 5452 +f 5154 5150 5451 +f 5450 5136 5449 +f 5154 5151 5150 +f 5137 5151 5474 +f 5138 5137 5472 +f 5139 5138 5470 +f 5140 5139 5468 +f 5140 5468 5467 +f 5136 5133 5449 +f 5467 5468 5449 +f 5134 5140 5467 +f 5134 5135 5061 +f 5135 4783 5061 +f 5200 5199 5475 +f 5201 5200 5477 +f 5201 5203 5202 +f 5203 5201 5479 +f 5203 5204 5202 +f 5404 5481 5403 +f 5483 5481 5404 +f 5483 5208 5481 +f 5208 5203 5481 +f 5203 5208 5206 +f 5216 5208 5483 +f 5485 5216 5483 +f 5410 5485 5483 +f 5221 5216 5485 +f 5487 5221 5485 +f 5401 5487 5485 +f 5489 5487 5401 +f 5489 5226 5487 +f 5227 5226 5489 +f 5103 5227 5489 +f 5244 5227 5103 +f 5102 5244 5103 +f 5032 5102 5103 +f 4855 5032 5103 +f 4855 5239 5032 +f 5239 5238 5032 +f 5032 5238 4958 +f 5032 4958 4960 +f 5032 4960 5240 +f 5032 5240 5429 +f 5032 5429 5494 +f 5032 5494 5493 +f 5032 5493 5492 +f 5032 5492 5236 +f 5492 5266 5236 +f 5266 5260 5236 +f 5236 5260 5102 +f 5266 5261 5260 +f 5260 5261 5244 +f 5261 5262 5244 +f 5262 5245 5244 +f 5245 5262 5240 +f 5262 5261 5429 +f 5271 5261 5266 +f 5276 5261 5271 +f 5276 5271 5493 +f 5261 5276 5494 +f 5271 5266 5492 +f 5493 5271 5492 +f 5494 5276 5493 +f 5429 5261 5494 +f 5240 5262 5429 +f 4960 5245 5240 +f 5246 5245 4960 +f 4959 5246 4960 +f 5247 5246 4959 +f 4958 5247 4959 +f 5246 5247 5227 +f 5247 5238 5227 +f 5238 5225 5227 +f 5227 5225 5222 +f 5245 5246 5227 +f 4958 4959 4960 +f 5238 5247 4958 +f 5238 5239 5225 +f 5239 5248 5225 +f 5225 5248 5456 +f 5228 5225 5456 +f 5225 5228 4804 +f 5248 5096 5456 +f 5096 4855 5456 +f 5095 4855 5096 +f 5263 5095 5096 +f 5263 5267 5095 +f 5267 5497 5095 +f 5267 5272 5497 +f 5272 5498 5497 +f 5498 4855 5497 +f 5499 4855 5498 +f 5277 5499 5498 +f 5277 5285 5499 +f 5285 5496 5499 +f 5285 5292 5496 +f 5292 5428 5496 +f 5428 4855 5496 +f 5235 4855 5428 +f 5297 5235 5428 +f 5297 5298 5235 +f 5298 4883 5235 +f 5298 5291 4883 +f 5291 4856 4883 +f 4856 4855 4883 +f 4854 4855 4856 +f 5290 4854 4856 +f 5290 5239 4854 +f 5239 5290 5285 +f 5290 5291 5285 +f 5291 5290 4856 +f 5291 5298 5297 +f 5291 5297 5292 +f 4883 4855 5235 +f 5292 5297 5428 +f 5291 5292 5285 +f 5239 5285 5277 +f 5239 5277 5272 +f 5496 4855 5499 +f 5272 5277 5498 +f 5239 5272 5267 +f 5239 5267 5263 +f 5497 4855 5095 +f 5248 5263 5096 +f 5239 5263 5248 +f 5239 4855 4854 +f 5032 5236 5102 +f 5260 5244 5102 +f 5244 5245 5227 +f 5226 5227 5222 +f 5221 5226 5222 +f 5226 5221 5487 +f 5221 5222 5216 +f 5216 5217 5208 +f 5203 5205 5204 +f 5405 5483 5404 +f 5203 5206 5205 +f 5406 5483 5405 +f 5208 5209 5206 +f 5407 5483 5406 +f 5208 5210 5209 +f 5408 5483 5407 +f 5208 5211 5210 +f 5409 5483 5408 +f 5208 5213 5211 +f 5410 5483 5409 +f 5208 5214 5213 +f 5411 5485 5410 +f 5217 5214 5208 +f 5411 5401 5485 +f 5222 5217 5216 +f 5225 4804 5222 +f 4805 4804 4803 +f 5103 5489 5401 +f 5456 4855 5103 +f 5228 5456 5520 +f 5223 5228 5520 +f 5223 5520 5518 +f 5228 5223 4804 +f 4804 4802 4803 +f 4798 4796 4797 +f 4799 4798 4797 +f 4801 4800 4799 +f 4803 4802 4801 +f 4805 4803 5168 +f 5207 5218 5168 +f 5207 5062 4788 +f 4788 5062 4786 +f 5169 4795 4793 +f 4794 4792 4793 +f 4792 5207 4790 +f 4790 5207 4788 +f 5514 4791 4789 +f 4788 4786 4787 +f 5512 5514 4785 +f 5049 5514 5512 +f 5050 5512 5510 +f 5051 5510 5508 +f 5141 5143 5501 +f 5142 5141 5500 +f 5144 5142 5503 +f 5145 5144 5505 +f 5509 5507 5535 +f 5507 5145 5505 +f 5505 5144 5503 +f 5503 5142 5500 +f 5500 5141 5501 +f 5143 5502 5501 +f 5504 4784 5502 +f 4783 5402 4784 +f 5403 5481 5402 +f 5481 5203 5479 +f 5479 5201 5477 +f 5477 5200 5475 +f 5475 5199 5473 +f 5473 5198 5471 +f 5471 5197 5469 +f 5469 5466 5448 +f 5448 5061 5447 +f 5686 5685 5716 +f 5685 5391 5716 +f 5391 5389 5716 +f 5389 5387 5716 +f 5387 5385 5716 +f 5385 4779 5716 +f 4779 4775 5716 +f 4775 4771 5716 +f 4771 4767 5716 +f 4767 4763 5716 +f 4763 4759 5716 +f 4763 4764 4759 +f 4764 4760 4759 +f 4759 4760 4755 +f 4760 4756 4755 +f 4756 4760 4925 +f 4752 4756 4925 +f 4752 4925 4919 +f 4745 4752 4919 +f 4747 4745 4919 +f 4749 4747 4919 +f 4753 4749 4919 +f 4757 4753 4919 +f 4761 4757 4919 +f 4765 4761 4919 +f 4769 4765 4919 +f 4773 4769 4919 +f 4777 4773 4919 +f 4781 4777 4919 +f 4961 4781 4919 +f 4920 4961 4919 +f 5017 4961 4920 +f 5017 4920 5675 +f 5676 5017 5675 +f 5677 5676 5675 +f 5678 5677 5675 +f 5678 5018 5677 +f 5018 5019 5677 +f 5019 5018 5017 +f 4961 5018 5678 +f 5679 4961 5678 +f 5679 5678 5394 +f 5396 5679 5394 +f 4985 5396 5394 +f 4981 4985 5394 +f 4981 5394 5392 +f 4977 4981 5392 +f 4977 5392 5390 +f 4973 4977 5390 +f 4973 5390 5388 +f 4969 4973 5388 +f 4969 5388 5386 +f 4965 4969 5386 +f 4965 5386 5384 +f 4781 4965 5384 +f 4781 5384 4778 +f 5386 5678 5384 +f 4961 4969 4965 +f 5388 5678 5386 +f 4961 4973 4969 +f 5390 5678 5388 +f 4961 4977 4973 +f 5392 5678 5390 +f 4961 4981 4977 +f 4961 4985 4981 +f 4961 4989 4985 +f 4961 4995 4989 +f 4995 4996 4989 +f 4989 4996 5398 +f 4989 5398 5396 +f 5398 5680 5396 +f 5681 5680 5398 +f 5682 5681 5398 +f 5683 5682 5398 +f 5684 5683 5398 +f 5400 5684 5398 +f 5685 5684 5400 +f 5685 5400 5399 +f 5685 5399 5397 +f 5685 5397 5395 +f 5685 5395 5393 +f 5395 4986 5393 +f 4986 4982 5393 +f 5393 4982 5391 +f 4982 4978 5391 +f 4982 4962 4978 +f 4978 4962 4974 +f 4978 4974 5389 +f 4974 4962 4970 +f 4974 4970 5387 +f 4970 4962 4966 +f 4970 4966 5385 +f 4966 4962 4780 +f 4966 4780 4779 +f 4780 4962 4776 +f 4780 4776 4775 +f 4776 4962 4925 +f 4772 4776 4925 +f 4768 4772 4925 +f 4764 4768 4925 +f 4772 4768 4767 +f 4776 4772 4771 +f 4986 4962 4982 +f 4990 4962 4986 +f 4997 4962 4990 +f 4997 4990 5397 +f 5006 4962 4997 +f 5006 4997 5399 +f 5016 4962 5006 +f 5005 5016 5006 +f 5005 5006 4996 +f 5009 5005 4996 +f 5008 5009 4996 +f 5007 5008 4996 +f 5010 5007 4996 +f 5007 5010 5681 +f 5008 5007 5682 +f 5009 5008 5683 +f 5005 5009 5684 +f 4996 5006 5400 +f 5016 5005 5684 +f 4990 4986 5395 +f 5397 4990 5395 +f 5399 4997 5397 +f 5400 5006 5399 +f 5685 5016 5684 +f 5020 5016 5685 +f 5684 5009 5683 +f 5683 5008 5682 +f 5682 5007 5681 +f 5681 5010 5680 +f 5010 4995 5680 +f 5680 4995 5679 +f 4996 5400 5398 +f 4995 5010 4996 +f 4985 4989 5396 +f 5680 5679 5396 +f 5394 5678 5392 +f 4995 4961 5679 +f 5677 5019 5676 +f 5019 5017 5676 +f 5018 4961 5017 +f 4961 4965 4781 +f 4777 4781 4778 +f 4773 4777 4774 +f 4769 4773 4770 +f 4765 4769 4766 +f 4761 4765 4762 +f 4757 4761 4758 +f 4753 4757 4754 +f 4749 4753 4750 +f 4747 4749 4748 +f 4745 4747 4746 +f 4752 4745 4744 +f 4919 4925 4948 +f 4951 4919 4948 +f 4951 4948 5330 +f 4954 4919 4951 +f 4954 4951 5331 +f 5332 4954 5331 +f 4629 4954 5332 +f 4628 4629 5332 +f 5714 4628 5332 +f 4628 5714 4626 +f 4627 4628 4626 +f 4625 4627 4626 +f 4625 4626 4624 +f 4623 4625 4624 +f 4623 4624 4622 +f 4621 4623 4622 +f 4621 4622 4620 +f 4619 4621 4620 +f 4619 4620 4618 +f 4617 4619 4618 +f 4617 4618 4616 +f 4615 4617 4616 +f 4615 4616 4614 +f 4613 4615 4614 +f 4616 5714 4614 +f 4919 4617 4615 +f 4618 5714 4616 +f 4919 4619 4617 +f 4620 5714 4618 +f 4919 4621 4619 +f 4622 5714 4620 +f 4919 4623 4621 +f 4624 5714 4622 +f 4919 4625 4623 +f 4919 4627 4625 +f 4919 4629 4627 +f 4626 5714 4624 +f 4627 4629 4628 +f 4629 4919 4954 +f 4948 4925 4945 +f 4948 4945 5329 +f 4945 4925 4942 +f 4945 4942 5328 +f 4942 4925 4939 +f 4942 4939 5327 +f 4939 4925 4936 +f 4939 4936 5326 +f 4936 4925 4933 +f 4936 4933 5325 +f 5325 4933 5324 +f 4756 4752 4751 +f 4760 4764 4925 +f 4768 4764 4763 +f 4767 4768 4763 +f 4771 4772 4767 +f 4775 4776 4771 +f 4779 4780 4775 +f 5385 4966 4779 +f 5387 4970 5385 +f 5389 4974 5387 +f 5391 4978 5389 +f 5685 5393 5391 +f 5413 5412 5718 +f 5413 5041 5412 +f 5412 5040 5705 +f 5031 5704 5705 +f 5023 5706 5704 +f 5022 5707 5706 +f 5024 5708 5707 +f 5030 5709 5708 +f 5029 5710 5709 +f 5028 5703 5710 +f 5027 5698 5703 +f 5166 5699 5698 +f 5167 5166 5698 +f 5026 5167 5698 +f 5166 5167 5026 +f 5165 5166 5026 +f 5164 5165 5026 +f 5163 5164 5026 +f 5159 5163 5026 +f 5117 5159 5026 +f 5159 5117 5696 +f 5697 5159 5696 +f 5117 5118 5696 +f 5696 5118 5695 +f 5696 5695 5687 +f 5695 5694 5687 +f 5694 5693 5687 +f 5693 5692 5687 +f 5692 5688 5687 +f 5692 5689 5688 +f 5689 5119 5688 +f 5119 5025 5688 +f 5119 5118 5025 +f 5124 5118 5119 +f 5126 5118 5124 +f 5126 5124 5690 +f 5691 5126 5690 +f 5692 5691 5690 +f 5692 5130 5691 +f 5128 5130 5692 +f 5130 5128 5126 +f 5128 5129 5126 +f 5129 5131 5126 +f 5131 5129 5694 +f 5129 5128 5693 +f 5130 5126 5691 +f 5690 5124 5689 +f 5131 5118 5126 +f 5124 5119 5689 +f 5692 5690 5689 +f 5693 5128 5692 +f 5694 5129 5693 +f 5695 5131 5694 +f 5118 5131 5695 +f 5118 5117 5025 +f 5163 5159 5702 +f 5164 5163 5701 +f 5165 5164 5700 +f 5166 5165 5699 +f 5165 5700 5699 +f 5164 5701 5700 +f 5163 5702 5701 +f 5159 5697 5702 +f 5697 5696 5687 +f 5688 5025 5687 +f 5686 5020 5685 +f 5117 5026 5025 +f 5027 5026 5698 +f 5028 5027 5703 +f 5029 5028 5710 +f 5030 5029 5709 +f 5024 5030 5708 +f 5022 5024 5707 +f 5023 5022 5706 +f 5031 5023 5704 +f 5020 4962 5016 +f 5040 5031 5705 +f 5041 5040 5412 +f 5033 5041 5413 +f 5034 5033 5414 +f 5035 5034 5415 +f 5036 5035 5416 +f 5037 5036 5417 +f 5038 5037 5418 +f 5039 5038 5419 +f 5044 5039 5421 +f 5045 5044 5422 +f 5046 5045 5423 +f 5047 5046 5424 +f 5048 5047 5425 +f 5042 5048 5426 +f 5043 5042 5427 +f 5068 5043 5427 +f 5069 5068 5437 +f 5070 5069 5436 +f 5071 5070 5435 +f 5072 5071 5434 +f 5073 5072 5433 +f 5074 5073 5432 +f 5075 5074 5431 +f 5056 5075 5431 +f 5057 5056 5438 +f 5063 5057 5445 +f 5064 5063 5444 +f 5065 5064 5443 +f 5066 5065 5442 +f 5067 5066 5441 +f 5058 5067 5439 +f 5059 5058 5440 +f 5060 5059 5446 +f 5061 5060 5447 +f 4783 4782 5061 +f 4786 5062 4782 +f 5049 5062 5514 +f 5050 5049 5512 +f 5051 5050 5510 +f 5054 5051 5508 +f 5055 5054 5506 +f 5055 5147 5052 +f 5053 5052 5534 +f 5076 5053 5533 +f 4962 4963 4925 +f 5104 5076 5531 +f 5105 5104 5532 +f 5097 5105 5539 +f 5098 5097 5540 +f 5099 5098 5541 +f 5100 5099 5542 +f 5101 5100 5543 +f 5149 5089 5101 +f 5090 5089 5557 +f 5091 5090 5556 +f 5092 5091 5555 +f 5093 5092 5554 +f 5094 5093 5553 +f 5079 5094 5553 +f 5080 5079 5558 +f 5081 5080 5565 +f 5082 5081 5564 +f 5083 5082 5563 +f 5084 5083 5562 +f 5077 5084 5561 +f 5078 5077 5559 +f 5078 5108 5021 +f 5345 5592 5343 +f 4991 4992 4987 +f 4991 4998 4992 +f 4991 5011 4998 +f 4998 5011 5349 +f 5603 5593 5349 +f 5347 5592 5345 +f 5012 5593 5603 +f 4991 5012 5011 +f 4991 5021 5591 +f 5591 5566 5717 +f 5337 5592 5335 +f 4967 5335 5333 +f 4667 5333 4664 +f 4663 4664 4660 +f 4659 4660 4656 +f 4655 4656 4652 +f 4651 4652 4648 +f 4647 4648 4644 +f 4643 4644 4640 +f 4639 4640 4636 +f 4634 4636 5606 +f 5381 5606 5379 +f 4949 4952 5379 +f 4930 4949 4946 +f 4930 4946 4943 +f 4930 4943 4940 +f 5377 5715 5375 +f 4940 4943 5373 +f 4930 4940 4937 +f 4930 4937 4934 +f 4930 4934 4743 +f 5371 5715 5369 +f 4743 4934 5367 +f 4735 4739 4736 +f 4731 4735 4732 +f 4727 4731 4728 +f 4723 4727 4724 +f 4719 4723 4720 +f 4847 4884 4911 +f 4715 4719 4716 +f 4709 4707 4884 +f 4707 4709 4708 +f 4711 4715 4712 +f 4709 4710 4708 +f 4706 4707 4708 +f 4713 4714 4706 +f 4717 4718 4713 +f 4721 4722 4717 +f 4725 4726 4721 +f 4729 4730 4725 +f 4733 4734 4729 +f 4737 4738 4733 +f 4741 4742 4737 +f 5606 5368 4741 +f 4884 4931 5606 +f 4703 4699 5605 +f 5351 4888 4703 +f 5353 4892 5351 +f 5355 4896 5353 +f 5357 4900 5355 +f 5359 4904 5357 +f 5361 4908 5359 +f 5363 4912 5361 +f 5365 4916 5363 +f 5366 4918 5365 +f 4915 4918 5366 +f 4884 4915 4911 +f 4847 4911 4907 +f 4847 4907 4903 +f 5364 5604 5362 +f 5604 4712 5712 +f 4903 4907 5360 +f 4847 4903 4899 +f 4847 4899 4895 +f 4847 4895 4891 +f 5358 5712 5356 +f 4891 4895 5354 +f 4847 4891 4887 +f 4847 4887 4705 +f 5352 5712 5350 +f 4701 4702 4698 +f 4847 4705 4701 +f 4693 4697 4694 +f 4693 4694 4690 +f 4685 4681 4814 +f 4681 4685 4682 +f 4689 4693 4690 +f 4694 5712 4690 +f 4685 4686 4682 +f 4681 4682 4678 +f 4677 4678 4674 +f 4673 4674 4672 +f 4671 4672 4670 +f 4668 4670 5608 +f 4814 4862 5608 +f 4823 4814 4821 +f 4828 4814 4823 +f 4828 4823 5632 +f 4830 4814 4828 +f 4830 4828 5633 +f 4837 4814 4830 +f 4823 4821 5631 +f 5632 4823 5631 +f 5633 4828 5632 +f 4837 4830 5633 +f 4842 4814 4837 +f 4844 4842 5635 +f 5634 5630 5629 +f 4817 4816 5629 +f 4815 4818 4816 +f 4815 4819 4818 +f 4815 4825 4819 +f 4825 4826 4819 +f 4825 4836 4826 +f 4826 4836 5621 +f 4826 5621 5620 +f 4836 5622 5621 +f 5622 5618 5621 +f 5623 5618 5622 +f 4838 5623 5622 +f 4838 4839 5623 +f 4839 5624 5623 +f 4839 4841 5624 +f 4841 5625 5624 +f 5625 5618 5624 +f 5626 5618 5625 +f 4840 5626 5625 +f 4840 4825 5626 +f 4825 5627 5626 +f 4825 4840 4839 +f 5627 5618 5626 +f 4815 5618 5627 +f 4841 4840 5625 +f 4840 4841 4839 +f 4825 4839 4838 +f 5624 5618 5623 +f 4836 4838 5622 +f 4825 4838 4836 +f 4825 4815 5627 +f 4819 4826 5620 +f 5621 5618 5620 +f 5619 5635 5628 +f 5636 4844 5635 +f 4815 5617 5618 +f 5637 4848 5636 +f 5617 5712 5638 +f 4850 4848 5637 +f 4850 4847 4848 +f 4930 4743 4847 +f 4963 4930 4925 +f 4933 4925 4932 +f 4933 4932 5324 +f 5323 4924 5322 +f 5322 4923 5321 +f 5321 4929 5320 +f 5320 4928 5319 +f 5319 4927 5318 +f 5318 4926 5317 +f 4926 4922 5317 +f 5317 4922 5316 +f 5316 4921 4594 +f 4592 4593 4594 +f 4595 4596 4593 +f 4597 4598 4596 +f 4599 4600 4598 +f 4601 4602 4600 +f 4603 4604 4602 +f 4605 4606 4604 +f 4607 4608 4606 +f 4609 4610 4608 +f 4614 5714 4612 +f 4613 4614 4612 +f 4919 4615 4613 +f 4609 4611 4610 +f 4607 4609 4608 +f 4605 4607 4606 +f 4603 4605 4604 +f 4601 4603 4602 +f 4599 4601 4600 +f 4597 4599 4598 +f 4595 4597 4596 +f 4592 4595 4593 +f 4921 4592 4594 +f 4922 4921 5316 +f 4922 4926 4851 +f 5711 5713 5312 +f 4910 4906 5310 +f 4906 4851 4902 +f 4902 4851 4898 +f 4898 4851 4894 +f 5711 5308 5306 +f 4898 4894 5304 +f 4894 4851 4890 +f 4890 4851 4886 +f 4886 4851 4590 +f 5711 5302 5300 +f 4886 4590 4589 +f 4590 4851 4586 +f 4851 4852 4849 +f 4852 4853 5639 +f 5712 5639 5638 +f 5640 5711 5645 +f 4740 5715 5712 +f 5715 5717 5716 +f 5325 5324 5711 +f 5326 4936 5325 +f 5327 4939 5326 +f 5328 4942 5327 +f 5329 4945 5328 +f 5330 4948 5329 +f 5331 4951 5330 +f 5714 5332 5331 +f 4759 4755 5716 +f 4755 4756 4751 +f 4751 4752 4744 +f 4744 4745 4746 +f 4747 4748 4746 +f 4749 4750 4748 +f 4753 4754 4750 +f 4757 4758 4754 +f 4761 4762 4758 +f 4765 4766 4762 +f 4769 4770 4766 +f 4773 4774 4770 +f 4777 4778 4774 +f 5384 5678 4778 +f 5678 5675 5674 +f 5675 4920 5674 +f 4920 4919 4877 +f 4919 4874 4877 +f 4874 4885 4591 +f 4587 4591 4588 +f 4583 4587 4584 +f 4579 4583 4580 +f 4575 4579 4576 +f 4571 4575 4572 +f 4571 4572 4568 +f 4575 4576 4572 +f 4579 4580 4576 +f 4583 4584 4580 +f 4587 4588 4584 +f 5299 5713 4588 +f 5713 5714 5673 +f 5673 4876 5672 +f 5672 5671 5670 +f 4875 4872 5670 +f 4872 4567 4870 +f 4567 4563 4870 +f 4866 4864 5666 +f 5667 4866 5666 +f 5668 4868 5667 +f 4560 5669 5668 +f 4559 4563 4560 +f 4559 4557 4860 +f 4558 5665 5664 +f 4861 4860 5664 +f 4557 4845 4860 +f 4809 4845 4843 +f 4810 4809 4808 +f 4811 4810 4808 +f 4809 4806 4808 +f 5659 4835 5658 +f 5658 4834 5657 +f 5657 4833 5656 +f 5656 4832 5655 +f 4832 4824 5655 +f 4824 4810 4811 +f 5661 5660 5654 +f 4811 4808 5653 +f 5648 5661 5652 +f 4806 4807 4808 +f 4812 4813 4807 +f 5647 5662 5648 +f 4812 4820 4813 +f 5649 5662 5647 +f 4812 4822 4820 +f 5650 5662 5649 +f 4812 4827 4822 +f 5651 5662 5650 +f 5646 5662 5651 +f 5642 5662 5646 +f 4812 4829 4827 +f 5641 5662 5642 +f 4806 4812 4807 +f 4809 4843 4806 +f 4843 4846 5644 +f 5645 5711 5644 +f 5643 5662 5641 +f 5711 4585 4581 +f 4581 4582 4577 +f 4577 4578 4573 +f 4573 4574 4569 +f 4569 4570 4565 +f 4565 4566 4561 +f 4561 4562 4554 +f 5662 4556 5663 +f 4555 4557 4556 +f 4562 4555 4554 + diff --git a/resources/meshes/ultimaker_sketch_platform.obj b/resources/meshes/ultimaker_sketch_platform.obj new file mode 100644 index 0000000000..a443a8e1fd --- /dev/null +++ b/resources/meshes/ultimaker_sketch_platform.obj @@ -0,0 +1,26728 @@ +# Exported from 3D Builder +o Object.1 +v 13.971136 -86.230232 0.538066 +v 13.969720 -86.222855 0.367704 +v 13.969720 -86.222855 0.708427 +v 13.749157 -86.262581 0.538066 +v 14.189322 -86.178116 0.538066 +v 13.748408 -86.255104 0.367704 +v 14.187251 -86.170898 0.367704 +v 13.748408 -86.255104 0.708427 +v 14.187251 -86.170898 0.708427 +v 13.965483 -86.200775 0.198666 +v 13.965483 -86.200775 0.877466 +v 13.964671 -86.196541 0.894557 +v 13.746167 -86.232735 0.877466 +v 14.181051 -86.149284 0.877466 +v 13.525171 -86.274902 0.538066 +v 14.401958 -86.106651 0.538066 +v 13.742970 -86.233047 0.198666 +v 14.184138 -86.148392 0.198666 +v 13.963414 -86.189995 0.910872 +v 13.742546 -86.228767 0.894557 +v 14.182945 -86.144257 0.894557 +v 13.525096 -86.267387 0.367704 +v 14.399247 -86.099648 0.367704 +v 13.525096 -86.267387 0.708427 +v 14.399247 -86.099648 0.708427 +v 13.961738 -86.181259 0.926087 +v 13.741890 -86.222130 0.910872 +v 14.181099 -86.137848 0.910872 +v 13.960548 -86.175056 0.101599 +v 13.741014 -86.213272 0.926087 +v 14.178635 -86.129295 0.926087 +v 13.959674 -86.170502 0.939900 +v 13.740394 -86.206993 0.101599 +v 14.176887 -86.123230 0.101599 +v 13.524869 -86.244904 0.877466 +v 14.391135 -86.078674 0.877466 +v 13.518443 -86.244965 0.198666 +v 14.397126 -86.076347 0.198666 +v 13.739938 -86.202377 0.939900 +v 14.175602 -86.118782 0.939900 +v 13.957266 -86.157951 0.952035 +v 13.518411 -86.240654 0.894557 +v 14.395561 -86.072334 0.894557 +v 13.848334 -86.176292 0.952035 +v 14.065249 -86.134666 0.952035 +v 13.518361 -86.233986 0.910872 +v 14.393139 -86.066124 0.910872 +v 13.738681 -86.189659 0.952035 +v 14.172061 -86.106499 0.952035 +v 13.300983 -86.267097 0.538066 +v 14.607333 -86.016418 0.538066 +v 13.518294 -86.225090 0.926087 +v 14.389908 -86.057831 0.926087 +v 13.628532 -86.198021 0.952035 +v 14.277481 -86.073494 0.952035 +v 13.518248 -86.218781 0.101599 +v 14.387616 -86.051949 0.101599 +v 13.301581 -86.259605 0.367704 +v 14.604005 -86.009682 0.367704 +v 13.301581 -86.259605 0.708427 +v 14.604005 -86.009682 0.708427 +v 13.952517 -86.133202 0.010544 +v 13.518213 -86.214142 0.939900 +v 14.385931 -86.047630 0.939900 +v 13.736201 -86.164581 0.010544 +v 14.165081 -86.082283 0.010544 +v 13.518118 -86.201363 0.952035 +v 14.381289 -86.035721 0.952035 +v 13.303371 -86.237190 0.877466 +v 14.594045 -85.989517 0.877466 +v 13.293764 -86.236404 0.198666 +v 14.602679 -85.985229 0.198666 +v 13.294124 -86.232117 0.894557 +v 14.600756 -85.981377 0.894558 +v 13.294681 -86.225471 0.910872 +v 14.597779 -85.975410 0.910873 +v 13.407665 -86.199669 0.952035 +v 14.483270 -85.993271 0.952035 +v 13.517929 -86.176155 0.010544 +v 14.372135 -86.012245 0.010544 +v 13.295424 -86.216606 0.926087 +v 14.593807 -85.967453 0.926088 +v 13.295950 -86.210312 0.101599 +v 14.590990 -85.961800 0.101599 +v 13.296337 -86.205688 0.939900 +v 14.588920 -85.957657 0.939901 +v 13.941630 -86.076469 -0.071739 +v 13.078397 -86.239227 0.538066 +v 14.803792 -85.908134 0.538067 +v 13.297404 -86.192955 0.952035 +v 14.583213 -85.946220 0.952036 +v 13.730519 -86.107094 -0.071739 +v 14.149081 -86.026772 -0.071739 +v 13.079664 -86.231819 0.367704 +v 14.799872 -85.901718 0.367705 +v 13.079664 -86.231819 0.708427 +v 14.799872 -85.901718 0.708428 +v 13.083456 -86.209656 0.877466 +v 14.788146 -85.882538 0.877467 +v 13.299509 -86.167839 0.010544 +v 14.571962 -85.923668 0.010545 +v 13.070793 -86.207451 0.198666 +v 14.799095 -85.875801 0.198667 +v 13.517498 -86.118393 -0.071739 +v 14.351153 -85.958420 -0.071738 +v 13.187564 -86.181229 0.952035 +v 14.680911 -85.894661 0.952036 +v 13.071542 -86.203209 0.894557 +v 14.796829 -85.872139 0.894558 +v 13.072701 -86.196648 0.910872 +v 14.793323 -85.866470 0.910873 +v 13.074246 -86.187881 0.926087 +v 14.788643 -85.858902 0.926088 +v 13.075343 -86.181671 0.101599 +v 14.785324 -85.853531 0.101600 +v 13.076149 -86.177101 0.939900 +v 14.782885 -85.849594 0.939901 +v 13.928219 -86.006584 -0.142757 +v 13.078370 -86.164513 0.952035 +v 14.776161 -85.838722 0.952036 +v 13.723519 -86.036278 -0.142757 +v 14.129371 -85.958397 -0.142756 +v 13.304332 -86.110275 -0.071739 +v 14.546174 -85.871971 -0.071738 +v 12.859206 -86.191513 0.538066 +v 14.989753 -85.782677 0.538067 +v 12.861132 -86.184250 0.367704 +v 14.985275 -85.776642 0.367705 +v 12.861132 -86.184250 0.708427 +v 14.985275 -85.776642 0.708428 +v 13.082749 -86.139694 0.010544 +v 14.762907 -85.817284 0.010545 +v 13.516967 -86.047234 -0.142757 +v 14.325308 -85.892120 -0.142756 +v 12.970051 -86.142845 0.952035 +v 14.868767 -85.778496 0.952036 +v 12.866895 -86.162514 0.877466 +v 14.971876 -85.758583 0.877467 +v 13.819054 -85.974449 1.108758 +v 14.017735 -85.936317 1.108758 +v 12.851379 -86.158348 0.198666 +v 14.984747 -85.748962 0.198667 +v 12.852510 -86.154190 0.894557 +v 14.982158 -85.745529 0.894558 +v 12.854262 -86.147758 0.910872 +v 14.978148 -85.740196 0.910873 +v 13.617728 -85.994347 1.108757 +v 14.212127 -85.880287 1.108758 +v 12.856598 -86.139168 0.926087 +v 14.972800 -85.733086 0.926088 +v 12.858255 -86.133080 0.101599 +v 14.969007 -85.728043 0.101600 +v 12.859473 -86.128609 0.939900 +v 14.966220 -85.724335 0.939901 +v 13.912690 -85.925659 -0.200356 +v 13.092788 -86.082809 -0.071739 +v 14.732525 -85.768150 -0.071738 +v 13.310274 -86.039360 -0.142757 +v 14.514405 -85.808296 -0.142756 +v 13.715413 -85.954277 -0.200356 +v 14.106548 -85.879219 -0.200356 +v 12.862830 -86.116272 0.952035 +v 14.958536 -85.714119 0.952036 +v 13.415427 -85.995857 1.108757 +v 14.400617 -85.806808 1.108758 +v 12.869448 -86.091957 0.010544 +v 14.943387 -85.693977 0.010545 +v 13.516352 -85.964836 -0.200356 +v 14.295380 -85.815346 -0.200356 +v 12.645174 -86.124344 0.538066 +v 15.163719 -85.641052 0.538067 +v 12.647743 -86.117279 0.367704 +v 15.158718 -85.635445 0.367705 +v 12.647743 -86.117279 0.708427 +v 15.158718 -85.635445 0.708428 +v 12.756929 -86.084846 0.952035 +v 15.045280 -85.645729 0.952036 +v 13.105153 -86.012726 -0.142757 +v 14.695098 -85.707626 -0.142756 +v 12.655432 -86.096153 0.877466 +v 15.143754 -85.618660 0.877467 +v 13.213827 -85.978966 1.108758 +v 14.581645 -85.716492 1.108758 +v 12.637341 -86.089485 0.198666 +v 15.158094 -85.605774 0.198667 +v 13.317154 -85.957253 -0.200356 +v 14.477620 -85.734566 -0.200356 +v 12.638845 -86.085457 0.894557 +v 15.155203 -85.602585 0.894558 +v 12.884617 -86.036217 -0.071739 +v 14.908663 -85.647812 -0.071738 +v 12.641174 -86.079208 0.910872 +v 15.150726 -85.597641 0.910873 +v 13.895514 -85.836151 -0.242794 +v 12.644281 -86.070869 0.926087 +v 15.144754 -85.591042 0.926088 +v 13.706449 -85.863579 -0.242795 +v 14.081304 -85.791649 -0.242794 +v 12.646485 -86.064957 0.101599 +v 15.140518 -85.586365 0.101600 +v 12.648105 -86.060608 0.939900 +v 15.137403 -85.582932 0.939902 +v 12.652570 -86.048630 0.952035 +v 15.128823 -85.573456 0.952037 +v 13.515671 -85.873695 -0.242795 +v 14.262277 -85.730431 -0.242794 +v 12.661371 -86.025017 0.010544 +v 15.111906 -85.554779 0.010545 +v 13.119472 -85.931580 -0.200356 +v 14.651759 -85.637543 -0.200356 +v 12.903304 -85.967552 -0.142756 +v 14.865887 -85.590942 -0.142756 +v 13.014598 -85.943810 1.108758 +v 14.753710 -85.610085 1.108758 +v 12.438025 -86.038261 0.538066 +v 15.324290 -85.484406 0.538068 +v 13.324763 -85.866425 -0.242795 +v 14.436932 -85.653008 -0.242794 +v 12.441216 -86.031456 0.367704 +v 15.318807 -85.479263 0.367706 +v 12.441216 -86.031456 0.708427 +v 15.318807 -85.479263 0.708429 +v 12.549966 -86.007706 0.952035 +v 15.208990 -85.497459 0.952037 +v 13.788324 -85.762611 1.251387 +v 13.967870 -85.728157 1.251387 +v 12.681546 -85.970886 -0.071738 +v 15.073128 -85.511955 -0.071738 +v 13.877212 -85.740768 -0.268782 +v 12.450768 -86.011101 0.877466 +v 15.302400 -85.463890 0.877468 +v 13.696895 -85.766930 -0.268782 +v 14.054404 -85.698326 -0.268782 +v 13.606389 -85.780594 1.251387 +v 14.143538 -85.677521 1.251387 +v 12.430449 -86.001457 0.198666 +v 15.317703 -85.447411 0.198668 +v 12.432315 -85.997574 0.894557 +v 15.314533 -85.444496 0.894559 +v 12.435202 -85.991562 0.910872 +v 15.309627 -85.439980 0.910874 +v 12.439054 -85.983543 0.926088 +v 15.303079 -85.433952 0.926089 +v 13.514946 -85.776581 -0.268782 +v 14.227001 -85.639946 -0.268782 +v 12.924942 -85.888046 -0.200356 +v 14.816356 -85.525093 -0.200356 +v 12.441788 -85.977852 0.101599 +v 15.298434 -85.429680 0.101601 +v 13.135308 -85.841827 -0.242794 +v 14.603825 -85.560028 -0.242794 +v 12.443796 -85.973671 0.939901 +v 15.295021 -85.426544 0.939902 +v 13.423573 -85.781960 1.251387 +v 14.313875 -85.611115 1.251387 +v 12.449330 -85.962151 0.952036 +v 15.285615 -85.417885 0.952037 +v 12.819391 -85.890686 1.108758 +v 14.915386 -85.488480 1.108759 +v 12.706399 -85.904205 -0.142756 +v 15.025358 -85.459213 -0.142755 +v 12.460243 -85.939430 0.010545 +v 15.267069 -85.400826 0.010546 +v 13.332872 -85.769646 -0.268782 +v 14.393576 -85.566109 -0.268782 +v 13.241389 -85.766693 1.251387 +v 14.477467 -85.529503 1.251388 +v 13.858337 -85.642410 -0.277533 +v 13.687042 -85.667259 -0.277533 +v 14.026663 -85.602089 -0.277533 +v 12.948875 -85.800102 -0.242794 +v 14.761570 -85.452255 -0.242793 +v 12.485257 -85.887360 -0.071738 +v 15.224557 -85.361710 -0.071737 +v 12.239425 -85.933952 0.538067 +v 15.470174 -85.313995 0.538068 +v 12.350874 -85.912064 0.952036 +v 15.358538 -85.334915 0.952037 +v 12.243214 -85.927467 0.367705 +v 15.464252 -85.309372 0.367706 +v 12.243214 -85.927467 0.708428 +v 15.464252 -85.309372 0.708429 +v 12.735178 -85.826996 -0.200356 +v 14.970043 -85.398140 -0.200355 +v 13.152184 -85.746185 -0.268782 +v 14.552745 -85.477432 -0.268782 +v 13.514197 -85.676430 -0.277533 +v 14.190624 -85.546631 -0.277533 +v 12.254551 -85.908051 0.877467 +v 15.446532 -85.295532 0.877468 +v 12.629824 -85.820030 1.108758 +v 15.065334 -85.352669 1.108759 +v 12.232422 -85.894974 0.198666 +v 15.462250 -85.275185 0.198668 +v 13.061349 -85.734924 1.251387 +v 14.632959 -85.433350 1.251388 +v 12.234632 -85.891273 0.894558 +v 15.458827 -85.272575 0.894559 +v 12.238054 -85.885551 0.910873 +v 15.453530 -85.268524 0.910874 +v 13.341235 -85.669846 -0.277533 +v 14.348864 -85.476486 -0.277532 +v 12.242620 -85.877914 0.926088 +v 15.446462 -85.263123 0.926089 +v 12.516071 -85.823219 -0.142756 +v 15.172189 -85.313530 -0.142755 +v 12.245858 -85.872498 0.101600 +v 15.441449 -85.259285 0.101601 +v 12.248239 -85.868515 0.939901 +v 15.437764 -85.256470 0.939902 +v 12.254799 -85.857544 0.952036 +v 15.427609 -85.248703 0.952037 +v 12.974379 -85.706390 -0.268782 +v 14.703190 -85.374641 -0.268781 +v 12.767010 -85.741592 -0.242794 +v 14.908861 -85.330589 -0.242793 +v 12.267732 -85.835915 0.010545 +v 15.407589 -85.233398 0.010546 +v 13.756285 -85.541748 1.379279 +v 13.915880 -85.511124 1.379279 +v 13.169588 -85.647552 -0.277533 +v 14.500069 -85.392242 -0.277532 +v 13.594567 -85.557739 1.379279 +v 14.072028 -85.466118 1.379279 +v 12.884943 -85.686920 1.251387 +v 14.779064 -85.323448 1.251388 +v 12.551751 -85.748947 -0.200356 +v 15.111550 -85.257736 -0.200355 +v 12.297376 -85.786339 -0.071738 +v 15.361697 -85.198311 -0.071737 +v 13.432065 -85.558952 1.379279 +v 14.223437 -85.407089 1.379279 +v 12.161304 -85.798714 0.952036 +v 15.492685 -85.159447 0.952038 +v 12.050975 -85.812263 0.538067 +v 15.600194 -85.131195 0.538069 +v 12.447468 -85.732430 1.108758 +v 15.202312 -85.203789 1.108759 +v 12.055330 -85.806145 0.367705 +v 15.593882 -85.127113 0.367707 +v 12.055330 -85.806145 0.708428 +v 15.593882 -85.127121 0.708430 +v 12.800928 -85.650589 -0.268782 +v 14.843666 -85.258606 -0.268781 +v 13.000679 -85.609749 -0.277533 +v 14.642986 -85.294601 -0.277532 +v 12.068363 -85.787819 0.877467 +v 15.574991 -85.114922 0.877469 +v 12.333895 -85.725258 -0.142756 +v 15.305164 -85.155090 -0.142755 +v 13.270126 -85.545380 1.379279 +v 14.368851 -85.334541 1.379279 +v 12.591216 -85.666794 -0.242794 +v 15.044479 -85.196030 -0.242793 +v 12.044896 -85.770920 0.198667 +v 15.590536 -85.090538 0.198668 +v 12.047434 -85.767441 0.894558 +v 15.586891 -85.088242 0.894560 +v 12.051363 -85.762054 0.910873 +v 15.581246 -85.084694 0.910875 +v 12.056604 -85.754860 0.926088 +v 15.573716 -85.079948 0.926090 +v 12.060322 -85.749763 0.101600 +v 15.568376 -85.076591 0.101602 +v 12.713634 -85.623070 1.251387 +v 14.914570 -85.200722 1.251388 +v 12.063054 -85.746017 0.939901 +v 15.564449 -85.074120 0.939903 +v 12.070583 -85.735687 0.952036 +v 15.553632 -85.067314 0.952038 +v 12.085430 -85.715324 0.010545 +v 15.532302 -85.053886 0.010547 +v 13.110091 -85.517143 1.379279 +v 14.507065 -85.249077 1.379280 +v 12.376183 -85.654541 -0.200356 +v 15.239703 -85.105049 -0.200355 +v 12.835908 -85.556747 -0.277533 +v 14.776433 -85.184372 -0.277532 +v 12.633270 -85.579254 -0.268782 +v 14.973008 -85.130272 -0.268781 +v 12.119461 -85.668640 -0.071738 +v 15.483410 -85.023125 -0.071736 +v 12.273833 -85.628609 1.108758 +v 15.325182 -85.043076 1.108760 +v 11.982826 -85.668594 0.952036 +v 15.610321 -84.972504 0.952038 +v 12.422955 -85.576317 -0.242794 +v 15.167298 -85.049690 -0.242792 +v 12.953288 -85.474472 1.379279 +v 14.636934 -85.151390 1.379280 +v 11.874191 -85.674179 0.538067 +v 15.713305 -84.937477 0.538069 +v 12.548841 -85.543900 1.251388 +v 15.038355 -85.066185 1.251389 +v 11.879078 -85.668465 0.367705 +v 15.706653 -84.933983 0.367707 +v 11.879078 -85.668465 0.708428 +v 15.706653 -84.933983 0.708430 +v 13.723083 -85.312866 1.491848 +v 13.862001 -85.286209 1.491848 +v 12.161383 -85.611137 -0.142756 +v 15.423182 -84.985222 -0.142754 +v 11.893702 -85.651382 0.877467 +v 15.686746 -84.923523 0.877469 +v 13.582315 -85.326782 1.491848 +v 13.997921 -85.247032 1.491848 +v 12.676640 -85.488976 -0.277532 +v 14.899303 -85.062462 -0.277531 +v 11.869430 -85.630333 0.198667 +v 15.701500 -84.894981 0.198669 +v 13.440866 -85.327843 1.491848 +v 14.129714 -85.195656 1.491849 +v 11.872272 -85.627098 0.894558 +v 15.697660 -84.893028 0.894560 +v 11.876675 -85.622086 0.910873 +v 15.691718 -84.890007 0.910875 +v 11.882548 -85.615402 0.926088 +v 15.683787 -84.885971 0.926090 +v 11.886714 -85.610664 0.101600 +v 15.678164 -84.883110 0.101602 +v 11.889776 -85.607178 0.939901 +v 15.674028 -84.881004 0.939903 +v 12.209926 -85.544556 -0.200356 +v 15.353440 -84.941338 -0.200354 +v 12.472795 -85.492958 -0.268782 +v 15.090143 -84.990707 -0.268780 +v 11.898214 -85.597580 0.952036 +v 15.662637 -84.875214 0.952038 +v 12.801015 -85.417717 1.379279 +v 14.757383 -85.042297 1.379280 +v 13.299907 -85.316032 1.491848 +v 14.256289 -85.132507 1.491849 +v 11.914851 -85.578651 0.010545 +v 15.640175 -84.863785 0.010547 +v 12.110359 -85.509422 1.108759 +v 15.432929 -84.871849 1.108760 +v 11.952985 -85.535255 -0.071738 +v 15.588688 -84.837593 -0.071736 +v 12.391931 -85.450081 1.251388 +v 15.149391 -84.920944 1.251389 +v 12.263617 -85.470909 -0.242794 +v 15.276302 -84.892799 -0.242792 +v 13.160604 -85.291451 1.491848 +v 14.376597 -85.058105 1.491849 +v 12.524193 -85.406998 -0.277532 +v 15.010577 -84.929878 -0.277531 +v 11.816921 -85.522789 0.952037 +v 15.710470 -84.775642 0.952039 +v 11.999963 -85.481804 -0.142755 +v 15.525262 -84.805328 -0.142754 +v 12.654534 -85.347343 1.379279 +v 14.867413 -84.922707 1.379280 +v 11.710499 -85.520790 0.538068 +v 15.808596 -84.734398 0.538069 +v 11.715878 -85.515549 0.367706 +v 15.801657 -84.731514 0.367707 +v 11.715878 -85.515549 0.708429 +v 15.801657 -84.731514 0.708431 +v 12.320831 -85.392433 -0.268781 +v 15.194103 -84.841072 -0.268780 +v 13.024116 -85.254303 1.491848 +v 14.489642 -84.973076 1.491849 +v 11.731973 -85.499847 0.198667 +v 15.780892 -84.722885 0.198669 +v 11.731973 -85.499847 0.877468 +v 15.780892 -84.722885 0.877470 +v 12.054358 -85.419914 -0.200355 +v 15.451820 -84.767960 -0.200354 +v 11.707474 -85.474365 0.198668 +v 15.794222 -84.690147 0.198669 +v 11.710599 -85.471405 0.894559 +v 15.790221 -84.688553 0.894561 +v 11.715439 -85.466820 0.910874 +v 15.784027 -84.686081 0.910876 +v 13.749712 -85.076340 1.585103 +v 13.690224 -85.086357 1.585103 +v 13.808681 -85.063629 1.585103 +v 11.721895 -85.460693 0.926089 +v 15.775764 -84.682785 0.926091 +v 11.726476 -85.456352 0.101601 +v 15.769901 -84.680450 0.101603 +v 11.729840 -85.453163 0.939902 +v 15.765594 -84.678734 0.939904 +v 13.577639 -85.097809 1.585103 +v 13.917508 -85.032585 1.585103 +v 13.919952 -85.031685 1.585135 +v 13.571818 -85.097702 1.585263 +v 13.922879 -85.030334 1.585263 +v 13.925002 -85.029160 1.585423 +v 13.927851 -85.027290 1.585739 +v 13.565469 -85.096558 1.585808 +v 13.929734 -85.025833 1.586021 +v 11.739118 -85.444374 0.952037 +v 15.753721 -84.673996 0.952039 +v 13.559923 -85.094597 1.586628 +v 13.934673 -85.020958 1.587125 +v 13.936116 -85.019135 1.587583 +v 13.554451 -85.091614 1.587813 +v 12.244201 -85.342377 1.251388 +v 15.246761 -84.766205 1.251390 +v 13.938090 -85.016205 1.588361 +v 13.550694 -85.088791 1.588904 +v 12.379833 -85.311501 -0.277532 +v 15.109335 -84.787727 -0.277531 +v 13.941048 -85.010147 1.590090 +v 13.546621 -85.084724 1.590448 +v 11.757406 -85.427032 0.010546 +v 15.730313 -84.664658 0.010548 +v 13.888811 -85.016136 1.352269 +v 13.598207 -85.071899 1.352268 +v 13.894198 -85.013893 1.351779 +v 13.592373 -85.071815 1.351778 +v 13.942688 -85.004486 1.591832 +v 13.543259 -85.080093 1.592177 +v 12.891570 -85.204903 1.491848 +v 14.594486 -84.878120 1.491849 +v 13.899168 -85.010826 1.351400 +v 13.586620 -85.070801 1.351399 +v 13.542303 -85.078438 1.592792 +v 12.114525 -85.351456 -0.242793 +v 15.370586 -84.726639 -0.242792 +v 13.581095 -85.068878 1.351141 +v 13.903590 -85.006996 1.351142 +v 13.943399 -84.997963 1.593976 +v 13.540689 -85.075035 1.594045 +v 13.907352 -85.002510 1.351011 +v 13.575941 -85.066109 1.351011 +v 13.539783 -85.072563 1.594950 +v 13.449935 -85.089676 1.588587 +v 14.033132 -84.977768 1.588587 +v 11.958400 -85.375870 1.108759 +v 15.524659 -84.691528 1.108761 +v 13.538978 -85.069656 1.596008 +v 13.943002 -84.992126 1.596008 +v 13.910356 -84.997490 1.351011 +v 13.571290 -85.062553 1.351011 +v 12.515059 -85.263947 1.379280 +v 14.966111 -84.793610 1.379281 +v 13.740375 -85.027679 1.113719 +v 13.912524 -84.992050 1.351142 +v 13.567264 -85.058304 1.351141 +v 13.619227 -85.044952 1.113719 +v 13.859309 -84.998886 1.113719 +v 13.864721 -84.996819 1.113719 +v 13.613279 -85.045029 1.113719 +v 13.913801 -84.986343 1.351400 +v 13.563965 -85.053474 1.351399 +v 13.869656 -84.993973 1.113719 +v 13.607407 -85.044128 1.113719 +v 13.602043 -85.042404 1.113719 +v 13.874544 -84.989944 1.113719 +v 11.799328 -85.387291 -0.071737 +v 15.676659 -84.643257 -0.071735 +v 13.914155 -84.980515 1.351779 +v 13.561478 -85.048187 1.351778 +v 13.878365 -84.985535 1.113719 +v 13.596507 -85.039558 1.113719 +v 13.913574 -84.974709 1.352269 +v 13.559868 -85.042580 1.352268 +v 13.881504 -84.980400 1.113719 +v 13.591702 -85.035942 1.113719 +v 13.587786 -85.031853 1.113719 +v 13.883808 -84.974617 1.113719 +v 13.735568 -85.002617 -5.996283 +v 13.735568 -85.002632 -0.277531 +v 13.330596 -85.079681 1.588587 +v 14.140293 -84.924301 1.588587 +v 13.584509 -85.027122 1.113719 +v 13.885011 -84.969109 1.113719 +v 13.885340 -84.963181 1.113719 +v 13.581779 -85.021278 1.113719 +v 13.580238 -85.015694 1.113719 +v 13.884699 -84.957268 1.113719 +v 13.524714 -85.024773 -5.996283 +v 13.939645 -84.945152 -5.996283 +v 13.524714 -85.024788 -0.277531 +v 13.939645 -84.945160 -0.277531 +v 12.178638 -85.278503 -0.268781 +v 15.284024 -84.682602 -0.268780 +v 11.850972 -85.338333 -0.142755 +v 15.610560 -84.616890 -0.142753 +v 11.664963 -85.362495 0.952037 +v 15.792301 -84.570488 0.952039 +v 13.212660 -85.058868 1.588587 +v 14.242149 -84.861320 1.588588 +v 12.764066 -85.143646 1.491849 +v 14.690261 -84.774025 1.491850 +v 11.561213 -85.353355 0.538068 +v 15.885299 -84.523590 0.538070 +v 11.567042 -85.348610 0.367706 +v 15.878128 -84.521339 0.367708 +v 11.567042 -85.348610 0.708429 +v 15.878128 -84.521347 0.708431 +v 11.910770 -85.281639 -0.200355 +v 15.534026 -84.586357 -0.200353 +v 13.313148 -85.010971 -5.996283 +v 14.131075 -84.854019 -5.996283 +v 13.313148 -85.010986 -0.277531 +v 14.131075 -84.854027 -0.277531 +v 11.584479 -85.334419 0.198668 +v 15.856675 -84.514610 0.198670 +v 11.584479 -85.334419 0.877468 +v 15.856675 -84.514610 0.877470 +v 12.244755 -85.203278 -0.277532 +v 15.194757 -84.637192 -0.277530 +v 12.106877 -85.221687 1.251388 +v 15.329657 -84.603256 1.251390 +v 12.383745 -85.168213 1.379280 +v 15.052661 -84.656067 1.379281 +v 13.097104 -85.027420 1.588587 +v 14.337856 -84.789330 1.588588 +v 11.560370 -85.304329 0.198668 +v 15.867933 -84.477730 0.198670 +v 11.563753 -85.301659 0.894559 +v 15.863804 -84.476509 0.894561 +v 11.568990 -85.297531 0.910874 +v 15.857410 -84.474609 0.910876 +v 11.976913 -85.218933 -0.242793 +v 15.449370 -84.552589 -0.242791 +v 11.575976 -85.292023 0.926089 +v 15.848882 -84.472076 0.926091 +v 11.580933 -85.288116 0.101601 +v 15.842831 -84.470284 0.101603 +v 11.584575 -85.285240 0.939902 +v 15.838385 -84.468964 0.939904 +v 11.594612 -85.277328 0.952037 +v 15.826130 -84.465332 0.952039 +v 12.642660 -85.071060 1.491849 +v 14.776173 -84.661652 1.491850 +v 11.819214 -85.229057 1.108759 +v 15.599613 -84.503624 1.108761 +v 11.614401 -85.261726 0.010546 +v 15.801971 -84.458160 0.010548 +v 12.984888 -84.985596 1.588587 +v 14.426620 -84.708939 1.588588 +v 13.106958 -84.961617 -5.996283 +v 14.304350 -84.731850 -5.996282 +v 13.106958 -84.961632 -0.277531 +v 14.304350 -84.731857 -0.277531 +v 12.047394 -85.152115 -0.268781 +v 15.359163 -84.516609 -0.268779 +v 11.659764 -85.225960 -0.071737 +v 15.746592 -84.441727 -0.071735 +v 13.493299 -84.868668 1.662441 +v 13.911038 -84.788506 1.662442 +v 11.715645 -85.181900 -0.142755 +v 15.678371 -84.421478 -0.142753 +v 13.459232 -84.845551 1.669055 +v 13.934129 -84.754417 1.669055 +v 12.261681 -85.060936 1.379280 +v 15.126345 -84.511223 1.379281 +v 12.120078 -85.083214 -0.277532 +v 15.266136 -84.479507 -0.277530 +v 12.876940 -84.933739 1.588587 +v 14.507705 -84.620804 1.588588 +v 13.362054 -84.837402 1.669055 +v 14.021390 -84.710884 1.669055 +v 11.528210 -85.189049 0.952038 +v 15.855139 -84.358742 0.952039 +v 12.528358 -84.987724 1.491849 +v 14.851510 -84.541931 1.491850 +v 11.780352 -85.130882 -0.200355 +v 15.599377 -84.398033 -0.200353 +v 11.981097 -85.089012 1.251389 +v 15.397391 -84.433449 1.251390 +v 13.266019 -84.820457 1.669055 +v 14.104332 -84.659592 1.669055 +v 11.427539 -85.173210 0.538069 +v 15.942797 -84.306763 0.538071 +v 11.433767 -85.169006 0.367707 +v 15.935455 -84.305161 0.367709 +v 11.433767 -85.169006 0.708430 +v 15.935455 -84.305168 0.708432 +v 12.912076 -84.878128 -5.996283 +v 14.454484 -84.582146 -5.996282 +v 12.912075 -84.878136 -0.277531 +v 14.454484 -84.582161 -0.277530 +v 11.452408 -85.156433 0.198668 +v 15.913484 -84.300385 0.198670 +v 11.452408 -85.156433 0.877469 +v 15.913484 -84.300385 0.877471 +v 13.682565 -84.726410 -6.277533 +v 11.851922 -85.074448 -0.242792 +v 15.512002 -84.372108 -0.242791 +v 13.519153 -84.743576 -6.277533 +v 13.840725 -84.681870 -6.277533 +v 12.774154 -84.872276 1.588588 +v 14.580441 -84.525665 1.588588 +v 13.171922 -84.794853 1.669055 +v 14.182265 -84.600975 1.669055 +v 11.429340 -85.121613 0.198668 +v 15.922022 -84.259491 0.198670 +v 11.429340 -85.121613 0.877469 +v 15.922022 -84.259491 0.877471 +v 11.693956 -85.070190 1.108760 +v 15.657168 -84.309677 1.108762 +v 11.432952 -85.119263 0.894560 +v 15.917798 -84.258652 0.894562 +v 11.438542 -85.115623 0.910875 +v 15.911260 -84.257339 0.910877 +v 11.446000 -85.110779 0.926090 +v 15.902535 -84.255600 0.926092 +v 11.451291 -85.107330 0.101601 +v 15.896347 -84.254356 0.101604 +v 11.928186 -85.014320 -0.268780 +v 15.418897 -84.344475 -0.268779 +v 11.455179 -85.104805 0.939903 +v 15.891800 -84.253448 0.939905 +v 11.465895 -85.097839 0.952038 +v 15.879266 -84.250938 0.952040 +v 13.355189 -84.732887 -6.277533 +v 13.989082 -84.611244 -6.277532 +v 11.487021 -85.084099 0.010547 +v 15.854554 -84.245995 0.010549 +v 12.422107 -84.894348 1.491849 +v 14.915648 -84.415848 1.491850 +v 12.149878 -84.943001 1.379280 +v 15.186552 -84.360283 1.379282 +v 13.080544 -84.760796 1.669055 +v 14.254545 -84.535507 1.669055 +v 11.535448 -85.052605 -0.071736 +v 15.797910 -84.234665 -0.071734 +v 12.006836 -84.952309 -0.277531 +v 15.322881 -84.315979 -0.277530 +v 13.448181 -84.664047 1.717138 +v 13.877212 -84.581718 1.717138 +v 11.595104 -85.013809 -0.142754 +v 15.728130 -84.220711 -0.142752 +v 12.677383 -84.801727 1.588588 +v 14.644222 -84.424309 1.588588 +v 13.508089 -84.639709 1.113720 +v 13.812549 -84.581284 1.113720 +v 13.195393 -84.694633 -6.277533 +v 14.123371 -84.516556 -6.277532 +v 11.867905 -84.945450 1.251389 +v 15.449402 -84.258179 1.251391 +v 13.439511 -84.633743 1.724135 +v 13.874047 -84.550354 1.724135 +v 12.992642 -84.718567 1.669055 +v 14.320573 -84.463745 1.669055 +v 11.664182 -84.968887 -0.200354 +v 15.647331 -84.204544 -0.200352 +v 12.734106 -84.762901 -5.996282 +v 14.577161 -84.409225 -5.996281 +v 12.734106 -84.762909 -0.277531 +v 14.577161 -84.409241 -0.277530 +v 13.500113 -84.609116 1.113720 +v 13.808634 -84.549911 1.113720 +v 11.407796 -85.003883 0.952038 +v 15.898460 -84.142159 0.952040 +v 13.426981 -84.604713 1.730495 +v 13.874942 -84.518753 1.730495 +v 11.740587 -84.919197 -0.242792 +v 15.557961 -84.186668 -0.242790 +v 13.488215 -84.579834 1.113720 +v 13.808848 -84.518303 1.113720 +v 13.394138 -84.590309 1.732886 +v 13.900120 -84.493210 1.732887 +v 12.324788 -84.791687 1.491850 +v 14.968057 -84.284462 1.491851 +v 11.310551 -84.981812 0.538069 +v 15.980627 -84.085648 0.538071 +v 13.410803 -84.577454 1.736109 +v 13.879882 -84.487442 1.736109 +v 11.317131 -84.978180 0.367707 +v 15.973170 -84.084717 0.367709 +v 11.317131 -84.978180 0.708430 +v 15.973170 -84.084717 0.708432 +v 12.908944 -84.668518 1.669055 +v 14.379801 -84.386269 1.669056 +v 11.336823 -84.967323 0.198669 +v 15.950860 -84.081924 0.198671 +v 11.336823 -84.967331 0.877469 +v 15.950860 -84.081924 0.877471 +v 12.587429 -84.722672 1.588588 +v 14.698524 -84.317566 1.588589 +v 13.472594 -84.552345 1.113720 +v 13.813187 -84.486992 1.113720 +v 11.822004 -84.866257 -0.268780 +v 15.462729 -84.167625 -0.268778 +v 13.320440 -84.577301 1.732886 +v 13.963769 -84.453850 1.732887 +v 13.044358 -84.629929 -6.277532 +v 14.239725 -84.400543 -6.277532 +v 12.049262 -84.815392 1.379281 +v 15.232785 -84.204491 1.379282 +v 11.583664 -84.900589 1.108760 +v 15.696849 -84.111298 1.108762 +v 13.248230 -84.557648 1.732886 +v 14.023576 -84.408867 1.732887 +v 11.315469 -84.927734 0.198669 +v 15.956042 -84.037239 0.198671 +v 11.315469 -84.927734 0.877469 +v 15.956042 -84.037239 0.877471 +v 11.319279 -84.925728 0.894560 +v 15.951759 -84.036781 0.894562 +v 11.905967 -84.811653 -0.277531 +v 15.364519 -84.147980 -0.277529 +v 11.325176 -84.922615 0.910875 +v 15.945128 -84.036072 0.910877 +v 11.333045 -84.918465 0.926090 +v 15.936281 -84.035133 0.926092 +v 11.338626 -84.915512 0.101602 +v 15.930007 -84.034462 0.101604 +v 11.342728 -84.913353 0.939903 +v 15.925395 -84.033966 0.939905 +v 11.354033 -84.907387 0.952038 +v 15.912684 -84.032608 0.952040 +v 11.376321 -84.895622 0.010547 +v 15.887627 -84.029938 0.010549 +v 12.830144 -84.611069 1.669055 +v 14.431739 -84.303734 1.669056 +v 11.427412 -84.868668 -0.071736 +v 15.830186 -84.023804 -0.071734 +v 13.178105 -84.531517 1.732886 +v 14.079044 -84.358627 1.732887 +v 11.768234 -84.792183 1.251390 +v 15.485261 -84.078911 1.251391 +v 11.490348 -84.835457 -0.142754 +v 15.759427 -84.016251 -0.142752 +v 12.505036 -84.635757 1.588588 +v 14.742893 -84.206329 1.588589 +v 12.578171 -84.619255 -5.996282 +v 14.668848 -84.218063 -5.996281 +v 12.578171 -84.619263 -0.277530 +v 14.668848 -84.218079 -0.277529 +v 12.237208 -84.680611 1.491850 +v 15.008298 -84.148857 1.491851 +v 12.906432 -84.540627 -6.277532 +v 14.334799 -84.266533 -6.277532 +v 11.563225 -84.797005 -0.200354 +v 15.677493 -84.007500 -0.200352 +v 13.110649 -84.499107 1.732887 +v 14.129715 -84.303558 1.732887 +v 13.325019 -84.451355 1.757998 +v 13.912896 -84.338547 1.757999 +v 12.756894 -84.546692 1.669055 +v 14.475956 -84.216820 1.669056 +v 11.643831 -84.754471 -0.242792 +v 15.586867 -83.997826 -0.242790 +v 11.304718 -84.808540 0.952038 +v 15.921908 -83.922531 0.952040 +v 11.960668 -84.679161 1.379281 +v 15.264659 -84.045143 1.379282 +v 13.046418 -84.460701 1.732887 +v 14.175167 -84.244102 1.732887 +v 11.729727 -84.709145 -0.268780 +v 15.490297 -83.987518 -0.268778 +v 11.211189 -84.780685 0.538069 +v 15.998486 -83.862038 0.538072 +v 11.218069 -84.777664 0.367707 +v 15.990975 -83.861778 0.367710 +v 11.218069 -84.777664 0.708431 +v 15.990975 -83.861778 0.708433 +v 11.818305 -84.662407 -0.277530 +v 15.390709 -83.976883 -0.277529 +v 12.430888 -84.541718 1.588588 +v 14.776964 -84.091522 1.588589 +v 11.489252 -84.721664 1.108761 +v 15.718325 -83.910133 1.108763 +v 11.238655 -84.768623 0.198669 +v 15.968503 -83.860992 0.198671 +v 11.238655 -84.768623 0.877470 +v 15.968503 -83.860992 0.877472 +v 12.689802 -84.475922 1.669055 +v 14.512087 -84.126236 1.669056 +v 12.985946 -84.416618 1.732887 +v 14.215025 -84.180763 1.732887 +v 12.160091 -84.562027 1.491850 +v 15.036043 -84.010147 1.491852 +v 12.785582 -84.429298 -6.277532 +v 14.405858 -84.118378 -6.277531 +v 11.219698 -84.724312 0.198669 +v 15.969711 -83.812813 0.198672 +v 11.219698 -84.724312 0.877470 +v 15.969711 -83.812813 0.877472 +v 11.223676 -84.722656 0.894561 +v 15.965403 -83.812752 0.894563 +v 11.229832 -84.720093 0.910876 +v 15.958735 -83.812645 0.910878 +v 11.238045 -84.716675 0.926090 +v 15.949841 -83.812508 0.926093 +v 11.682915 -84.630493 1.251390 +v 15.504669 -83.897125 1.251392 +v 11.243871 -84.714249 0.101602 +v 15.943530 -83.812408 0.101605 +v 11.248153 -84.712463 0.939903 +v 15.938892 -83.812340 0.939906 +v 11.259953 -84.707550 0.952039 +v 15.926112 -83.812149 0.952041 +v 13.239353 -84.324265 1.773747 +v 13.945433 -84.188774 1.773747 +v 11.283219 -84.697868 0.010548 +v 15.900913 -83.811760 0.010550 +v 11.336549 -84.675667 -0.071735 +v 15.843155 -83.810875 -0.071733 +v 12.929733 -84.367210 1.732887 +v 14.248958 -84.114059 1.732888 +v 12.448753 -84.451317 -5.996282 +v 14.726911 -84.014153 -5.996280 +v 12.448753 -84.451332 -0.277530 +v 14.726911 -84.014168 -0.277529 +v 11.402245 -84.648315 -0.142753 +v 15.772001 -83.809784 -0.142751 +v 13.215912 -84.294548 1.776266 +v 13.956210 -84.152489 1.776266 +v 12.629423 -84.399345 1.669056 +v 14.539830 -84.032745 1.669056 +v 11.478316 -84.616646 -0.200353 +v 15.689611 -83.808525 -0.200351 +v 11.884830 -84.535431 1.379281 +v 15.281910 -83.883553 1.379283 +v 12.365599 -84.441322 1.588588 +v 14.800453 -83.974091 1.588590 +v 13.281491 -84.262115 1.113721 +v 13.883283 -84.146637 1.113721 +v 11.562456 -84.581619 -0.242791 +v 15.598482 -83.807129 -0.242790 +v 13.188164 -84.268745 1.777539 +v 13.972434 -84.118248 1.777540 +v 12.878246 -84.312904 1.732887 +v 14.276684 -84.044548 1.732888 +v 11.652117 -84.544296 -0.268779 +v 15.501373 -83.805649 -0.268777 +v 13.258210 -84.232162 1.113721 +v 13.893824 -84.110191 1.113721 +v 13.156785 -84.247467 1.777540 +v 13.993710 -84.086868 1.777540 +v 11.744579 -84.505798 -0.277530 +v 15.401231 -83.804115 -0.277528 +v 12.094078 -84.436920 1.491850 +v 15.051060 -83.869499 1.491852 +v 11.219831 -84.604630 0.952039 +v 15.925287 -83.701683 0.952041 +v 13.122539 -84.231239 1.776266 +v 14.019518 -84.059120 1.776267 +v 13.230543 -84.206238 1.113721 +v 13.909928 -84.075867 1.113721 +v 12.685284 -84.299149 -6.277532 +v 14.450856 -83.960350 -6.277531 +v 13.086259 -84.220467 1.773747 +v 14.049231 -84.035675 1.773748 +v 12.576258 -84.317589 1.669056 +v 14.558958 -83.937126 1.669057 +v 11.411500 -84.534897 1.108761 +v 15.721420 -83.707848 1.108763 +v 13.199164 -84.184959 1.113721 +v 13.931203 -84.044487 1.113721 +v 12.831911 -84.254135 1.732887 +v 14.297975 -83.972809 1.732888 +v 11.130257 -84.571472 0.538070 +v 15.996226 -83.637726 0.538072 +v 11.137380 -84.569077 0.367708 +v 15.988723 -83.638138 0.367710 +v 11.137380 -84.569077 0.708431 +v 15.988723 -83.638138 0.708433 +v 11.158693 -84.561913 0.198670 +v 15.966271 -83.639374 0.198672 +v 11.158693 -84.561920 0.877470 +v 15.966271 -83.639374 0.877472 +v 12.309710 -84.335403 1.588589 +v 14.813167 -83.855003 1.588590 +v 13.164837 -84.168854 1.113721 +v 13.957131 -84.016823 1.113721 +v 11.612652 -84.461708 1.251390 +v 15.507465 -83.714325 1.251392 +v 13.128396 -84.158318 1.113721 +v 13.987082 -83.993538 1.113721 +v 12.936484 -84.187927 1.757999 +v 14.176324 -83.950012 1.758000 +v 11.822374 -84.385406 1.379282 +v 15.284396 -83.721069 1.379283 +v 11.142824 -84.513016 0.198670 +v 15.962914 -83.588074 0.198672 +v 11.142824 -84.513016 0.877470 +v 15.962914 -83.588074 0.877472 +v 11.146934 -84.511734 0.894561 +v 15.958619 -83.588402 0.894563 +v 11.153298 -84.509735 0.910876 +v 15.951969 -83.588905 0.910878 +v 11.161789 -84.507080 0.926091 +v 15.943098 -83.589577 0.926093 +v 11.167811 -84.505196 0.101603 +v 15.936806 -83.590057 0.101605 +v 11.172237 -84.503807 0.939904 +v 15.932180 -83.590408 0.939906 +v 11.184435 -84.499992 0.952039 +v 15.919436 -83.591377 0.952041 +v 12.791112 -84.191399 1.732887 +v 14.312654 -83.899422 1.732888 +v 11.208485 -84.492462 0.010548 +v 15.894307 -83.593285 0.010550 +v 11.263613 -84.475197 -0.071735 +v 15.836706 -83.597656 -0.071733 +v 12.530747 -84.231346 1.669056 +v 14.569310 -83.840157 1.669057 +v 12.349579 -84.263931 -5.996281 +v 14.749678 -83.803368 -5.996280 +v 12.349579 -84.263939 -0.277529 +v 14.749678 -83.803375 -0.277528 +v 11.331524 -84.453941 -0.142753 +v 15.765749 -83.603043 -0.142751 +v 11.410160 -84.429321 -0.200353 +v 15.683586 -83.609276 -0.200351 +v 12.039715 -84.306328 1.491851 +v 15.053223 -83.728058 1.491852 +v 12.787588 -84.154915 1.736110 +v 14.302423 -83.864227 1.736111 +v 11.497137 -84.402084 -0.242791 +v 15.592707 -83.616173 -0.242789 +v 12.756279 -84.149971 1.730496 +v 14.329679 -83.848053 1.730497 +v 11.589820 -84.373070 -0.268779 +v 15.495867 -83.623528 -0.268777 +v 12.724674 -84.149078 1.724136 +v 14.358708 -83.835518 1.724137 +v 12.693310 -84.152245 1.717139 +v 14.389016 -83.826851 1.717140 +v 11.685400 -84.343147 -0.277530 +v 15.395998 -83.631104 -0.277528 +v 12.486526 -84.186073 1.662443 +v 14.593634 -83.781731 1.662444 +v 12.263684 -84.224846 1.588589 +v 14.814999 -83.735260 1.588590 +v 12.282907 -84.218033 1.596010 +v 14.794621 -83.736053 1.596011 +v 14.797528 -83.735245 1.594953 +v 14.799999 -83.734344 1.594048 +v 12.277070 -84.218430 1.593978 +v 12.608424 -84.153923 -6.277531 +v 14.468500 -83.796989 -6.277530 +v 14.803405 -83.732727 1.592795 +v 14.805064 -83.731773 1.592180 +v 12.270544 -84.217720 1.591834 +v 14.808353 -83.729500 1.590953 +v 12.264886 -84.216080 1.590092 +v 14.812931 -83.725273 1.589223 +v 12.258829 -84.213120 1.588363 +v 14.816580 -83.720581 1.587816 +v 12.255894 -84.211151 1.587585 +v 12.254072 -84.209709 1.587127 +v 14.819562 -83.715103 1.586631 +v 12.249957 -84.205666 1.586181 +v 14.821524 -83.709564 1.585811 +v 12.247743 -84.202881 1.585741 +v 12.245869 -84.200035 1.585425 +v 12.300322 -84.188606 1.352271 +v 14.767550 -83.715164 1.352271 +v 12.294517 -84.189186 1.351781 +v 14.773158 -83.713554 1.351781 +v 12.244695 -84.197914 1.585265 +v 14.822670 -83.703209 1.585266 +v 12.288686 -84.188835 1.351402 +v 14.778444 -83.711067 1.351402 +v 12.282977 -84.187553 1.351144 +v 14.783273 -83.707764 1.351144 +v 12.243348 -84.194984 1.585137 +v 12.788039 -84.088219 1.113721 +v 14.277316 -83.802437 1.113722 +v 12.242442 -84.192543 1.585105 +v 14.822775 -83.697395 1.585106 +v 12.277541 -84.185387 1.351013 +v 14.787521 -83.703743 1.351014 +v 12.272517 -84.182381 1.351013 +v 14.791077 -83.699089 1.351014 +v 11.153839 -84.393845 0.952039 +v 15.908569 -83.481445 0.952042 +v 12.268033 -84.178619 1.351144 +v 14.793850 -83.693932 1.351144 +v 12.756726 -84.083878 1.113721 +v 14.304799 -83.786812 1.113722 +v 12.264206 -84.174202 1.351402 +v 14.795768 -83.688408 1.351402 +v 12.725117 -84.083664 1.113721 +v 14.334085 -83.774918 1.113722 +v 12.317760 -84.159729 1.113721 +v 12.693747 -84.087578 1.113721 +v 14.364675 -83.766937 1.113722 +v 14.740662 -83.694794 1.113722 +v 14.746247 -83.693253 1.113722 +v 12.311847 -84.160370 1.113721 +v 12.261135 -84.169228 1.351781 +v 14.796782 -83.682655 1.351781 +v 14.751431 -83.690895 1.113722 +v 12.305918 -84.160042 1.113721 +v 11.351054 -84.341827 1.108762 +v 15.706107 -83.506126 1.108764 +v 12.300410 -84.158836 1.113721 +v 14.756819 -83.687241 1.113722 +v 12.258897 -84.163841 1.352271 +v 14.796866 -83.676826 1.352271 +v 14.760908 -83.683327 1.113722 +v 12.294630 -84.156532 1.113721 +v 14.764524 -83.678520 1.113722 +v 12.289497 -84.153397 1.113721 +v 12.285208 -84.149704 1.113721 +v 14.767372 -83.672989 1.113722 +v 11.558028 -84.287239 1.251391 +v 15.493628 -83.532021 1.251392 +v 12.281491 -84.145302 1.113721 +v 14.769097 -83.667625 1.113722 +v 12.278281 -84.139893 1.113721 +v 14.769994 -83.661751 1.113722 +v 12.276146 -84.134338 1.113721 +v 14.769922 -83.655800 1.113722 +v 11.773820 -84.230324 1.379282 +v 15.272097 -83.559029 1.379284 +v 11.068403 -84.355843 0.538070 +v 15.973869 -83.414520 0.538073 +v 11.075712 -84.354095 0.367708 +v 15.966434 -83.415604 0.367711 +v 11.075712 -84.354103 0.708431 +v 15.966434 -83.415604 0.708434 +v 11.097583 -84.348877 0.198670 +v 15.944183 -83.418846 0.198673 +v 11.097583 -84.348877 0.877470 +v 15.944183 -83.418846 0.877473 +v 11.997450 -84.171341 1.491851 +v 15.042517 -83.587013 1.491853 +v 12.218764 -84.112968 1.585105 +v 14.815316 -83.614708 1.585107 +v 11.085481 -84.295609 0.198670 +v 15.935709 -83.364883 0.198673 +v 11.085481 -84.295609 0.877471 +v 15.935709 -83.364883 0.877473 +v 11.089691 -84.294701 0.894562 +v 15.931461 -83.365601 0.894564 +v 11.096210 -84.293297 0.910877 +v 15.924886 -83.366707 0.910879 +v 11.104908 -84.291420 0.926092 +v 15.916112 -83.368187 0.926094 +v 11.111076 -84.290092 0.101604 +v 15.909888 -83.369232 0.101606 +v 11.115610 -84.289116 0.939905 +v 15.905315 -83.370003 0.939907 +v 11.128106 -84.286423 0.952040 +v 15.892710 -83.372124 0.952042 +v 11.152740 -84.281105 0.010549 +v 15.867859 -83.376305 0.010551 +v 11.209208 -84.268936 -0.071734 +v 15.810896 -83.385902 -0.071732 +v 12.283501 -84.062477 -5.996281 +v 14.736494 -83.591759 -5.996279 +v 12.283501 -84.062485 -0.277529 +v 14.736494 -83.591774 -0.277528 +v 11.278772 -84.253937 -0.142752 +v 15.740722 -83.397713 -0.142750 +v 11.359320 -84.236565 -0.200352 +v 15.659466 -83.411400 -0.200350 +v 11.448414 -84.217361 -0.242790 +v 15.569592 -83.426529 -0.242789 +v 11.543351 -84.196892 -0.268778 +v 15.473820 -83.442657 -0.268777 +v 11.641256 -84.175781 -0.277529 +v 15.375055 -83.459290 -0.277528 +v 12.557213 -83.997795 -6.277531 +v 14.458282 -83.632996 -6.277530 +v 14.752651 -83.534653 1.113722 +v 13.499999 -83.775017 -6.277530 +v 12.247347 -84.015404 1.113721 +v 12.193343 -83.995056 1.585106 +v 14.795286 -83.495758 1.585107 +v 11.967637 -84.033066 1.491851 +v 15.019029 -83.447525 1.491853 +v 11.739570 -84.071465 1.379282 +v 15.245111 -83.398773 1.379284 +v 11.519496 -84.108528 1.251391 +v 15.463270 -83.351738 1.251393 +v 11.308416 -84.144066 1.108762 +v 15.672514 -83.306625 1.108764 +v 11.107288 -84.177933 0.952040 +v 15.871892 -83.263641 0.952042 +v 11.055815 -84.131210 0.198671 +v 15.902415 -83.201180 0.198673 +v 11.055815 -84.131218 0.877471 +v 15.902415 -83.201187 0.877473 +v 11.033565 -84.134453 0.367709 +v 15.924286 -83.195961 0.367711 +v 11.033565 -84.134460 0.708432 +v 15.924286 -83.195961 0.708434 +v 11.026129 -84.135544 0.538071 +v 15.931595 -83.194214 0.538073 +v 12.230076 -83.894257 1.113722 +v 14.723852 -83.415718 1.113723 +v 12.533124 -83.835258 -6.277530 +v 14.420496 -83.473083 -6.277529 +v 12.229936 -83.889679 1.113722 +v 14.721784 -83.410309 1.113723 +v 11.612514 -84.005096 -0.277529 +v 15.338575 -83.290092 -0.277527 +v 12.230700 -83.883331 1.113722 +v 14.718940 -83.405373 1.113723 +v 11.513096 -84.017212 -0.268778 +v 15.435418 -83.264549 -0.268776 +v 12.232339 -83.877792 1.113722 +v 14.714914 -83.400482 1.113723 +v 12.235177 -83.872017 1.113722 +v 11.416691 -84.028969 -0.242790 +v 15.529325 -83.239777 -0.242788 +v 14.709826 -83.396179 1.113723 +v 12.238544 -83.867363 1.113722 +v 14.704865 -83.393280 1.113723 +v 12.203132 -83.873238 1.352271 +v 14.741101 -83.386215 1.352272 +v 11.326220 -84.039993 -0.200352 +v 15.617453 -83.216537 -0.200350 +v 12.178748 -83.875328 1.585106 +v 14.764524 -83.379135 1.585107 +v 12.243179 -83.862816 1.113722 +v 14.698844 -83.391006 1.113723 +v 12.247910 -83.859543 1.113722 +v 14.693175 -83.389908 1.113723 +v 12.203217 -83.867409 1.351781 +v 14.738863 -83.380829 1.351782 +v 12.253751 -83.856812 1.113722 +v 14.686786 -83.389748 1.113723 +v 12.259336 -83.855270 1.113722 +v 12.635324 -83.783119 1.113722 +v 14.306251 -83.462479 1.113723 +v 14.682239 -83.390327 1.113723 +v 11.244426 -84.049965 -0.142752 +v 15.697126 -83.195518 -0.142750 +v 12.665914 -83.775146 1.113722 +v 14.274881 -83.466393 1.113723 +v 12.252418 -83.852753 -5.996280 +v 14.687737 -83.385429 -5.996279 +v 12.252418 -83.852760 -0.277529 +v 14.687737 -83.385437 -0.277527 +v 12.204230 -83.861649 1.351402 +v 14.735792 -83.375862 1.351403 +v 11.173786 -84.058571 -0.071734 +v 15.765936 -83.177368 -0.071732 +v 12.695198 -83.763245 1.113722 +v 14.243272 -83.466179 1.113723 +v 11.116446 -84.065567 0.010549 +v 15.821791 -83.162636 0.010551 +v 12.206148 -83.856125 1.351144 +v 14.731965 -83.371437 1.351145 +v 11.091429 -84.068611 0.952040 +v 15.846159 -83.156212 0.952042 +v 11.078741 -84.070160 0.939905 +v 15.858519 -83.152954 0.939907 +v 11.074137 -84.070717 0.101604 +v 15.863003 -83.151772 0.101606 +v 11.067873 -84.071487 0.926092 +v 15.869105 -83.150162 0.926094 +v 11.059040 -84.072563 0.910877 +v 15.877708 -83.147888 0.910879 +v 11.052422 -84.073372 0.894562 +v 15.884155 -83.146194 0.894564 +v 11.048145 -84.073891 0.198671 +v 15.888321 -83.145088 0.198673 +v 11.048145 -84.073891 0.877471 +v 15.888321 -83.145096 0.877473 +v 12.208921 -83.850975 1.351014 +v 14.727481 -83.367676 1.351015 +v 12.212477 -83.846321 1.351014 +v 14.722457 -83.364677 1.351015 +v 12.177223 -83.852669 1.585106 +v 14.757556 -83.357521 1.585107 +v 12.722682 -83.747627 1.113722 +v 14.211959 -83.461845 1.113723 +v 14.756650 -83.355080 1.585139 +v 12.216725 -83.842293 1.351144 +v 14.717020 -83.362503 1.351145 +v 11.950521 -83.892647 1.491852 +v 14.982953 -83.310745 1.491853 +v 12.221554 -83.838997 1.351402 +v 14.711312 -83.361229 1.351403 +v 12.177322 -83.846909 1.585262 +v 14.755303 -83.352150 1.585267 +v 12.226840 -83.836510 1.351781 +v 14.705482 -83.360878 1.351782 +v 12.232448 -83.834900 1.352271 +v 14.699677 -83.361458 1.352272 +v 14.754129 -83.350029 1.585427 +v 12.178269 -83.841293 1.585720 +v 14.752255 -83.347176 1.585743 +v 14.750804 -83.345299 1.586025 +v 12.180168 -83.835579 1.586522 +v 14.745926 -83.340355 1.587129 +v 12.182831 -83.830406 1.587586 +v 14.744104 -83.338913 1.587587 +v 14.740381 -83.336479 1.588580 +v 12.186240 -83.825729 1.588907 +v 14.733919 -83.333549 1.590452 +v 12.190309 -83.821655 1.590451 +v 11.719908 -83.910156 1.379283 +v 15.203667 -83.241646 1.379284 +v 14.728701 -83.332199 1.592077 +v 12.194934 -83.818291 1.592180 +v 12.196593 -83.817337 1.592795 +v 14.722928 -83.331627 1.593980 +v 12.199999 -83.815720 1.594048 +v 12.202470 -83.814812 1.594953 +v 12.205378 -83.814011 1.596011 +v 14.717092 -83.332031 1.596012 +v 12.406364 -83.768333 1.662444 +v 14.513473 -83.363991 1.662445 +v 12.428832 -83.758644 1.669057 +v 14.489015 -83.363312 1.669058 +v 12.610982 -83.723213 1.717140 +v 14.306688 -83.397820 1.717141 +v 12.641290 -83.714546 1.724137 +v 14.275324 -83.400986 1.724138 +v 12.670318 -83.702011 1.730497 +v 14.243719 -83.400085 1.730498 +v 11.497376 -83.927048 1.251391 +v 15.416643 -83.174965 1.251393 +v 12.697576 -83.685837 1.736111 +v 14.212410 -83.395149 1.736112 +v 12.682526 -83.687759 1.732888 +v 14.227102 -83.391365 1.732889 +v 11.283938 -83.943245 1.108763 +v 15.620918 -83.111008 1.108765 +v 12.184553 -83.754906 1.588590 +v 14.714559 -83.269417 1.588591 +v 11.080563 -83.958687 0.952040 +v 15.815563 -83.050072 0.952043 +v 12.536850 -83.670990 -6.277530 +v 14.356229 -83.321861 -6.277529 +v 12.823674 -83.600052 1.758001 +v 14.063514 -83.362137 1.758001 +v 11.599414 -83.832504 -0.277528 +v 15.286860 -83.124908 -0.277527 +v 13.012917 -83.556519 1.113722 +v 13.871602 -83.391747 1.113723 +v 12.693849 -83.613785 1.732889 +v 14.189200 -83.326836 1.732889 +v 12.434760 -83.661308 1.669057 +v 14.447476 -83.275078 1.669058 +v 11.946247 -83.751259 1.491852 +v 14.934588 -83.177818 1.491853 +v 11.499306 -83.835533 -0.268777 +v 15.380979 -83.090668 -0.268776 +v 13.042867 -83.533241 1.113722 +v 13.835161 -83.381203 1.113723 +v 11.033727 -83.910683 0.198671 +v 15.841305 -82.988144 0.198673 +v 11.033727 -83.910683 0.877472 +v 15.841305 -82.988144 0.877474 +v 11.402230 -83.838470 -0.242790 +v 15.472245 -83.057457 -0.242788 +v 11.011275 -83.911919 0.367710 +v 15.862618 -82.980980 0.367712 +v 11.011275 -83.911919 0.708433 +v 15.862618 -82.980980 0.708435 +v 11.003772 -83.912331 0.538072 +v 15.869741 -82.978584 0.538074 +v 13.068795 -83.505577 1.113723 +v 13.800834 -83.365105 1.113723 +v 11.311131 -83.841225 -0.200351 +v 15.557894 -83.026299 -0.200349 +v 12.950768 -83.514389 1.773749 +v 13.913739 -83.329597 1.773749 +v 11.228769 -83.843712 -0.142751 +v 15.635326 -82.998123 -0.142749 +v 11.714995 -83.747719 1.379283 +v 15.148105 -83.088928 1.379285 +v 12.257227 -83.640793 -5.996280 +v 14.604812 -83.190308 -5.996278 +v 12.257227 -83.640800 -0.277528 +v 14.604812 -83.190315 -0.277527 +v 11.157640 -83.845863 -0.071733 +v 15.702200 -82.973793 -0.071731 +v 13.090070 -83.474197 1.113723 +v 13.769455 -83.343826 1.113723 +v 12.980480 -83.490944 1.776268 +v 13.877460 -83.318817 1.776268 +v 12.711852 -83.541145 1.732889 +v 14.145588 -83.266014 1.732889 +v 11.099901 -83.847610 0.010550 +v 15.756484 -82.954041 0.010552 +v 12.191833 -83.635368 1.588590 +v 14.663548 -83.161064 1.588592 +v 11.074711 -83.848373 0.952041 +v 15.780167 -82.945427 0.952043 +v 11.061935 -83.848763 0.939906 +v 15.792178 -82.941055 0.939908 +v 11.057299 -83.848900 0.101604 +v 15.796536 -82.939468 0.101607 +v 11.050991 -83.849091 0.926093 +v 15.802467 -82.937317 0.926095 +v 11.042099 -83.849358 0.910878 +v 15.810827 -82.934273 0.910880 +v 11.035433 -83.849564 0.894563 +v 15.817095 -82.931992 0.894565 +v 11.031128 -83.849693 0.198671 +v 15.821142 -82.930519 0.198674 +v 11.031128 -83.849693 0.877472 +v 15.821142 -82.930519 0.877474 +v 13.006289 -83.463196 1.777542 +v 13.843213 -83.302597 1.777542 +v 13.106174 -83.439865 1.113723 +v 13.741788 -83.317902 1.113723 +v 12.449515 -83.564911 1.669058 +v 14.398088 -83.190994 1.669059 +v 11.491850 -83.744308 1.251392 +v 15.354136 -83.003159 1.251394 +v 13.027563 -83.431816 1.777542 +v 13.811834 -83.281319 1.777542 +v 12.568285 -83.509712 -6.277530 +v 14.267330 -83.183678 -6.277529 +v 13.116715 -83.403427 1.113723 +v 13.718507 -83.287949 1.113723 +v 12.736385 -83.470444 1.732889 +v 14.096626 -83.209419 1.732890 +v 11.277822 -83.741035 1.108763 +v 15.551749 -82.920898 1.108765 +v 11.954845 -83.610069 1.491853 +v 14.874338 -83.049835 1.491854 +v 13.043788 -83.397568 1.776268 +v 13.784086 -83.255516 1.776269 +v 11.602061 -83.659439 -0.277528 +v 15.220339 -82.965111 -0.277526 +v 13.054565 -83.361290 1.773749 +v 13.760644 -83.225800 1.773750 +v 12.472976 -83.470253 1.669058 +v 14.341257 -83.111740 1.669059 +v 11.073886 -83.737915 0.952041 +v 15.740045 -82.842506 0.952043 +v 11.502092 -83.653351 -0.268777 +v 15.310953 -82.922455 -0.268775 +v 12.209952 -83.516991 1.588591 +v 14.602898 -83.057800 1.588592 +v 12.767247 -83.402267 1.732889 +v 14.042721 -83.157509 1.732890 +v 11.405152 -83.647446 -0.242789 +v 15.398822 -82.881088 -0.242787 +v 11.724874 -83.585518 1.379284 +v 15.078886 -82.941902 1.379285 +v 11.314181 -83.641907 -0.200351 +v 15.481280 -82.842262 -0.200349 +v 11.031495 -83.689064 0.198672 +v 15.761343 -82.781433 0.198674 +v 11.031495 -83.689064 0.877472 +v 15.761343 -82.781441 0.877474 +v 11.009023 -83.688278 0.367710 +v 15.781929 -82.772392 0.367712 +v 11.009023 -83.688278 0.708433 +v 15.781929 -82.772392 0.708435 +v 11.001513 -83.688019 0.538072 +v 15.788809 -82.769371 0.538074 +v 12.804181 -83.337173 1.732889 +v 13.984318 -83.110718 1.732890 +v 12.297788 -83.432693 -5.996279 +v 14.490103 -83.012001 -5.996278 +v 12.297788 -83.432701 -0.277527 +v 14.490103 -83.012009 -0.277526 +v 11.231934 -83.636894 -0.142751 +v 15.555832 -82.807167 -0.142749 +v 12.626523 -83.356071 -6.277529 +v 14.156356 -83.062508 -6.277528 +v 12.504946 -83.378128 1.669058 +v 14.277455 -83.037994 1.669059 +v 11.160904 -83.632568 -0.071733 +v 15.620215 -82.776855 -0.071731 +v 11.502964 -83.561821 1.251392 +v 15.276264 -82.837753 1.251394 +v 11.976248 -83.470245 1.491853 +v 14.802698 -82.927864 1.491854 +v 11.103245 -83.629059 0.010550 +v 15.672479 -82.752251 0.010552 +v 11.078090 -83.627525 0.952041 +v 15.695280 -82.741516 0.952044 +v 11.065331 -83.626747 0.939906 +v 15.706845 -82.736076 0.939909 +v 12.238763 -83.400749 1.588591 +v 14.533107 -82.960480 1.588592 +v 11.060701 -83.626465 0.101605 +v 15.711040 -82.734100 0.101607 +v 11.054402 -83.626083 0.926093 +v 15.716751 -82.731415 0.926095 +v 11.045523 -83.625542 0.910878 +v 15.724800 -82.727623 0.910881 +v 11.038866 -83.625137 0.894563 +v 15.730833 -82.724785 0.894566 +v 11.034567 -83.624878 0.198672 +v 15.734731 -82.722946 0.198674 +v 11.034567 -83.624878 0.877472 +v 15.734731 -82.722946 0.877475 +v 12.846880 -83.275719 1.732889 +v 13.921902 -83.069427 1.732890 +v 13.087102 -83.211517 1.758002 +v 13.674979 -83.098709 1.758002 +v 11.620436 -83.487328 -0.277528 +v 15.139562 -82.812027 -0.277526 +v 11.290121 -83.539101 1.108763 +v 15.465577 -82.737862 1.108766 +v 12.545160 -83.289284 1.669058 +v 14.207212 -82.970345 1.669059 +v 12.894991 -83.218391 1.732890 +v 13.855989 -83.033981 1.732890 +v 11.521435 -83.472176 -0.268777 +v 15.225921 -82.761307 -0.268775 +v 11.749462 -83.424881 1.379284 +v 14.996584 -82.801781 1.379286 +v 12.709889 -83.214478 -6.277529 +v 14.026500 -82.961830 -6.277528 +v 12.948115 -83.165680 1.732890 +v 13.787127 -83.004684 1.732890 +v 11.425434 -83.457481 -0.242789 +v 15.309664 -82.712120 -0.242787 +v 11.087314 -83.517448 0.952042 +v 15.645965 -82.642670 0.952044 +v 12.278024 -83.287613 1.588591 +v 14.454755 -82.869911 1.588592 +v 12.010277 -83.332947 1.491853 +v 14.720263 -82.812912 1.491854 +v 12.593288 -83.204468 1.669059 +v 14.131108 -82.909370 1.669059 +v 11.335342 -83.443687 -0.200351 +v 15.388251 -82.665962 -0.200349 +v 13.005813 -83.118019 1.732890 +v 13.715887 -82.981766 1.732890 +v 12.372933 -83.234444 -5.996278 +v 14.346910 -82.855644 -5.996278 +v 12.372933 -83.234451 -0.277527 +v 14.346910 -82.855659 -0.277526 +v 11.530625 -83.381111 1.251393 +v 15.183674 -82.680115 1.251395 +v 13.186811 -83.063072 1.113724 +v 13.527404 -82.997711 1.113724 +v 11.253892 -83.431221 -0.142750 +v 15.459302 -82.624229 -0.142748 +v 11.049138 -83.468132 0.198672 +v 15.663176 -82.582733 0.198674 +v 11.049138 -83.468132 0.877473 +v 15.663176 -82.582733 0.877475 +v 13.067606 -83.075806 1.732890 +v 13.642857 -82.965416 1.732890 +v 11.026828 -83.465340 0.367711 +v 15.682867 -82.571877 0.367713 +v 11.026828 -83.465340 0.708434 +v 15.682867 -82.571877 0.708436 +v 13.120116 -83.062622 1.736113 +v 13.589195 -82.972610 1.736113 +v 11.019371 -83.464409 0.538073 +v 15.689447 -82.568253 0.538075 +v 11.183550 -83.420456 -0.071732 +v 15.520662 -82.588188 -0.071730 +v 13.191150 -83.031754 1.113724 +v 13.511783 -82.970230 1.113724 +v 11.654386 -83.317604 -0.277527 +v 15.045198 -82.666924 -0.277526 +v 12.648929 -83.124382 1.669059 +v 14.049775 -82.855568 1.669059 +v 13.125056 -83.031311 1.730499 +v 13.573017 -82.945351 1.730499 +v 12.815987 -83.089012 -6.277529 +v 13.881497 -82.884544 -6.277528 +v 11.126449 -83.411713 0.010551 +v 15.570472 -82.558937 0.010553 +v 12.327410 -83.178505 1.588592 +v 14.368492 -82.786835 1.588593 +v 11.101538 -83.407906 0.952042 +v 15.592202 -82.546173 0.952044 +v 11.088902 -83.405968 0.939907 +v 15.603224 -82.539703 0.939909 +v 11.084318 -83.405266 0.101606 +v 15.607223 -82.537354 0.101608 +v 13.191363 -83.000145 1.113724 +v 13.499884 -82.940948 1.113724 +v 11.078079 -83.404312 0.926094 +v 15.612665 -82.534157 0.926096 +v 11.788555 -83.267143 1.379284 +v 14.901881 -82.669716 1.379286 +v 11.069285 -83.402969 0.910879 +v 15.620337 -82.529648 0.910881 +v 11.062693 -83.401955 0.894564 +v 15.626087 -82.526276 0.894566 +v 11.058436 -83.401306 0.198673 +v 15.629800 -82.524086 0.198675 +v 11.058436 -83.401306 0.877473 +v 15.629800 -82.524094 0.877475 +v 13.125951 -82.999710 1.724139 +v 13.560487 -82.916321 1.724139 +v 12.056650 -83.199310 1.491853 +v 14.627719 -82.705940 1.491855 +v 11.320731 -83.339127 1.108764 +v 15.363118 -82.563416 1.108766 +v 11.557172 -83.293510 -0.268776 +v 15.126589 -82.608559 -0.268775 +v 13.187449 -82.968781 1.113724 +v 13.491909 -82.910355 1.113724 +v 12.711622 -83.049683 1.669059 +v 13.963885 -82.809380 1.669060 +v 13.122787 -82.968346 1.717142 +v 13.551817 -82.886017 1.717142 +v 11.462905 -83.270142 -0.242788 +v 15.205511 -82.551964 -0.242786 +v 12.941760 -82.983284 -6.277528 +v 13.725519 -82.832886 -6.277528 +v 12.386513 -83.074348 1.588592 +v 14.275033 -82.711960 1.588593 +v 12.480503 -83.051743 -5.996278 +v 14.179355 -82.725746 -5.996277 +v 12.480503 -83.051750 -0.277526 +v 14.179355 -82.725754 -0.277526 +v 12.780848 -82.980995 1.669059 +v 13.874152 -82.771202 1.669060 +v 11.120732 -83.299118 0.952042 +v 15.534103 -82.452225 0.952044 +v 11.374441 -83.248222 -0.200350 +v 15.279576 -82.498848 -0.200348 +v 11.574606 -83.203651 1.251393 +v 15.077132 -82.531540 1.251395 +v 13.083594 -82.900330 -6.277528 +v 13.563054 -82.808319 -6.277528 +v 11.703628 -83.151665 -0.277527 +v 14.938032 -82.531006 -0.277525 +v 11.294462 -83.228394 -0.142750 +v 15.346537 -82.450829 -0.142748 +v 12.114984 -83.070442 1.491854 +v 14.525828 -82.607819 1.491855 +v 11.841830 -83.113617 1.379285 +v 14.795562 -82.546822 1.379286 +v 12.856032 -82.918892 1.669059 +v 13.781319 -82.741333 1.669060 +v 13.237408 -82.842537 -6.277528 +v 13.398775 -82.811569 -6.277528 +v 11.086514 -83.249680 0.198673 +v 15.547590 -82.393623 0.198675 +v 11.086514 -83.249680 0.877473 +v 15.547590 -82.393623 0.877475 +v 11.064543 -83.244896 0.367711 +v 15.566231 -82.381050 0.367713 +v 11.064543 -83.244896 0.708434 +v 15.566231 -82.381050 0.708436 +v 12.454843 -82.975998 1.588592 +v 14.175151 -82.645882 1.588593 +v 11.225390 -83.211281 -0.071732 +v 15.404366 -82.409363 -0.071730 +v 11.057201 -83.243294 0.538073 +v 15.572459 -82.376846 0.538075 +v 11.609009 -83.118835 -0.268776 +v 15.013777 -82.465477 -0.268774 +v 12.936553 -82.863876 1.669059 +v 13.686154 -82.720039 1.669060 +v 11.169319 -83.197380 0.010551 +v 15.451309 -82.375694 0.010553 +v 11.144859 -83.191322 0.952042 +v 15.471788 -82.361008 0.952044 +v 11.132452 -83.188248 0.939907 +v 15.482176 -82.353561 0.939909 +v 11.369399 -83.142761 1.108764 +v 15.245221 -82.399010 1.108766 +v 11.127952 -83.187126 0.101606 +v 15.485944 -82.350861 0.101608 +v 11.121825 -83.185608 0.926094 +v 15.491073 -82.347183 0.926096 +v 11.113190 -83.183472 0.910879 +v 15.498303 -82.341995 0.910882 +v 13.021743 -82.816422 1.669060 +v 13.589447 -82.707481 1.669060 +v 11.106717 -83.181870 0.894564 +v 15.503722 -82.338112 0.894567 +v 11.102535 -83.180832 0.198673 +v 15.507223 -82.335602 0.198675 +v 11.102535 -83.180832 0.877473 +v 15.507223 -82.335602 0.877476 +v 12.617402 -82.889847 -5.996278 +v 13.992254 -82.626022 -5.996277 +v 12.617401 -82.889862 -0.277526 +v 13.992254 -82.626038 -0.277526 +v 11.517257 -83.086990 -0.242788 +v 15.087225 -82.401939 -0.242786 +v 12.531833 -82.884270 1.588592 +v 14.069674 -82.589165 1.588593 +v 12.184793 -82.947418 1.491854 +v 14.415438 -82.519371 1.491855 +v 13.088960 -82.761559 1.662446 +v 13.506699 -82.681396 1.662447 +v 11.634541 -83.030937 1.251394 +v 14.957521 -82.393280 1.251395 +v 11.908847 -82.965576 1.379285 +v 14.678507 -82.434097 1.379287 +v 11.431153 -83.057114 -0.200350 +v 15.156153 -82.342308 -0.200348 +v 11.767756 -82.990898 -0.277526 +v 14.818949 -82.405396 -0.277525 +v 11.173868 -83.084732 0.952043 +v 15.405386 -82.272728 0.952044 +v 12.616845 -82.799919 1.588593 +v 13.959478 -82.542274 1.588593 +v 11.353307 -83.030098 -0.142749 +v 15.218472 -82.288399 -0.142748 +v 12.779691 -82.753418 -5.996277 +v 13.790993 -82.559357 -5.996277 +v 12.779691 -82.753433 -0.277526 +v 13.790993 -82.559372 -0.277525 +v 11.676514 -82.949593 -0.268775 +v 14.888421 -82.333252 -0.268774 +v 12.265502 -82.831245 1.491854 +v 14.297461 -82.441330 1.491855 +v 11.143323 -83.035446 0.198673 +v 15.415519 -82.215645 0.198675 +v 11.143323 -83.035446 0.877474 +v 15.415519 -82.215645 0.877476 +v 11.286078 -83.006775 -0.071731 +v 15.272289 -82.241844 -0.071729 +v 11.121870 -83.028717 0.367712 +v 15.432956 -82.201447 0.367714 +v 11.121870 -83.028717 0.708435 +v 15.432956 -82.201447 0.708437 +v 12.709176 -82.723648 1.588593 +v 13.845474 -82.505600 1.588593 +v 11.114699 -83.026466 0.538074 +v 15.438785 -82.196701 0.538076 +v 11.435722 -82.951630 1.108765 +v 15.112864 -82.246010 1.108767 +v 11.231504 -82.987831 0.010552 +v 15.315976 -82.204048 0.010554 +v 12.962703 -82.646385 -5.996277 +v 13.581361 -82.527664 -5.996277 +v 12.962703 -82.646393 -0.277526 +v 13.581361 -82.527679 -0.277525 +v 11.588038 -82.909546 -0.242787 +v 14.955788 -82.263290 -0.242786 +v 11.207697 -82.979576 0.952043 +v 15.335035 -82.187569 0.952045 +v 11.989046 -82.824242 1.379286 +v 14.551687 -82.332481 1.379287 +v 11.195621 -82.975388 0.939908 +v 15.344703 -82.179199 0.939910 +v 11.191239 -82.973862 0.101607 +v 15.348209 -82.176170 0.101609 +v 11.185277 -82.971794 0.926095 +v 15.352982 -82.172035 0.926097 +v 12.808060 -82.656090 1.588593 +v 13.728607 -82.479446 1.588593 +v 11.176872 -82.968880 0.910880 +v 15.359711 -82.166222 0.910882 +v 11.709934 -82.864388 1.251394 +v 14.825833 -82.266464 1.251395 +v 11.170572 -82.966690 0.894565 +v 15.364754 -82.161858 0.894567 +v 11.846237 -82.836624 -0.277526 +v 14.688936 -82.291130 -0.277525 +v 13.115299 -82.592789 1.113725 +v 13.419760 -82.534370 1.113725 +v 11.166502 -82.965279 0.198673 +v 15.368011 -82.159035 0.198675 +v 11.166502 -82.965279 0.877474 +v 15.368011 -82.159035 0.877476 +v 13.114720 -82.588242 1.113725 +v 13.418220 -82.528778 1.113725 +v 13.114873 -82.581856 1.113725 +v 13.415861 -82.523598 1.113725 +v 13.161171 -82.571815 -5.996277 +v 13.369387 -82.531860 -5.996277 +v 13.161171 -82.571823 -0.277525 +v 13.369387 -82.531868 -0.277525 +v 12.356440 -82.722900 1.491855 +v 14.172877 -82.374336 1.491855 +v 13.115974 -82.576187 1.113725 +v 13.412212 -82.518211 1.113725 +v 13.118246 -82.570160 1.113725 +v 13.086424 -82.575356 1.352274 +v 13.440129 -82.507477 1.352274 +v 13.407670 -82.513573 1.113725 +v 13.121151 -82.565201 1.113725 +v 13.403011 -82.510208 1.113725 +v 13.085843 -82.569550 1.351784 +v 13.438520 -82.501869 1.351784 +v 11.505009 -82.871956 -0.200349 +v 15.019008 -82.197647 -0.200347 +v 13.125329 -82.560242 1.113725 +v 13.397235 -82.507370 1.113725 +v 13.129725 -82.556519 1.113725 +v 12.912677 -82.597809 1.588593 +v 13.609846 -82.464027 1.588593 +v 13.391698 -82.505730 1.113725 +v 13.086197 -82.563721 1.351405 +v 13.436033 -82.496582 1.351405 +v 13.135136 -82.553314 1.113725 +v 13.385353 -82.504967 1.113725 +v 13.140689 -82.551178 1.113725 +v 13.380771 -82.505104 1.113725 +v 13.087474 -82.558006 1.351147 +v 13.432734 -82.491760 1.351147 +v 13.259624 -82.522377 1.113725 +v 13.089643 -82.552574 1.351017 +v 13.428707 -82.487511 1.351017 +v 13.056996 -82.557938 1.596014 +v 13.461020 -82.480408 1.596014 +v 13.460215 -82.477501 1.594956 +v 13.092646 -82.547546 1.351017 +v 13.424057 -82.483955 1.351017 +v 13.459309 -82.475029 1.594051 +v 13.056599 -82.552101 1.593982 +v 13.096408 -82.543068 1.351147 +v 13.418902 -82.481178 1.351147 +v 13.457695 -82.471626 1.592798 +v 13.100830 -82.539238 1.351405 +v 13.413378 -82.479263 1.351405 +v 13.456739 -82.469963 1.592183 +v 13.057165 -82.546326 1.592079 +v 13.105800 -82.536163 1.351784 +v 13.407625 -82.478249 1.351784 +v 13.111187 -82.533928 1.352274 +v 13.401792 -82.478165 1.352274 +v 13.454465 -82.466675 1.590956 +v 13.022161 -82.549278 1.588593 +v 13.490175 -82.459465 1.588593 +v 13.058520 -82.541107 1.590454 +v 11.759130 -82.787193 -0.268775 +v 14.751561 -82.212967 -0.268774 +v 13.449304 -82.461273 1.588910 +v 13.061443 -82.534645 1.588582 +v 13.063882 -82.530930 1.587589 +v 13.444624 -82.457863 1.587589 +v 13.065324 -82.529106 1.587131 +v 11.246277 -82.876068 0.952043 +v 15.260880 -82.105690 0.952045 +v 13.439455 -82.455200 1.586525 +v 13.069366 -82.524986 1.586185 +v 11.429941 -82.837975 -0.142749 +v 15.076164 -82.138290 -0.142747 +v 13.072147 -82.522774 1.585745 +v 13.433733 -82.453300 1.585723 +v 13.074996 -82.520905 1.585429 +v 13.077119 -82.519730 1.585269 +v 13.428119 -82.452354 1.585265 +v 13.080046 -82.518379 1.585141 +v 13.082490 -82.517471 1.585109 +v 13.422359 -82.452255 1.585109 +v 13.132986 -82.501823 1.585109 +v 13.369656 -82.456406 1.585109 +v 13.250286 -82.473724 1.585109 +v 12.456853 -82.623268 1.491855 +v 14.042717 -82.318947 1.491856 +v 12.081766 -82.690781 1.379286 +v 14.416152 -82.242828 1.379287 +v 11.365112 -82.808632 -0.071731 +v 15.125526 -82.087036 -0.071729 +v 11.938423 -82.690125 -0.277526 +v 14.549072 -82.189163 -0.277524 +v 11.219106 -82.827171 0.198674 +v 15.268025 -82.050217 0.198676 +v 11.219106 -82.827179 0.877474 +v 15.268025 -82.050217 0.877476 +v 11.674663 -82.739265 -0.242787 +v 14.812286 -82.137177 -0.242785 +v 11.519150 -82.767326 1.108765 +v 14.967140 -82.105682 1.108767 +v 11.800160 -82.705376 1.251395 +v 14.683159 -82.152153 1.251396 +v 11.198341 -82.818542 0.367712 +v 15.284121 -82.034515 0.367714 +v 11.198341 -82.818550 0.708435 +v 15.284121 -82.034515 0.708437 +v 11.191402 -82.815666 0.538074 +v 15.289499 -82.029266 0.538076 +v 11.312487 -82.784813 0.010552 +v 15.165596 -82.045425 0.010554 +v 12.565910 -82.533180 1.491855 +v 13.908061 -82.275635 1.491856 +v 11.289528 -82.774422 0.952043 +v 15.183077 -82.027275 0.952045 +v 11.277884 -82.769150 0.939908 +v 15.191943 -82.018066 0.939910 +v 11.273659 -82.767235 0.101607 +v 15.195160 -82.014725 0.101609 +v 11.267910 -82.764633 0.926095 +v 15.199537 -82.010178 0.926097 +v 11.259804 -82.760963 0.910880 +v 15.205709 -82.003769 0.910882 +v 11.595393 -82.694283 -0.200349 +v 14.869276 -82.066048 -0.200347 +v 11.253729 -82.758217 0.894565 +v 15.210335 -81.998970 0.894567 +v 11.249804 -82.756439 0.198674 +v 15.213323 -81.995865 0.198676 +v 11.249804 -82.756439 0.877474 +v 15.213323 -81.995865 0.877476 +v 11.856172 -82.632980 -0.268775 +v 14.604329 -82.105629 -0.268773 +v 12.186239 -82.566307 1.379286 +v 14.273024 -82.165863 1.379287 +v 12.682708 -82.453384 1.491855 +v 13.770022 -82.244736 1.491856 +v 11.523728 -82.653618 -0.142749 +v 14.920797 -82.001747 -0.142747 +v 12.043549 -82.552620 -0.277525 +v 14.400516 -82.100334 -0.277524 +v 11.337361 -82.674850 0.952044 +v 15.101784 -81.952477 0.952045 +v 12.806277 -82.384537 1.491855 +v 13.629746 -82.226524 1.491856 +v 11.904471 -82.555237 1.251395 +v 14.530681 -82.051285 1.251396 +v 11.776411 -82.577568 -0.242787 +v 14.657912 -82.024628 -0.242785 +v 11.618993 -82.591377 1.108766 +v 14.809258 -81.979187 1.108767 +v 11.461838 -82.618500 -0.071730 +v 14.965293 -81.946213 -0.071729 +v 12.301598 -82.451843 1.379286 +v 14.123492 -82.102234 1.379287 +v 12.935596 -82.327217 1.491856 +v 13.488396 -82.221138 1.491856 +v 11.313252 -82.626534 0.198674 +v 15.106297 -81.898674 0.198676 +v 11.313252 -82.626534 0.877475 +v 15.106297 -81.898674 0.877476 +v 13.069591 -82.281891 1.491856 +v 13.347140 -82.228630 1.491856 +v 11.966833 -82.488235 -0.268774 +v 14.447948 -82.012123 -0.268773 +v 13.207152 -82.248940 1.491856 +v 11.293345 -82.616081 0.367713 +v 15.120920 -81.881592 0.367714 +v 11.293345 -82.616081 0.708436 +v 15.120920 -81.881592 0.708437 +v 11.411595 -82.589989 0.010553 +v 15.001413 -81.901131 0.010554 +v 11.286693 -82.612587 0.538075 +v 15.125807 -81.875885 0.538076 +v 11.701563 -82.525566 -0.200348 +v 14.708197 -81.948616 -0.200347 +v 11.389677 -82.577553 0.952044 +v 15.017172 -81.881462 0.952045 +v 12.160742 -82.425240 -0.277525 +v 14.244496 -82.025383 -0.277524 +v 11.378559 -82.571251 0.939909 +v 15.025164 -81.871490 0.939910 +v 11.374526 -82.568954 0.101608 +v 15.028064 -81.867867 0.101609 +v 11.369038 -82.565842 0.926096 +v 15.032009 -81.862946 0.926097 +v 11.361300 -82.561455 0.910881 +v 15.037573 -81.856003 0.910883 +v 11.355499 -82.558167 0.894566 +v 15.041742 -81.850800 0.894568 +v 11.351753 -82.556038 0.198674 +v 15.044436 -81.847435 0.198676 +v 11.351753 -82.556038 0.877475 +v 15.044436 -81.847435 0.877477 +v 12.426886 -82.348351 1.379287 +v 13.968794 -82.052467 1.379287 +v 12.022004 -82.415199 1.251395 +v 14.369661 -81.964699 1.251396 +v 11.633892 -82.478554 -0.142748 +v 14.753658 -81.879890 -0.142747 +v 11.892443 -82.425797 -0.242786 +v 14.493943 -81.926582 -0.242785 +v 11.446366 -82.482750 0.952044 +v 14.929415 -81.814377 0.952046 +v 11.734422 -82.425232 1.108766 +v 14.640530 -81.867569 1.108768 +v 12.090200 -82.354149 -0.268774 +v 14.283710 -81.933228 -0.268773 +v 12.289034 -82.309052 -0.277525 +v 14.082308 -81.964935 -0.277524 +v 12.561067 -82.256676 1.379287 +v 13.810210 -82.016975 1.379287 +v 11.575450 -82.437950 -0.071730 +v 14.792919 -81.820541 -0.071728 +v 11.822634 -82.367203 -0.200348 +v 14.537106 -81.846313 -0.200346 +v 11.425007 -82.435135 0.198675 +v 14.931635 -81.762238 0.198676 +v 11.425007 -82.435135 0.877475 +v 14.931635 -81.762238 0.877477 +v 12.151784 -82.286430 1.251395 +v 14.201436 -81.893120 1.251396 +v 11.528009 -82.404991 0.010553 +v 14.824790 -81.772362 0.010555 +v 12.703028 -82.177589 1.379287 +v 13.649057 -81.996048 1.379287 +v 11.406116 -82.422943 0.367713 +v 14.944668 -81.743919 0.367715 +v 11.406116 -82.422943 0.708436 +v 14.944668 -81.743919 0.708438 +v 11.399804 -82.418861 0.538075 +v 14.949023 -81.737793 0.538077 +v 11.507313 -82.390617 0.952044 +v 14.838694 -81.751343 0.952046 +v 12.021795 -82.285202 -0.242786 +v 14.321737 -81.843857 -0.242785 +v 12.427360 -82.205002 -0.277524 +v 13.915295 -81.919479 -0.277524 +v 11.496815 -82.383324 0.939909 +v 14.845746 -81.740685 0.939911 +v 11.493007 -82.380676 0.101608 +v 14.848306 -81.736816 0.101610 +v 11.487823 -82.377075 0.926096 +v 14.851787 -81.731552 0.926098 +v 12.851593 -82.111732 1.379287 +v 13.486669 -81.989868 1.379287 +v 12.225248 -82.231834 -0.268774 +v 14.112980 -81.869591 -0.268773 +v 11.480516 -82.372002 0.910881 +v 14.856696 -81.724129 0.910883 +v 11.759518 -82.314232 -0.142748 +v 14.576130 -81.773743 -0.142746 +v 11.475040 -82.368195 0.894566 +v 14.860375 -81.718575 0.894568 +v 11.471502 -82.365738 0.198675 +v 14.862752 -81.714981 0.198677 +v 11.471502 -82.365738 0.877475 +v 14.862752 -81.714981 0.877477 +v 13.005531 -82.059662 1.379287 +v 13.324389 -81.998474 1.379287 +v 13.163567 -82.021805 1.379287 +v 11.864481 -82.270271 1.108767 +v 14.462349 -81.771759 1.108768 +v 12.292735 -82.169998 1.251396 +v 14.027398 -81.837128 1.251397 +v 12.574574 -82.113968 -0.277524 +v 13.744840 -81.889404 -0.277524 +v 11.572389 -82.301353 0.952044 +v 14.745199 -81.692513 0.952046 +v 11.957603 -82.220505 -0.200347 +v 14.357422 -81.759995 -0.200346 +v 11.705010 -82.268486 -0.071730 +v 14.609832 -81.711067 -0.071728 +v 12.370861 -82.122307 -0.268773 +v 13.937169 -81.821739 -0.268773 +v 12.163397 -82.156960 -0.242785 +v 14.142722 -81.777138 -0.242785 +v 12.729455 -82.036697 -0.277524 +v 13.572356 -81.874947 -0.277524 +v 11.553466 -82.254532 0.198675 +v 14.745447 -81.642014 0.198677 +v 11.553466 -82.254532 0.877476 +v 14.745447 -81.642014 0.877477 +v 11.660764 -82.231346 0.010554 +v 14.637189 -81.660187 0.010555 +v 12.443689 -82.066864 1.251396 +v 13.848990 -81.797203 1.251397 +v 11.535746 -82.240692 0.367714 +v 14.756784 -81.622589 0.367715 +v 11.535746 -82.240692 0.708437 +v 14.756784 -81.622597 0.708438 +v 11.641460 -82.215149 0.952045 +v 14.649124 -81.637993 0.952046 +v 11.529824 -82.236061 0.538076 +v 14.760573 -81.616104 0.538077 +v 12.890722 -81.973831 -0.277524 +v 13.399274 -81.876244 -0.277524 +v 11.899567 -82.162010 -0.142747 +v 14.389685 -81.684174 -0.142746 +v 11.631670 -82.206932 0.939910 +v 14.655178 -81.626740 0.939911 +v 11.628117 -82.203949 0.101609 +v 14.657374 -81.622650 0.101610 +v 12.008092 -82.127777 1.108767 +v 14.276195 -81.692543 1.108768 +v 13.057038 -81.925888 -0.277524 +v 13.227025 -81.893272 -0.277524 +v 11.623282 -82.199890 0.926097 +v 14.660363 -81.617096 0.926098 +v 12.525828 -82.026474 -0.268773 +v 13.757736 -81.790085 -0.268773 +v 11.616468 -82.194168 0.910882 +v 14.664577 -81.609261 0.910883 +v 11.611361 -82.189880 0.894567 +v 14.667735 -81.603386 0.894568 +v 11.608061 -82.187111 0.198675 +v 14.669775 -81.599594 0.198677 +v 11.608061 -82.187111 0.877476 +v 14.669775 -81.599594 0.877477 +v 12.105353 -82.086685 -0.200347 +v 14.170632 -81.690376 -0.200346 +v 12.316074 -82.042114 -0.242785 +v 13.958381 -81.726967 -0.242784 +v 12.603397 -81.977890 1.251396 +v 13.667691 -81.773659 1.251397 +v 11.849444 -82.111496 -0.071729 +v 14.417548 -81.618698 -0.071728 +v 11.714383 -82.132172 0.952045 +v 14.550668 -81.587906 0.952046 +v 12.688869 -81.945137 -0.268773 +v 13.576168 -81.774872 -0.268772 +v 12.770535 -81.903801 1.251396 +v 13.485002 -81.766701 1.251397 +v 12.858631 -81.878960 -0.268773 +v 13.393969 -81.776230 -0.268772 +v 11.808758 -82.070488 0.010554 +v 14.440166 -81.565544 0.010555 +v 12.478561 -81.941635 -0.242785 +v 13.770242 -81.693771 -0.242784 +v 12.052876 -82.023163 -0.142747 +v 14.195868 -81.611931 -0.142746 +v 12.164065 -81.998940 1.108767 +v 14.083609 -81.630592 1.108768 +v 11.697598 -82.086166 0.198676 +v 14.549231 -81.538956 0.198677 +v 11.697598 -82.086166 0.877476 +v 14.549231 -81.538956 0.877477 +v 13.033707 -81.828491 -0.268773 +v 13.212646 -81.794151 -0.268773 +v 12.943717 -81.845222 1.251397 +v 13.302437 -81.776382 1.251397 +v 13.121509 -81.802635 1.251397 +v 12.264660 -81.966858 -0.200347 +v 13.978287 -81.638031 -0.200346 +v 11.791008 -82.052605 0.952045 +v 14.450032 -81.542358 0.952046 +v 11.681191 -82.070793 0.367714 +v 14.558782 -81.518600 0.367715 +v 11.681191 -82.070793 0.708437 +v 14.558782 -81.518600 0.708438 +v 11.675708 -82.065651 0.538076 +v 14.561974 -81.511795 0.538077 +v 11.782005 -82.043533 0.939910 +v 14.455038 -81.530594 0.939911 +v 11.778739 -82.040237 0.101609 +v 14.456853 -81.526321 0.101610 +v 11.774294 -82.035759 0.926097 +v 14.459324 -81.520515 0.926098 +v 11.768027 -82.029442 0.910882 +v 14.462808 -81.512329 0.910883 +v 12.649512 -81.856346 -0.242785 +v 13.579864 -81.677818 -0.242784 +v 11.763330 -82.024712 0.894567 +v 14.465419 -81.506195 0.894568 +v 11.760297 -82.021652 0.198676 +v 14.467105 -81.502228 0.198677 +v 11.760297 -82.021652 0.877476 +v 14.467105 -81.502228 0.877477 +v 12.007556 -81.968300 -0.071729 +v 14.217661 -81.544189 -0.071728 +v 11.871175 -81.976608 0.952045 +v 14.347428 -81.501427 0.952046 +v 12.331109 -81.884811 1.108768 +v 13.886186 -81.586403 1.108768 +v 12.827511 -81.786957 -0.242785 +v 13.388824 -81.679245 -0.242784 +v 12.434204 -81.862015 -0.200346 +v 13.781978 -81.603386 -0.200346 +v 12.218178 -81.898827 -0.142747 +v 13.996284 -81.557617 -0.142746 +v 13.011082 -81.734039 -0.242784 +v 13.198705 -81.698036 -0.242784 +v 11.970766 -81.923759 0.010554 +v 14.235352 -81.489204 0.010555 +v 11.856244 -81.931396 0.198676 +v 14.344566 -81.453903 0.198677 +v 11.856244 -81.931396 0.877476 +v 14.344566 -81.453911 0.877478 +v 11.954718 -81.904335 0.952045 +v 14.243069 -81.465218 0.952047 +v 12.612578 -81.773026 -0.200346 +v 13.583332 -81.586746 -0.200346 +v 11.946576 -81.894478 0.939910 +v 14.246984 -81.453049 0.939912 +v 11.841280 -81.914612 0.367714 +v 14.352255 -81.432777 0.367716 +v 11.841280 -81.914619 0.708437 +v 14.352255 -81.432777 0.708439 +v 12.507839 -81.786354 1.108768 +v 13.685563 -81.560356 1.108768 +v 11.943624 -81.890900 0.101609 +v 14.248403 -81.448631 0.101610 +v 11.836279 -81.909004 0.538076 +v 14.354824 -81.425713 0.538078 +v 11.939605 -81.886040 0.926097 +v 14.250336 -81.442619 0.926099 +v 12.178035 -81.840065 -0.071728 +v 14.011827 -81.488174 -0.071728 +v 11.933938 -81.879181 0.910882 +v 14.253060 -81.434151 0.910884 +v 12.394100 -81.790039 -0.142746 +v 13.792588 -81.521675 -0.142746 +v 11.929691 -81.874039 0.894567 +v 14.255102 -81.427803 0.894569 +v 11.926948 -81.870712 0.198676 +v 14.256422 -81.423706 0.198677 +v 11.926948 -81.870712 0.877476 +v 14.256422 -81.423706 0.877478 +v 12.798307 -81.700623 -0.200346 +v 13.383995 -81.588234 -0.200346 +v 12.041462 -81.835938 0.952046 +v 14.137168 -81.433784 0.952047 +v 12.692790 -81.704369 1.108768 +v 13.483403 -81.552658 1.108768 +v 12.989850 -81.645409 -0.200346 +v 13.185620 -81.607841 -0.200346 +v 12.145447 -81.792374 0.010555 +v 14.024443 -81.431801 0.010556 +v 12.884429 -81.639542 1.108768 +v 13.281381 -81.563370 1.108768 +v 12.579187 -81.697693 -0.142746 +v 13.586468 -81.504402 -0.142746 +v 13.081170 -81.592415 1.108768 +v 12.028122 -81.791473 0.198676 +v 14.133103 -81.387543 0.198677 +v 12.028122 -81.791473 0.877477 +v 14.133103 -81.387543 0.877478 +v 12.359467 -81.727875 -0.071728 +v 13.801751 -81.451111 -0.071728 +v 12.131231 -81.771561 0.952046 +v 14.029947 -81.407211 0.952047 +v 12.124021 -81.761009 0.939911 +v 14.032739 -81.394737 0.939912 +v 12.121405 -81.757179 0.101610 +v 14.033751 -81.390213 0.101610 +v 12.014723 -81.773422 0.367715 +v 14.138866 -81.365807 0.367716 +v 12.014723 -81.773422 0.708438 +v 14.138866 -81.365807 0.708439 +v 12.117845 -81.751968 0.926098 +v 14.035131 -81.384056 0.926099 +v 12.771904 -81.622566 -0.142746 +v 13.379631 -81.505951 -0.142746 +v 12.010245 -81.767387 0.538077 +v 14.140792 -81.358543 0.538078 +v 12.112825 -81.744621 0.910883 +v 14.037073 -81.375374 0.910884 +v 12.109063 -81.739120 0.894568 +v 14.038529 -81.368866 0.894569 +v 12.106633 -81.735558 0.198677 +v 14.039471 -81.364662 0.198678 +v 12.106633 -81.735558 0.877477 +v 14.039471 -81.364662 0.877478 +v 12.223837 -81.711342 0.952046 +v 13.921627 -81.385544 0.952047 +v 12.970654 -81.565277 -0.142746 +v 13.173791 -81.526299 -0.142746 +v 12.331352 -81.677406 0.010555 +v 13.809190 -81.393822 0.010556 +v 12.550350 -81.632637 -0.071728 +v 13.589175 -81.433296 -0.071728 +v 12.319087 -81.655396 0.952046 +v 13.812434 -81.368835 0.952047 +v 12.211852 -81.667526 0.198677 +v 13.916542 -81.340401 0.198678 +v 12.211852 -81.667526 0.877477 +v 13.916542 -81.340408 0.877478 +v 12.312866 -81.644226 0.939911 +v 13.814080 -81.356155 0.939912 +v 12.310609 -81.640175 0.101610 +v 13.814677 -81.351555 0.101611 +v 12.749103 -81.555161 -0.071728 +v 13.375861 -81.434891 -0.071728 +v 12.307537 -81.634666 0.926098 +v 13.815490 -81.345299 0.926099 +v 12.200126 -81.648338 0.367715 +v 13.920334 -81.318237 0.367716 +v 12.200126 -81.648338 0.708438 +v 13.920334 -81.318245 0.708439 +v 12.303207 -81.626892 0.910883 +v 13.816635 -81.336479 0.910884 +v 12.416785 -81.603844 0.952046 +v 13.702594 -81.357101 0.952047 +v 12.526940 -81.579826 0.010555 +v 13.591373 -81.375572 0.010556 +v 12.196206 -81.641930 0.538077 +v 13.921601 -81.310837 0.538078 +v 12.954077 -81.496071 -0.071728 +v 13.163575 -81.455872 -0.071728 +v 12.299961 -81.621063 0.894568 +v 13.817494 -81.329865 0.894569 +v 12.297865 -81.617302 0.198677 +v 13.818048 -81.325592 0.198678 +v 12.297865 -81.617302 0.877477 +v 13.818048 -81.325592 0.877478 +v 12.516728 -81.556793 0.952046 +v 13.592333 -81.350388 0.952047 +v 12.511549 -81.545105 0.939911 +v 13.592819 -81.337616 0.939912 +v 12.730593 -81.500443 0.010555 +v 13.372801 -81.377205 0.010556 +v 12.509669 -81.540863 0.101610 +v 13.592996 -81.332977 0.101611 +v 12.405953 -81.560539 0.198677 +v 13.696627 -81.312866 0.198678 +v 12.405953 -81.560539 0.877477 +v 13.696627 -81.312866 0.877478 +v 12.618710 -81.514336 0.952046 +v 13.481880 -81.348701 0.952047 +v 12.507112 -81.535095 0.926098 +v 13.593236 -81.326675 0.926099 +v 12.503506 -81.526962 0.910883 +v 13.593575 -81.317787 0.910884 +v 12.940619 -81.439896 0.010556 +v 13.155282 -81.398705 0.010556 +v 12.500804 -81.520866 0.894568 +v 13.593828 -81.311119 0.894569 +v 12.395993 -81.540382 0.367715 +v 13.698417 -81.290451 0.367716 +v 12.395993 -81.540382 0.708438 +v 13.698417 -81.290451 0.708439 +v 12.722517 -81.476570 0.952046 +v 13.371466 -81.352036 0.952047 +v 12.499059 -81.516930 0.198677 +v 13.593991 -81.306816 0.198678 +v 12.499059 -81.516930 0.877477 +v 13.593991 -81.306816 0.877478 +v 12.392665 -81.533646 0.538077 +v 13.699015 -81.282959 0.538078 +v 12.827936 -81.443565 0.952047 +v 13.261317 -81.360397 0.952047 +v 12.718421 -81.464462 0.939912 +v 13.370789 -81.339272 0.939912 +v 12.716935 -81.460068 0.101610 +v 13.370543 -81.334641 0.101611 +v 12.934749 -81.415390 0.952047 +v 13.151664 -81.373764 0.952047 +v 13.042732 -81.392113 0.952047 +v 12.714913 -81.454086 0.926099 +v 13.370209 -81.328339 0.926099 +v 12.608863 -81.471382 0.198677 +v 13.475129 -81.305153 0.198678 +v 12.608863 -81.471382 0.877477 +v 13.475129 -81.305153 0.877478 +v 12.712062 -81.445663 0.910884 +v 13.369738 -81.319458 0.910884 +v 12.931771 -81.402962 0.939912 +v 13.149829 -81.361115 0.939912 +v 12.930691 -81.398445 0.101610 +v 13.149163 -81.356522 0.101611 +v 12.709926 -81.439346 0.894569 +v 13.369384 -81.312798 0.894569 +v 12.708546 -81.435265 0.198677 +v 13.369156 -81.308495 0.198678 +v 12.708546 -81.435265 0.877478 +v 13.369156 -81.308495 0.877478 +v 12.929220 -81.392311 0.926099 +v 13.148257 -81.350281 0.926099 +v 12.600750 -81.450417 0.367716 +v 13.474902 -81.282669 0.367716 +v 12.600750 -81.450417 0.708439 +v 13.474902 -81.282669 0.708439 +v 12.927148 -81.383659 0.910884 +v 13.146980 -81.341476 0.910884 +v 12.598039 -81.443405 0.538078 +v 13.474827 -81.275154 0.538078 +v 12.818947 -81.400772 0.198677 +v 13.253831 -81.317322 0.198678 +v 12.818947 -81.400780 0.877478 +v 13.253831 -81.317329 0.877478 +v 12.925594 -81.377174 0.894569 +v 13.146023 -81.334877 0.894569 +v 12.924591 -81.372986 0.198677 +v 13.145405 -81.330612 0.198678 +v 12.924591 -81.372986 0.877478 +v 13.145405 -81.330612 0.877478 +v 13.034515 -81.349289 0.198678 +v 13.034515 -81.349289 0.877478 +v 12.812747 -81.379166 0.367716 +v 13.251590 -81.294952 0.367716 +v 12.812747 -81.379166 0.708439 +v 13.251590 -81.294952 0.708439 +v 12.810676 -81.371941 0.538078 +v 13.250841 -81.287476 0.538078 +v 13.030278 -81.327202 0.367716 +v 13.030278 -81.327202 0.708439 +v 13.028862 -81.319824 0.538078 + +f 5 3 1 +f 3 8 1 +f 8 4 1 +f 7 5 1 +f 2 7 1 +f 4 2 1 +f 4 6 2 +f 6 17 2 +f 17 10 2 +f 10 7 2 +f 13 8 3 +f 11 13 3 +f 9 11 3 +f 5 9 3 +f 8 24 4 +f 24 15 4 +f 15 6 4 +f 16 9 5 +f 23 16 5 +f 7 23 5 +f 15 22 6 +f 22 37 6 +f 37 17 6 +f 10 18 7 +f 18 23 7 +f 35 24 8 +f 13 35 8 +f 14 11 9 +f 25 14 9 +f 16 25 9 +f 25 36 14 +f 24 60 15 +f 60 50 15 +f 50 22 15 +f 51 25 16 +f 59 51 16 +f 23 59 16 +f 38 23 18 +f 50 58 22 +f 58 71 22 +f 71 37 22 +f 38 59 23 +f 69 60 24 +f 35 69 24 +f 61 36 25 +f 51 61 25 +f 61 70 36 +f 72 59 38 +f 60 96 50 +f 96 88 50 +f 88 58 50 +f 89 61 51 +f 95 89 51 +f 59 95 51 +f 88 94 58 +f 94 102 58 +f 102 71 58 +f 72 95 59 +f 98 96 60 +f 69 98 60 +f 97 70 61 +f 89 97 61 +f 97 99 70 +f 103 95 72 +f 96 129 88 +f 129 125 88 +f 125 94 88 +f 126 97 89 +f 128 126 89 +f 95 128 89 +f 125 127 94 +f 127 141 94 +f 141 102 94 +f 103 128 95 +f 137 129 96 +f 98 137 96 +f 130 99 97 +f 126 130 97 +f 130 138 99 +f 142 128 103 +f 129 174 125 +f 174 170 125 +f 170 127 125 +f 171 130 126 +f 173 171 126 +f 128 173 126 +f 170 172 127 +f 172 184 127 +f 184 141 127 +f 142 173 128 +f 180 174 129 +f 137 180 129 +f 175 138 130 +f 171 175 130 +f 175 181 138 +f 185 173 142 +f 174 221 170 +f 221 215 170 +f 215 172 170 +f 216 175 171 +f 220 216 171 +f 173 220 171 +f 215 219 172 +f 219 236 172 +f 236 184 172 +f 185 220 173 +f 230 221 174 +f 180 230 174 +f 222 181 175 +f 216 222 175 +f 222 231 181 +f 237 220 185 +f 221 281 215 +f 281 275 215 +f 275 219 215 +f 276 222 216 +f 280 276 216 +f 220 280 216 +f 275 279 219 +f 279 293 219 +f 293 236 219 +f 237 280 220 +f 289 281 221 +f 230 289 221 +f 282 231 222 +f 276 282 222 +f 282 290 231 +f 294 280 237 +f 281 341 275 +f 341 335 275 +f 335 279 275 +f 336 282 276 +f 340 336 276 +f 280 340 276 +f 335 339 279 +f 339 355 279 +f 355 293 279 +f 294 340 280 +f 347 341 281 +f 289 347 281 +f 342 290 282 +f 336 342 282 +f 342 348 290 +f 356 340 294 +f 341 397 335 +f 397 391 335 +f 391 339 335 +f 392 342 336 +f 396 392 336 +f 340 396 336 +f 391 395 339 +f 395 409 339 +f 409 355 339 +f 356 396 340 +f 403 397 341 +f 347 403 341 +f 398 348 342 +f 392 398 342 +f 398 404 348 +f 410 396 356 +f 397 457 391 +f 457 453 391 +f 453 395 391 +f 396 456 392 +f 454 398 392 +f 456 454 392 +f 453 455 395 +f 455 463 395 +f 463 409 395 +f 410 456 396 +f 465 457 397 +f 403 465 397 +f 458 404 398 +f 454 458 398 +f 458 466 404 +f 464 456 410 +f 588 455 453 +f 592 588 453 +f 457 592 453 +f 589 458 454 +f 591 589 454 +f 456 591 454 +f 590 600 455 +f 588 590 455 +f 600 469 455 +f 469 463 455 +f 470 591 456 +f 464 470 456 +f 602 592 457 +f 465 602 457 +f 593 466 458 +f 589 593 458 +f 593 603 466 +f 601 591 470 +f 592 672 588 +f 672 668 588 +f 668 590 588 +f 669 593 589 +f 671 669 589 +f 591 671 589 +f 612 600 590 +f 668 670 590 +f 670 678 590 +f 678 612 590 +f 601 613 591 +f 613 671 591 +f 602 680 592 +f 680 672 592 +f 673 603 593 +f 669 673 593 +f 673 681 603 +f 679 671 613 +f 672 767 668 +f 767 761 668 +f 761 670 668 +f 762 673 669 +f 766 762 669 +f 671 766 669 +f 691 678 670 +f 761 765 670 +f 765 771 670 +f 771 691 670 +f 679 692 671 +f 692 766 671 +f 680 693 672 +f 693 767 672 +f 774 694 673 +f 694 681 673 +f 768 774 673 +f 762 768 673 +f 772 766 692 +f 773 767 693 +f 767 853 761 +f 853 849 761 +f 849 765 761 +f 850 768 762 +f 852 850 762 +f 766 852 762 +f 791 771 765 +f 849 851 765 +f 851 861 765 +f 861 791 765 +f 772 792 766 +f 792 852 766 +f 773 793 767 +f 793 853 767 +f 794 774 768 +f 864 794 768 +f 854 864 768 +f 850 854 768 +f 862 852 792 +f 863 853 793 +f 853 955 849 +f 955 951 849 +f 951 851 849 +f 952 854 850 +f 954 952 850 +f 852 954 850 +f 873 861 851 +f 951 953 851 +f 953 957 851 +f 957 873 851 +f 862 874 852 +f 874 954 852 +f 863 875 853 +f 875 955 853 +f 876 864 854 +f 960 876 854 +f 956 960 854 +f 952 956 854 +f 958 954 874 +f 959 955 875 +f 955 1112 951 +f 1112 1108 951 +f 1108 953 951 +f 1109 956 952 +f 1111 1109 952 +f 954 1111 952 +f 973 957 953 +f 1108 1110 953 +f 1110 1114 953 +f 1114 973 953 +f 958 974 954 +f 974 1111 954 +f 959 975 955 +f 975 1112 955 +f 976 960 956 +f 1117 976 956 +f 1113 1117 956 +f 1109 1113 956 +f 1115 1111 974 +f 1116 1112 975 +f 1112 1179 1108 +f 1179 1181 1108 +f 1181 1110 1108 +f 1182 1113 1109 +f 1178 1182 1109 +f 1111 1178 1109 +f 1122 1114 1110 +f 1181 1177 1110 +f 1177 1173 1110 +f 1173 1122 1110 +f 1115 1123 1111 +f 1123 1178 1111 +f 1116 1124 1112 +f 1124 1179 1112 +f 1125 1117 1113 +f 1176 1125 1113 +f 1180 1176 1113 +f 1182 1180 1113 +f 1174 1178 1123 +f 1175 1179 1124 +f 1177 1251 1173 +f 1252 1178 1174 +f 1253 1179 1175 +f 1180 1254 1176 +f 1181 1348 1177 +f 1348 1344 1177 +f 1344 1338 1177 +f 1338 1251 1177 +f 1345 1182 1178 +f 1252 1345 1178 +f 1253 1346 1179 +f 1346 1181 1179 +f 1341 1254 1180 +f 1347 1341 1180 +f 1349 1347 1180 +f 1182 1349 1180 +f 1346 1348 1181 +f 1345 1349 1182 +f 1339 1345 1252 +f 1340 1346 1253 +f 1344 1388 1338 +f 1389 1345 1339 +f 1390 1346 1340 +f 1347 1391 1341 +f 1348 1442 1344 +f 1442 1438 1344 +f 1438 1434 1344 +f 1434 1388 1344 +f 1439 1349 1345 +f 1389 1439 1345 +f 1390 1440 1346 +f 1440 1348 1346 +f 1437 1391 1347 +f 1441 1437 1347 +f 1443 1441 1347 +f 1349 1443 1347 +f 1440 1442 1348 +f 1439 1443 1349 +f 1435 1439 1389 +f 1436 1440 1390 +f 1438 1478 1434 +f 1479 1439 1435 +f 1480 1440 1436 +f 1441 1481 1437 +f 1442 1538 1438 +f 1538 1532 1438 +f 1532 1526 1438 +f 1526 1478 1438 +f 1533 1443 1439 +f 1479 1533 1439 +f 1480 1534 1440 +f 1534 1442 1440 +f 1529 1481 1441 +f 1535 1529 1441 +f 1539 1535 1441 +f 1443 1539 1441 +f 1534 1538 1442 +f 1533 1539 1443 +f 1527 1533 1479 +f 1528 1534 1480 +f 1532 1572 1526 +f 1573 1533 1527 +f 1574 1534 1528 +f 1535 1575 1529 +f 1538 1634 1532 +f 1634 1626 1532 +f 1626 1622 1532 +f 1622 1572 1532 +f 1627 1539 1533 +f 1573 1627 1533 +f 1574 1628 1534 +f 1628 1538 1534 +f 1625 1575 1535 +f 1629 1625 1535 +f 1635 1629 1535 +f 1539 1635 1535 +f 1628 1634 1538 +f 1627 1635 1539 +f 1623 1627 1573 +f 1624 1628 1574 +f 1626 1658 1622 +f 1659 1627 1623 +f 1660 1628 1624 +f 1629 1661 1625 +f 1634 1708 1626 +f 1708 1702 1626 +f 1702 1696 1626 +f 1696 1658 1626 +f 1703 1635 1627 +f 1659 1703 1627 +f 1660 1704 1628 +f 1704 1634 1628 +f 1699 1661 1629 +f 1705 1699 1629 +f 1709 1705 1629 +f 1635 1709 1629 +f 1704 1708 1634 +f 1703 1709 1635 +f 1697 1703 1659 +f 1698 1704 1660 +f 1702 1742 1696 +f 1743 1703 1697 +f 1744 1704 1698 +f 1705 1745 1699 +f 1708 1853 1702 +f 1853 1849 1702 +f 1849 1839 1702 +f 1839 1742 1702 +f 1850 1709 1703 +f 1743 1850 1703 +f 1744 1851 1704 +f 1851 1708 1704 +f 1842 1745 1705 +f 1852 1842 1705 +f 1854 1852 1705 +f 1709 1854 1705 +f 1851 1853 1708 +f 1850 1854 1709 +f 1840 1850 1743 +f 1841 1851 1744 +f 1849 1873 1839 +f 1874 1850 1840 +f 1875 1851 1841 +f 1852 1876 1842 +f 1853 1918 1849 +f 1918 1912 1849 +f 1912 1903 1849 +f 1903 1873 1849 +f 1913 1854 1850 +f 1874 1913 1850 +f 1875 1914 1851 +f 1914 1853 1851 +f 1906 1876 1852 +f 1915 1906 1852 +f 1919 1915 1852 +f 1854 1919 1852 +f 1914 1918 1853 +f 1913 1919 1854 +f 1904 1913 1874 +f 1905 1914 1875 +f 1912 1936 1903 +f 1937 1913 1904 +f 1938 1914 1905 +f 1915 1939 1906 +f 1918 1976 1912 +f 1976 1972 1912 +f 1972 1962 1912 +f 1962 1936 1912 +f 1973 1919 1913 +f 1937 1973 1913 +f 1938 1974 1914 +f 1974 1918 1914 +f 1965 1939 1915 +f 1975 1965 1915 +f 1977 1975 1915 +f 1919 1977 1915 +f 1974 1976 1918 +f 1973 1977 1919 +f 1963 1973 1937 +f 1964 1974 1938 +f 1972 2000 1962 +f 2001 1973 1963 +f 2002 1974 1964 +f 1975 2003 1965 +f 1976 2039 1972 +f 2039 2033 1972 +f 2033 2025 1972 +f 2025 2000 1972 +f 2034 1977 1973 +f 2001 2034 1973 +f 2002 2035 1974 +f 2035 1976 1974 +f 2028 2003 1975 +f 2036 2028 1975 +f 2040 2036 1975 +f 1977 2040 1975 +f 2035 2039 1976 +f 2034 2040 1977 +f 2026 2034 2001 +f 2027 2035 2002 +f 2033 2061 2025 +f 2062 2034 2026 +f 2063 2035 2027 +f 2036 2064 2028 +f 2039 2106 2033 +f 2106 2102 2033 +f 2102 2089 2033 +f 2089 2061 2033 +f 2103 2040 2034 +f 2062 2103 2034 +f 2063 2104 2035 +f 2104 2039 2035 +f 2092 2064 2036 +f 2105 2092 2036 +f 2107 2105 2036 +f 2040 2107 2036 +f 2104 2106 2039 +f 2103 2107 2040 +f 2090 2103 2062 +f 2091 2104 2063 +f 2102 2120 2089 +f 2121 2103 2090 +f 2122 2104 2091 +f 2105 2123 2092 +f 2106 2158 2102 +f 2158 2150 2102 +f 2150 2140 2102 +f 2140 2120 2102 +f 2151 2107 2103 +f 2121 2151 2103 +f 2122 2152 2104 +f 2152 2106 2104 +f 2143 2123 2105 +f 2153 2143 2105 +f 2159 2153 2105 +f 2107 2159 2105 +f 2152 2158 2106 +f 2151 2159 2107 +f 2141 2151 2121 +f 2142 2152 2122 +f 2150 2170 2140 +f 2171 2151 2141 +f 2172 2152 2142 +f 2153 2173 2143 +f 2158 2209 2150 +f 2209 2201 2150 +f 2201 2189 2150 +f 2189 2170 2150 +f 2202 2159 2151 +f 2171 2202 2151 +f 2172 2203 2152 +f 2203 2158 2152 +f 2192 2173 2153 +f 2204 2192 2153 +f 2210 2204 2153 +f 2159 2210 2153 +f 2203 2209 2158 +f 2202 2210 2159 +f 2190 2202 2171 +f 2191 2203 2172 +f 2201 2215 2189 +f 2216 2202 2190 +f 2217 2203 2191 +f 2204 2218 2192 +f 2209 2251 2201 +f 2251 2241 2201 +f 2241 2229 2201 +f 2229 2215 2201 +f 2242 2210 2202 +f 2216 2242 2202 +f 2217 2243 2203 +f 2243 2209 2203 +f 2232 2218 2204 +f 2244 2232 2204 +f 2252 2244 2204 +f 2210 2252 2204 +f 2243 2251 2209 +f 2242 2252 2210 +f 2230 2242 2216 +f 2231 2243 2217 +f 2241 2257 2229 +f 2258 2242 2230 +f 2259 2243 2231 +f 2244 2260 2232 +f 2251 2293 2241 +f 2293 2283 2241 +f 2283 2269 2241 +f 2269 2257 2241 +f 2284 2252 2242 +f 2258 2284 2242 +f 2259 2285 2243 +f 2285 2251 2243 +f 2272 2260 2244 +f 2286 2272 2244 +f 2294 2286 2244 +f 2252 2294 2244 +f 2285 2293 2251 +f 2284 2294 2252 +f 2270 2284 2258 +f 2271 2285 2259 +f 2283 2289 2269 +f 2290 2284 2270 +f 2291 2285 2271 +f 2286 2292 2272 +f 2293 2330 2283 +f 2330 2324 2283 +f 2324 2306 2283 +f 2306 2289 2283 +f 2325 2294 2284 +f 2290 2325 2284 +f 2291 2326 2285 +f 2326 2293 2285 +f 2309 2292 2286 +f 2327 2309 2286 +f 2331 2327 2286 +f 2294 2331 2286 +f 2307 2325 2290 +f 2308 2326 2291 +f 2326 2330 2293 +f 2325 2331 2294 +f 2324 2318 2306 +f 2319 2325 2307 +f 2320 2326 2308 +f 2327 2321 2309 +f 2324 2332 2318 +f 2345 2325 2319 +f 2333 2345 2319 +f 2334 2346 2320 +f 2346 2326 2320 +f 2327 2335 2321 +f 2330 2348 2324 +f 2348 2344 2324 +f 2344 2332 2324 +f 2345 2331 2325 +f 2346 2330 2326 +f 2347 2335 2327 +f 2349 2347 2327 +f 2331 2349 2327 +f 2346 2348 2330 +f 2345 2349 2331 +f 2344 2338 2332 +f 2339 2345 2333 +f 2340 2346 2334 +f 2347 2341 2335 +f 2344 2342 2338 +f 2350 2345 2339 +f 2342 2350 2339 +f 2343 2351 2340 +f 2351 2346 2340 +f 2347 2343 2341 +f 2344 2350 2342 +f 2347 2351 2343 +f 2348 2352 2344 +f 2352 2350 2344 +f 2350 2349 2345 +f 2351 2348 2346 +f 2352 2351 2347 +f 2349 2352 2347 +f 2351 2352 2348 +f 2350 2352 2349 +f 34 18 10 +f 29 34 10 +f 17 29 10 +f 33 29 17 +f 37 33 17 +f 57 38 18 +f 34 57 18 +f 66 34 29 +f 33 62 29 +f 62 66 29 +f 37 56 33 +f 56 65 33 +f 65 62 33 +f 66 80 34 +f 80 57 34 +f 71 56 37 +f 84 72 38 +f 57 84 38 +f 71 83 56 +f 83 79 56 +f 79 65 56 +f 80 101 57 +f 101 84 57 +f 93 66 62 +f 65 87 62 +f 87 93 62 +f 79 92 65 +f 92 87 65 +f 93 105 66 +f 105 80 66 +f 102 83 71 +f 115 103 72 +f 84 115 72 +f 83 100 79 +f 100 104 79 +f 104 92 79 +f 105 124 80 +f 124 101 80 +f 102 114 83 +f 114 100 83 +f 101 132 84 +f 132 115 84 +f 122 93 87 +f 92 118 87 +f 118 122 87 +f 104 121 92 +f 121 118 92 +f 122 134 93 +f 134 105 93 +f 114 131 100 +f 131 123 100 +f 123 104 100 +f 124 157 101 +f 157 132 101 +f 141 114 102 +f 152 142 103 +f 115 152 103 +f 123 133 104 +f 133 121 104 +f 134 159 105 +f 159 124 105 +f 141 151 114 +f 151 131 114 +f 132 167 115 +f 167 152 115 +f 161 122 118 +f 121 155 118 +f 155 161 118 +f 133 160 121 +f 160 155 121 +f 161 169 122 +f 169 134 122 +f 131 156 123 +f 156 158 123 +f 158 133 123 +f 159 179 124 +f 179 157 124 +f 151 166 131 +f 166 156 131 +f 157 191 132 +f 191 167 132 +f 158 168 133 +f 168 160 133 +f 169 187 134 +f 187 159 134 +f 184 151 141 +f 200 185 142 +f 152 200 142 +f 184 199 151 +f 199 166 151 +f 167 208 152 +f 208 200 152 +f 198 161 155 +f 160 194 155 +f 194 198 155 +f 166 190 156 +f 190 178 156 +f 178 158 156 +f 179 212 157 +f 212 191 157 +f 178 186 158 +f 186 168 158 +f 187 210 159 +f 210 179 159 +f 168 197 160 +f 197 194 160 +f 198 206 161 +f 206 169 161 +f 199 207 166 +f 207 190 166 +f 191 228 167 +f 228 208 167 +f 186 205 168 +f 205 197 168 +f 206 218 169 +f 218 187 169 +f 190 211 178 +f 211 209 178 +f 209 186 178 +f 210 247 179 +f 247 212 179 +f 236 199 184 +f 249 237 185 +f 200 249 185 +f 209 217 186 +f 217 205 186 +f 218 251 187 +f 251 210 187 +f 207 227 190 +f 227 211 190 +f 212 261 191 +f 261 228 191 +f 233 198 194 +f 197 229 194 +f 229 233 194 +f 205 232 197 +f 232 229 197 +f 233 245 198 +f 245 206 198 +f 236 248 199 +f 248 207 199 +f 208 263 200 +f 263 249 200 +f 217 244 205 +f 244 232 205 +f 245 265 206 +f 265 218 206 +f 248 262 207 +f 262 227 207 +f 228 274 208 +f 274 263 208 +f 211 246 209 +f 246 250 209 +f 250 217 209 +f 251 272 210 +f 272 247 210 +f 227 260 211 +f 260 246 211 +f 247 284 212 +f 284 261 212 +f 250 264 217 +f 264 244 217 +f 265 286 218 +f 286 251 218 +f 262 273 227 +f 273 260 227 +f 261 306 228 +f 306 274 228 +f 270 233 229 +f 232 268 229 +f 268 270 229 +f 244 269 232 +f 269 268 232 +f 270 288 233 +f 288 245 233 +f 293 248 236 +f 308 294 237 +f 249 308 237 +f 264 287 244 +f 287 269 244 +f 288 302 245 +f 302 265 245 +f 260 283 246 +f 283 271 246 +f 271 250 246 +f 272 316 247 +f 316 284 247 +f 293 307 248 +f 307 262 248 +f 263 318 249 +f 318 308 249 +f 271 285 250 +f 285 264 250 +f 286 314 251 +f 314 272 251 +f 273 305 260 +f 305 283 260 +f 284 328 261 +f 328 306 261 +f 307 317 262 +f 317 273 262 +f 274 330 263 +f 330 318 263 +f 285 301 264 +f 301 287 264 +f 302 322 265 +f 322 286 265 +f 283 315 271 +f 315 313 271 +f 313 285 271 +f 314 344 272 +f 344 316 272 +f 317 329 273 +f 329 305 273 +f 306 350 274 +f 350 330 274 +f 305 327 283 +f 327 315 283 +f 316 354 284 +f 354 328 284 +f 313 321 285 +f 321 301 285 +f 322 346 286 +f 346 314 286 +f 355 307 293 +f 364 356 294 +f 308 364 294 +f 329 349 305 +f 349 327 305 +f 328 376 306 +f 376 350 306 +f 355 363 307 +f 363 317 307 +f 318 372 308 +f 372 364 308 +f 315 343 313 +f 343 345 313 +f 345 321 313 +f 346 378 314 +f 378 344 314 +f 327 353 315 +f 353 343 315 +f 344 380 316 +f 380 354 316 +f 363 371 317 +f 371 329 317 +f 330 382 318 +f 382 372 318 +f 349 375 327 +f 375 353 327 +f 354 388 328 +f 388 376 328 +f 371 381 329 +f 381 349 329 +f 350 402 330 +f 402 382 330 +f 353 379 343 +f 379 377 343 +f 377 345 343 +f 378 408 344 +f 408 380 344 +f 381 401 349 +f 401 375 349 +f 376 424 350 +f 424 402 350 +f 375 387 353 +f 387 379 353 +f 380 426 354 +f 426 388 354 +f 409 363 355 +f 420 410 356 +f 364 420 356 +f 409 419 363 +f 419 371 363 +f 372 434 364 +f 434 420 364 +f 419 433 371 +f 433 381 371 +f 382 438 372 +f 438 434 372 +f 401 423 375 +f 423 387 375 +f 388 442 376 +f 442 424 376 +f 379 407 377 +f 387 425 379 +f 425 407 379 +f 408 446 380 +f 446 426 380 +f 433 437 381 +f 437 401 381 +f 402 450 382 +f 450 438 382 +f 423 441 387 +f 441 425 387 +f 426 460 388 +f 460 442 388 +f 437 449 401 +f 449 423 401 +f 424 468 402 +f 468 450 402 +f 425 445 407 +f 463 419 409 +f 420 464 410 +f 463 480 419 +f 480 433 419 +f 481 464 420 +f 434 508 420 +f 508 481 420 +f 449 467 423 +f 467 441 423 +f 442 521 424 +f 521 468 424 +f 441 459 425 +f 459 445 425 +f 446 504 426 +f 504 460 426 +f 480 507 433 +f 507 437 433 +f 438 553 434 +f 553 508 434 +f 507 552 437 +f 552 449 437 +f 450 581 438 +f 581 553 438 +f 467 520 441 +f 520 459 441 +f 460 579 442 +f 579 521 442 +f 459 503 445 +f 552 580 449 +f 580 467 449 +f 468 595 450 +f 595 581 450 +f 520 578 459 +f 578 503 459 +f 504 605 460 +f 605 579 460 +f 469 480 463 +f 481 470 464 +f 580 594 467 +f 594 520 467 +f 521 619 468 +f 619 595 468 +f 600 480 469 +f 481 601 470 +f 600 622 480 +f 622 507 480 +f 623 601 481 +f 508 633 481 +f 633 623 481 +f 578 604 503 +f 622 632 507 +f 632 552 507 +f 553 643 508 +f 643 633 508 +f 594 618 520 +f 618 578 520 +f 579 641 521 +f 641 619 521 +f 632 642 552 +f 642 580 552 +f 581 647 553 +f 647 643 553 +f 618 640 578 +f 640 604 578 +f 605 653 579 +f 653 641 579 +f 642 646 580 +f 646 594 580 +f 595 663 581 +f 663 647 581 +f 646 662 594 +f 662 618 594 +f 619 684 595 +f 684 663 595 +f 612 622 600 +f 623 613 601 +f 640 652 604 +f 678 622 612 +f 623 679 613 +f 662 683 618 +f 683 640 618 +f 641 706 619 +f 706 684 619 +f 678 703 622 +f 703 632 622 +f 704 679 623 +f 633 714 623 +f 714 704 623 +f 703 713 632 +f 713 642 632 +f 643 722 633 +f 722 714 633 +f 683 705 640 +f 705 652 640 +f 653 724 641 +f 724 706 641 +f 713 721 642 +f 721 646 642 +f 647 728 643 +f 728 722 643 +f 721 727 646 +f 727 662 646 +f 663 742 647 +f 742 728 647 +f 705 723 652 +f 727 741 662 +f 741 683 662 +f 684 754 663 +f 754 742 663 +f 691 703 678 +f 704 692 679 +f 741 753 683 +f 753 705 683 +f 706 780 684 +f 780 754 684 +f 771 703 691 +f 704 772 692 +f 771 803 703 +f 803 713 703 +f 804 772 704 +f 714 810 704 +f 810 804 704 +f 753 779 705 +f 779 723 705 +f 724 798 706 +f 798 780 706 +f 803 809 713 +f 809 721 713 +f 722 814 714 +f 814 810 714 +f 809 813 721 +f 813 727 721 +f 728 820 722 +f 820 814 722 +f 779 797 723 +f 813 819 727 +f 819 741 727 +f 742 832 728 +f 832 820 728 +f 819 831 741 +f 831 753 741 +f 754 840 742 +f 840 832 742 +f 831 839 753 +f 839 779 753 +f 780 848 754 +f 848 840 754 +f 791 803 771 +f 804 792 772 +f 839 847 779 +f 847 797 779 +f 798 856 780 +f 856 848 780 +f 861 803 791 +f 804 862 792 +f 847 855 797 +f 861 885 803 +f 885 809 803 +f 886 862 804 +f 810 894 804 +f 894 886 804 +f 885 893 809 +f 893 813 809 +f 814 896 810 +f 896 894 810 +f 893 895 813 +f 895 819 813 +f 820 904 814 +f 904 896 814 +f 895 903 819 +f 903 831 819 +f 832 910 820 +f 910 904 820 +f 903 909 831 +f 909 839 831 +f 840 918 832 +f 918 910 832 +f 909 917 839 +f 917 847 839 +f 848 924 840 +f 924 918 840 +f 917 923 847 +f 923 855 847 +f 856 930 848 +f 930 924 848 +f 923 929 855 +f 873 885 861 +f 886 874 862 +f 957 885 873 +f 886 958 874 +f 957 983 885 +f 983 893 885 +f 984 958 886 +f 894 992 886 +f 992 984 886 +f 983 991 893 +f 991 895 893 +f 896 994 894 +f 994 992 894 +f 991 993 895 +f 993 903 895 +f 904 1002 896 +f 1002 994 896 +f 993 1001 903 +f 1001 909 903 +f 910 1004 904 +f 1004 1002 904 +f 1001 1003 909 +f 1003 917 909 +f 918 1010 910 +f 1010 1004 910 +f 1003 1009 917 +f 1009 923 917 +f 924 1014 918 +f 1014 1010 918 +f 1009 1013 923 +f 1013 929 923 +f 930 1020 924 +f 1020 1014 924 +f 1013 1019 929 +f 973 983 957 +f 984 974 958 +f 1114 983 973 +f 984 1115 974 +f 1114 1132 983 +f 1132 991 983 +f 1133 1115 984 +f 992 1139 984 +f 1139 1133 984 +f 1132 1138 991 +f 1138 993 991 +f 994 1141 992 +f 1141 1139 992 +f 1138 1140 993 +f 1140 1001 993 +f 1002 1147 994 +f 1147 1141 994 +f 1140 1146 1001 +f 1146 1003 1001 +f 1004 1149 1002 +f 1149 1147 1002 +f 1146 1148 1003 +f 1148 1009 1003 +f 1010 1151 1004 +f 1151 1149 1004 +f 1148 1150 1009 +f 1150 1013 1009 +f 1014 1153 1010 +f 1153 1151 1010 +f 1150 1152 1013 +f 1152 1019 1013 +f 1020 1155 1014 +f 1155 1153 1014 +f 1152 1154 1019 +f 1122 1132 1114 +f 1133 1123 1115 +f 1173 1132 1122 +f 1133 1174 1123 +f 1173 1243 1132 +f 1243 1138 1132 +f 1244 1174 1133 +f 1139 1236 1133 +f 1236 1244 1133 +f 1243 1235 1138 +f 1235 1140 1138 +f 1141 1232 1139 +f 1232 1236 1139 +f 1235 1231 1140 +f 1231 1146 1140 +f 1147 1222 1141 +f 1222 1232 1141 +f 1231 1221 1146 +f 1221 1148 1146 +f 1149 1206 1147 +f 1206 1222 1147 +f 1221 1205 1148 +f 1205 1150 1148 +f 1151 1199 1149 +f 1199 1206 1149 +f 1205 1198 1150 +f 1198 1152 1150 +f 1153 1194 1151 +f 1194 1199 1151 +f 1198 1193 1152 +f 1193 1154 1152 +f 1155 1190 1153 +f 1190 1194 1153 +f 1193 1189 1154 +f 1251 1243 1173 +f 1244 1252 1174 +f 1334 1324 1189 +f 1193 1334 1189 +f 1325 1194 1190 +f 1342 1334 1193 +f 1198 1342 1193 +f 1335 1199 1194 +f 1325 1335 1194 +f 1352 1342 1198 +f 1205 1352 1198 +f 1343 1206 1199 +f 1335 1343 1199 +f 1356 1352 1205 +f 1221 1356 1205 +f 1353 1222 1206 +f 1343 1353 1206 +f 1364 1356 1221 +f 1231 1364 1221 +f 1357 1232 1222 +f 1353 1357 1222 +f 1372 1364 1231 +f 1235 1372 1231 +f 1365 1236 1232 +f 1357 1365 1232 +f 1380 1372 1235 +f 1243 1380 1235 +f 1373 1244 1236 +f 1365 1373 1236 +f 1251 1380 1243 +f 1381 1339 1244 +f 1339 1252 1244 +f 1373 1381 1244 +f 1338 1380 1251 +f 1422 1414 1324 +f 1334 1422 1324 +f 1415 1335 1325 +f 1428 1422 1334 +f 1342 1428 1334 +f 1423 1343 1335 +f 1415 1423 1335 +f 1388 1380 1338 +f 1381 1389 1339 +f 1432 1428 1342 +f 1352 1432 1342 +f 1429 1353 1343 +f 1423 1429 1343 +f 1450 1432 1352 +f 1356 1450 1352 +f 1433 1357 1353 +f 1429 1433 1353 +f 1456 1450 1356 +f 1364 1456 1356 +f 1451 1365 1357 +f 1433 1451 1357 +f 1462 1456 1364 +f 1372 1462 1364 +f 1457 1373 1365 +f 1451 1457 1365 +f 1470 1462 1372 +f 1380 1470 1372 +f 1463 1381 1373 +f 1457 1463 1373 +f 1388 1470 1380 +f 1471 1435 1381 +f 1435 1389 1381 +f 1463 1471 1381 +f 1434 1470 1388 +f 1494 1486 1414 +f 1422 1494 1414 +f 1487 1423 1415 +f 1502 1494 1422 +f 1428 1502 1422 +f 1495 1429 1423 +f 1487 1495 1423 +f 1512 1502 1428 +f 1432 1512 1428 +f 1503 1433 1429 +f 1495 1503 1429 +f 1524 1512 1432 +f 1450 1524 1432 +f 1513 1451 1433 +f 1503 1513 1433 +f 1478 1470 1434 +f 1471 1479 1435 +f 1540 1524 1450 +f 1456 1540 1450 +f 1525 1457 1451 +f 1513 1525 1451 +f 1552 1540 1456 +f 1462 1552 1456 +f 1541 1463 1457 +f 1525 1541 1457 +f 1560 1552 1462 +f 1470 1560 1462 +f 1553 1471 1463 +f 1541 1553 1463 +f 1478 1560 1470 +f 1561 1527 1471 +f 1527 1479 1471 +f 1553 1561 1471 +f 1526 1560 1478 +f 1582 1544 1486 +f 1494 1582 1486 +f 1545 1495 1487 +f 1590 1582 1494 +f 1502 1590 1494 +f 1583 1503 1495 +f 1545 1583 1495 +f 1604 1590 1502 +f 1512 1604 1502 +f 1591 1513 1503 +f 1583 1591 1503 +f 1612 1604 1512 +f 1524 1612 1512 +f 1605 1525 1513 +f 1591 1605 1513 +f 1632 1612 1524 +f 1540 1632 1524 +f 1613 1541 1525 +f 1605 1613 1525 +f 1572 1560 1526 +f 1561 1573 1527 +f 1640 1632 1540 +f 1552 1640 1540 +f 1633 1553 1541 +f 1613 1633 1541 +f 1636 1610 1544 +f 1582 1636 1544 +f 1611 1583 1545 +f 1648 1640 1552 +f 1560 1648 1552 +f 1641 1561 1553 +f 1633 1641 1553 +f 1572 1648 1560 +f 1649 1623 1561 +f 1623 1573 1561 +f 1641 1649 1561 +f 1622 1648 1572 +f 1666 1636 1582 +f 1590 1666 1582 +f 1637 1591 1583 +f 1611 1637 1583 +f 1678 1666 1590 +f 1604 1678 1590 +f 1667 1605 1591 +f 1637 1667 1591 +f 1686 1678 1604 +f 1612 1686 1604 +f 1679 1613 1605 +f 1667 1679 1605 +f 1692 1680 1610 +f 1636 1692 1610 +f 1681 1637 1611 +f 1700 1686 1612 +f 1632 1700 1612 +f 1687 1633 1613 +f 1679 1687 1613 +f 1658 1648 1622 +f 1649 1659 1623 +f 1712 1700 1632 +f 1640 1712 1632 +f 1701 1641 1633 +f 1687 1701 1633 +f 1718 1692 1636 +f 1666 1718 1636 +f 1693 1667 1637 +f 1681 1693 1637 +f 1726 1712 1640 +f 1648 1726 1640 +f 1713 1649 1641 +f 1701 1713 1641 +f 1658 1726 1648 +f 1727 1697 1649 +f 1697 1659 1649 +f 1713 1727 1649 +f 1696 1726 1658 +f 1766 1718 1666 +f 1678 1766 1666 +f 1719 1679 1667 +f 1693 1719 1667 +f 1818 1766 1678 +f 1686 1818 1678 +f 1767 1687 1679 +f 1719 1767 1679 +f 1807 1738 1680 +f 1692 1807 1680 +f 1739 1693 1681 +f 1835 1818 1686 +f 1700 1835 1686 +f 1819 1701 1687 +f 1767 1819 1687 +f 1843 1807 1692 +f 1718 1843 1692 +f 1808 1719 1693 +f 1739 1808 1693 +f 1742 1726 1696 +f 1727 1743 1697 +f 1855 1835 1700 +f 1712 1855 1700 +f 1836 1713 1701 +f 1819 1836 1701 +f 1863 1855 1712 +f 1726 1863 1712 +f 1856 1727 1713 +f 1836 1856 1713 +f 1869 1843 1718 +f 1766 1869 1718 +f 1844 1767 1719 +f 1808 1844 1719 +f 1742 1863 1726 +f 1864 1840 1727 +f 1840 1743 1727 +f 1856 1864 1727 +f 1877 1837 1738 +f 1807 1877 1738 +f 1838 1808 1739 +f 1839 1863 1742 +f 1883 1869 1766 +f 1818 1883 1766 +f 1870 1819 1767 +f 1844 1870 1767 +f 1893 1877 1807 +f 1843 1893 1807 +f 1878 1844 1808 +f 1838 1878 1808 +f 1897 1883 1818 +f 1835 1897 1818 +f 1884 1836 1819 +f 1870 1884 1819 +f 1916 1897 1835 +f 1855 1916 1835 +f 1898 1856 1836 +f 1884 1898 1836 +f 1909 1885 1837 +f 1877 1909 1837 +f 1886 1878 1838 +f 1873 1863 1839 +f 1864 1874 1840 +f 1920 1893 1843 +f 1869 1920 1843 +f 1894 1870 1844 +f 1878 1894 1844 +f 1928 1916 1855 +f 1863 1928 1855 +f 1917 1864 1856 +f 1898 1917 1856 +f 1873 1928 1863 +f 1929 1904 1864 +f 1904 1874 1864 +f 1917 1929 1864 +f 1944 1920 1869 +f 1883 1944 1869 +f 1921 1884 1870 +f 1894 1921 1870 +f 1903 1928 1873 +f 1946 1909 1877 +f 1893 1946 1877 +f 1910 1894 1878 +f 1886 1910 1878 +f 1958 1944 1883 +f 1897 1958 1883 +f 1945 1898 1884 +f 1921 1945 1884 +f 1952 1924 1885 +f 1909 1952 1885 +f 1925 1910 1886 +f 1960 1946 1893 +f 1920 1960 1893 +f 1947 1921 1894 +f 1910 1947 1894 +f 1968 1958 1897 +f 1916 1968 1897 +f 1959 1917 1898 +f 1945 1959 1898 +f 1936 1928 1903 +f 1929 1937 1904 +f 1980 1952 1909 +f 1946 1980 1909 +f 1953 1947 1910 +f 1925 1953 1910 +f 1986 1968 1916 +f 1928 1986 1916 +f 1969 1929 1917 +f 1959 1969 1917 +f 1996 1960 1920 +f 1944 1996 1920 +f 1961 1945 1921 +f 1947 1961 1921 +f 1992 1954 1924 +f 1952 1992 1924 +f 1955 1953 1925 +f 1936 1986 1928 +f 1987 1963 1929 +f 1963 1937 1929 +f 1969 1987 1929 +f 1962 1986 1936 +f 2017 1996 1944 +f 1958 2017 1944 +f 1997 1959 1945 +f 1961 1997 1945 +f 2015 1980 1946 +f 1960 2015 1946 +f 1981 1961 1947 +f 1953 1981 1947 +f 2021 1992 1952 +f 1980 2021 1952 +f 1993 1981 1953 +f 1955 1993 1953 +f 2019 1982 1954 +f 1992 2019 1954 +f 1983 1993 1955 +f 2029 2017 1958 +f 1968 2029 1958 +f 2018 1969 1959 +f 1997 2018 1959 +f 2043 2015 1960 +f 1996 2043 1960 +f 2016 1997 1961 +f 1981 2016 1961 +f 2000 1986 1962 +f 1987 2001 1963 +f 2047 2029 1968 +f 1986 2047 1968 +f 2030 1987 1969 +f 2018 2030 1969 +f 2065 2021 1980 +f 2015 2065 1980 +f 2022 2016 1981 +f 1993 2022 1981 +f 2055 2011 1982 +f 2019 2055 1982 +f 2020 1993 1983 +f 2012 2020 1983 +f 2000 2047 1986 +f 2048 2026 1987 +f 2026 2001 1987 +f 2030 2048 1987 +f 2067 2019 1992 +f 2021 2067 1992 +f 2020 2022 1993 +f 2071 2043 1996 +f 2017 2071 1996 +f 2044 2018 1997 +f 2016 2044 1997 +f 2025 2047 2000 +f 2075 2023 2011 +f 2055 2075 2011 +f 2056 2020 2012 +f 2024 2056 2012 +f 2085 2065 2015 +f 2043 2085 2015 +f 2066 2044 2016 +f 2022 2066 2016 +f 2081 2071 2017 +f 2029 2081 2017 +f 2072 2030 2018 +f 2044 2072 2018 +f 2083 2055 2019 +f 2067 2083 2019 +f 2068 2022 2020 +f 2056 2068 2020 +f 2098 2067 2021 +f 2065 2098 2021 +f 2068 2066 2022 +f 2079 2041 2023 +f 2075 2079 2023 +f 2076 2056 2024 +f 2042 2076 2024 +f 2061 2047 2025 +f 2048 2062 2026 +f 2110 2081 2029 +f 2047 2110 2029 +f 2082 2048 2030 +f 2072 2082 2030 +f 2093 2051 2041 +f 2079 2093 2041 +f 2080 2076 2042 +f 2052 2080 2042 +f 2124 2085 2043 +f 2071 2124 2043 +f 2086 2072 2044 +f 2066 2086 2044 +f 2061 2110 2047 +f 2111 2090 2048 +f 2090 2062 2048 +f 2082 2111 2048 +f 2094 2052 2051 +f 2093 2094 2051 +f 2094 2080 2052 +f 2116 2075 2055 +f 2083 2116 2055 +f 2084 2068 2056 +f 2076 2084 2056 +f 2089 2110 2061 +f 2134 2098 2065 +f 2085 2134 2065 +f 2099 2086 2066 +f 2068 2099 2066 +f 2132 2083 2067 +f 2098 2132 2067 +f 2084 2099 2068 +f 2138 2124 2071 +f 2081 2138 2071 +f 2125 2082 2072 +f 2086 2125 2072 +f 2130 2079 2075 +f 2116 2130 2075 +f 2117 2084 2076 +f 2080 2117 2076 +f 2136 2093 2079 +f 2130 2136 2079 +f 2131 2117 2080 +f 2094 2131 2080 +f 2156 2138 2081 +f 2110 2156 2081 +f 2139 2111 2082 +f 2125 2139 2082 +f 2146 2116 2083 +f 2132 2146 2083 +f 2133 2099 2084 +f 2117 2133 2084 +f 2162 2134 2085 +f 2124 2162 2085 +f 2135 2125 2086 +f 2099 2135 2086 +f 2120 2110 2089 +f 2111 2121 2090 +f 2137 2094 2093 +f 2136 2137 2093 +f 2137 2131 2094 +f 2166 2132 2098 +f 2134 2166 2098 +f 2133 2135 2099 +f 2120 2156 2110 +f 2157 2141 2111 +f 2141 2121 2111 +f 2139 2157 2111 +f 2174 2130 2116 +f 2146 2174 2116 +f 2147 2133 2117 +f 2131 2147 2117 +f 2140 2156 2120 +f 2182 2162 2124 +f 2138 2182 2124 +f 2163 2139 2125 +f 2135 2163 2125 +f 2180 2136 2130 +f 2174 2180 2130 +f 2175 2147 2131 +f 2137 2175 2131 +f 2186 2146 2132 +f 2166 2186 2132 +f 2167 2135 2133 +f 2147 2167 2133 +f 2193 2166 2134 +f 2162 2193 2134 +f 2167 2163 2135 +f 2181 2137 2136 +f 2180 2181 2136 +f 2181 2175 2137 +f 2199 2182 2138 +f 2156 2199 2138 +f 2183 2157 2139 +f 2163 2183 2139 +f 2170 2156 2140 +f 2157 2171 2141 +f 2207 2174 2146 +f 2186 2207 2146 +f 2187 2167 2147 +f 2175 2187 2147 +f 2170 2199 2156 +f 2200 2190 2157 +f 2190 2171 2157 +f 2183 2200 2157 +f 2223 2193 2162 +f 2182 2223 2162 +f 2194 2183 2163 +f 2167 2194 2163 +f 2225 2186 2166 +f 2193 2225 2166 +f 2187 2194 2167 +f 2189 2199 2170 +f 2221 2180 2174 +f 2207 2221 2174 +f 2208 2187 2175 +f 2181 2208 2175 +f 2222 2181 2180 +f 2221 2222 2180 +f 2222 2208 2181 +f 2235 2223 2182 +f 2199 2235 2182 +f 2224 2200 2183 +f 2194 2224 2183 +f 2237 2207 2186 +f 2225 2237 2186 +f 2226 2194 2187 +f 2208 2226 2187 +f 2215 2199 2189 +f 2200 2216 2190 +f 2249 2225 2193 +f 2223 2249 2193 +f 2226 2224 2194 +f 2215 2235 2199 +f 2236 2230 2200 +f 2230 2216 2200 +f 2224 2236 2200 +f 2253 2221 2207 +f 2237 2253 2207 +f 2238 2226 2208 +f 2222 2238 2208 +f 2229 2235 2215 +f 2254 2222 2221 +f 2253 2254 2221 +f 2254 2238 2222 +f 2267 2249 2223 +f 2235 2267 2223 +f 2250 2236 2224 +f 2226 2250 2224 +f 2265 2237 2225 +f 2249 2265 2225 +f 2238 2250 2226 +f 2257 2235 2229 +f 2236 2258 2230 +f 2257 2267 2235 +f 2268 2270 2236 +f 2270 2258 2236 +f 2250 2268 2236 +f 2279 2253 2237 +f 2265 2279 2237 +f 2266 2250 2238 +f 2254 2266 2238 +f 2299 2265 2249 +f 2267 2299 2249 +f 2266 2268 2250 +f 2280 2254 2253 +f 2279 2280 2253 +f 2280 2266 2254 +f 2269 2267 2257 +f 2314 2279 2265 +f 2299 2314 2265 +f 2300 2268 2266 +f 2280 2300 2266 +f 2269 2289 2267 +f 2289 2299 2267 +f 2300 2307 2268 +f 2307 2290 2268 +f 2290 2270 2268 +f 2315 2280 2279 +f 2314 2315 2279 +f 2315 2300 2280 +f 2306 2299 2289 +f 2306 2318 2299 +f 2318 2314 2299 +f 2315 2333 2300 +f 2333 2319 2300 +f 2319 2307 2300 +f 2318 2332 2314 +f 2332 2338 2314 +f 2338 2342 2314 +f 2342 2315 2314 +f 2342 2339 2315 +f 2339 2333 2315 +f 565 270 268 +f 269 565 268 +f 576 565 269 +f 287 576 269 +f 577 288 270 +f 565 577 270 +f 301 576 287 +f 577 302 288 +f 598 576 301 +f 321 598 301 +f 577 599 302 +f 599 322 302 +f 345 598 321 +f 599 346 322 +f 638 598 345 +f 377 638 345 +f 599 639 346 +f 639 378 346 +f 676 638 377 +f 407 676 377 +f 639 408 378 +f 445 676 407 +f 677 446 408 +f 639 677 408 +f 745 676 445 +f 503 745 445 +f 746 504 446 +f 677 746 446 +f 604 745 503 +f 746 605 504 +f 825 745 604 +f 652 825 604 +f 746 826 605 +f 826 653 605 +f 723 825 652 +f 826 724 653 +f 901 825 723 +f 797 901 723 +f 826 902 724 +f 902 798 724 +f 855 901 797 +f 902 856 798 +f 999 901 855 +f 929 999 855 +f 902 1000 856 +f 1000 930 856 +f 1019 999 929 +f 1000 1020 930 +f 1019 1144 999 +f 1145 1020 1000 +f 1154 1144 1019 +f 1145 1155 1020 +f 1189 1227 1144 +f 1154 1189 1144 +f 1228 1190 1145 +f 1190 1155 1145 +f 1324 1227 1189 +f 1228 1325 1190 +f 1414 1362 1227 +f 1324 1414 1227 +f 1363 1415 1228 +f 1415 1325 1228 +f 1414 1486 1362 +f 1486 1448 1362 +f 1449 1545 1363 +f 1545 1487 1363 +f 1487 1415 1363 +f 1610 1518 1448 +f 1486 1544 1448 +f 1544 1610 1448 +f 1519 1611 1449 +f 1611 1545 1449 +f 1738 1598 1518 +f 1610 1680 1518 +f 1680 1738 1518 +f 1599 1739 1519 +f 1739 1681 1519 +f 1681 1611 1519 +f 1885 1664 1598 +f 1738 1837 1598 +f 1837 1885 1598 +f 1665 1886 1599 +f 1886 1838 1599 +f 1838 1739 1599 +f 1954 1690 1664 +f 1885 1924 1664 +f 1924 1954 1664 +f 1691 1955 1665 +f 1955 1925 1665 +f 1925 1886 1665 +f 2011 1716 1690 +f 1954 1982 1690 +f 1982 2011 1690 +f 1717 2012 1691 +f 2012 1983 1691 +f 1983 1955 1691 +f 2041 1752 1716 +f 2011 2023 1716 +f 2023 2041 1716 +f 1753 2042 1717 +f 2042 2024 1717 +f 2024 2012 1717 +f 2041 2051 1752 +f 2051 1753 1752 +f 2051 2052 1753 +f 2052 2042 1753 +f 576 574 564 +f 565 576 564 +f 575 565 564 +f 575 577 565 +f 598 596 574 +f 576 598 574 +f 597 577 575 +f 597 599 577 +f 638 636 596 +f 598 638 596 +f 637 599 597 +f 637 639 599 +f 676 674 636 +f 638 676 636 +f 675 639 637 +f 675 677 639 +f 745 743 674 +f 676 745 674 +f 744 677 675 +f 744 746 677 +f 825 823 743 +f 745 825 743 +f 824 746 744 +f 824 826 746 +f 901 899 823 +f 825 901 823 +f 900 826 824 +f 900 902 826 +f 999 997 899 +f 901 999 899 +f 998 902 900 +f 998 1000 902 +f 1144 1142 997 +f 999 1144 997 +f 1143 1000 998 +f 1143 1145 1000 +f 1227 1225 1142 +f 1144 1227 1142 +f 1226 1145 1143 +f 1226 1228 1145 +f 1362 1360 1225 +f 1227 1362 1225 +f 1361 1228 1226 +f 1361 1363 1228 +f 1448 1446 1360 +f 1362 1448 1360 +f 1447 1363 1361 +f 1447 1449 1363 +f 1518 1516 1446 +f 1448 1518 1446 +f 1517 1449 1447 +f 1517 1519 1449 +f 1598 1596 1516 +f 1518 1598 1516 +f 1597 1519 1517 +f 1597 1599 1519 +f 1664 1662 1596 +f 1598 1664 1596 +f 1663 1599 1597 +f 1663 1665 1599 +f 1690 1688 1662 +f 1664 1690 1662 +f 1689 1665 1663 +f 1689 1691 1665 +f 1716 1714 1688 +f 1690 1716 1688 +f 1715 1691 1689 +f 1715 1717 1691 +f 1752 1750 1714 +f 1716 1752 1714 +f 1751 1717 1715 +f 1751 1753 1717 +f 1753 1751 1750 +f 1752 1753 1750 +f 686 575 564 +f 574 682 564 +f 682 686 564 +f 596 685 574 +f 685 682 574 +f 686 712 575 +f 712 597 575 +f 636 711 596 +f 711 685 596 +f 712 734 597 +f 734 637 597 +f 674 733 636 +f 733 711 636 +f 734 784 637 +f 784 675 637 +f 743 783 674 +f 783 733 674 +f 784 830 675 +f 830 744 675 +f 823 829 743 +f 829 783 743 +f 830 872 744 +f 872 824 744 +f 899 871 823 +f 871 829 823 +f 872 940 824 +f 940 900 824 +f 899 939 871 +f 997 939 899 +f 940 1031 900 +f 1031 998 900 +f 997 1030 939 +f 1142 1030 997 +f 1031 1157 998 +f 1157 1143 998 +f 1142 1156 1030 +f 1225 1156 1142 +f 1157 1186 1143 +f 1186 1226 1143 +f 1225 1185 1156 +f 1360 1320 1185 +f 1225 1360 1185 +f 1321 1226 1186 +f 1321 1361 1226 +f 1446 1402 1320 +f 1360 1446 1320 +f 1403 1361 1321 +f 1403 1447 1361 +f 1516 1452 1402 +f 1446 1516 1402 +f 1453 1447 1403 +f 1453 1517 1447 +f 1596 1498 1452 +f 1516 1596 1452 +f 1499 1517 1453 +f 1662 1550 1498 +f 1596 1662 1498 +f 1597 1517 1499 +f 1551 1597 1499 +f 1688 1592 1550 +f 1662 1688 1550 +f 1663 1597 1551 +f 1593 1663 1551 +f 1714 1608 1592 +f 1688 1714 1592 +f 1689 1663 1593 +f 1609 1689 1593 +f 1750 1620 1608 +f 1714 1750 1608 +f 1715 1689 1609 +f 1621 1715 1609 +f 1751 1621 1620 +f 1750 1751 1620 +f 1751 1715 1621 +f 685 1159 682 +f 1159 686 682 +f 711 1159 685 +f 1159 712 686 +f 733 1159 711 +f 1159 734 712 +f 783 1159 733 +f 1159 784 734 +f 829 1159 783 +f 1159 830 784 +f 871 1159 829 +f 1159 872 830 +f 939 1159 871 +f 1159 940 872 +f 1030 1159 939 +f 1159 1031 940 +f 1156 1159 1030 +f 1159 1157 1031 +f 1185 1159 1156 +f 1159 1186 1157 +f 1403 1321 1159 +f 1321 1186 1159 +f 1551 1499 1159 +f 1499 1453 1159 +f 1453 1403 1159 +f 1621 1609 1159 +f 1609 1593 1159 +f 1593 1551 1159 +f 1592 1608 1159 +f 1608 1620 1159 +f 1620 1621 1159 +f 1452 1498 1159 +f 1498 1550 1159 +f 1550 1592 1159 +f 1185 1320 1159 +f 1320 1402 1159 +f 1402 1452 1159 +f 45 140 41 +f 139 44 41 +f 140 139 41 +f 139 48 44 +f 49 140 45 +f 147 54 48 +f 139 147 48 +f 55 148 49 +f 148 140 49 +f 147 67 54 +f 68 148 55 +f 164 77 67 +f 147 164 67 +f 78 165 68 +f 165 148 68 +f 164 90 77 +f 91 165 78 +f 182 106 90 +f 164 182 90 +f 107 183 91 +f 183 165 91 +f 182 119 106 +f 120 183 107 +f 213 135 119 +f 182 213 119 +f 136 214 120 +f 214 183 120 +f 213 162 135 +f 163 214 136 +f 140 225 139 +f 234 147 139 +f 225 234 139 +f 148 226 140 +f 226 225 140 +f 254 164 147 +f 234 254 147 +f 165 235 148 +f 235 226 148 +f 258 176 162 +f 213 258 162 +f 177 259 163 +f 259 214 163 +f 266 182 164 +f 254 266 164 +f 183 255 165 +f 255 235 165 +f 258 203 176 +f 204 259 177 +f 295 213 182 +f 266 295 182 +f 214 267 183 +f 267 255 183 +f 291 223 203 +f 258 291 203 +f 224 292 204 +f 292 259 204 +f 325 258 213 +f 295 325 213 +f 259 296 214 +f 296 267 214 +f 291 256 223 +f 257 292 224 +f 226 319 225 +f 323 234 225 +f 319 323 225 +f 235 320 226 +f 320 319 226 +f 331 254 234 +f 323 331 234 +f 255 324 235 +f 324 320 235 +f 351 266 254 +f 331 351 254 +f 267 332 255 +f 332 324 255 +f 337 277 256 +f 291 337 256 +f 278 338 257 +f 338 292 257 +f 365 291 258 +f 325 365 258 +f 292 326 259 +f 326 296 259 +f 373 295 266 +f 351 373 266 +f 296 352 267 +f 352 332 267 +f 337 311 277 +f 312 338 278 +f 393 337 291 +f 365 393 291 +f 338 366 292 +f 366 326 292 +f 389 325 295 +f 373 389 295 +f 326 374 296 +f 374 352 296 +f 383 333 311 +f 337 383 311 +f 334 384 312 +f 384 338 312 +f 320 399 319 +f 405 323 319 +f 399 405 319 +f 324 400 320 +f 400 399 320 +f 411 331 323 +f 405 411 323 +f 332 406 324 +f 406 400 324 +f 429 365 325 +f 389 429 325 +f 366 390 326 +f 390 374 326 +f 431 351 331 +f 411 431 331 +f 352 412 332 +f 412 406 332 +f 383 369 333 +f 370 384 334 +f 439 383 337 +f 393 439 337 +f 384 394 338 +f 394 366 338 +f 443 373 351 +f 431 443 351 +f 374 432 352 +f 432 412 352 +f 451 393 365 +f 429 451 365 +f 394 430 366 +f 430 390 366 +f 435 385 369 +f 383 435 369 +f 386 436 370 +f 436 384 370 +f 461 389 373 +f 443 461 373 +f 390 444 374 +f 444 432 374 +f 499 435 383 +f 439 499 383 +f 436 440 384 +f 440 394 384 +f 435 427 385 +f 428 436 386 +f 515 429 389 +f 461 515 389 +f 430 462 390 +f 462 444 390 +f 537 439 393 +f 451 537 393 +f 440 452 394 +f 452 430 394 +f 477 475 399 +f 400 477 399 +f 476 405 399 +f 475 476 399 +f 406 485 400 +f 485 477 400 +f 476 484 405 +f 487 411 405 +f 484 487 405 +f 490 489 406 +f 489 488 406 +f 488 486 406 +f 412 490 406 +f 486 485 406 +f 487 491 411 +f 491 495 411 +f 495 498 411 +f 498 502 411 +f 502 529 411 +f 566 431 411 +f 529 566 411 +f 530 501 412 +f 501 497 412 +f 497 496 412 +f 496 492 412 +f 432 530 412 +f 492 490 412 +f 531 447 427 +f 435 531 427 +f 448 532 428 +f 532 436 428 +f 586 451 429 +f 515 586 429 +f 452 516 430 +f 516 462 430 +f 584 443 431 +f 566 584 431 +f 444 567 432 +f 567 530 432 +f 606 531 435 +f 499 606 435 +f 532 500 436 +f 500 440 436 +f 608 499 439 +f 537 608 439 +f 500 538 440 +f 538 452 440 +f 610 461 443 +f 584 610 443 +f 462 585 444 +f 585 567 444 +f 531 493 447 +f 494 532 448 +f 628 537 451 +f 586 628 451 +f 538 587 452 +f 587 516 452 +f 634 515 461 +f 610 634 461 +f 516 611 462 +f 611 585 462 +f 630 582 493 +f 531 630 493 +f 583 631 494 +f 631 532 494 +f 650 606 499 +f 608 650 499 +f 532 607 500 +f 607 609 500 +f 609 538 500 +f 530 505 501 +f 506 529 502 +f 530 513 505 +f 514 529 506 +f 530 524 513 +f 519 529 514 +f 654 586 515 +f 634 654 515 +f 587 635 516 +f 635 611 516 +f 525 529 519 +f 530 534 524 +f 528 529 525 +f 533 529 528 +f 533 648 529 +f 656 566 529 +f 648 656 529 +f 649 645 530 +f 645 534 530 +f 567 649 530 +f 664 630 531 +f 606 664 531 +f 631 607 532 +f 644 648 533 +f 660 608 537 +f 628 660 537 +f 609 629 538 +f 629 587 538 +f 666 584 566 +f 656 666 566 +f 585 657 567 +f 657 649 567 +f 630 626 582 +f 627 631 583 +f 689 610 584 +f 666 689 584 +f 611 667 585 +f 667 657 585 +f 687 628 586 +f 654 687 586 +f 629 655 587 +f 655 635 587 +f 717 664 606 +f 650 717 606 +f 631 665 607 +f 665 651 607 +f 651 609 607 +f 715 650 608 +f 660 715 608 +f 651 661 609 +f 661 629 609 +f 719 634 610 +f 689 719 610 +f 635 690 611 +f 690 667 611 +f 695 658 626 +f 630 695 626 +f 659 696 627 +f 696 631 627 +f 729 660 628 +f 687 729 628 +f 661 688 629 +f 688 655 629 +f 735 695 630 +f 664 735 630 +f 696 665 631 +f 739 654 634 +f 719 739 634 +f 655 720 635 +f 720 690 635 +f 725 648 644 +f 649 726 645 +f 725 656 648 +f 657 726 649 +f 759 717 650 +f 715 759 650 +f 665 718 651 +f 718 716 651 +f 716 661 651 +f 769 687 654 +f 739 769 654 +f 688 740 655 +f 740 720 655 +f 737 757 656 +f 725 737 656 +f 781 666 656 +f 757 781 656 +f 752 738 657 +f 758 752 657 +f 667 758 657 +f 738 726 657 +f 695 709 658 +f 710 696 659 +f 775 715 660 +f 729 775 660 +f 716 730 661 +f 730 688 661 +f 785 735 664 +f 717 785 664 +f 696 736 665 +f 736 718 665 +f 789 689 666 +f 781 789 666 +f 690 782 667 +f 782 758 667 +f 811 729 687 +f 769 811 687 +f 730 770 688 +f 770 740 688 +f 815 719 689 +f 789 815 689 +f 720 790 690 +f 790 782 690 +f 787 709 695 +f 817 787 695 +f 735 817 695 +f 710 788 696 +f 788 736 696 +f 787 749 709 +f 750 788 710 +f 821 759 715 +f 775 821 715 +f 718 760 716 +f 760 776 716 +f 776 730 716 +f 827 785 717 +f 759 827 717 +f 736 786 718 +f 786 760 718 +f 833 739 719 +f 815 833 719 +f 740 816 720 +f 816 790 720 +f 837 775 729 +f 811 837 729 +f 776 812 730 +f 812 770 730 +f 843 817 735 +f 785 843 735 +f 788 818 736 +f 818 786 736 +f 751 757 737 +f 845 769 739 +f 833 845 739 +f 770 834 740 +f 834 816 740 +f 787 807 749 +f 808 788 750 +f 763 757 751 +f 758 764 752 +f 835 781 757 +f 763 835 757 +f 782 764 758 +f 857 827 759 +f 821 857 759 +f 786 828 760 +f 828 822 760 +f 822 776 760 +f 782 836 764 +f 867 811 769 +f 845 867 769 +f 812 846 770 +f 846 834 770 +f 865 821 775 +f 837 865 775 +f 822 838 776 +f 838 812 776 +f 835 789 781 +f 790 836 782 +f 869 843 785 +f 827 869 785 +f 818 844 786 +f 844 828 786 +f 859 807 787 +f 883 859 787 +f 817 883 787 +f 808 860 788 +f 860 818 788 +f 891 815 789 +f 835 891 789 +f 816 836 790 +f 859 841 807 +f 842 860 808 +f 897 837 811 +f 867 897 811 +f 838 868 812 +f 868 846 812 +f 905 833 815 +f 891 905 815 +f 892 836 816 +f 834 892 816 +f 911 883 817 +f 843 911 817 +f 860 884 818 +f 884 844 818 +f 907 857 821 +f 865 907 821 +f 828 858 822 +f 858 866 822 +f 866 838 822 +f 913 869 827 +f 857 913 827 +f 844 870 828 +f 870 858 828 +f 919 845 833 +f 905 919 833 +f 906 892 834 +f 846 906 834 +f 921 865 837 +f 897 921 837 +f 866 898 838 +f 898 868 838 +f 859 889 841 +f 890 860 842 +f 931 911 843 +f 869 931 843 +f 884 912 844 +f 912 870 844 +f 927 867 845 +f 919 927 845 +f 868 928 846 +f 920 906 846 +f 928 920 846 +f 943 913 857 +f 907 943 857 +f 870 914 858 +f 914 908 858 +f 908 866 858 +f 945 889 859 +f 965 945 859 +f 883 965 859 +f 890 946 860 +f 946 884 860 +f 949 907 865 +f 921 949 865 +f 908 922 866 +f 922 898 866 +f 941 897 867 +f 935 941 867 +f 927 935 867 +f 898 936 868 +f 936 928 868 +f 961 931 869 +f 913 961 869 +f 912 932 870 +f 932 914 870 +f 971 965 883 +f 911 971 883 +f 946 966 884 +f 966 912 884 +f 945 933 889 +f 934 946 890 +f 969 921 897 +f 941 969 897 +f 922 942 898 +f 942 936 898 +f 989 943 907 +f 949 989 907 +f 914 944 908 +f 944 950 908 +f 950 922 908 +f 1005 971 911 +f 931 1005 911 +f 966 972 912 +f 972 932 912 +f 995 961 913 +f 943 995 913 +f 932 962 914 +f 962 944 914 +f 969 949 921 +f 950 970 922 +f 970 942 922 +f 1023 1005 931 +f 961 1023 931 +f 972 1006 932 +f 1006 962 932 +f 945 987 933 +f 988 946 934 +f 989 1011 943 +f 1015 995 943 +f 1011 1015 943 +f 1016 990 944 +f 1018 1016 944 +f 962 996 944 +f 996 1018 944 +f 990 950 944 +f 1086 987 945 +f 1098 1086 945 +f 965 1098 945 +f 988 1087 946 +f 1087 966 946 +f 1007 989 949 +f 969 1007 949 +f 990 970 950 +f 995 1021 961 +f 1025 1023 961 +f 1021 1025 961 +f 1026 996 962 +f 1006 1024 962 +f 1024 1026 962 +f 1106 1098 965 +f 971 1106 965 +f 1087 1099 966 +f 1099 972 966 +f 990 1008 970 +f 1118 1106 971 +f 1005 1118 971 +f 1099 1107 972 +f 1107 1006 972 +f 1086 1066 987 +f 1067 1087 988 +f 1007 1011 989 +f 1016 1012 990 +f 1012 1008 990 +f 1015 1017 995 +f 1017 1021 995 +f 1026 1022 996 +f 1022 1018 996 +f 1040 1041 1005 +f 1023 1038 1005 +f 1038 1040 1005 +f 1041 1043 1005 +f 1043 1045 1005 +f 1045 1046 1005 +f 1046 1051 1005 +f 1051 1057 1005 +f 1060 1118 1005 +f 1057 1060 1005 +f 1121 1061 1006 +f 1061 1052 1006 +f 1052 1044 1006 +f 1044 1042 1006 +f 1042 1039 1006 +f 1039 1037 1006 +f 1037 1024 1006 +f 1107 1119 1006 +f 1119 1121 1006 +f 1036 1038 1023 +f 1025 1029 1023 +f 1029 1034 1023 +f 1034 1036 1023 +f 1035 1033 1024 +f 1033 1032 1024 +f 1032 1028 1024 +f 1028 1027 1024 +f 1037 1035 1024 +f 1027 1026 1024 +f 1120 1118 1060 +f 1086 1136 1066 +f 1137 1087 1067 +f 1169 1136 1086 +f 1167 1169 1086 +f 1098 1167 1086 +f 1137 1170 1087 +f 1170 1099 1087 +f 1165 1167 1098 +f 1106 1165 1098 +f 1170 1168 1099 +f 1168 1107 1099 +f 1163 1165 1106 +f 1118 1163 1106 +f 1168 1166 1107 +f 1166 1119 1107 +f 1161 1163 1118 +f 1120 1161 1118 +f 1166 1164 1119 +f 1164 1121 1119 +f 1164 1162 1121 +f 1169 1171 1136 +f 1172 1170 1137 +f 1207 1163 1161 +f 1164 1267 1162 +f 1267 1208 1162 +f 1266 1165 1163 +f 1207 1266 1163 +f 1166 1289 1164 +f 1289 1267 1164 +f 1288 1167 1165 +f 1266 1288 1165 +f 1168 1309 1166 +f 1309 1289 1166 +f 1308 1169 1167 +f 1288 1308 1167 +f 1170 1315 1168 +f 1315 1309 1168 +f 1239 1171 1169 +f 1314 1239 1169 +f 1308 1314 1169 +f 1172 1240 1170 +f 1240 1315 1170 +f 1259 1266 1207 +f 1267 1260 1208 +f 1314 1318 1239 +f 1319 1315 1240 +f 1270 1266 1259 +f 1267 1263 1260 +f 1267 1271 1263 +f 1332 1288 1266 +f 1270 1332 1266 +f 1289 1359 1267 +f 1359 1333 1267 +f 1333 1271 1267 +f 1277 1332 1270 +f 1333 1276 1271 +f 1333 1278 1276 +f 1333 1279 1278 +f 1280 1332 1277 +f 1333 1281 1279 +f 1282 1332 1280 +f 1333 1283 1281 +f 1333 1284 1283 +f 1285 1332 1282 +f 1333 1317 1284 +f 1317 1286 1284 +f 1316 1332 1285 +f 1287 1316 1285 +f 1317 1290 1286 +f 1291 1316 1287 +f 1358 1308 1288 +f 1332 1358 1288 +f 1309 1399 1289 +f 1399 1359 1289 +f 1317 1293 1290 +f 1292 1316 1291 +f 1294 1316 1292 +f 1317 1297 1293 +f 1295 1316 1294 +f 1296 1316 1295 +f 1298 1316 1296 +f 1317 1299 1297 +f 1300 1316 1298 +f 1302 1300 1298 +f 1301 1303 1299 +f 1317 1301 1299 +f 1330 1316 1300 +f 1302 1330 1300 +f 1317 1375 1301 +f 1375 1331 1301 +f 1331 1303 1301 +f 1304 1330 1302 +f 1331 1305 1303 +f 1306 1312 1304 +f 1312 1330 1304 +f 1331 1307 1305 +f 1310 1312 1306 +f 1331 1313 1307 +f 1313 1311 1307 +f 1398 1314 1308 +f 1358 1398 1308 +f 1315 1409 1309 +f 1409 1399 1309 +f 1322 1312 1310 +f 1313 1329 1311 +f 1329 1323 1311 +f 1322 1328 1312 +f 1328 1330 1312 +f 1331 1397 1313 +f 1397 1329 1313 +f 1376 1318 1314 +f 1408 1376 1314 +f 1398 1408 1314 +f 1319 1377 1315 +f 1377 1409 1315 +f 1374 1332 1316 +f 1330 1374 1316 +f 1333 1411 1317 +f 1411 1375 1317 +f 1354 1370 1322 +f 1370 1328 1322 +f 1329 1371 1323 +f 1371 1407 1323 +f 1407 1355 1323 +f 1396 1330 1328 +f 1370 1396 1328 +f 1397 1419 1329 +f 1419 1371 1329 +f 1396 1374 1330 +f 1375 1425 1331 +f 1425 1397 1331 +f 1410 1358 1332 +f 1374 1410 1332 +f 1359 1431 1333 +f 1431 1411 1333 +f 1426 1406 1354 +f 1406 1370 1354 +f 1368 1426 1354 +f 1407 1427 1355 +f 1427 1369 1355 +f 1430 1398 1358 +f 1410 1430 1358 +f 1399 1459 1359 +f 1459 1431 1359 +f 1444 1426 1368 +f 1392 1444 1368 +f 1427 1445 1369 +f 1445 1393 1369 +f 1418 1396 1370 +f 1406 1418 1370 +f 1419 1455 1371 +f 1455 1407 1371 +f 1424 1410 1374 +f 1396 1424 1374 +f 1411 1461 1375 +f 1461 1425 1375 +f 1408 1420 1376 +f 1421 1409 1377 +f 1400 1444 1392 +f 1445 1483 1393 +f 1483 1401 1393 +f 1418 1424 1396 +f 1425 1469 1397 +f 1469 1419 1397 +f 1458 1408 1398 +f 1430 1458 1398 +f 1409 1489 1399 +f 1489 1459 1399 +f 1412 1482 1400 +f 1482 1444 1400 +f 1483 1413 1401 +f 1454 1418 1406 +f 1426 1454 1406 +f 1455 1491 1407 +f 1491 1427 1407 +f 1464 1420 1408 +f 1488 1464 1408 +f 1458 1488 1408 +f 1421 1465 1409 +f 1465 1489 1409 +f 1460 1430 1410 +f 1424 1460 1410 +f 1431 1497 1411 +f 1497 1461 1411 +f 1416 1492 1412 +f 1492 1482 1412 +f 1483 1493 1413 +f 1493 1417 1413 +f 1484 1500 1416 +f 1500 1492 1416 +f 1515 1485 1417 +f 1493 1501 1417 +f 1501 1515 1417 +f 1468 1424 1418 +f 1454 1468 1418 +f 1469 1507 1419 +f 1507 1455 1419 +f 1468 1460 1424 +f 1461 1509 1425 +f 1509 1469 1425 +f 1490 1454 1426 +f 1444 1490 1426 +f 1491 1511 1427 +f 1511 1445 1427 +f 1496 1458 1430 +f 1460 1496 1430 +f 1459 1521 1431 +f 1521 1497 1431 +f 1510 1490 1444 +f 1482 1510 1444 +f 1511 1547 1445 +f 1547 1483 1445 +f 1506 1468 1454 +f 1490 1506 1454 +f 1507 1555 1455 +f 1555 1491 1455 +f 1520 1488 1458 +f 1496 1520 1458 +f 1489 1581 1459 +f 1581 1521 1459 +f 1508 1496 1460 +f 1468 1508 1460 +f 1497 1567 1461 +f 1567 1509 1461 +f 1488 1504 1464 +f 1505 1489 1465 +f 1506 1508 1468 +f 1509 1579 1469 +f 1579 1507 1469 +f 1546 1510 1482 +f 1492 1546 1482 +f 1547 1587 1483 +f 1587 1493 1483 +f 1536 1514 1484 +f 1514 1500 1484 +f 1531 1537 1485 +f 1515 1531 1485 +f 1556 1504 1488 +f 1580 1556 1488 +f 1520 1580 1488 +f 1505 1557 1489 +f 1557 1581 1489 +f 1554 1506 1490 +f 1510 1554 1490 +f 1555 1595 1491 +f 1595 1511 1491 +f 1586 1546 1492 +f 1500 1586 1492 +f 1587 1601 1493 +f 1601 1501 1493 +f 1566 1520 1496 +f 1508 1566 1496 +f 1521 1607 1497 +f 1607 1567 1497 +f 1600 1586 1500 +f 1514 1600 1500 +f 1601 1619 1501 +f 1619 1515 1501 +f 1578 1508 1506 +f 1554 1578 1506 +f 1579 1615 1507 +f 1615 1555 1507 +f 1578 1566 1508 +f 1567 1617 1509 +f 1617 1579 1509 +f 1594 1554 1510 +f 1546 1594 1510 +f 1595 1631 1511 +f 1631 1547 1511 +f 1618 1600 1514 +f 1530 1618 1514 +f 1536 1530 1514 +f 1639 1531 1515 +f 1619 1639 1515 +f 1606 1580 1520 +f 1566 1606 1520 +f 1581 1647 1521 +f 1647 1607 1521 +f 1638 1618 1530 +f 1548 1638 1530 +f 1536 1548 1530 +f 1549 1537 1531 +f 1639 1549 1531 +f 1630 1594 1546 +f 1586 1630 1546 +f 1631 1669 1547 +f 1669 1587 1547 +f 1576 1654 1548 +f 1654 1638 1548 +f 1639 1655 1549 +f 1655 1577 1549 +f 1614 1578 1554 +f 1594 1614 1554 +f 1615 1671 1555 +f 1671 1595 1555 +f 1580 1602 1556 +f 1603 1581 1557 +f 1616 1606 1566 +f 1578 1616 1566 +f 1607 1675 1567 +f 1675 1617 1567 +f 1588 1654 1576 +f 1655 1589 1577 +f 1614 1616 1578 +f 1617 1677 1579 +f 1677 1615 1579 +f 1642 1602 1580 +f 1646 1642 1580 +f 1606 1646 1580 +f 1603 1643 1581 +f 1643 1647 1581 +f 1668 1630 1586 +f 1600 1668 1586 +f 1669 1685 1587 +f 1685 1601 1587 +f 1672 1654 1588 +f 1655 1673 1589 +f 1670 1614 1594 +f 1630 1670 1594 +f 1671 1695 1595 +f 1695 1631 1595 +f 1684 1668 1600 +f 1618 1684 1600 +f 1685 1707 1601 +f 1707 1619 1601 +f 1674 1646 1606 +f 1616 1674 1606 +f 1647 1711 1607 +f 1711 1675 1607 +f 1676 1616 1614 +f 1670 1676 1614 +f 1677 1723 1615 +f 1723 1671 1615 +f 1676 1674 1616 +f 1675 1735 1617 +f 1735 1677 1617 +f 1706 1684 1618 +f 1638 1706 1618 +f 1707 1731 1619 +f 1731 1639 1619 +f 1694 1670 1630 +f 1668 1694 1630 +f 1695 1755 1631 +f 1755 1669 1631 +f 1730 1706 1638 +f 1654 1730 1638 +f 1772 1655 1639 +f 1731 1772 1639 +f 1646 1682 1642 +f 1683 1647 1643 +f 1720 1682 1646 +f 1710 1720 1646 +f 1674 1710 1646 +f 1683 1721 1647 +f 1721 1711 1647 +f 1771 1730 1654 +f 1672 1771 1654 +f 1772 1673 1655 +f 1754 1694 1668 +f 1684 1754 1668 +f 1755 1832 1669 +f 1832 1685 1669 +f 1722 1676 1670 +f 1694 1722 1670 +f 1723 1834 1671 +f 1834 1695 1671 +f 1785 1804 1672 +f 1804 1771 1672 +f 1805 1786 1673 +f 1772 1805 1673 +f 1734 1710 1674 +f 1676 1734 1674 +f 1711 1846 1675 +f 1846 1735 1675 +f 1722 1734 1676 +f 1735 1848 1677 +f 1848 1723 1677 +f 1831 1754 1684 +f 1706 1831 1684 +f 1832 1858 1685 +f 1858 1707 1685 +f 1833 1722 1694 +f 1754 1833 1694 +f 1834 1880 1695 +f 1880 1755 1695 +f 1857 1831 1706 +f 1730 1857 1706 +f 1858 1882 1707 +f 1882 1731 1707 +f 1859 1814 1710 +f 1814 1720 1710 +f 1845 1859 1710 +f 1734 1845 1710 +f 1721 1815 1711 +f 1815 1860 1711 +f 1860 1846 1711 +f 1847 1734 1722 +f 1833 1847 1722 +f 1848 1892 1723 +f 1892 1834 1723 +f 1881 1857 1730 +f 1771 1881 1730 +f 1882 1890 1731 +f 1890 1772 1731 +f 1847 1845 1734 +f 1846 1896 1735 +f 1896 1848 1735 +f 1879 1833 1754 +f 1831 1879 1754 +f 1880 1900 1755 +f 1900 1832 1755 +f 1889 1881 1771 +f 1804 1889 1771 +f 1902 1805 1772 +f 1890 1902 1772 +f 1791 1804 1785 +f 1805 1787 1786 +f 1805 1790 1787 +f 1805 1794 1790 +f 1798 1804 1791 +f 1805 1797 1794 +f 1805 1803 1797 +f 1806 1804 1798 +f 1806 1810 1804 +f 1810 1901 1804 +f 1901 1889 1804 +f 1809 1803 1805 +f 1902 1809 1805 +f 1902 1812 1809 +f 1811 1901 1810 +f 1813 1901 1811 +f 1902 1816 1812 +f 1817 1901 1813 +f 1902 1821 1816 +f 1820 1901 1817 +f 1822 1901 1820 +f 1902 1824 1821 +f 1823 1901 1822 +f 1825 1901 1823 +f 1902 1827 1824 +f 1826 1907 1825 +f 1907 1901 1825 +f 1828 1907 1826 +f 1908 1829 1827 +f 1902 1908 1827 +f 1830 1907 1828 +f 1911 1830 1829 +f 1908 1911 1829 +f 1911 1907 1830 +f 1899 1879 1831 +f 1857 1899 1831 +f 1900 1941 1832 +f 1941 1858 1832 +f 1891 1847 1833 +f 1879 1891 1833 +f 1892 1943 1834 +f 1943 1880 1834 +f 1922 1887 1845 +f 1887 1859 1845 +f 1895 1922 1845 +f 1847 1895 1845 +f 1860 1888 1846 +f 1888 1923 1846 +f 1923 1896 1846 +f 1891 1895 1847 +f 1896 1951 1848 +f 1951 1892 1848 +f 1940 1899 1857 +f 1881 1940 1857 +f 1941 1957 1858 +f 1957 1882 1858 +f 1942 1891 1879 +f 1899 1942 1879 +f 1943 1967 1880 +f 1967 1900 1880 +f 1956 1940 1881 +f 1889 1956 1881 +f 1957 1971 1882 +f 1971 1890 1882 +f 1970 1956 1889 +f 1901 1970 1889 +f 1971 1991 1890 +f 1991 1902 1890 +f 1950 1895 1891 +f 1942 1950 1891 +f 1951 2008 1892 +f 2008 1943 1892 +f 1978 1948 1895 +f 1948 1922 1895 +f 1950 1978 1895 +f 1923 1949 1896 +f 1949 1979 1896 +f 1979 1951 1896 +f 1966 1942 1899 +f 1940 1966 1899 +f 1967 2010 1900 +f 2010 1941 1900 +f 1990 1970 1901 +f 1907 1990 1901 +f 2005 1908 1902 +f 1991 2005 1902 +f 1911 2004 1907 +f 2004 1990 1907 +f 2006 1911 1908 +f 2005 2006 1908 +f 2006 2004 1911 +f 2009 1966 1940 +f 1956 2009 1940 +f 2010 2032 1941 +f 2032 1957 1941 +f 2007 1950 1942 +f 1966 2007 1942 +f 2008 2050 1943 +f 2050 1967 1943 +f 2037 2013 1950 +f 2013 1978 1950 +f 2007 2037 1950 +f 1979 2014 1951 +f 2014 2038 1951 +f 2038 2008 1951 +f 2031 2009 1956 +f 1970 2031 1956 +f 2032 2070 1957 +f 2070 1971 1957 +f 2049 2007 1966 +f 2009 2049 1966 +f 2050 2088 1967 +f 2088 2010 1967 +f 2069 2031 1970 +f 1990 2069 1970 +f 2070 2078 1971 +f 2078 1991 1971 +f 2077 2069 1990 +f 2004 2077 1990 +f 2078 2096 1991 +f 2096 2005 1991 +f 2006 2095 2004 +f 2095 2077 2004 +f 2097 2006 2005 +f 2096 2097 2005 +f 2097 2095 2006 +f 2100 2073 2007 +f 2073 2037 2007 +f 2049 2100 2007 +f 2038 2074 2008 +f 2074 2101 2008 +f 2101 2050 2008 +f 2087 2049 2009 +f 2031 2087 2009 +f 2088 2129 2010 +f 2129 2032 2010 +f 2128 2087 2031 +f 2069 2128 2031 +f 2129 2155 2032 +f 2155 2070 2032 +f 2144 2126 2049 +f 2126 2100 2049 +f 2087 2144 2049 +f 2101 2127 2050 +f 2127 2145 2050 +f 2145 2088 2050 +f 2154 2128 2069 +f 2077 2154 2069 +f 2155 2179 2070 +f 2179 2078 2070 +f 2178 2154 2077 +f 2095 2178 2077 +f 2179 2185 2078 +f 2185 2096 2078 +f 2195 2176 2087 +f 2176 2144 2087 +f 2128 2195 2087 +f 2145 2177 2088 +f 2177 2196 2088 +f 2196 2129 2088 +f 2097 2184 2095 +f 2184 2178 2095 +f 2185 2188 2096 +f 2188 2097 2096 +f 2188 2184 2097 +f 2227 2219 2128 +f 2219 2195 2128 +f 2154 2227 2128 +f 2196 2220 2129 +f 2220 2228 2129 +f 2228 2155 2129 +f 2261 2247 2154 +f 2247 2227 2154 +f 2178 2261 2154 +f 2228 2248 2155 +f 2248 2262 2155 +f 2262 2179 2155 +f 2287 2273 2178 +f 2273 2261 2178 +f 2184 2287 2178 +f 2262 2274 2179 +f 2274 2288 2179 +f 2288 2185 2179 +f 2295 2287 2184 +f 2188 2301 2184 +f 2301 2295 2184 +f 2288 2296 2185 +f 2296 2302 2185 +f 2302 2188 2185 +f 2302 2303 2188 +f 2303 2301 2188 +f 12 13 11 +f 21 12 11 +f 14 21 11 +f 21 19 12 +f 19 27 12 +f 27 20 12 +f 20 13 12 +f 20 35 13 +f 43 21 14 +f 36 43 14 +f 28 26 19 +f 26 30 19 +f 30 27 19 +f 21 28 19 +f 27 46 20 +f 46 42 20 +f 42 35 20 +f 43 28 21 +f 31 32 26 +f 32 39 26 +f 39 30 26 +f 28 31 26 +f 30 52 27 +f 52 46 27 +f 47 31 28 +f 43 47 28 +f 39 63 30 +f 63 52 30 +f 53 40 31 +f 40 32 31 +f 47 53 31 +f 44 39 32 +f 40 45 32 +f 45 41 32 +f 41 44 32 +f 42 69 35 +f 74 43 36 +f 70 74 36 +f 44 48 39 +f 48 54 39 +f 54 63 39 +f 64 55 40 +f 55 49 40 +f 49 45 40 +f 53 64 40 +f 46 75 42 +f 75 73 42 +f 73 69 42 +f 74 47 43 +f 52 81 46 +f 81 75 46 +f 76 53 47 +f 74 76 47 +f 63 85 52 +f 85 81 52 +f 82 64 53 +f 76 82 53 +f 67 63 54 +f 64 68 55 +f 67 77 63 +f 77 85 63 +f 86 78 64 +f 78 68 64 +f 82 86 64 +f 73 98 69 +f 109 74 70 +f 99 109 70 +f 75 110 73 +f 110 108 73 +f 108 98 73 +f 109 76 74 +f 81 112 75 +f 112 110 75 +f 111 82 76 +f 109 111 76 +f 90 85 77 +f 86 91 78 +f 85 116 81 +f 116 112 81 +f 113 86 82 +f 111 113 82 +f 90 106 85 +f 106 116 85 +f 117 107 86 +f 107 91 86 +f 113 117 86 +f 108 137 98 +f 144 109 99 +f 138 144 99 +f 119 116 106 +f 117 120 107 +f 110 145 108 +f 145 143 108 +f 143 137 108 +f 144 111 109 +f 112 149 110 +f 149 145 110 +f 146 113 111 +f 144 146 111 +f 116 153 112 +f 153 149 112 +f 150 117 113 +f 146 150 113 +f 119 135 116 +f 135 153 116 +f 154 136 117 +f 136 120 117 +f 150 154 117 +f 162 153 135 +f 154 163 136 +f 143 180 137 +f 189 144 138 +f 181 189 138 +f 145 192 143 +f 192 188 143 +f 188 180 143 +f 189 146 144 +f 149 195 145 +f 195 192 145 +f 193 150 146 +f 189 193 146 +f 153 201 149 +f 201 195 149 +f 196 154 150 +f 193 196 150 +f 162 176 153 +f 176 201 153 +f 202 177 154 +f 177 163 154 +f 196 202 154 +f 203 201 176 +f 202 204 177 +f 188 230 180 +f 239 189 181 +f 231 239 181 +f 192 240 188 +f 240 238 188 +f 238 230 188 +f 239 193 189 +f 195 242 192 +f 242 240 192 +f 241 196 193 +f 239 241 193 +f 201 252 195 +f 252 242 195 +f 243 202 196 +f 241 243 196 +f 203 223 201 +f 223 252 201 +f 253 224 202 +f 224 204 202 +f 243 253 202 +f 256 252 223 +f 253 257 224 +f 238 289 230 +f 298 239 231 +f 290 298 231 +f 240 299 238 +f 299 297 238 +f 297 289 238 +f 298 241 239 +f 242 303 240 +f 303 299 240 +f 300 243 241 +f 298 300 241 +f 252 309 242 +f 309 303 242 +f 304 253 243 +f 300 304 243 +f 256 277 252 +f 277 309 252 +f 310 278 253 +f 278 257 253 +f 304 310 253 +f 311 309 277 +f 310 312 278 +f 297 347 289 +f 358 298 290 +f 348 358 290 +f 299 359 297 +f 359 357 297 +f 357 347 297 +f 358 300 298 +f 303 361 299 +f 361 359 299 +f 360 304 300 +f 358 360 300 +f 309 367 303 +f 367 361 303 +f 362 310 304 +f 360 362 304 +f 311 333 309 +f 333 367 309 +f 368 334 310 +f 334 312 310 +f 362 368 310 +f 369 367 333 +f 368 370 334 +f 357 403 347 +f 414 358 348 +f 404 414 348 +f 359 415 357 +f 415 413 357 +f 413 403 357 +f 414 360 358 +f 361 417 359 +f 417 415 359 +f 416 362 360 +f 414 416 360 +f 367 421 361 +f 421 417 361 +f 418 368 362 +f 416 418 362 +f 369 385 367 +f 385 421 367 +f 422 386 368 +f 386 370 368 +f 418 422 368 +f 427 421 385 +f 422 428 386 +f 413 465 403 +f 472 414 404 +f 466 472 404 +f 415 473 413 +f 473 471 413 +f 471 465 413 +f 472 416 414 +f 417 478 415 +f 478 473 415 +f 474 418 416 +f 472 474 416 +f 421 482 417 +f 482 478 417 +f 479 422 418 +f 474 479 418 +f 427 447 421 +f 447 482 421 +f 448 428 422 +f 483 448 422 +f 479 483 422 +f 493 482 447 +f 483 494 448 +f 471 602 465 +f 615 472 466 +f 603 615 466 +f 473 616 471 +f 616 614 471 +f 614 602 471 +f 615 474 472 +f 478 620 473 +f 620 616 473 +f 617 479 474 +f 615 617 474 +f 482 624 478 +f 624 620 478 +f 621 483 479 +f 617 621 479 +f 493 582 482 +f 582 624 482 +f 583 494 483 +f 625 583 483 +f 621 625 483 +f 626 624 582 +f 625 627 583 +f 614 680 602 +f 698 615 603 +f 681 698 603 +f 616 699 614 +f 699 697 614 +f 697 680 614 +f 698 617 615 +f 620 701 616 +f 701 699 616 +f 700 621 617 +f 698 700 617 +f 624 707 620 +f 707 701 620 +f 702 625 621 +f 700 702 621 +f 658 707 624 +f 626 658 624 +f 659 627 625 +f 708 659 625 +f 702 708 625 +f 709 707 658 +f 708 710 659 +f 697 693 680 +f 694 698 681 +f 697 773 693 +f 796 698 694 +f 774 796 694 +f 795 773 697 +f 799 795 697 +f 699 799 697 +f 796 700 698 +f 801 799 699 +f 701 801 699 +f 800 702 700 +f 796 800 700 +f 805 801 701 +f 707 805 701 +f 802 708 702 +f 800 802 702 +f 749 805 707 +f 709 749 707 +f 750 710 708 +f 806 750 708 +f 802 806 708 +f 807 805 749 +f 806 808 750 +f 795 793 773 +f 794 796 774 +f 795 863 793 +f 878 796 794 +f 864 878 794 +f 877 863 795 +f 879 877 795 +f 799 879 795 +f 878 800 796 +f 881 879 799 +f 801 881 799 +f 880 802 800 +f 878 880 800 +f 887 881 801 +f 805 887 801 +f 882 806 802 +f 880 882 802 +f 841 887 805 +f 807 841 805 +f 882 888 806 +f 888 842 806 +f 842 808 806 +f 889 887 841 +f 888 890 842 +f 877 875 863 +f 876 878 864 +f 877 959 875 +f 978 878 876 +f 960 978 876 +f 977 959 877 +f 979 977 877 +f 879 979 877 +f 978 880 878 +f 981 979 879 +f 881 981 879 +f 980 882 880 +f 978 980 880 +f 985 981 881 +f 887 985 881 +f 982 888 882 +f 980 982 882 +f 933 985 887 +f 889 933 887 +f 934 890 888 +f 986 934 888 +f 982 986 888 +f 987 985 933 +f 986 988 934 +f 977 975 959 +f 976 978 960 +f 977 1116 975 +f 1127 978 976 +f 1117 1127 976 +f 1126 1116 977 +f 1128 1126 977 +f 979 1128 977 +f 1127 980 978 +f 1130 1128 979 +f 981 1130 979 +f 1129 982 980 +f 1127 1129 980 +f 1134 1130 981 +f 985 1134 981 +f 1131 986 982 +f 1129 1131 982 +f 1066 1134 985 +f 987 1066 985 +f 1067 988 986 +f 1135 1067 986 +f 1131 1135 986 +f 1136 1134 1066 +f 1135 1137 1067 +f 1126 1124 1116 +f 1125 1127 1117 +f 1126 1175 1124 +f 1176 1127 1125 +f 1249 1175 1126 +f 1247 1249 1126 +f 1128 1247 1126 +f 1250 1129 1127 +f 1176 1250 1127 +f 1245 1247 1128 +f 1130 1245 1128 +f 1248 1131 1129 +f 1250 1248 1129 +f 1241 1245 1130 +f 1134 1241 1130 +f 1246 1135 1131 +f 1248 1246 1131 +f 1171 1241 1134 +f 1136 1171 1134 +f 1172 1137 1135 +f 1242 1172 1135 +f 1246 1242 1135 +f 1239 1241 1171 +f 1242 1240 1172 +f 1249 1253 1175 +f 1254 1250 1176 +f 1318 1241 1239 +f 1242 1319 1240 +f 1378 1245 1241 +f 1318 1378 1241 +f 1379 1319 1242 +f 1383 1379 1242 +f 1246 1383 1242 +f 1382 1247 1245 +f 1378 1382 1245 +f 1385 1383 1246 +f 1248 1385 1246 +f 1384 1249 1247 +f 1382 1384 1247 +f 1387 1385 1248 +f 1250 1387 1248 +f 1340 1253 1249 +f 1386 1340 1249 +f 1384 1386 1249 +f 1341 1387 1250 +f 1254 1341 1250 +f 1376 1378 1318 +f 1379 1377 1319 +f 1386 1390 1340 +f 1391 1387 1341 +f 1420 1378 1376 +f 1379 1421 1377 +f 1466 1382 1378 +f 1420 1466 1378 +f 1467 1421 1379 +f 1473 1467 1379 +f 1383 1473 1379 +f 1472 1384 1382 +f 1466 1472 1382 +f 1475 1473 1383 +f 1385 1475 1383 +f 1474 1386 1384 +f 1472 1474 1384 +f 1477 1475 1385 +f 1387 1477 1385 +f 1436 1390 1386 +f 1476 1436 1386 +f 1474 1476 1386 +f 1437 1477 1387 +f 1391 1437 1387 +f 1464 1466 1420 +f 1467 1465 1421 +f 1476 1480 1436 +f 1481 1477 1437 +f 1504 1466 1464 +f 1467 1505 1465 +f 1558 1472 1466 +f 1504 1558 1466 +f 1559 1505 1467 +f 1565 1559 1467 +f 1473 1565 1467 +f 1564 1474 1472 +f 1558 1564 1472 +f 1569 1565 1473 +f 1475 1569 1473 +f 1568 1476 1474 +f 1564 1568 1474 +f 1571 1569 1475 +f 1477 1571 1475 +f 1528 1480 1476 +f 1570 1528 1476 +f 1568 1570 1476 +f 1529 1571 1477 +f 1481 1529 1477 +f 1556 1558 1504 +f 1559 1557 1505 +f 1570 1574 1528 +f 1575 1571 1529 +f 1602 1558 1556 +f 1559 1603 1557 +f 1644 1564 1558 +f 1602 1644 1558 +f 1645 1603 1559 +f 1651 1645 1559 +f 1565 1651 1559 +f 1650 1568 1564 +f 1644 1650 1564 +f 1653 1651 1565 +f 1569 1653 1565 +f 1652 1570 1568 +f 1650 1652 1568 +f 1657 1653 1569 +f 1571 1657 1569 +f 1624 1574 1570 +f 1656 1624 1570 +f 1652 1656 1570 +f 1625 1657 1571 +f 1575 1625 1571 +f 1642 1644 1602 +f 1645 1643 1603 +f 1656 1660 1624 +f 1661 1657 1625 +f 1682 1644 1642 +f 1645 1683 1643 +f 1724 1650 1644 +f 1682 1724 1644 +f 1725 1683 1645 +f 1729 1725 1645 +f 1651 1729 1645 +f 1728 1652 1650 +f 1724 1728 1650 +f 1733 1729 1651 +f 1653 1733 1651 +f 1732 1656 1652 +f 1728 1732 1652 +f 1737 1733 1653 +f 1657 1737 1653 +f 1698 1660 1656 +f 1736 1698 1656 +f 1732 1736 1656 +f 1699 1737 1657 +f 1661 1699 1657 +f 1720 1724 1682 +f 1725 1721 1683 +f 1736 1744 1698 +f 1745 1737 1699 +f 1814 1724 1720 +f 1725 1815 1721 +f 1861 1728 1724 +f 1814 1861 1724 +f 1862 1815 1725 +f 1866 1862 1725 +f 1729 1866 1725 +f 1865 1732 1728 +f 1861 1865 1728 +f 1868 1866 1729 +f 1733 1868 1729 +f 1867 1736 1732 +f 1865 1867 1732 +f 1872 1868 1733 +f 1737 1872 1733 +f 1841 1744 1736 +f 1871 1841 1736 +f 1867 1871 1736 +f 1842 1872 1737 +f 1745 1842 1737 +f 1859 1861 1814 +f 1862 1860 1815 +f 1871 1875 1841 +f 1876 1872 1842 +f 1887 1861 1859 +f 1862 1888 1860 +f 1926 1865 1861 +f 1887 1926 1861 +f 1927 1888 1862 +f 1931 1927 1862 +f 1866 1931 1862 +f 1930 1867 1865 +f 1926 1930 1865 +f 1933 1931 1866 +f 1868 1933 1866 +f 1932 1871 1867 +f 1930 1932 1867 +f 1935 1933 1868 +f 1872 1935 1868 +f 1905 1875 1871 +f 1934 1905 1871 +f 1932 1934 1871 +f 1906 1935 1872 +f 1876 1906 1872 +f 1922 1926 1887 +f 1927 1923 1888 +f 1934 1938 1905 +f 1939 1935 1906 +f 1948 1926 1922 +f 1927 1949 1923 +f 1984 1930 1926 +f 1948 1984 1926 +f 1985 1949 1927 +f 1989 1985 1927 +f 1931 1989 1927 +f 1988 1932 1930 +f 1984 1988 1930 +f 1995 1989 1931 +f 1933 1995 1931 +f 1994 1934 1932 +f 1988 1994 1932 +f 1999 1995 1933 +f 1935 1999 1933 +f 1964 1938 1934 +f 1998 1964 1934 +f 1994 1998 1934 +f 1965 1999 1935 +f 1939 1965 1935 +f 1978 1984 1948 +f 1985 1979 1949 +f 1998 2002 1964 +f 2003 1999 1965 +f 2013 1984 1978 +f 1985 2014 1979 +f 2045 1988 1984 +f 2013 2045 1984 +f 2046 2014 1985 +f 2054 2046 1985 +f 1989 2054 1985 +f 2053 1994 1988 +f 2045 2053 1988 +f 2058 2054 1989 +f 1995 2058 1989 +f 2057 1998 1994 +f 2053 2057 1994 +f 2060 2058 1995 +f 1999 2060 1995 +f 2027 2002 1998 +f 2059 2027 1998 +f 2057 2059 1998 +f 2028 2060 1999 +f 2003 2028 1999 +f 2037 2045 2013 +f 2046 2038 2014 +f 2059 2063 2027 +f 2064 2060 2028 +f 2073 2045 2037 +f 2046 2074 2038 +f 2108 2053 2045 +f 2073 2108 2045 +f 2109 2074 2046 +f 2113 2109 2046 +f 2054 2113 2046 +f 2112 2057 2053 +f 2108 2112 2053 +f 2115 2113 2054 +f 2058 2115 2054 +f 2114 2059 2057 +f 2112 2114 2057 +f 2119 2115 2058 +f 2060 2119 2058 +f 2091 2063 2059 +f 2118 2091 2059 +f 2114 2118 2059 +f 2092 2119 2060 +f 2064 2092 2060 +f 2100 2108 2073 +f 2109 2101 2074 +f 2118 2122 2091 +f 2123 2119 2092 +f 2126 2108 2100 +f 2109 2127 2101 +f 2148 2112 2108 +f 2126 2148 2108 +f 2149 2127 2109 +f 2161 2149 2109 +f 2113 2161 2109 +f 2160 2114 2112 +f 2148 2160 2112 +f 2165 2161 2113 +f 2115 2165 2113 +f 2164 2118 2114 +f 2160 2164 2114 +f 2169 2165 2115 +f 2119 2169 2115 +f 2142 2122 2118 +f 2168 2142 2118 +f 2164 2168 2118 +f 2143 2169 2119 +f 2123 2143 2119 +f 2144 2148 2126 +f 2149 2145 2127 +f 2168 2172 2142 +f 2173 2169 2143 +f 2176 2148 2144 +f 2149 2177 2145 +f 2197 2160 2148 +f 2176 2197 2148 +f 2198 2177 2149 +f 2206 2198 2149 +f 2161 2206 2149 +f 2205 2164 2160 +f 2197 2205 2160 +f 2212 2206 2161 +f 2165 2212 2161 +f 2211 2168 2164 +f 2205 2211 2164 +f 2214 2212 2165 +f 2169 2214 2165 +f 2191 2172 2168 +f 2213 2191 2168 +f 2211 2213 2168 +f 2192 2214 2169 +f 2173 2192 2169 +f 2195 2197 2176 +f 2198 2196 2177 +f 2213 2217 2191 +f 2218 2214 2192 +f 2219 2197 2195 +f 2198 2220 2196 +f 2233 2205 2197 +f 2219 2233 2197 +f 2234 2220 2198 +f 2240 2234 2198 +f 2206 2240 2198 +f 2239 2211 2205 +f 2233 2239 2205 +f 2246 2240 2206 +f 2212 2246 2206 +f 2245 2213 2211 +f 2239 2245 2211 +f 2256 2246 2212 +f 2214 2256 2212 +f 2231 2217 2213 +f 2255 2231 2213 +f 2245 2255 2213 +f 2232 2256 2214 +f 2218 2232 2214 +f 2227 2233 2219 +f 2234 2228 2220 +f 2247 2233 2227 +f 2234 2248 2228 +f 2255 2259 2231 +f 2260 2256 2232 +f 2263 2239 2233 +f 2247 2263 2233 +f 2264 2248 2234 +f 2276 2264 2234 +f 2240 2276 2234 +f 2275 2245 2239 +f 2263 2275 2239 +f 2278 2276 2240 +f 2246 2278 2240 +f 2277 2255 2245 +f 2275 2277 2245 +f 2282 2278 2246 +f 2256 2282 2246 +f 2261 2263 2247 +f 2264 2262 2248 +f 2271 2259 2255 +f 2281 2271 2255 +f 2277 2281 2255 +f 2272 2282 2256 +f 2260 2272 2256 +f 2273 2263 2261 +f 2264 2274 2262 +f 2297 2275 2263 +f 2273 2297 2263 +f 2298 2274 2264 +f 2305 2298 2264 +f 2276 2305 2264 +f 2281 2291 2271 +f 2292 2282 2272 +f 2287 2297 2273 +f 2298 2288 2274 +f 2304 2277 2275 +f 2297 2304 2275 +f 2311 2305 2276 +f 2278 2311 2276 +f 2310 2281 2277 +f 2304 2310 2277 +f 2317 2311 2278 +f 2282 2317 2278 +f 2308 2291 2281 +f 2316 2308 2281 +f 2310 2316 2281 +f 2309 2317 2282 +f 2292 2309 2282 +f 2295 2297 2287 +f 2298 2296 2288 +f 2301 2312 2295 +f 2312 2297 2295 +f 2313 2302 2296 +f 2298 2313 2296 +f 2312 2304 2297 +f 2323 2313 2298 +f 2305 2323 2298 +f 2303 2312 2301 +f 2313 2303 2302 +f 2313 2312 2303 +f 2322 2310 2304 +f 2312 2322 2304 +f 2329 2323 2305 +f 2311 2329 2305 +f 2316 2320 2308 +f 2321 2317 2309 +f 2328 2316 2310 +f 2322 2328 2310 +f 2337 2329 2311 +f 2317 2337 2311 +f 2313 2322 2312 +f 2323 2322 2313 +f 2334 2320 2316 +f 2336 2334 2316 +f 2328 2336 2316 +f 2335 2337 2317 +f 2321 2335 2317 +f 2323 2328 2322 +f 2329 2328 2323 +f 2329 2336 2328 +f 2337 2336 2329 +f 2336 2340 2334 +f 2341 2337 2335 +f 2343 2340 2336 +f 2337 2343 2336 +f 2341 2343 2337 +f 1782 1801 1778 +f 1802 1830 1779 +f 1830 1782 1779 +f 1830 1801 1782 +f 1828 1826 1801 +f 1830 1828 1801 +f 1827 1829 1802 +f 1829 1830 1802 +f 1760 1741 1585 +f 1673 1760 1585 +f 1589 1673 1585 +f 1786 1760 1673 +f 1485 1523 1405 +f 1417 1485 1405 +f 1537 1523 1485 +f 1323 1327 1262 +f 1311 1323 1262 +f 1355 1327 1323 +f 1220 1275 1219 +f 1275 1297 1219 +f 1297 1299 1219 +f 1299 1303 1219 +f 1121 1091 1061 +f 1162 1105 1091 +f 1121 1162 1091 +f 1162 1158 1105 +f 1204 1184 1158 +f 1162 1204 1158 +f 1208 1204 1162 +f 1208 1260 1204 +f 568 542 539 +f 563 568 539 +f 543 563 539 +f 568 545 542 +f 544 563 543 +f 568 549 545 +f 548 563 544 +f 568 550 549 +f 551 563 548 +f 568 557 550 +f 560 563 551 +f 556 560 551 +f 568 561 557 +f 568 562 561 +f 569 568 563 +f 570 573 568 +f 569 570 568 +f 573 571 568 +f 573 572 571 +f 573 731 572 +f 732 731 573 +f 732 747 731 +f 748 747 732 +f 748 755 747 +f 756 777 748 +f 777 755 748 +f 915 777 756 +f 778 915 756 +f 916 915 778 +f 916 926 915 +f 926 938 915 +f 938 1351 915 +f 1351 925 915 +f 1351 937 925 +f 1351 947 937 +f 948 1351 938 +f 1395 1405 947 +f 1405 1366 947 +f 1351 1367 947 +f 1367 1395 947 +f 1366 1350 947 +f 1350 1336 947 +f 1336 963 947 +f 964 1351 948 +f 1336 1326 963 +f 1326 967 963 +f 1337 1351 964 +f 1327 1337 964 +f 968 1327 964 +f 1326 1261 967 +f 1261 1058 967 +f 1059 1327 968 +f 1261 1233 1058 +f 1233 1070 1058 +f 1262 1327 1059 +f 1071 1262 1059 +f 1233 1223 1070 +f 1223 1074 1070 +f 1234 1262 1071 +f 1224 1234 1071 +f 1075 1224 1071 +f 1223 1077 1074 +f 1219 1224 1075 +f 1078 1219 1075 +f 1215 1211 1076 +f 1211 1081 1076 +f 1077 1218 1076 +f 1218 1217 1076 +f 1217 1215 1076 +f 1223 1218 1077 +f 1220 1219 1078 +f 1079 1220 1078 +f 1080 1220 1079 +f 1084 1220 1080 +f 1211 1085 1081 +f 1211 1088 1085 +f 1216 1220 1084 +f 1094 1097 1084 +f 1097 1101 1084 +f 1101 1103 1084 +f 1210 1212 1084 +f 1092 1094 1084 +f 1212 1216 1084 +f 1103 1105 1084 +f 1105 1158 1084 +f 1158 1210 1084 +f 1089 1092 1084 +f 1102 1100 1088 +f 1100 1096 1088 +f 1211 1160 1088 +f 1160 1104 1088 +f 1104 1102 1088 +f 1096 1093 1088 +f 1096 1095 1093 +f 1184 1210 1158 +f 1211 1183 1160 +f 1211 1187 1183 +f 1188 1210 1184 +f 1211 1191 1187 +f 1192 1210 1188 +f 1211 1195 1191 +f 1196 1210 1192 +f 1211 1197 1195 +f 1202 1210 1196 +f 1200 1202 1196 +f 1211 1201 1197 +f 1211 1209 1201 +f 1405 1394 1366 +f 1405 1404 1394 +f 1523 1522 1404 +f 1405 1523 1404 +f 1543 1542 1522 +f 1523 1543 1522 +f 1543 1562 1542 +f 1563 1562 1543 +f 1563 1584 1562 +f 1585 1584 1563 +f 1585 1740 1584 +f 1741 1740 1585 +f 1747 1749 1740 +f 1749 1746 1740 +f 1741 1747 1740 +f 1749 1748 1746 +f 1749 1756 1748 +f 1763 1769 1749 +f 1769 1773 1749 +f 1773 1777 1749 +f 1761 1763 1749 +f 1777 1779 1749 +f 1779 1782 1749 +f 1782 1756 1749 +f 1757 1761 1749 +f 1776 1770 1756 +f 1770 1768 1756 +f 1782 1778 1756 +f 1778 1776 1756 +f 1768 1758 1756 +f 1768 1762 1758 +f 1549 1543 1523 +f 1537 1549 1523 +f 1577 1563 1543 +f 1549 1577 1543 +f 1589 1585 1563 +f 1577 1589 1563 +f 1369 1337 1327 +f 1355 1369 1327 +f 1393 1351 1337 +f 1369 1393 1337 +f 1401 1367 1351 +f 1393 1401 1351 +f 1413 1395 1367 +f 1401 1413 1367 +f 1417 1405 1395 +f 1413 1417 1395 +f 1305 1224 1219 +f 1303 1305 1219 +f 1307 1234 1224 +f 1305 1307 1224 +f 1311 1262 1234 +f 1307 1311 1234 +f 1204 1188 1184 +f 1214 1192 1188 +f 1204 1214 1188 +f 1214 1230 1192 +f 1230 1238 1192 +f 1238 1196 1192 +f 1238 1200 1196 +f 1238 1256 1200 +f 1256 1202 1200 +f 1256 1258 1202 +f 1258 1265 1202 +f 1265 1210 1202 +f 1260 1214 1204 +f 1265 1269 1210 +f 1269 1212 1210 +f 1269 1273 1212 +f 1273 1216 1212 +f 1260 1263 1214 +f 1263 1271 1214 +f 1271 1230 1214 +f 1275 1220 1216 +f 1273 1275 1216 +f 1271 1276 1230 +f 1276 1278 1230 +f 1278 1238 1230 +f 1279 1256 1238 +f 1278 1279 1238 +f 1279 1281 1256 +f 1281 1283 1256 +f 1283 1258 1256 +f 1284 1265 1258 +f 1283 1284 1258 +f 1284 1286 1265 +f 1286 1269 1265 +f 1293 1273 1269 +f 1290 1293 1269 +f 1286 1290 1269 +f 1297 1275 1273 +f 1293 1297 1273 +f 1760 1765 1741 +f 1765 1747 1741 +f 1765 1749 1747 +f 1765 1775 1749 +f 1775 1757 1749 +f 1784 1761 1757 +f 1781 1784 1757 +f 1775 1781 1757 +f 1786 1787 1760 +f 1787 1765 1760 +f 1784 1763 1761 +f 1784 1789 1763 +f 1789 1793 1763 +f 1793 1769 1763 +f 1794 1775 1765 +f 1790 1794 1765 +f 1787 1790 1765 +f 1793 1796 1769 +f 1796 1773 1769 +f 1800 1777 1773 +f 1796 1800 1773 +f 1794 1797 1775 +f 1803 1781 1775 +f 1797 1803 1775 +f 1802 1779 1777 +f 1800 1802 1777 +f 1803 1809 1781 +f 1809 1784 1781 +f 1812 1789 1784 +f 1809 1812 1784 +f 1816 1793 1789 +f 1812 1816 1789 +f 1821 1796 1793 +f 1816 1821 1793 +f 1821 1824 1796 +f 1824 1800 1796 +f 1824 1802 1800 +f 1824 1827 1802 +f 1022 1078 1018 +f 1026 1048 1022 +f 1048 1078 1022 +f 1079 1078 1048 +f 970 968 942 +f 970 1059 968 +f 1008 1059 970 +f 836 778 764 +f 836 916 778 +f 892 916 836 +f 732 558 534 +f 645 732 534 +f 732 573 558 +f 726 732 645 +f 509 539 475 +f 477 509 475 +f 539 542 475 +f 542 510 475 +f 510 476 475 +f 510 484 476 +f 485 509 477 +f 543 539 509 +f 559 644 533 +f 572 731 559 +f 731 644 559 +f 731 725 644 +f 777 835 763 +f 915 835 777 +f 915 891 835 +f 967 969 941 +f 1058 969 967 +f 1058 1007 969 +f 1077 1021 1017 +f 1077 1025 1021 +f 1077 1047 1025 +f 1077 1076 1047 +f 1090 1120 1060 +f 1104 1160 1090 +f 1160 1161 1090 +f 1161 1120 1090 +f 1183 1161 1160 +f 1183 1203 1161 +f 1203 1207 1161 +f 1259 1207 1203 +f 1218 1274 1217 +f 1298 1274 1218 +f 1302 1298 1218 +f 1298 1296 1274 +f 1322 1310 1261 +f 1326 1322 1261 +f 1326 1354 1322 +f 1484 1416 1404 +f 1522 1484 1404 +f 1522 1536 1484 +f 1740 1759 1584 +f 1759 1785 1584 +f 1785 1672 1584 +f 1672 1588 1584 +f 1012 1059 1008 +f 1016 1071 1012 +f 1071 1059 1012 +f 1018 1075 1016 +f 1075 1071 1016 +f 1078 1075 1018 +f 906 916 892 +f 920 926 906 +f 926 916 906 +f 928 938 920 +f 938 926 920 +f 936 948 928 +f 948 938 928 +f 942 964 936 +f 964 948 936 +f 968 964 942 +f 738 732 726 +f 738 748 732 +f 752 748 738 +f 752 756 748 +f 764 756 752 +f 764 778 756 +f 731 747 725 +f 747 737 725 +f 747 755 737 +f 755 751 737 +f 755 777 751 +f 777 763 751 +f 915 925 891 +f 925 905 891 +f 925 937 905 +f 937 919 905 +f 937 947 919 +f 947 927 919 +f 947 963 927 +f 963 935 927 +f 963 967 935 +f 967 941 935 +f 1058 1070 1007 +f 1070 1011 1007 +f 1070 1074 1011 +f 1074 1015 1011 +f 1074 1077 1015 +f 1077 1017 1015 +f 1223 1302 1218 +f 1304 1302 1223 +f 1233 1304 1223 +f 1306 1304 1233 +f 1261 1306 1233 +f 1310 1306 1261 +f 1336 1354 1326 +f 1368 1354 1336 +f 1350 1368 1336 +f 1392 1368 1350 +f 1366 1392 1350 +f 1400 1392 1366 +f 1394 1400 1366 +f 1412 1400 1394 +f 1404 1412 1394 +f 1416 1412 1404 +f 1542 1536 1522 +f 1542 1548 1536 +f 1562 1548 1542 +f 1562 1576 1548 +f 1584 1576 1562 +f 1584 1588 1576 +f 511 509 485 +f 486 511 485 +f 488 511 486 +f 489 517 488 +f 517 511 488 +f 490 517 489 +f 523 517 490 +f 492 523 490 +f 526 523 492 +f 496 526 492 +f 497 526 496 +f 535 526 497 +f 501 535 497 +f 540 535 501 +f 505 540 501 +f 546 540 505 +f 513 546 505 +f 511 544 509 +f 544 543 509 +f 548 544 511 +f 517 548 511 +f 524 546 513 +f 523 548 517 +f 551 548 523 +f 526 556 523 +f 556 551 523 +f 534 554 524 +f 554 546 524 +f 560 556 526 +f 535 560 526 +f 558 554 534 +f 540 560 535 +f 563 560 540 +f 546 563 540 +f 569 563 546 +f 554 569 546 +f 570 569 554 +f 558 570 554 +f 573 570 558 +f 1027 1048 1026 +f 1028 1050 1027 +f 1050 1048 1027 +f 1032 1050 1028 +f 1033 1054 1032 +f 1054 1050 1032 +f 1035 1054 1033 +f 1056 1054 1035 +f 1037 1056 1035 +f 1063 1056 1037 +f 1039 1063 1037 +f 1065 1063 1039 +f 1042 1065 1039 +f 1069 1065 1042 +f 1044 1069 1042 +f 1073 1069 1044 +f 1052 1073 1044 +f 1050 1079 1048 +f 1080 1079 1050 +f 1054 1084 1050 +f 1084 1080 1050 +f 1091 1083 1052 +f 1083 1073 1052 +f 1061 1091 1052 +f 1089 1084 1054 +f 1056 1089 1054 +f 1063 1089 1056 +f 1092 1089 1063 +f 1094 1092 1063 +f 1065 1094 1063 +f 1069 1094 1065 +f 1097 1094 1069 +f 1073 1097 1069 +f 1101 1097 1073 +f 1083 1101 1073 +f 1103 1101 1083 +f 1091 1103 1083 +f 1105 1103 1091 +f 1047 1049 1025 +f 1049 1029 1025 +f 1049 1053 1029 +f 1053 1034 1029 +f 1053 1036 1034 +f 1053 1055 1036 +f 1055 1038 1036 +f 1055 1062 1038 +f 1062 1040 1038 +f 1064 1041 1040 +f 1062 1064 1040 +f 1064 1043 1041 +f 1064 1068 1043 +f 1068 1045 1043 +f 1072 1046 1045 +f 1068 1072 1045 +f 1072 1051 1046 +f 1076 1081 1047 +f 1081 1049 1047 +f 1085 1053 1049 +f 1081 1085 1049 +f 1082 1057 1051 +f 1072 1082 1051 +f 1088 1055 1053 +f 1085 1088 1053 +f 1093 1062 1055 +f 1088 1093 1055 +f 1082 1060 1057 +f 1082 1090 1060 +f 1093 1064 1062 +f 1095 1068 1064 +f 1093 1095 1064 +f 1100 1072 1068 +f 1096 1100 1068 +f 1095 1096 1068 +f 1100 1082 1072 +f 1100 1102 1082 +f 1102 1090 1082 +f 1102 1104 1090 +f 510 487 484 +f 518 491 487 +f 510 512 487 +f 512 518 487 +f 518 522 491 +f 522 495 491 +f 522 527 495 +f 527 498 495 +f 527 536 498 +f 536 502 498 +f 541 506 502 +f 536 541 502 +f 541 547 506 +f 547 514 506 +f 542 545 510 +f 545 512 510 +f 545 549 512 +f 549 518 512 +f 547 519 514 +f 550 522 518 +f 549 550 518 +f 547 555 519 +f 555 525 519 +f 557 527 522 +f 550 557 522 +f 555 528 525 +f 557 536 527 +f 559 533 528 +f 555 559 528 +f 561 562 536 +f 562 541 536 +f 557 561 536 +f 562 547 541 +f 562 568 547 +f 568 555 547 +f 572 559 555 +f 571 572 555 +f 568 571 555 +f 1746 1759 1740 +f 1764 1759 1746 +f 1748 1764 1746 +f 1774 1764 1748 +f 1756 1774 1748 +f 1780 1774 1756 +f 1758 1780 1756 +f 1783 1780 1758 +f 1762 1788 1758 +f 1788 1783 1758 +f 1764 1785 1759 +f 1792 1788 1762 +f 1768 1792 1762 +f 1791 1785 1764 +f 1774 1791 1764 +f 1770 1792 1768 +f 1799 1795 1770 +f 1795 1792 1770 +f 1776 1799 1770 +f 1798 1791 1774 +f 1780 1806 1774 +f 1806 1798 1774 +f 1801 1799 1776 +f 1778 1801 1776 +f 1783 1810 1780 +f 1810 1806 1780 +f 1788 1811 1783 +f 1811 1810 1783 +f 1792 1817 1788 +f 1817 1813 1788 +f 1813 1811 1788 +f 1795 1820 1792 +f 1820 1817 1792 +f 1823 1822 1795 +f 1822 1820 1795 +f 1799 1823 1795 +f 1801 1826 1799 +f 1826 1825 1799 +f 1825 1823 1799 +f 1187 1203 1183 +f 1213 1203 1187 +f 1191 1213 1187 +f 1229 1213 1191 +f 1195 1229 1191 +f 1237 1229 1195 +f 1197 1237 1195 +f 1255 1237 1197 +f 1201 1257 1197 +f 1257 1255 1197 +f 1209 1257 1201 +f 1270 1259 1203 +f 1213 1270 1203 +f 1211 1268 1209 +f 1264 1257 1209 +f 1268 1264 1209 +f 1272 1268 1211 +f 1215 1272 1211 +f 1229 1270 1213 +f 1217 1272 1215 +f 1274 1272 1217 +f 1237 1277 1229 +f 1277 1270 1229 +f 1255 1280 1237 +f 1280 1277 1237 +f 1257 1282 1255 +f 1282 1280 1255 +f 1264 1285 1257 +f 1285 1282 1257 +f 1287 1285 1264 +f 1268 1287 1264 +f 1292 1291 1268 +f 1272 1292 1268 +f 1291 1287 1268 +f 1294 1292 1272 +f 1295 1294 1272 +f 1274 1295 1272 +f 1296 1295 1274 + + +o Object.2 +v -81.000000 82.725029 -1.277139 +v 81.000000 82.725029 -1.277139 +v -81.625740 82.675781 -1.277139 +v 81.625740 82.675781 -1.277139 +v -82.236069 82.529259 -1.277140 +v 82.236069 82.529259 -1.277140 +v -82.815964 82.289063 -1.277140 +v 82.815964 82.289063 -1.277140 +v -83.351143 81.961098 -1.277141 +v 83.351143 81.961098 -1.277141 +v -83.828430 81.553459 -1.277142 +v 83.828430 81.553459 -1.277142 +v -84.236069 81.076172 -1.277143 +v 84.236069 81.076172 -1.277143 +v -84.564034 80.540993 -1.277144 +v 84.564034 80.540993 -1.277144 +v -84.804230 79.961098 -1.277146 +v 84.804230 79.961098 -1.277146 +v -84.950752 79.350769 -1.277147 +v 84.950752 79.350769 -1.277147 +v -85.000000 78.725029 -1.277149 +v 85.000000 78.725029 -1.277149 +v -13.500000 -82.375031 -1.277525 +v 13.500000 -82.375031 -1.277525 +v -13.730430 -82.394119 -1.277525 +v -13.269570 -82.394119 -1.277525 +v 13.269570 -82.394119 -1.277525 +v 13.730430 -82.394119 -1.277525 +v -13.954580 -82.450890 -1.277525 +v -13.045420 -82.450890 -1.277525 +v 13.045420 -82.450890 -1.277525 +v 13.954580 -82.450890 -1.277525 +v -14.166330 -82.543762 -1.277526 +v -12.833670 -82.543762 -1.277526 +v 12.833670 -82.543762 -1.277526 +v 14.166330 -82.543762 -1.277526 +v -14.359900 -82.670242 -1.277526 +v -12.640100 -82.670242 -1.277526 +v 12.640100 -82.670242 -1.277526 +v 14.359900 -82.670242 -1.277526 +v -14.530010 -82.826836 -1.277526 +v -12.469990 -82.826836 -1.277526 +v 12.469990 -82.826836 -1.277526 +v 14.530010 -82.826836 -1.277526 +v -14.672030 -83.009315 -1.277527 +v -12.327970 -83.009315 -1.277527 +v 12.327970 -83.009315 -1.277527 +v 14.672030 -83.009315 -1.277527 +v -14.782080 -83.212654 -1.277527 +v -12.217920 -83.212654 -1.277527 +v 12.217920 -83.212654 -1.277527 +v 14.782080 -83.212654 -1.277527 +v -85.000000 -83.275032 -1.277527 +v 85.000000 -83.275032 -1.277527 +v -14.857160 -83.431351 -1.277528 +v -12.142840 -83.431351 -1.277528 +v 12.142840 -83.431351 -1.277528 +v 14.857160 -83.431351 -1.277528 +v -14.895220 -83.659424 -1.277528 +v -12.104780 -83.659424 -1.277528 +v 12.104780 -83.659424 -1.277528 +v 14.895220 -83.659424 -1.277528 +v -14.895220 -83.890640 -1.277529 +v -12.104780 -83.890640 -1.277529 +v 12.104780 -83.890640 -1.277529 +v 14.895220 -83.890640 -1.277529 +v -84.950752 -83.900772 -1.277529 +v 84.950752 -83.900772 -1.277529 +v -14.857160 -84.118713 -1.277529 +v -12.142840 -84.118713 -1.277529 +v 12.142840 -84.118713 -1.277529 +v 14.857160 -84.118713 -1.277529 +v -14.782080 -84.337402 -1.277530 +v -12.217920 -84.337402 -1.277530 +v 12.217920 -84.337402 -1.277530 +v 14.782080 -84.337402 -1.277530 +v -84.804230 -84.511101 -1.277530 +v 84.804230 -84.511101 -1.277530 +v -14.672030 -84.540749 -1.277530 +v -12.327970 -84.540749 -1.277530 +v 12.327970 -84.540749 -1.277530 +v 14.672030 -84.540749 -1.277530 +v -14.530010 -84.723221 -1.277531 +v -12.469990 -84.723221 -1.277531 +v 12.469990 -84.723221 -1.277531 +v 14.530010 -84.723221 -1.277531 +v -14.359900 -84.879829 -1.277531 +v -12.640100 -84.879829 -1.277531 +v 12.640100 -84.879829 -1.277531 +v 14.359900 -84.879829 -1.277531 +v -14.166330 -85.006294 -1.277531 +v -12.833670 -85.006294 -1.277531 +v 12.833670 -85.006294 -1.277531 +v 14.166330 -85.006294 -1.277531 +v -84.564034 -85.090996 -1.277532 +v 84.564034 -85.090996 -1.277532 +v -13.954580 -85.099174 -1.277532 +v -13.045420 -85.099174 -1.277532 +v 13.045420 -85.099174 -1.277532 +v 13.954580 -85.099174 -1.277532 +v -13.730430 -85.155945 -1.277532 +v -13.269570 -85.155945 -1.277532 +v 13.269570 -85.155945 -1.277532 +v 13.730430 -85.155945 -1.277532 +v -13.500000 -85.175034 -1.277532 +v 13.500000 -85.175034 -1.277532 +v -84.236069 -85.626175 -1.277533 +v 84.236069 -85.626175 -1.277533 +v -83.828430 -86.103462 -1.277534 +v 83.828430 -86.103462 -1.277534 +v -83.351143 -86.511101 -1.277535 +v 83.351143 -86.511101 -1.277535 +v -82.815964 -86.839066 -1.277536 +v 82.815964 -86.839066 -1.277536 +v -82.236069 -87.079262 -1.277536 +v 82.236069 -87.079262 -1.277536 +v -81.625740 -87.225784 -1.277537 +v 81.625740 -87.225784 -1.277537 +v -81.000000 -87.275032 -1.277537 +v 81.000000 -87.275032 -1.277537 +v -81.000000 82.725029 -0.277139 +v 81.000000 82.725029 -0.277139 +v -81.625740 82.675781 -0.277139 +v 81.625740 82.675781 -0.277139 +v -82.236069 82.529259 -0.277139 +v 82.236069 82.529259 -0.277139 +v -82.815964 82.289063 -0.277140 +v 82.815964 82.289063 -0.277140 +v -83.351143 81.961098 -0.277141 +v 83.351143 81.961098 -0.277141 +v -83.828430 81.553459 -0.277142 +v 83.828430 81.553459 -0.277142 +v -84.236069 81.076172 -0.277143 +v 84.236069 81.076172 -0.277143 +v -84.564034 80.540993 -0.277144 +v 84.564034 80.540993 -0.277144 +v -84.804230 79.961098 -0.277145 +v 84.804230 79.961098 -0.277145 +v -84.950752 79.350769 -0.277147 +v 84.950752 79.350769 -0.277147 +v -85.000000 78.725029 -0.277148 +v 85.000000 78.725029 -0.277148 +v -13.500000 -82.375031 -0.277525 +v 13.500000 -82.375031 -0.277525 +v -13.730430 -82.394119 -0.277525 +v -13.269570 -82.394119 -0.277525 +v 13.269570 -82.394119 -0.277525 +v 13.730430 -82.394119 -0.277525 +v -13.954580 -82.450890 -0.277525 +v -13.045420 -82.450890 -0.277525 +v 13.045420 -82.450890 -0.277525 +v 13.954580 -82.450890 -0.277525 +v -14.166330 -82.543762 -0.277525 +v -12.833670 -82.543762 -0.277525 +v 12.833670 -82.543762 -0.277525 +v 14.166330 -82.543762 -0.277525 +v -14.359900 -82.670242 -0.277525 +v -12.640100 -82.670242 -0.277525 +v 12.640100 -82.670242 -0.277525 +v 14.359900 -82.670242 -0.277525 +v -14.530010 -82.826836 -0.277526 +v -12.469990 -82.826836 -0.277526 +v 12.469990 -82.826836 -0.277526 +v 14.530010 -82.826836 -0.277526 +v -14.672030 -83.009315 -0.277526 +v -12.327970 -83.009315 -0.277526 +v 12.327970 -83.009315 -0.277526 +v 14.672030 -83.009315 -0.277526 +v -14.782080 -83.212654 -0.277527 +v -12.217920 -83.212654 -0.277527 +v 12.217920 -83.212654 -0.277527 +v 14.782080 -83.212654 -0.277527 +v -85.000000 -83.275032 -0.277527 +v 85.000000 -83.275032 -0.277527 +v -14.857160 -83.431351 -0.277527 +v -12.142840 -83.431351 -0.277527 +v 12.142840 -83.431351 -0.277527 +v 14.857160 -83.431351 -0.277527 +v -14.895220 -83.659424 -0.277528 +v -12.104780 -83.659424 -0.277528 +v 12.104780 -83.659424 -0.277528 +v 14.895220 -83.659424 -0.277528 +v -14.895220 -83.890640 -0.277528 +v -12.104780 -83.890640 -0.277528 +v 12.104780 -83.890640 -0.277528 +v 14.895220 -83.890640 -0.277528 +v -84.950752 -83.900772 -0.277528 +v 84.950752 -83.900772 -0.277528 +v -14.857160 -84.118713 -0.277529 +v -12.142840 -84.118713 -0.277529 +v 12.142840 -84.118713 -0.277529 +v 14.857160 -84.118713 -0.277529 +v -14.782080 -84.337402 -0.277529 +v -12.217920 -84.337402 -0.277529 +v 12.217920 -84.337402 -0.277529 +v 14.782080 -84.337402 -0.277529 +v -84.804230 -84.511101 -0.277530 +v 84.804230 -84.511101 -0.277530 +v -14.672030 -84.540749 -0.277530 +v -12.327970 -84.540749 -0.277530 +v 12.327970 -84.540749 -0.277530 +v 14.672030 -84.540749 -0.277530 +v -14.530010 -84.723221 -0.277530 +v -12.469990 -84.723221 -0.277530 +v 12.469990 -84.723221 -0.277530 +v 14.530010 -84.723221 -0.277530 +v -14.359900 -84.879829 -0.277531 +v -12.640100 -84.879829 -0.277531 +v 12.640100 -84.879829 -0.277531 +v 14.359900 -84.879829 -0.277531 +v -14.166330 -85.006294 -0.277531 +v -12.833670 -85.006294 -0.277531 +v 12.833670 -85.006294 -0.277531 +v 14.166330 -85.006294 -0.277531 +v -84.564034 -85.090996 -0.277531 +v 84.564034 -85.090996 -0.277531 +v -13.954580 -85.099174 -0.277531 +v -13.045420 -85.099174 -0.277531 +v 13.045420 -85.099174 -0.277531 +v 13.954580 -85.099174 -0.277531 +v -13.730430 -85.155945 -0.277531 +v -13.269570 -85.155945 -0.277531 +v 13.269570 -85.155945 -0.277531 +v 13.730430 -85.155945 -0.277531 +v -13.500000 -85.175034 -0.277531 +v 13.500000 -85.175034 -0.277531 +v -84.236069 -85.626175 -0.277532 +v 84.236069 -85.626175 -0.277532 +v -83.828430 -86.103462 -0.277533 +v 83.828430 -86.103462 -0.277533 +v -83.351143 -86.511101 -0.277534 +v 83.351143 -86.511101 -0.277534 +v -82.815964 -86.839066 -0.277535 +v 82.815964 -86.839066 -0.277535 +v -82.236069 -87.079262 -0.277536 +v 82.236069 -87.079262 -0.277536 +v -81.625740 -87.225784 -0.277536 +v 81.625740 -87.225784 -0.277536 +v -81.000000 -87.275032 -0.277536 +v 81.000000 -87.275032 -0.277536 + +f 2500 2496 2376 +f 2380 2500 2376 +f 2504 2500 2380 +f 2384 2504 2380 +f 2508 2504 2384 +f 2388 2508 2384 +f 2512 2508 2388 +f 2392 2512 2388 +f 2516 2512 2392 +f 2396 2516 2392 +f 2520 2516 2396 +f 2400 2520 2396 +f 2524 2520 2400 +f 2404 2524 2400 +f 2530 2524 2404 +f 2410 2530 2404 +f 2534 2530 2410 +f 2414 2534 2410 +f 2538 2534 2414 +f 2418 2538 2414 +f 2544 2538 2418 +f 2424 2544 2418 +f 2548 2544 2424 +f 2428 2548 2424 +f 2554 2548 2428 +f 2434 2554 2428 +f 2558 2554 2434 +f 2438 2558 2434 +f 2562 2558 2438 +f 2442 2562 2438 +f 2566 2562 2442 +f 2446 2566 2442 +f 2572 2566 2446 +f 2452 2572 2446 +f 2576 2572 2452 +f 2456 2576 2452 +f 2578 2576 2456 +f 2458 2578 2456 +f 2498 2495 2375 +f 2378 2498 2375 +f 2502 2498 2378 +f 2382 2502 2378 +f 2506 2502 2382 +f 2386 2506 2382 +f 2510 2506 2386 +f 2390 2510 2386 +f 2514 2510 2390 +f 2394 2514 2390 +f 2518 2514 2394 +f 2398 2518 2394 +f 2522 2518 2398 +f 2402 2522 2398 +f 2528 2522 2402 +f 2408 2528 2402 +f 2532 2528 2408 +f 2412 2532 2408 +f 2536 2532 2412 +f 2416 2536 2412 +f 2542 2536 2416 +f 2422 2542 2416 +f 2546 2542 2422 +f 2426 2546 2422 +f 2552 2546 2426 +f 2432 2552 2426 +f 2556 2552 2432 +f 2436 2556 2432 +f 2560 2556 2436 +f 2440 2560 2436 +f 2564 2560 2440 +f 2444 2564 2440 +f 2570 2564 2444 +f 2450 2570 2444 +f 2574 2570 2450 +f 2454 2574 2450 +f 2577 2574 2454 +f 2457 2577 2454 +f 2476 2356 2354 +f 2474 2476 2354 +f 2478 2358 2356 +f 2476 2478 2356 +f 2480 2360 2358 +f 2478 2480 2358 +f 2482 2362 2360 +f 2480 2482 2360 +f 2484 2364 2362 +f 2482 2484 2362 +f 2486 2366 2364 +f 2484 2486 2364 +f 2488 2368 2366 +f 2486 2488 2366 +f 2490 2370 2368 +f 2488 2490 2368 +f 2492 2372 2370 +f 2490 2492 2370 +f 2494 2374 2372 +f 2492 2494 2372 +f 2540 2420 2406 +f 2526 2540 2406 +f 2550 2430 2420 +f 2540 2550 2420 +f 2568 2448 2430 +f 2550 2568 2430 +f 2580 2460 2448 +f 2568 2580 2448 +f 2582 2462 2460 +f 2580 2582 2460 +f 2584 2464 2462 +f 2582 2584 2462 +f 2586 2466 2464 +f 2584 2586 2464 +f 2588 2468 2466 +f 2586 2588 2466 +f 2590 2470 2468 +f 2588 2590 2468 +f 2592 2472 2470 +f 2590 2592 2470 +f 2419 2525 2405 +f 2429 2539 2419 +f 2539 2525 2419 +f 2447 2549 2429 +f 2549 2539 2429 +f 2459 2567 2447 +f 2567 2549 2447 +f 2461 2579 2459 +f 2579 2567 2459 +f 2463 2581 2461 +f 2581 2579 2461 +f 2465 2583 2463 +f 2583 2581 2463 +f 2467 2585 2465 +f 2585 2583 2465 +f 2469 2587 2467 +f 2587 2585 2467 +f 2471 2589 2469 +f 2589 2587 2469 +f 2591 2589 2471 +f 2355 2473 2353 +f 2475 2473 2355 +f 2357 2475 2355 +f 2477 2475 2357 +f 2359 2477 2357 +f 2479 2477 2359 +f 2361 2479 2359 +f 2481 2479 2361 +f 2363 2481 2361 +f 2483 2481 2363 +f 2365 2483 2363 +f 2485 2483 2365 +f 2367 2485 2365 +f 2487 2485 2367 +f 2369 2487 2367 +f 2489 2487 2369 +f 2371 2489 2369 +f 2491 2489 2371 +f 2373 2491 2371 +f 2493 2491 2373 +f 2499 2474 2473 +f 2475 2507 2473 +f 2507 2503 2473 +f 2503 2499 2473 +f 2499 2496 2474 +f 2496 2500 2474 +f 2500 2476 2474 +f 2477 2507 2475 +f 2500 2478 2476 +f 2479 2507 2477 +f 2500 2480 2478 +f 2481 2507 2479 +f 2500 2482 2480 +f 2483 2507 2481 +f 2500 2484 2482 +f 2485 2507 2483 +f 2500 2486 2484 +f 2487 2507 2485 +f 2500 2488 2486 +f 2489 2507 2487 +f 2500 2490 2488 +f 2491 2507 2489 +f 2500 2492 2490 +f 2493 2511 2491 +f 2511 2507 2491 +f 2500 2494 2492 +f 2513 2509 2493 +f 2497 2495 2493 +f 2531 2527 2493 +f 2527 2521 2493 +f 2521 2517 2493 +f 2517 2513 2493 +f 2525 2541 2493 +f 2541 2535 2493 +f 2535 2531 2493 +f 2509 2505 2493 +f 2505 2501 2493 +f 2501 2497 2493 +f 2495 2498 2493 +f 2498 2511 2493 +f 2504 2508 2494 +f 2508 2512 2494 +f 2512 2526 2494 +f 2500 2504 2494 +f 2502 2511 2498 +f 2506 2511 2502 +f 2510 2511 2506 +f 2515 2511 2510 +f 2519 2515 2510 +f 2514 2519 2510 +f 2516 2526 2512 +f 2518 2519 2514 +f 2592 2526 2516 +f 2520 2592 2516 +f 2523 2519 2518 +f 2529 2523 2518 +f 2522 2529 2518 +f 2524 2592 2520 +f 2528 2529 2522 +f 2530 2592 2524 +f 2569 2563 2525 +f 2563 2559 2525 +f 2559 2555 2525 +f 2555 2551 2525 +f 2539 2591 2525 +f 2591 2573 2525 +f 2573 2569 2525 +f 2551 2545 2525 +f 2545 2541 2525 +f 2592 2590 2526 +f 2590 2588 2526 +f 2588 2586 2526 +f 2586 2584 2526 +f 2584 2582 2526 +f 2582 2580 2526 +f 2580 2540 2526 +f 2533 2529 2528 +f 2532 2533 2528 +f 2534 2592 2530 +f 2537 2533 2532 +f 2536 2537 2532 +f 2538 2592 2534 +f 2542 2537 2536 +f 2542 2543 2537 +f 2544 2592 2538 +f 2549 2591 2539 +f 2580 2550 2540 +f 2546 2543 2542 +f 2560 2547 2543 +f 2556 2560 2543 +f 2546 2552 2543 +f 2552 2556 2543 +f 2548 2592 2544 +f 2560 2553 2547 +f 2554 2592 2548 +f 2567 2591 2549 +f 2580 2568 2550 +f 2560 2557 2553 +f 2558 2592 2554 +f 2560 2561 2557 +f 2562 2592 2558 +f 2564 2561 2560 +f 2570 2574 2561 +f 2591 2565 2561 +f 2577 2591 2561 +f 2574 2577 2561 +f 2564 2570 2561 +f 2566 2592 2562 +f 2591 2571 2565 +f 2572 2592 2566 +f 2579 2591 2567 +f 2591 2575 2571 +f 2576 2592 2572 +f 2591 2577 2573 +f 2591 2578 2575 +f 2578 2592 2576 +f 2591 2592 2578 +f 2581 2591 2579 +f 2583 2591 2581 +f 2585 2587 2583 +f 2589 2591 2583 +f 2587 2589 2583 +f 2472 2591 2471 +f 2592 2591 2472 +f 2526 2406 2374 +f 2494 2526 2374 +f 2473 2474 2353 +f 2474 2354 2353 +f 2405 2493 2373 +f 2525 2493 2405 +f 2375 2355 2353 +f 2378 2375 2353 +f 2382 2378 2353 +f 2354 2390 2353 +f 2390 2386 2353 +f 2386 2382 2353 +f 2380 2376 2354 +f 2394 2390 2354 +f 2376 2402 2354 +f 2402 2398 2354 +f 2398 2394 2354 +f 2356 2388 2354 +f 2388 2384 2354 +f 2384 2380 2354 +f 2375 2357 2355 +f 2358 2388 2356 +f 2375 2359 2357 +f 2360 2388 2358 +f 2375 2361 2359 +f 2362 2388 2360 +f 2375 2363 2361 +f 2364 2388 2362 +f 2375 2365 2363 +f 2366 2388 2364 +f 2375 2367 2365 +f 2368 2388 2366 +f 2375 2369 2367 +f 2370 2388 2368 +f 2375 2371 2369 +f 2372 2388 2370 +f 2375 2373 2371 +f 2374 2392 2372 +f 2392 2388 2372 +f 2377 2381 2373 +f 2375 2377 2373 +f 2381 2385 2373 +f 2385 2389 2373 +f 2389 2405 2373 +f 2406 2410 2374 +f 2410 2404 2374 +f 2404 2400 2374 +f 2400 2396 2374 +f 2396 2392 2374 +f 2379 2412 2376 +f 2412 2408 2376 +f 2408 2402 2376 +f 2383 2440 2379 +f 2440 2436 2379 +f 2436 2432 2379 +f 2432 2426 2379 +f 2426 2422 2379 +f 2422 2416 2379 +f 2416 2412 2379 +f 2387 2440 2383 +f 2391 2440 2387 +f 2393 2405 2389 +f 2444 2440 2391 +f 2395 2454 2391 +f 2454 2450 2391 +f 2450 2444 2391 +f 2471 2405 2393 +f 2397 2471 2393 +f 2399 2454 2395 +f 2401 2471 2397 +f 2403 2454 2399 +f 2407 2471 2401 +f 2457 2454 2403 +f 2409 2457 2403 +f 2471 2469 2405 +f 2469 2467 2405 +f 2467 2465 2405 +f 2465 2463 2405 +f 2463 2461 2405 +f 2461 2459 2405 +f 2459 2419 2405 +f 2414 2410 2406 +f 2420 2472 2406 +f 2472 2418 2406 +f 2418 2414 2406 +f 2411 2471 2407 +f 2413 2457 2409 +f 2415 2471 2411 +f 2417 2457 2413 +f 2421 2471 2415 +f 2423 2457 2417 +f 2472 2424 2418 +f 2459 2429 2419 +f 2430 2472 2420 +f 2425 2471 2421 +f 2427 2457 2423 +f 2472 2428 2424 +f 2431 2471 2425 +f 2433 2457 2427 +f 2472 2434 2428 +f 2459 2447 2429 +f 2448 2472 2430 +f 2435 2471 2431 +f 2437 2457 2433 +f 2472 2438 2434 +f 2439 2471 2435 +f 2441 2457 2437 +f 2472 2442 2438 +f 2443 2471 2439 +f 2471 2457 2441 +f 2445 2471 2441 +f 2472 2446 2442 +f 2449 2471 2443 +f 2451 2471 2445 +f 2472 2452 2446 +f 2460 2472 2448 +f 2453 2471 2449 +f 2455 2471 2451 +f 2472 2456 2452 +f 2457 2471 2453 +f 2458 2471 2455 +f 2472 2458 2456 +f 2472 2471 2458 +f 2462 2472 2460 +f 2464 2472 2462 +f 2466 2468 2464 +f 2470 2472 2464 +f 2468 2470 2464 +f 2495 2377 2375 +f 2497 2381 2377 +f 2495 2497 2377 +f 2501 2385 2381 +f 2497 2501 2381 +f 2505 2389 2385 +f 2501 2505 2385 +f 2509 2393 2389 +f 2505 2509 2389 +f 2513 2397 2393 +f 2509 2513 2393 +f 2517 2401 2397 +f 2513 2517 2397 +f 2521 2407 2401 +f 2517 2521 2401 +f 2527 2411 2407 +f 2521 2527 2407 +f 2531 2415 2411 +f 2527 2531 2411 +f 2535 2421 2415 +f 2531 2535 2415 +f 2541 2425 2421 +f 2535 2541 2421 +f 2545 2431 2425 +f 2541 2545 2425 +f 2551 2435 2431 +f 2545 2551 2431 +f 2555 2439 2435 +f 2551 2555 2435 +f 2559 2443 2439 +f 2555 2559 2439 +f 2563 2449 2443 +f 2559 2563 2443 +f 2569 2453 2449 +f 2563 2569 2449 +f 2573 2457 2453 +f 2569 2573 2453 +f 2573 2577 2457 +f 2496 2379 2376 +f 2499 2383 2379 +f 2496 2499 2379 +f 2503 2387 2383 +f 2499 2503 2383 +f 2507 2391 2387 +f 2503 2507 2387 +f 2511 2395 2391 +f 2507 2511 2391 +f 2515 2399 2395 +f 2511 2515 2395 +f 2519 2403 2399 +f 2515 2519 2399 +f 2523 2409 2403 +f 2519 2523 2403 +f 2529 2413 2409 +f 2523 2529 2409 +f 2533 2417 2413 +f 2529 2533 2413 +f 2537 2423 2417 +f 2533 2537 2417 +f 2543 2427 2423 +f 2537 2543 2423 +f 2547 2433 2427 +f 2543 2547 2427 +f 2553 2437 2433 +f 2547 2553 2433 +f 2557 2441 2437 +f 2553 2557 2437 +f 2561 2445 2441 +f 2557 2561 2441 +f 2565 2451 2445 +f 2561 2565 2445 +f 2571 2455 2451 +f 2565 2571 2451 +f 2575 2458 2455 +f 2571 2575 2455 +f 2575 2578 2458 + + +o Object.3 +v -8.250000 -87.525024 -9.377541 +v 8.250000 -87.525024 -9.377541 +v -8.268822 -87.525909 -9.377541 +v 8.268822 -87.525909 -9.377541 +v -8.302774 -87.532112 -9.377541 +v 8.302774 -87.532112 -9.377541 +v -8.335155 -87.544060 -9.377541 +v 8.335155 -87.544060 -9.377541 +v -8.365001 -87.561394 -9.377541 +v 8.365001 -87.561394 -9.377541 +v -8.391421 -87.583603 -9.377541 +v 8.391421 -87.583603 -9.377541 +v -8.413630 -87.610023 -9.377541 +v 8.413630 -87.610023 -9.377541 +v -8.430965 -87.639870 -9.377541 +v 8.430965 -87.639870 -9.377541 +v -8.442911 -87.672249 -9.377541 +v 8.442911 -87.672249 -9.377541 +v -8.449112 -87.706200 -9.377541 +v 8.449112 -87.706200 -9.377541 +v -8.450000 -87.725021 -9.377541 +v 8.450000 -87.725021 -9.377541 +v -8.446894 -87.790901 -9.377541 +v 8.446894 -87.790901 -9.377541 +v -8.425190 -87.909737 -9.377541 +v 8.425190 -87.909737 -9.377541 +v -8.383379 -88.023071 -9.377542 +v 8.383379 -88.023071 -9.377542 +v -8.322704 -88.127525 -9.377542 +v 8.322704 -88.127525 -9.377542 +v -8.244974 -88.220001 -9.377542 +v 8.244974 -88.220001 -9.377542 +v -8.152504 -88.297729 -9.377542 +v 8.152504 -88.297729 -9.377542 +v -8.048045 -88.358398 -9.377542 +v 8.048045 -88.358398 -9.377542 +v -7.934711 -88.400215 -9.377542 +v 7.934711 -88.400215 -9.377542 +v -7.815876 -88.421921 -9.377542 +v 7.815876 -88.421921 -9.377542 +v -7.750000 -88.425026 -9.377542 +v 7.750000 -88.425026 -9.377542 +v -8.466649 -87.725021 -9.377078 +v 8.466649 -87.725021 -9.377078 +v -8.463468 -87.792465 -9.377079 +v 8.463468 -87.792465 -9.377079 +v -8.441249 -87.914124 -9.377079 +v 8.441249 -87.914124 -9.377079 +v -8.398442 -88.030159 -9.377079 +v 8.398442 -88.030159 -9.377079 +v -8.336326 -88.137100 -9.377079 +v 8.336326 -88.137100 -9.377079 +v -8.256747 -88.231773 -9.377080 +v 8.256747 -88.231773 -9.377080 +v -8.162077 -88.311348 -9.377080 +v 8.162077 -88.311348 -9.377080 +v -8.055134 -88.373466 -9.377080 +v 8.055134 -88.373466 -9.377080 +v -7.939104 -88.416275 -9.377080 +v 7.939105 -88.416275 -9.377080 +v -7.817441 -88.438492 -9.377080 +v 7.817442 -88.438492 -9.377080 +v -7.750000 -88.441673 -9.377080 +v 7.750000 -88.441673 -9.377080 +v -8.250000 -87.478096 -9.373846 +v 8.250000 -87.478096 -9.373846 +v -7.750000 -88.471954 -9.373848 +v 7.750000 -88.471954 -9.373848 +v -8.250000 -87.474281 -9.373217 +v 8.250000 -87.474281 -9.373217 +v -8.273597 -87.475388 -9.373217 +v 8.273597 -87.475388 -9.373217 +v -8.316165 -87.483162 -9.373217 +v 8.316165 -87.483162 -9.373217 +v -8.356762 -87.498138 -9.373217 +v 8.356762 -87.498138 -9.373217 +v -8.394180 -87.519875 -9.373217 +v 8.394180 -87.519875 -9.373217 +v -8.427304 -87.547722 -9.373217 +v 8.427304 -87.547722 -9.373217 +v -8.455147 -87.580841 -9.373218 +v 8.455147 -87.580841 -9.373218 +v -8.476881 -87.618263 -9.373218 +v 8.476881 -87.618263 -9.373218 +v -8.491858 -87.658859 -9.373218 +v 8.491858 -87.658859 -9.373218 +v -8.499633 -87.701424 -9.373218 +v 8.499633 -87.701424 -9.373218 +v -8.500746 -87.725021 -9.373218 +v 8.500746 -87.725021 -9.373218 +v -8.518400 -87.725021 -9.369638 +v 8.518400 -87.725021 -9.369638 +v -8.514990 -87.797333 -9.369638 +v 8.514990 -87.797333 -9.369638 +v -8.491166 -87.927780 -9.369638 +v 8.491166 -87.927780 -9.369638 +v -8.445270 -88.052193 -9.369639 +v 8.445270 -88.052193 -9.369639 +v -8.378667 -88.166855 -9.369639 +v 8.378667 -88.166855 -9.369639 +v -8.293341 -88.268364 -9.369639 +v 8.293341 -88.268364 -9.369639 +v -8.191834 -88.353691 -9.369640 +v 8.191834 -88.353691 -9.369640 +v -8.077168 -88.420288 -9.369640 +v 8.077168 -88.420288 -9.369640 +v -7.952760 -88.466187 -9.369640 +v 7.952761 -88.466187 -9.369640 +v -7.822311 -88.490013 -9.369640 +v 7.822312 -88.490013 -9.369640 +v -7.750000 -88.493423 -9.369640 +v 7.750000 -88.493423 -9.369640 +v -8.250000 -87.432320 -9.362857 +v 8.250000 -87.432320 -9.362857 +v -7.750000 -88.517731 -9.362860 +v 7.750000 -88.517731 -9.362860 +v -8.250000 -87.424995 -9.360373 +v 8.250000 -87.424995 -9.360373 +v -8.278234 -87.426323 -9.360373 +v 8.278234 -87.426323 -9.360373 +v -8.329170 -87.435631 -9.360373 +v 8.329170 -87.435631 -9.360373 +v -8.377746 -87.453552 -9.360373 +v 8.377746 -87.453552 -9.360373 +v -8.422518 -87.479553 -9.360373 +v 8.422518 -87.479553 -9.360373 +v -8.462152 -87.512871 -9.360373 +v 8.462152 -87.512871 -9.360373 +v -8.495469 -87.552505 -9.360373 +v 8.495469 -87.552505 -9.360373 +v -8.521474 -87.597275 -9.360373 +v 8.521474 -87.597275 -9.360373 +v -8.539394 -87.645851 -9.360373 +v 8.539394 -87.645851 -9.360373 +v -8.548697 -87.696785 -9.360373 +v 8.548697 -87.696785 -9.360373 +v -8.550028 -87.725021 -9.360373 +v 8.550028 -87.725021 -9.360373 +v -8.568074 -87.725021 -9.353328 +v 8.568074 -87.725021 -9.353328 +v -8.564445 -87.802010 -9.353328 +v 8.564445 -87.802010 -9.353328 +v -8.539081 -87.940887 -9.353328 +v 8.539081 -87.940887 -9.353328 +v -8.490216 -88.073341 -9.353329 +v 8.490216 -88.073341 -9.353329 +v -8.419308 -88.195419 -9.353329 +v 8.419308 -88.195419 -9.353329 +v -8.328466 -88.303490 -9.353329 +v 8.328466 -88.303490 -9.353329 +v -8.220398 -88.394333 -9.353329 +v 8.220398 -88.394333 -9.353329 +v -8.098319 -88.465240 -9.353329 +v 8.098319 -88.465240 -9.353329 +v -7.965868 -88.514107 -9.353330 +v 7.965868 -88.514107 -9.353330 +v -7.826988 -88.539467 -9.353330 +v 7.826989 -88.539467 -9.353330 +v -7.750000 -88.543098 -9.353330 +v 7.750000 -88.543098 -9.353330 +v -8.250000 -87.388824 -9.344842 +v 8.250000 -87.388824 -9.344842 +v -7.750000 -88.561218 -9.344845 +v 7.750000 -88.561218 -9.344845 +v -8.250000 -87.378593 -9.339376 +v 8.250000 -87.378593 -9.339376 +v -8.282602 -87.380135 -9.339376 +v 8.282602 -87.380135 -9.339376 +v -8.341413 -87.390869 -9.339376 +v 8.341413 -87.390869 -9.339376 +v -8.397502 -87.411568 -9.339376 +v 8.397502 -87.411568 -9.339376 +v -8.449199 -87.441589 -9.339376 +v 8.449199 -87.441589 -9.339376 +v -8.494962 -87.480064 -9.339376 +v 8.494962 -87.480064 -9.339376 +v -8.533430 -87.525826 -9.339377 +v 8.533430 -87.525826 -9.339377 +v -8.563458 -87.577522 -9.339377 +v 8.563458 -87.577522 -9.339377 +v -8.584150 -87.633614 -9.339377 +v 8.584150 -87.633614 -9.339377 +v -8.594891 -87.692421 -9.339377 +v 8.594891 -87.692421 -9.339377 +v -8.596429 -87.725021 -9.339377 +v 8.596429 -87.725021 -9.339377 +v -8.614162 -87.725021 -9.328639 +v 8.614162 -87.725021 -9.328639 +v -8.610328 -87.806351 -9.328640 +v 8.610328 -87.806351 -9.328640 +v -8.583534 -87.953056 -9.328640 +v 8.583534 -87.953056 -9.328640 +v -8.531918 -88.092964 -9.328640 +v 8.531918 -88.092964 -9.328640 +v -8.457015 -88.221924 -9.328641 +v 8.457015 -88.221924 -9.328641 +v -8.361055 -88.336082 -9.328641 +v 8.361055 -88.336082 -9.328641 +v -8.246899 -88.432037 -9.328641 +v 8.246899 -88.432037 -9.328641 +v -8.117943 -88.506943 -9.328641 +v 8.117943 -88.506943 -9.328641 +v -7.978030 -88.558556 -9.328642 +v 7.978031 -88.558556 -9.328642 +v -7.831325 -88.585350 -9.328642 +v 7.831326 -88.585350 -9.328642 +v -7.750000 -88.589188 -9.328642 +v 7.750000 -88.589188 -9.328642 +v -8.250000 -87.348686 -9.320245 +v 8.250000 -87.348686 -9.320245 +v -7.750000 -88.601357 -9.320248 +v 7.750000 -88.601357 -9.320248 +v -8.250000 -87.336411 -9.310835 +v 8.250000 -87.336411 -9.310835 +v -8.286572 -87.338142 -9.310835 +v 8.286572 -87.338142 -9.310835 +v -8.352543 -87.350189 -9.310835 +v 8.352543 -87.350189 -9.310835 +v -8.415462 -87.373398 -9.310835 +v 8.415462 -87.373398 -9.310835 +v -8.473453 -87.407082 -9.310835 +v 8.473453 -87.407082 -9.310835 +v -8.524788 -87.450233 -9.310835 +v 8.524788 -87.450233 -9.310835 +v -8.567941 -87.501572 -9.310835 +v 8.567941 -87.501572 -9.310835 +v -8.601624 -87.559563 -9.310835 +v 8.601624 -87.559563 -9.310835 +v -8.624836 -87.622482 -9.310835 +v 8.624836 -87.622482 -9.310835 +v -8.636885 -87.688454 -9.310836 +v 8.636885 -87.688454 -9.310836 +v -8.638609 -87.725021 -9.310836 +v 8.638609 -87.725021 -9.310836 +v -8.655265 -87.725021 -9.296325 +v 8.655265 -87.725021 -9.296325 +v -8.651247 -87.810219 -9.296325 +v 8.651247 -87.810219 -9.296325 +v -8.623180 -87.963898 -9.296325 +v 8.623180 -87.963898 -9.296325 +v -8.569108 -88.110466 -9.296326 +v 8.569108 -88.110466 -9.296326 +v -8.490643 -88.245552 -9.296326 +v 8.490643 -88.245552 -9.296326 +v -8.390120 -88.365143 -9.296326 +v 8.390120 -88.365143 -9.296326 +v -8.270532 -88.465668 -9.296327 +v 8.270532 -88.465668 -9.296327 +v -8.135444 -88.544128 -9.296327 +v 8.135444 -88.544128 -9.296327 +v -7.988874 -88.598206 -9.296327 +v 7.988875 -88.598206 -9.296327 +v -7.835193 -88.626274 -9.296327 +v 7.835194 -88.626274 -9.296327 +v -7.750000 -88.630287 -9.296327 +v 7.750000 -88.630287 -9.296327 +v -8.250000 -87.312889 -9.289672 +v 8.250000 -87.312889 -9.289672 +v -7.750000 -88.637154 -9.289675 +v 7.750000 -88.637154 -9.289675 +v -8.250000 -87.299667 -9.275569 +v 8.250000 -87.299667 -9.275569 +v -8.290030 -87.301559 -9.275569 +v 8.290030 -87.301559 -9.275569 +v -8.362239 -87.314743 -9.275569 +v 8.362239 -87.314743 -9.275569 +v -8.431107 -87.340149 -9.275570 +v 8.431107 -87.340149 -9.275570 +v -8.494580 -87.377022 -9.275570 +v 8.494580 -87.377022 -9.275570 +v -8.550771 -87.424255 -9.275570 +v 8.550771 -87.424255 -9.275570 +v -8.598002 -87.480446 -9.275570 +v 8.598002 -87.480446 -9.275570 +v -8.634871 -87.543915 -9.275570 +v 8.634871 -87.543915 -9.275570 +v -8.660278 -87.612785 -9.275570 +v 8.660278 -87.612785 -9.275570 +v -8.673466 -87.684998 -9.275570 +v 8.673466 -87.684998 -9.275570 +v -8.675354 -87.725021 -9.275570 +v 8.675354 -87.725021 -9.275570 +v -8.690133 -87.725021 -9.257363 +v 8.690133 -87.725021 -9.257363 +v -8.685961 -87.813499 -9.257363 +v 8.685961 -87.813499 -9.257363 +v -8.656812 -87.973099 -9.257364 +v 8.656812 -87.973099 -9.257364 +v -8.600657 -88.125313 -9.257364 +v 8.600657 -88.125313 -9.257364 +v -8.519169 -88.265602 -9.257364 +v 8.519169 -88.265602 -9.257364 +v -8.414774 -88.389801 -9.257365 +v 8.414774 -88.389801 -9.257365 +v -8.290582 -88.494194 -9.257365 +v 8.290582 -88.494194 -9.257365 +v -8.150289 -88.575684 -9.257365 +v 8.150289 -88.575684 -9.257365 +v -7.998075 -88.631836 -9.257365 +v 7.998075 -88.631836 -9.257365 +v -7.838475 -88.660980 -9.257365 +v 7.838476 -88.660980 -9.257365 +v -7.750000 -88.665154 -9.257365 +v 7.750000 -88.665154 -9.257365 +v -8.250000 -87.282318 -9.253876 +v 8.250000 -87.282318 -9.253876 +v -7.750000 -88.667732 -9.253879 +v 7.750000 -88.667732 -9.253879 +v -8.250000 -87.269417 -9.234596 +v 8.250000 -87.269417 -9.234596 +v -8.292876 -87.271439 -9.234596 +v 8.292876 -87.271439 -9.234596 +v -8.370221 -87.285568 -9.234596 +v 8.370221 -87.285568 -9.234596 +v -8.443986 -87.312782 -9.234596 +v 8.443986 -87.312782 -9.234596 +v -8.511974 -87.352272 -9.234596 +v 8.511974 -87.352272 -9.234596 +v -8.572161 -87.402863 -9.234596 +v 8.572161 -87.402863 -9.234596 +v -8.622751 -87.463051 -9.234596 +v 8.622751 -87.463051 -9.234596 +v -8.662243 -87.531036 -9.234597 +v 8.662243 -87.531036 -9.234597 +v -8.689456 -87.604805 -9.234597 +v 8.689456 -87.604805 -9.234597 +v -8.703581 -87.682144 -9.234597 +v 8.703581 -87.682144 -9.234597 +v -8.705603 -87.725021 -9.234597 +v 8.705603 -87.725021 -9.234597 +v -8.250000 -87.257721 -9.213737 +v 8.250000 -87.257721 -9.213737 +v -7.750000 -88.692329 -9.213739 +v 7.750000 -88.692329 -9.213739 +v -8.717706 -87.725021 -9.212941 +v 8.717706 -87.725021 -9.212941 +v -8.713411 -87.816093 -9.212941 +v 8.713411 -87.816093 -9.212941 +v -8.683408 -87.980377 -9.212942 +v 8.683408 -87.980377 -9.212942 +v -8.625607 -88.137054 -9.212942 +v 8.625607 -88.137054 -9.212942 +v -8.541728 -88.281456 -9.212942 +v 8.541728 -88.281456 -9.212942 +v -8.434272 -88.409294 -9.212943 +v 8.434272 -88.409294 -9.212943 +v -8.306437 -88.516754 -9.212943 +v 8.306437 -88.516754 -9.212943 +v -8.162029 -88.600632 -9.212943 +v 8.162029 -88.600632 -9.212943 +v -8.005352 -88.658432 -9.212944 +v 8.005352 -88.658432 -9.212944 +v -7.841069 -88.688438 -9.212944 +v 7.841070 -88.688438 -9.212944 +v -8.250000 -87.246536 -9.189097 +v 8.250000 -87.246536 -9.189097 +v -8.295030 -87.248657 -9.189097 +v 8.295030 -87.248657 -9.189097 +v -8.376260 -87.263496 -9.189097 +v 8.376260 -87.263496 -9.189097 +v -8.453730 -87.292076 -9.189097 +v 8.453730 -87.292076 -9.189097 +v -8.525132 -87.333549 -9.189097 +v 8.525132 -87.333549 -9.189097 +v -8.588341 -87.386681 -9.189097 +v 8.588341 -87.386681 -9.189097 +v -8.641474 -87.449890 -9.189097 +v 8.641474 -87.449890 -9.189097 +v -8.682947 -87.521294 -9.189098 +v 8.682947 -87.521294 -9.189098 +v -8.711528 -87.598763 -9.189098 +v 8.711528 -87.598763 -9.189098 +v -8.726363 -87.679993 -9.189098 +v 8.726363 -87.679993 -9.189098 +v -8.728486 -87.725021 -9.189098 +v 8.728486 -87.725021 -9.189098 +v -8.250000 -87.239708 -9.170244 +v 8.250000 -87.239708 -9.170244 +v -7.750000 -88.710342 -9.170248 +v 7.750000 -88.710342 -9.170248 +v -8.737148 -87.725021 -9.164408 +v 8.737148 -87.725021 -9.164408 +v -8.732768 -87.817924 -9.164408 +v 8.732768 -87.817924 -9.164408 +v -8.702162 -87.985504 -9.164408 +v 8.702162 -87.985504 -9.164408 +v -8.643199 -88.145332 -9.164409 +v 8.643199 -88.145332 -9.164409 +v -8.557635 -88.292641 -9.164409 +v 8.557635 -88.292641 -9.164409 +v -8.448020 -88.423042 -9.164409 +v 8.448020 -88.423042 -9.164409 +v -8.317616 -88.532661 -9.164410 +v 8.317616 -88.532661 -9.164410 +v -8.170307 -88.618225 -9.164410 +v 8.170307 -88.618225 -9.164410 +v -8.010482 -88.677185 -9.164410 +v 8.010482 -88.677185 -9.164410 +v -7.842898 -88.707794 -9.164410 +v 7.842899 -88.707794 -9.164410 +v -7.750000 -88.712173 -9.164410 +v 7.750000 -88.712173 -9.164410 +v -8.250000 -87.231682 -9.140383 +v 8.250000 -87.231682 -9.140383 +v -8.296428 -87.233871 -9.140383 +v 8.296428 -87.233871 -9.140383 +v -8.380180 -87.249161 -9.140383 +v 8.380180 -87.249161 -9.140383 +v -8.460056 -87.278633 -9.140384 +v 8.460056 -87.278633 -9.140384 +v -8.533675 -87.321396 -9.140384 +v 8.533675 -87.321396 -9.140384 +v -8.598846 -87.376175 -9.140384 +v 8.598846 -87.376175 -9.140384 +v -8.653628 -87.441345 -9.140384 +v 8.653628 -87.441345 -9.140384 +v -8.696391 -87.514969 -9.140384 +v 8.696391 -87.514969 -9.140384 +v -8.725859 -87.594841 -9.140384 +v 8.725859 -87.594841 -9.140384 +v -8.741155 -87.678596 -9.140385 +v 8.741155 -87.678596 -9.140385 +v -8.743344 -87.725021 -9.140385 +v 8.743344 -87.725021 -9.140385 +v -8.250000 -87.228714 -9.124470 +v 8.250000 -87.228714 -9.124470 +v -7.750000 -88.721329 -9.124473 +v 7.750000 -88.721329 -9.124473 +v -8.747869 -87.725021 -9.113234 +v 8.747869 -87.725021 -9.113234 +v -8.743441 -87.818932 -9.113234 +v 8.743441 -87.818932 -9.113234 +v -8.712502 -87.988335 -9.113234 +v 8.712502 -87.988335 -9.113234 +v -8.652899 -88.149895 -9.113235 +v 8.652899 -88.149895 -9.113235 +v -8.566406 -88.298805 -9.113235 +v 8.566406 -88.298805 -9.113235 +v -8.455600 -88.430626 -9.113235 +v 8.455600 -88.430626 -9.113235 +v -8.323780 -88.541428 -9.113235 +v 8.323780 -88.541428 -9.113235 +v -8.174872 -88.627922 -9.113235 +v 8.174872 -88.627922 -9.113235 +v -8.013310 -88.687523 -9.113235 +v 8.013310 -88.687523 -9.113235 +v -7.843907 -88.718460 -9.113235 +v 7.843908 -88.718460 -9.113235 +v -7.750000 -88.722893 -9.113235 +v 7.750000 -88.722893 -9.113235 +v -8.250000 -87.225273 -9.089858 +v 8.250000 -87.225273 -9.089858 +v -8.297029 -87.227493 -9.089858 +v 8.297029 -87.227493 -9.089858 +v -8.381869 -87.242989 -9.089858 +v 8.381869 -87.242989 -9.089858 +v -8.462782 -87.272835 -9.089858 +v 8.462782 -87.272835 -9.089858 +v -8.537356 -87.316154 -9.089858 +v 8.537356 -87.316154 -9.089858 +v -8.603374 -87.371651 -9.089859 +v 8.603374 -87.371651 -9.089859 +v -8.658868 -87.437668 -9.089859 +v 8.658868 -87.437668 -9.089859 +v -8.702185 -87.512245 -9.089859 +v 8.702185 -87.512245 -9.089859 +v -8.732035 -87.593155 -9.089859 +v 8.732035 -87.593155 -9.089859 +v -8.747529 -87.677994 -9.089859 +v 8.747529 -87.677994 -9.089859 +v -8.749746 -87.725021 -9.089859 +v 8.749746 -87.725021 -9.089859 +v -7.883975 -68.275017 -9.077495 +v 7.883976 -68.275017 -9.077495 +v -8.250000 -68.908997 -9.077497 +v 8.250000 -68.908997 -9.077497 +v -6.250000 -82.425018 -9.077528 +v 6.250000 -82.425018 -9.077528 +v -6.422823 -82.439346 -9.077528 +v 6.422824 -82.439346 -9.077528 +v -6.590933 -82.481911 -9.077528 +v 6.590934 -82.481911 -9.077528 +v -6.749744 -82.551575 -9.077528 +v 6.749745 -82.551575 -9.077528 +v -6.894923 -82.646423 -9.077528 +v 6.894924 -82.646423 -9.077528 +v -7.022510 -82.763878 -9.077529 +v 7.022511 -82.763878 -9.077529 +v -7.129025 -82.900726 -9.077529 +v 7.129025 -82.900726 -9.077529 +v -7.211562 -83.053246 -9.077530 +v 7.211563 -83.053246 -9.077530 +v -7.267869 -83.217262 -9.077530 +v 7.267870 -83.217262 -9.077530 +v -7.296412 -83.388313 -9.077530 +v 7.296413 -83.388313 -9.077530 +v -7.296412 -83.561729 -9.077531 +v 7.296413 -83.561729 -9.077531 +v -7.267869 -83.732780 -9.077531 +v 7.267870 -83.732780 -9.077531 +v -7.211562 -83.896805 -9.077532 +v 7.211563 -83.896805 -9.077532 +v -7.129025 -84.049316 -9.077532 +v 7.129025 -84.049316 -9.077532 +v -7.022510 -84.186165 -9.077532 +v 7.022511 -84.186165 -9.077532 +v -6.894923 -84.303619 -9.077532 +v 6.894924 -84.303619 -9.077532 +v -6.749744 -84.398468 -9.077533 +v 6.749745 -84.398468 -9.077533 +v -6.590933 -84.468132 -9.077533 +v 6.590934 -84.468132 -9.077533 +v -6.422823 -84.510704 -9.077533 +v 6.422824 -84.510704 -9.077533 +v -6.250000 -84.525024 -9.077533 +v 6.250000 -84.525024 -9.077533 +v -6.250000 -85.425026 -9.077535 +v 6.250000 -85.425026 -9.077535 +v 6.266493 -85.425156 -9.077535 +v -6.266592 -85.425156 -9.077535 +v 6.446751 -85.443619 -9.077535 +v -6.447917 -85.443848 -9.077535 +v 6.621150 -85.492805 -9.077536 +v -6.623277 -85.493614 -9.077536 +v 6.784493 -85.571243 -9.077536 +v -6.787386 -85.572960 -9.077536 +v 6.931921 -85.676598 -9.077536 +v -6.935300 -85.679497 -9.077536 +v 7.059040 -85.805725 -9.077536 +v -7.062560 -85.810005 -9.077536 +v 7.162064 -85.954788 -9.077537 +v -7.165329 -85.960564 -9.077537 +v 7.237926 -86.119347 -9.077537 +v -7.240512 -86.126617 -9.077537 +v 7.284366 -86.294495 -9.077537 +v -7.285842 -86.303177 -9.077538 +v 7.300001 -86.475021 -9.077538 +v -7.299953 -86.484917 -9.077538 +v 7.284366 -86.655548 -9.077538 +v -7.282420 -86.666359 -9.077538 +v 7.237926 -86.830696 -9.077538 +v -7.233769 -86.842033 -9.077538 +v 7.162064 -86.995255 -9.077538 +v -7.155469 -87.006645 -9.077538 +v 7.059040 -87.144318 -9.077539 +v -7.049881 -87.155235 -9.077539 +v -8.250000 -87.225021 -9.077539 +v -6.984847 -87.225021 -9.077539 +v 6.984848 -87.225021 -9.077539 +v 8.250000 -87.225021 -9.077539 +v -8.250000 -88.591049 -9.077542 +v 8.250000 -88.591049 -9.077542 +v -8.175779 -88.629852 -9.077542 +v 8.175779 -88.629852 -9.077542 +v -8.013873 -88.689583 -9.077542 +v 8.013873 -88.689583 -9.077542 +v -7.844108 -88.720589 -9.077542 +v 7.844109 -88.720589 -9.077542 +v -7.750000 -88.725021 -9.077542 +v 7.750000 -88.725021 -9.077542 +v -8.270906 -87.225464 -9.077090 +v -6.250000 -85.453255 -9.076204 +v 6.250000 -85.453255 -9.076204 +v 6.266049 -85.453384 -9.076204 +v -6.266146 -85.453384 -9.076204 +v 6.441461 -85.471352 -9.076204 +v -6.442595 -85.471573 -9.076204 +v 6.611169 -85.519218 -9.076204 +v -6.613239 -85.520004 -9.076204 +v 6.770123 -85.595543 -9.076204 +v -6.772937 -85.597214 -9.076204 +v 6.913586 -85.698067 -9.076204 +v -6.916873 -85.700890 -9.076204 +v 7.037285 -85.823723 -9.076205 +v -7.040711 -85.827888 -9.076205 +v 7.137539 -85.968781 -9.076205 +v -7.140718 -85.974396 -9.076205 +v 7.211361 -86.128914 -9.076205 +v -7.213880 -86.135986 -9.076205 +v 7.256554 -86.299355 -9.076206 +v -7.257990 -86.307800 -9.076206 +v 7.271769 -86.475021 -9.076206 +v -7.271721 -86.484650 -9.076206 +v 7.256554 -86.650696 -9.076207 +v -7.254660 -86.661217 -9.076207 +v 7.211361 -86.821136 -9.076207 +v -7.207317 -86.832169 -9.076207 +v 7.137539 -86.981270 -9.076208 +v -7.131124 -86.992355 -9.076208 +v 7.037285 -87.126320 -9.076208 +v -7.028374 -87.136948 -9.076208 +v 6.942300 -87.225021 -9.076108 +v -6.942486 -87.225021 -9.076098 +v -6.250000 -82.471954 -9.073834 +v 6.250000 -82.471954 -9.073834 +v -6.415100 -82.485634 -9.073834 +v 6.415101 -82.485634 -9.073834 +v -6.575696 -82.526299 -9.073834 +v 6.575696 -82.526299 -9.073834 +v -6.727407 -82.592850 -9.073834 +v 6.727408 -82.592850 -9.073834 +v -6.866097 -82.683456 -9.073834 +v 6.866098 -82.683456 -9.073834 +v -6.987981 -82.795662 -9.073835 +v 6.987982 -82.795662 -9.073835 +v -7.089736 -82.926392 -9.073835 +v 7.089736 -82.926392 -9.073835 +v -7.168583 -83.072090 -9.073835 +v 7.168584 -83.072090 -9.073835 +v -7.222375 -83.228783 -9.073835 +v 7.222376 -83.228783 -9.073835 +v -7.249642 -83.392189 -9.073836 +v 7.249643 -83.392189 -9.073836 +v -7.249642 -83.557854 -9.073836 +v 7.249643 -83.557854 -9.073836 +v -7.222375 -83.721260 -9.073837 +v 7.222376 -83.721260 -9.073837 +v -7.168583 -83.877953 -9.073837 +v 7.168584 -83.877953 -9.073837 +v -7.089736 -84.023651 -9.073837 +v 7.089736 -84.023651 -9.073837 +v -6.987981 -84.154381 -9.073838 +v 6.987982 -84.154381 -9.073838 +v -6.866097 -84.266586 -9.073838 +v 6.866098 -84.266586 -9.073838 +v -6.727407 -84.357193 -9.073838 +v 6.727408 -84.357193 -9.073838 +v -6.575696 -84.423744 -9.073839 +v 6.575696 -84.423744 -9.073839 +v -6.415100 -84.464409 -9.073839 +v 6.415101 -84.464409 -9.073839 +v -6.250000 -84.478088 -9.073839 +v 6.250000 -84.478088 -9.073839 +v -6.250000 -85.471954 -9.073841 +v 6.250000 -85.471954 -9.073841 +v 8.310726 -87.228752 -9.073772 +v 8.320050 -88.546585 -9.072474 +v -8.324980 -68.888901 -9.071842 +v 8.324750 -88.542877 -9.071404 +v -7.883975 -68.196793 -9.071339 +v 7.883976 -68.196793 -9.071339 +v -7.895633 -68.197678 -9.071339 +v 7.895634 -68.197678 -9.071339 +v -7.907029 -68.200279 -9.071339 +v 7.907030 -68.200279 -9.071339 +v -7.917912 -68.204544 -9.071339 +v 7.917912 -68.204544 -9.071339 +v -7.928036 -68.210388 -9.071339 +v 7.928037 -68.210388 -9.071339 +v -7.937176 -68.217674 -9.071339 +v 7.937177 -68.217674 -9.071339 +v -7.945127 -68.226250 -9.071339 +v 7.945127 -68.226250 -9.071339 +v -7.951713 -68.235909 -9.071339 +v 7.951714 -68.235909 -9.071339 +v 8.317738 -68.869888 -9.071341 +v 8.322263 -68.879059 -9.071341 +v 8.325552 -68.888748 -9.071341 +v 8.327548 -68.898788 -9.071341 +v 8.328218 -68.908997 -9.071341 +v -8.324968 -88.543121 -9.071370 +v -8.328219 -87.231247 -9.071301 +v -8.330008 -88.539543 -9.070942 +v -6.875099 -87.225021 -9.068255 +v -6.872002 -87.225021 -9.067742 +v 6.866451 -87.225021 -9.066912 +v -6.250000 -85.504189 -9.066902 +v 6.250000 -85.504189 -9.066902 +v 6.265249 -85.504303 -9.066902 +v -6.265340 -85.504303 -9.066902 +v 6.431918 -85.521378 -9.066902 +v -6.432994 -85.521591 -9.066902 +v 6.593167 -85.566856 -9.066902 +v -6.595135 -85.567604 -9.066902 +v 6.744196 -85.639381 -9.066902 +v -6.746871 -85.640968 -9.066902 +v 6.880509 -85.736794 -9.066902 +v -6.883634 -85.739471 -9.066903 +v 6.998044 -85.856186 -9.066903 +v -7.001298 -85.860146 -9.066903 +v 7.093300 -85.994011 -9.066903 +v -7.096321 -85.999344 -9.066903 +v 7.163444 -86.146164 -9.066904 +v -7.165835 -86.152885 -9.066904 +v 7.206382 -86.308105 -9.066904 +v -7.207747 -86.316139 -9.066904 +v 7.220839 -86.475021 -9.066904 +v -7.220795 -86.484177 -9.066904 +v 7.206382 -86.641937 -9.066905 +v -7.204583 -86.651932 -9.066905 +v 7.163444 -86.803886 -9.066905 +v -7.159601 -86.814362 -9.066905 +v 7.093300 -86.956032 -9.066906 +v -7.087204 -86.966568 -9.066906 +v 6.998044 -87.093857 -9.066906 +v -6.989575 -87.103951 -9.066906 +v 6.880509 -87.213257 -9.066906 +v -6.869658 -87.222389 -9.066906 +v -6.865962 -87.225021 -9.066704 +v 8.368847 -87.239708 -9.063124 +v -6.250000 -82.517723 -9.062845 +v 6.250000 -82.517723 -9.062845 +v -6.407566 -82.530785 -9.062845 +v 6.407567 -82.530785 -9.062845 +v -6.560833 -82.569595 -9.062845 +v 6.560833 -82.569595 -9.062845 +v -6.705622 -82.633102 -9.062845 +v 6.705623 -82.633102 -9.062845 +v -6.837983 -82.719582 -9.062845 +v 6.837984 -82.719582 -9.062845 +v -6.954305 -82.826660 -9.062846 +v 6.954306 -82.826660 -9.062846 +v -7.051414 -82.951431 -9.062846 +v 7.051415 -82.951431 -9.062846 +v -7.126665 -83.090485 -9.062846 +v 7.126666 -83.090485 -9.062846 +v -7.178001 -83.240021 -9.062847 +v 7.178002 -83.240021 -9.062847 +v -7.204024 -83.395966 -9.062847 +v 7.204025 -83.395966 -9.062847 +v -7.204024 -83.554077 -9.062847 +v 7.204025 -83.554077 -9.062847 +v -7.178001 -83.710022 -9.062848 +v 7.178002 -83.710022 -9.062848 +v -7.126665 -83.859566 -9.062848 +v 7.126666 -83.859566 -9.062848 +v -7.051414 -83.998611 -9.062849 +v 7.051415 -83.998611 -9.062849 +v -6.954305 -84.123383 -9.062849 +v 6.954306 -84.123383 -9.062849 +v -6.837983 -84.230461 -9.062849 +v 6.837984 -84.230461 -9.062849 +v -6.705622 -84.316940 -9.062849 +v 6.705623 -84.316940 -9.062849 +v -6.560833 -84.380447 -9.062849 +v 6.560833 -84.380447 -9.062849 +v -6.407566 -84.419258 -9.062850 +v 6.407567 -84.419258 -9.062850 +v -6.250000 -84.432320 -9.062850 +v 6.250000 -84.432320 -9.062850 +v -6.250000 -85.517731 -9.062852 +v 6.250000 -85.517731 -9.062852 +v 8.370285 -88.507019 -9.061039 +v -8.749543 -87.725021 -9.060976 +v 8.749543 -87.725021 -9.060976 +v -8.745106 -87.819092 -9.060976 +v 8.745106 -87.819092 -9.060976 +v -8.714116 -87.988777 -9.060977 +v 8.714116 -87.988777 -9.060977 +v -8.654413 -88.150612 -9.060977 +v 8.654413 -88.150612 -9.060977 +v -8.567776 -88.299767 -9.060978 +v 8.567776 -88.299767 -9.060978 +v -8.456783 -88.431808 -9.060978 +v 8.456783 -88.431808 -9.060978 +v -8.372414 -88.507126 -9.060978 +v -8.381916 -68.873650 -9.059780 +v 8.381937 -68.908997 -9.059775 +v 8.381947 -87.243294 -9.059744 +v -8.383379 -87.243713 -9.059355 +v -8.402365 -88.481789 -9.053762 +v 8.402626 -88.481544 -9.053679 +v -8.403526 -68.867859 -9.053343 +v -7.883975 -68.120506 -9.053022 +v 7.883976 -68.120506 -9.053022 +v -7.907002 -68.122238 -9.053022 +v 7.907003 -68.122238 -9.053022 +v -7.929516 -68.127380 -9.053022 +v 7.929517 -68.127380 -9.053022 +v -7.951014 -68.135803 -9.053022 +v 7.951015 -68.135803 -9.053022 +v -7.971012 -68.147354 -9.053022 +v 7.971013 -68.147354 -9.053022 +v -7.989067 -68.161758 -9.053022 +v 7.989068 -68.161758 -9.053022 +v -8.004774 -68.178688 -9.053022 +v 8.004774 -68.178688 -9.053022 +v -8.017783 -68.197769 -9.053022 +v 8.017783 -68.197769 -9.053022 +v 8.383809 -68.831734 -9.053024 +v 8.392748 -68.849869 -9.053024 +v 8.399243 -68.868996 -9.053024 +v 8.403187 -68.888824 -9.053024 +v 8.404509 -68.908997 -9.053024 +v 8.411457 -88.475006 -9.050741 +v -6.250000 -85.552757 -9.048984 +v 6.250000 -85.552757 -9.048984 +v 6.264486 -85.552872 -9.048984 +v -6.264574 -85.552872 -9.048984 +v 6.422815 -85.569092 -9.048984 +v -6.423840 -85.569290 -9.048984 +v 6.575998 -85.612297 -9.048984 +v -6.577867 -85.613007 -9.048984 +v 6.719472 -85.681190 -9.048984 +v -6.722013 -85.682701 -9.048984 +v 6.848965 -85.773727 -9.048984 +v -6.851933 -85.776276 -9.048984 +v 6.960618 -85.887146 -9.048985 +v -6.963710 -85.890907 -9.048985 +v 7.051109 -86.018082 -9.048985 +v -7.053978 -86.023148 -9.048985 +v 7.117743 -86.162621 -9.048985 +v -7.120016 -86.169006 -9.048985 +v 7.158534 -86.316460 -9.048985 +v -7.159831 -86.324081 -9.048985 +v 7.172266 -86.475021 -9.048985 +v -7.172225 -86.483719 -9.048985 +v 7.158534 -86.633591 -9.048985 +v -7.156825 -86.643082 -9.048985 +v 7.117743 -86.787430 -9.048986 +v -7.114092 -86.797386 -9.048986 +v 7.051109 -86.931969 -9.048986 +v -7.045319 -86.941971 -9.048986 +v 6.960618 -87.062897 -9.048986 +v -6.952573 -87.072487 -9.048986 +v 6.848965 -87.176323 -9.048987 +v -6.838655 -87.184998 -9.048987 +v 6.784656 -87.225021 -9.048420 +v -6.784595 -87.225021 -9.048186 +v 8.425235 -87.258530 -9.045821 +v -6.250000 -82.561218 -9.044830 +v 6.250000 -82.561218 -9.044830 +v -6.400406 -82.573685 -9.044830 +v 6.400407 -82.573685 -9.044830 +v -6.546710 -82.610733 -9.044830 +v 6.546711 -82.610733 -9.044830 +v -6.684922 -82.671356 -9.044830 +v 6.684923 -82.671356 -9.044830 +v -6.811270 -82.753906 -9.044830 +v 6.811271 -82.753906 -9.044830 +v -6.922307 -82.856117 -9.044831 +v 6.922307 -82.856117 -9.044831 +v -7.015005 -82.975220 -9.044831 +v 7.015006 -82.975220 -9.044831 +v -7.086835 -83.107948 -9.044831 +v 7.086836 -83.107948 -9.044831 +v -7.135839 -83.250694 -9.044832 +v 7.135840 -83.250694 -9.044832 +v -7.160682 -83.399559 -9.044832 +v 7.160683 -83.399559 -9.044832 +v -7.160682 -83.550484 -9.044832 +v 7.160683 -83.550484 -9.044832 +v -7.135839 -83.699348 -9.044833 +v 7.135840 -83.699348 -9.044833 +v -7.086835 -83.842094 -9.044833 +v 7.086836 -83.842094 -9.044833 +v -7.015005 -83.974823 -9.044834 +v 7.015006 -83.974823 -9.044834 +v -6.922307 -84.093925 -9.044834 +v 6.922307 -84.093925 -9.044834 +v -6.811270 -84.196144 -9.044834 +v 6.811271 -84.196144 -9.044834 +v -6.684922 -84.278687 -9.044834 +v 6.684923 -84.278687 -9.044834 +v -6.546710 -84.339310 -9.044834 +v 6.546711 -84.339310 -9.044834 +v -6.400406 -84.376366 -9.044834 +v 6.400407 -84.376366 -9.044834 +v -6.250000 -84.388824 -9.044834 +v 6.250000 -84.388824 -9.044834 +v -6.250000 -85.561218 -9.044837 +v 6.250000 -85.561218 -9.044837 +v -8.434569 -87.262581 -9.042226 +v -8.461830 -87.274864 -9.038979 +v 8.461830 -87.274864 -9.038979 +v -8.536072 -87.317986 -9.038979 +v 8.536072 -87.317986 -9.038979 +v -8.601794 -87.373230 -9.038979 +v 8.601794 -87.373230 -9.038979 +v -8.657039 -87.438950 -9.038979 +v 8.657039 -87.438950 -9.038979 +v -8.700162 -87.513191 -9.038979 +v 8.700162 -87.513191 -9.038979 +v -8.729877 -87.593742 -9.038979 +v 8.729877 -87.593742 -9.038979 +v -8.745303 -87.678207 -9.038980 +v 8.745303 -87.678207 -9.038980 +v -8.747512 -87.725021 -9.038980 +v 8.747512 -87.725021 -9.038980 +v -8.451102 -88.438087 -9.034805 +v -8.454987 -88.429672 -9.033589 +v 8.457457 -88.431778 -9.032470 +v -8.457216 -88.432022 -9.032066 +v -6.731264 -87.225021 -9.031802 +v 6.730487 -87.225021 -9.031774 +v -8.462852 -68.851959 -9.029927 +v 8.462890 -68.908997 -9.029910 +v 8.463047 -87.276909 -9.029820 +v -8.463131 -87.276955 -9.029781 +v 8.463564 -88.425613 -9.029636 +v -8.463520 -88.425659 -9.029142 +v 8.467495 -88.415611 -9.027797 +v 8.471540 -87.281822 -9.025702 +v -8.473557 -88.408485 -9.024750 +v -8.476978 -68.848175 -9.023008 +v -7.883975 -68.048027 -9.022997 +v 7.883976 -68.048027 -9.022997 +v -7.917807 -68.050560 -9.022997 +v 7.917808 -68.050560 -9.022997 +v -7.950881 -68.058105 -9.022997 +v 7.950882 -68.058105 -9.022997 +v -7.982463 -68.070496 -9.022997 +v 7.982464 -68.070496 -9.022997 +v -8.011846 -68.087463 -9.022997 +v 8.011846 -68.087463 -9.022997 +v -8.038371 -68.108620 -9.022998 +v 8.038371 -68.108620 -9.022998 +v -8.061446 -68.133484 -9.022998 +v 8.061446 -68.133484 -9.022998 +v -8.080558 -68.161514 -9.022998 +v 8.080558 -68.161514 -9.022998 +v 8.446584 -68.795494 -9.022999 +v 8.459716 -68.822128 -9.022999 +v 8.469260 -68.850235 -9.022999 +v 8.475053 -68.879364 -9.022999 +v 8.476995 -68.908997 -9.023000 +v -6.250000 -85.597527 -9.022981 +v 6.250000 -85.597527 -9.022981 +v 6.263783 -85.597633 -9.022981 +v -6.263865 -85.597633 -9.022981 +v 6.414427 -85.613068 -9.022981 +v -6.415401 -85.613251 -9.022981 +v 6.560174 -85.654175 -9.022981 +v -6.561952 -85.654846 -9.022981 +v 6.696683 -85.719727 -9.022981 +v -6.699100 -85.721161 -9.022981 +v 6.819890 -85.807770 -9.022981 +v -6.822714 -85.810188 -9.022981 +v 6.926125 -85.915688 -9.022982 +v -6.929067 -85.919258 -9.022982 +v 7.012223 -86.040260 -9.022982 +v -7.014953 -86.045082 -9.022982 +v 7.075622 -86.177780 -9.022982 +v -7.077784 -86.183861 -9.022982 +v 7.114432 -86.324158 -9.022982 +v -7.115666 -86.331413 -9.022982 +v 7.127499 -86.475021 -9.022983 +v -7.127460 -86.483292 -9.022983 +v 7.114432 -86.625893 -9.022983 +v -7.112805 -86.634926 -9.022983 +v 7.075622 -86.772263 -9.022984 +v -7.072148 -86.781738 -9.022984 +v 7.012223 -86.909790 -9.022984 +v -7.006712 -86.919304 -9.022984 +v 6.926125 -87.034363 -9.022984 +v -6.918470 -87.043488 -9.022984 +v 6.819890 -87.142281 -9.022984 +v -6.810081 -87.150536 -9.022984 +v 6.703868 -87.225021 -9.022404 +v -8.478316 -87.285973 -9.022278 +v -6.704090 -87.225021 -9.022265 +v -6.250000 -82.601357 -9.020233 +v 6.250000 -82.601357 -9.020233 +v -6.393799 -82.613274 -9.020233 +v 6.393800 -82.613274 -9.020233 +v -6.533678 -82.648697 -9.020233 +v 6.533679 -82.648697 -9.020233 +v -6.665818 -82.706657 -9.020233 +v 6.665819 -82.706657 -9.020233 +v -6.786614 -82.785576 -9.020234 +v 6.786615 -82.785576 -9.020234 +v -6.892776 -82.883308 -9.020234 +v 6.892776 -82.883308 -9.020234 +v -6.981401 -82.997169 -9.020234 +v 6.981402 -82.997169 -9.020234 +v -7.050077 -83.124077 -9.020235 +v 7.050078 -83.124077 -9.020235 +v -7.096931 -83.260551 -9.020235 +v 7.096931 -83.260551 -9.020235 +v -7.120679 -83.402878 -9.020235 +v 7.120680 -83.402878 -9.020235 +v -7.120679 -83.547173 -9.020236 +v 7.120680 -83.547173 -9.020236 +v -7.096931 -83.689491 -9.020236 +v 7.096931 -83.689491 -9.020236 +v -7.050077 -83.825966 -9.020236 +v 7.050078 -83.825966 -9.020236 +v -6.981401 -83.952873 -9.020237 +v 6.981402 -83.952873 -9.020237 +v -6.892776 -84.066742 -9.020237 +v 6.892776 -84.066742 -9.020237 +v -6.786614 -84.164467 -9.020237 +v 6.786615 -84.164467 -9.020237 +v -6.665818 -84.243385 -9.020237 +v 6.665819 -84.243385 -9.020237 +v -6.533678 -84.301346 -9.020237 +v 6.533679 -84.301346 -9.020237 +v -6.393799 -84.336769 -9.020237 +v 6.393800 -84.336769 -9.020237 +v -6.250000 -84.348686 -9.020237 +v 6.250000 -84.348686 -9.020237 +v -6.250000 -85.601357 -9.020241 +v 6.250000 -85.601357 -9.020241 +v 6.694730 -87.225021 -9.019014 +v -8.485322 -68.845940 -9.018658 +v 8.494393 -88.392769 -9.013739 +v -6.679286 -87.225021 -9.012894 +v 8.501393 -88.373123 -9.009940 +v -8.501350 -88.373100 -9.009736 +v -8.742117 -87.725021 -9.009222 +v 8.742117 -87.725021 -9.009222 +v -8.737714 -87.818390 -9.009222 +v 8.737714 -87.818390 -9.009222 +v -8.706954 -87.986816 -9.009223 +v 8.706954 -87.986816 -9.009223 +v -8.647696 -88.147446 -9.009223 +v 8.647696 -88.147446 -9.009223 +v -8.561701 -88.295494 -9.009224 +v 8.561701 -88.295494 -9.009224 +v 8.516811 -87.314178 -9.000278 +v -8.525940 -87.322250 -8.994345 +v 8.529142 -88.331947 -8.992296 +v -8.530261 -87.326286 -8.991444 +v 8.530288 -87.326309 -8.991424 +v -6.250000 -82.637154 -8.989660 +v 6.250000 -82.637154 -8.989660 +v -6.387908 -82.648582 -8.989660 +v 6.387908 -82.648582 -8.989660 +v -6.522055 -82.682549 -8.989660 +v 6.522056 -82.682549 -8.989660 +v -6.648780 -82.738136 -8.989660 +v 6.648781 -82.738136 -8.989660 +v -6.764628 -82.813828 -8.989661 +v 6.764629 -82.813828 -8.989661 +v -6.866439 -82.907547 -8.989661 +v 6.866440 -82.907547 -8.989661 +v -6.951435 -83.016754 -8.989661 +v 6.951436 -83.016754 -8.989661 +v -7.017296 -83.138458 -8.989662 +v 7.017297 -83.138458 -8.989662 +v -7.062229 -83.269341 -8.989662 +v 7.062230 -83.269341 -8.989662 +v -7.085006 -83.405830 -8.989662 +v 7.085007 -83.405830 -8.989662 +v -7.085006 -83.544212 -8.989662 +v 7.085007 -83.544212 -8.989662 +v -7.062229 -83.680710 -8.989663 +v 7.062230 -83.680710 -8.989663 +v -7.017296 -83.811592 -8.989663 +v 7.017297 -83.811592 -8.989663 +v -6.951435 -83.933296 -8.989663 +v 6.951436 -83.933296 -8.989663 +v -6.866439 -84.042496 -8.989664 +v 6.866440 -84.042496 -8.989664 +v -6.764628 -84.136215 -8.989664 +v 6.764629 -84.136215 -8.989664 +v -6.648780 -84.211906 -8.989664 +v 6.648781 -84.211906 -8.989664 +v -6.522055 -84.267494 -8.989664 +v 6.522056 -84.267494 -8.989664 +v -6.387908 -84.301460 -8.989664 +v 6.387908 -84.301460 -8.989664 +v -6.250000 -84.312889 -8.989664 +v 6.250000 -84.312889 -8.989664 +v -6.250000 -85.637154 -8.989668 +v 6.250000 -85.637154 -8.989668 +v 6.263162 -85.637260 -8.989668 +v -6.263239 -85.637260 -8.989668 +v 6.407001 -85.651993 -8.989668 +v -6.407930 -85.652176 -8.989668 +v 6.546165 -85.691246 -8.989668 +v -6.547863 -85.691887 -8.989668 +v 6.676509 -85.753838 -8.989668 +v -6.678818 -85.755203 -8.989668 +v 6.794152 -85.837906 -8.989668 +v -6.796848 -85.840218 -8.989668 +v 6.895588 -85.940948 -8.989668 +v -6.898397 -85.944359 -8.989668 +v 6.977798 -86.059891 -8.989669 +v -6.980404 -86.064499 -8.989669 +v 7.038334 -86.191208 -8.989669 +v -7.040399 -86.197006 -8.989669 +v 7.075392 -86.330971 -8.989669 +v -7.076571 -86.337898 -8.989669 +v 7.087869 -86.475021 -8.989670 +v -7.087831 -86.482918 -8.989670 +v 7.075392 -86.619080 -8.989670 +v -7.073839 -86.627701 -8.989670 +v 7.038334 -86.758842 -8.989670 +v -7.035017 -86.767883 -8.989670 +v 6.977798 -86.890152 -8.989671 +v -6.972538 -86.899246 -8.989671 +v 6.895588 -87.009102 -8.989671 +v -6.888279 -87.017815 -8.989671 +v 6.794152 -87.112144 -8.989671 +v -6.784787 -87.120026 -8.989671 +v 6.676509 -87.196213 -8.989671 +v -6.665174 -87.202797 -8.989671 +v 8.533379 -87.329292 -8.989313 +v -8.533462 -87.329369 -8.989258 +v -8.594150 -87.380875 -8.989210 +v 8.594150 -87.380875 -8.989210 +v -8.648194 -87.445168 -8.989210 +v 8.648194 -87.445168 -8.989210 +v -8.690380 -87.517799 -8.989210 +v 8.690380 -87.517799 -8.989210 +v -8.719452 -87.596596 -8.989210 +v 8.719452 -87.596596 -8.989210 +v -8.734542 -87.679222 -8.989210 +v 8.734542 -87.679222 -8.989210 +v -8.736702 -87.725021 -8.989210 +v 8.736702 -87.725021 -8.989210 +v -6.620530 -87.225021 -8.988286 +v 6.620155 -87.225021 -8.988192 +v -8.536015 -88.343231 -8.987287 +v -8.536711 -88.319527 -8.987206 +v -8.537461 -68.831970 -8.986600 +v 8.537503 -68.908997 -8.986571 +v -8.537914 -87.333801 -8.986163 +v -8.537707 -88.341072 -8.986108 +v 8.538041 -87.333931 -8.986073 +v 8.538322 -88.340286 -8.986005 +v 8.538292 -88.316711 -8.985859 +v -8.543860 -68.830246 -8.982028 +v -7.883975 -67.981125 -8.982002 +v 7.883976 -67.981125 -8.982002 +v -7.927776 -67.984406 -8.982002 +v 7.927777 -67.984406 -8.982002 +v -7.970601 -67.994179 -8.982002 +v 7.970602 -67.994179 -8.982002 +v -8.011490 -68.010223 -8.982002 +v 8.011490 -68.010223 -8.982002 +v -8.049530 -68.032188 -8.982002 +v 8.049530 -68.032188 -8.982002 +v -8.083873 -68.059578 -8.982002 +v 8.083873 -68.059578 -8.982002 +v -8.113750 -68.091774 -8.982002 +v 8.113750 -68.091774 -8.982002 +v -8.138493 -68.128067 -8.982002 +v 8.138493 -68.128067 -8.982002 +v 8.504519 -68.762047 -8.982004 +v 8.521522 -68.796524 -8.982004 +v 8.533878 -68.832924 -8.982004 +v 8.541378 -68.870628 -8.982004 +v 8.543893 -68.908997 -8.982004 +v -8.553420 -88.289642 -8.975130 +v 8.553275 -88.289665 -8.974838 +v -8.558306 -68.826378 -8.971130 +v 8.558770 -87.357056 -8.970764 +v -8.565585 -87.365700 -8.965353 +v 8.568390 -88.299683 -8.963025 +v -8.568562 -88.299446 -8.962698 +v -8.572797 -88.249695 -8.959601 +v -8.725821 -87.725021 -8.959543 +v 8.725821 -87.725021 -8.959543 +v -8.721490 -87.816856 -8.959543 +v 8.721490 -87.816856 -8.959543 +v -8.691235 -87.982513 -8.959544 +v 8.691235 -87.982513 -8.959544 +v -8.632949 -88.140511 -8.959544 +v 8.632949 -88.140511 -8.959544 +v 8.572713 -88.249664 -8.959397 +v -6.250000 -82.667725 -8.953865 +v 6.250000 -82.667725 -8.953865 +v -6.382875 -82.678734 -8.953865 +v 6.382876 -82.678734 -8.953865 +v -6.512127 -82.711472 -8.953865 +v 6.512128 -82.711472 -8.953865 +v -6.634230 -82.765030 -8.953865 +v 6.634231 -82.765030 -8.953865 +v -6.745851 -82.837952 -8.953865 +v 6.745852 -82.837952 -8.953865 +v -6.843946 -82.928253 -8.953865 +v 6.843946 -82.928253 -8.953865 +v -6.925839 -83.033470 -8.953865 +v 6.925840 -83.033470 -8.953865 +v -6.989298 -83.150734 -8.953866 +v 6.989299 -83.150734 -8.953866 +v -7.032591 -83.276840 -8.953866 +v 7.032592 -83.276840 -8.953866 +v -7.054537 -83.408356 -8.953866 +v 7.054538 -83.408356 -8.953866 +v -7.054537 -83.541687 -8.953867 +v 7.054538 -83.541687 -8.953867 +v -7.032591 -83.673203 -8.953867 +v 7.032592 -83.673203 -8.953867 +v -6.989298 -83.799309 -8.953867 +v 6.989299 -83.799309 -8.953867 +v -6.925839 -83.916573 -8.953868 +v 6.925840 -83.916573 -8.953868 +v -6.843946 -84.021790 -8.953868 +v 6.843946 -84.021790 -8.953868 +v -6.745851 -84.112091 -8.953868 +v 6.745852 -84.112091 -8.953868 +v -6.634230 -84.185020 -8.953868 +v 6.634231 -84.185020 -8.953868 +v -6.512127 -84.238579 -8.953868 +v 6.512128 -84.238579 -8.953868 +v -6.382875 -84.271309 -8.953869 +v 6.382876 -84.271309 -8.953869 +v -6.250000 -84.282318 -8.953869 +v 6.250000 -84.282318 -8.953869 +v -6.250000 -85.667725 -8.953872 +v 6.250000 -85.667725 -8.953872 +v -6.548015 -87.225021 -8.953534 +v 8.581930 -88.279907 -8.951437 +v -8.583421 -87.391426 -8.950246 +v 8.583437 -87.391449 -8.950232 +v -6.250000 -85.670471 -8.950038 +v 6.250000 -85.670471 -8.950038 +v 6.262638 -85.670570 -8.950038 +v -6.262712 -85.670570 -8.950038 +v 6.400758 -85.684723 -8.950038 +v -6.401651 -85.684891 -8.950038 +v 6.534390 -85.722404 -8.950038 +v -6.536021 -85.723022 -8.950038 +v 6.659553 -85.782509 -8.950038 +v -6.661768 -85.783821 -8.950038 +v 6.772518 -85.863235 -8.950038 +v -6.775106 -85.865456 -8.950038 +v 6.869922 -85.962181 -8.950038 +v -6.872619 -85.965462 -8.950038 +v 6.948863 -86.076401 -8.950039 +v -6.951365 -86.080818 -8.950039 +v 7.006990 -86.202492 -8.950039 +v -7.008974 -86.208061 -8.950039 +v 7.042575 -86.336700 -8.950039 +v -7.043706 -86.343353 -8.950039 +v 7.054555 -86.475021 -8.950040 +v -7.054519 -86.482605 -8.950040 +v 7.042575 -86.613350 -8.950040 +v -7.041083 -86.621635 -8.950040 +v 7.006990 -86.747559 -8.950040 +v -7.003807 -86.756241 -8.950040 +v 6.948863 -86.873650 -8.950041 +v -6.943810 -86.882378 -8.950041 +v 6.869922 -86.987869 -8.950041 +v -6.862904 -86.996231 -8.950041 +v 6.772518 -87.086815 -8.950041 +v -6.763524 -87.094383 -8.950041 +v 6.659553 -87.167542 -8.950041 +v -6.648667 -87.173859 -8.950041 +v 6.541121 -87.225021 -8.949948 +v -6.540773 -87.225021 -8.949820 +v -8.584620 -88.221382 -8.948995 +v 6.539008 -87.225021 -8.948858 +v 8.585164 -88.220078 -8.948577 +v 6.533556 -87.225021 -8.946033 +v -8.632591 -87.456139 -8.941986 +v 8.632591 -87.456139 -8.941986 +v -8.673123 -87.525917 -8.941987 +v 8.673123 -87.525917 -8.941987 +v -8.701056 -87.601631 -8.941987 +v 8.701056 -87.601631 -8.941987 +v -8.715553 -87.681015 -8.941987 +v 8.715553 -87.681015 -8.941987 +v -8.717629 -87.725021 -8.941987 +v 8.717629 -87.725021 -8.941987 +v 8.592626 -87.406792 -8.941961 +v -8.592744 -87.406998 -8.941853 +v 8.593551 -87.408432 -8.941107 +v -6.519929 -87.225021 -8.938906 +v -8.598035 -87.416656 -8.936905 +v -8.603519 -68.814270 -8.931083 +v -7.883975 -67.921463 -8.931047 +v 7.883976 -67.921463 -8.931047 +v -7.936667 -67.925407 -8.931047 +v 7.936668 -67.925407 -8.931047 +v -7.988185 -67.937164 -8.931047 +v 7.988186 -67.937164 -8.931047 +v -8.037375 -67.956474 -8.931047 +v 8.037375 -67.956474 -8.931047 +v -8.083138 -67.982895 -8.931047 +v 8.083138 -67.982895 -8.931047 +v -8.124452 -68.015846 -8.931047 +v 8.124452 -68.015846 -8.931047 +v -8.160394 -68.054581 -8.931047 +v 8.160394 -68.054581 -8.931047 +v -8.190161 -68.098236 -8.931047 +v 8.190161 -68.098236 -8.931047 +v 8.556187 -68.732216 -8.931049 +v 8.576641 -68.773697 -8.931049 +v 8.591507 -68.817490 -8.931049 +v 8.600529 -68.862846 -8.931049 +v 8.603553 -68.908997 -8.931049 +v -8.604242 -87.428886 -8.930902 +v -8.603934 -88.245407 -8.930653 +v 8.604518 -87.429459 -8.930629 +v 8.604028 -88.245255 -8.930603 +v 8.605216 -88.163345 -8.929622 +v -8.604890 -88.163635 -8.929348 +v 8.614398 -88.132065 -8.920217 +v -8.614161 -88.131966 -8.919801 +v -8.616146 -88.224815 -8.918015 +v -8.619739 -87.465050 -8.914749 +v -8.619178 -68.810066 -8.914701 +v -6.250000 -82.692322 -8.913726 +v 6.250000 -82.692322 -8.913726 +v -6.378828 -82.703003 -8.913726 +v 6.378829 -82.703003 -8.913726 +v -6.504141 -82.734734 -8.913726 +v 6.504142 -82.734734 -8.913726 +v -6.622522 -82.786659 -8.913726 +v 6.622523 -82.786659 -8.913726 +v -6.730742 -82.857361 -8.913726 +v 6.730743 -82.857361 -8.913726 +v -6.825850 -82.944916 -8.913726 +v 6.825850 -82.944916 -8.913726 +v -6.905248 -83.046928 -8.913727 +v 6.905249 -83.046928 -8.913727 +v -6.966774 -83.160614 -8.913727 +v 6.966774 -83.160614 -8.913727 +v -7.008748 -83.282883 -8.913727 +v 7.008749 -83.282883 -8.913727 +v -7.030025 -83.410385 -8.913727 +v 7.030025 -83.410385 -8.913727 +v -7.030025 -83.539658 -8.913728 +v 7.030025 -83.539658 -8.913728 +v -7.008748 -83.667160 -8.913728 +v 7.008749 -83.667160 -8.913728 +v -6.966774 -83.789429 -8.913728 +v 6.966774 -83.789429 -8.913728 +v -6.905248 -83.903114 -8.913729 +v 6.905249 -83.903114 -8.913729 +v -6.825850 -84.005127 -8.913729 +v 6.825850 -84.005127 -8.913729 +v -6.730742 -84.092682 -8.913729 +v 6.730743 -84.092682 -8.913729 +v -6.622522 -84.163383 -8.913729 +v 6.622523 -84.163383 -8.913729 +v -6.504141 -84.215309 -8.913729 +v 6.504142 -84.215309 -8.913729 +v -6.378828 -84.247047 -8.913729 +v 6.378829 -84.247047 -8.913729 +v -6.250000 -84.257721 -8.913729 +v 6.250000 -84.257721 -8.913729 +v -6.250000 -85.692322 -8.913733 +v 6.250000 -85.692322 -8.913733 +v -8.701145 -87.725021 -8.913448 +v 8.701145 -87.725021 -8.913448 +v -8.696924 -87.814537 -8.913448 +v 8.696924 -87.814537 -8.913448 +v -8.667434 -87.976006 -8.913448 +v 8.667434 -87.976006 -8.913448 +v -8.620279 -88.108498 -8.913259 +v 8.620902 -88.106987 -8.913201 +v 8.621449 -87.469681 -8.912841 +v -8.621896 -88.101883 -8.911492 +v -8.622888 -87.473701 -8.911219 +v 8.623312 -88.096931 -8.910516 +v -6.250000 -85.696472 -8.905270 +v 6.250000 -85.696472 -8.905270 +v 6.262229 -85.696564 -8.905270 +v -6.262301 -85.696571 -8.905270 +v 6.395886 -85.710258 -8.905270 +v -6.396750 -85.710426 -8.905270 +v 6.525198 -85.746735 -8.905270 +v -6.526776 -85.747330 -8.905270 +v 6.646316 -85.804893 -8.905270 +v -6.648459 -85.806168 -8.905270 +v 6.755630 -85.883011 -8.905270 +v -6.758134 -85.885155 -8.905270 +v 6.849885 -85.978752 -8.905270 +v -6.852496 -85.981926 -8.905270 +v 6.926275 -86.089287 -8.905271 +v -6.928697 -86.093559 -8.905271 +v 6.982524 -86.211296 -8.905271 +v -6.984443 -86.216690 -8.905271 +v 7.016960 -86.341171 -8.905271 +v -7.018054 -86.347603 -8.905271 +v 7.028553 -86.475021 -8.905272 +v -7.028516 -86.482361 -8.905272 +v 7.016960 -86.608879 -8.905272 +v -7.015515 -86.616898 -8.905272 +v 6.982524 -86.738747 -8.905272 +v -6.979444 -86.747154 -8.905272 +v 6.926275 -86.860764 -8.905272 +v -6.921385 -86.869209 -8.905272 +v 6.849885 -86.971291 -8.905272 +v -6.843093 -86.979385 -8.905272 +v 6.755630 -87.067039 -8.905272 +v -6.746926 -87.074364 -8.905272 +v 6.646316 -87.145157 -8.905272 +v -6.635783 -87.151276 -8.905272 +v 6.525198 -87.203316 -8.905273 +v -6.513011 -87.207802 -8.905273 +v 6.455790 -87.225021 -8.903538 +v -6.455392 -87.225021 -8.903288 +v -8.648888 -87.537323 -8.898670 +v 8.648888 -87.537323 -8.898670 +v -8.675219 -87.608696 -8.898670 +v 8.675219 -87.608696 -8.898670 +v -8.688887 -87.683540 -8.898670 +v 8.688887 -87.683540 -8.898670 +v -8.690844 -87.725021 -8.898670 +v 8.690844 -87.725021 -8.898670 +v -8.634230 -87.510406 -8.897684 +v 8.641978 -87.542244 -8.887949 +v -8.643698 -87.550362 -8.885770 +v 8.645611 -87.970467 -8.883307 +v -8.645625 -87.970352 -8.883287 +v -8.673293 -87.797256 -8.880381 +v -8.648885 -87.942978 -8.879031 +v 8.649879 -87.933746 -8.877720 +v 8.652494 -88.155724 -8.874166 +v -8.668841 -87.725021 -8.872337 +v 8.668841 -87.725021 -8.872337 +v 8.664763 -87.811493 -8.872337 +v -8.653898 -87.614296 -8.872293 +v 8.653905 -87.614388 -8.872276 +v -8.654478 -68.800606 -8.871430 +v -7.883975 -67.870506 -8.871387 +v 7.883976 -67.870506 -8.871387 +v -7.944263 -67.875031 -8.871387 +v 7.944263 -67.875031 -8.871387 +v -8.003206 -67.888474 -8.871387 +v 8.003206 -67.888474 -8.871387 +v -8.059484 -67.910568 -8.871387 +v 8.059484 -67.910568 -8.871387 +v -8.111842 -67.940796 -8.871387 +v 8.111842 -67.940796 -8.871387 +v -8.159110 -67.978485 -8.871387 +v 8.159110 -67.978485 -8.871387 +v -8.200232 -68.022804 -8.871387 +v 8.200232 -68.022804 -8.871387 +v -8.234289 -68.072754 -8.871387 +v 8.234289 -68.072754 -8.871387 +v 8.600315 -68.706734 -8.871389 +v 8.623717 -68.754196 -8.871389 +v 8.640725 -68.804298 -8.871389 +v 8.651048 -68.856194 -8.871389 +v 8.654509 -68.908997 -8.871389 +v 8.654865 -88.150726 -8.870916 +v 8.654916 -87.623413 -8.870884 +v -8.655128 -88.150162 -8.870590 +v -6.250000 -82.710342 -8.870234 +v 6.250000 -82.710342 -8.870234 +v -6.375863 -82.720772 -8.870234 +v 6.375864 -82.720772 -8.870234 +v -6.498291 -82.751770 -8.870234 +v 6.498292 -82.751770 -8.870234 +v -6.613948 -82.802505 -8.870234 +v 6.613949 -82.802505 -8.870234 +v -6.719677 -82.871582 -8.870234 +v 6.719678 -82.871582 -8.870234 +v -6.812595 -82.957115 -8.870234 +v 6.812596 -82.957115 -8.870234 +v -6.890167 -83.056778 -8.870234 +v 6.890168 -83.056778 -8.870234 +v -6.950275 -83.167854 -8.870234 +v 6.950276 -83.167854 -8.870234 +v -6.991283 -83.287300 -8.870234 +v 6.991284 -83.287300 -8.870234 +v -7.012071 -83.411873 -8.870235 +v 7.012072 -83.411873 -8.870235 +v -7.012071 -83.538170 -8.870235 +v 7.012072 -83.538170 -8.870235 +v -6.991283 -83.662743 -8.870235 +v 6.991284 -83.662743 -8.870235 +v -6.950275 -83.782196 -8.870236 +v 6.950276 -83.782196 -8.870236 +v -6.890167 -83.893265 -8.870236 +v 6.890168 -83.893265 -8.870236 +v -6.812595 -83.992928 -8.870236 +v 6.812596 -83.992928 -8.870236 +v -6.719677 -84.078468 -8.870236 +v 6.719678 -84.078468 -8.870236 +v -6.613948 -84.147545 -8.870237 +v 6.613949 -84.147545 -8.870237 +v -6.498291 -84.198273 -8.870237 +v 6.498292 -84.198273 -8.870237 +v -6.375863 -84.229279 -8.870237 +v 6.375864 -84.229279 -8.870237 +v -6.250000 -84.239708 -8.870237 +v 6.250000 -84.239708 -8.870237 +v -6.250000 -85.710342 -8.870240 +v 6.250000 -85.710342 -8.870240 +v -8.655663 -87.630692 -8.869853 +v 6.394467 -87.225021 -8.867422 +v 8.658508 -87.811287 -8.865870 +v -8.659051 -68.799385 -8.865033 +v 8.659075 -68.908997 -8.865000 +v 8.659224 -88.141335 -8.864799 +v -8.659422 -87.686150 -8.864544 +v 8.659423 -87.686188 -8.864541 +v -8.659651 -87.773613 -8.864230 +v -8.659663 -88.140366 -8.864223 +v 8.659719 -87.694733 -8.864120 +v -8.659905 -87.701744 -8.863854 +v 8.660055 -87.748436 -8.863647 +v 8.660093 -87.712166 -8.863587 +v -8.660176 -87.725021 -8.863470 +v 8.660176 -87.725021 -8.863470 +v -6.380760 -87.225021 -8.859118 +v -6.250000 -85.714394 -8.856697 +v 6.250000 -85.714394 -8.856697 +v 6.261949 -85.714485 -8.856697 +v -6.262019 -85.714485 -8.856697 +v 6.392529 -85.727859 -8.856697 +v -6.393373 -85.728027 -8.856697 +v 6.518866 -85.763496 -8.856698 +v -6.520405 -85.764076 -8.856698 +v 6.637195 -85.820313 -8.856698 +v -6.639289 -85.821556 -8.856698 +v 6.743991 -85.896637 -8.856698 +v -6.746439 -85.898735 -8.856698 +v 6.836079 -85.990173 -8.856698 +v -6.838628 -85.993279 -8.856698 +v 6.910710 -86.098160 -8.856699 +v -6.913075 -86.102341 -8.856699 +v 6.965665 -86.217369 -8.856699 +v -6.967538 -86.222633 -8.856699 +v 6.999307 -86.344246 -8.856699 +v -7.000377 -86.350540 -8.856699 +v 7.010633 -86.475021 -8.856699 +v -7.010599 -86.482193 -8.856699 +v 6.999307 -86.605797 -8.856700 +v -6.997897 -86.613632 -8.856700 +v 6.965665 -86.732681 -8.856700 +v -6.962655 -86.740891 -8.856700 +v 6.910710 -86.851883 -8.856700 +v -6.905933 -86.860138 -8.856700 +v 6.836079 -86.959869 -8.856701 +v -6.829443 -86.967781 -8.856701 +v 6.743991 -87.053413 -8.856701 +v -6.735489 -87.060570 -8.856701 +v 6.637195 -87.129730 -8.856701 +v -6.626904 -87.135712 -8.856701 +v 6.518866 -87.186554 -8.856701 +v -6.506958 -87.190941 -8.856701 +v 6.392529 -87.222183 -8.856701 +v 6.373562 -87.225021 -8.854689 +v -6.373351 -87.225021 -8.854586 +v -8.669722 -68.796524 -8.849219 +v -8.683119 -88.084595 -8.827445 +v -6.250000 -82.721329 -8.824458 +v 6.250000 -82.721329 -8.824458 +v -6.374053 -82.731606 -8.824459 +v 6.374053 -82.731606 -8.824459 +v -6.494723 -82.762169 -8.824459 +v 6.494724 -82.762169 -8.824459 +v -6.608717 -82.812172 -8.824459 +v 6.608718 -82.812172 -8.824459 +v -6.712927 -82.880249 -8.824459 +v 6.712928 -82.880249 -8.824459 +v -6.804511 -82.964561 -8.824459 +v 6.804512 -82.964561 -8.824459 +v -6.880967 -83.062790 -8.824459 +v 6.880968 -83.062790 -8.824459 +v -6.940213 -83.172264 -8.824459 +v 6.940214 -83.172264 -8.824459 +v -6.980629 -83.290001 -8.824460 +v 6.980630 -83.290001 -8.824460 +v -7.001119 -83.412781 -8.824460 +v 7.001120 -83.412781 -8.824460 +v -7.001119 -83.537262 -8.824460 +v 7.001120 -83.537262 -8.824460 +v -6.980629 -83.660042 -8.824461 +v 6.980630 -83.660042 -8.824461 +v -6.940213 -83.777779 -8.824461 +v 6.940214 -83.777779 -8.824461 +v -6.880967 -83.887253 -8.824461 +v 6.880968 -83.887253 -8.824461 +v -6.804511 -83.985489 -8.824461 +v 6.804512 -83.985489 -8.824461 +v -6.712927 -84.069794 -8.824462 +v 6.712928 -84.069794 -8.824462 +v -6.608717 -84.137878 -8.824462 +v 6.608718 -84.137878 -8.824462 +v -6.494723 -84.187881 -8.824462 +v 6.494724 -84.187881 -8.824462 +v -6.374053 -84.218437 -8.824462 +v 6.374053 -84.218437 -8.824462 +v -6.250000 -84.228714 -8.824462 +v 6.250000 -84.228714 -8.824462 +v -6.250000 -85.721329 -8.824466 +v 6.250000 -85.721329 -8.824466 +v -6.250000 -85.723694 -8.805767 +v 6.250000 -85.723694 -8.805767 +v 6.261801 -85.723785 -8.805767 +v -6.261871 -85.723785 -8.805767 +v 6.390786 -85.737000 -8.805767 +v -6.391620 -85.737160 -8.805767 +v 6.515577 -85.772194 -8.805768 +v -6.517099 -85.772774 -8.805768 +v 6.632460 -85.828323 -8.805768 +v -6.634529 -85.829552 -8.805768 +v 6.737951 -85.903709 -8.805768 +v -6.740368 -85.905785 -8.805768 +v 6.828911 -85.996109 -8.805768 +v -6.831429 -85.999168 -8.805768 +v 6.902630 -86.102768 -8.805769 +v -6.904967 -86.106895 -8.805769 +v 6.956913 -86.220520 -8.805769 +v -6.958765 -86.225723 -8.805769 +v 6.990144 -86.345848 -8.805769 +v -6.991200 -86.352058 -8.805769 +v 7.001331 -86.475021 -8.805769 +v -7.001297 -86.482101 -8.805769 +v 6.990144 -86.604202 -8.805770 +v -6.988751 -86.611938 -8.805770 +v 6.956913 -86.729530 -8.805770 +v -6.953939 -86.737640 -8.805770 +v 6.902630 -86.847275 -8.805770 +v -6.897913 -86.855431 -8.805770 +v 6.828911 -86.953941 -8.805771 +v -6.822358 -86.961754 -8.805771 +v 6.737951 -87.046341 -8.805771 +v -6.729553 -87.053406 -8.805771 +v 6.632460 -87.121727 -8.805771 +v -6.622294 -87.127632 -8.805771 +v 6.515577 -87.177849 -8.805771 +v -6.503816 -87.182182 -8.805771 +v 6.390786 -87.213043 -8.805771 +v -6.377687 -87.215424 -8.805771 +v -6.293362 -87.225021 -8.804871 +v 6.293362 -87.225021 -8.804866 +v -8.695483 -68.789627 -8.804531 +v -7.883975 -67.829514 -8.804489 +v 7.883976 -67.829514 -8.804489 +v -7.950373 -67.834488 -8.804489 +v 7.950374 -67.834488 -8.804489 +v -8.015289 -67.849304 -8.804489 +v 8.015289 -67.849304 -8.804489 +v -8.077271 -67.873627 -8.804489 +v 8.077271 -67.873627 -8.804489 +v -8.134936 -67.906929 -8.804489 +v 8.134936 -67.906929 -8.804489 +v -8.186995 -67.948441 -8.804489 +v 8.186995 -67.948441 -8.804489 +v -8.232284 -67.997246 -8.804489 +v 8.232284 -67.997246 -8.804489 +v -8.269792 -68.052269 -8.804489 +v 8.269792 -68.052269 -8.804489 +v 8.635818 -68.686234 -8.804491 +v 8.661592 -68.738510 -8.804491 +v 8.680324 -68.793686 -8.804491 +v 8.691691 -68.850838 -8.804491 +v 8.695503 -68.908997 -8.804491 +v -8.702402 -68.787766 -8.790410 +v 8.702414 -68.908997 -8.790386 +v 8.702538 -88.029442 -8.790133 +v -8.702914 -88.028267 -8.789547 +v 6.261930 -87.225021 -8.785077 +v -6.253335 -87.225021 -8.779648 +v -8.707968 -68.786278 -8.778160 +v -6.250000 -82.725021 -8.777529 +v 6.250000 -82.725021 -8.777529 +v -6.373446 -82.735252 -8.777529 +v 6.373446 -82.735252 -8.777529 +v -6.493525 -82.765656 -8.777529 +v 6.493526 -82.765656 -8.777529 +v -6.606960 -82.815414 -8.777529 +v 6.606961 -82.815414 -8.777529 +v -6.710660 -82.883163 -8.777529 +v 6.710660 -82.883163 -8.777529 +v -6.801793 -82.967064 -8.777529 +v 6.801794 -82.967064 -8.777529 +v -6.877874 -83.064812 -8.777530 +v 6.877875 -83.064812 -8.777530 +v -6.936830 -83.173752 -8.777530 +v 6.936831 -83.173752 -8.777530 +v -6.977049 -83.290909 -8.777530 +v 6.977050 -83.290909 -8.777530 +v -6.997437 -83.413086 -8.777531 +v 6.997438 -83.413086 -8.777531 +v -6.997437 -83.536957 -8.777531 +v 6.997438 -83.536957 -8.777531 +v -6.977049 -83.659134 -8.777531 +v 6.977050 -83.659134 -8.777531 +v -6.936830 -83.776291 -8.777531 +v 6.936831 -83.776291 -8.777531 +v -6.877874 -83.885231 -8.777532 +v 6.877875 -83.885231 -8.777532 +v -6.801793 -83.982986 -8.777532 +v 6.801794 -83.982986 -8.777532 +v -6.710660 -84.066879 -8.777532 +v 6.710660 -84.066879 -8.777532 +v -6.606960 -84.134628 -8.777532 +v 6.606961 -84.134628 -8.777532 +v -6.493525 -84.184387 -8.777532 +v 6.493526 -84.184387 -8.777532 +v -6.373446 -84.214790 -8.777533 +v 6.373446 -84.214790 -8.777533 +v -6.250000 -84.225021 -8.777533 +v 6.250000 -84.225021 -8.777533 +v -6.250000 -85.725021 -8.777535 +v 6.250000 -85.725021 -8.777535 +v 6.261780 -85.725113 -8.777535 +v -6.261850 -85.725121 -8.777535 +v -6.373446 -85.735252 -8.777535 +v 6.373446 -85.735252 -8.777535 +v 6.390536 -85.738312 -8.777535 +v -6.391368 -85.738464 -8.777535 +v -6.493525 -85.765663 -8.777535 +v 6.493526 -85.765663 -8.777535 +v 6.515107 -85.773438 -8.777535 +v -6.516625 -85.774017 -8.777535 +v -6.606960 -85.815422 -8.777535 +v 6.606961 -85.815422 -8.777535 +v 6.631782 -85.829468 -8.777535 +v -6.633848 -85.830696 -8.777535 +v -6.710660 -85.883171 -8.777536 +v 6.710660 -85.883171 -8.777536 +v 6.737086 -85.904716 -8.777536 +v -6.739501 -85.906792 -8.777536 +v -6.801793 -85.967064 -8.777536 +v 6.801794 -85.967064 -8.777536 +v 6.827886 -85.996956 -8.777536 +v -6.830400 -86.000015 -8.777536 +v -6.877874 -86.064812 -8.777536 +v 6.877875 -86.064812 -8.777536 +v 6.901474 -86.103432 -8.777536 +v -6.903807 -86.107552 -8.777536 +v -6.936830 -86.173752 -8.777536 +v 6.936831 -86.173752 -8.777536 +v 6.955660 -86.220970 -8.777536 +v -6.957509 -86.226166 -8.777536 +v -6.977049 -86.290909 -8.777536 +v 6.977050 -86.290909 -8.777536 +v 6.988832 -86.346077 -8.777537 +v -6.989887 -86.352280 -8.777537 +v -6.997437 -86.413086 -8.777537 +v 6.997438 -86.413086 -8.777537 +v 7.000000 -86.475021 -8.777537 +v -6.999967 -86.482094 -8.777537 +v -6.997437 -86.536957 -8.777537 +v 6.997438 -86.536957 -8.777537 +v 6.988832 -86.603973 -8.777537 +v -6.987442 -86.611694 -8.777537 +v -6.977049 -86.659134 -8.777538 +v 6.977050 -86.659134 -8.777538 +v 6.955660 -86.729080 -8.777538 +v -6.952693 -86.737175 -8.777538 +v -6.936830 -86.776299 -8.777538 +v 6.936831 -86.776299 -8.777538 +v 6.901474 -86.846619 -8.777538 +v -6.896763 -86.854752 -8.777538 +v -6.877874 -86.885239 -8.777538 +v 6.877875 -86.885239 -8.777538 +v 6.827886 -86.953094 -8.777538 +v -6.821343 -86.960892 -8.777538 +v -6.801793 -86.982986 -8.777538 +v 6.801794 -86.982986 -8.777538 +v 6.737086 -87.045326 -8.777538 +v -6.728703 -87.052383 -8.777538 +v -6.710660 -87.066879 -8.777538 +v 6.710660 -87.066879 -8.777538 +v 6.631782 -87.120583 -8.777539 +v -6.621634 -87.126472 -8.777539 +v -6.606960 -87.134628 -8.777539 +v 6.606961 -87.134628 -8.777539 +v 6.515107 -87.176605 -8.777539 +v -6.503366 -87.180931 -8.777539 +v -6.493525 -87.184387 -8.777539 +v 6.493526 -87.184387 -8.777539 +v 6.390536 -87.211739 -8.777539 +v -6.377460 -87.214111 -8.777539 +v 6.373446 -87.214798 -8.777539 +v 6.261780 -87.224930 -8.777539 +v -6.250000 -87.225021 -8.777539 +v 6.250000 -87.225021 -8.777539 +v 8.708680 -88.009506 -8.776550 +v 8.714624 -87.988655 -8.762262 +v -8.714772 -87.988113 -8.762125 +v -8.725518 -68.781578 -8.732035 +v -7.883975 -67.799484 -8.732002 +v 7.883976 -67.799484 -8.732002 +v -7.954847 -67.804794 -8.732002 +v 7.954848 -67.804794 -8.732002 +v -8.024139 -67.820618 -8.732002 +v 8.024139 -67.820618 -8.732002 +v -8.090299 -67.846573 -8.732002 +v 8.090299 -67.846573 -8.732002 +v -8.151849 -67.882118 -8.732002 +v 8.151849 -67.882118 -8.732002 +v -8.207417 -67.926430 -8.732002 +v 8.207417 -67.926430 -8.732002 +v -8.255757 -67.978531 -8.732002 +v 8.255757 -67.978531 -8.732002 +v -8.295794 -68.037254 -8.732002 +v 8.295794 -68.037254 -8.732002 +v 8.661819 -68.671227 -8.732004 +v 8.689331 -68.727020 -8.732004 +v 8.709326 -68.785919 -8.732004 +v 8.721459 -68.846924 -8.732004 +v 8.725529 -68.908997 -8.732005 +v -8.732276 -68.779770 -8.709442 +v 8.732279 -68.908997 -8.709433 +v -8.732450 -87.911552 -8.708911 +v 8.732429 -87.911659 -8.708831 +v -8.733816 -68.779358 -8.703678 +v -8.735166 -87.896629 -8.698441 +v -8.743841 -68.776665 -8.655730 +v -7.883975 -67.781174 -8.655711 +v 7.883976 -67.781174 -8.655711 +v -7.957579 -67.786690 -8.655711 +v 7.957580 -67.786690 -8.655711 +v -8.029537 -67.803116 -8.655711 +v 8.029537 -67.803116 -8.655711 +v -8.098246 -67.830078 -8.655711 +v 8.098246 -67.830078 -8.655711 +v -8.162167 -67.866989 -8.655711 +v 8.162167 -67.866989 -8.655711 +v -8.219873 -67.913010 -8.655711 +v 8.219873 -67.913010 -8.655711 +v -8.270078 -67.967110 -8.655711 +v 8.270078 -67.967110 -8.655711 +v -8.311656 -68.028099 -8.655711 +v 8.311656 -68.028099 -8.655711 +v 8.677682 -68.662064 -8.655713 +v 8.706252 -68.720009 -8.655713 +v 8.727016 -68.781174 -8.655713 +v 8.739619 -68.844536 -8.655713 +v 8.743844 -68.908997 -8.655713 +v 8.745569 -87.819061 -8.643839 +v 8.746379 -87.810043 -8.637493 +v -8.747477 -68.775696 -8.627674 +v -8.747810 -87.791168 -8.624223 +v -7.883975 -67.775017 -8.577494 +v 7.883976 -67.775017 -8.577494 +v -7.958496 -67.780609 -8.577494 +v 7.958497 -67.780609 -8.577494 +v -8.031352 -67.797226 -8.577494 +v 8.031352 -67.797226 -8.577494 +v -8.100917 -67.824539 -8.577494 +v 8.100917 -67.824539 -8.577494 +v -8.165634 -67.861900 -8.577494 +v 8.165634 -67.861900 -8.577494 +v -8.224061 -67.908485 -8.577494 +v 8.224061 -67.908485 -8.577494 +v -8.274891 -67.963280 -8.577494 +v 8.274891 -67.963280 -8.577494 +v -8.316987 -68.025017 -8.577494 +v 8.316987 -68.025017 -8.577494 +v 8.683013 -68.658989 -8.577496 +v 8.711940 -68.717651 -8.577496 +v -8.750000 -68.775017 -8.577496 +v 8.732964 -68.779579 -8.577496 +v 8.745723 -68.843727 -8.577497 +v 8.750000 -68.908997 -8.577497 +v -12.578540 -80.304520 -8.577523 +v 12.578540 -80.304520 -8.577523 +v -12.335430 -80.311523 -8.577523 +v 12.335430 -80.311523 -8.577523 +v -12.819580 -80.336906 -8.577523 +v 12.819580 -80.336906 -8.577523 +v -12.096640 -80.357712 -8.577523 +v 12.096640 -80.357712 -8.577523 +v -13.052220 -80.407814 -8.577523 +v 13.052220 -80.407814 -8.577523 +v -11.868470 -80.441887 -8.577523 +v 11.868470 -80.441887 -8.577523 +v -13.270350 -80.515388 -8.577523 +v 13.270350 -80.515388 -8.577523 +v -11.656890 -80.561836 -8.577523 +v 11.656890 -80.561836 -8.577523 +v -11.467480 -80.714394 -8.577524 +v 11.467480 -80.714394 -8.577524 +v -11.305210 -80.895554 -8.577524 +v 11.305210 -80.895554 -8.577524 +v -11.174360 -81.100563 -8.577525 +v 11.174360 -81.100563 -8.577525 +v -11.078350 -81.324020 -8.577525 +v 11.078350 -81.324020 -8.577525 +v -11.019720 -81.560059 -8.577526 +v 11.019720 -81.560059 -8.577526 +v -14.938910 -81.603554 -8.577526 +v 14.938910 -81.603554 -8.577526 +v -11.000000 -81.802467 -8.577526 +v 11.000000 -81.802467 -8.577526 +v -13.500000 -82.675026 -8.577528 +v 13.500000 -82.675026 -8.577528 +v -13.681050 -82.690025 -8.577528 +v -13.318950 -82.690025 -8.577528 +v 13.318950 -82.690025 -8.577528 +v 13.681050 -82.690025 -8.577528 +v -13.857170 -82.734627 -8.577529 +v -13.142830 -82.734627 -8.577529 +v 13.142830 -82.734627 -8.577529 +v 13.857170 -82.734627 -8.577529 +v -14.023540 -82.807602 -8.577529 +v -12.976460 -82.807602 -8.577529 +v 12.976460 -82.807602 -8.577529 +v 14.023540 -82.807602 -8.577529 +v -16.518681 -82.817017 -8.577529 +v 16.518681 -82.817017 -8.577529 +v -14.175630 -82.906967 -8.577529 +v -12.824370 -82.906967 -8.577529 +v 12.824370 -82.906967 -8.577529 +v 14.175630 -82.906967 -8.577529 +v -14.309300 -83.030014 -8.577529 +v -12.690700 -83.030014 -8.577529 +v 12.690700 -83.030014 -8.577529 +v 14.309300 -83.030014 -8.577529 +v -14.420880 -83.173378 -8.577530 +v -12.579120 -83.173378 -8.577530 +v 12.579120 -83.173378 -8.577530 +v 14.420880 -83.173378 -8.577530 +v -14.507350 -83.333160 -8.577530 +v -12.492650 -83.333160 -8.577530 +v 12.492650 -83.333160 -8.577530 +v 14.507350 -83.333160 -8.577530 +v -14.566340 -83.504990 -8.577530 +v -12.433660 -83.504990 -8.577530 +v 12.433660 -83.504990 -8.577530 +v 14.566340 -83.504990 -8.577530 +v -14.596240 -83.684189 -8.577531 +v -12.403760 -83.684189 -8.577531 +v 12.403760 -83.684189 -8.577531 +v 14.596240 -83.684189 -8.577531 +v -14.596240 -83.865860 -8.577531 +v -12.403760 -83.865860 -8.577531 +v 12.403760 -83.865860 -8.577531 +v 14.596240 -83.865860 -8.577531 +v -14.566340 -84.045059 -8.577532 +v -12.433660 -84.045059 -8.577532 +v 12.433660 -84.045059 -8.577532 +v 14.566340 -84.045059 -8.577532 +v -18.000280 -84.148575 -8.577532 +v 18.000280 -84.148575 -8.577532 +v -14.507350 -84.216888 -8.577532 +v -12.492650 -84.216888 -8.577532 +v 12.492650 -84.216888 -8.577532 +v 14.507350 -84.216888 -8.577532 +v -14.420880 -84.376663 -8.577533 +v -12.579120 -84.376663 -8.577533 +v 12.579120 -84.376663 -8.577533 +v 14.420880 -84.376663 -8.577533 +v -14.309300 -84.520035 -8.577533 +v -12.690700 -84.520035 -8.577533 +v 12.690700 -84.520035 -8.577533 +v 14.309300 -84.520035 -8.577533 +v -14.175630 -84.643082 -8.577533 +v -12.824370 -84.643082 -8.577533 +v 12.824370 -84.643082 -8.577533 +v 14.175630 -84.643082 -8.577533 +v -14.023540 -84.742447 -8.577534 +v -12.976460 -84.742447 -8.577534 +v 12.976460 -84.742447 -8.577534 +v 14.023540 -84.742447 -8.577534 +v -13.857170 -84.815422 -8.577534 +v -13.142830 -84.815422 -8.577534 +v 13.142830 -84.815422 -8.577534 +v 13.857170 -84.815422 -8.577534 +v -13.681050 -84.860023 -8.577534 +v -13.318950 -84.860023 -8.577534 +v 13.318950 -84.860023 -8.577534 +v 13.681050 -84.860023 -8.577534 +v -13.500000 -84.875023 -8.577534 +v 13.500000 -84.875023 -8.577534 +v -19.374910 -85.590309 -8.577536 +v 19.374910 -85.590309 -8.577536 +v -19.418671 -85.647789 -8.577536 +v 19.418671 -85.647789 -8.577536 +v -19.453690 -85.710968 -8.577536 +v 19.453690 -85.710968 -8.577536 +v -19.479231 -85.778542 -8.577536 +v 19.479231 -85.778542 -8.577536 +v -19.494780 -85.849083 -8.577536 +v 19.494780 -85.849083 -8.577536 +v -19.500000 -85.921135 -8.577536 +v 19.500000 -85.921135 -8.577536 +v -17.500000 -86.125023 -8.577537 +v -13.500000 -86.125023 -8.577537 +v 13.500000 -86.125023 -8.577537 +v 17.500000 -86.125023 -8.577537 +v -17.631680 -86.135933 -8.577537 +v -13.368320 -86.135933 -8.577537 +v 13.368320 -86.135933 -8.577537 +v 17.631680 -86.135933 -8.577537 +v -17.759760 -86.168373 -8.577537 +v -13.240240 -86.168373 -8.577537 +v 13.240240 -86.168373 -8.577537 +v 17.759760 -86.168373 -8.577537 +v -17.880760 -86.221443 -8.577537 +v -13.119240 -86.221443 -8.577537 +v 13.119240 -86.221443 -8.577537 +v 17.880760 -86.221443 -8.577537 +v -17.991369 -86.293709 -8.577537 +v -13.008630 -86.293709 -8.577537 +v 13.008630 -86.293709 -8.577537 +v 17.991369 -86.293709 -8.577537 +v -18.088579 -86.383202 -8.577538 +v -12.911420 -86.383202 -8.577538 +v 12.911420 -86.383202 -8.577538 +v 18.088579 -86.383202 -8.577538 +v -18.169729 -86.487465 -8.577538 +v -12.830270 -86.487465 -8.577538 +v 12.830270 -86.487465 -8.577538 +v 18.169729 -86.487465 -8.577538 +v -18.232620 -86.603668 -8.577538 +v -12.767380 -86.603668 -8.577538 +v 12.767380 -86.603668 -8.577538 +v 18.232620 -86.603668 -8.577538 +v -18.275520 -86.728638 -8.577538 +v -12.724480 -86.728638 -8.577538 +v 12.724480 -86.728638 -8.577538 +v 18.275520 -86.728638 -8.577538 +v -18.297270 -86.858963 -8.577538 +v -12.702730 -86.858963 -8.577538 +v 12.702730 -86.858963 -8.577538 +v 18.297270 -86.858963 -8.577538 +v -18.297270 -86.991089 -8.577538 +v -12.702730 -86.991089 -8.577538 +v 12.702730 -86.991089 -8.577538 +v 18.297270 -86.991089 -8.577538 +v -18.275520 -87.121414 -8.577538 +v -12.724480 -87.121414 -8.577538 +v 12.724480 -87.121414 -8.577538 +v 18.275520 -87.121414 -8.577538 +v -18.232620 -87.246384 -8.577539 +v -12.767380 -87.246384 -8.577539 +v 12.767380 -87.246384 -8.577539 +v 18.232620 -87.246384 -8.577539 +v -18.169729 -87.362579 -8.577539 +v -12.830270 -87.362579 -8.577539 +v 12.830270 -87.362579 -8.577539 +v 18.169729 -87.362579 -8.577539 +v -18.088579 -87.466850 -8.577539 +v -12.911420 -87.466850 -8.577539 +v 12.911420 -87.466850 -8.577539 +v 18.088579 -87.466850 -8.577539 +v -17.991369 -87.556335 -8.577539 +v -13.008630 -87.556335 -8.577539 +v 13.008630 -87.556335 -8.577539 +v 17.991369 -87.556335 -8.577539 +v -17.880760 -87.628601 -8.577540 +v -13.119240 -87.628601 -8.577540 +v 13.119240 -87.628601 -8.577540 +v 17.880760 -87.628601 -8.577540 +v -17.759760 -87.681679 -8.577540 +v -13.240240 -87.681679 -8.577540 +v 13.240240 -87.681679 -8.577540 +v 17.759760 -87.681679 -8.577540 +v -17.631680 -87.714111 -8.577540 +v -13.368320 -87.714111 -8.577540 +v 13.368320 -87.714111 -8.577540 +v 17.631680 -87.714111 -8.577540 +v -17.500000 -87.725021 -8.577540 +v -13.500000 -87.725021 -8.577540 +v -11.000000 -87.725021 -8.577540 +v -8.750000 -87.725021 -8.577540 +v 8.750000 -87.725021 -8.577540 +v 11.000000 -87.725021 -8.577540 +v 13.500000 -87.725021 -8.577540 +v 17.500000 -87.725021 -8.577540 +v -11.004440 -87.819130 -8.577540 +v 11.004440 -87.819130 -8.577540 +v -11.035440 -87.988899 -8.577540 +v 11.035440 -87.988899 -8.577540 +v -11.095170 -88.150803 -8.577541 +v 11.095170 -88.150803 -8.577541 +v -19.500000 -88.225021 -8.577541 +v 19.500000 -88.225021 -8.577541 +v -11.181850 -88.300026 -8.577541 +v 11.181850 -88.300026 -8.577541 +v -19.493839 -88.303238 -8.577541 +v 19.493839 -88.303238 -8.577541 +v -19.475531 -88.379532 -8.577541 +v 19.475531 -88.379532 -8.577541 +v -11.292890 -88.432129 -8.577542 +v 11.292890 -88.432129 -8.577542 +v -19.445499 -88.452019 -8.577542 +v 19.445499 -88.452019 -8.577542 +v -19.404510 -88.518921 -8.577542 +v 19.404510 -88.518921 -8.577542 +v -11.425000 -88.543175 -8.577542 +v 11.425000 -88.543175 -8.577542 +v -19.353550 -88.578575 -8.577542 +v 19.353550 -88.578575 -8.577542 +v -19.293890 -88.629532 -8.577542 +v 19.293890 -88.629532 -8.577542 +v -11.574220 -88.629852 -8.577542 +v 11.574220 -88.629852 -8.577542 +v -19.226990 -88.670525 -8.577542 +v 19.226990 -88.670525 -8.577542 +v -11.736130 -88.689583 -8.577542 +v 11.736130 -88.689583 -8.577542 +v -19.154510 -88.700554 -8.577542 +v 19.154510 -88.700554 -8.577542 +v -19.078220 -88.718872 -8.577542 +v 19.078220 -88.718872 -8.577542 +v -11.905890 -88.720589 -8.577542 +v 11.905890 -88.720589 -8.577542 +v -19.000000 -88.725021 -8.577542 +v -12.000000 -88.725021 -8.577542 +v 12.000000 -88.725021 -8.577542 +v 19.000000 -88.725021 -8.577542 +v -7.883975 -67.775017 -8.360589 +v 7.883976 -67.775017 -8.360589 +v -7.958939 -67.780670 -8.360589 +v 7.958940 -67.780670 -8.360589 +v -8.032209 -67.797501 -8.360589 +v 8.032209 -67.797501 -8.360589 +v -8.102128 -67.825119 -8.360589 +v 8.102128 -67.825119 -8.360589 +v -8.167116 -67.862907 -8.360589 +v 8.167116 -67.862907 -8.360589 +v -8.225702 -67.910019 -8.360589 +v 8.225702 -67.910019 -8.360589 +v -8.276563 -67.965378 -8.360589 +v 8.276563 -67.965378 -8.360589 +v -8.316987 -68.025017 -8.360589 +v 8.316987 -68.025017 -8.360589 +v -8.292389 -67.995796 -8.288227 +v 8.292389 -67.995796 -8.288227 +v -6.250000 -82.725021 -8.277529 +v 6.250000 -82.725021 -8.277529 +v -6.373446 -82.735252 -8.277529 +v 6.373446 -82.735252 -8.277529 +v -6.493525 -82.765663 -8.277529 +v 6.493526 -82.765663 -8.277529 +v -6.606960 -82.815414 -8.277529 +v 6.606961 -82.815414 -8.277529 +v -6.710660 -82.883171 -8.277529 +v 6.710660 -82.883171 -8.277529 +v -6.801793 -82.967064 -8.277529 +v 6.801794 -82.967064 -8.277529 +v -6.877874 -83.064812 -8.277529 +v 6.877875 -83.064812 -8.277529 +v -6.936830 -83.173752 -8.277530 +v 6.936831 -83.173752 -8.277530 +v -6.977049 -83.290909 -8.277530 +v 6.977050 -83.290909 -8.277530 +v -6.997437 -83.413086 -8.277530 +v 6.997438 -83.413086 -8.277530 +v -6.997437 -83.536957 -8.277531 +v 6.997438 -83.536957 -8.277531 +v -6.977049 -83.659134 -8.277531 +v 6.977050 -83.659134 -8.277531 +v -6.936830 -83.776299 -8.277531 +v 6.936831 -83.776299 -8.277531 +v -6.877874 -83.885231 -8.277531 +v 6.877875 -83.885231 -8.277531 +v -6.801793 -83.982986 -8.277532 +v 6.801794 -83.982986 -8.277532 +v -6.710660 -84.066879 -8.277532 +v 6.710660 -84.066879 -8.277532 +v -6.606960 -84.134628 -8.277532 +v 6.606961 -84.134628 -8.277532 +v -6.493525 -84.184387 -8.277532 +v 6.493526 -84.184387 -8.277532 +v -6.373446 -84.214798 -8.277532 +v 6.373446 -84.214798 -8.277532 +v -6.250000 -84.225021 -8.277532 +v 6.250000 -84.225021 -8.277532 +v -6.250000 -85.725021 -8.277535 +v 6.250000 -85.725021 -8.277535 +v -6.373446 -85.735252 -8.277535 +v 6.373446 -85.735252 -8.277535 +v -6.493525 -85.765663 -8.277535 +v 6.493526 -85.765663 -8.277535 +v -6.606960 -85.815422 -8.277535 +v 6.606961 -85.815422 -8.277535 +v -6.710660 -85.883171 -8.277535 +v 6.710660 -85.883171 -8.277535 +v -6.801793 -85.967064 -8.277536 +v 6.801794 -85.967064 -8.277536 +v -6.877874 -86.064812 -8.277536 +v 6.877875 -86.064812 -8.277536 +v -6.936830 -86.173752 -8.277536 +v 6.936831 -86.173752 -8.277536 +v -6.977049 -86.290909 -8.277536 +v 6.977050 -86.290909 -8.277536 +v -6.997437 -86.413094 -8.277537 +v 6.997438 -86.413094 -8.277537 +v -6.997437 -86.536957 -8.277537 +v 6.997438 -86.536957 -8.277537 +v -6.977049 -86.659142 -8.277537 +v 6.977050 -86.659142 -8.277537 +v -6.936830 -86.776299 -8.277538 +v 6.936831 -86.776299 -8.277538 +v -6.877874 -86.885239 -8.277538 +v 6.877875 -86.885239 -8.277538 +v -6.801793 -86.982986 -8.277538 +v 6.801794 -86.982986 -8.277538 +v -6.710660 -87.066879 -8.277538 +v 6.710660 -87.066879 -8.277538 +v -6.606960 -87.134628 -8.277538 +v 6.606961 -87.134628 -8.277538 +v -6.493525 -87.184387 -8.277539 +v 6.493526 -87.184387 -8.277539 +v -6.373446 -87.214798 -8.277539 +v 6.373446 -87.214798 -8.277539 +v -6.250000 -87.225021 -8.277539 +v 6.250000 -87.225021 -8.277539 +v -7.883975 -67.782364 -8.275146 +v 7.883976 -67.782364 -8.275146 +v -7.957824 -67.788025 -8.274638 +v 7.957825 -67.788025 -8.274638 +v -8.030003 -67.804611 -8.274638 +v 8.030003 -67.804611 -8.274638 +v -8.098882 -67.831818 -8.274638 +v 8.098882 -67.831818 -8.274638 +v -8.162901 -67.869049 -8.274638 +v 8.162901 -67.869049 -8.274638 +v -8.220615 -67.915459 -8.274638 +v 8.220615 -67.915459 -8.274638 +v -8.270720 -67.969986 -8.274638 +v 8.270720 -67.969986 -8.274638 +v -8.256853 -67.974068 -8.217803 +v 8.256853 -67.974068 -8.217803 +v -7.883975 -67.804214 -8.192216 +v 7.883976 -67.804214 -8.192216 +v -7.954508 -67.809891 -8.191246 +v 7.954509 -67.809891 -8.191246 +v -8.023449 -67.825714 -8.191246 +v 8.023449 -67.825714 -8.191246 +v -8.089236 -67.851707 -8.191246 +v 8.089236 -67.851707 -8.191246 +v -8.150382 -67.887268 -8.191246 +v 8.150382 -67.887268 -8.191246 +v -8.205506 -67.931595 -8.191246 +v 8.205506 -67.931595 -8.191246 +v -8.240050 -67.967690 -8.191008 +v 8.240050 -67.967690 -8.191008 +v -8.211332 -67.960388 -8.151202 +v 8.211332 -67.960388 -8.151202 +v -8.183160 -67.956497 -8.117618 +v 8.183160 -67.956497 -8.117618 +v -7.883975 -67.839920 -8.114240 +v 7.883976 -67.839920 -8.114240 +v -7.949093 -67.845589 -8.112896 +v 7.949094 -67.845589 -8.112896 +v -8.012743 -67.860207 -8.112896 +v 8.012743 -67.860207 -8.112896 +v -8.073479 -67.884209 -8.112896 +v 8.073479 -67.884209 -8.112896 +v -8.129932 -67.917030 -8.112896 +v 8.129932 -67.917030 -8.112896 +v -8.178536 -67.956116 -8.112528 +v 8.178536 -67.956116 -8.112528 +v -8.157045 -67.955124 -8.090209 +v 8.157045 -67.955124 -8.090209 +v -8.750000 -68.775017 -8.060591 +v -7.883975 -67.888420 -8.043510 +v 7.883976 -67.888420 -8.043510 +v -8.102482 -67.957672 -8.041930 +v -7.883975 -67.889725 -8.041920 +v 7.883976 -67.889725 -8.041920 +v -7.941741 -67.894081 -8.041920 +v 7.941741 -67.894081 -8.041920 +v -7.998201 -67.907051 -8.041920 +v 7.998202 -67.907051 -8.041920 +v -8.052081 -67.928337 -8.041920 +v 8.052081 -67.928337 -8.041920 +v 8.102197 -67.957703 -8.041705 +v -8.095445 -67.958450 -8.036456 +v 8.095445 -67.958450 -8.036456 +v -8.748234 -68.771957 -8.013471 +v -8.032577 -67.969238 -7.993957 +v 8.032577 -67.969238 -7.993957 +v -8.028182 -67.970238 -7.991384 +v 8.028182 -67.970238 -7.991384 +v -7.883975 -67.948288 -7.982109 +v 7.883976 -67.948288 -7.982109 +v -7.883975 -67.950241 -7.980431 +v 7.883976 -67.950241 -7.980431 +v -7.932669 -67.953911 -7.980431 +v 7.932670 -67.953911 -7.980431 +v -7.980260 -67.964851 -7.980431 +v 7.980261 -67.964851 -7.980431 +v 8.683013 -68.658989 -7.980206 +v 8.694860 -68.680740 -7.980206 +v 8.711940 -68.717651 -7.980206 +v 8.725236 -68.753586 -7.980206 +v 8.732964 -68.779579 -7.980206 +v 8.743771 -68.830307 -7.980206 +v 8.750000 -68.908997 -7.980206 +v -8.743682 -68.764076 -7.974754 +v -7.957057 -67.990189 -7.956198 +v 7.957057 -67.990189 -7.956198 +v -7.927074 -68.000671 -7.944809 +v 7.927075 -68.000671 -7.944809 +v -8.736941 -68.752396 -7.941766 +v -7.883975 -68.017769 -7.931843 +v 7.883976 -68.017769 -7.931843 +v -8.733173 -68.745865 -7.928078 +v 8.743844 -68.868752 -7.913136 +v 8.658415 -68.629776 -7.907844 +v -8.725522 -68.734077 -7.904944 +v 8.688237 -68.684135 -7.894255 +v 8.718162 -68.755898 -7.894255 +v 8.736421 -68.831482 -7.894255 +v 8.652441 -68.625015 -7.894172 +v 8.645149 -68.619942 -7.878685 +v -8.708992 -68.714867 -7.865413 +v -8.705719 -68.711716 -7.858665 +v 8.725529 -68.829498 -7.847716 +v -8.695486 -68.702805 -7.839159 +v 8.622879 -68.608040 -7.837419 +v 8.629557 -68.631042 -7.810863 +v 8.668568 -68.694229 -7.810863 +v 8.697149 -68.762772 -7.810863 +v 8.606076 -68.601662 -7.810624 +v 8.709220 -68.807236 -7.810612 +v -8.669124 -68.684631 -7.796871 +v 8.695503 -68.792206 -7.785559 +v -8.750000 -77.743896 -7.777516 +v 8.750000 -77.743896 -7.777516 +v -8.750000 -71.275017 -7.777502 +v 8.750000 -71.275017 -7.777502 +v -8.654486 -68.676620 -7.776861 +v 8.577358 -68.594360 -7.770819 +v -8.750000 -77.900330 -7.765205 +v 8.750000 -77.900330 -7.765205 +v 8.672526 -68.771446 -7.750963 +v -8.617569 -68.660851 -7.733800 +v 8.555671 -68.600426 -7.732512 +v 8.600420 -68.652382 -7.732512 +v 8.636437 -68.710716 -7.732512 +v 8.658027 -68.760307 -7.732399 +v -8.750000 -78.052910 -7.728574 +v 8.750000 -78.052910 -7.728574 +v 8.654509 -68.757790 -7.728195 +v -8.603529 -68.656151 -7.719574 +v 8.523071 -68.589111 -7.709825 +v -8.743876 -71.353043 -7.699485 +v 8.743866 -71.353104 -7.699425 +v -8.743844 -77.743896 -7.699299 +v 8.743844 -77.743896 -7.699299 +v -8.743844 -77.888092 -7.687951 +v 8.743844 -77.888092 -7.687951 +v -8.556067 -68.644165 -7.678018 +v 8.603553 -68.727089 -7.677036 +v -8.550591 -68.643112 -7.673776 +v 8.738440 -71.381920 -7.670604 +v -8.750000 -78.197884 -7.668524 +v 8.750000 -78.197884 -7.668524 +v 8.474703 -68.596008 -7.661536 +v 8.521155 -68.635269 -7.661536 +v 8.560852 -68.681351 -7.661537 +v -8.736115 -71.392029 -7.660492 +v 8.461471 -68.592422 -7.656073 +v -8.743844 -78.028740 -7.654185 +v 8.743844 -78.028740 -7.654185 +v 8.543893 -68.700882 -7.633343 +v -8.485958 -68.634850 -7.630610 +v 8.537897 -68.698669 -7.629665 +v -8.480557 -68.634468 -7.627517 +v -8.725654 -71.429138 -7.623380 +v 8.725646 -71.429169 -7.623356 +v -8.725529 -77.743896 -7.623008 +v 8.725529 -77.743896 -7.623008 +v 8.404654 -68.601898 -7.617197 +v -8.725529 -77.876160 -7.612599 +v 8.725529 -77.876160 -7.612599 +v 8.394207 -68.604210 -7.611000 +v 8.395533 -68.618652 -7.600048 +v 8.439410 -68.645172 -7.600048 +v 8.478567 -68.678261 -7.600048 +v 8.480765 -68.680779 -7.599854 +v 8.372873 -68.609436 -7.599191 +v -8.743844 -78.162376 -7.598832 +v 8.743844 -78.162376 -7.598832 +v 8.476995 -68.679787 -7.598190 +v -8.410904 -68.633148 -7.593637 +v -8.404444 -68.633339 -7.591018 +v -8.750000 -78.331680 -7.586535 +v 8.750000 -78.331680 -7.586535 +v 8.343472 -68.617722 -7.584700 +v -8.725529 -78.005165 -7.581627 +v 8.725529 -78.005165 -7.581627 +v 8.707687 -71.476318 -7.576200 +v 8.323082 -68.624168 -7.575815 +v 8.404509 -68.664337 -7.572443 +v -8.331543 -68.638824 -7.567016 +v -8.324681 -68.639648 -7.565259 +v 8.375784 -68.660019 -7.565248 +v 8.292542 -68.634850 -7.564231 +v -8.701675 -71.489471 -7.563052 +v 8.330461 -68.655098 -7.557047 +v 8.328218 -68.654907 -7.556738 +v -8.250000 -68.651749 -7.551459 +v 8.250000 -68.651749 -7.551459 +v 8.695695 -71.501640 -7.550882 +v -8.695626 -71.501770 -7.550750 +v -8.695503 -77.743896 -7.550521 +v 8.695503 -77.743896 -7.550521 +v -8.695503 -77.864822 -7.541005 +v 8.695503 -77.864822 -7.541005 +v -8.725529 -78.127739 -7.530856 +v 8.725529 -78.127739 -7.530856 +v -8.743844 -78.285706 -7.523256 +v 8.743844 -78.285706 -7.523256 +v -8.695503 -77.982765 -7.512688 +v 8.695503 -77.982765 -7.512688 +v 8.663172 -71.556602 -7.495919 +v -8.750000 -78.451004 -7.484625 +v 8.750000 -78.451004 -7.484625 +v 8.654696 -71.568649 -7.483869 +v -8.654509 -77.743896 -7.483624 +v 8.654509 -77.743896 -7.483624 +v -8.652938 -71.571060 -7.481460 +v -8.654509 -77.854355 -7.474931 +v 8.654509 -77.854355 -7.474931 +v -8.695503 -78.094833 -7.466269 +v 8.695503 -78.094833 -7.466269 +v -8.725529 -78.240860 -7.461535 +v 8.725529 -78.240860 -7.461535 +v -8.654509 -77.962090 -7.449065 +v 8.654509 -77.962090 -7.449065 +v -8.743844 -78.395691 -7.429317 +v 8.743844 -78.395691 -7.429317 +v 8.607868 -71.624199 -7.428317 +v -8.603843 -71.628281 -7.424238 +v -8.603553 -77.743896 -7.423963 +v 8.603553 -77.743896 -7.423963 +v 8.602103 -71.630020 -7.422505 +v -8.603553 -77.845024 -7.416005 +v 8.603553 -77.845024 -7.416005 +v -8.591882 -71.639870 -7.412651 +v -8.654509 -78.064461 -7.406663 +v 8.654509 -78.064461 -7.406663 +v -8.695503 -78.198257 -7.402892 +v 8.695503 -78.198257 -7.402892 +v -8.603553 -77.943657 -7.392324 +v 8.603553 -77.943657 -7.392324 +v -8.725529 -78.341743 -7.375371 +v 8.725529 -78.341743 -7.375371 +v 8.544389 -71.679169 -7.373355 +v -8.544152 -71.679337 -7.373183 +v -8.543893 -77.743896 -7.373008 +v 8.543893 -77.743896 -7.373008 +v -8.543893 -77.837051 -7.365677 +v 8.543893 -77.837051 -7.365677 +v -8.750000 -78.552910 -7.365304 +v 8.750000 -78.552910 -7.365304 +v -8.532213 -71.687759 -7.364760 +v -8.603553 -78.037376 -7.353505 +v 8.603553 -78.037376 -7.353505 +v -8.654509 -78.158936 -7.348770 +v 8.654509 -78.158936 -7.348770 +v -8.543893 -77.927910 -7.343863 +v 8.543893 -77.927910 -7.343863 +v 8.485209 -71.716240 -7.336280 +v 8.477141 -71.720451 -7.332073 +v -8.476995 -77.743896 -7.332013 +v 8.476995 -77.743896 -7.332013 +v -8.472437 -71.722824 -7.329706 +v -8.476995 -77.830635 -7.325187 +v 8.476995 -77.830635 -7.325187 +v -8.695503 -78.290489 -7.324115 +v 8.695503 -78.290489 -7.324115 +v -8.743844 -78.489632 -7.319328 +v 8.743844 -78.489632 -7.319328 +v 8.425650 -71.743149 -7.309371 +v -8.543893 -78.014244 -7.308104 +v 8.543893 -78.014244 -7.308104 +v -8.413760 -71.747437 -7.305080 +v -8.476995 -77.915245 -7.304874 +v 8.476995 -77.915245 -7.304874 +v 8.404727 -71.750481 -7.302045 +v -8.404631 -71.750511 -7.302013 +v -8.404509 -77.743896 -7.301988 +v 8.404509 -77.743896 -7.301988 +v -8.603553 -78.123863 -7.300504 +v 8.603553 -78.123863 -7.300504 +v -8.404509 -77.825943 -7.295531 +v 8.404509 -77.825943 -7.295531 +v 8.365875 -71.761414 -7.291115 +v -8.350766 -71.764763 -7.287762 +v 8.328361 -71.768845 -7.283681 +v -8.328335 -71.768845 -7.283677 +v -8.328218 -77.743896 -7.283672 +v 8.328218 -77.743896 -7.283672 +v 8.305572 -71.771919 -7.280600 +v -8.290945 -71.773338 -7.279182 +v -8.250000 -71.775024 -7.277503 +v 8.250000 -71.775024 -7.277503 +v -8.250000 -77.743896 -7.277516 +v 8.250000 -77.743896 -7.277516 +v -8.750000 -81.675026 -7.277525 +v 8.750000 -81.675026 -7.277525 +v -8.750000 -87.725029 -7.277540 +v 8.750000 -87.725029 -7.277540 +v -8.745563 -87.819138 -7.277540 +v 8.745563 -87.819138 -7.277540 +v -8.714558 -87.988899 -7.277540 +v 8.714558 -87.988899 -7.277540 +v -8.654827 -88.150803 -7.277541 +v 8.654827 -88.150803 -7.277541 +v -8.568150 -88.300034 -7.277541 +v 8.568150 -88.300034 -7.277541 +v -8.457107 -88.432137 -7.277541 +v 8.457107 -88.432137 -7.277541 +v -8.325005 -88.543175 -7.277542 +v 8.325005 -88.543175 -7.277542 +v -8.175779 -88.629852 -7.277542 +v 8.175779 -88.629852 -7.277542 +v -8.013873 -88.689583 -7.277542 +v 8.013873 -88.689583 -7.277542 +v -7.844108 -88.720589 -7.277542 +v 7.844109 -88.720589 -7.277542 +v -7.750000 -88.725029 -7.277542 +v 7.750000 -88.725029 -7.277542 +v -8.328218 -77.823074 -7.277441 +v 8.328218 -77.823074 -7.277441 +v -8.654509 -78.243187 -7.276811 +v 8.654509 -78.243187 -7.276811 +v -8.404509 -77.905968 -7.276319 +v 8.404509 -77.905968 -7.276319 +v -8.725529 -78.427910 -7.274486 +v 8.725529 -78.427910 -7.274486 +v -8.476995 -77.995628 -7.271577 +v 8.476995 -77.995628 -7.271577 +v -8.250000 -77.822113 -7.271361 +v 8.250000 -77.822113 -7.271361 +v -8.543893 -78.093918 -7.259280 +v 8.543893 -78.093918 -7.259280 +v -8.328218 -77.900307 -7.258900 +v 8.328218 -77.900307 -7.258900 +v -8.250000 -77.898407 -7.253045 +v 8.250000 -77.898407 -7.253045 +v -8.750000 -81.345833 -7.250247 +v 8.750000 -81.345833 -7.250247 +v -8.404509 -77.982002 -7.244824 +v 8.404509 -77.982002 -7.244824 +v -8.603553 -78.201004 -7.234624 +v 8.603553 -78.201004 -7.234624 +v -8.695503 -78.369270 -7.231879 +v 8.695503 -78.369270 -7.231879 +v -8.750000 -78.634903 -7.231509 +v 8.750000 -78.634903 -7.231509 +v -8.328218 -77.973686 -7.228505 +v 8.328218 -77.973686 -7.228505 +v -8.476995 -78.069817 -7.226114 +v 8.476995 -78.069817 -7.226114 +v -8.250000 -77.970894 -7.223020 +v 8.250000 -77.970894 -7.223020 +v -8.404509 -78.052170 -7.201824 +v 8.404509 -78.052170 -7.201824 +v -8.543893 -78.164970 -7.198594 +v 8.543893 -78.164970 -7.198594 +v -8.743844 -78.565208 -7.195999 +v 8.743844 -78.565208 -7.195999 +v -8.654509 -78.315147 -7.192557 +v 8.654509 -78.315147 -7.192557 +v -8.328218 -78.041405 -7.187006 +v 8.328218 -78.041405 -7.187006 +v -8.250000 -78.037788 -7.182025 +v 8.250000 -78.037788 -7.182025 +v -8.476995 -78.135986 -7.169606 +v 8.476995 -78.135986 -7.169606 +v -8.750000 -81.025627 -7.169158 +v 8.750000 -81.025627 -7.169158 +v -8.725529 -78.497231 -7.161363 +v 8.725529 -78.497231 -7.161363 +v -8.603553 -78.266884 -7.157489 +v 8.603553 -78.266884 -7.157489 +v -8.404509 -78.114754 -7.148375 +v 8.404509 -78.114754 -7.148375 +v -8.328218 -78.101799 -7.135424 +v 8.328218 -78.101799 -7.135424 +v -8.250000 -78.097450 -7.131071 +v 8.250000 -78.097450 -7.131071 +v -8.695503 -78.432648 -7.128455 +v 8.695503 -78.432648 -7.128455 +v -8.543893 -78.225655 -7.127539 +v 8.543893 -78.225655 -7.127539 +v -8.476995 -78.192490 -7.103442 +v 8.476995 -78.192490 -7.103442 +v -8.654509 -78.373039 -7.098084 +v 8.654509 -78.373039 -7.098084 +v -8.750000 -78.694954 -7.086535 +v 8.750000 -78.694954 -7.086535 +v -8.404509 -78.168198 -7.085794 +v 8.404509 -78.168198 -7.085794 +v -8.328218 -78.153381 -7.075028 +v 8.328218 -78.153381 -7.075028 +v -8.250000 -78.148407 -7.071410 +v 8.250000 -78.148407 -7.071410 +v -8.603553 -78.319885 -7.070998 +v 8.603553 -78.319885 -7.070998 +v -8.743844 -78.620560 -7.062365 +v 8.743844 -78.620560 -7.062365 +v -8.543893 -78.274483 -7.047865 +v 8.543893 -78.274483 -7.047865 +v -8.725529 -78.548004 -7.038789 +v 8.725529 -78.548004 -7.038789 +v -8.750000 -80.723129 -7.036471 +v 8.750000 -80.723129 -7.036471 +v -8.476995 -78.237953 -7.029254 +v 8.476995 -78.237953 -7.029254 +v -8.695503 -78.479065 -7.016389 +v 8.695503 -78.479065 -7.016389 +v -8.404509 -78.211205 -7.015623 +v 8.404509 -78.211205 -7.015623 +v -8.328218 -78.194885 -7.007307 +v 8.328218 -78.194885 -7.007307 +v -8.250000 -78.189400 -7.004513 +v 8.250000 -78.189400 -7.004513 +v -8.654509 -78.415443 -6.995717 +v 8.654509 -78.415443 -6.995717 +v -8.603553 -78.358704 -6.977281 +v 8.603553 -78.358704 -6.977281 +v -8.543893 -78.310242 -6.961535 +v 8.543893 -78.310242 -6.961535 +v -8.476995 -78.271255 -6.948866 +v 8.476995 -78.271255 -6.948866 +v -8.404509 -78.242699 -6.939588 +v 8.404509 -78.242699 -6.939588 +v -8.750000 -78.731583 -6.933953 +v 8.750000 -78.731583 -6.933953 +v -8.328218 -78.225281 -6.933928 +v 8.328218 -78.225281 -6.933928 +v -8.250000 -78.219421 -6.932026 +v 8.250000 -78.219421 -6.932026 +v -8.743844 -78.654327 -6.921717 +v 8.743844 -78.654327 -6.921717 +v -8.725529 -78.578979 -6.909782 +v 8.725529 -78.578979 -6.909782 +v -8.695503 -78.507385 -6.898443 +v 8.695503 -78.507385 -6.898443 +v -8.654509 -78.441307 -6.887978 +v 8.654509 -78.441307 -6.887978 +v -8.603553 -78.382385 -6.878644 +v 8.603553 -78.382385 -6.878644 +v -8.543893 -78.332054 -6.870673 +v 8.543893 -78.332054 -6.870673 +v -8.476995 -78.291565 -6.864260 +v 8.476995 -78.291565 -6.864260 +v -8.404509 -78.261909 -6.859563 +v 8.404509 -78.261909 -6.859563 +v -8.328218 -78.243820 -6.856698 +v 8.328218 -78.243820 -6.856698 +v -8.750000 -80.446602 -6.855803 +v 8.750000 -80.446602 -6.855803 +v -8.250000 -78.237740 -6.855735 +v 8.250000 -78.237740 -6.855735 +v -15.603870 -82.090836 -6.810654 +v 15.603870 -82.090836 -6.810654 +v -15.638640 -82.118416 -6.798664 +v -8.250000 -78.243896 -6.777517 +v 8.250000 -78.243896 -6.777517 +v -8.328218 -78.250053 -6.777517 +v 8.328218 -78.250053 -6.777517 +v -8.404509 -78.268364 -6.777517 +v 8.404509 -78.268364 -6.777517 +v -8.476995 -78.298393 -6.777517 +v 8.476995 -78.298393 -6.777517 +v -8.543893 -78.339386 -6.777517 +v 8.543893 -78.339386 -6.777517 +v -8.603553 -78.390343 -6.777518 +v 8.603553 -78.390343 -6.777518 +v -8.654509 -78.450005 -6.777518 +v 8.654509 -78.450005 -6.777518 +v -8.695503 -78.516899 -6.777518 +v 8.695503 -78.516899 -6.777518 +v -8.725529 -78.589386 -6.777518 +v 8.725529 -78.589386 -6.777518 +v -8.743844 -78.665680 -6.777518 +v 8.743844 -78.665680 -6.777518 +v -8.750000 -78.743896 -6.777518 +v 8.750000 -78.743896 -6.777518 +v -15.718970 -82.192879 -6.766290 +v 15.726170 -82.200401 -6.763018 +v -15.751520 -82.228203 -6.750929 +v 15.816880 -82.311111 -6.714884 +v -15.816960 -82.311226 -6.714835 +v 15.831410 -82.332260 -6.705689 +v -15.854290 -82.368126 -6.690095 +v -16.010019 -82.404938 -6.674090 +v 16.010019 -82.404938 -6.674090 +v 15.895590 -82.443047 -6.657522 +v -15.895630 -82.443115 -6.657492 +v 15.913980 -82.482162 -6.640515 +v -8.750000 -80.203575 -6.632085 +v 8.750000 -80.203575 -6.632085 +v -15.933610 -82.529633 -6.619875 +v -15.953150 -82.585411 -6.595623 +v 15.953150 -82.585419 -6.595619 +v 15.970250 -82.645828 -6.569356 +v -8.750000 -71.275024 -6.560596 +v 8.750000 -71.275024 -6.560596 +v -15.983610 -82.707588 -6.542502 +v -15.988210 -82.734818 -6.530663 +v 15.988220 -82.734879 -6.530640 +v 15.997530 -82.817688 -6.494635 +v -16.519569 -82.817764 -6.494602 +v 16.519569 -82.817764 -6.494602 +v -16.000000 -82.887917 -6.464099 +v 16.000000 -82.887917 -6.464099 +v -8.743945 -71.352592 -6.423586 +v 8.743882 -71.353004 -6.422874 +v -8.750000 -80.000694 -6.371418 +v 8.750000 -80.000694 -6.371418 +v 8.737767 -71.384941 -6.366448 +v -8.727582 -71.423065 -6.299133 +v 8.725829 -71.428604 -6.289345 +v -17.316900 -83.508682 -6.194204 +v 17.316900 -83.508682 -6.194204 +v -8.696157 -71.500732 -6.161956 +v 8.693771 -71.505386 -6.153733 +v -8.671227 -71.544403 -6.084816 +v -8.750000 -79.843475 -6.080912 +v 8.750000 -79.843475 -6.080912 +v 8.655480 -71.567574 -6.043896 +v -8.654907 -71.568359 -6.042498 +v -8.250000 -71.275024 -5.977501 +v 8.250000 -71.275024 -5.977501 +v 8.256512 -71.275101 -5.977501 +v -8.295012 -71.278976 -5.977501 +v 8.297253 -71.279373 -5.977501 +v -8.328334 -71.287025 -5.977501 +v 8.328340 -71.287025 -5.977501 +v -8.338230 -71.290276 -5.977501 +v 8.339293 -71.290642 -5.977501 +v -8.382379 -71.309700 -5.977501 +v 8.383858 -71.310493 -5.977501 +v -8.404874 -71.322823 -5.977501 +v 8.404903 -71.322830 -5.977501 +v -8.428703 -71.339211 -5.977501 +v 8.432139 -71.341789 -5.977501 +v 8.477511 -71.381454 -5.977501 +v -8.482710 -71.386688 -5.977501 +v 8.492044 -71.396484 -5.977501 +v -8.545690 -71.463173 -5.977501 +v 8.551228 -71.471184 -5.977501 +v -8.604050 -71.560631 -5.977502 +v 8.604474 -71.561462 -5.977502 +v -8.614455 -71.581535 -5.977502 +v -8.625507 -71.605164 -5.977502 +v 8.625507 -71.605164 -5.977502 +v -8.603553 -71.628571 -5.977502 +v 8.603553 -71.628571 -5.977502 +v -8.543893 -71.679535 -5.977502 +v 8.543893 -71.679535 -5.977502 +v -8.476995 -71.720520 -5.977502 +v 8.476995 -71.720520 -5.977502 +v -8.404509 -71.750549 -5.977502 +v 8.404509 -71.750549 -5.977502 +v -8.328218 -71.768860 -5.977502 +v 8.328218 -71.768860 -5.977502 +v -8.250000 -71.775024 -5.977502 +v 8.250000 -71.775024 -5.977502 +v -18.001150 -84.149422 -5.915622 +v 18.001150 -84.149422 -5.915622 +v -17.500000 -86.125031 -5.777535 +v -13.500000 -86.125031 -5.777535 +v 13.500000 -86.125031 -5.777535 +v 17.500000 -86.125031 -5.777535 +v -17.631680 -86.135941 -5.777535 +v -13.368320 -86.135941 -5.777535 +v 13.368320 -86.135941 -5.777535 +v 17.631680 -86.135941 -5.777535 +v -17.759760 -86.168373 -5.777535 +v -13.240240 -86.168373 -5.777535 +v 13.240240 -86.168373 -5.777535 +v 17.759760 -86.168373 -5.777535 +v -17.880760 -86.221451 -5.777535 +v -13.119240 -86.221451 -5.777535 +v 13.119240 -86.221451 -5.777535 +v 17.880760 -86.221451 -5.777535 +v -17.991369 -86.293716 -5.777536 +v -13.008630 -86.293716 -5.777536 +v 13.008630 -86.293716 -5.777536 +v 17.991369 -86.293716 -5.777536 +v -18.088579 -86.383202 -5.777536 +v -12.911420 -86.383202 -5.777536 +v 12.911420 -86.383202 -5.777536 +v 18.088579 -86.383202 -5.777536 +v -18.169729 -86.487473 -5.777536 +v -12.830270 -86.487473 -5.777536 +v 12.830270 -86.487473 -5.777536 +v 18.169729 -86.487473 -5.777536 +v -18.232620 -86.603676 -5.777536 +v -12.767380 -86.603676 -5.777536 +v 12.767380 -86.603676 -5.777536 +v 18.232620 -86.603676 -5.777536 +v -18.275520 -86.728638 -5.777537 +v -12.724480 -86.728638 -5.777537 +v 12.724480 -86.728638 -5.777537 +v 18.275520 -86.728638 -5.777537 +v -18.297270 -86.858963 -5.777537 +v -12.702730 -86.858963 -5.777537 +v 12.702730 -86.858963 -5.777537 +v 18.297270 -86.858963 -5.777537 +v -18.297270 -86.991089 -5.777537 +v -12.702730 -86.991089 -5.777537 +v 12.702730 -86.991089 -5.777537 +v 18.297270 -86.991089 -5.777537 +v -18.275520 -87.121414 -5.777538 +v -12.724480 -87.121414 -5.777538 +v 12.724480 -87.121414 -5.777538 +v 18.275520 -87.121414 -5.777538 +v -18.232620 -87.246384 -5.777538 +v -12.767380 -87.246384 -5.777538 +v 12.767380 -87.246384 -5.777538 +v 18.232620 -87.246384 -5.777538 +v -18.169729 -87.362587 -5.777538 +v -12.830270 -87.362587 -5.777538 +v 12.830270 -87.362587 -5.777538 +v 18.169729 -87.362587 -5.777538 +v -18.088579 -87.466858 -5.777538 +v -12.911420 -87.466858 -5.777538 +v 12.911420 -87.466858 -5.777538 +v 18.088579 -87.466858 -5.777538 +v -17.991369 -87.556343 -5.777539 +v -13.008630 -87.556343 -5.777539 +v 13.008630 -87.556343 -5.777539 +v 17.991369 -87.556343 -5.777539 +v -17.880760 -87.628609 -5.777539 +v -13.119240 -87.628609 -5.777539 +v 13.119240 -87.628609 -5.777539 +v 17.880760 -87.628609 -5.777539 +v -17.759760 -87.681686 -5.777539 +v -13.240240 -87.681686 -5.777539 +v 13.240240 -87.681686 -5.777539 +v 17.759760 -87.681686 -5.777539 +v -17.631680 -87.714119 -5.777539 +v -13.368320 -87.714119 -5.777539 +v 13.368320 -87.714119 -5.777539 +v 17.631680 -87.714119 -5.777539 +v -17.500000 -87.725029 -5.777539 +v -13.500000 -87.725029 -5.777539 +v 13.500000 -87.725029 -5.777539 +v 17.500000 -87.725029 -5.777539 +v -8.750000 -79.736221 -5.768492 +v 8.750000 -79.736221 -5.768492 +v -18.548441 -84.697037 -5.677532 +v -16.000000 -84.697037 -5.677532 +v 16.000000 -84.697037 -5.677532 +v 18.548441 -84.697037 -5.677532 +v -19.374910 -85.590317 -5.677534 +v 19.374910 -85.590317 -5.677534 +v -19.418671 -85.647789 -5.677534 +v 19.418671 -85.647789 -5.677534 +v -19.453690 -85.710976 -5.677535 +v 19.453690 -85.710976 -5.677535 +v -19.479231 -85.778542 -5.677535 +v 19.479231 -85.778542 -5.677535 +v -19.494780 -85.849091 -5.677535 +v 19.494780 -85.849091 -5.677535 +v -19.500000 -85.921143 -5.677535 +v 19.500000 -85.921143 -5.677535 +v -19.000000 -86.825027 -5.677537 +v -16.000000 -86.825027 -5.677537 +v 16.000000 -86.825027 -5.677537 +v 19.000000 -86.825027 -5.677537 +v -19.078220 -86.831184 -5.677537 +v 19.078220 -86.831184 -5.677537 +v -19.154510 -86.849503 -5.677537 +v 19.154510 -86.849503 -5.677537 +v -19.226990 -86.879524 -5.677537 +v 19.226990 -86.879524 -5.677537 +v -19.293890 -86.920517 -5.677537 +v 19.293890 -86.920517 -5.677537 +v -19.353550 -86.971474 -5.677537 +v 19.353550 -86.971474 -5.677537 +v -19.404510 -87.031136 -5.677538 +v 19.404510 -87.031136 -5.677538 +v -19.445499 -87.098038 -5.677538 +v 19.445499 -87.098038 -5.677538 +v -19.475531 -87.170525 -5.677538 +v 19.475531 -87.170525 -5.677538 +v -19.493839 -87.246811 -5.677538 +v 19.493839 -87.246811 -5.677538 +v -19.500000 -87.325027 -5.677538 +v 19.500000 -87.325027 -5.677538 +v -8.750000 -79.681854 -5.442679 +v 8.750000 -79.681854 -5.442679 +v -8.250000 -78.243896 -5.277517 +v 8.250000 -78.243896 -5.277517 +v -8.297054 -78.246117 -5.277517 +v 8.297054 -78.246117 -5.277517 +v -8.328218 -78.250053 -5.277517 +v 8.328218 -78.250053 -5.277517 +v -8.381937 -78.261620 -5.277517 +v 8.381937 -78.261620 -5.277517 +v -8.404509 -78.268372 -5.277517 +v 8.404509 -78.268372 -5.277517 +v -8.462890 -78.291489 -5.277517 +v 8.462890 -78.291489 -5.277517 +v -8.476995 -78.298393 -5.277517 +v 8.476995 -78.298393 -5.277517 +v -8.537503 -78.334824 -5.277517 +v 8.537503 -78.334824 -5.277517 +v -8.603553 -78.390343 -5.277517 +v 8.603553 -78.390343 -5.277517 +v -8.659075 -78.456398 -5.277517 +v 8.659075 -78.456398 -5.277517 +v -8.695503 -78.516907 -5.277517 +v 8.695503 -78.516907 -5.277517 +v -8.702414 -78.531006 -5.277517 +v 8.702414 -78.531006 -5.277517 +v -8.725529 -78.589386 -5.277517 +v 8.725529 -78.589386 -5.277517 +v -8.732279 -78.611961 -5.277517 +v 8.732279 -78.611961 -5.277517 +v -8.743844 -78.665680 -5.277518 +v 8.743844 -78.665680 -5.277518 +v -8.747781 -78.696846 -5.277518 +v 8.747781 -78.696846 -5.277518 +v -8.750000 -78.743896 -5.277518 +v 8.750000 -78.743896 -5.277518 +v -8.750000 -79.681854 -5.112361 +v 8.750000 -79.681854 -5.112361 +v -8.750000 -78.753242 -5.020834 +v 8.750000 -78.753242 -5.020834 +v -8.747781 -78.706314 -5.017413 +v 8.747781 -78.706314 -5.017413 +v -8.732279 -78.621651 -5.011243 +v 8.732279 -78.621651 -5.011243 +v -8.702414 -78.540916 -5.005358 +v 8.702414 -78.540916 -5.005358 +v -8.659075 -78.466499 -4.999934 +v 8.659075 -78.466499 -4.999934 +v -8.603553 -78.400620 -4.995132 +v 8.603553 -78.400620 -4.995132 +v -8.537503 -78.345245 -4.991096 +v 8.537503 -78.345245 -4.991096 +v -8.462890 -78.302025 -4.987946 +v 8.462890 -78.302025 -4.987946 +v -8.381937 -78.272240 -4.985775 +v 8.381937 -78.272240 -4.985775 +v -8.297054 -78.256775 -4.984648 +v 8.297054 -78.256775 -4.984648 +v -8.250000 -78.254562 -4.984487 +v 8.250000 -78.254562 -4.984487 +v -8.750000 -79.736229 -4.786549 +v 8.750000 -79.736229 -4.786549 +v -8.250000 -78.295845 -4.632437 +v 8.250000 -78.295845 -4.632437 +v -8.750000 -78.827682 -4.512891 +v 8.750000 -78.827682 -4.512891 +v -8.747781 -78.781738 -4.502702 +v 8.747781 -78.781738 -4.502702 +v -8.732279 -78.698875 -4.484321 +v 8.732279 -78.698875 -4.484321 +v -8.750000 -79.843483 -4.474129 +v 8.750000 -79.843483 -4.474129 +v -8.702414 -78.619843 -4.466791 +v 8.702414 -78.619843 -4.466791 +v -8.659075 -78.546997 -4.450634 +v 8.659075 -78.546997 -4.450634 +v -8.603553 -78.482513 -4.436332 +v 8.603553 -78.482513 -4.436332 +v -8.537503 -78.428314 -4.424309 +v 8.537503 -78.428314 -4.424309 +v -8.462890 -78.386002 -4.414925 +v 8.462890 -78.386002 -4.414925 +v -8.381937 -78.356842 -4.408458 +v 8.381937 -78.356842 -4.408458 +v -8.297054 -78.341705 -4.405101 +v 8.297054 -78.341705 -4.405101 +v -8.250000 -78.339539 -4.404620 +v 8.250000 -78.339539 -4.404620 +v -8.750000 -80.000694 -4.183625 +v 8.750000 -80.000694 -4.183625 +v -8.750000 -78.974983 -4.021109 +v 8.750000 -78.974983 -4.021109 +v -8.747781 -78.931007 -4.004367 +v 8.747781 -78.931007 -4.004367 +v -8.250000 -78.450356 -4.003983 +v 8.250000 -78.450356 -4.003983 +v -8.732279 -78.851677 -3.974165 +v 8.732279 -78.851677 -3.974165 +v -8.702414 -78.776024 -3.945361 +v 8.702414 -78.776024 -3.945361 +v -8.750000 -80.203583 -3.922958 +v 8.750000 -80.203583 -3.922958 +v -8.659075 -78.706291 -3.918812 +v 8.659075 -78.706291 -3.918812 +v -8.603553 -78.644569 -3.895311 +v 8.603553 -78.644569 -3.895311 +v -8.537503 -78.592682 -3.875555 +v 8.537503 -78.592682 -3.875555 +v -8.462890 -78.552177 -3.860135 +v 8.462890 -78.552177 -3.860135 +v -8.381937 -78.524261 -3.849509 +v 8.381937 -78.524261 -3.849509 +v -8.297054 -78.509781 -3.843993 +v 8.297054 -78.509781 -3.843993 +v -8.250000 -78.507706 -3.843203 +v 8.250000 -78.507706 -3.843203 +v -8.750000 -80.446602 -3.699241 +v 8.750000 -80.446602 -3.699241 +v -8.750000 -79.192039 -3.555885 +v 8.750000 -79.192039 -3.555885 +v -8.747781 -79.150955 -3.532942 +v 8.747781 -79.150955 -3.532942 +v -8.750000 -80.723137 -3.518575 +v 8.750000 -80.723137 -3.518575 +v -8.732279 -79.076843 -3.491557 +v 8.732279 -79.076843 -3.491557 +v -8.702414 -79.006165 -3.452087 +v 8.702414 -79.006165 -3.452087 +v -8.659075 -78.941017 -3.415709 +v 8.659075 -78.941017 -3.415709 +v -8.250000 -78.703445 -3.408353 +v 8.250000 -78.703445 -3.408353 +v -8.750000 -81.025635 -3.385889 +v 8.750000 -81.025635 -3.385889 +v -8.603553 -78.883354 -3.383506 +v 8.603553 -78.883354 -3.383506 +v -8.537503 -78.834877 -3.356435 +v 8.537503 -78.834877 -3.356435 +v -8.462890 -78.797043 -3.335305 +v 8.462890 -78.797043 -3.335305 +v -8.381937 -78.770966 -3.320743 +v 8.381937 -78.770966 -3.320743 +v -8.297054 -78.757431 -3.313185 +v 8.297054 -78.757431 -3.313185 +v -8.250000 -78.755493 -3.312103 +v 8.250000 -78.755493 -3.312103 +v -8.750000 -81.345840 -3.304801 +v 8.750000 -81.345840 -3.304801 +v -8.750000 -81.675034 -3.277524 +v 8.750000 -81.675034 -3.277524 +v -11.000250 -81.775032 -3.277524 +v -8.750000 -81.775032 -3.277524 +v 8.750000 -81.775032 -3.277524 +v 11.000250 -81.775032 -3.277524 +v -11.000000 -81.802475 -3.277524 +v 11.000000 -81.802475 -3.277524 +v -11.000000 -87.725037 -3.277538 +v 11.000000 -87.725037 -3.277538 +v -11.004440 -87.819138 -3.277539 +v 11.004440 -87.819138 -3.277539 +v -11.035440 -87.988907 -3.277539 +v 11.035440 -87.988907 -3.277539 +v -11.095170 -88.150810 -3.277539 +v 11.095170 -88.150810 -3.277539 +v -11.133970 -88.225037 -3.277540 +v 11.133970 -88.225037 -3.277540 +v 11.157590 -88.263878 -3.275979 +v 11.163090 -88.272369 -3.275223 +v -11.181870 -88.300064 -3.271866 +v 11.181960 -88.300201 -3.271699 +v -11.186230 -88.306221 -3.270891 +v 11.213570 -88.342712 -3.263183 +v -11.225470 -88.357574 -3.259634 +v 11.225490 -88.357597 -3.259284 +v -11.250020 -88.386490 -3.250739 +v 11.286940 -88.426132 -3.234803 +v -11.293240 -88.432487 -3.232467 +v 11.293000 -88.432251 -3.232065 +v -11.299410 -88.438599 -3.229634 +v 11.299360 -88.438553 -3.229140 +v -11.332260 -88.469429 -3.213737 +v 11.381790 -88.511047 -3.187285 +v 11.383950 -88.512741 -3.186106 +v -11.384740 -88.513359 -3.186003 +v -11.425340 -88.543427 -3.163023 +v 11.425580 -88.543594 -3.162696 +v -11.445120 -88.556961 -3.151435 +v 11.479620 -88.578964 -3.130651 +v -11.479770 -88.579063 -3.130602 +v -8.750000 -79.474258 -3.127048 +v 8.750000 -79.474258 -3.127048 +v 11.500210 -88.591179 -3.118015 +v -8.747781 -79.436935 -3.098392 +v 8.747781 -79.436935 -3.098392 +v -11.569300 -88.627525 -3.074164 +v -11.574300 -88.629898 -3.070915 +v 11.574860 -88.630165 -3.070590 +v -11.583690 -88.634254 -3.064797 +v 11.584660 -88.634697 -3.064221 +v -8.732279 -79.369606 -3.046697 +v 8.732279 -79.369606 -3.046697 +v 11.640430 -88.658157 -3.027444 +v -8.702414 -79.305397 -2.997396 +v 8.702414 -79.305397 -2.997396 +v -11.695580 -88.677574 -2.990133 +v 11.696760 -88.677948 -2.989547 +v -11.715510 -88.683716 -2.976550 +v -11.736370 -88.689659 -2.962261 +v 11.736910 -88.689804 -2.962124 +v -8.659075 -79.246216 -2.951957 +v 8.659075 -79.246216 -2.951957 +v -8.603553 -79.193825 -2.911732 +v 8.603553 -79.193825 -2.911732 +v 11.813470 -88.707481 -2.908911 +v -11.813360 -88.707466 -2.908830 +v 11.828390 -88.710197 -2.898440 +v -8.537503 -79.149788 -2.877919 +v 8.537503 -79.149788 -2.877919 +v -8.250000 -79.048584 -2.860900 +v 8.250000 -79.048584 -2.860900 +v -8.462890 -79.115417 -2.851526 +v 8.462890 -79.115417 -2.851526 +v -11.905960 -88.720604 -2.843838 +v -11.914980 -88.721413 -2.837493 +v -8.381937 -79.091728 -2.833338 +v 8.381937 -79.091728 -2.833338 +v 11.933860 -88.722847 -2.824223 +v -8.297054 -79.079430 -2.823897 +v 8.297054 -79.079430 -2.823897 +v -8.250000 -79.077667 -2.822545 +v 8.250000 -79.077667 -2.822545 +v -12.000000 -88.725037 -2.777540 +v 12.000000 -88.725037 -2.777540 +v -8.750000 -79.815674 -2.743666 +v 8.750000 -79.815674 -2.743666 +v -8.747781 -79.782898 -2.709900 +v 8.747781 -79.782898 -2.709900 +v -8.732279 -79.723778 -2.648990 +v 8.732279 -79.723778 -2.648990 +v -8.702414 -79.667397 -2.590900 +v 8.702414 -79.667397 -2.590900 +v -8.659075 -79.615433 -2.537360 +v 8.659075 -79.615433 -2.537360 +v -8.603553 -79.569427 -2.489963 +v 8.603553 -79.569427 -2.489963 +v -8.537503 -79.530762 -2.450123 +v 8.537503 -79.530762 -2.450123 +v -8.462890 -79.500572 -2.419024 +v 8.462890 -79.500572 -2.419024 +v -8.750000 -80.209068 -2.413840 +v 8.750000 -80.209068 -2.413840 +v -8.381937 -79.479774 -2.397593 +v 8.381937 -79.479774 -2.397593 +v -8.297054 -79.468979 -2.386469 +v 8.297054 -79.468979 -2.386469 +v -8.250000 -79.467430 -2.384877 +v 8.250000 -79.467430 -2.384877 +v -8.250000 -79.476883 -2.375733 +v 8.250000 -79.476883 -2.375733 +v -8.747781 -80.181541 -2.375679 +v 8.747781 -80.181541 -2.375679 +v -8.732279 -80.131874 -2.306841 +v 8.732279 -80.131874 -2.306841 +v -8.702414 -80.084511 -2.241190 +v 8.702414 -80.084511 -2.241190 +v -8.659075 -80.040863 -2.180680 +v 8.659075 -80.040863 -2.180680 +v -8.750000 -80.646133 -2.144543 +v 8.750000 -80.646133 -2.144543 +v -8.603553 -80.002213 -2.127114 +v 8.603553 -80.002213 -2.127114 +v -8.747781 -80.624428 -2.102794 +v 8.747781 -80.624428 -2.102794 +v -8.537503 -79.969734 -2.082087 +v 8.537503 -79.969734 -2.082087 +v -8.462890 -79.944374 -2.046941 +v 8.462890 -79.944374 -2.046941 +v -8.732279 -80.585274 -2.027481 +v 8.732279 -80.585274 -2.027481 +v -8.381937 -79.926903 -2.022720 +v 8.381937 -79.926903 -2.022720 +v -8.297054 -79.917831 -2.010148 +v 8.297054 -79.917831 -2.010148 +v -8.250000 -79.916534 -2.008348 +v 8.250000 -79.916534 -2.008348 +v -8.250000 -79.977303 -1.965356 +v 8.250000 -79.977303 -1.965356 +v -8.702414 -80.547928 -1.955656 +v 8.702414 -80.547928 -1.955656 +v -8.750000 -81.117630 -1.941463 +v 8.750000 -81.117630 -1.941463 +v -8.747781 -81.102203 -1.897009 +v 8.747781 -81.102203 -1.897009 +v -8.659075 -80.513512 -1.889456 +v 8.659075 -80.513512 -1.889456 +v -8.603553 -80.483040 -1.830853 +v 8.603553 -80.483040 -1.830853 +v -8.732279 -81.074387 -1.816816 +v 8.732279 -81.074387 -1.816816 +v -8.750000 -81.613586 -1.808898 +v 8.750000 -81.613586 -1.808898 +v -8.750000 -81.775032 -1.781974 +v 8.750000 -81.775032 -1.781974 +v -8.537503 -80.457428 -1.781592 +v 8.537503 -80.457428 -1.781592 +v -13.500000 -82.675034 -1.777526 +v 13.500000 -82.675034 -1.777526 +v -13.681050 -82.690041 -1.777526 +v -13.318950 -82.690041 -1.777526 +v 13.318950 -82.690041 -1.777526 +v 13.681050 -82.690041 -1.777526 +v -13.857170 -82.734634 -1.777526 +v -13.142830 -82.734634 -1.777526 +v 13.142830 -82.734634 -1.777526 +v 13.857170 -82.734634 -1.777526 +v -14.023540 -82.807610 -1.777526 +v -12.976460 -82.807610 -1.777526 +v 12.976460 -82.807610 -1.777526 +v 14.023540 -82.807610 -1.777526 +v -14.175630 -82.906982 -1.777527 +v -12.824370 -82.906982 -1.777527 +v 12.824370 -82.906982 -1.777527 +v 14.175630 -82.906982 -1.777527 +v -14.309300 -83.030022 -1.777527 +v -12.690700 -83.030022 -1.777527 +v 12.690700 -83.030022 -1.777527 +v 14.309300 -83.030022 -1.777527 +v -14.420880 -83.173393 -1.777527 +v -12.579120 -83.173393 -1.777527 +v 12.579120 -83.173393 -1.777527 +v 14.420880 -83.173393 -1.777527 +v -14.507350 -83.333168 -1.777528 +v -12.492650 -83.333168 -1.777528 +v 12.492650 -83.333168 -1.777528 +v 14.507350 -83.333168 -1.777528 +v -14.566340 -83.504997 -1.777528 +v -12.433660 -83.504997 -1.777528 +v 12.433660 -83.504997 -1.777528 +v 14.566340 -83.504997 -1.777528 +v -14.596240 -83.684196 -1.777529 +v -12.403760 -83.684196 -1.777529 +v 12.403760 -83.684196 -1.777529 +v 14.596240 -83.684196 -1.777529 +v -14.596240 -83.865875 -1.777529 +v -12.403760 -83.865875 -1.777529 +v 12.403760 -83.865875 -1.777529 +v 14.596240 -83.865875 -1.777529 +v -14.566340 -84.045067 -1.777529 +v -12.433660 -84.045067 -1.777529 +v 12.433660 -84.045067 -1.777529 +v 14.566340 -84.045067 -1.777529 +v -14.507350 -84.216896 -1.777530 +v -12.492650 -84.216896 -1.777530 +v 12.492650 -84.216896 -1.777530 +v 14.507350 -84.216896 -1.777530 +v -14.420880 -84.376678 -1.777530 +v -12.579120 -84.376678 -1.777530 +v 12.579120 -84.376678 -1.777530 +v 14.420880 -84.376678 -1.777530 +v -14.309300 -84.520042 -1.777531 +v -12.690700 -84.520042 -1.777531 +v 12.690700 -84.520042 -1.777531 +v 14.309300 -84.520042 -1.777531 +v -14.175630 -84.643089 -1.777531 +v -12.824370 -84.643089 -1.777531 +v 12.824370 -84.643089 -1.777531 +v 14.175630 -84.643089 -1.777531 +v -14.023540 -84.742455 -1.777531 +v -12.976460 -84.742455 -1.777531 +v 12.976460 -84.742455 -1.777531 +v 14.023540 -84.742455 -1.777531 +v -13.857170 -84.815437 -1.777531 +v -13.142830 -84.815437 -1.777531 +v 13.142830 -84.815437 -1.777531 +v 13.857170 -84.815437 -1.777531 +v -13.681050 -84.860031 -1.777531 +v -13.318950 -84.860031 -1.777531 +v 13.318950 -84.860031 -1.777531 +v 13.681050 -84.860031 -1.777531 +v -13.500000 -84.875038 -1.777531 +v 13.500000 -84.875038 -1.777531 +v -8.747781 -81.604774 -1.762677 +v 8.747781 -81.604774 -1.762677 +v -8.462890 -80.437439 -1.743140 +v 8.462890 -80.437439 -1.743140 +v -8.702414 -81.047852 -1.740335 +v 8.702414 -81.047852 -1.740335 +v -8.747551 -81.775032 -1.731721 +v -8.381937 -80.423660 -1.716641 +v 8.381937 -80.423660 -1.716641 +v 8.744659 -81.775032 -1.709112 +v -8.297054 -80.416512 -1.702887 +v 8.297054 -80.416512 -1.702887 +v -8.250000 -80.415489 -1.700919 +v 8.250000 -80.415489 -1.700919 +v -8.732279 -81.588867 -1.679297 +v 8.732279 -81.588867 -1.679297 +v -8.659075 -81.023392 -1.669844 +v 8.659075 -81.023392 -1.669844 +v 8.731970 -81.775032 -1.648869 +v -8.732005 -81.775032 -1.648149 +v -8.250000 -80.536942 -1.640347 +v 8.250000 -80.536942 -1.640347 +v 8.725780 -81.775032 -1.628024 +v -8.603553 -81.001747 -1.607441 +v 8.603553 -81.001747 -1.607441 +v -8.702414 -81.573708 -1.599777 +v 8.702414 -81.573708 -1.599777 +v 8.702217 -81.775032 -1.567216 +v -8.701929 -81.775032 -1.567055 +v -8.537503 -80.983543 -1.554986 +v 8.537503 -80.983543 -1.554986 +v 8.693389 -81.775032 -1.549067 +v -8.659075 -81.559731 -1.526485 +v 8.659075 -81.559731 -1.526485 +v -8.462890 -80.969337 -1.514042 +v 8.462890 -80.969337 -1.514042 +v -8.662011 -81.775032 -1.496171 +v 8.659058 -81.775032 -1.491901 +v -8.659083 -81.775032 -1.491875 +v -8.381937 -80.959549 -1.485826 +v 8.381937 -80.959549 -1.485826 +v 8.648407 -81.775032 -1.477186 +v -8.297054 -80.954468 -1.471181 +v 8.297054 -80.954468 -1.471181 +v -8.250000 -80.953743 -1.469086 +v 8.250000 -80.953743 -1.469086 +v -8.603553 -81.547356 -1.461603 +v 8.603553 -81.547356 -1.461603 +v -8.610209 -81.775032 -1.431942 +v 8.603626 -81.775032 -1.425219 +v 8.593399 -81.775032 -1.415123 +v -8.250000 -81.141380 -1.409082 +v 8.250000 -81.141380 -1.409082 +v -8.537503 -81.536957 -1.407064 +v 8.537503 -81.536957 -1.407064 +v -8.548657 -81.775032 -1.377448 +v -8.537492 -81.775032 -1.369307 +v -8.462890 -81.528839 -1.364493 +v 8.462890 -81.528839 -1.364493 +v 8.528754 -81.775032 -1.363274 +v -8.381937 -81.523247 -1.335156 +v 8.381937 -81.523247 -1.335156 +v -8.477719 -81.775032 -1.333107 +v 8.462692 -81.775032 -1.325915 +v -8.462800 -81.775032 -1.325791 +v 8.457869 -81.775032 -1.323658 +v -8.297054 -81.520340 -1.319928 +v 8.297054 -81.520340 -1.319928 +v -8.250000 -81.519928 -1.317749 +v 8.250000 -81.519928 -1.317749 +v -8.400577 -81.775032 -1.301373 +v -8.381864 -81.775032 -1.295749 +v 8.381909 -81.775032 -1.295496 +v 8.378490 -81.775032 -1.294550 +v -8.321754 -81.775032 -1.282859 +v 8.299632 -81.775032 -1.279981 +v -12.578540 -80.304535 -1.277520 +v 12.578540 -80.304535 -1.277520 +v -12.335430 -80.311531 -1.277520 +v 12.335430 -80.311531 -1.277520 +v -12.819580 -80.336914 -1.277520 +v 12.819580 -80.336914 -1.277520 +v -12.096640 -80.357727 -1.277520 +v 12.096640 -80.357727 -1.277520 +v -13.052220 -80.407829 -1.277520 +v 13.052220 -80.407829 -1.277520 +v -11.868470 -80.441902 -1.277521 +v 11.868470 -80.441902 -1.277521 +v -13.270350 -80.515404 -1.277521 +v 13.270350 -80.515404 -1.277521 +v -11.656890 -80.561844 -1.277521 +v 11.656890 -80.561844 -1.277521 +v -11.467480 -80.714409 -1.277521 +v 11.467480 -80.714409 -1.277521 +v -11.305210 -80.895569 -1.277522 +v 11.305210 -80.895569 -1.277522 +v -11.174360 -81.100578 -1.277522 +v 11.174360 -81.100578 -1.277522 +v -11.078350 -81.324036 -1.277523 +v 11.078350 -81.324036 -1.277523 +v -11.019720 -81.560066 -1.277523 +v 11.019720 -81.560066 -1.277523 +v -14.938910 -81.603561 -1.277523 +v 14.938910 -81.603561 -1.277523 +v -11.000250 -81.775032 -1.277524 +v -8.250000 -81.775032 -1.277524 +v 8.250000 -81.775032 -1.277524 +v 11.000250 -81.775032 -1.277524 +v -15.603870 -82.090843 -1.277524 +v 15.603870 -82.090843 -1.277524 +v -13.500000 -82.175034 -1.277524 +v 13.500000 -82.175034 -1.277524 +v -15.718810 -82.192726 -1.277524 +v 15.718810 -82.192726 -1.277524 +v -13.763350 -82.196854 -1.277524 +v -13.236650 -82.196854 -1.277524 +v 13.236650 -82.196854 -1.277524 +v 13.763350 -82.196854 -1.277524 +v -14.019520 -82.261726 -1.277525 +v -12.980480 -82.261726 -1.277525 +v 12.980480 -82.261726 -1.277525 +v 14.019520 -82.261726 -1.277525 +v -15.816790 -82.310997 -1.277525 +v 15.816790 -82.310997 -1.277525 +v -14.261520 -82.367874 -1.277525 +v -12.738480 -82.367874 -1.277525 +v 12.738480 -82.367874 -1.277525 +v 14.261520 -82.367874 -1.277525 +v -15.895510 -82.442886 -1.277525 +v 15.895510 -82.442886 -1.277525 +v -14.482740 -82.512413 -1.277525 +v -12.517260 -82.512413 -1.277525 +v 12.517260 -82.512413 -1.277525 +v 14.482740 -82.512413 -1.277525 +v -15.953100 -82.585266 -1.277525 +v 15.953100 -82.585266 -1.277525 +v -14.677160 -82.691383 -1.277526 +v -12.322840 -82.691383 -1.277526 +v 12.322840 -82.691383 -1.277526 +v 14.677160 -82.691383 -1.277526 +v -15.988200 -82.734795 -1.277526 +v 15.988200 -82.734795 -1.277526 +v -16.000000 -82.887924 -1.277526 +v 16.000000 -82.887924 -1.277526 +v -14.839470 -82.899918 -1.277526 +v -12.160530 -82.899918 -1.277526 +v 12.160530 -82.899918 -1.277526 +v 14.839470 -82.899918 -1.277526 +v -14.965240 -83.132324 -1.277527 +v -12.034760 -83.132324 -1.277527 +v 12.034760 -83.132324 -1.277527 +v 14.965240 -83.132324 -1.277527 +v -15.051040 -83.382256 -1.277527 +v -11.948960 -83.382256 -1.277527 +v 11.948960 -83.382256 -1.277527 +v 15.051040 -83.382256 -1.277527 +v -15.094540 -83.642906 -1.277528 +v -11.905470 -83.642906 -1.277528 +v 11.905470 -83.642906 -1.277528 +v 15.094540 -83.642906 -1.277528 +v -15.094540 -83.907166 -1.277529 +v -11.905470 -83.907166 -1.277529 +v 11.905470 -83.907166 -1.277529 +v 15.094540 -83.907166 -1.277529 +v -15.051040 -84.167809 -1.277529 +v -11.948960 -84.167809 -1.277529 +v 11.948960 -84.167809 -1.277529 +v 15.051040 -84.167809 -1.277529 +v -14.965240 -84.417747 -1.277530 +v -12.034760 -84.417747 -1.277530 +v 12.034760 -84.417747 -1.277530 +v 14.965240 -84.417747 -1.277530 +v -14.839470 -84.650154 -1.277530 +v -12.160530 -84.650154 -1.277530 +v 12.160530 -84.650154 -1.277530 +v 14.839470 -84.650154 -1.277530 +v -14.677160 -84.858688 -1.277531 +v -12.322840 -84.858688 -1.277531 +v 12.322840 -84.858688 -1.277531 +v 14.677160 -84.858688 -1.277531 +v -14.482740 -85.037659 -1.277531 +v -12.517260 -85.037659 -1.277531 +v 12.517260 -85.037659 -1.277531 +v 14.482740 -85.037659 -1.277531 +v -14.261520 -85.182190 -1.277532 +v -12.738480 -85.182190 -1.277532 +v 12.738480 -85.182190 -1.277532 +v 14.261520 -85.182190 -1.277532 +v -14.019520 -85.288345 -1.277532 +v -12.980480 -85.288345 -1.277532 +v 12.980480 -85.288345 -1.277532 +v 14.019520 -85.288345 -1.277532 +v -13.763350 -85.353210 -1.277532 +v -13.236650 -85.353210 -1.277532 +v 13.236650 -85.353210 -1.277532 +v 13.763350 -85.353210 -1.277532 +v -13.500000 -85.375038 -1.277532 +v 13.500000 -85.375038 -1.277532 +v -19.000000 -86.825035 -1.277535 +v -16.000000 -86.825035 -1.277535 +v 16.000000 -86.825035 -1.277535 +v 19.000000 -86.825035 -1.277535 +v -19.078220 -86.831192 -1.277535 +v 19.078220 -86.831192 -1.277535 +v -19.154510 -86.849510 -1.277535 +v 19.154510 -86.849510 -1.277535 +v -19.226990 -86.879532 -1.277535 +v 19.226990 -86.879532 -1.277535 +v -19.293890 -86.920525 -1.277535 +v 19.293890 -86.920525 -1.277535 +v -19.353550 -86.971481 -1.277536 +v 19.353550 -86.971481 -1.277536 +v -19.404510 -87.031143 -1.277536 +v 19.404510 -87.031143 -1.277536 +v -19.445499 -87.098038 -1.277536 +v 19.445499 -87.098038 -1.277536 +v -19.475531 -87.170532 -1.277536 +v 19.475531 -87.170532 -1.277536 +v -19.493839 -87.246819 -1.277536 +v 19.493839 -87.246819 -1.277536 +v -19.500000 -87.325035 -1.277536 +v 19.500000 -87.325035 -1.277536 +v -19.000000 -87.425034 -1.277537 +v 19.000000 -87.425034 -1.277537 +v -19.078220 -87.431190 -1.277537 +v 19.078220 -87.431190 -1.277537 +v -19.154510 -87.449509 -1.277537 +v 19.154510 -87.449509 -1.277537 +v -19.226990 -87.479530 -1.277537 +v 19.226990 -87.479530 -1.277537 +v -19.293890 -87.520531 -1.277537 +v 19.293890 -87.520531 -1.277537 +v -19.353550 -87.571487 -1.277537 +v 19.353550 -87.571487 -1.277537 +v -19.404510 -87.631142 -1.277537 +v 19.404510 -87.631142 -1.277537 +v -19.445499 -87.698044 -1.277537 +v 19.445499 -87.698044 -1.277537 +v -19.475531 -87.770531 -1.277538 +v 19.475531 -87.770531 -1.277538 +v -19.493839 -87.846817 -1.277538 +v 19.493839 -87.846817 -1.277538 +v -19.500000 -87.925034 -1.277538 +v 19.500000 -87.925034 -1.277538 +v -19.000000 -87.425041 -0.277536 +v 19.000000 -87.425041 -0.277536 +v -19.078220 -87.431198 -0.277536 +v 19.078220 -87.431198 -0.277536 +v -19.154510 -87.449509 -0.277536 +v 19.154510 -87.449509 -0.277536 +v -19.226990 -87.479538 -0.277536 +v 19.226990 -87.479538 -0.277536 +v -19.293890 -87.520531 -0.277536 +v 19.293890 -87.520531 -0.277536 +v -19.353550 -87.571487 -0.277537 +v 19.353550 -87.571487 -0.277537 +v -19.404510 -87.631149 -0.277537 +v 19.404510 -87.631149 -0.277537 +v -19.445499 -87.698044 -0.277537 +v 19.445499 -87.698044 -0.277537 +v -19.475531 -87.770531 -0.277537 +v 19.475531 -87.770531 -0.277537 +v -19.493839 -87.846825 -0.277537 +v 19.493839 -87.846825 -0.277537 +v -19.500000 -87.925041 -0.277537 +v 19.500000 -87.925041 -0.277537 +v -19.500000 -88.225037 -0.277538 +v 19.500000 -88.225037 -0.277538 +v -19.493839 -88.303253 -0.277538 +v 19.493839 -88.303253 -0.277538 +v -19.475531 -88.379547 -0.277539 +v 19.475531 -88.379547 -0.277539 +v -19.445499 -88.452034 -0.277539 +v 19.445499 -88.452034 -0.277539 +v -19.404510 -88.518929 -0.277539 +v 19.404510 -88.518929 -0.277539 +v -19.353550 -88.578590 -0.277539 +v 19.353550 -88.578590 -0.277539 +v -19.293890 -88.629547 -0.277539 +v 19.293890 -88.629547 -0.277539 +v -19.226990 -88.670540 -0.277539 +v 19.226990 -88.670540 -0.277539 +v -19.154510 -88.700569 -0.277539 +v 19.154510 -88.700569 -0.277539 +v -19.078220 -88.718880 -0.277539 +v 19.078220 -88.718880 -0.277539 +v -19.000000 -88.725037 -0.277539 +v 19.000000 -88.725037 -0.277539 +v -18.993839 -87.425041 -0.199318 +v 18.993839 -87.425041 -0.199318 +v -18.993839 -88.725037 -0.199321 +v 18.993839 -88.725037 -0.199321 +v -19.071100 -87.431198 -0.187083 +v 19.071100 -87.431198 -0.187083 +v -19.071100 -88.718880 -0.187086 +v 19.071100 -88.718880 -0.187086 +v -19.146450 -87.449509 -0.175149 +v 19.146450 -87.449509 -0.175149 +v -19.146450 -88.700569 -0.175152 +v 19.146450 -88.700569 -0.175152 +v -19.218040 -87.479538 -0.163809 +v 19.218040 -87.479538 -0.163809 +v -19.218040 -88.670540 -0.163812 +v 19.218040 -88.670540 -0.163812 +v -19.284121 -87.520531 -0.153344 +v 19.284121 -87.520531 -0.153344 +v -19.284121 -88.629547 -0.153347 +v 19.284121 -88.629547 -0.153347 +v -19.343040 -87.571487 -0.144012 +v 19.343040 -87.571487 -0.144012 +v -19.343040 -88.578590 -0.144014 +v 19.343040 -88.578590 -0.144014 +v -19.393370 -87.631149 -0.136041 +v 19.393370 -87.631149 -0.136041 +v -19.393370 -88.518936 -0.136043 +v 19.393370 -88.518936 -0.136043 +v -19.433861 -87.698044 -0.129628 +v 19.433861 -87.698044 -0.129628 +v -19.433861 -88.452034 -0.129630 +v 19.433861 -88.452034 -0.129630 +v -19.463520 -87.770531 -0.124931 +v 19.463520 -87.770531 -0.124931 +v -19.463520 -88.379547 -0.124933 +v 19.463520 -88.379547 -0.124933 +v -18.975531 -87.425041 -0.123027 +v 18.975531 -87.425041 -0.123027 +v -18.975531 -88.725037 -0.123030 +v 18.975531 -88.725037 -0.123030 +v -19.481609 -87.846825 -0.122066 +v 19.481609 -87.846825 -0.122066 +v -19.481609 -88.303253 -0.122066 +v 19.481609 -88.303253 -0.122066 +v -19.487690 -87.925041 -0.121102 +v 19.487690 -87.925041 -0.121102 +v -19.487690 -88.225037 -0.121103 +v 19.487690 -88.225037 -0.121103 +v -19.049919 -87.431198 -0.098857 +v 19.049919 -87.431198 -0.098857 +v -19.049919 -88.718880 -0.098860 +v 19.049919 -88.718880 -0.098860 +v -19.122471 -87.449509 -0.075283 +v 19.122471 -87.449509 -0.075283 +v -19.122471 -88.700569 -0.075285 +v 19.122471 -88.700569 -0.075285 +v -19.191410 -87.479538 -0.052882 +v 19.191410 -87.479538 -0.052882 +v -19.191410 -88.670540 -0.052885 +v 19.191410 -88.670540 -0.052885 +v -18.945499 -87.425041 -0.050541 +v 18.945499 -87.425041 -0.050541 +v -18.945499 -88.725037 -0.050544 +v 18.945499 -88.725037 -0.050544 +v -19.255039 -87.520531 -0.032209 +v 19.255039 -87.520531 -0.032209 +v -19.255039 -88.629547 -0.032212 +v 19.255039 -88.629547 -0.032212 +v -19.015190 -87.431198 -0.015031 +v 19.015190 -87.431198 -0.015031 +v -19.015190 -88.718880 -0.015034 +v 19.015190 -88.718880 -0.015034 +v -19.311781 -87.571487 -0.013775 +v 19.311781 -87.571487 -0.013775 +v -19.311781 -88.578590 -0.013777 +v 19.311781 -88.578590 -0.013777 +v -19.360241 -87.631149 0.001972 +v 19.360241 -87.631149 0.001972 +v -19.360241 -88.518936 0.001970 +v 19.360241 -88.518936 0.001970 +v -19.399229 -87.698044 0.014640 +v 19.399229 -87.698044 0.014640 +v -19.399229 -88.452034 0.014638 +v 19.399229 -88.452034 0.014638 +v -18.904510 -87.425041 0.016356 +v 18.904510 -87.425041 0.016356 +v -18.904510 -88.725037 0.016354 +v 18.904510 -88.725037 0.016354 +v -19.083170 -87.449509 0.019605 +v 19.083170 -87.449509 0.019605 +v -19.083170 -88.700569 0.019602 +v 19.083170 -88.700569 0.019602 +v -19.427780 -87.770531 0.023918 +v 19.427780 -87.770531 0.023918 +v -19.427780 -88.379547 0.023916 +v 19.427780 -88.379547 0.023916 +v -19.445200 -87.846825 0.029578 +v 19.445200 -87.846825 0.029578 +v -19.445200 -88.303253 0.029577 +v 19.445200 -88.303253 0.029577 +v -19.451059 -87.925041 0.031480 +v 19.451059 -87.925041 0.031480 +v -19.451059 -88.225037 0.031479 +v 19.451059 -88.225037 0.031479 +v -19.147760 -87.479538 0.052513 +v 19.147760 -87.479538 0.052513 +v -19.147760 -88.670540 0.052510 +v 19.147760 -88.670540 0.052510 +v -18.967791 -87.431198 0.062332 +v 18.967791 -87.431198 0.062332 +v -18.967791 -88.718880 0.062329 +v 18.967791 -88.718880 0.062329 +v -18.853550 -87.425041 0.076017 +v 18.853550 -87.425041 0.076017 +v -18.853550 -88.725037 0.076015 +v 18.853550 -88.725037 0.076015 +v -19.207359 -87.520531 0.082882 +v 19.207359 -87.520531 0.082882 +v -19.207359 -88.629547 0.082880 +v 19.207359 -88.629547 0.082880 +v -19.029510 -87.449509 0.107173 +v 19.029510 -87.449509 0.107173 +v -19.029510 -88.700569 0.107171 +v 19.029510 -88.700569 0.107171 +v -19.260521 -87.571487 0.109968 +v 19.260521 -87.571487 0.109968 +v -19.260521 -88.578590 0.109966 +v 19.260521 -88.578590 0.109966 +v -18.793890 -87.425041 0.126972 +v 18.793890 -87.425041 0.126972 +v -18.793890 -88.725037 0.126969 +v 18.793890 -88.725037 0.126969 +v -18.908859 -87.431198 0.131325 +v 18.908859 -87.431198 0.131325 +v -18.908859 -88.718887 0.131322 +v 18.908859 -88.718887 0.131322 +v -19.305920 -87.631149 0.133101 +v 19.305920 -87.631149 0.133101 +v -19.305920 -88.518936 0.133099 +v 19.305920 -88.518936 0.133099 +v -19.088150 -87.479538 0.149781 +v 19.088150 -87.479538 0.149781 +v -19.088150 -88.670540 0.149778 +v 19.088150 -88.670540 0.149778 +v -19.342449 -87.698044 0.151713 +v 19.342449 -87.698044 0.151713 +v -19.342449 -88.452034 0.151711 +v 19.342449 -88.452034 0.151711 +v -19.369200 -87.770531 0.165344 +v 19.369200 -87.770531 0.165344 +v -19.369200 -88.379547 0.165342 +v 19.369200 -88.379547 0.165342 +v -18.726999 -87.425041 0.167967 +v 18.726999 -87.425041 0.167967 +v -18.726999 -88.725037 0.167964 +v 18.726999 -88.725037 0.167964 +v -19.385521 -87.846825 0.173657 +v 19.385521 -87.846825 0.173657 +v -19.385521 -88.303253 0.173656 +v 19.385521 -88.303253 0.173656 +v -19.391010 -87.925041 0.176453 +v 19.391010 -87.925041 0.176453 +v -19.391010 -88.225037 0.176452 +v 19.391010 -88.225037 0.176452 +v -18.962811 -87.449509 0.185271 +v 18.962811 -87.449509 0.185271 +v -18.962811 -88.700569 0.185268 +v 18.962811 -88.700569 0.185268 +v -19.142269 -87.520531 0.189103 +v 19.142269 -87.520531 0.189103 +v -19.142269 -88.629547 0.189100 +v 19.142269 -88.629547 0.189100 +v -18.839870 -87.431198 0.190252 +v 18.839870 -87.431198 0.190252 +v -18.839870 -88.718887 0.190249 +v 18.839870 -88.718887 0.190249 +v -18.654510 -87.425041 0.197991 +v 18.654510 -87.425041 0.197991 +v -18.654510 -88.725037 0.197989 +v 18.654510 -88.725037 0.197989 +v -18.578220 -87.425041 0.216309 +v 18.578220 -87.425041 0.216309 +v -18.578220 -88.725037 0.216306 +v 18.578220 -88.725037 0.216306 +v -18.500000 -87.425041 0.222464 +v 18.500000 -87.425041 0.222464 +v -18.500000 -88.725037 0.222461 +v 18.500000 -88.725037 0.222461 +v -19.190540 -87.571487 0.224169 +v 19.190540 -87.571487 0.224169 +v -19.190540 -88.578590 0.224166 +v 19.190540 -88.578590 0.224166 +v -19.014059 -87.479538 0.236526 +v 19.014059 -87.479538 0.236526 +v -19.014059 -88.670540 0.236524 +v 19.014059 -88.670540 0.236524 +v -18.762501 -87.431198 0.237659 +v 18.762501 -87.431198 0.237659 +v -18.762501 -88.718887 0.237656 +v 18.762501 -88.718887 0.237656 +v -18.884710 -87.449509 0.251972 +v 18.884710 -87.449509 0.251972 +v -18.884710 -88.700569 0.251969 +v 18.884710 -88.700569 0.251969 +v -19.231760 -87.631149 0.254121 +v 19.231760 -87.631149 0.254121 +v -19.231760 -88.518936 0.254118 +v 19.231760 -88.518936 0.254118 +v -18.678680 -87.431198 0.272381 +v 18.678680 -87.431198 0.272381 +v -18.678680 -88.718887 0.272378 +v 18.678680 -88.718887 0.272378 +v -19.264931 -87.698044 0.278215 +v 19.264931 -87.698044 0.278215 +v -19.264931 -88.452034 0.278214 +v 19.264931 -88.452034 0.278214 +v -19.061371 -87.520531 0.283831 +v 19.061371 -87.520531 0.283831 +v -19.061371 -88.629547 0.283828 +v 19.061371 -88.629547 0.283828 +v -18.590450 -87.431198 0.293562 +v 18.590450 -87.431198 0.293562 +v -18.590450 -88.718887 0.293559 +v 18.590450 -88.718887 0.293559 +v -19.289221 -87.770531 0.295862 +v 19.289221 -87.770531 0.295862 +v -19.289221 -88.379547 0.295861 +v 19.289221 -88.379547 0.295861 +v -18.500000 -87.431198 0.300682 +v 18.500000 -87.431198 0.300682 +v -18.500000 -88.718887 0.300679 +v 18.500000 -88.718887 0.300679 +v -18.797140 -87.449509 0.305634 +v 18.797140 -87.449509 0.305634 +v -18.797140 -88.700569 0.305632 +v 18.797140 -88.700569 0.305632 +v -19.304041 -87.846825 0.306629 +v 19.304041 -87.846825 0.306629 +v -19.304041 -88.303253 0.306628 +v 19.304041 -88.303253 0.306628 +v -19.309019 -87.925041 0.310247 +v 19.309019 -87.925041 0.310247 +v -19.309019 -88.225037 0.310246 +v 19.309019 -88.225037 0.310246 +v -18.927320 -87.479538 0.310616 +v 18.927320 -87.479538 0.310616 +v -18.927320 -88.670540 0.310613 +v 18.927320 -88.670540 0.310613 +v -19.103550 -87.571487 0.326016 +v 19.103550 -87.571487 0.326016 +v -19.103550 -88.578590 0.326014 +v 19.103550 -88.578590 0.326014 +v -18.702250 -87.449509 0.344938 +v 18.702250 -87.449509 0.344938 +v -18.702250 -88.700569 0.344935 +v 18.702250 -88.700569 0.344935 +v -19.139580 -87.631149 0.362048 +v 19.139580 -87.631149 0.362048 +v -19.139580 -88.518936 0.362045 +v 19.139580 -88.518936 0.362045 +v -18.966640 -87.520531 0.364737 +v 18.966640 -87.520531 0.364737 +v -18.966640 -88.629547 0.364734 +v 18.966640 -88.629547 0.364734 +v -18.602390 -87.449509 0.368915 +v 18.602390 -87.449509 0.368915 +v -18.602390 -88.700569 0.368912 +v 18.602390 -88.700569 0.368912 +v -18.830050 -87.479538 0.370221 +v 18.830050 -87.479538 0.370221 +v -18.830050 -88.670540 0.370218 +v 18.830050 -88.670540 0.370218 +v -18.500000 -87.449509 0.376972 +v 18.500000 -87.449509 0.376972 +v -18.500000 -88.700569 0.376969 +v 18.500000 -88.700569 0.376969 +v -19.168570 -87.698044 0.391034 +v 19.168570 -87.698044 0.391034 +v -19.168570 -88.452034 0.391033 +v 19.168570 -88.452034 0.391033 +v -19.189800 -87.770531 0.412266 +v 19.189800 -87.770531 0.412266 +v -19.189800 -88.379547 0.412265 +v 19.189800 -88.379547 0.412265 +v -19.001711 -87.571487 0.413002 +v 19.001711 -87.571487 0.413002 +v -19.001711 -88.578590 0.412999 +v 19.001711 -88.578590 0.412999 +v -18.724649 -87.479538 0.413877 +v 18.724649 -87.479538 0.413877 +v -18.724649 -88.670540 0.413874 +v 18.724649 -88.670540 0.413874 +v -19.202749 -87.846825 0.425217 +v 19.202749 -87.846825 0.425217 +v -19.202749 -88.303253 0.425216 +v 19.202749 -88.303253 0.425216 +v -19.207109 -87.925041 0.429569 +v 19.207109 -87.925041 0.429569 +v -19.207109 -88.225037 0.429568 +v 19.207109 -88.225037 0.429568 +v -18.860420 -87.520531 0.429827 +v 18.860420 -87.520531 0.429827 +v -18.860420 -88.629547 0.429824 +v 18.860420 -88.629547 0.429824 +v -18.613729 -87.479538 0.440508 +v 18.613729 -87.479538 0.440508 +v -18.613729 -88.670540 0.440505 +v 18.613729 -88.670540 0.440505 +v -18.500000 -87.479538 0.449459 +v 18.500000 -87.479538 0.449459 +v -18.500000 -88.670540 0.449456 +v 18.500000 -88.670540 0.449456 +v -19.031660 -87.631149 0.454226 +v 19.031660 -87.631149 0.454226 +v -19.031660 -88.518936 0.454224 +v 19.031660 -88.518936 0.454224 +v -18.745331 -87.520531 0.477500 +v 18.745331 -87.520531 0.477500 +v -18.745331 -88.629547 0.477497 +v 18.745331 -88.629547 0.477497 +v -18.887501 -87.571487 0.482985 +v 18.887501 -87.571487 0.482985 +v -18.887501 -88.578590 0.482983 +v 18.887501 -88.578590 0.482983 +v -19.055750 -87.698044 0.487391 +v 19.055750 -87.698044 0.487391 +v -19.055750 -88.452034 0.487390 +v 19.055750 -88.452034 0.487390 +v -18.624189 -87.520531 0.506581 +v 18.624189 -87.520531 0.506581 +v -18.624189 -88.629547 0.506578 +v 18.624189 -88.629547 0.506578 +v -19.073400 -87.770531 0.511682 +v 19.073400 -87.770531 0.511682 +v -19.073400 -88.379547 0.511681 +v 19.073400 -88.379547 0.511681 +v -18.500000 -87.520531 0.516356 +v 18.500000 -87.520531 0.516356 +v -18.500000 -88.629547 0.516353 +v 18.500000 -88.629547 0.516353 +v -19.084169 -87.846825 0.526500 +v 19.084169 -87.846825 0.526500 +v -19.084169 -88.303253 0.526499 +v 19.084169 -88.303253 0.526499 +v -18.910641 -87.631149 0.528387 +v 18.910641 -87.631149 0.528387 +v -18.910641 -88.518936 0.528384 +v 18.910641 -88.518936 0.528384 +v -19.087790 -87.925041 0.531480 +v 19.087790 -87.925041 0.531480 +v -19.087790 -88.225037 0.531479 +v 19.087790 -88.225037 0.531479 +v -18.763760 -87.571487 0.534241 +v 18.763760 -87.571487 0.534241 +v -18.763760 -88.578590 0.534238 +v 18.763760 -88.578590 0.534238 +v -18.929251 -87.698044 0.564912 +v 18.929251 -87.698044 0.564912 +v -18.929251 -88.452034 0.564911 +v 18.929251 -88.452034 0.564911 +v -18.633530 -87.571487 0.565508 +v 18.633530 -87.571487 0.565508 +v -18.633530 -88.578590 0.565505 +v 18.633530 -88.578590 0.565505 +v -18.500000 -87.571487 0.576017 +v 18.500000 -87.571487 0.576017 +v -18.500000 -88.578590 0.576015 +v 18.500000 -88.578590 0.576015 +v -18.779510 -87.631149 0.582703 +v 18.779510 -87.631149 0.582703 +v -18.779510 -88.518936 0.582700 +v 18.779510 -88.518936 0.582700 +v -18.942881 -87.770531 0.591664 +v 18.942881 -87.770531 0.591664 +v -18.942881 -88.379547 0.591663 +v 18.942881 -88.379547 0.591663 +v -18.951200 -87.846825 0.607984 +v 18.951200 -87.846825 0.607984 +v -18.951200 -88.303253 0.607983 +v 18.951200 -88.303253 0.607983 +v -18.953991 -87.925041 0.613469 +v 18.953991 -87.925041 0.613469 +v -18.953991 -88.225037 0.613468 +v 18.953991 -88.225037 0.613468 +v -18.641500 -87.631149 0.615836 +v 18.641500 -87.631149 0.615836 +v -18.641500 -88.518936 0.615833 +v 18.641500 -88.518936 0.615833 +v -18.792179 -87.698044 0.621690 +v 18.792179 -87.698044 0.621690 +v -18.792179 -88.452034 0.621689 +v 18.792179 -88.452034 0.621689 +v -18.500000 -87.631149 0.626972 +v 18.500000 -87.631149 0.626972 +v -18.500000 -88.518936 0.626969 +v 18.500000 -88.518936 0.626969 +v -18.801451 -87.770531 0.650246 +v 18.801451 -87.770531 0.650246 +v -18.801451 -88.379547 0.650245 +v 18.801451 -88.379547 0.650245 +v -18.647909 -87.698044 0.656325 +v 18.647909 -87.698044 0.656325 +v -18.647909 -88.452034 0.656324 +v 18.647909 -88.452034 0.656324 +v -18.807119 -87.846825 0.667665 +v 18.807119 -87.846825 0.667665 +v -18.807119 -88.303253 0.667665 +v 18.807119 -88.303253 0.667665 +v -18.500000 -87.698044 0.667966 +v 18.500000 -87.698044 0.667966 +v -18.500000 -88.452034 0.667965 +v 18.500000 -88.452034 0.667965 +v -18.809019 -87.925041 0.673518 +v 18.809019 -87.925041 0.673518 +v -18.809019 -88.225037 0.673517 +v 18.809019 -88.225037 0.673517 +v -18.652611 -87.770531 0.685981 +v 18.652611 -87.770531 0.685981 +v -18.652611 -88.379547 0.685980 +v 18.652611 -88.379547 0.685980 +v -18.500000 -87.770531 0.697990 +v 18.500000 -87.770531 0.697990 +v -18.500000 -88.379547 0.697989 +v 18.500000 -88.379547 0.697989 +v -18.655470 -87.846825 0.704071 +v 18.655470 -87.846825 0.704071 +v -18.655470 -88.303253 0.704070 +v 18.655470 -88.303253 0.704070 +v -18.656441 -87.925041 0.710151 +v 18.656441 -87.925041 0.710151 +v -18.656441 -88.225037 0.710150 +v 18.656441 -88.225037 0.710150 +v -18.500000 -87.846825 0.716307 +v 18.500000 -87.846825 0.716307 +v -18.500000 -88.303253 0.716306 +v 18.500000 -88.303253 0.716306 +v -18.500000 -87.925041 0.722463 +v 18.500000 -87.925041 0.722463 +v -18.500000 -88.225037 0.722462 +v 18.500000 -88.225037 0.722462 + +f 6026 6028 5423 +f 6028 5425 5423 +f 6028 6030 5425 +f 6030 5427 5425 +f 6030 6032 5427 +f 6032 5429 5427 +f 6032 6034 5429 +f 6034 5431 5429 +f 6034 6036 5431 +f 6036 5433 5431 +f 6036 6038 5433 +f 6038 5435 5433 +f 6038 6040 5435 +f 6040 5437 5435 +f 6040 6042 5437 +f 6042 5439 5437 +f 6042 6044 5439 +f 6044 5441 5439 +f 6044 6046 5441 +f 6046 5443 5441 +f 5424 6023 5420 +f 6027 6023 5424 +f 5426 6027 5424 +f 6029 6027 5426 +f 5428 6029 5426 +f 6031 6029 5428 +f 5430 6031 5428 +f 6033 6031 5430 +f 5432 6033 5430 +f 6035 6033 5432 +f 5434 6035 5432 +f 6037 6035 5434 +f 5436 6037 5434 +f 6039 6037 5436 +f 5438 6039 5436 +f 6041 6039 5438 +f 5440 6041 5438 +f 6043 6041 5440 +f 5442 6043 5440 +f 6045 6043 5442 +f 5934 5938 5215 +f 5938 5240 5215 +f 5938 5948 5240 +f 5948 5242 5240 +f 5948 5244 5242 +f 5948 5954 5244 +f 5954 5248 5244 +f 5954 5250 5248 +f 5954 5960 5250 +f 5960 5255 5250 +f 5960 5256 5255 +f 5960 5966 5256 +f 5966 5261 5256 +f 5966 5262 5261 +f 5966 5968 5262 +f 5968 5266 5262 +f 5216 5933 5214 +f 5239 5937 5216 +f 5937 5933 5216 +f 5241 5937 5239 +f 5243 5947 5241 +f 5947 5937 5241 +f 5245 5947 5243 +f 5249 5953 5245 +f 5953 5947 5245 +f 5253 5953 5249 +f 5254 5959 5253 +f 5959 5953 5253 +f 5259 5959 5254 +f 5260 5965 5259 +f 5965 5959 5259 +f 5265 5965 5260 +f 5967 5965 5265 +f 5240 5247 5215 +f 5242 5247 5240 +f 5244 5247 5242 +f 5248 5247 5244 +f 5248 5250 5247 +f 5250 5264 5247 +f 5255 5264 5250 +f 5256 5264 5255 +f 5261 5264 5256 +f 5262 5264 5261 +f 5266 5264 5262 +f 5266 5275 5264 +f 5406 5275 5266 +f 5406 5321 5275 +f 5406 5407 5321 +f 5246 5216 5214 +f 5246 5239 5216 +f 5246 5241 5239 +f 5246 5243 5241 +f 5246 5245 5243 +f 5246 5249 5245 +f 5263 5254 5246 +f 5254 5253 5246 +f 5253 5249 5246 +f 5263 5259 5254 +f 5263 5260 5259 +f 5263 5265 5260 +f 5405 5265 5263 +f 5274 5405 5263 +f 5320 5405 5274 +f 5404 5405 5320 +f 5422 5407 5406 +f 5422 5423 5407 +f 5423 5409 5407 +f 5423 5425 5409 +f 5425 5411 5409 +f 5425 5413 5411 +f 5425 5415 5413 +f 5425 5417 5415 +f 5427 5419 5417 +f 5425 5427 5417 +f 5429 5431 5419 +f 5431 5433 5419 +f 5433 5435 5419 +f 5435 5437 5419 +f 5437 5439 5419 +f 5439 5441 5419 +f 5441 5443 5419 +f 5427 5429 5419 +f 5968 5406 5266 +f 5968 5422 5406 +f 5968 6025 5422 +f 6026 5423 5422 +f 6025 6026 5422 +f 5405 5967 5265 +f 5421 6024 5405 +f 6024 5967 5405 +f 6023 6024 5420 +f 6024 5421 5420 +f 5609 5612 5608 +f 5610 5612 5609 +f 5611 5612 5610 +f 5613 5616 5611 +f 5614 5612 5611 +f 5616 5614 5611 +f 5615 5616 5613 +f 5617 5616 5615 +f 5617 5618 5616 +f 5620 5618 5617 +f 5622 5620 5617 +f 5619 5622 5617 +f 5621 5622 5619 +f 5623 5622 5621 +f 5623 5624 5622 +f 5625 5627 5623 +f 5627 5624 5623 +f 5626 5627 5625 +f 5632 5630 5626 +f 5630 5628 5626 +f 5628 5627 5626 +f 5629 5632 5626 +f 5631 5632 5629 +f 5638 5632 5631 +f 5635 5641 5631 +f 5641 5639 5631 +f 5639 5638 5631 +f 5640 5641 5635 +f 5642 5641 5640 +f 5642 5648 5641 +f 5645 5648 5642 +f 5649 5648 5645 +f 5649 5650 5648 +f 5658 5651 5649 +f 5651 5650 5649 +f 5652 5658 5649 +f 5657 5658 5652 +f 5659 5667 5657 +f 5666 5658 5657 +f 5667 5666 5657 +f 5670 5667 5659 +f 5670 5676 5667 +f 5676 5675 5667 +f 4673 4675 4403 +f 4675 4405 4403 +f 4675 4677 4405 +f 4677 4407 4405 +f 4677 4679 4407 +f 4679 4409 4407 +f 4679 4681 4409 +f 4681 4411 4409 +f 4681 4683 4411 +f 4683 4413 4411 +f 4683 4685 4413 +f 4685 4415 4413 +f 4685 4687 4415 +f 4687 4417 4415 +f 3233 3235 3066 +f 3237 3239 3066 +f 3239 3241 3066 +f 3235 3237 3066 +f 3243 3245 3066 +f 3245 3247 3066 +f 3241 3243 3066 +f 3357 3359 3233 +f 3359 3235 3233 +f 3359 3361 3235 +f 3361 3237 3235 +f 3361 3363 3237 +f 3363 3239 3237 +f 3363 3365 3239 +f 3365 3241 3239 +f 3365 3367 3241 +f 3367 3243 3241 +f 3367 3369 3243 +f 3369 3245 3243 +f 3369 3371 3245 +f 3371 3247 3245 +f 3489 3491 3357 +f 3491 3359 3357 +f 3491 3493 3359 +f 3493 3361 3359 +f 3493 3495 3361 +f 3495 3363 3361 +f 3495 3497 3363 +f 3497 3365 3363 +f 3497 3499 3365 +f 3499 3367 3365 +f 3499 3501 3367 +f 3501 3369 3367 +f 3501 3503 3369 +f 3503 3371 3369 +f 3708 3710 3489 +f 3710 3491 3489 +f 3710 3712 3491 +f 3712 3493 3491 +f 3712 3714 3493 +f 3714 3495 3493 +f 3714 3716 3495 +f 3716 3497 3495 +f 3716 3718 3497 +f 3718 3499 3497 +f 3718 3720 3499 +f 3720 3501 3499 +f 3720 3722 3501 +f 3722 3503 3501 +f 3848 3850 3708 +f 3850 3710 3708 +f 3850 3852 3710 +f 3852 3712 3710 +f 3852 3854 3712 +f 3854 3714 3712 +f 3854 3856 3714 +f 3856 3716 3714 +f 3856 3858 3716 +f 3858 3718 3716 +f 3858 3860 3718 +f 3860 3720 3718 +f 3860 3862 3720 +f 3862 3722 3720 +f 3995 3997 3848 +f 3997 3850 3848 +f 3997 3999 3850 +f 3999 3852 3850 +f 3999 4001 3852 +f 4001 3854 3852 +f 4001 4003 3854 +f 4003 3856 3854 +f 4003 4005 3856 +f 4005 3858 3856 +f 4005 4007 3858 +f 4007 3860 3858 +f 4007 4009 3860 +f 4009 3862 3860 +f 4202 4204 3995 +f 4204 3997 3995 +f 4204 4206 3997 +f 4206 3999 3997 +f 4206 4208 3999 +f 4208 4001 3999 +f 4208 4210 4001 +f 4210 4003 4001 +f 4210 4212 4003 +f 4212 4005 4003 +f 4212 4214 4005 +f 4214 4007 4005 +f 4214 4216 4007 +f 4216 4009 4007 +f 4350 4352 4202 +f 4352 4204 4202 +f 4352 4354 4204 +f 4354 4206 4204 +f 4354 4356 4206 +f 4356 4208 4206 +f 4356 4358 4208 +f 4358 4210 4208 +f 4358 4360 4210 +f 4360 4212 4210 +f 4360 4362 4212 +f 4362 4214 4212 +f 4362 4364 4214 +f 4364 4216 4214 +f 4378 4380 4350 +f 4380 4352 4350 +f 4380 4382 4352 +f 4382 4354 4352 +f 4382 4384 4354 +f 4384 4356 4354 +f 4384 4386 4356 +f 4386 4358 4356 +f 4386 4388 4358 +f 4388 4360 4358 +f 4388 4390 4360 +f 4390 4362 4360 +f 4390 4392 4362 +f 4392 4364 4362 +f 4403 4405 4378 +f 4405 4380 4378 +f 4405 4407 4380 +f 4407 4382 4380 +f 4407 4409 4382 +f 4409 4384 4382 +f 4409 4411 4384 +f 4411 4386 4384 +f 4411 4413 4386 +f 4413 4388 4386 +f 4413 4415 4388 +f 4415 4390 4388 +f 4415 4417 4390 +f 4417 4392 4390 +f 4771 4675 4673 +f 4775 4677 4675 +f 4773 4775 4675 +f 4771 4773 4675 +f 4777 4679 4677 +f 4775 4777 4677 +f 4779 4681 4679 +f 4777 4779 4679 +f 4781 4683 4681 +f 4779 4781 4681 +f 4783 4685 4683 +f 4781 4783 4683 +f 4783 4687 4685 +f 4783 4689 4687 +f 4783 4785 4689 +f 4787 4773 4771 +f 4791 4775 4773 +f 4789 4791 4773 +f 4787 4789 4773 +f 4793 4777 4775 +f 4791 4793 4775 +f 4795 4779 4777 +f 4793 4795 4777 +f 4797 4781 4779 +f 4795 4797 4779 +f 4785 4783 4781 +f 4797 4785 4781 +f 4797 4799 4785 +f 4805 4789 4787 +f 4809 4791 4789 +f 4807 4809 4789 +f 4805 4807 4789 +f 4811 4793 4791 +f 4809 4811 4791 +f 4813 4795 4793 +f 4811 4813 4793 +f 4803 4797 4795 +f 4813 4803 4795 +f 4801 4799 4797 +f 4803 4801 4797 +f 4813 4815 4803 +f 4820 4807 4805 +f 4827 4809 4807 +f 4825 4827 4807 +f 4820 4825 4807 +f 4829 4811 4809 +f 4827 4829 4809 +f 4830 4813 4811 +f 4829 4830 4811 +f 4817 4815 4813 +f 4830 4817 4813 +f 4823 4825 4820 +f 4839 4825 4823 +f 4845 4827 4825 +f 4843 4845 4825 +f 4839 4843 4825 +f 4837 4829 4827 +f 4845 4837 4827 +f 4835 4832 4829 +f 4832 4830 4829 +f 4837 4835 4829 +f 4845 4855 4837 +f 4841 4843 4839 +f 4857 4843 4841 +f 4860 4857 4841 +f 4855 4845 4843 +f 4857 4855 4843 +f 3247 3068 3066 +f 3247 3248 3068 +f 3371 3248 3247 +f 3371 3372 3248 +f 3503 3372 3371 +f 3503 3504 3372 +f 3722 3504 3503 +f 3722 3723 3504 +f 3862 3723 3722 +f 3862 3863 3723 +f 4009 3863 3862 +f 4009 4010 3863 +f 4216 4010 4009 +f 4216 4217 4010 +f 4364 4217 4216 +f 4364 4365 4217 +f 4392 4365 4364 +f 4392 4393 4365 +f 4417 4393 4392 +f 4417 4418 4393 +f 3232 3066 3065 +f 3232 3233 3066 +f 3356 3233 3232 +f 3356 3357 3233 +f 3488 3357 3356 +f 3488 3489 3357 +f 3707 3489 3488 +f 3707 3708 3489 +f 3847 3708 3707 +f 3847 3848 3708 +f 3994 3848 3847 +f 3994 3995 3848 +f 4201 3995 3994 +f 4201 4202 3995 +f 4349 4202 4201 +f 4349 4350 4202 +f 4377 4350 4349 +f 4377 4378 4350 +f 4402 4378 4377 +f 4402 4403 4378 +f 4689 4846 4687 +f 4785 4874 4689 +f 4874 4869 4689 +f 4869 4868 4689 +f 4868 4863 4689 +f 4863 4846 4689 +f 4799 4878 4785 +f 4878 4874 4785 +f 4801 4887 4799 +f 4887 4878 4799 +f 4803 4887 4801 +f 4815 4900 4803 +f 4900 4887 4803 +f 4817 4900 4815 +f 4830 4917 4817 +f 4917 4900 4817 +f 4832 4917 4830 +f 4835 4928 4832 +f 4928 4917 4832 +f 4837 4931 4835 +f 4931 4928 4835 +f 4855 4936 4837 +f 4936 4931 4837 +f 4857 4953 4855 +f 4953 4948 4855 +f 4948 4944 4855 +f 4944 4936 4855 +f 4860 4958 4857 +f 4958 4953 4857 +f 3251 3252 3068 +f 3248 3249 3068 +f 3249 3250 3068 +f 3250 3251 3068 +f 3372 3373 3248 +f 3373 3249 3248 +f 3373 3374 3249 +f 3374 3250 3249 +f 3374 3375 3250 +f 3375 3251 3250 +f 3350 3252 3251 +f 3375 3350 3251 +f 3375 3376 3350 +f 3504 3505 3372 +f 3505 3373 3372 +f 3505 3506 3373 +f 3506 3374 3373 +f 3506 3507 3374 +f 3507 3375 3374 +f 3479 3376 3375 +f 3507 3479 3375 +f 3507 3508 3479 +f 3723 3724 3504 +f 3724 3505 3504 +f 3724 3725 3505 +f 3725 3506 3505 +f 3725 3726 3506 +f 3726 3507 3506 +f 3726 3700 3507 +f 3700 3508 3507 +f 3726 3727 3700 +f 3863 3864 3723 +f 3864 3724 3723 +f 3864 3865 3724 +f 3865 3725 3724 +f 3865 3866 3725 +f 3866 3726 3725 +f 3866 3867 3726 +f 3867 3727 3726 +f 4010 4011 3863 +f 4011 3864 3863 +f 4011 4012 3864 +f 4012 3865 3864 +f 4012 4013 3865 +f 4013 3866 3865 +f 4013 4014 3866 +f 4014 3867 3866 +f 4217 4218 4010 +f 4218 4011 4010 +f 4218 4219 4011 +f 4219 4012 4011 +f 4219 4220 4012 +f 4220 4013 4012 +f 4220 4064 4013 +f 4064 4014 4013 +f 4220 4221 4064 +f 4365 4366 4217 +f 4366 4218 4217 +f 4366 4367 4218 +f 4367 4219 4218 +f 4367 4368 4219 +f 4368 4220 4219 +f 4368 4223 4220 +f 4223 4221 4220 +f 4368 4369 4223 +f 4393 4394 4365 +f 4394 4366 4365 +f 4394 4395 4366 +f 4395 4367 4366 +f 4395 4396 4367 +f 4396 4368 4367 +f 4396 4371 4368 +f 4371 4369 4368 +f 4396 4397 4371 +f 4418 4419 4393 +f 4419 4394 4393 +f 4419 4421 4394 +f 4421 4395 4394 +f 4421 4422 4395 +f 4422 4396 4395 +f 4422 4423 4396 +f 4423 4397 4396 +f 3246 3244 3065 +f 3242 3240 3065 +f 3240 3238 3065 +f 3244 3242 3065 +f 3236 3234 3065 +f 3234 3232 3065 +f 3238 3236 3065 +f 3234 3356 3232 +f 3236 3358 3234 +f 3358 3356 3234 +f 3360 3358 3236 +f 3238 3360 3236 +f 3240 3362 3238 +f 3362 3360 3238 +f 3242 3364 3240 +f 3364 3362 3240 +f 3366 3364 3242 +f 3244 3366 3242 +f 3246 3368 3244 +f 3368 3366 3244 +f 3370 3368 3246 +f 3358 3488 3356 +f 3360 3490 3358 +f 3490 3488 3358 +f 3492 3490 3360 +f 3362 3492 3360 +f 3364 3494 3362 +f 3494 3492 3362 +f 3366 3496 3364 +f 3496 3494 3364 +f 3498 3496 3366 +f 3368 3498 3366 +f 3370 3500 3368 +f 3500 3498 3368 +f 3502 3500 3370 +f 3490 3707 3488 +f 3492 3709 3490 +f 3709 3707 3490 +f 3711 3709 3492 +f 3494 3711 3492 +f 3496 3713 3494 +f 3713 3711 3494 +f 3498 3715 3496 +f 3715 3713 3496 +f 3717 3715 3498 +f 3500 3717 3498 +f 3502 3719 3500 +f 3719 3717 3500 +f 3721 3719 3502 +f 3709 3847 3707 +f 3711 3849 3709 +f 3849 3847 3709 +f 3851 3849 3711 +f 3713 3851 3711 +f 3715 3853 3713 +f 3853 3851 3713 +f 3717 3855 3715 +f 3855 3853 3715 +f 3857 3855 3717 +f 3719 3857 3717 +f 3721 3859 3719 +f 3859 3857 3719 +f 3861 3859 3721 +f 3849 3994 3847 +f 3851 3996 3849 +f 3996 3994 3849 +f 3998 3996 3851 +f 3853 3998 3851 +f 3855 4000 3853 +f 4000 3998 3853 +f 3857 4002 3855 +f 4002 4000 3855 +f 4004 4002 3857 +f 3859 4004 3857 +f 3861 4006 3859 +f 4006 4004 3859 +f 4008 4006 3861 +f 3996 4201 3994 +f 3998 4203 3996 +f 4203 4201 3996 +f 4205 4203 3998 +f 4000 4205 3998 +f 4002 4207 4000 +f 4207 4205 4000 +f 4004 4209 4002 +f 4209 4207 4002 +f 4211 4209 4004 +f 4006 4211 4004 +f 4008 4213 4006 +f 4213 4211 4006 +f 4215 4213 4008 +f 4203 4349 4201 +f 4205 4351 4203 +f 4351 4349 4203 +f 4353 4351 4205 +f 4207 4353 4205 +f 4209 4355 4207 +f 4355 4353 4207 +f 4211 4357 4209 +f 4357 4355 4209 +f 4359 4357 4211 +f 4213 4359 4211 +f 4215 4361 4213 +f 4361 4359 4213 +f 4363 4361 4215 +f 4351 4377 4349 +f 4353 4379 4351 +f 4379 4377 4351 +f 4381 4379 4353 +f 4355 4381 4353 +f 4357 4383 4355 +f 4383 4381 4355 +f 4359 4385 4357 +f 4385 4383 4357 +f 4387 4385 4359 +f 4361 4387 4359 +f 4363 4389 4361 +f 4389 4387 4361 +f 4391 4389 4363 +f 4379 4402 4377 +f 4381 4404 4379 +f 4404 4402 4379 +f 4406 4404 4381 +f 4383 4406 4381 +f 4385 4408 4383 +f 4408 4406 4383 +f 4387 4410 4385 +f 4410 4408 4385 +f 4412 4410 4387 +f 4389 4412 4387 +f 4391 4414 4389 +f 4414 4412 4389 +f 4416 4414 4391 +f 4863 4847 4846 +f 4863 4865 4847 +f 4865 4848 4847 +f 4865 4866 4848 +f 4866 4849 4848 +f 4866 4850 4849 +f 4867 4851 4850 +f 4866 4867 4850 +f 4867 4852 4851 +f 4867 4862 4852 +f 4867 4872 4862 +f 4868 4865 4863 +f 4868 4869 4865 +f 4876 4877 4865 +f 4869 4876 4865 +f 4877 4866 4865 +f 4872 4867 4866 +f 4879 4872 4866 +f 4877 4879 4866 +f 4875 4876 4869 +f 4874 4875 4869 +f 4878 4875 4874 +f 4878 4887 4875 +f 4894 4876 4875 +f 4893 4894 4875 +f 4887 4893 4875 +f 4890 4877 4876 +f 4895 4890 4876 +f 4894 4895 4876 +f 4890 4881 4877 +f 4881 4879 4877 +f 4892 4893 4887 +f 4900 4892 4887 +f 4914 4915 4892 +f 4915 4893 4892 +f 4900 4914 4892 +f 4908 4894 4893 +f 4915 4908 4893 +f 4898 4895 4894 +f 4908 4898 4894 +f 4917 4913 4900 +f 4913 4914 4900 +f 4915 4920 4908 +f 4917 4933 4913 +f 4934 4914 4913 +f 4933 4934 4913 +f 4934 4935 4914 +f 4935 4915 4914 +f 4935 4922 4915 +f 4922 4920 4915 +f 4928 4932 4917 +f 4932 4933 4917 +f 4931 4932 4928 +f 4936 4932 4931 +f 4949 4933 4932 +f 4952 4949 4932 +f 4936 4952 4932 +f 4949 4934 4933 +f 4949 4939 4934 +f 4939 4935 4934 +f 4955 4952 4936 +f 4944 4955 4936 +f 4948 4955 4944 +f 4956 4955 4948 +f 4953 4956 4948 +f 4958 4956 4953 +f 4846 4847 4418 +f 4847 4419 4418 +f 4847 4848 4419 +f 4848 4849 4419 +f 4849 4421 4419 +f 4849 4850 4421 +f 4850 4851 4421 +f 4851 4422 4421 +f 4851 4852 4422 +f 4852 4423 4422 +f 3228 3142 3068 +f 3252 3228 3068 +f 3252 3292 3228 +f 3350 3351 3252 +f 3351 3292 3252 +f 3480 3412 3350 +f 3412 3351 3350 +f 3376 3480 3350 +f 3484 3377 3354 +f 3479 3480 3376 +f 3484 3474 3377 +f 3484 3482 3474 +f 3703 3681 3479 +f 3681 3606 3479 +f 3606 3602 3479 +f 3485 3480 3479 +f 3602 3485 3479 +f 3508 3703 3479 +f 3484 3588 3482 +f 3590 3588 3484 +f 3700 3703 3508 +f 3590 3704 3588 +f 3604 3704 3590 +f 3705 3704 3604 +f 3731 3703 3700 +f 3870 3843 3700 +f 3843 3841 3700 +f 3841 3790 3700 +f 3790 3731 3700 +f 3727 3870 3700 +f 3705 3733 3704 +f 3729 3733 3705 +f 3867 3870 3727 +f 3788 3733 3729 +f 3744 3788 3729 +f 3871 3788 3744 +f 3829 3871 3744 +f 3872 3871 3829 +f 3992 3980 3867 +f 4014 4067 3867 +f 4067 4016 3867 +f 4016 3992 3867 +f 3929 3870 3867 +f 3980 3929 3867 +f 3872 3987 3871 +f 3874 3987 3872 +f 4015 3987 3874 +f 3928 4015 3874 +f 4065 4015 3928 +f 3932 4065 3928 +f 3982 4065 3932 +f 3986 4065 3982 +f 4062 4065 3986 +f 4064 4070 4014 +f 4070 4067 4014 +f 4072 4065 4062 +f 4221 4070 4064 +f 4072 4224 4065 +f 4221 4224 4070 +f 4224 4073 4070 +f 4075 4224 4072 +f 4224 4075 4073 +f 4223 4224 4221 +f 4373 4346 4223 +f 4346 4345 4223 +f 4345 4224 4223 +f 4369 4373 4223 +f 4371 4373 4369 +f 4398 4373 4371 +f 4399 4398 4371 +f 4397 4399 4371 +f 4423 4399 4397 +f 4423 4626 4399 +f 3230 3246 3065 +f 3067 3230 3065 +f 3349 3246 3230 +f 3349 3370 3246 +f 3355 3370 3349 +f 3478 3370 3355 +f 3478 3502 3370 +f 3487 3502 3478 +f 3587 3502 3487 +f 3587 3721 3502 +f 3699 3721 3587 +f 3706 3721 3699 +f 3730 3721 3706 +f 3730 3861 3721 +f 3846 3861 3730 +f 3878 3861 3846 +f 3878 4008 3861 +f 3993 4008 3878 +f 4215 4008 3993 +f 4063 4215 3993 +f 4116 4215 4063 +f 4200 4215 4116 +f 4222 4363 4200 +f 4363 4215 4200 +f 4228 4363 4222 +f 4348 4363 4228 +f 4391 4363 4348 +f 4370 4391 4348 +f 4374 4391 4370 +f 4376 4391 4374 +f 4400 4391 4376 +f 4400 4416 4391 +f 4420 4416 4400 +f 4404 4672 4402 +f 4406 4674 4404 +f 4674 4672 4404 +f 4408 4676 4406 +f 4676 4674 4406 +f 4410 4678 4408 +f 4678 4676 4408 +f 4412 4680 4410 +f 4680 4678 4410 +f 4414 4682 4412 +f 4682 4680 4412 +f 4416 4684 4414 +f 4684 4682 4414 +f 4686 4684 4416 +f 4862 5258 4852 +f 4872 5271 4862 +f 5271 5268 4862 +f 5268 5258 4862 +f 5277 5273 4872 +f 5273 5271 4872 +f 4879 5277 4872 +f 4881 5277 4879 +f 5281 5277 4881 +f 4890 5281 4881 +f 4895 5281 4890 +f 4898 5281 4895 +f 4908 5281 4898 +f 4920 5304 4908 +f 5304 5281 4908 +f 5300 5302 4920 +f 5302 5304 4920 +f 5298 5300 4920 +f 4922 5298 4920 +f 4935 5298 4922 +f 4939 5298 4935 +f 4949 5295 4939 +f 5297 5298 4939 +f 5295 5297 4939 +f 4952 5291 4949 +f 5291 5293 4949 +f 5293 5295 4949 +f 4955 5289 4952 +f 5289 5291 4952 +f 4956 5289 4955 +f 5287 5289 4956 +f 4958 5284 4956 +f 5284 5285 4956 +f 5285 5287 4956 +f 5304 5307 5281 +f 3139 3230 3067 +f 3153 3230 3139 +f 3254 3230 3153 +f 3254 3349 3230 +f 3352 3349 3254 +f 3352 3355 3349 +f 3478 3355 3352 +f 3455 3478 3352 +f 3472 3473 3353 +f 3481 3478 3455 +f 3475 3473 3472 +f 3483 3486 3473 +f 3475 3483 3473 +f 3481 3487 3478 +f 3542 3487 3481 +f 3697 3486 3483 +f 3697 3591 3486 +f 3542 3587 3487 +f 3699 3587 3542 +f 3603 3699 3542 +f 3697 3698 3591 +f 3605 3699 3603 +f 3682 3699 3605 +f 3701 3699 3682 +f 3702 3698 3697 +f 3702 3728 3698 +f 3701 3706 3699 +f 3732 3706 3701 +f 3734 3728 3702 +f 3732 3730 3706 +f 3734 3735 3728 +f 3732 3846 3730 +f 3789 3846 3732 +f 3869 3735 3734 +f 3869 3827 3735 +f 3842 3846 3789 +f 3869 3873 3827 +f 3845 3846 3842 +f 3868 3846 3845 +f 3868 3878 3846 +f 3877 3878 3868 +f 3876 3873 3869 +f 3876 3875 3873 +f 4017 3927 3875 +f 3876 4017 3875 +f 3931 4063 3877 +f 4063 3993 3877 +f 3993 3878 3877 +f 4069 3930 3927 +f 4017 4069 3927 +f 4069 3983 3930 +f 3979 4063 3931 +f 3981 4063 3979 +f 3991 4063 3981 +f 4069 3985 3983 +f 4069 4068 3985 +f 4060 4063 3991 +f 4066 4063 4060 +f 4066 4071 4063 +f 4071 4116 4063 +f 4225 4074 4068 +f 4117 4225 4068 +f 4069 4117 4068 +f 4074 4225 4071 +f 4225 4116 4071 +f 4225 4200 4116 +f 4225 4222 4200 +f 4225 4347 4222 +f 4347 4228 4222 +f 4347 4372 4228 +f 4372 4348 4228 +f 4372 4370 4348 +f 4372 4375 4370 +f 4375 4374 4370 +f 4375 4401 4374 +f 4401 4376 4374 +f 4401 4400 4376 +f 4401 4625 4400 +f 4625 4420 4400 +f 4674 4770 4672 +f 4676 4772 4674 +f 4772 4770 4674 +f 4678 4774 4676 +f 4774 4772 4676 +f 4680 4776 4678 +f 4776 4774 4678 +f 4682 4778 4680 +f 4778 4776 4680 +f 4684 4780 4682 +f 4780 4778 4682 +f 4686 4688 4684 +f 4688 4782 4684 +f 4782 4780 4684 +f 4784 4782 4688 +f 4772 4786 4770 +f 4774 4788 4772 +f 4788 4786 4772 +f 4776 4790 4774 +f 4790 4788 4774 +f 4778 4792 4776 +f 4792 4790 4776 +f 4780 4794 4778 +f 4794 4792 4778 +f 4784 4796 4780 +f 4782 4784 4780 +f 4796 4794 4780 +f 4798 4796 4784 +f 4788 4804 4786 +f 4806 4804 4788 +f 4790 4806 4788 +f 4792 4808 4790 +f 4808 4806 4790 +f 4794 4810 4792 +f 4810 4808 4792 +f 4802 4812 4794 +f 4796 4802 4794 +f 4812 4810 4794 +f 4798 4800 4796 +f 4800 4802 4796 +f 4814 4812 4802 +f 4806 4819 4804 +f 4824 4819 4806 +f 4808 4824 4806 +f 4810 4826 4808 +f 4826 4824 4808 +f 4821 4828 4810 +f 4812 4821 4810 +f 4828 4826 4810 +f 4814 4816 4812 +f 4816 4821 4812 +f 4824 4822 4819 +f 4824 4838 4822 +f 4842 4838 4824 +f 4826 4842 4824 +f 4836 4844 4826 +f 4834 4836 4826 +f 4828 4834 4826 +f 4844 4842 4826 +f 4821 4831 4828 +f 4831 4834 4828 +f 4854 4844 4836 +f 4842 4840 4838 +f 4842 4859 4840 +f 4856 4859 4842 +f 4844 4856 4842 +f 4854 4856 4844 +f 5268 4902 4885 +f 5258 5268 4885 +f 5268 4910 4902 +f 5268 4925 4910 +f 5273 4947 4925 +f 5271 5273 4925 +f 5268 5271 4925 +f 5273 4959 4947 +f 5277 4971 4959 +f 5273 5277 4959 +f 5277 4974 4971 +f 5277 5281 4974 +f 5281 4988 4974 +f 5281 5309 4988 +f 5309 4992 4988 +f 5309 5311 4992 +f 5311 5004 4992 +f 5311 5019 5004 +f 5311 5020 5019 +f 5313 5030 5020 +f 5311 5313 5020 +f 5313 5036 5030 +f 5313 5315 5036 +f 5315 5044 5036 +f 5315 5046 5044 +f 5317 5050 5046 +f 5315 5317 5046 +f 5317 5053 5050 +f 5317 5319 5053 +f 5307 5309 5281 +f 4861 4864 4686 +f 4864 4870 4686 +f 4870 4688 4686 +f 4873 4784 4688 +f 4870 4871 4688 +f 4871 4873 4688 +f 4880 4798 4784 +f 4873 4880 4784 +f 4886 4800 4798 +f 4880 4886 4798 +f 4891 4802 4800 +f 4886 4891 4800 +f 4899 4814 4802 +f 4891 4899 4802 +f 4907 4816 4814 +f 4899 4907 4814 +f 4909 4821 4816 +f 4907 4909 4816 +f 4909 4921 4821 +f 4921 4831 4821 +f 4923 4834 4831 +f 4921 4923 4831 +f 4940 4836 4834 +f 4923 4940 4834 +f 4941 4854 4836 +f 4940 4941 4836 +f 4950 4856 4854 +f 4941 4950 4854 +f 4951 4859 4856 +f 4950 4951 4856 +f 4951 4957 4859 +f 4902 4904 4883 +f 4885 4902 4883 +f 4910 4927 4902 +f 4927 4904 4902 +f 4925 4927 4910 +f 4947 4927 4925 +f 4947 4962 4927 +f 4959 4962 4947 +f 4971 4962 4959 +f 4971 4976 4962 +f 4974 4976 4971 +f 4988 4976 4974 +f 4988 4991 4976 +f 4992 4991 4988 +f 5004 5007 4991 +f 4992 5004 4991 +f 5019 5007 5004 +f 5019 5022 5007 +f 5020 5022 5019 +f 5030 5022 5020 +f 5030 5039 5022 +f 5036 5039 5030 +f 5044 5039 5036 +f 5044 5049 5039 +f 5046 5049 5044 +f 5055 5049 5046 +f 5050 5055 5046 +f 5053 5055 5050 +f 5257 4833 4818 +f 5257 4853 4833 +f 5267 4858 4853 +f 5257 5267 4853 +f 5267 4861 4858 +f 5267 4864 4861 +f 5272 4870 4864 +f 5267 5272 4864 +f 5272 4871 4870 +f 5272 4873 4871 +f 5276 4880 4873 +f 5272 5276 4873 +f 5276 4886 4880 +f 5276 5278 4886 +f 5278 5282 4886 +f 5282 4891 4886 +f 5282 5303 4891 +f 5303 4899 4891 +f 5303 4907 4899 +f 5303 4909 4907 +f 5301 4921 4909 +f 5303 5301 4909 +f 5301 4923 4921 +f 5301 5299 4923 +f 5299 5296 4923 +f 5296 4940 4923 +f 5296 5294 4940 +f 5294 4941 4940 +f 5294 5292 4941 +f 5292 5290 4941 +f 5290 4950 4941 +f 5290 5288 4950 +f 5288 5286 4950 +f 5286 4951 4950 +f 5286 5283 4951 +f 5283 4957 4951 +f 5306 5305 5282 +f 5305 5303 5282 +f 4904 4906 4883 +f 4906 4889 4883 +f 4906 4919 4889 +f 4919 4897 4889 +f 4919 4938 4897 +f 4938 4912 4897 +f 4927 4930 4904 +f 4930 4906 4904 +f 4930 4946 4906 +f 4946 4919 4906 +f 4938 4968 4912 +f 4968 4943 4912 +f 4946 4966 4919 +f 4966 4938 4919 +f 4962 4964 4927 +f 4964 4930 4927 +f 4964 4970 4930 +f 4970 4946 4930 +f 4966 4983 4938 +f 4983 4968 4938 +f 4968 4987 4943 +f 4987 4973 4943 +f 4970 4981 4946 +f 4981 4966 4946 +f 4976 4979 4962 +f 4979 4964 4962 +f 4979 4985 4964 +f 4985 4970 4964 +f 4981 4999 4966 +f 4999 4983 4966 +f 4983 5003 4968 +f 5003 4987 4968 +f 4985 4997 4970 +f 4997 4981 4970 +f 4987 5029 4973 +f 5029 5011 4973 +f 4991 4994 4976 +f 4994 4979 4976 +f 4994 5001 4979 +f 5001 4985 4979 +f 4997 5016 4981 +f 5016 4999 4981 +f 4999 5027 4983 +f 5027 5003 4983 +f 5001 5014 4985 +f 5014 4997 4985 +f 5003 5087 4987 +f 5087 5029 4987 +f 5007 5009 4991 +f 5009 4994 4991 +f 5009 5018 4994 +f 5018 5001 4994 +f 5014 5041 4997 +f 5041 5016 4997 +f 5016 5083 4999 +f 5083 5027 4999 +f 5018 5032 5001 +f 5032 5014 5001 +f 5027 5105 5003 +f 5105 5087 5003 +f 5022 5025 5007 +f 5025 5009 5007 +f 5025 5035 5009 +f 5035 5018 5009 +f 5029 5119 5011 +f 5119 5107 5011 +f 5032 5093 5014 +f 5093 5041 5014 +f 5041 5103 5016 +f 5103 5083 5016 +f 5035 5089 5018 +f 5089 5032 5018 +f 5039 5043 5022 +f 5043 5025 5022 +f 5043 5085 5025 +f 5085 5035 5025 +f 5083 5121 5027 +f 5121 5105 5027 +f 5087 5131 5029 +f 5131 5119 5029 +f 5089 5111 5032 +f 5111 5093 5032 +f 5085 5101 5035 +f 5101 5089 5035 +f 5049 5081 5039 +f 5081 5043 5039 +f 5093 5117 5041 +f 5117 5103 5041 +f 5081 5095 5043 +f 5095 5085 5043 +f 5055 5091 5049 +f 5091 5081 5049 +f 5091 5097 5081 +f 5097 5095 5081 +f 5103 5133 5083 +f 5133 5121 5083 +f 5095 5109 5085 +f 5109 5101 5085 +f 5105 5141 5087 +f 5141 5131 5087 +f 5101 5115 5089 +f 5115 5111 5089 +f 5111 5127 5093 +f 5127 5117 5093 +f 5097 5113 5095 +f 5113 5109 5095 +f 5109 5123 5101 +f 5123 5115 5101 +f 5117 5143 5103 +f 5143 5133 5103 +f 5121 5147 5105 +f 5147 5141 5105 +f 5119 5159 5107 +f 5159 5149 5107 +f 5113 5125 5109 +f 5125 5123 5109 +f 5115 5135 5111 +f 5135 5127 5111 +f 5123 5137 5115 +f 5137 5135 5115 +f 5127 5145 5117 +f 5145 5143 5117 +f 5131 5163 5119 +f 5163 5159 5119 +f 5133 5157 5121 +f 5157 5147 5121 +f 5125 5139 5123 +f 5139 5137 5123 +f 5135 5151 5127 +f 5151 5145 5127 +f 5141 5169 5131 +f 5169 5163 5131 +f 5143 5161 5133 +f 5161 5157 5133 +f 5137 5153 5135 +f 5153 5151 5135 +f 5139 5155 5137 +f 5155 5153 5137 +f 5147 5177 5141 +f 5177 5169 5141 +f 5145 5167 5143 +f 5167 5161 5143 +f 5151 5171 5145 +f 5171 5167 5145 +f 5157 5179 5147 +f 5179 5177 5147 +f 5159 5193 5149 +f 5193 5187 5149 +f 5153 5173 5151 +f 5173 5171 5151 +f 5155 5175 5153 +f 5175 5173 5153 +f 5161 5181 5157 +f 5181 5179 5157 +f 5163 5195 5159 +f 5195 5193 5159 +f 5167 5183 5161 +f 5183 5181 5161 +f 5169 5197 5163 +f 5197 5195 5163 +f 5171 5185 5167 +f 5185 5183 5167 +f 5177 5199 5169 +f 5199 5197 5169 +f 5173 5189 5171 +f 5189 5185 5171 +f 5175 5191 5173 +f 5191 5189 5173 +f 5179 5201 5177 +f 5201 5199 5177 +f 5181 5203 5179 +f 5203 5201 5179 +f 5183 5205 5181 +f 5205 5203 5181 +f 5185 5207 5183 +f 5207 5205 5183 +f 5189 5209 5185 +f 5209 5207 5185 +f 5193 5236 5187 +f 5236 5238 5187 +f 5191 5213 5189 +f 5213 5209 5189 +f 5195 5234 5193 +f 5234 5236 5193 +f 5197 5232 5195 +f 5232 5234 5195 +f 5199 5230 5197 +f 5230 5232 5197 +f 5201 5228 5199 +f 5228 5230 5199 +f 5203 5226 5201 +f 5226 5228 5201 +f 5205 5224 5203 +f 5224 5226 5203 +f 5207 5222 5205 +f 5222 5224 5205 +f 5209 5220 5207 +f 5220 5222 5207 +f 5213 5218 5209 +f 5218 5220 5209 +f 4901 5257 4884 +f 4916 5267 4901 +f 5267 5257 4901 +f 4924 5272 4916 +f 5272 5267 4916 +f 4954 5272 4924 +f 4960 5276 4954 +f 5276 5272 4954 +f 4977 5278 4960 +f 5278 5276 4960 +f 4989 5282 4977 +f 5282 5278 4977 +f 4995 5308 4989 +f 5308 5282 4989 +f 5005 5310 4995 +f 5310 5308 4995 +f 5012 5310 5005 +f 5023 5312 5012 +f 5312 5310 5012 +f 5033 5312 5023 +f 5037 5314 5033 +f 5314 5312 5033 +f 5045 5314 5037 +f 5047 5316 5045 +f 5316 5314 5045 +f 5051 5316 5047 +f 5052 5318 5051 +f 5318 5316 5051 +f 5308 5306 5282 +f 5449 5220 5218 +f 5447 5449 5218 +f 5453 5222 5220 +f 5451 5453 5220 +f 5449 5451 5220 +f 5457 5224 5222 +f 5455 5457 5222 +f 5453 5455 5222 +f 5461 5226 5224 +f 5459 5461 5224 +f 5457 5459 5224 +f 5463 5228 5226 +f 5461 5463 5226 +f 5465 5230 5228 +f 5463 5465 5228 +f 5467 5232 5230 +f 5465 5467 5230 +f 5469 5234 5232 +f 5467 5469 5232 +f 5473 5236 5234 +f 5471 5473 5234 +f 5469 5471 5234 +f 5477 5238 5236 +f 5475 5477 5236 +f 5473 5475 5236 +f 5477 5479 5238 +f 4903 4884 4882 +f 4903 4901 4884 +f 4903 4916 4901 +f 4926 4924 4903 +f 4924 4916 4903 +f 4926 4954 4924 +f 4960 4954 4926 +f 4961 4960 4926 +f 4961 4975 4960 +f 4975 4977 4960 +f 4990 4977 4975 +f 4990 4989 4977 +f 4990 4995 4989 +f 5006 5005 4990 +f 5005 4995 4990 +f 5006 5012 5005 +f 5021 5023 5006 +f 5023 5012 5006 +f 5038 5037 5021 +f 5037 5033 5021 +f 5033 5023 5021 +f 5038 5045 5037 +f 5048 5047 5038 +f 5047 5045 5038 +f 5048 5051 5047 +f 5054 5052 5048 +f 5052 5051 5048 +f 5503 5449 5447 +f 5501 5451 5449 +f 5503 5501 5449 +f 5499 5453 5451 +f 5501 5499 5451 +f 5499 5455 5453 +f 5497 5457 5455 +f 5499 5497 5455 +f 5497 5459 5457 +f 5495 5461 5459 +f 5497 5495 5459 +f 5495 5463 5461 +f 5493 5465 5463 +f 5495 5493 5463 +f 5491 5467 5465 +f 5493 5491 5465 +f 5489 5469 5467 +f 5491 5489 5467 +f 5489 5471 5469 +f 5487 5473 5471 +f 5489 5487 5471 +f 5487 5475 5473 +f 5485 5477 5475 +f 5487 5485 5475 +f 5485 5479 5477 +f 5485 5483 5479 +f 5485 5511 5483 +f 5511 5509 5483 +f 5513 5511 5485 +f 5487 5513 5485 +f 5489 5517 5487 +f 5517 5513 5487 +f 5491 5519 5489 +f 5519 5517 5489 +f 5493 5521 5491 +f 5521 5519 5491 +f 5495 5523 5493 +f 5523 5521 5493 +f 5497 5525 5495 +f 5525 5523 5495 +f 5499 5527 5497 +f 5527 5525 5497 +f 5501 5529 5499 +f 5529 5527 5499 +f 5507 5529 5501 +f 5503 5507 5501 +f 5531 5529 5507 +f 5511 5537 5509 +f 5537 5535 5509 +f 5541 5537 5511 +f 5513 5541 5511 +f 5517 5543 5513 +f 5543 5541 5513 +f 5519 5547 5517 +f 5547 5543 5517 +f 5521 5549 5519 +f 5549 5547 5519 +f 5523 5551 5521 +f 5551 5549 5521 +f 5525 5553 5523 +f 5553 5551 5523 +f 5527 5555 5525 +f 5555 5553 5525 +f 5529 5557 5527 +f 5557 5555 5527 +f 5539 5557 5529 +f 5531 5539 5529 +f 5537 5565 5535 +f 5565 5563 5535 +f 5569 5565 5537 +f 5541 5569 5537 +f 5559 5557 5539 +f 5543 5571 5541 +f 5571 5569 5541 +f 5547 5573 5543 +f 5573 5571 5543 +f 5549 5579 5547 +f 5579 5573 5547 +f 5551 5581 5549 +f 5581 5579 5549 +f 5553 5583 5551 +f 5583 5581 5551 +f 5555 5585 5553 +f 5585 5583 5553 +f 5557 5587 5555 +f 5587 5585 5555 +f 5559 5587 5557 +f 5575 5587 5559 +f 5565 5637 5563 +f 5637 5634 5563 +f 5644 5637 5565 +f 5569 5644 5565 +f 5571 5647 5569 +f 5647 5644 5569 +f 5573 5654 5571 +f 5654 5647 5571 +f 5579 5656 5573 +f 5656 5654 5573 +f 5589 5587 5575 +f 5581 5661 5579 +f 5661 5656 5579 +f 5583 5665 5581 +f 5665 5661 5581 +f 5585 5669 5583 +f 5669 5665 5583 +f 5587 5672 5585 +f 5672 5669 5585 +f 5589 5672 5587 +f 5663 5672 5589 +f 5637 5680 5634 +f 5680 5678 5634 +f 5682 5680 5637 +f 5644 5682 5637 +f 5647 5684 5644 +f 5684 5682 5644 +f 5654 5686 5647 +f 5686 5684 5647 +f 5656 5688 5654 +f 5688 5686 5654 +f 5661 5690 5656 +f 5690 5688 5656 +f 5665 5692 5661 +f 5692 5690 5661 +f 5674 5672 5663 +f 5669 5696 5665 +f 5696 5692 5665 +f 5672 5698 5669 +f 5698 5696 5669 +f 5700 5698 5672 +f 5674 5700 5672 +f 5680 5704 5678 +f 5704 5694 5678 +f 5706 5704 5680 +f 5682 5706 5680 +f 5684 5708 5682 +f 5708 5706 5682 +f 5686 5710 5684 +f 5710 5708 5684 +f 5688 5714 5686 +f 5714 5710 5686 +f 5690 5718 5688 +f 5718 5714 5688 +f 5692 5720 5690 +f 5720 5718 5690 +f 5696 5724 5692 +f 5724 5720 5692 +f 5704 5716 5694 +f 5716 5712 5694 +f 5698 5726 5696 +f 5726 5724 5696 +f 5702 5726 5698 +f 5700 5702 5698 +f 5728 5726 5702 +f 5722 5716 5704 +f 5706 5722 5704 +f 5708 5732 5706 +f 5732 5722 5706 +f 5710 5738 5708 +f 5738 5732 5708 +f 5714 5740 5710 +f 5740 5738 5710 +f 5716 5736 5712 +f 5736 5734 5712 +f 5718 5748 5714 +f 5748 5740 5714 +f 5742 5736 5716 +f 5722 5742 5716 +f 5720 5828 5718 +f 5828 5748 5718 +f 5724 5833 5720 +f 5833 5828 5720 +f 5732 5830 5722 +f 5830 5742 5722 +f 5726 5836 5724 +f 5836 5833 5724 +f 5730 5836 5726 +f 5728 5730 5726 +f 5838 5836 5730 +f 5738 5842 5732 +f 5842 5830 5732 +f 5736 5826 5734 +f 5826 5744 5734 +f 5840 5826 5736 +f 5742 5840 5736 +f 5740 5849 5738 +f 5849 5842 5738 +f 5748 5855 5740 +f 5855 5849 5740 +f 5830 5851 5742 +f 5851 5840 5742 +f 5834 5746 5744 +f 5826 5834 5744 +f 5828 5860 5748 +f 5860 5855 5748 +f 5840 5834 5826 +f 5833 5865 5828 +f 5865 5860 5828 +f 5842 5858 5830 +f 5858 5851 5830 +f 5836 5868 5833 +f 5868 5865 5833 +f 5840 5843 5834 +f 5846 5868 5836 +f 5838 5846 5836 +f 5851 5847 5840 +f 5847 5843 5840 +f 5849 5872 5842 +f 5872 5858 5842 +f 5870 5868 5846 +f 5851 5852 5847 +f 5855 5879 5849 +f 5879 5872 5849 +f 5858 5856 5851 +f 5856 5852 5851 +f 5860 5883 5855 +f 5883 5879 5855 +f 5858 5862 5856 +f 5872 5866 5858 +f 5866 5862 5858 +f 5865 5886 5860 +f 5886 5883 5860 +f 5868 5892 5865 +f 5892 5886 5865 +f 5872 5874 5866 +f 5877 5892 5868 +f 5870 5877 5868 +f 5879 5875 5872 +f 5875 5874 5872 +f 5879 5884 5875 +f 5894 5892 5877 +f 5883 5884 5879 +f 5888 5884 5883 +f 5886 5890 5883 +f 5890 5888 5883 +f 5897 5890 5886 +f 5892 5898 5886 +f 5898 5897 5886 +f 5894 5931 5892 +f 5931 5900 5892 +f 5900 5898 5892 +f 4888 4903 4882 +f 4905 4903 4888 +f 4896 4905 4888 +f 4918 4905 4896 +f 4911 4918 4896 +f 4905 4926 4903 +f 4929 4926 4905 +f 4918 4929 4905 +f 4937 4918 4911 +f 4942 4937 4911 +f 4945 4929 4918 +f 4937 4945 4918 +f 4929 4961 4926 +f 4963 4961 4929 +f 4945 4963 4929 +f 4965 4945 4937 +f 4942 4967 4937 +f 4967 4965 4937 +f 4972 4967 4942 +f 4969 4963 4945 +f 4965 4969 4945 +f 4963 4975 4961 +f 4978 4975 4963 +f 4969 4978 4963 +f 4980 4969 4965 +f 4967 4982 4965 +f 4982 4980 4965 +f 4972 4986 4967 +f 4986 4982 4967 +f 4984 4978 4969 +f 4980 4984 4969 +f 5010 4986 4972 +f 4978 4990 4975 +f 4993 4990 4978 +f 4984 4993 4978 +f 4996 4984 4980 +f 4982 4998 4980 +f 4998 4996 4980 +f 4986 5002 4982 +f 5002 4998 4982 +f 5000 4993 4984 +f 4996 5000 4984 +f 5010 5028 4986 +f 5028 5002 4986 +f 4993 5006 4990 +f 5008 5006 4993 +f 5000 5008 4993 +f 5013 5000 4996 +f 4998 5015 4996 +f 5015 5013 4996 +f 5002 5026 4998 +f 5026 5015 4998 +f 5017 5008 5000 +f 5013 5017 5000 +f 5028 5086 5002 +f 5086 5026 5002 +f 5008 5021 5006 +f 5024 5021 5008 +f 5017 5024 5008 +f 5106 5028 5010 +f 5031 5017 5013 +f 5015 5040 5013 +f 5040 5031 5013 +f 5026 5082 5015 +f 5082 5040 5015 +f 5034 5024 5017 +f 5031 5034 5017 +f 5024 5038 5021 +f 5042 5038 5024 +f 5034 5042 5024 +f 5086 5104 5026 +f 5104 5082 5026 +f 5106 5118 5028 +f 5118 5086 5028 +f 5088 5034 5031 +f 5040 5092 5031 +f 5092 5088 5031 +f 5084 5042 5034 +f 5088 5084 5034 +f 5042 5048 5038 +f 5082 5102 5040 +f 5102 5092 5040 +f 5080 5048 5042 +f 5084 5080 5042 +f 5080 5054 5048 +f 5080 5090 5054 +f 5084 5094 5080 +f 5094 5090 5080 +f 5104 5120 5082 +f 5120 5102 5082 +f 5088 5100 5084 +f 5100 5094 5084 +f 5118 5130 5086 +f 5130 5104 5086 +f 5092 5110 5088 +f 5110 5100 5088 +f 5094 5096 5090 +f 5102 5116 5092 +f 5116 5110 5092 +f 5100 5108 5094 +f 5108 5096 5094 +f 5108 5112 5096 +f 5110 5114 5100 +f 5114 5108 5100 +f 5120 5132 5102 +f 5132 5116 5102 +f 5130 5140 5104 +f 5140 5120 5104 +f 5148 5118 5106 +f 5114 5122 5108 +f 5122 5112 5108 +f 5116 5126 5110 +f 5126 5114 5110 +f 5122 5124 5112 +f 5126 5134 5114 +f 5134 5122 5114 +f 5132 5142 5116 +f 5142 5126 5116 +f 5148 5158 5118 +f 5158 5130 5118 +f 5140 5146 5120 +f 5146 5132 5120 +f 5134 5136 5122 +f 5136 5124 5122 +f 5136 5138 5124 +f 5142 5144 5126 +f 5144 5134 5126 +f 5158 5162 5130 +f 5162 5140 5130 +f 5146 5156 5132 +f 5156 5142 5132 +f 5144 5150 5134 +f 5150 5136 5134 +f 5150 5152 5136 +f 5152 5138 5136 +f 5152 5154 5138 +f 5162 5168 5140 +f 5168 5146 5140 +f 5156 5160 5142 +f 5160 5144 5142 +f 5160 5166 5144 +f 5166 5150 5144 +f 5168 5176 5146 +f 5176 5156 5146 +f 5186 5158 5148 +f 5166 5170 5150 +f 5170 5152 5150 +f 5170 5172 5152 +f 5172 5154 5152 +f 5172 5174 5154 +f 5176 5178 5156 +f 5178 5160 5156 +f 5186 5192 5158 +f 5192 5162 5158 +f 5178 5180 5160 +f 5180 5166 5160 +f 5192 5194 5162 +f 5194 5168 5162 +f 5180 5182 5166 +f 5182 5170 5166 +f 5194 5196 5168 +f 5196 5176 5168 +f 5182 5184 5170 +f 5184 5172 5170 +f 5184 5188 5172 +f 5188 5174 5172 +f 5188 5190 5174 +f 5196 5198 5176 +f 5198 5178 5176 +f 5198 5200 5178 +f 5200 5180 5178 +f 5200 5202 5180 +f 5202 5182 5180 +f 5202 5204 5182 +f 5204 5184 5182 +f 5204 5206 5184 +f 5206 5188 5184 +f 5237 5192 5186 +f 5206 5208 5188 +f 5208 5190 5188 +f 5208 5212 5190 +f 5237 5235 5192 +f 5235 5194 5192 +f 5235 5233 5194 +f 5233 5196 5194 +f 5233 5231 5196 +f 5231 5198 5196 +f 5231 5229 5198 +f 5229 5200 5198 +f 5229 5227 5200 +f 5227 5202 5200 +f 5227 5225 5202 +f 5225 5204 5202 +f 5225 5223 5204 +f 5223 5206 5204 +f 5223 5221 5206 +f 5221 5208 5206 +f 5221 5219 5208 +f 5219 5212 5208 +f 5219 5217 5212 +f 5448 5446 5217 +f 5219 5448 5217 +f 5221 5452 5219 +f 5450 5448 5219 +f 5452 5450 5219 +f 5223 5456 5221 +f 5456 5454 5221 +f 5454 5452 5221 +f 5225 5458 5223 +f 5458 5456 5223 +f 5227 5460 5225 +f 5460 5458 5225 +f 5229 5462 5227 +f 5462 5460 5227 +f 5231 5464 5229 +f 5464 5462 5229 +f 5233 5468 5231 +f 5468 5466 5231 +f 5466 5464 5231 +f 5235 5472 5233 +f 5472 5470 5233 +f 5470 5468 5233 +f 5237 5476 5235 +f 5476 5474 5235 +f 5474 5472 5235 +f 5478 5476 5237 +f 5500 5502 5446 +f 5448 5500 5446 +f 5450 5500 5448 +f 5498 5500 5450 +f 5452 5498 5450 +f 5454 5498 5452 +f 5456 5496 5454 +f 5496 5498 5454 +f 5458 5496 5456 +f 5460 5494 5458 +f 5494 5496 5458 +f 5462 5492 5460 +f 5492 5494 5460 +f 5464 5490 5462 +f 5490 5492 5462 +f 5466 5490 5464 +f 5468 5488 5466 +f 5488 5490 5466 +f 5470 5488 5468 +f 5472 5486 5470 +f 5486 5488 5470 +f 5474 5486 5472 +f 5476 5484 5474 +f 5484 5486 5474 +f 5482 5484 5476 +f 5478 5482 5476 +f 5508 5484 5482 +f 5508 5510 5484 +f 5510 5486 5484 +f 5512 5488 5486 +f 5510 5512 5486 +f 5516 5490 5488 +f 5512 5516 5488 +f 5518 5492 5490 +f 5516 5518 5490 +f 5520 5494 5492 +f 5518 5520 5492 +f 5522 5496 5494 +f 5520 5522 5494 +f 5524 5498 5496 +f 5522 5524 5496 +f 5526 5500 5498 +f 5524 5526 5498 +f 5506 5502 5500 +f 5528 5506 5500 +f 5526 5528 5500 +f 5528 5530 5506 +f 5534 5510 5508 +f 5534 5536 5510 +f 5536 5512 5510 +f 5540 5516 5512 +f 5536 5540 5512 +f 5542 5518 5516 +f 5540 5542 5516 +f 5546 5520 5518 +f 5542 5546 5518 +f 5548 5522 5520 +f 5546 5548 5520 +f 5550 5524 5522 +f 5548 5550 5522 +f 5552 5526 5524 +f 5550 5552 5524 +f 5554 5528 5526 +f 5552 5554 5526 +f 5538 5530 5528 +f 5556 5538 5528 +f 5554 5556 5528 +f 5562 5536 5534 +f 5562 5564 5536 +f 5564 5540 5536 +f 5556 5558 5538 +f 5568 5542 5540 +f 5564 5568 5540 +f 5570 5546 5542 +f 5568 5570 5542 +f 5572 5548 5546 +f 5570 5572 5546 +f 5578 5550 5548 +f 5572 5578 5548 +f 5580 5552 5550 +f 5578 5580 5550 +f 5582 5554 5552 +f 5580 5582 5552 +f 5584 5556 5554 +f 5582 5584 5554 +f 5574 5558 5556 +f 5586 5574 5556 +f 5584 5586 5556 +f 5633 5564 5562 +f 5633 5636 5564 +f 5636 5568 5564 +f 5643 5570 5568 +f 5636 5643 5568 +f 5646 5572 5570 +f 5643 5646 5570 +f 5653 5578 5572 +f 5646 5653 5572 +f 5586 5588 5574 +f 5655 5580 5578 +f 5653 5655 5578 +f 5660 5582 5580 +f 5655 5660 5580 +f 5664 5584 5582 +f 5660 5664 5582 +f 5668 5586 5584 +f 5664 5668 5584 +f 5662 5588 5586 +f 5671 5662 5586 +f 5668 5671 5586 +f 5677 5636 5633 +f 5677 5679 5636 +f 5679 5643 5636 +f 5681 5646 5643 +f 5679 5681 5643 +f 5683 5653 5646 +f 5681 5683 5646 +f 5685 5655 5653 +f 5683 5685 5653 +f 5687 5660 5655 +f 5685 5687 5655 +f 5689 5664 5660 +f 5687 5689 5660 +f 5671 5673 5662 +f 5691 5668 5664 +f 5689 5691 5664 +f 5695 5671 5668 +f 5691 5695 5668 +f 5697 5673 5671 +f 5695 5697 5671 +f 5697 5699 5673 +f 5693 5679 5677 +f 5693 5703 5679 +f 5703 5681 5679 +f 5705 5683 5681 +f 5703 5705 5681 +f 5707 5685 5683 +f 5705 5707 5683 +f 5709 5687 5685 +f 5707 5709 5685 +f 5713 5689 5687 +f 5709 5713 5687 +f 5717 5691 5689 +f 5713 5717 5689 +f 5719 5695 5691 +f 5717 5719 5691 +f 5711 5703 5693 +f 5723 5697 5695 +f 5719 5723 5695 +f 5701 5699 5697 +f 5725 5701 5697 +f 5723 5725 5697 +f 5725 5727 5701 +f 5711 5715 5703 +f 5715 5705 5703 +f 5721 5707 5705 +f 5715 5721 5705 +f 5731 5709 5707 +f 5721 5731 5707 +f 5737 5713 5709 +f 5731 5737 5709 +f 5733 5715 5711 +f 5739 5717 5713 +f 5737 5739 5713 +f 5733 5735 5715 +f 5735 5721 5715 +f 5747 5719 5717 +f 5739 5747 5717 +f 5827 5723 5719 +f 5747 5827 5719 +f 5741 5731 5721 +f 5735 5741 5721 +f 5832 5725 5723 +f 5827 5832 5723 +f 5835 5837 5725 +f 5837 5729 5725 +f 5729 5727 5725 +f 5832 5835 5725 +f 5829 5737 5731 +f 5741 5829 5731 +f 5743 5735 5733 +f 5743 5825 5735 +f 5825 5741 5735 +f 5841 5739 5737 +f 5829 5841 5737 +f 5848 5747 5739 +f 5841 5848 5739 +f 5839 5829 5741 +f 5825 5839 5741 +f 5745 5825 5743 +f 5831 5825 5745 +f 5854 5827 5747 +f 5848 5854 5747 +f 5831 5844 5825 +f 5844 5839 5825 +f 5859 5832 5827 +f 5854 5859 5827 +f 5850 5841 5829 +f 5839 5850 5829 +f 5864 5835 5832 +f 5859 5864 5832 +f 5845 5837 5835 +f 5869 5845 5835 +f 5867 5869 5835 +f 5864 5867 5835 +f 5853 5850 5839 +f 5844 5853 5839 +f 5857 5848 5841 +f 5850 5857 5841 +f 5871 5854 5848 +f 5857 5871 5848 +f 5861 5857 5850 +f 5853 5861 5850 +f 5878 5859 5854 +f 5871 5878 5854 +f 5863 5873 5857 +f 5873 5871 5857 +f 5861 5863 5857 +f 5882 5864 5859 +f 5878 5882 5859 +f 5885 5867 5864 +f 5882 5885 5864 +f 5876 5869 5867 +f 5891 5876 5867 +f 5885 5891 5867 +f 5880 5878 5871 +f 5873 5880 5871 +f 5891 5893 5876 +f 5881 5887 5878 +f 5887 5882 5878 +f 5880 5881 5878 +f 5889 5895 5882 +f 5895 5885 5882 +f 5887 5889 5882 +f 5896 5899 5885 +f 5899 5891 5885 +f 5895 5896 5885 +f 5899 5893 5891 +f 5899 5930 5893 +f 5754 5942 5750 +f 5942 5936 5750 +f 5758 5946 5754 +f 5946 5942 5754 +f 5762 5952 5758 +f 5952 5946 5758 +f 5766 5958 5762 +f 5958 5952 5762 +f 5770 5964 5766 +f 5964 5958 5766 +f 5774 5972 5770 +f 5972 5964 5770 +f 5778 5976 5774 +f 5976 5972 5774 +f 5782 5980 5778 +f 5980 5976 5778 +f 5786 5984 5782 +f 5984 5980 5782 +f 5790 5988 5786 +f 5988 5984 5786 +f 5794 5992 5790 +f 5992 5988 5790 +f 5798 5996 5794 +f 5996 5992 5794 +f 5802 6000 5798 +f 6000 5996 5798 +f 5806 6004 5802 +f 6004 6000 5802 +f 5810 6008 5806 +f 6008 6004 5806 +f 5814 6012 5810 +f 6012 6008 5810 +f 5818 6016 5814 +f 6016 6012 5814 +f 5822 6020 5818 +f 6020 6016 5818 +f 5824 6022 5822 +f 6022 6020 5822 +f 5752 5940 5749 +f 5940 5935 5749 +f 5756 5944 5752 +f 5944 5940 5752 +f 5760 5950 5756 +f 5950 5944 5756 +f 5764 5956 5760 +f 5956 5950 5760 +f 5768 5962 5764 +f 5962 5956 5764 +f 5772 5970 5768 +f 5970 5962 5768 +f 5776 5974 5772 +f 5974 5970 5772 +f 5780 5978 5776 +f 5978 5974 5776 +f 5784 5982 5780 +f 5982 5978 5780 +f 5788 5986 5784 +f 5986 5982 5784 +f 5792 5990 5788 +f 5990 5986 5788 +f 5796 5994 5792 +f 5994 5990 5792 +f 5800 5998 5796 +f 5998 5994 5796 +f 5804 6002 5800 +f 6002 5998 5800 +f 5808 6006 5804 +f 6006 6002 5804 +f 5812 6010 5808 +f 6010 6006 5808 +f 5816 6014 5812 +f 6014 6010 5812 +f 5820 6018 5816 +f 6018 6014 5816 +f 5823 6021 5820 +f 6021 6018 5820 +f 5409 5411 4535 +f 5411 4537 4535 +f 5411 5413 4537 +f 5413 4539 4537 +f 5413 5415 4539 +f 5415 4541 4539 +f 5415 5417 4541 +f 5417 4543 4541 +f 5417 5419 4543 +f 5419 4545 4543 +f 4536 5408 4534 +f 4538 5410 4536 +f 5410 5408 4536 +f 4540 5412 4538 +f 5412 5410 4538 +f 4542 5414 4540 +f 5414 5412 4540 +f 4544 5416 4542 +f 5416 5414 4542 +f 5418 5416 4544 +f 6155 6159 6091 +f 6093 6155 6091 +f 6147 6155 6093 +f 6095 6147 6093 +f 6143 6147 6095 +f 6097 6143 6095 +f 6139 6143 6097 +f 6099 6139 6097 +f 6135 6139 6099 +f 6101 6135 6099 +f 6131 6135 6101 +f 6103 6131 6101 +f 6127 6131 6103 +f 6105 6127 6103 +f 6123 6127 6105 +f 6107 6123 6105 +f 6119 6123 6107 +f 6109 6119 6107 +f 6115 6119 6109 +f 6111 6115 6109 +f 6151 6119 6115 +f 6163 6123 6119 +f 6151 6163 6119 +f 6167 6127 6123 +f 6163 6167 6123 +f 6171 6131 6127 +f 6167 6171 6127 +f 6179 6135 6131 +f 6171 6179 6131 +f 6187 6139 6135 +f 6179 6187 6135 +f 6191 6143 6139 +f 6187 6191 6139 +f 6195 6147 6143 +f 6191 6195 6143 +f 6207 6155 6147 +f 6195 6207 6147 +f 6175 6163 6151 +f 6211 6159 6155 +f 6207 6211 6155 +f 6211 6215 6159 +f 6183 6167 6163 +f 6175 6183 6163 +f 6203 6171 6167 +f 6183 6203 6167 +f 6219 6179 6171 +f 6203 6219 6171 +f 6199 6183 6175 +f 6231 6187 6179 +f 6219 6231 6179 +f 6223 6203 6183 +f 6199 6223 6183 +f 6239 6191 6187 +f 6231 6239 6187 +f 6251 6195 6191 +f 6239 6251 6191 +f 6259 6207 6195 +f 6251 6259 6195 +f 6227 6223 6199 +f 6235 6219 6203 +f 6223 6235 6203 +f 6263 6211 6207 +f 6259 6263 6207 +f 6271 6215 6211 +f 6263 6271 6211 +f 6271 6275 6215 +f 6255 6231 6219 +f 6235 6255 6219 +f 6247 6235 6223 +f 6227 6247 6223 +f 6243 6247 6227 +f 6283 6239 6231 +f 6255 6283 6231 +f 6279 6255 6235 +f 6247 6279 6235 +f 6303 6251 6239 +f 6283 6303 6239 +f 6267 6287 6243 +f 6287 6247 6243 +f 6287 6279 6247 +f 6319 6259 6251 +f 6303 6319 6251 +f 6307 6283 6255 +f 6279 6307 6255 +f 6327 6263 6259 +f 6319 6327 6259 +f 6339 6271 6263 +f 6327 6339 6263 +f 6291 6311 6267 +f 6311 6287 6267 +f 6351 6275 6271 +f 6339 6351 6271 +f 6351 6355 6275 +f 6315 6307 6279 +f 6287 6315 6279 +f 6331 6303 6283 +f 6307 6331 6283 +f 6311 6315 6287 +f 6295 6323 6291 +f 6323 6311 6291 +f 6299 6335 6295 +f 6335 6323 6295 +f 6343 6335 6299 +f 6363 6319 6303 +f 6331 6363 6303 +f 6359 6331 6307 +f 6315 6359 6307 +f 6323 6347 6311 +f 6347 6315 6311 +f 6347 6359 6315 +f 6371 6327 6319 +f 6363 6371 6319 +f 6335 6367 6323 +f 6367 6347 6323 +f 6391 6339 6327 +f 6371 6391 6327 +f 6375 6363 6331 +f 6359 6375 6331 +f 6343 6379 6335 +f 6379 6367 6335 +f 6395 6351 6339 +f 6391 6395 6339 +f 6387 6379 6343 +f 6367 6383 6347 +f 6383 6359 6347 +f 6407 6355 6351 +f 6395 6407 6351 +f 6407 6411 6355 +f 6383 6375 6359 +f 6399 6371 6363 +f 6375 6399 6363 +f 6379 6403 6367 +f 6403 6383 6367 +f 6427 6391 6371 +f 6399 6427 6371 +f 6415 6399 6375 +f 6383 6415 6375 +f 6387 6419 6379 +f 6419 6403 6379 +f 6403 6415 6383 +f 6423 6419 6387 +f 6439 6395 6391 +f 6427 6439 6391 +f 6447 6407 6395 +f 6439 6447 6395 +f 6435 6427 6399 +f 6415 6435 6399 +f 6419 6431 6403 +f 6431 6415 6403 +f 6455 6411 6407 +f 6447 6455 6407 +f 6455 6463 6411 +f 6431 6435 6415 +f 6423 6443 6419 +f 6443 6431 6419 +f 6451 6443 6423 +f 6459 6439 6427 +f 6435 6459 6427 +f 6443 6467 6431 +f 6467 6435 6431 +f 6467 6459 6435 +f 6471 6447 6439 +f 6459 6471 6439 +f 6451 6475 6443 +f 6475 6467 6443 +f 6487 6455 6447 +f 6471 6487 6447 +f 6479 6475 6451 +f 6491 6463 6455 +f 6487 6491 6455 +f 6483 6471 6459 +f 6467 6483 6459 +f 6491 6495 6463 +f 6475 6483 6467 +f 6503 6487 6471 +f 6483 6503 6471 +f 6479 6499 6475 +f 6499 6483 6475 +f 6507 6499 6479 +f 6499 6503 6483 +f 6511 6491 6487 +f 6503 6511 6487 +f 6519 6495 6491 +f 6511 6519 6491 +f 6519 6527 6495 +f 6507 6515 6499 +f 6515 6503 6499 +f 6515 6511 6503 +f 6523 6515 6507 +f 6531 6519 6511 +f 6515 6531 6511 +f 6523 6531 6515 +f 6539 6527 6519 +f 6531 6539 6519 +f 6535 6531 6523 +f 6539 6543 6527 +f 6535 6539 6531 +f 6547 6539 6535 +f 6547 6543 6539 +f 6547 6551 6543 +f 4640 6091 4636 +f 6093 6091 4640 +f 4642 6093 4640 +f 6095 6093 4642 +f 4646 6095 4642 +f 6097 6095 4646 +f 4648 6097 4646 +f 6099 6097 4648 +f 4652 6099 4648 +f 6101 6099 4652 +f 4654 6101 4652 +f 6103 6101 4654 +f 4658 6103 4654 +f 6105 6103 4658 +f 4662 6105 4658 +f 6107 6105 4662 +f 4664 6107 4662 +f 6109 6107 4664 +f 4668 6109 4664 +f 6111 6109 4668 +f 6344 6343 6299 +f 6300 6344 6299 +f 6388 6387 6343 +f 6344 6388 6343 +f 6424 6423 6387 +f 6388 6424 6387 +f 6452 6451 6423 +f 6424 6452 6423 +f 6480 6479 6451 +f 6452 6480 6451 +f 6508 6507 6479 +f 6480 6508 6479 +f 6524 6523 6507 +f 6508 6524 6507 +f 6536 6535 6523 +f 6524 6536 6523 +f 6548 6547 6535 +f 6536 6548 6535 +f 6552 6551 6547 +f 6548 6552 6547 +f 6160 6094 6092 +f 6160 6156 6094 +f 6156 6096 6094 +f 6156 6148 6096 +f 6148 6098 6096 +f 6148 6144 6098 +f 6144 6100 6098 +f 6144 6140 6100 +f 6140 6102 6100 +f 6140 6136 6102 +f 6136 6104 6102 +f 6136 6132 6104 +f 6132 6106 6104 +f 6132 6128 6106 +f 6128 6108 6106 +f 6128 6124 6108 +f 6124 6110 6108 +f 6124 6120 6110 +f 6120 6112 6110 +f 6120 6116 6112 +f 6120 6164 6116 +f 6164 6152 6116 +f 6124 6168 6120 +f 6168 6164 6120 +f 6128 6172 6124 +f 6172 6168 6124 +f 6132 6180 6128 +f 6180 6172 6128 +f 6136 6188 6132 +f 6188 6180 6132 +f 6140 6192 6136 +f 6192 6188 6136 +f 6144 6196 6140 +f 6196 6192 6140 +f 6148 6208 6144 +f 6208 6196 6144 +f 6156 6212 6148 +f 6212 6208 6148 +f 6164 6184 6152 +f 6184 6176 6152 +f 6160 6216 6156 +f 6216 6212 6156 +f 6168 6204 6164 +f 6204 6184 6164 +f 6172 6220 6168 +f 6220 6204 6168 +f 6180 6232 6172 +f 6232 6220 6172 +f 6184 6224 6176 +f 6224 6200 6176 +f 6188 6240 6180 +f 6240 6232 6180 +f 6204 6236 6184 +f 6236 6224 6184 +f 6192 6252 6188 +f 6252 6240 6188 +f 6196 6260 6192 +f 6260 6252 6192 +f 6208 6264 6196 +f 6264 6260 6196 +f 6224 6248 6200 +f 6248 6228 6200 +f 6220 6256 6204 +f 6256 6236 6204 +f 6212 6272 6208 +f 6272 6264 6208 +f 6216 6276 6212 +f 6276 6272 6212 +f 6232 6284 6220 +f 6284 6256 6220 +f 6236 6280 6224 +f 6280 6248 6224 +f 6248 6288 6228 +f 6288 6244 6228 +f 6240 6304 6232 +f 6304 6284 6232 +f 6256 6308 6236 +f 6308 6280 6236 +f 6252 6320 6240 +f 6320 6304 6240 +f 6288 6312 6244 +f 6312 6268 6244 +f 6280 6316 6248 +f 6316 6288 6248 +f 6260 6328 6252 +f 6328 6320 6252 +f 6284 6332 6256 +f 6332 6308 6256 +f 6264 6340 6260 +f 6340 6328 6260 +f 6272 6352 6264 +f 6352 6340 6264 +f 6312 6324 6268 +f 6324 6292 6268 +f 6276 6356 6272 +f 6356 6352 6272 +f 6308 6360 6280 +f 6360 6316 6280 +f 6304 6364 6284 +f 6364 6332 6284 +f 6316 6348 6288 +f 6348 6312 6288 +f 6324 6336 6292 +f 6336 6296 6292 +f 6336 6344 6296 +f 6344 6300 6296 +f 6320 6372 6304 +f 6372 6364 6304 +f 6332 6376 6308 +f 6376 6360 6308 +f 6348 6368 6312 +f 6368 6324 6312 +f 6360 6384 6316 +f 6384 6348 6316 +f 6328 6392 6320 +f 6392 6372 6320 +f 6368 6380 6324 +f 6380 6336 6324 +f 6340 6396 6328 +f 6396 6392 6328 +f 6364 6400 6332 +f 6400 6376 6332 +f 6380 6388 6336 +f 6388 6344 6336 +f 6352 6408 6340 +f 6408 6396 6340 +f 6384 6404 6348 +f 6404 6368 6348 +f 6356 6412 6352 +f 6412 6408 6352 +f 6376 6416 6360 +f 6416 6384 6360 +f 6372 6428 6364 +f 6428 6400 6364 +f 6404 6420 6368 +f 6420 6380 6368 +f 6392 6440 6372 +f 6440 6428 6372 +f 6400 6436 6376 +f 6436 6416 6376 +f 6420 6424 6380 +f 6424 6388 6380 +f 6416 6432 6384 +f 6432 6404 6384 +f 6396 6448 6392 +f 6448 6440 6392 +f 6408 6456 6396 +f 6456 6448 6396 +f 6428 6460 6400 +f 6460 6436 6400 +f 6432 6444 6404 +f 6444 6420 6404 +f 6412 6464 6408 +f 6464 6456 6408 +f 6436 6468 6416 +f 6468 6432 6416 +f 6444 6452 6420 +f 6452 6424 6420 +f 6440 6472 6428 +f 6472 6460 6428 +f 6468 6476 6432 +f 6476 6444 6432 +f 6460 6484 6436 +f 6484 6468 6436 +f 6448 6488 6440 +f 6488 6472 6440 +f 6476 6480 6444 +f 6480 6452 6444 +f 6456 6492 6448 +f 6492 6488 6448 +f 6464 6496 6456 +f 6496 6492 6456 +f 6472 6504 6460 +f 6504 6484 6460 +f 6484 6500 6468 +f 6500 6476 6468 +f 6488 6512 6472 +f 6512 6504 6472 +f 6500 6508 6476 +f 6508 6480 6476 +f 6504 6516 6484 +f 6516 6500 6484 +f 6492 6520 6488 +f 6520 6512 6488 +f 6496 6528 6492 +f 6528 6520 6492 +f 6516 6524 6500 +f 6524 6508 6500 +f 6512 6532 6504 +f 6532 6516 6504 +f 6520 6540 6512 +f 6540 6532 6512 +f 6532 6536 6516 +f 6536 6524 6516 +f 6528 6544 6520 +f 6544 6540 6520 +f 6540 6548 6532 +f 6548 6536 6532 +f 6544 6552 6540 +f 6552 6548 6540 +f 6092 6094 4637 +f 6094 4641 4637 +f 6094 6096 4641 +f 6096 4643 4641 +f 6096 6098 4643 +f 6098 4647 4643 +f 6098 6100 4647 +f 6100 4649 4647 +f 6100 6102 4649 +f 6102 4653 4649 +f 6102 6104 4653 +f 6104 4655 4653 +f 6104 6106 4655 +f 6106 4659 4655 +f 6106 6108 4659 +f 6108 4663 4659 +f 6108 6110 4663 +f 6110 4665 4663 +f 6110 6112 4665 +f 6112 4671 4665 +f 6114 6072 6070 +f 6118 6074 6072 +f 6114 6118 6072 +f 6122 6076 6074 +f 6118 6122 6074 +f 6126 6078 6076 +f 6122 6126 6076 +f 6130 6080 6078 +f 6126 6130 6078 +f 6134 6082 6080 +f 6130 6134 6080 +f 6138 6084 6082 +f 6134 6138 6082 +f 6142 6086 6084 +f 6138 6142 6084 +f 6146 6088 6086 +f 6142 6146 6086 +f 6154 6090 6088 +f 6146 6154 6088 +f 6154 6158 6090 +f 6150 6118 6114 +f 6162 6122 6118 +f 6150 6162 6118 +f 6166 6126 6122 +f 6162 6166 6122 +f 6170 6130 6126 +f 6166 6170 6126 +f 6178 6134 6130 +f 6170 6178 6130 +f 6186 6138 6134 +f 6178 6186 6134 +f 6190 6142 6138 +f 6186 6190 6138 +f 6194 6146 6142 +f 6190 6194 6142 +f 6206 6154 6146 +f 6194 6206 6146 +f 6174 6162 6150 +f 6210 6158 6154 +f 6206 6210 6154 +f 6210 6214 6158 +f 6182 6166 6162 +f 6174 6182 6162 +f 6202 6170 6166 +f 6182 6202 6166 +f 6218 6178 6170 +f 6202 6218 6170 +f 6198 6182 6174 +f 6230 6186 6178 +f 6218 6230 6178 +f 6222 6202 6182 +f 6198 6222 6182 +f 6238 6190 6186 +f 6230 6238 6186 +f 6250 6194 6190 +f 6238 6250 6190 +f 6258 6206 6194 +f 6250 6258 6194 +f 6226 6222 6198 +f 6234 6218 6202 +f 6222 6234 6202 +f 6262 6210 6206 +f 6258 6262 6206 +f 6270 6214 6210 +f 6262 6270 6210 +f 6270 6274 6214 +f 6254 6230 6218 +f 6234 6254 6218 +f 6246 6234 6222 +f 6226 6246 6222 +f 6242 6246 6226 +f 6282 6238 6230 +f 6254 6282 6230 +f 6278 6254 6234 +f 6246 6278 6234 +f 6302 6250 6238 +f 6282 6302 6238 +f 6266 6286 6242 +f 6286 6246 6242 +f 6286 6278 6246 +f 6318 6258 6250 +f 6302 6318 6250 +f 6306 6282 6254 +f 6278 6306 6254 +f 6326 6262 6258 +f 6318 6326 6258 +f 6338 6270 6262 +f 6326 6338 6262 +f 6290 6310 6266 +f 6310 6286 6266 +f 6350 6274 6270 +f 6338 6350 6270 +f 6350 6354 6274 +f 6314 6306 6278 +f 6286 6314 6278 +f 6330 6302 6282 +f 6306 6330 6282 +f 6310 6314 6286 +f 6294 6322 6290 +f 6322 6310 6290 +f 6298 6334 6294 +f 6334 6322 6294 +f 6342 6334 6298 +f 6362 6318 6302 +f 6330 6362 6302 +f 6358 6330 6306 +f 6314 6358 6306 +f 6322 6346 6310 +f 6346 6314 6310 +f 6346 6358 6314 +f 6370 6326 6318 +f 6362 6370 6318 +f 6334 6366 6322 +f 6366 6346 6322 +f 6390 6338 6326 +f 6370 6390 6326 +f 6374 6362 6330 +f 6358 6374 6330 +f 6342 6378 6334 +f 6378 6366 6334 +f 6394 6350 6338 +f 6390 6394 6338 +f 6386 6378 6342 +f 6366 6382 6346 +f 6382 6358 6346 +f 6406 6354 6350 +f 6394 6406 6350 +f 6406 6410 6354 +f 6382 6374 6358 +f 6398 6370 6362 +f 6374 6398 6362 +f 6378 6402 6366 +f 6402 6382 6366 +f 6426 6390 6370 +f 6398 6426 6370 +f 6414 6398 6374 +f 6382 6414 6374 +f 6386 6418 6378 +f 6418 6402 6378 +f 6402 6414 6382 +f 6422 6418 6386 +f 6438 6394 6390 +f 6426 6438 6390 +f 6446 6406 6394 +f 6438 6446 6394 +f 6434 6426 6398 +f 6414 6434 6398 +f 6418 6430 6402 +f 6430 6414 6402 +f 6454 6410 6406 +f 6446 6454 6406 +f 6454 6462 6410 +f 6430 6434 6414 +f 6422 6442 6418 +f 6442 6430 6418 +f 6450 6442 6422 +f 6458 6438 6426 +f 6434 6458 6426 +f 6442 6466 6430 +f 6466 6434 6430 +f 6466 6458 6434 +f 6470 6446 6438 +f 6458 6470 6438 +f 6450 6474 6442 +f 6474 6466 6442 +f 6486 6454 6446 +f 6470 6486 6446 +f 6478 6474 6450 +f 6490 6462 6454 +f 6486 6490 6454 +f 6482 6470 6458 +f 6466 6482 6458 +f 6490 6494 6462 +f 6474 6482 6466 +f 6502 6486 6470 +f 6482 6502 6470 +f 6478 6498 6474 +f 6498 6482 6474 +f 6506 6498 6478 +f 6498 6502 6482 +f 6510 6490 6486 +f 6502 6510 6486 +f 6518 6494 6490 +f 6510 6518 6490 +f 6518 6526 6494 +f 6506 6514 6498 +f 6514 6502 6498 +f 6514 6510 6502 +f 6522 6514 6506 +f 6530 6518 6510 +f 6514 6530 6510 +f 6522 6530 6514 +f 6538 6526 6518 +f 6530 6538 6518 +f 6534 6530 6522 +f 6538 6542 6526 +f 6534 6538 6530 +f 6546 6538 6534 +f 6546 6542 6538 +f 6546 6550 6542 +f 6072 6050 6048 +f 6070 6072 6048 +f 6074 6052 6050 +f 6072 6074 6050 +f 6076 6054 6052 +f 6074 6076 6052 +f 6078 6056 6054 +f 6076 6078 6054 +f 6080 6058 6056 +f 6078 6080 6056 +f 6082 6060 6058 +f 6080 6082 6058 +f 6084 6062 6060 +f 6082 6084 6060 +f 6086 6064 6062 +f 6084 6086 6062 +f 6088 6066 6064 +f 6086 6088 6064 +f 6090 6068 6066 +f 6088 6090 6066 +f 6341 6298 6297 +f 6341 6342 6298 +f 6385 6342 6341 +f 6385 6386 6342 +f 6421 6386 6385 +f 6421 6422 6386 +f 6449 6422 6421 +f 6449 6450 6422 +f 6477 6450 6449 +f 6477 6478 6450 +f 6505 6478 6477 +f 6505 6506 6478 +f 6521 6506 6505 +f 6521 6522 6506 +f 6533 6522 6521 +f 6533 6534 6522 +f 6545 6534 6533 +f 6545 6546 6534 +f 6549 6546 6545 +f 6549 6550 6546 +f 6071 6117 6069 +f 6117 6113 6069 +f 6073 6121 6071 +f 6121 6117 6071 +f 6075 6125 6073 +f 6125 6121 6073 +f 6077 6129 6075 +f 6129 6125 6075 +f 6079 6133 6077 +f 6133 6129 6077 +f 6081 6137 6079 +f 6137 6133 6079 +f 6083 6141 6081 +f 6141 6137 6081 +f 6085 6145 6083 +f 6145 6141 6083 +f 6087 6153 6085 +f 6153 6145 6085 +f 6089 6157 6087 +f 6157 6153 6087 +f 6117 6161 6113 +f 6161 6149 6113 +f 6121 6165 6117 +f 6165 6161 6117 +f 6125 6169 6121 +f 6169 6165 6121 +f 6129 6177 6125 +f 6177 6169 6125 +f 6133 6185 6129 +f 6185 6177 6129 +f 6137 6189 6133 +f 6189 6185 6133 +f 6141 6193 6137 +f 6193 6189 6137 +f 6145 6205 6141 +f 6205 6193 6141 +f 6153 6209 6145 +f 6209 6205 6145 +f 6161 6181 6149 +f 6181 6173 6149 +f 6157 6213 6153 +f 6213 6209 6153 +f 6165 6201 6161 +f 6201 6181 6161 +f 6169 6217 6165 +f 6217 6201 6165 +f 6177 6229 6169 +f 6229 6217 6169 +f 6181 6221 6173 +f 6221 6197 6173 +f 6185 6237 6177 +f 6237 6229 6177 +f 6201 6233 6181 +f 6233 6221 6181 +f 6189 6249 6185 +f 6249 6237 6185 +f 6193 6257 6189 +f 6257 6249 6189 +f 6205 6261 6193 +f 6261 6257 6193 +f 6221 6245 6197 +f 6245 6225 6197 +f 6217 6253 6201 +f 6253 6233 6201 +f 6209 6269 6205 +f 6269 6261 6205 +f 6213 6273 6209 +f 6273 6269 6209 +f 6229 6281 6217 +f 6281 6253 6217 +f 6233 6277 6221 +f 6277 6245 6221 +f 6245 6285 6225 +f 6285 6241 6225 +f 6237 6301 6229 +f 6301 6281 6229 +f 6253 6305 6233 +f 6305 6277 6233 +f 6249 6317 6237 +f 6317 6301 6237 +f 6285 6309 6241 +f 6309 6265 6241 +f 6277 6313 6245 +f 6313 6285 6245 +f 6257 6325 6249 +f 6325 6317 6249 +f 6281 6329 6253 +f 6329 6305 6253 +f 6261 6337 6257 +f 6337 6325 6257 +f 6269 6349 6261 +f 6349 6337 6261 +f 6309 6321 6265 +f 6321 6289 6265 +f 6273 6353 6269 +f 6353 6349 6269 +f 6305 6357 6277 +f 6357 6313 6277 +f 6301 6361 6281 +f 6361 6329 6281 +f 6313 6345 6285 +f 6345 6309 6285 +f 6321 6333 6289 +f 6333 6293 6289 +f 6333 6341 6293 +f 6341 6297 6293 +f 6317 6369 6301 +f 6369 6361 6301 +f 6329 6373 6305 +f 6373 6357 6305 +f 6345 6365 6309 +f 6365 6321 6309 +f 6357 6381 6313 +f 6381 6345 6313 +f 6325 6389 6317 +f 6389 6369 6317 +f 6365 6377 6321 +f 6377 6333 6321 +f 6337 6393 6325 +f 6393 6389 6325 +f 6361 6397 6329 +f 6397 6373 6329 +f 6377 6385 6333 +f 6385 6341 6333 +f 6349 6405 6337 +f 6405 6393 6337 +f 6381 6401 6345 +f 6401 6365 6345 +f 6353 6409 6349 +f 6409 6405 6349 +f 6373 6413 6357 +f 6413 6381 6357 +f 6369 6425 6361 +f 6425 6397 6361 +f 6401 6417 6365 +f 6417 6377 6365 +f 6389 6437 6369 +f 6437 6425 6369 +f 6397 6433 6373 +f 6433 6413 6373 +f 6417 6421 6377 +f 6421 6385 6377 +f 6413 6429 6381 +f 6429 6401 6381 +f 6393 6445 6389 +f 6445 6437 6389 +f 6405 6453 6393 +f 6453 6445 6393 +f 6425 6457 6397 +f 6457 6433 6397 +f 6429 6441 6401 +f 6441 6417 6401 +f 6409 6461 6405 +f 6461 6453 6405 +f 6433 6465 6413 +f 6465 6429 6413 +f 6441 6449 6417 +f 6449 6421 6417 +f 6437 6469 6425 +f 6469 6457 6425 +f 6465 6473 6429 +f 6473 6441 6429 +f 6457 6481 6433 +f 6481 6465 6433 +f 6445 6485 6437 +f 6485 6469 6437 +f 6473 6477 6441 +f 6477 6449 6441 +f 6453 6489 6445 +f 6489 6485 6445 +f 6461 6493 6453 +f 6493 6489 6453 +f 6469 6501 6457 +f 6501 6481 6457 +f 6481 6497 6465 +f 6497 6473 6465 +f 6485 6509 6469 +f 6509 6501 6469 +f 6497 6505 6473 +f 6505 6477 6473 +f 6501 6513 6481 +f 6513 6497 6481 +f 6489 6517 6485 +f 6517 6509 6485 +f 6493 6525 6489 +f 6525 6517 6489 +f 6513 6521 6497 +f 6521 6505 6497 +f 6509 6529 6501 +f 6529 6513 6501 +f 6517 6537 6509 +f 6537 6529 6509 +f 6529 6533 6513 +f 6533 6521 6513 +f 6525 6541 6517 +f 6541 6537 6517 +f 6537 6545 6529 +f 6545 6533 6529 +f 6541 6549 6537 +f 6549 6545 6537 +f 6049 6069 6047 +f 6051 6071 6049 +f 6071 6069 6049 +f 6053 6073 6051 +f 6073 6071 6051 +f 6055 6075 6053 +f 6075 6073 6053 +f 6057 6077 6055 +f 6077 6075 6055 +f 6059 6079 6057 +f 6079 6077 6057 +f 6061 6081 6059 +f 6081 6079 6059 +f 6063 6083 6061 +f 6083 6081 6061 +f 6065 6085 6063 +f 6085 6083 6063 +f 6067 6087 6065 +f 6087 6085 6065 +f 6089 6087 6067 +f 4770 4673 4672 +f 4770 4771 4673 +f 4786 4787 4770 +f 4787 4771 4770 +f 4804 4805 4786 +f 4805 4787 4786 +f 4819 4820 4804 +f 4820 4805 4804 +f 4822 4823 4819 +f 4823 4820 4819 +f 4838 4839 4822 +f 4839 4823 4822 +f 4840 4841 4838 +f 4841 4839 4838 +f 4859 4860 4840 +f 4860 4841 4840 +f 3154 3157 3109 +f 3157 3112 3109 +f 3157 3159 3112 +f 3159 3114 3112 +f 3159 3161 3114 +f 3161 3116 3114 +f 3161 3163 3116 +f 3163 3118 3116 +f 3163 3165 3118 +f 3165 3120 3118 +f 3165 3167 3120 +f 3167 3122 3120 +f 3167 3169 3122 +f 3169 3124 3122 +f 3169 3171 3124 +f 3171 3126 3124 +f 3171 3173 3126 +f 3173 3128 3126 +f 3173 3175 3128 +f 3175 3130 3128 +f 3175 3177 3130 +f 3177 3132 3130 +f 3177 3179 3132 +f 3179 3134 3132 +f 3179 3181 3134 +f 3181 3136 3134 +f 3181 3183 3136 +f 3183 3138 3136 +f 3183 3185 3138 +f 3185 3140 3138 +f 3226 3157 3154 +f 3226 3262 3157 +f 3262 3264 3157 +f 3264 3159 3157 +f 3264 3266 3159 +f 3266 3161 3159 +f 3266 3268 3161 +f 3268 3163 3161 +f 3268 3270 3163 +f 3270 3165 3163 +f 3270 3272 3165 +f 3272 3167 3165 +f 3272 3274 3167 +f 3274 3169 3167 +f 3274 3276 3169 +f 3276 3171 3169 +f 3276 3278 3171 +f 3278 3173 3171 +f 3278 3280 3173 +f 3280 3175 3173 +f 3280 3282 3175 +f 3282 3177 3175 +f 3282 3284 3177 +f 3284 3179 3177 +f 3284 3286 3179 +f 3286 3181 3179 +f 3286 3288 3181 +f 3288 3183 3181 +f 3288 3256 3183 +f 3256 3185 3183 +f 3259 3262 3226 +f 3288 3257 3256 +f 3288 3290 3257 +f 3290 3291 3257 +f 3333 3262 3259 +f 3333 3381 3262 +f 3381 3383 3262 +f 3383 3264 3262 +f 3383 3385 3264 +f 3385 3266 3264 +f 3385 3387 3266 +f 3387 3268 3266 +f 3387 3389 3268 +f 3389 3270 3268 +f 3389 3391 3270 +f 3391 3272 3270 +f 3391 3393 3272 +f 3393 3274 3272 +f 3393 3395 3274 +f 3395 3276 3274 +f 3395 3397 3276 +f 3397 3278 3276 +f 3397 3399 3278 +f 3399 3280 3278 +f 3399 3401 3280 +f 3401 3282 3280 +f 3401 3403 3282 +f 3403 3284 3282 +f 3403 3405 3284 +f 3405 3286 3284 +f 3405 3407 3286 +f 3407 3288 3286 +f 3407 3409 3288 +f 3409 3290 3288 +f 3409 3291 3290 +f 3409 3411 3291 +f 3378 3381 3333 +f 3453 3381 3378 +f 3453 3512 3381 +f 3512 3514 3381 +f 3514 3383 3381 +f 3514 3516 3383 +f 3516 3385 3383 +f 3516 3518 3385 +f 3518 3387 3385 +f 3518 3520 3387 +f 3520 3389 3387 +f 3520 3522 3389 +f 3522 3391 3389 +f 3522 3524 3391 +f 3524 3393 3391 +f 3524 3526 3393 +f 3526 3395 3393 +f 3526 3528 3395 +f 3528 3397 3395 +f 3528 3530 3397 +f 3530 3399 3397 +f 3530 3532 3399 +f 3532 3401 3399 +f 3532 3534 3401 +f 3534 3403 3401 +f 3534 3536 3403 +f 3536 3405 3403 +f 3536 3538 3405 +f 3538 3407 3405 +f 3538 3540 3407 +f 3540 3409 3407 +f 3540 3476 3409 +f 3476 3411 3409 +f 3509 3512 3453 +f 3540 3543 3476 +f 3584 3512 3509 +f 3584 3650 3512 +f 3650 3652 3512 +f 3652 3514 3512 +f 3652 3654 3514 +f 3654 3516 3514 +f 3654 3656 3516 +f 3656 3518 3516 +f 3656 3658 3518 +f 3658 3520 3518 +f 3658 3660 3520 +f 3660 3522 3520 +f 3660 3662 3522 +f 3662 3524 3522 +f 3662 3664 3524 +f 3664 3526 3524 +f 3664 3666 3526 +f 3666 3528 3526 +f 3666 3668 3528 +f 3668 3530 3528 +f 3668 3670 3530 +f 3670 3532 3530 +f 3670 3672 3532 +f 3672 3534 3532 +f 3672 3674 3534 +f 3674 3536 3534 +f 3674 3676 3536 +f 3676 3538 3536 +f 3676 3678 3538 +f 3678 3540 3538 +f 3678 3543 3540 +f 3680 3589 3543 +f 3678 3680 3543 +f 3647 3650 3584 +f 3680 3695 3589 +f 3785 3794 3647 +f 3794 3650 3647 +f 3794 3796 3650 +f 3796 3652 3650 +f 3796 3798 3652 +f 3798 3654 3652 +f 3798 3800 3654 +f 3800 3656 3654 +f 3800 3802 3656 +f 3802 3658 3656 +f 3802 3804 3658 +f 3804 3660 3658 +f 3804 3806 3660 +f 3806 3662 3660 +f 3806 3808 3662 +f 3808 3664 3662 +f 3808 3810 3664 +f 3810 3666 3664 +f 3810 3812 3666 +f 3812 3668 3666 +f 3812 3814 3668 +f 3814 3670 3668 +f 3814 3816 3670 +f 3816 3672 3670 +f 3816 3818 3672 +f 3818 3674 3672 +f 3818 3820 3674 +f 3820 3676 3674 +f 3820 3822 3676 +f 3822 3678 3676 +f 3822 3824 3678 +f 3824 3680 3678 +f 3824 3787 3680 +f 3787 3695 3680 +f 3791 3794 3785 +f 3824 3826 3787 +f 3919 3936 3791 +f 3936 3794 3791 +f 3936 3938 3794 +f 3938 3796 3794 +f 3938 3940 3796 +f 3940 3798 3796 +f 3940 3942 3798 +f 3942 3800 3798 +f 3942 3944 3800 +f 3944 3802 3800 +f 3944 3946 3802 +f 3946 3804 3802 +f 3946 3948 3804 +f 3948 3806 3804 +f 3948 3950 3806 +f 3950 3808 3806 +f 3950 3952 3808 +f 3952 3810 3808 +f 3952 3954 3810 +f 3954 3812 3810 +f 3954 3956 3812 +f 3956 3814 3812 +f 3956 3958 3814 +f 3958 3816 3814 +f 3958 3960 3816 +f 3960 3818 3816 +f 3960 3962 3818 +f 3962 3820 3818 +f 3962 3964 3820 +f 3964 3822 3820 +f 3964 3966 3822 +f 3966 3824 3822 +f 3966 3826 3824 +f 3968 3844 3826 +f 3966 3968 3826 +f 3968 3970 3844 +f 3933 3936 3919 +f 4058 4080 3933 +f 4080 3936 3933 +f 4080 4082 3936 +f 4082 3938 3936 +f 4082 4084 3938 +f 4084 3940 3938 +f 4084 4086 3940 +f 4086 3942 3940 +f 4086 4088 3942 +f 4088 3944 3942 +f 4088 4090 3944 +f 4090 3946 3944 +f 4090 4092 3946 +f 4092 3948 3946 +f 4092 4094 3948 +f 4094 3950 3948 +f 4094 4096 3950 +f 4096 3952 3950 +f 4096 4098 3952 +f 4098 3954 3952 +f 4098 4100 3954 +f 4100 3956 3954 +f 4100 4102 3956 +f 4102 3958 3956 +f 4102 4104 3958 +f 4104 3960 3958 +f 4104 4106 3960 +f 4106 3962 3960 +f 4106 4108 3962 +f 4108 3964 3962 +f 4108 4110 3964 +f 4110 3966 3964 +f 4110 4112 3966 +f 4112 3968 3966 +f 4112 3970 3968 +f 4112 4076 3970 +f 4077 4080 4058 +f 4197 4115 4076 +f 4195 4197 4076 +f 4112 4195 4076 +f 4158 4163 4077 +f 4163 4080 4077 +f 4163 4165 4080 +f 4165 4082 4080 +f 4165 4167 4082 +f 4167 4084 4082 +f 4167 4169 4084 +f 4169 4086 4084 +f 4169 4171 4086 +f 4171 4088 4086 +f 4171 4173 4088 +f 4173 4090 4088 +f 4173 4175 4090 +f 4175 4092 4090 +f 4175 4177 4092 +f 4177 4094 4092 +f 4177 4179 4094 +f 4179 4096 4094 +f 4179 4181 4096 +f 4181 4098 4096 +f 4181 4183 4098 +f 4183 4100 4098 +f 4183 4185 4100 +f 4185 4102 4100 +f 4185 4187 4102 +f 4187 4104 4102 +f 4187 4189 4104 +f 4189 4106 4104 +f 4189 4191 4106 +f 4191 4108 4106 +f 4191 4193 4108 +f 4193 4110 4108 +f 4193 4195 4110 +f 4195 4112 4110 +f 4197 4198 4115 +f 4160 4163 4158 +f 4269 4272 4160 +f 4272 4163 4160 +f 4272 4165 4163 +f 4272 4273 4165 +f 4273 4276 4165 +f 4276 4167 4165 +f 4280 4169 4167 +f 4276 4277 4167 +f 4277 4280 4167 +f 4280 4281 4169 +f 4281 4284 4169 +f 4284 4171 4169 +f 4288 4173 4171 +f 4284 4285 4171 +f 4285 4288 4171 +f 4288 4289 4173 +f 4289 4292 4173 +f 4292 4175 4173 +f 4296 4177 4175 +f 4292 4293 4175 +f 4293 4296 4175 +f 4296 4297 4177 +f 4297 4300 4177 +f 4300 4179 4177 +f 4305 4181 4179 +f 4304 4305 4179 +f 4300 4301 4179 +f 4301 4304 4179 +f 4309 4183 4181 +f 4308 4309 4181 +f 4305 4308 4181 +f 4313 4185 4183 +f 4312 4313 4183 +f 4309 4312 4183 +f 4317 4187 4185 +f 4316 4317 4185 +f 4313 4316 4185 +f 4321 4189 4187 +f 4320 4321 4187 +f 4317 4320 4187 +f 4325 4191 4189 +f 4324 4325 4189 +f 4321 4324 4189 +f 4329 4193 4191 +f 4328 4329 4191 +f 4325 4328 4191 +f 4333 4195 4193 +f 4332 4333 4193 +f 4329 4332 4193 +f 4333 4336 4195 +f 4337 4197 4195 +f 4336 4337 4195 +f 4337 4340 4197 +f 4340 4227 4197 +f 4227 4198 4197 +f 4340 4343 4227 +f 3110 3154 3109 +f 3155 3154 3110 +f 3155 3226 3154 +f 3227 3226 3155 +f 3227 3259 3226 +f 3260 3259 3227 +f 3260 3333 3259 +f 3334 3333 3260 +f 3334 3378 3333 +f 3379 3378 3334 +f 3379 3453 3378 +f 3454 3453 3379 +f 3454 3509 3453 +f 3510 3509 3454 +f 3510 3584 3509 +f 3585 3584 3510 +f 3648 3647 3584 +f 3585 3648 3584 +f 3648 3786 3647 +f 3786 3785 3647 +f 3786 3791 3785 +f 3792 3791 3786 +f 3792 3919 3791 +f 3920 3919 3792 +f 3920 3933 3919 +f 3934 3933 3920 +f 3934 4058 3933 +f 4059 4058 3934 +f 4059 4077 4058 +f 4078 4077 4059 +f 4078 4158 4077 +f 4159 4158 4078 +f 4159 4160 4158 +f 4161 4160 4159 +f 4161 4269 4160 +f 4270 4269 4161 +f 3111 3155 3110 +f 3113 3156 3111 +f 3156 3155 3111 +f 3115 3158 3113 +f 3158 3156 3113 +f 3117 3160 3115 +f 3160 3158 3115 +f 3119 3162 3117 +f 3162 3160 3117 +f 3121 3164 3119 +f 3164 3162 3119 +f 3123 3166 3121 +f 3166 3164 3121 +f 3125 3168 3123 +f 3168 3166 3123 +f 3127 3170 3125 +f 3170 3168 3125 +f 3129 3172 3127 +f 3172 3170 3127 +f 3131 3174 3129 +f 3174 3172 3129 +f 3133 3176 3131 +f 3176 3174 3131 +f 3135 3178 3133 +f 3178 3176 3133 +f 3137 3180 3135 +f 3180 3178 3135 +f 3182 3180 3137 +f 3141 3182 3137 +f 3184 3182 3141 +f 3156 3227 3155 +f 3158 3261 3156 +f 3261 3260 3156 +f 3260 3227 3156 +f 3160 3263 3158 +f 3263 3261 3158 +f 3162 3265 3160 +f 3265 3263 3160 +f 3164 3267 3162 +f 3267 3265 3162 +f 3166 3269 3164 +f 3269 3267 3164 +f 3168 3271 3166 +f 3271 3269 3166 +f 3170 3273 3168 +f 3273 3271 3168 +f 3172 3275 3170 +f 3275 3273 3170 +f 3174 3277 3172 +f 3277 3275 3172 +f 3176 3279 3174 +f 3279 3277 3174 +f 3178 3281 3176 +f 3281 3279 3176 +f 3180 3283 3178 +f 3283 3281 3178 +f 3182 3285 3180 +f 3285 3283 3180 +f 3184 3289 3182 +f 3289 3287 3182 +f 3287 3285 3182 +f 3258 3289 3184 +f 3410 3289 3258 +f 3261 3334 3260 +f 3379 3334 3261 +f 3380 3379 3261 +f 3263 3380 3261 +f 3382 3380 3263 +f 3265 3382 3263 +f 3384 3382 3265 +f 3267 3384 3265 +f 3386 3384 3267 +f 3269 3386 3267 +f 3388 3386 3269 +f 3271 3388 3269 +f 3390 3388 3271 +f 3273 3390 3271 +f 3392 3390 3273 +f 3275 3392 3273 +f 3394 3392 3275 +f 3277 3394 3275 +f 3396 3394 3277 +f 3279 3396 3277 +f 3398 3396 3279 +f 3281 3398 3279 +f 3400 3398 3281 +f 3283 3400 3281 +f 3402 3400 3283 +f 3285 3402 3283 +f 3404 3402 3285 +f 3287 3404 3285 +f 3406 3404 3287 +f 3289 3406 3287 +f 3410 3408 3289 +f 3408 3406 3289 +f 3380 3454 3379 +f 3510 3454 3380 +f 3511 3510 3380 +f 3382 3511 3380 +f 3513 3511 3382 +f 3384 3513 3382 +f 3515 3513 3384 +f 3386 3515 3384 +f 3517 3515 3386 +f 3388 3517 3386 +f 3519 3517 3388 +f 3390 3519 3388 +f 3521 3519 3390 +f 3392 3521 3390 +f 3523 3521 3392 +f 3394 3523 3392 +f 3525 3523 3394 +f 3396 3525 3394 +f 3527 3525 3396 +f 3398 3527 3396 +f 3529 3527 3398 +f 3400 3529 3398 +f 3531 3529 3400 +f 3402 3531 3400 +f 3533 3531 3402 +f 3404 3533 3402 +f 3535 3533 3404 +f 3406 3535 3404 +f 3537 3535 3406 +f 3408 3537 3406 +f 3410 3539 3408 +f 3539 3537 3408 +f 3477 3539 3410 +f 3541 3539 3477 +f 3511 3585 3510 +f 3648 3585 3511 +f 3649 3648 3511 +f 3513 3649 3511 +f 3651 3649 3513 +f 3515 3651 3513 +f 3653 3651 3515 +f 3517 3653 3515 +f 3655 3653 3517 +f 3519 3655 3517 +f 3657 3655 3519 +f 3521 3657 3519 +f 3659 3657 3521 +f 3523 3659 3521 +f 3661 3659 3523 +f 3525 3661 3523 +f 3663 3661 3525 +f 3527 3663 3525 +f 3665 3663 3527 +f 3529 3665 3527 +f 3667 3665 3529 +f 3531 3667 3529 +f 3669 3667 3531 +f 3533 3669 3531 +f 3671 3669 3533 +f 3535 3671 3533 +f 3673 3671 3535 +f 3537 3673 3535 +f 3675 3673 3537 +f 3539 3675 3537 +f 3541 3677 3539 +f 3677 3675 3539 +f 3586 3679 3541 +f 3679 3677 3541 +f 3696 3679 3586 +f 3649 3786 3648 +f 3651 3793 3649 +f 3793 3786 3649 +f 3653 3795 3651 +f 3795 3793 3651 +f 3655 3797 3653 +f 3797 3795 3653 +f 3657 3799 3655 +f 3799 3797 3655 +f 3659 3801 3657 +f 3801 3799 3657 +f 3661 3803 3659 +f 3803 3801 3659 +f 3663 3805 3661 +f 3805 3803 3661 +f 3665 3807 3663 +f 3807 3805 3663 +f 3667 3809 3665 +f 3809 3807 3665 +f 3669 3811 3667 +f 3811 3809 3667 +f 3671 3813 3669 +f 3813 3811 3669 +f 3673 3815 3671 +f 3815 3813 3671 +f 3675 3817 3673 +f 3817 3815 3673 +f 3677 3819 3675 +f 3819 3817 3675 +f 3679 3821 3677 +f 3821 3819 3677 +f 3696 3825 3679 +f 3825 3823 3679 +f 3823 3821 3679 +f 3793 3792 3786 +f 3793 3920 3792 +f 3795 3935 3793 +f 3935 3920 3793 +f 3797 3937 3795 +f 3937 3935 3795 +f 3799 3939 3797 +f 3939 3937 3797 +f 3801 3941 3799 +f 3941 3939 3799 +f 3803 3943 3801 +f 3943 3941 3801 +f 3805 3945 3803 +f 3945 3943 3803 +f 3807 3947 3805 +f 3947 3945 3805 +f 3809 3949 3807 +f 3949 3947 3807 +f 3811 3951 3809 +f 3951 3949 3809 +f 3813 3953 3811 +f 3953 3951 3811 +f 3815 3955 3813 +f 3955 3953 3813 +f 3817 3957 3815 +f 3957 3955 3815 +f 3819 3959 3817 +f 3959 3957 3817 +f 3821 3961 3819 +f 3961 3959 3819 +f 3823 3963 3821 +f 3963 3961 3821 +f 3825 3965 3823 +f 3965 3963 3823 +f 3828 3965 3825 +f 3830 3967 3828 +f 3967 3965 3828 +f 3969 3967 3830 +f 3935 3934 3920 +f 3935 4059 3934 +f 3937 4079 3935 +f 4079 4059 3935 +f 3939 4081 3937 +f 4081 4079 3937 +f 3941 4083 3939 +f 4083 4081 3939 +f 3943 4085 3941 +f 4085 4083 3941 +f 3945 4087 3943 +f 4087 4085 3943 +f 3947 4089 3945 +f 4089 4087 3945 +f 3949 4091 3947 +f 4091 4089 3947 +f 3951 4093 3949 +f 4093 4091 3949 +f 3953 4095 3951 +f 4095 4093 3951 +f 3955 4097 3953 +f 4097 4095 3953 +f 3957 4099 3955 +f 4099 4097 3955 +f 3959 4101 3957 +f 4101 4099 3957 +f 3961 4103 3959 +f 4103 4101 3959 +f 3963 4105 3961 +f 4105 4103 3961 +f 3965 4107 3963 +f 4107 4105 3963 +f 3967 4109 3965 +f 4109 4107 3965 +f 3969 4111 3967 +f 4111 4109 3967 +f 4061 4113 3969 +f 4113 4111 3969 +f 4079 4078 4059 +f 4114 4113 4061 +f 4079 4159 4078 +f 4081 4162 4079 +f 4162 4159 4079 +f 4083 4164 4081 +f 4164 4162 4081 +f 4085 4166 4083 +f 4166 4164 4083 +f 4087 4168 4085 +f 4168 4166 4085 +f 4089 4170 4087 +f 4170 4168 4087 +f 4091 4172 4089 +f 4172 4170 4089 +f 4093 4174 4091 +f 4174 4172 4091 +f 4095 4176 4093 +f 4176 4174 4093 +f 4097 4178 4095 +f 4178 4176 4095 +f 4099 4180 4097 +f 4180 4178 4097 +f 4101 4182 4099 +f 4182 4180 4099 +f 4103 4184 4101 +f 4184 4182 4101 +f 4105 4186 4103 +f 4186 4184 4103 +f 4107 4188 4105 +f 4188 4186 4105 +f 4109 4190 4107 +f 4190 4188 4107 +f 4111 4192 4109 +f 4192 4190 4109 +f 4113 4194 4111 +f 4194 4192 4111 +f 4114 4199 4113 +f 4199 4196 4113 +f 4196 4194 4113 +f 4162 4161 4159 +f 4162 4270 4161 +f 4271 4270 4162 +f 4274 4271 4162 +f 4164 4274 4162 +f 4275 4274 4164 +f 4278 4275 4164 +f 4166 4278 4164 +f 4279 4278 4166 +f 4282 4279 4166 +f 4168 4282 4166 +f 4283 4282 4168 +f 4286 4283 4168 +f 4170 4286 4168 +f 4287 4286 4170 +f 4290 4287 4170 +f 4172 4290 4170 +f 4291 4290 4172 +f 4294 4291 4172 +f 4174 4294 4172 +f 4295 4294 4174 +f 4298 4295 4174 +f 4176 4298 4174 +f 4299 4298 4176 +f 4302 4299 4176 +f 4178 4302 4176 +f 4303 4302 4178 +f 4306 4303 4178 +f 4180 4306 4178 +f 4307 4306 4180 +f 4182 4311 4180 +f 4311 4310 4180 +f 4310 4307 4180 +f 4184 4315 4182 +f 4315 4314 4182 +f 4314 4311 4182 +f 4186 4319 4184 +f 4319 4318 4184 +f 4318 4315 4184 +f 4188 4323 4186 +f 4323 4322 4186 +f 4322 4319 4186 +f 4190 4327 4188 +f 4327 4326 4188 +f 4326 4323 4188 +f 4192 4331 4190 +f 4331 4330 4190 +f 4330 4327 4190 +f 4194 4335 4192 +f 4335 4334 4192 +f 4334 4331 4192 +f 4196 4339 4194 +f 4339 4338 4194 +f 4338 4335 4194 +f 4341 4339 4196 +f 4199 4341 4196 +f 4226 4342 4199 +f 4342 4341 4199 +f 4344 4342 4226 +f 3188 3071 3069 +f 3186 3188 3069 +f 3190 3073 3071 +f 3188 3190 3071 +f 3192 3075 3073 +f 3190 3192 3073 +f 3194 3077 3075 +f 3192 3194 3075 +f 3196 3079 3077 +f 3194 3196 3077 +f 3198 3081 3079 +f 3196 3198 3079 +f 3200 3083 3081 +f 3198 3200 3081 +f 3202 3085 3083 +f 3200 3202 3083 +f 3204 3087 3085 +f 3202 3204 3085 +f 3206 3089 3087 +f 3204 3206 3087 +f 3208 3091 3089 +f 3206 3208 3089 +f 3210 3093 3091 +f 3208 3210 3091 +f 3212 3095 3093 +f 3210 3212 3093 +f 3214 3097 3095 +f 3212 3214 3095 +f 3216 3099 3097 +f 3214 3216 3097 +f 3218 3101 3099 +f 3216 3218 3099 +f 3220 3103 3101 +f 3218 3220 3101 +f 3222 3105 3103 +f 3220 3222 3103 +f 3224 3107 3105 +f 3222 3224 3105 +f 3295 3188 3186 +f 3293 3295 3186 +f 3297 3190 3188 +f 3295 3297 3188 +f 3299 3192 3190 +f 3297 3299 3190 +f 3301 3194 3192 +f 3299 3301 3192 +f 3303 3196 3194 +f 3301 3303 3194 +f 3305 3198 3196 +f 3303 3305 3196 +f 3307 3200 3198 +f 3305 3307 3198 +f 3309 3202 3200 +f 3307 3309 3200 +f 3311 3204 3202 +f 3309 3311 3202 +f 3313 3206 3204 +f 3311 3313 3204 +f 3315 3208 3206 +f 3313 3315 3206 +f 3317 3210 3208 +f 3315 3317 3208 +f 3319 3212 3210 +f 3317 3319 3210 +f 3321 3214 3212 +f 3319 3321 3212 +f 3323 3216 3214 +f 3321 3323 3214 +f 3325 3218 3216 +f 3323 3325 3216 +f 3327 3220 3218 +f 3325 3327 3218 +f 3329 3222 3220 +f 3327 3329 3220 +f 3331 3224 3222 +f 3329 3331 3222 +f 3415 3295 3293 +f 3413 3415 3293 +f 3417 3297 3295 +f 3415 3417 3295 +f 3419 3299 3297 +f 3417 3419 3297 +f 3421 3301 3299 +f 3419 3421 3299 +f 3423 3303 3301 +f 3421 3423 3301 +f 3425 3305 3303 +f 3423 3425 3303 +f 3427 3307 3305 +f 3425 3427 3305 +f 3429 3309 3307 +f 3427 3429 3307 +f 3431 3311 3309 +f 3429 3431 3309 +f 3433 3313 3311 +f 3431 3433 3311 +f 3435 3315 3313 +f 3433 3435 3313 +f 3437 3317 3315 +f 3435 3437 3315 +f 3439 3319 3317 +f 3437 3439 3317 +f 3441 3321 3319 +f 3439 3441 3319 +f 3443 3323 3321 +f 3441 3443 3321 +f 3445 3325 3323 +f 3443 3445 3323 +f 3447 3327 3325 +f 3445 3447 3325 +f 3449 3329 3327 +f 3447 3449 3327 +f 3451 3331 3329 +f 3449 3451 3329 +f 3546 3415 3413 +f 3544 3546 3413 +f 3548 3417 3415 +f 3546 3548 3415 +f 3550 3419 3417 +f 3548 3550 3417 +f 3552 3421 3419 +f 3550 3552 3419 +f 3554 3423 3421 +f 3552 3554 3421 +f 3556 3425 3423 +f 3554 3556 3423 +f 3558 3427 3425 +f 3556 3558 3425 +f 3560 3429 3427 +f 3558 3560 3427 +f 3562 3431 3429 +f 3560 3562 3429 +f 3564 3433 3431 +f 3562 3564 3431 +f 3566 3435 3433 +f 3564 3566 3433 +f 3568 3437 3435 +f 3566 3568 3435 +f 3570 3439 3437 +f 3568 3570 3437 +f 3572 3441 3439 +f 3570 3572 3439 +f 3574 3443 3441 +f 3572 3574 3441 +f 3576 3445 3443 +f 3574 3576 3443 +f 3578 3447 3445 +f 3576 3578 3445 +f 3580 3449 3447 +f 3578 3580 3447 +f 3582 3451 3449 +f 3580 3582 3449 +f 3609 3546 3544 +f 3607 3609 3544 +f 3611 3548 3546 +f 3609 3611 3546 +f 3613 3550 3548 +f 3611 3613 3548 +f 3615 3552 3550 +f 3613 3615 3550 +f 3617 3554 3552 +f 3615 3617 3552 +f 3619 3556 3554 +f 3617 3619 3554 +f 3621 3558 3556 +f 3619 3621 3556 +f 3623 3560 3558 +f 3621 3623 3558 +f 3625 3562 3560 +f 3623 3625 3560 +f 3627 3564 3562 +f 3625 3627 3562 +f 3629 3566 3564 +f 3627 3629 3564 +f 3631 3568 3566 +f 3629 3631 3566 +f 3633 3570 3568 +f 3631 3633 3568 +f 3635 3572 3570 +f 3633 3635 3570 +f 3637 3574 3572 +f 3635 3637 3572 +f 3639 3576 3574 +f 3637 3639 3574 +f 3641 3578 3576 +f 3639 3641 3576 +f 3643 3580 3578 +f 3641 3643 3578 +f 3645 3582 3580 +f 3643 3645 3580 +f 3747 3609 3607 +f 3745 3747 3607 +f 3749 3611 3609 +f 3747 3749 3609 +f 3751 3613 3611 +f 3749 3751 3611 +f 3753 3615 3613 +f 3751 3753 3613 +f 3755 3617 3615 +f 3753 3755 3615 +f 3757 3619 3617 +f 3755 3757 3617 +f 3759 3621 3619 +f 3757 3759 3619 +f 3761 3623 3621 +f 3759 3761 3621 +f 3763 3625 3623 +f 3761 3763 3623 +f 3765 3627 3625 +f 3763 3765 3625 +f 3767 3629 3627 +f 3765 3767 3627 +f 3769 3631 3629 +f 3767 3769 3629 +f 3771 3633 3631 +f 3769 3771 3631 +f 3773 3635 3633 +f 3771 3773 3633 +f 3775 3637 3635 +f 3773 3775 3635 +f 3777 3639 3637 +f 3775 3777 3637 +f 3779 3641 3639 +f 3777 3779 3639 +f 3781 3643 3641 +f 3779 3781 3641 +f 3783 3645 3643 +f 3781 3783 3643 +f 3881 3747 3745 +f 3879 3881 3745 +f 3883 3749 3747 +f 3881 3883 3747 +f 3885 3751 3749 +f 3883 3885 3749 +f 3887 3753 3751 +f 3885 3887 3751 +f 3889 3755 3753 +f 3887 3889 3753 +f 3891 3757 3755 +f 3889 3891 3755 +f 3893 3759 3757 +f 3891 3893 3757 +f 3895 3761 3759 +f 3893 3895 3759 +f 3897 3763 3761 +f 3895 3897 3761 +f 3899 3765 3763 +f 3897 3899 3763 +f 3901 3767 3765 +f 3899 3901 3765 +f 3903 3769 3767 +f 3901 3903 3767 +f 3905 3771 3769 +f 3903 3905 3769 +f 3907 3773 3771 +f 3905 3907 3771 +f 3909 3775 3773 +f 3907 3909 3773 +f 3911 3777 3775 +f 3909 3911 3775 +f 3913 3779 3777 +f 3911 3913 3777 +f 3915 3781 3779 +f 3913 3915 3779 +f 3917 3783 3781 +f 3915 3917 3781 +f 4020 3881 3879 +f 4018 4020 3879 +f 4022 3883 3881 +f 4020 4022 3881 +f 4024 3885 3883 +f 4022 4024 3883 +f 4026 3887 3885 +f 4024 4026 3885 +f 4028 3889 3887 +f 4026 4028 3887 +f 4030 3891 3889 +f 4028 4030 3889 +f 4032 3893 3891 +f 4030 4032 3891 +f 4034 3895 3893 +f 4032 4034 3893 +f 4036 3897 3895 +f 4034 4036 3895 +f 4038 3899 3897 +f 4036 4038 3897 +f 4040 3901 3899 +f 4038 4040 3899 +f 4042 3903 3901 +f 4040 4042 3901 +f 4044 3905 3903 +f 4042 4044 3903 +f 4046 3907 3905 +f 4044 4046 3905 +f 4048 3909 3907 +f 4046 4048 3907 +f 4050 3911 3909 +f 4048 4050 3909 +f 4052 3913 3911 +f 4050 4052 3911 +f 4054 3915 3913 +f 4052 4054 3913 +f 4056 3917 3915 +f 4054 4056 3915 +f 4120 4020 4018 +f 4118 4120 4018 +f 4122 4022 4020 +f 4120 4122 4020 +f 4124 4024 4022 +f 4122 4124 4022 +f 4126 4026 4024 +f 4124 4126 4024 +f 4128 4028 4026 +f 4126 4128 4026 +f 4130 4030 4028 +f 4128 4130 4028 +f 4132 4032 4030 +f 4130 4132 4030 +f 4134 4034 4032 +f 4132 4134 4032 +f 4136 4036 4034 +f 4134 4136 4034 +f 4138 4038 4036 +f 4136 4138 4036 +f 4140 4040 4038 +f 4138 4140 4038 +f 4142 4042 4040 +f 4140 4142 4040 +f 4144 4044 4042 +f 4142 4144 4042 +f 4146 4046 4044 +f 4144 4146 4044 +f 4148 4048 4046 +f 4146 4148 4046 +f 4150 4050 4048 +f 4148 4150 4048 +f 4152 4052 4050 +f 4150 4152 4050 +f 4154 4054 4052 +f 4152 4154 4052 +f 4156 4056 4054 +f 4154 4156 4054 +f 4231 4120 4118 +f 4229 4231 4118 +f 4233 4122 4120 +f 4231 4233 4120 +f 4235 4124 4122 +f 4233 4235 4122 +f 4237 4126 4124 +f 4235 4237 4124 +f 4239 4128 4126 +f 4237 4239 4126 +f 4241 4130 4128 +f 4239 4241 4128 +f 4243 4132 4130 +f 4241 4243 4130 +f 4245 4134 4132 +f 4243 4245 4132 +f 4247 4136 4134 +f 4245 4247 4134 +f 4249 4138 4136 +f 4247 4249 4136 +f 4251 4140 4138 +f 4249 4251 4138 +f 4253 4142 4140 +f 4251 4253 4140 +f 4255 4144 4142 +f 4253 4255 4142 +f 4257 4146 4144 +f 4255 4257 4144 +f 4259 4148 4146 +f 4257 4259 4146 +f 4261 4150 4148 +f 4259 4261 4148 +f 4263 4152 4150 +f 4261 4263 4150 +f 4265 4154 4152 +f 4263 4265 4152 +f 4267 4156 4154 +f 4265 4267 4154 +f 3070 3187 3069 +f 3187 3186 3069 +f 3187 3294 3186 +f 3294 3293 3186 +f 3294 3414 3293 +f 3414 3413 3293 +f 3414 3545 3413 +f 3545 3544 3413 +f 3545 3608 3544 +f 3608 3607 3544 +f 3608 3746 3607 +f 3746 3745 3607 +f 3746 3880 3745 +f 3880 3879 3745 +f 3880 4019 3879 +f 4019 4018 3879 +f 4019 4119 4018 +f 4119 4118 4018 +f 4119 4230 4118 +f 4230 4229 4118 +f 3224 3108 3107 +f 3224 3225 3108 +f 3331 3225 3224 +f 3331 3332 3225 +f 3451 3332 3331 +f 3451 3452 3332 +f 3582 3452 3451 +f 3582 3583 3452 +f 3645 3583 3582 +f 3645 3646 3583 +f 3783 3646 3645 +f 3783 3784 3646 +f 3917 3784 3783 +f 3917 3918 3784 +f 4056 3918 3917 +f 4056 4057 3918 +f 4156 4057 4056 +f 4156 4157 4057 +f 4267 4157 4156 +f 4267 4268 4157 +f 3072 3187 3070 +f 3189 3187 3072 +f 3074 3189 3072 +f 3191 3189 3074 +f 3076 3191 3074 +f 3193 3191 3076 +f 3078 3193 3076 +f 3195 3193 3078 +f 3080 3195 3078 +f 3197 3195 3080 +f 3082 3197 3080 +f 3199 3197 3082 +f 3084 3199 3082 +f 3201 3199 3084 +f 3086 3201 3084 +f 3203 3201 3086 +f 3088 3203 3086 +f 3205 3203 3088 +f 3090 3205 3088 +f 3207 3205 3090 +f 3092 3207 3090 +f 3209 3207 3092 +f 3094 3209 3092 +f 3211 3209 3094 +f 3096 3211 3094 +f 3213 3211 3096 +f 3098 3213 3096 +f 3215 3213 3098 +f 3100 3215 3098 +f 3217 3215 3100 +f 3102 3217 3100 +f 3219 3217 3102 +f 3104 3219 3102 +f 3221 3219 3104 +f 3106 3221 3104 +f 3223 3221 3106 +f 3108 3223 3106 +f 3225 3223 3108 +f 3189 3294 3187 +f 3296 3294 3189 +f 3191 3296 3189 +f 3298 3296 3191 +f 3193 3298 3191 +f 3300 3298 3193 +f 3195 3300 3193 +f 3302 3300 3195 +f 3197 3302 3195 +f 3304 3302 3197 +f 3199 3304 3197 +f 3306 3304 3199 +f 3201 3306 3199 +f 3308 3306 3201 +f 3203 3308 3201 +f 3310 3308 3203 +f 3205 3310 3203 +f 3312 3310 3205 +f 3207 3312 3205 +f 3314 3312 3207 +f 3209 3314 3207 +f 3316 3314 3209 +f 3211 3316 3209 +f 3318 3316 3211 +f 3213 3318 3211 +f 3320 3318 3213 +f 3215 3320 3213 +f 3322 3320 3215 +f 3217 3322 3215 +f 3324 3322 3217 +f 3219 3324 3217 +f 3326 3324 3219 +f 3221 3326 3219 +f 3328 3326 3221 +f 3223 3328 3221 +f 3330 3328 3223 +f 3225 3330 3223 +f 3332 3330 3225 +f 3296 3414 3294 +f 3416 3414 3296 +f 3298 3416 3296 +f 3418 3416 3298 +f 3300 3418 3298 +f 3420 3418 3300 +f 3302 3420 3300 +f 3422 3420 3302 +f 3304 3422 3302 +f 3424 3422 3304 +f 3306 3424 3304 +f 3426 3424 3306 +f 3308 3426 3306 +f 3428 3426 3308 +f 3310 3428 3308 +f 3430 3428 3310 +f 3312 3430 3310 +f 3432 3430 3312 +f 3314 3432 3312 +f 3434 3432 3314 +f 3316 3434 3314 +f 3436 3434 3316 +f 3318 3436 3316 +f 3438 3436 3318 +f 3320 3438 3318 +f 3440 3438 3320 +f 3322 3440 3320 +f 3442 3440 3322 +f 3324 3442 3322 +f 3444 3442 3324 +f 3326 3444 3324 +f 3446 3444 3326 +f 3328 3446 3326 +f 3448 3446 3328 +f 3330 3448 3328 +f 3450 3448 3330 +f 3332 3450 3330 +f 3452 3450 3332 +f 3416 3545 3414 +f 3547 3545 3416 +f 3418 3547 3416 +f 3549 3547 3418 +f 3420 3549 3418 +f 3551 3549 3420 +f 3422 3551 3420 +f 3553 3551 3422 +f 3424 3553 3422 +f 3555 3553 3424 +f 3426 3555 3424 +f 3557 3555 3426 +f 3428 3557 3426 +f 3559 3557 3428 +f 3430 3559 3428 +f 3561 3559 3430 +f 3432 3561 3430 +f 3563 3561 3432 +f 3434 3563 3432 +f 3565 3563 3434 +f 3436 3565 3434 +f 3567 3565 3436 +f 3438 3567 3436 +f 3569 3567 3438 +f 3440 3569 3438 +f 3571 3569 3440 +f 3442 3571 3440 +f 3573 3571 3442 +f 3444 3573 3442 +f 3575 3573 3444 +f 3446 3575 3444 +f 3577 3575 3446 +f 3448 3577 3446 +f 3579 3577 3448 +f 3450 3579 3448 +f 3581 3579 3450 +f 3452 3581 3450 +f 3583 3581 3452 +f 3547 3608 3545 +f 3610 3608 3547 +f 3549 3610 3547 +f 3612 3610 3549 +f 3551 3612 3549 +f 3614 3612 3551 +f 3553 3614 3551 +f 3616 3614 3553 +f 3555 3616 3553 +f 3618 3616 3555 +f 3557 3618 3555 +f 3620 3618 3557 +f 3559 3620 3557 +f 3622 3620 3559 +f 3561 3622 3559 +f 3624 3622 3561 +f 3563 3624 3561 +f 3626 3624 3563 +f 3565 3626 3563 +f 3628 3626 3565 +f 3567 3628 3565 +f 3630 3628 3567 +f 3569 3630 3567 +f 3632 3630 3569 +f 3571 3632 3569 +f 3634 3632 3571 +f 3573 3634 3571 +f 3636 3634 3573 +f 3575 3636 3573 +f 3638 3636 3575 +f 3577 3638 3575 +f 3640 3638 3577 +f 3579 3640 3577 +f 3642 3640 3579 +f 3581 3642 3579 +f 3644 3642 3581 +f 3583 3644 3581 +f 3646 3644 3583 +f 3610 3746 3608 +f 3748 3746 3610 +f 3612 3748 3610 +f 3750 3748 3612 +f 3614 3750 3612 +f 3752 3750 3614 +f 3616 3752 3614 +f 3754 3752 3616 +f 3618 3754 3616 +f 3756 3754 3618 +f 3620 3756 3618 +f 3758 3756 3620 +f 3622 3758 3620 +f 3760 3758 3622 +f 3624 3760 3622 +f 3762 3760 3624 +f 3626 3762 3624 +f 3764 3762 3626 +f 3628 3764 3626 +f 3766 3764 3628 +f 3630 3766 3628 +f 3768 3766 3630 +f 3632 3768 3630 +f 3770 3768 3632 +f 3634 3770 3632 +f 3772 3770 3634 +f 3636 3772 3634 +f 3774 3772 3636 +f 3638 3774 3636 +f 3776 3774 3638 +f 3640 3776 3638 +f 3778 3776 3640 +f 3642 3778 3640 +f 3780 3778 3642 +f 3644 3780 3642 +f 3782 3780 3644 +f 3646 3782 3644 +f 3784 3782 3646 +f 3748 3880 3746 +f 3882 3880 3748 +f 3750 3882 3748 +f 3884 3882 3750 +f 3752 3884 3750 +f 3886 3884 3752 +f 3754 3886 3752 +f 3888 3886 3754 +f 3756 3888 3754 +f 3890 3888 3756 +f 3758 3890 3756 +f 3892 3890 3758 +f 3760 3892 3758 +f 3894 3892 3760 +f 3762 3894 3760 +f 3896 3894 3762 +f 3764 3896 3762 +f 3898 3896 3764 +f 3766 3898 3764 +f 3900 3898 3766 +f 3768 3900 3766 +f 3902 3900 3768 +f 3770 3902 3768 +f 3904 3902 3770 +f 3772 3904 3770 +f 3906 3904 3772 +f 3774 3906 3772 +f 3908 3906 3774 +f 3776 3908 3774 +f 3910 3908 3776 +f 3778 3910 3776 +f 3912 3910 3778 +f 3780 3912 3778 +f 3914 3912 3780 +f 3782 3914 3780 +f 3916 3914 3782 +f 3784 3916 3782 +f 3918 3916 3784 +f 3882 4019 3880 +f 4021 4019 3882 +f 3884 4021 3882 +f 4023 4021 3884 +f 3886 4023 3884 +f 4025 4023 3886 +f 3888 4025 3886 +f 4027 4025 3888 +f 3890 4027 3888 +f 4029 4027 3890 +f 3892 4029 3890 +f 4031 4029 3892 +f 3894 4031 3892 +f 4033 4031 3894 +f 3896 4033 3894 +f 4035 4033 3896 +f 3898 4035 3896 +f 4037 4035 3898 +f 3900 4037 3898 +f 4039 4037 3900 +f 3902 4039 3900 +f 4041 4039 3902 +f 3904 4041 3902 +f 4043 4041 3904 +f 3906 4043 3904 +f 4045 4043 3906 +f 3908 4045 3906 +f 4047 4045 3908 +f 3910 4047 3908 +f 4049 4047 3910 +f 3912 4049 3910 +f 4051 4049 3912 +f 3914 4051 3912 +f 4053 4051 3914 +f 3916 4053 3914 +f 4055 4053 3916 +f 3918 4055 3916 +f 4057 4055 3918 +f 4021 4119 4019 +f 4121 4119 4021 +f 4023 4121 4021 +f 4123 4121 4023 +f 4025 4123 4023 +f 4125 4123 4025 +f 4027 4125 4025 +f 4127 4125 4027 +f 4029 4127 4027 +f 4129 4127 4029 +f 4031 4129 4029 +f 4131 4129 4031 +f 4033 4131 4031 +f 4133 4131 4033 +f 4035 4133 4033 +f 4135 4133 4035 +f 4037 4135 4035 +f 4137 4135 4037 +f 4039 4137 4037 +f 4139 4137 4039 +f 4041 4139 4039 +f 4141 4139 4041 +f 4043 4141 4041 +f 4143 4141 4043 +f 4045 4143 4043 +f 4145 4143 4045 +f 4047 4145 4045 +f 4147 4145 4047 +f 4049 4147 4047 +f 4149 4147 4049 +f 4051 4149 4049 +f 4151 4149 4051 +f 4053 4151 4051 +f 4153 4151 4053 +f 4055 4153 4053 +f 4155 4153 4055 +f 4057 4155 4055 +f 4157 4155 4057 +f 4121 4230 4119 +f 4232 4230 4121 +f 4123 4232 4121 +f 4234 4232 4123 +f 4125 4234 4123 +f 4236 4234 4125 +f 4127 4236 4125 +f 4238 4236 4127 +f 4129 4238 4127 +f 4240 4238 4129 +f 4131 4240 4129 +f 4242 4240 4131 +f 4133 4242 4131 +f 4244 4242 4133 +f 4135 4244 4133 +f 4246 4244 4135 +f 4137 4246 4135 +f 4248 4246 4137 +f 4139 4248 4137 +f 4250 4248 4139 +f 4141 4250 4139 +f 4252 4250 4141 +f 4143 4252 4141 +f 4254 4252 4143 +f 4145 4254 4143 +f 4256 4254 4145 +f 4147 4256 4145 +f 4258 4256 4147 +f 4149 4258 4147 +f 4260 4258 4149 +f 4151 4260 4149 +f 4262 4260 4151 +f 4153 4262 4151 +f 4264 4262 4153 +f 4155 4264 4153 +f 4266 4264 4155 +f 4157 4266 4155 +f 4268 4266 4157 +f 2595 2657 2593 +f 2663 2657 2595 +f 2597 2663 2595 +f 2665 2663 2597 +f 2599 2665 2597 +f 2667 2665 2599 +f 2601 2667 2599 +f 2669 2667 2601 +f 2603 2669 2601 +f 2671 2669 2603 +f 2605 2671 2603 +f 2673 2671 2605 +f 2607 2673 2605 +f 2675 2673 2607 +f 2609 2675 2607 +f 2677 2675 2609 +f 2611 2677 2609 +f 2635 2679 2611 +f 2613 2635 2611 +f 2679 2677 2611 +f 2681 2679 2635 +f 2663 2661 2657 +f 2663 2705 2661 +f 2711 2705 2663 +f 2665 2711 2663 +f 2713 2711 2665 +f 2667 2713 2665 +f 2715 2713 2667 +f 2669 2715 2667 +f 2717 2715 2669 +f 2671 2717 2669 +f 2719 2717 2671 +f 2673 2719 2671 +f 2721 2719 2673 +f 2675 2721 2673 +f 2723 2721 2675 +f 2677 2723 2675 +f 2725 2723 2677 +f 2679 2725 2677 +f 2683 2727 2679 +f 2681 2683 2679 +f 2727 2725 2679 +f 2729 2727 2683 +f 2711 2709 2705 +f 2711 2753 2709 +f 2759 2753 2711 +f 2713 2759 2711 +f 2761 2759 2713 +f 2715 2761 2713 +f 2763 2761 2715 +f 2717 2763 2715 +f 2765 2763 2717 +f 2719 2765 2717 +f 2767 2765 2719 +f 2721 2767 2719 +f 2769 2767 2721 +f 2723 2769 2721 +f 2771 2769 2723 +f 2725 2771 2723 +f 2773 2771 2725 +f 2727 2773 2725 +f 2731 2775 2727 +f 2729 2731 2727 +f 2775 2773 2727 +f 2777 2775 2731 +f 2759 2757 2753 +f 2759 2801 2757 +f 2807 2801 2759 +f 2761 2807 2759 +f 2809 2807 2761 +f 2763 2809 2761 +f 2811 2809 2763 +f 2765 2811 2763 +f 2813 2811 2765 +f 2767 2813 2765 +f 2815 2813 2767 +f 2769 2815 2767 +f 2817 2815 2769 +f 2771 2817 2769 +f 2819 2817 2771 +f 2773 2819 2771 +f 2821 2819 2773 +f 2775 2821 2773 +f 2779 2823 2775 +f 2777 2779 2775 +f 2823 2821 2775 +f 2825 2823 2779 +f 2807 2805 2801 +f 2807 2849 2805 +f 2855 2849 2807 +f 2809 2855 2807 +f 2857 2855 2809 +f 2811 2857 2809 +f 2859 2857 2811 +f 2813 2859 2811 +f 2861 2859 2813 +f 2815 2861 2813 +f 2863 2861 2815 +f 2817 2863 2815 +f 2865 2863 2817 +f 2819 2865 2817 +f 2867 2865 2819 +f 2821 2867 2819 +f 2869 2867 2821 +f 2823 2869 2821 +f 2827 2871 2823 +f 2825 2827 2823 +f 2871 2869 2823 +f 2873 2871 2827 +f 2855 2853 2849 +f 2855 2897 2853 +f 2903 2897 2855 +f 2857 2903 2855 +f 2905 2903 2857 +f 2859 2905 2857 +f 2907 2905 2859 +f 2861 2907 2859 +f 2909 2907 2861 +f 2863 2909 2861 +f 2911 2909 2863 +f 2865 2911 2863 +f 2913 2911 2865 +f 2867 2913 2865 +f 2915 2913 2867 +f 2869 2915 2867 +f 2917 2915 2869 +f 2871 2917 2869 +f 2873 2919 2871 +f 2919 2917 2871 +f 2875 2919 2873 +f 2921 2919 2875 +f 2903 2901 2897 +f 2903 2923 2901 +f 2949 2923 2903 +f 2905 2949 2903 +f 2951 2949 2905 +f 2907 2951 2905 +f 2953 2951 2907 +f 2909 2953 2907 +f 2955 2953 2909 +f 2911 2955 2909 +f 2957 2955 2911 +f 2913 2957 2911 +f 2959 2957 2913 +f 2915 2959 2913 +f 2961 2959 2915 +f 2917 2961 2915 +f 2963 2961 2917 +f 2919 2963 2917 +f 2921 2927 2919 +f 2927 2965 2919 +f 2965 2963 2919 +f 2949 2947 2923 +f 2967 2965 2927 +f 2949 2969 2947 +f 2997 2969 2949 +f 2951 2997 2949 +f 2999 2997 2951 +f 2953 2999 2951 +f 3001 2999 2953 +f 2955 3001 2953 +f 3003 3001 2955 +f 2957 3003 2955 +f 3005 3003 2957 +f 2959 3005 2957 +f 3007 3005 2959 +f 2961 3007 2959 +f 3009 3007 2961 +f 2963 3009 2961 +f 3011 3009 2963 +f 2965 3011 2963 +f 2973 3013 2965 +f 2967 2973 2965 +f 3013 3011 2965 +f 2997 2995 2969 +f 3015 3013 2973 +f 2997 3017 2995 +f 3045 3017 2997 +f 2999 3045 2997 +f 3047 3045 2999 +f 3001 3047 2999 +f 3049 3047 3001 +f 3003 3049 3001 +f 3051 3049 3003 +f 3005 3051 3003 +f 3053 3051 3005 +f 3007 3053 3005 +f 3055 3053 3007 +f 3009 3055 3007 +f 3057 3055 3009 +f 3011 3057 3009 +f 3059 3057 3011 +f 3013 3059 3011 +f 3021 3061 3013 +f 3015 3021 3013 +f 3061 3059 3013 +f 3045 3043 3017 +f 3063 3061 3021 +f 3045 3153 3043 +f 3153 3139 3043 +f 3254 3153 3045 +f 3047 3254 3045 +f 3455 3352 3047 +f 3352 3254 3047 +f 3049 3455 3047 +f 3456 3455 3049 +f 3051 3456 3049 +f 3458 3456 3051 +f 3053 3458 3051 +f 3460 3458 3053 +f 3055 3460 3053 +f 3462 3460 3055 +f 3057 3462 3055 +f 3464 3462 3057 +f 3059 3464 3057 +f 3466 3464 3059 +f 3061 3466 3059 +f 3336 3468 3061 +f 3063 3336 3061 +f 3468 3466 3061 +f 3470 3468 3336 +f 3456 3481 3455 +f 3542 3481 3456 +f 3458 3542 3456 +f 3682 3605 3458 +f 3605 3603 3458 +f 3603 3542 3458 +f 3460 3682 3458 +f 3683 3682 3460 +f 3462 3683 3460 +f 3685 3683 3462 +f 3464 3685 3462 +f 3687 3685 3464 +f 3466 3687 3464 +f 3689 3687 3466 +f 3468 3689 3466 +f 3592 3691 3468 +f 3470 3592 3468 +f 3691 3689 3468 +f 3693 3691 3592 +f 3683 3701 3682 +f 3842 3789 3683 +f 3789 3732 3683 +f 3732 3701 3683 +f 3685 3842 3683 +f 3831 3842 3685 +f 3687 3831 3685 +f 3833 3831 3687 +f 3689 3833 3687 +f 3835 3833 3689 +f 3691 3835 3689 +f 3736 3837 3691 +f 3693 3736 3691 +f 3837 3835 3691 +f 3839 3837 3736 +f 3979 3931 3831 +f 3931 3877 3831 +f 3877 3868 3831 +f 3845 3842 3831 +f 3868 3845 3831 +f 3833 3979 3831 +f 3971 3979 3833 +f 3835 3971 3833 +f 3973 3971 3835 +f 3837 3973 3835 +f 3921 3975 3837 +f 3839 3921 3837 +f 3975 3973 3837 +f 3977 3975 3921 +f 3981 3979 3971 +f 3973 3981 3971 +f 4060 3991 3973 +f 4066 4060 3973 +f 3991 3981 3973 +f 3975 4066 3973 +f 3977 4066 3975 +f 3988 4066 3977 +f 4071 4066 3988 +f 4074 4071 3988 +f 2657 2594 2593 +f 2657 2658 2594 +f 2661 2662 2657 +f 2662 2658 2657 +f 2705 2706 2661 +f 2706 2662 2661 +f 2709 2710 2705 +f 2710 2706 2705 +f 2753 2754 2709 +f 2754 2710 2709 +f 2757 2758 2753 +f 2758 2754 2753 +f 2801 2802 2757 +f 2802 2758 2757 +f 2805 2806 2801 +f 2806 2802 2801 +f 2849 2850 2805 +f 2850 2806 2805 +f 2853 2854 2849 +f 2854 2850 2849 +f 2897 2898 2853 +f 2898 2854 2853 +f 2901 2902 2897 +f 2902 2898 2897 +f 2923 2924 2901 +f 2924 2902 2901 +f 2947 2948 2923 +f 2948 2924 2923 +f 2969 2970 2947 +f 2970 2948 2947 +f 2995 2996 2969 +f 2996 2970 2969 +f 3017 3018 2995 +f 3018 2996 2995 +f 3043 3044 3017 +f 3044 3018 3017 +f 3139 3140 3043 +f 3140 3044 3043 +f 3141 3142 3044 +f 3140 3141 3044 +f 2615 2635 2613 +f 2637 2635 2615 +f 2617 2637 2615 +f 2619 2639 2617 +f 2639 2637 2617 +f 2621 2641 2619 +f 2641 2639 2619 +f 2623 2643 2621 +f 2643 2641 2621 +f 2625 2645 2623 +f 2645 2643 2623 +f 2647 2645 2625 +f 2627 2647 2625 +f 2649 2647 2627 +f 2629 2649 2627 +f 2651 2649 2629 +f 2631 2651 2629 +f 2633 2653 2631 +f 2653 2651 2631 +f 2655 2653 2633 +f 2637 2681 2635 +f 2685 2681 2637 +f 2639 2685 2637 +f 2641 2687 2639 +f 2687 2685 2639 +f 2643 2689 2641 +f 2689 2687 2641 +f 2645 2691 2643 +f 2691 2689 2643 +f 2647 2693 2645 +f 2693 2691 2645 +f 2695 2693 2647 +f 2649 2695 2647 +f 2697 2695 2649 +f 2651 2697 2649 +f 2699 2697 2651 +f 2653 2699 2651 +f 2655 2659 2653 +f 2659 2701 2653 +f 2701 2699 2653 +f 2703 2701 2659 +f 2685 2683 2681 +f 2685 2729 2683 +f 2733 2729 2685 +f 2687 2733 2685 +f 2689 2735 2687 +f 2735 2733 2687 +f 2691 2737 2689 +f 2737 2735 2689 +f 2693 2739 2691 +f 2739 2737 2691 +f 2695 2741 2693 +f 2741 2739 2693 +f 2743 2741 2695 +f 2697 2743 2695 +f 2745 2743 2697 +f 2699 2745 2697 +f 2747 2745 2699 +f 2701 2747 2699 +f 2707 2749 2701 +f 2703 2707 2701 +f 2749 2747 2701 +f 2751 2749 2707 +f 2733 2731 2729 +f 2733 2777 2731 +f 2781 2777 2733 +f 2735 2781 2733 +f 2737 2783 2735 +f 2783 2781 2735 +f 2739 2785 2737 +f 2785 2783 2737 +f 2741 2787 2739 +f 2787 2785 2739 +f 2743 2789 2741 +f 2789 2787 2741 +f 2791 2789 2743 +f 2745 2791 2743 +f 2793 2791 2745 +f 2747 2793 2745 +f 2795 2793 2747 +f 2749 2795 2747 +f 2755 2797 2749 +f 2751 2755 2749 +f 2797 2795 2749 +f 2799 2797 2755 +f 2781 2779 2777 +f 2781 2825 2779 +f 2829 2825 2781 +f 2783 2829 2781 +f 2785 2831 2783 +f 2831 2829 2783 +f 2787 2833 2785 +f 2833 2831 2785 +f 2789 2835 2787 +f 2835 2833 2787 +f 2791 2837 2789 +f 2837 2835 2789 +f 2839 2837 2791 +f 2793 2839 2791 +f 2841 2839 2793 +f 2795 2841 2793 +f 2843 2841 2795 +f 2797 2843 2795 +f 2803 2845 2797 +f 2799 2803 2797 +f 2845 2843 2797 +f 2847 2845 2803 +f 2829 2827 2825 +f 2829 2873 2827 +f 2877 2873 2829 +f 2831 2877 2829 +f 2833 2879 2831 +f 2879 2877 2831 +f 2835 2881 2833 +f 2881 2879 2833 +f 2837 2883 2835 +f 2883 2881 2835 +f 2839 2885 2837 +f 2885 2883 2837 +f 2887 2885 2839 +f 2841 2887 2839 +f 2889 2887 2841 +f 2843 2889 2841 +f 2891 2889 2843 +f 2845 2891 2843 +f 2851 2893 2845 +f 2847 2851 2845 +f 2893 2891 2845 +f 2895 2893 2851 +f 2877 2875 2873 +f 2877 2921 2875 +f 2929 2921 2877 +f 2879 2929 2877 +f 2881 2931 2879 +f 2931 2929 2879 +f 2883 2933 2881 +f 2933 2931 2881 +f 2885 2935 2883 +f 2935 2933 2883 +f 2887 2937 2885 +f 2937 2935 2885 +f 2939 2937 2887 +f 2889 2939 2887 +f 2941 2939 2889 +f 2891 2941 2889 +f 2943 2941 2891 +f 2893 2943 2891 +f 2899 2945 2893 +f 2895 2899 2893 +f 2945 2943 2893 +f 2925 2945 2899 +f 2929 2927 2921 +f 2929 2967 2927 +f 2975 2967 2929 +f 2931 2975 2929 +f 2933 2977 2931 +f 2977 2975 2931 +f 2935 2979 2933 +f 2979 2977 2933 +f 2937 2981 2935 +f 2981 2979 2935 +f 2939 2983 2937 +f 2983 2981 2937 +f 2985 2983 2939 +f 2941 2985 2939 +f 2987 2985 2941 +f 2943 2987 2941 +f 2989 2987 2943 +f 2945 2989 2943 +f 2971 2991 2945 +f 2925 2971 2945 +f 2991 2989 2945 +f 2975 2973 2967 +f 2993 2991 2971 +f 2975 3015 2973 +f 3023 3015 2975 +f 2977 3023 2975 +f 2979 3025 2977 +f 3025 3023 2977 +f 2981 3027 2979 +f 3027 3025 2979 +f 2983 3029 2981 +f 3029 3027 2981 +f 2985 3031 2983 +f 3031 3029 2983 +f 3033 3031 2985 +f 2987 3033 2985 +f 3035 3033 2987 +f 2989 3035 2987 +f 3037 3035 2989 +f 2991 3037 2989 +f 3019 3039 2991 +f 2993 3019 2991 +f 3039 3037 2991 +f 3023 3021 3015 +f 3041 3039 3019 +f 3023 3063 3021 +f 3338 3063 3023 +f 3025 3338 3023 +f 3027 3340 3025 +f 3340 3338 3025 +f 3029 3342 3027 +f 3342 3340 3027 +f 3031 3344 3029 +f 3344 3342 3029 +f 3033 3346 3031 +f 3346 3344 3031 +f 3143 3253 3033 +f 3145 3143 3033 +f 3253 3346 3033 +f 3035 3145 3033 +f 3037 3145 3035 +f 3147 3145 3037 +f 3039 3147 3037 +f 3041 3149 3039 +f 3149 3147 3039 +f 3151 3149 3041 +f 3338 3336 3063 +f 3255 3346 3253 +f 3348 3346 3255 +f 3353 3346 3348 +f 3338 3470 3336 +f 3594 3470 3338 +f 3340 3594 3338 +f 3342 3596 3340 +f 3596 3594 3340 +f 3344 3598 3342 +f 3598 3596 3342 +f 3591 3600 3344 +f 3486 3591 3344 +f 3346 3486 3344 +f 3600 3598 3344 +f 3353 3473 3346 +f 3473 3486 3346 +f 3594 3592 3470 +f 3698 3600 3591 +f 3594 3693 3592 +f 3738 3693 3594 +f 3596 3738 3594 +f 3598 3740 3596 +f 3740 3738 3596 +f 3735 3742 3598 +f 3600 3735 3598 +f 3742 3740 3598 +f 3698 3728 3600 +f 3728 3735 3600 +f 3738 3736 3693 +f 3827 3742 3735 +f 3738 3839 3736 +f 3923 3839 3738 +f 3740 3923 3738 +f 3927 3925 3740 +f 3742 3927 3740 +f 3925 3923 3740 +f 3827 3873 3742 +f 3873 3875 3742 +f 3875 3927 3742 +f 3923 3921 3839 +f 3923 3977 3921 +f 3984 3988 3923 +f 3988 3977 3923 +f 3985 3984 3923 +f 3925 3985 3923 +f 3927 3930 3925 +f 3930 3983 3925 +f 3983 3985 3925 +f 3985 4068 3984 +f 4068 3988 3984 +f 4068 4074 3988 +f 2658 2596 2594 +f 2658 2664 2596 +f 2666 2598 2596 +f 2664 2666 2596 +f 2668 2600 2598 +f 2666 2668 2598 +f 2670 2602 2600 +f 2668 2670 2600 +f 2672 2604 2602 +f 2670 2672 2602 +f 2674 2606 2604 +f 2672 2674 2604 +f 2676 2608 2606 +f 2674 2676 2606 +f 2678 2610 2608 +f 2676 2678 2608 +f 2680 2612 2610 +f 2678 2680 2610 +f 2680 2682 2612 +f 2682 2636 2612 +f 2636 2614 2612 +f 2662 2664 2658 +f 2706 2664 2662 +f 2706 2712 2664 +f 2714 2666 2664 +f 2712 2714 2664 +f 2716 2668 2666 +f 2714 2716 2666 +f 2718 2670 2668 +f 2716 2718 2668 +f 2720 2672 2670 +f 2718 2720 2670 +f 2722 2674 2672 +f 2720 2722 2672 +f 2724 2676 2674 +f 2722 2724 2674 +f 2726 2678 2676 +f 2724 2726 2676 +f 2728 2680 2678 +f 2726 2728 2678 +f 2728 2730 2680 +f 2730 2684 2680 +f 2684 2682 2680 +f 2710 2712 2706 +f 2754 2712 2710 +f 2754 2760 2712 +f 2762 2714 2712 +f 2760 2762 2712 +f 2764 2716 2714 +f 2762 2764 2714 +f 2766 2718 2716 +f 2764 2766 2716 +f 2768 2720 2718 +f 2766 2768 2718 +f 2770 2722 2720 +f 2768 2770 2720 +f 2772 2724 2722 +f 2770 2772 2722 +f 2774 2726 2724 +f 2772 2774 2724 +f 2776 2728 2726 +f 2774 2776 2726 +f 2776 2778 2728 +f 2778 2732 2728 +f 2732 2730 2728 +f 2758 2760 2754 +f 2802 2760 2758 +f 2802 2808 2760 +f 2810 2762 2760 +f 2808 2810 2760 +f 2812 2764 2762 +f 2810 2812 2762 +f 2814 2766 2764 +f 2812 2814 2764 +f 2816 2768 2766 +f 2814 2816 2766 +f 2818 2770 2768 +f 2816 2818 2768 +f 2820 2772 2770 +f 2818 2820 2770 +f 2822 2774 2772 +f 2820 2822 2772 +f 2824 2776 2774 +f 2822 2824 2774 +f 2824 2826 2776 +f 2826 2780 2776 +f 2780 2778 2776 +f 2806 2808 2802 +f 2850 2808 2806 +f 2850 2856 2808 +f 2858 2810 2808 +f 2856 2858 2808 +f 2860 2812 2810 +f 2858 2860 2810 +f 2862 2814 2812 +f 2860 2862 2812 +f 2864 2816 2814 +f 2862 2864 2814 +f 2866 2818 2816 +f 2864 2866 2816 +f 2868 2820 2818 +f 2866 2868 2818 +f 2870 2822 2820 +f 2868 2870 2820 +f 2872 2824 2822 +f 2870 2872 2822 +f 2872 2874 2824 +f 2874 2828 2824 +f 2828 2826 2824 +f 2854 2856 2850 +f 2898 2856 2854 +f 2898 2904 2856 +f 2906 2858 2856 +f 2904 2906 2856 +f 2908 2860 2858 +f 2906 2908 2858 +f 2910 2862 2860 +f 2908 2910 2860 +f 2912 2864 2862 +f 2910 2912 2862 +f 2914 2866 2864 +f 2912 2914 2864 +f 2916 2868 2866 +f 2914 2916 2866 +f 2918 2870 2868 +f 2916 2918 2868 +f 2920 2872 2870 +f 2918 2920 2870 +f 2920 2876 2872 +f 2876 2874 2872 +f 2920 2922 2876 +f 2902 2904 2898 +f 2924 2904 2902 +f 2924 2950 2904 +f 2952 2906 2904 +f 2950 2952 2904 +f 2954 2908 2906 +f 2952 2954 2906 +f 2956 2910 2908 +f 2954 2956 2908 +f 2958 2912 2910 +f 2956 2958 2910 +f 2960 2914 2912 +f 2958 2960 2912 +f 2962 2916 2914 +f 2960 2962 2914 +f 2964 2918 2916 +f 2962 2964 2916 +f 2966 2920 2918 +f 2964 2966 2918 +f 2966 2928 2920 +f 2928 2922 2920 +f 2948 2950 2924 +f 2966 2968 2928 +f 2970 2950 2948 +f 2970 2998 2950 +f 3000 2952 2950 +f 2998 3000 2950 +f 3002 2954 2952 +f 3000 3002 2952 +f 3004 2956 2954 +f 3002 3004 2954 +f 3006 2958 2956 +f 3004 3006 2956 +f 3008 2960 2958 +f 3006 3008 2958 +f 3010 2962 2960 +f 3008 3010 2960 +f 3012 2964 2962 +f 3010 3012 2962 +f 3014 2966 2964 +f 3012 3014 2964 +f 3014 2974 2966 +f 2974 2968 2966 +f 2996 2998 2970 +f 3014 3016 2974 +f 3018 2998 2996 +f 3018 3046 2998 +f 3048 3000 2998 +f 3046 3048 2998 +f 3050 3002 3000 +f 3048 3050 3000 +f 3052 3004 3002 +f 3050 3052 3002 +f 3054 3006 3004 +f 3052 3054 3004 +f 3056 3008 3006 +f 3054 3056 3006 +f 3058 3010 3008 +f 3056 3058 3008 +f 3060 3012 3010 +f 3058 3060 3010 +f 3062 3014 3012 +f 3060 3062 3012 +f 3062 3022 3014 +f 3022 3016 3014 +f 3044 3046 3018 +f 3062 3064 3022 +f 3228 3046 3044 +f 3142 3228 3044 +f 3228 3048 3046 +f 3228 3292 3048 +f 3292 3351 3048 +f 3412 3050 3048 +f 3351 3412 3048 +f 3412 3457 3050 +f 3459 3052 3050 +f 3457 3459 3050 +f 3461 3054 3052 +f 3459 3461 3052 +f 3463 3056 3054 +f 3461 3463 3054 +f 3465 3058 3056 +f 3463 3465 3056 +f 3467 3060 3058 +f 3465 3467 3058 +f 3469 3062 3060 +f 3467 3469 3060 +f 3469 3337 3062 +f 3337 3064 3062 +f 3469 3471 3337 +f 3480 3457 3412 +f 3480 3459 3457 +f 3480 3485 3459 +f 3485 3602 3459 +f 3602 3606 3459 +f 3681 3461 3459 +f 3606 3681 3459 +f 3681 3684 3461 +f 3686 3463 3461 +f 3684 3686 3461 +f 3688 3465 3463 +f 3686 3688 3463 +f 3690 3467 3465 +f 3688 3690 3465 +f 3692 3469 3467 +f 3690 3692 3467 +f 3692 3593 3469 +f 3593 3471 3469 +f 3692 3694 3593 +f 3703 3684 3681 +f 3703 3731 3684 +f 3731 3790 3684 +f 3841 3686 3684 +f 3790 3841 3684 +f 3841 3832 3686 +f 3834 3688 3686 +f 3832 3834 3686 +f 3836 3690 3688 +f 3834 3836 3688 +f 3838 3692 3690 +f 3836 3838 3690 +f 3838 3737 3692 +f 3737 3694 3692 +f 3838 3840 3737 +f 3841 3843 3832 +f 3843 3870 3832 +f 3929 3834 3832 +f 3870 3929 3832 +f 3929 3972 3834 +f 3974 3836 3834 +f 3972 3974 3834 +f 3976 3838 3836 +f 3974 3976 3836 +f 3976 3922 3838 +f 3922 3840 3838 +f 3976 3978 3922 +f 3980 3972 3929 +f 3992 3974 3972 +f 3980 3992 3972 +f 4016 3976 3974 +f 3992 4016 3974 +f 4067 3989 3976 +f 4016 4067 3976 +f 3989 3978 3976 +f 4073 4075 3989 +f 4070 4073 3989 +f 4067 4070 3989 +f 2634 2655 2633 +f 2656 2655 2634 +f 2656 2659 2655 +f 2660 2659 2656 +f 2660 2703 2659 +f 2704 2703 2660 +f 2704 2707 2703 +f 2708 2707 2704 +f 2708 2751 2707 +f 2752 2751 2708 +f 2752 2755 2751 +f 2756 2755 2752 +f 2756 2799 2755 +f 2800 2799 2756 +f 2800 2803 2799 +f 2804 2803 2800 +f 2804 2847 2803 +f 2848 2847 2804 +f 2848 2851 2847 +f 2852 2851 2848 +f 2852 2895 2851 +f 2896 2895 2852 +f 2896 2899 2895 +f 2900 2899 2896 +f 2926 2925 2899 +f 2900 2926 2899 +f 2926 2971 2925 +f 2972 2971 2926 +f 2972 2993 2971 +f 2994 2993 2972 +f 2994 3019 2993 +f 3020 3019 2994 +f 3020 3041 3019 +f 3042 3041 3020 +f 3042 3151 3041 +f 3152 3151 3042 +f 2638 2616 2614 +f 2636 2638 2614 +f 2640 2618 2616 +f 2638 2640 2616 +f 2642 2620 2618 +f 2640 2642 2618 +f 2644 2622 2620 +f 2642 2644 2620 +f 2646 2624 2622 +f 2644 2646 2622 +f 2648 2626 2624 +f 2646 2648 2624 +f 2650 2628 2626 +f 2648 2650 2626 +f 2652 2630 2628 +f 2650 2652 2628 +f 2654 2632 2630 +f 2652 2654 2630 +f 2656 2634 2632 +f 2654 2656 2632 +f 2682 2638 2636 +f 2682 2686 2638 +f 2688 2640 2638 +f 2686 2688 2638 +f 2690 2642 2640 +f 2688 2690 2640 +f 2692 2644 2642 +f 2690 2692 2642 +f 2694 2646 2644 +f 2692 2694 2644 +f 2696 2648 2646 +f 2694 2696 2646 +f 2698 2650 2648 +f 2696 2698 2648 +f 2700 2652 2650 +f 2698 2700 2650 +f 2702 2654 2652 +f 2700 2702 2652 +f 2660 2656 2654 +f 2702 2660 2654 +f 2702 2704 2660 +f 2684 2686 2682 +f 2730 2686 2684 +f 2730 2734 2686 +f 2736 2688 2686 +f 2734 2736 2686 +f 2738 2690 2688 +f 2736 2738 2688 +f 2740 2692 2690 +f 2738 2740 2690 +f 2742 2694 2692 +f 2740 2742 2692 +f 2744 2696 2694 +f 2742 2744 2694 +f 2746 2698 2696 +f 2744 2746 2696 +f 2748 2700 2698 +f 2746 2748 2698 +f 2750 2702 2700 +f 2748 2750 2700 +f 2708 2704 2702 +f 2750 2708 2702 +f 2750 2752 2708 +f 2732 2734 2730 +f 2778 2734 2732 +f 2778 2782 2734 +f 2784 2736 2734 +f 2782 2784 2734 +f 2786 2738 2736 +f 2784 2786 2736 +f 2788 2740 2738 +f 2786 2788 2738 +f 2790 2742 2740 +f 2788 2790 2740 +f 2792 2744 2742 +f 2790 2792 2742 +f 2794 2746 2744 +f 2792 2794 2744 +f 2796 2748 2746 +f 2794 2796 2746 +f 2798 2750 2748 +f 2796 2798 2748 +f 2756 2752 2750 +f 2798 2756 2750 +f 2798 2800 2756 +f 2780 2782 2778 +f 2826 2782 2780 +f 2826 2830 2782 +f 2832 2784 2782 +f 2830 2832 2782 +f 2834 2786 2784 +f 2832 2834 2784 +f 2836 2788 2786 +f 2834 2836 2786 +f 2838 2790 2788 +f 2836 2838 2788 +f 2840 2792 2790 +f 2838 2840 2790 +f 2842 2794 2792 +f 2840 2842 2792 +f 2844 2796 2794 +f 2842 2844 2794 +f 2846 2798 2796 +f 2844 2846 2796 +f 2804 2800 2798 +f 2846 2804 2798 +f 2846 2848 2804 +f 2828 2830 2826 +f 2874 2830 2828 +f 2874 2878 2830 +f 2880 2832 2830 +f 2878 2880 2830 +f 2882 2834 2832 +f 2880 2882 2832 +f 2884 2836 2834 +f 2882 2884 2834 +f 2886 2838 2836 +f 2884 2886 2836 +f 2888 2840 2838 +f 2886 2888 2838 +f 2890 2842 2840 +f 2888 2890 2840 +f 2892 2844 2842 +f 2890 2892 2842 +f 2894 2846 2844 +f 2892 2894 2844 +f 2852 2848 2846 +f 2894 2852 2846 +f 2894 2896 2852 +f 2876 2878 2874 +f 2922 2878 2876 +f 2922 2930 2878 +f 2932 2880 2878 +f 2930 2932 2878 +f 2934 2882 2880 +f 2932 2934 2880 +f 2936 2884 2882 +f 2934 2936 2882 +f 2938 2886 2884 +f 2936 2938 2884 +f 2940 2888 2886 +f 2938 2940 2886 +f 2942 2890 2888 +f 2940 2942 2888 +f 2944 2892 2890 +f 2942 2944 2890 +f 2946 2894 2892 +f 2944 2946 2892 +f 2900 2896 2894 +f 2946 2900 2894 +f 2946 2926 2900 +f 2928 2930 2922 +f 2968 2930 2928 +f 2968 2976 2930 +f 2978 2932 2930 +f 2976 2978 2930 +f 2980 2934 2932 +f 2978 2980 2932 +f 2982 2936 2934 +f 2980 2982 2934 +f 2984 2938 2936 +f 2982 2984 2936 +f 2986 2940 2938 +f 2984 2986 2938 +f 2988 2942 2940 +f 2986 2988 2940 +f 2990 2944 2942 +f 2988 2990 2942 +f 2992 2946 2944 +f 2990 2992 2944 +f 2992 2972 2946 +f 2972 2926 2946 +f 2974 2976 2968 +f 2992 2994 2972 +f 3016 2976 2974 +f 3016 3024 2976 +f 3026 2978 2976 +f 3024 3026 2976 +f 3028 2980 2978 +f 3026 3028 2978 +f 3030 2982 2980 +f 3028 3030 2980 +f 3032 2984 2982 +f 3030 3032 2982 +f 3034 2986 2984 +f 3032 3034 2984 +f 3036 2988 2986 +f 3034 3036 2986 +f 3038 2990 2988 +f 3036 3038 2988 +f 3040 2992 2990 +f 3038 3040 2990 +f 3040 3020 2992 +f 3020 2994 2992 +f 3022 3024 3016 +f 3040 3042 3020 +f 3064 3024 3022 +f 3064 3339 3024 +f 3341 3026 3024 +f 3339 3341 3024 +f 3343 3028 3026 +f 3341 3343 3026 +f 3345 3030 3028 +f 3343 3345 3028 +f 3347 3032 3030 +f 3345 3347 3030 +f 3347 3034 3032 +f 3231 3229 3034 +f 3347 3335 3034 +f 3335 3231 3034 +f 3144 3036 3034 +f 3229 3144 3034 +f 3144 3146 3036 +f 3148 3038 3036 +f 3146 3148 3036 +f 3150 3040 3038 +f 3148 3150 3038 +f 3150 3152 3040 +f 3152 3042 3040 +f 3337 3339 3064 +f 3347 3354 3335 +f 3471 3339 3337 +f 3471 3595 3339 +f 3597 3341 3339 +f 3595 3597 3339 +f 3599 3343 3341 +f 3597 3599 3341 +f 3601 3345 3343 +f 3599 3601 3343 +f 3590 3347 3345 +f 3601 3590 3345 +f 3590 3484 3347 +f 3484 3354 3347 +f 3593 3595 3471 +f 3601 3604 3590 +f 3694 3595 3593 +f 3694 3739 3595 +f 3741 3597 3595 +f 3739 3741 3595 +f 3743 3599 3597 +f 3741 3743 3597 +f 3743 3601 3599 +f 3743 3744 3601 +f 3744 3729 3601 +f 3729 3705 3601 +f 3705 3604 3601 +f 3737 3739 3694 +f 3840 3739 3737 +f 3840 3924 3739 +f 3926 3741 3739 +f 3924 3926 3739 +f 3928 3743 3741 +f 3926 3928 3741 +f 3928 3874 3743 +f 3874 3872 3743 +f 3872 3829 3743 +f 3829 3744 3743 +f 3922 3924 3840 +f 3978 3924 3922 +f 3990 3926 3924 +f 3978 3990 3924 +f 3986 3982 3926 +f 3990 3986 3926 +f 3932 3928 3926 +f 3982 3932 3926 +f 3989 3990 3978 +f 3990 4062 3986 +f 4072 3990 3989 +f 4075 4072 3989 +f 4072 4062 3990 +f 5602 4630 4624 +f 5600 5602 4624 +f 5604 4632 4630 +f 5602 5604 4630 +f 5606 4634 4632 +f 5604 5606 4632 +f 5606 4638 4634 +f 5606 5608 4638 +f 5608 5612 4638 +f 5612 4644 4638 +f 5616 5618 4644 +f 5618 5620 4644 +f 5620 4650 4644 +f 5612 5614 4644 +f 5614 5616 4644 +f 5624 5627 4650 +f 5627 5628 4650 +f 5628 4656 4650 +f 5620 5622 4650 +f 5622 5624 4650 +f 5632 5638 4656 +f 5638 5639 4656 +f 5639 4660 4656 +f 5628 5630 4656 +f 5630 5632 4656 +f 5648 5650 4660 +f 5650 5651 4660 +f 5651 4666 4660 +f 5639 5641 4660 +f 5641 5648 4660 +f 5666 4669 4666 +f 5651 5658 4666 +f 5658 5666 4666 +f 5666 5667 4669 +f 5667 5675 4669 +f 4631 5601 4627 +f 4633 5603 4631 +f 5603 5601 4631 +f 4635 5605 4633 +f 5605 5603 4633 +f 4639 5609 4635 +f 5609 5607 4635 +f 5607 5605 4635 +f 5613 5611 4639 +f 5611 5610 4639 +f 5610 5609 4639 +f 4645 5617 4639 +f 5617 5615 4639 +f 5615 5613 4639 +f 5619 5617 4645 +f 4651 5623 4645 +f 5623 5621 4645 +f 5621 5619 4645 +f 5629 5626 4651 +f 5626 5625 4651 +f 5625 5623 4651 +f 4657 5635 4651 +f 5635 5631 4651 +f 5631 5629 4651 +f 5640 5635 4657 +f 5642 5640 4657 +f 4661 5642 4657 +f 5645 5642 4661 +f 5657 5652 4661 +f 5652 5649 4661 +f 5649 5645 4661 +f 5659 5657 4661 +f 4667 5659 4661 +f 5670 5659 4667 +f 4670 5670 4667 +f 5676 5670 4670 +f 5073 3146 3144 +f 3229 5073 3144 +f 5075 3148 3146 +f 5073 5075 3146 +f 5077 3150 3148 +f 5075 5077 3148 +f 5079 3152 3150 +f 5077 5079 3150 +f 5071 5073 3229 +f 3231 5071 3229 +f 5069 5071 3231 +f 3335 5069 3231 +f 3354 5069 3335 +f 3377 5069 3354 +f 3474 5069 3377 +f 3482 5069 3474 +f 3588 5069 3482 +f 3704 5069 3588 +f 5067 5069 3704 +f 3733 5067 3704 +f 3788 5067 3733 +f 3871 5067 3788 +f 3987 5067 3871 +f 5065 5067 3987 +f 4015 5065 3987 +f 4065 5065 4015 +f 4224 5065 4065 +f 4345 5065 4224 +f 5063 5065 4345 +f 4346 5063 4345 +f 4373 5063 4346 +f 5061 5063 4373 +f 4398 5061 4373 +f 4399 5061 4398 +f 4626 5059 4399 +f 5059 5061 4399 +f 5072 3253 3143 +f 3145 5072 3143 +f 3147 5072 3145 +f 5074 5072 3147 +f 3149 5074 3147 +f 5076 5074 3149 +f 3151 5076 3149 +f 5078 5076 3151 +f 5070 3255 3253 +f 5072 5070 3253 +f 5070 3348 3255 +f 5070 3353 3348 +f 5070 3472 3353 +f 5070 3475 3472 +f 5068 3483 3475 +f 5070 5068 3475 +f 5068 3697 3483 +f 5068 3702 3697 +f 5068 3734 3702 +f 5066 3869 3734 +f 5068 5066 3734 +f 5066 3876 3869 +f 5066 5064 3876 +f 5064 4017 3876 +f 5064 4069 4017 +f 5064 4117 4069 +f 5064 4225 4117 +f 5064 4347 4225 +f 5064 5062 4347 +f 5062 4372 4347 +f 5062 4375 4372 +f 5060 4401 4375 +f 5062 5060 4375 +f 5060 4625 4401 +f 5060 5058 4625 +f 6091 6159 6089 +f 6159 6157 6089 +f 6159 6215 6157 +f 6215 6213 6157 +f 6215 6275 6213 +f 6275 6273 6213 +f 6275 6355 6273 +f 6355 6353 6273 +f 6355 6411 6353 +f 6411 6409 6353 +f 6411 6463 6409 +f 6463 6461 6409 +f 6463 6495 6461 +f 6495 6493 6461 +f 6495 6527 6493 +f 6527 6525 6493 +f 6527 6543 6525 +f 6543 6541 6525 +f 6543 6551 6541 +f 6551 6549 6541 +f 6158 6092 6090 +f 6158 6160 6092 +f 6214 6160 6158 +f 6214 6216 6160 +f 6274 6216 6214 +f 6274 6276 6216 +f 6354 6276 6274 +f 6354 6356 6276 +f 6410 6356 6354 +f 6410 6412 6356 +f 6462 6412 6410 +f 6462 6464 6412 +f 6494 6464 6462 +f 6494 6496 6464 +f 6526 6496 6494 +f 6526 6528 6496 +f 6542 6528 6526 +f 6542 6544 6528 +f 6550 6544 6542 +f 6550 6552 6544 +f 4420 4686 4416 +f 4818 4686 4420 +f 4818 4833 4686 +f 4833 4853 4686 +f 4853 4858 4686 +f 4858 4861 4686 +f 4687 4846 4417 +f 4846 4418 4417 +f 4957 4860 4859 +f 4957 4958 4860 +f 5283 4958 4957 +f 5283 5284 4958 +f 2594 2634 2593 +f 2634 2633 2593 +f 2613 2595 2593 +f 2615 2613 2593 +f 2633 2631 2593 +f 2631 2629 2593 +f 2629 2627 2593 +f 2627 2625 2593 +f 2625 2623 2593 +f 2623 2621 2593 +f 2621 2619 2593 +f 2619 2617 2593 +f 2617 2615 2593 +f 2614 2616 2594 +f 2596 2614 2594 +f 2616 2618 2594 +f 2618 2620 2594 +f 2620 2622 2594 +f 2622 2624 2594 +f 2624 2626 2594 +f 2626 2628 2594 +f 2628 2630 2594 +f 2630 2632 2594 +f 2632 2634 2594 +f 2613 2611 2595 +f 2611 2597 2595 +f 2612 2614 2596 +f 2610 2612 2596 +f 2608 2610 2596 +f 2598 2608 2596 +f 2611 2599 2597 +f 2600 2608 2598 +f 2611 2601 2599 +f 2602 2608 2600 +f 2611 2603 2601 +f 2604 2608 2602 +f 2611 2605 2603 +f 2606 2608 2604 +f 2611 2607 2605 +f 2611 2609 2607 +f 5401 5400 5324 +f 5325 5401 5324 +f 5400 5328 5324 +f 5329 5401 5325 +f 5400 5332 5328 +f 5333 5401 5329 +f 5400 5336 5332 +f 5337 5401 5333 +f 5400 5340 5336 +f 5341 5401 5337 +f 5400 5344 5340 +f 5345 5401 5341 +f 5400 5348 5344 +f 5349 5401 5345 +f 5400 5352 5348 +f 5353 5401 5349 +f 5400 5356 5352 +f 5357 5401 5353 +f 5400 5360 5356 +f 5361 5401 5357 +f 5400 5364 5360 +f 5365 5401 5361 +f 5400 5368 5364 +f 5369 5401 5365 +f 5400 5372 5368 +f 5373 5401 5369 +f 5400 5376 5372 +f 5377 5401 5373 +f 5396 5380 5376 +f 5400 5396 5376 +f 5381 5401 5377 +f 5396 5384 5380 +f 5389 5393 5381 +f 5385 5389 5381 +f 5397 5401 5381 +f 5393 5397 5381 +f 5392 5388 5384 +f 5396 5392 5384 +f 5400 5401 4628 +f 5401 4629 4628 +f 5324 4552 4548 +f 5328 4556 4552 +f 5324 5328 4552 +f 5332 4560 4556 +f 5328 5332 4556 +f 5336 4564 4560 +f 5332 5336 4560 +f 5340 4568 4564 +f 5336 5340 4564 +f 5344 4572 4568 +f 5340 5344 4568 +f 5348 4576 4572 +f 5344 5348 4572 +f 5352 4580 4576 +f 5348 5352 4576 +f 5356 4584 4580 +f 5352 5356 4580 +f 5360 4588 4584 +f 5356 5360 4584 +f 5364 4592 4588 +f 5360 5364 4588 +f 5368 4596 4592 +f 5364 5368 4592 +f 5372 4600 4596 +f 5368 5372 4596 +f 5376 4604 4600 +f 5372 5376 4600 +f 5380 4608 4604 +f 5376 5380 4604 +f 5384 4612 4608 +f 5380 5384 4608 +f 5388 4616 4612 +f 5384 5388 4612 +f 5392 4620 4616 +f 5388 5392 4616 +f 5396 4628 4620 +f 5392 5396 4620 +f 5396 5400 4628 +f 4549 5324 4548 +f 5325 5324 4549 +f 5329 5325 4549 +f 4553 5329 4549 +f 5333 5329 4553 +f 4557 5333 4553 +f 5337 5333 4557 +f 4561 5337 4557 +f 5341 5337 4561 +f 4565 5341 4561 +f 5345 5341 4565 +f 4569 5345 4565 +f 5349 5345 4569 +f 4573 5349 4569 +f 5353 5349 4573 +f 4577 5353 4573 +f 5357 5353 4577 +f 4581 5357 4577 +f 5361 5357 4581 +f 4585 5361 4581 +f 5365 5361 4585 +f 4589 5365 4585 +f 5369 5365 4589 +f 4593 5369 4589 +f 5373 5369 4593 +f 4597 5373 4593 +f 5377 5373 4597 +f 4601 5377 4597 +f 5381 5377 4601 +f 4605 5381 4601 +f 5385 5381 4605 +f 4609 5385 4605 +f 5389 5385 4609 +f 4613 5389 4609 +f 5393 5389 4613 +f 4617 5393 4613 +f 5397 5393 4617 +f 4621 5397 4617 +f 5401 5397 4621 +f 4629 5401 4621 +f 5323 5399 5322 +f 5399 5398 5322 +f 5398 5394 5322 +f 5366 5362 5322 +f 5382 5378 5322 +f 5394 5390 5322 +f 5390 5386 5322 +f 5386 5382 5322 +f 5378 5374 5322 +f 5374 5370 5322 +f 5370 5366 5322 +f 5362 5358 5322 +f 5358 5354 5322 +f 5354 5350 5322 +f 5350 5346 5322 +f 5346 5342 5322 +f 5342 5326 5322 +f 5327 5399 5323 +f 5342 5330 5326 +f 5331 5399 5327 +f 5342 5334 5330 +f 5335 5399 5331 +f 5342 5338 5334 +f 5339 5399 5335 +f 5343 5399 5339 +f 5347 5399 5343 +f 5351 5399 5347 +f 5355 5399 5351 +f 5359 5399 5355 +f 5363 5399 5359 +f 5367 5399 5363 +f 5371 5399 5367 +f 5375 5399 5371 +f 5379 5399 5375 +f 5383 5387 5379 +f 5387 5391 5379 +f 5391 5395 5379 +f 5395 5399 5379 +f 4547 5322 4546 +f 5323 5322 4547 +f 5327 5323 4547 +f 4551 5327 4547 +f 5331 5327 4551 +f 4555 5331 4551 +f 5335 5331 4555 +f 4559 5335 4555 +f 5339 5335 4559 +f 4563 5339 4559 +f 5343 5339 4563 +f 4567 5343 4563 +f 5347 5343 4567 +f 4571 5347 4567 +f 5351 5347 4571 +f 4575 5351 4571 +f 5355 5351 4575 +f 4579 5355 4575 +f 5359 5355 4579 +f 4583 5359 4579 +f 5363 5359 4583 +f 4587 5363 4583 +f 5367 5363 4587 +f 4591 5367 4587 +f 5371 5367 4591 +f 4595 5371 4591 +f 5375 5371 4595 +f 4599 5375 4595 +f 5379 5375 4599 +f 4603 5379 4599 +f 5383 5379 4603 +f 4607 5383 4603 +f 5387 5383 4607 +f 4611 5387 4607 +f 5391 5387 4611 +f 4615 5391 4611 +f 5395 5391 4615 +f 4619 5395 4615 +f 5399 5395 4619 +f 4623 5399 4619 +f 5398 5399 4622 +f 5399 4623 4622 +f 5322 4550 4546 +f 5326 4554 4550 +f 5322 5326 4550 +f 5330 4558 4554 +f 5326 5330 4554 +f 5334 4562 4558 +f 5330 5334 4558 +f 5338 4566 4562 +f 5334 5338 4562 +f 5342 4570 4566 +f 5338 5342 4566 +f 5346 4574 4570 +f 5342 5346 4570 +f 5350 4578 4574 +f 5346 5350 4574 +f 5354 4582 4578 +f 5350 5354 4578 +f 5358 4586 4582 +f 5354 5358 4582 +f 5362 4590 4586 +f 5358 5362 4586 +f 5366 4594 4590 +f 5362 5366 4590 +f 5370 4598 4594 +f 5366 5370 4594 +f 5374 4602 4598 +f 5370 5374 4598 +f 5378 4606 4602 +f 5374 5378 4602 +f 5382 4610 4606 +f 5378 5382 4606 +f 5386 4614 4610 +f 5382 5386 4610 +f 5390 4618 4614 +f 5386 5390 4614 +f 5394 4622 4618 +f 5390 5394 4618 +f 5394 5398 4622 +f 5903 4426 4424 +f 5901 5903 4424 +f 4428 5901 4424 +f 5907 4430 4426 +f 5903 5907 4426 +f 5905 5901 4428 +f 4432 5905 4428 +f 5911 4434 4430 +f 5907 5911 4430 +f 5909 5905 4432 +f 4436 5909 4432 +f 5915 4438 4434 +f 5911 5915 4434 +f 5913 5909 4436 +f 5917 4440 4438 +f 5915 5917 4438 +f 5919 4442 4440 +f 5917 5919 4440 +f 5921 4444 4442 +f 5919 5921 4442 +f 5923 4446 4444 +f 5921 5923 4444 +f 5925 4448 4446 +f 5923 5925 4446 +f 5594 4452 4448 +f 5925 5594 4448 +f 5594 5598 4452 +f 5925 5929 5594 +f 4427 5902 4425 +f 5902 5906 4425 +f 5906 4429 4425 +f 4431 5904 4427 +f 5904 5902 4427 +f 5906 5910 4429 +f 5910 4433 4429 +f 4435 5908 4431 +f 5908 5904 4431 +f 5910 5914 4433 +f 5914 4437 4433 +f 4439 5912 4435 +f 5912 5908 4435 +f 4441 5916 4439 +f 5916 5912 4439 +f 4443 5918 4441 +f 5918 5916 4441 +f 4445 5920 4443 +f 5920 5918 4443 +f 4447 5922 4445 +f 5922 5920 4445 +f 4449 5924 4447 +f 5924 5922 4447 +f 4453 5599 4449 +f 5599 5597 4449 +f 5597 5926 4449 +f 5926 5924 4449 +f 5932 5926 5597 +f 5419 4637 4545 +f 6068 6092 4637 +f 5443 6068 4637 +f 5419 5443 4637 +f 6046 6068 5443 +f 6090 6092 6068 +f 5442 5418 4544 +f 4636 5442 4544 +f 6067 5442 4636 +f 6091 6067 4636 +f 6067 6045 5442 +f 6091 6089 6067 +f 4728 4692 4690 +f 4729 4728 4690 +f 4691 4729 4690 +f 4693 4729 4691 +f 4728 4694 4692 +f 4695 4729 4693 +f 4728 4696 4694 +f 4697 4729 4695 +f 4728 4698 4696 +f 4699 4729 4697 +f 4728 4700 4698 +f 4701 4729 4699 +f 4728 4702 4700 +f 4703 4729 4701 +f 4728 4704 4702 +f 4727 4729 4703 +f 4705 4717 4703 +f 4717 4719 4703 +f 4719 4721 4703 +f 4721 4723 4703 +f 4723 4725 4703 +f 4725 4727 4703 +f 4728 4706 4704 +f 4707 4717 4705 +f 4728 4708 4706 +f 4709 4713 4707 +f 4713 4715 4707 +f 4715 4717 4707 +f 4728 4710 4708 +f 4711 4713 4709 +f 4722 4720 4710 +f 4724 4722 4710 +f 4728 4726 4710 +f 4726 4724 4710 +f 4720 4718 4710 +f 4718 4716 4710 +f 4716 4712 4710 +f 4716 4714 4712 +f 4230 4691 4229 +f 4691 4690 4229 +f 4693 4691 4230 +f 4232 4693 4230 +f 4695 4693 4232 +f 4234 4695 4232 +f 4697 4695 4234 +f 4236 4697 4234 +f 4699 4697 4236 +f 4238 4699 4236 +f 4701 4699 4238 +f 4240 4701 4238 +f 4703 4701 4240 +f 4242 4703 4240 +f 4705 4703 4242 +f 4244 4705 4242 +f 4707 4705 4244 +f 4246 4707 4244 +f 4709 4707 4246 +f 4248 4709 4246 +f 4711 4709 4248 +f 4250 4711 4248 +f 4713 4711 4250 +f 4252 4713 4250 +f 4715 4713 4252 +f 4254 4715 4252 +f 4717 4715 4254 +f 4256 4717 4254 +f 4719 4717 4256 +f 4258 4719 4256 +f 4721 4719 4258 +f 4260 4721 4258 +f 4723 4721 4260 +f 4262 4723 4260 +f 4725 4723 4262 +f 4264 4725 4262 +f 4727 4725 4264 +f 4266 4727 4264 +f 4729 4727 4266 +f 4268 4729 4266 +f 4728 4268 4267 +f 4728 4729 4268 +f 4690 4231 4229 +f 4692 4233 4231 +f 4690 4692 4231 +f 4694 4235 4233 +f 4692 4694 4233 +f 4696 4237 4235 +f 4694 4696 4235 +f 4698 4239 4237 +f 4696 4698 4237 +f 4700 4241 4239 +f 4698 4700 4239 +f 4702 4243 4241 +f 4700 4702 4241 +f 4704 4245 4243 +f 4702 4704 4243 +f 4706 4247 4245 +f 4704 4706 4245 +f 4708 4249 4247 +f 4706 4708 4247 +f 4710 4251 4249 +f 4708 4710 4249 +f 4712 4253 4251 +f 4710 4712 4251 +f 4714 4255 4253 +f 4712 4714 4253 +f 4716 4257 4255 +f 4714 4716 4255 +f 4718 4259 4257 +f 4716 4718 4257 +f 4720 4261 4259 +f 4718 4720 4259 +f 4722 4263 4261 +f 4720 4722 4261 +f 4724 4265 4263 +f 4722 4724 4263 +f 4726 4267 4265 +f 4724 4726 4265 +f 4726 4728 4267 +f 4760 4732 4730 +f 4731 4769 4730 +f 4769 4768 4730 +f 4768 4766 4730 +f 4766 4764 4730 +f 4764 4762 4730 +f 4762 4760 4730 +f 4733 4769 4731 +f 4760 4734 4732 +f 4735 4769 4733 +f 4750 4748 4734 +f 4760 4758 4734 +f 4758 4756 4734 +f 4748 4746 4734 +f 4746 4744 4734 +f 4744 4742 4734 +f 4742 4740 4734 +f 4740 4738 4734 +f 4738 4736 4734 +f 4756 4754 4734 +f 4754 4752 4734 +f 4752 4750 4734 +f 4737 4769 4735 +f 4739 4769 4737 +f 4741 4769 4739 +f 4743 4769 4741 +f 4767 4769 4743 +f 4745 4757 4743 +f 4757 4759 4743 +f 4759 4761 4743 +f 4761 4763 4743 +f 4763 4765 4743 +f 4765 4767 4743 +f 4747 4757 4745 +f 4749 4753 4747 +f 4753 4755 4747 +f 4755 4757 4747 +f 4751 4753 4749 +f 4270 4731 4269 +f 4731 4730 4269 +f 4271 4731 4270 +f 4733 4731 4271 +f 4274 4733 4271 +f 4275 4733 4274 +f 4735 4733 4275 +f 4278 4735 4275 +f 4279 4735 4278 +f 4737 4735 4279 +f 4282 4737 4279 +f 4283 4737 4282 +f 4739 4737 4283 +f 4286 4739 4283 +f 4287 4739 4286 +f 4741 4739 4287 +f 4290 4741 4287 +f 4291 4741 4290 +f 4743 4741 4291 +f 4294 4743 4291 +f 4295 4743 4294 +f 4745 4743 4295 +f 4298 4745 4295 +f 4299 4745 4298 +f 4747 4745 4299 +f 4302 4747 4299 +f 4303 4747 4302 +f 4749 4747 4303 +f 4306 4749 4303 +f 4307 4749 4306 +f 4751 4749 4307 +f 4310 4751 4307 +f 4311 4751 4310 +f 4753 4751 4311 +f 4314 4753 4311 +f 4315 4753 4314 +f 4755 4753 4315 +f 4318 4755 4315 +f 4319 4755 4318 +f 4757 4755 4319 +f 4322 4757 4319 +f 4323 4757 4322 +f 4759 4757 4323 +f 4326 4759 4323 +f 4327 4759 4326 +f 4761 4759 4327 +f 4330 4761 4327 +f 4331 4761 4330 +f 4763 4761 4331 +f 4334 4763 4331 +f 4335 4763 4334 +f 4765 4763 4335 +f 4338 4765 4335 +f 4339 4765 4338 +f 4767 4765 4339 +f 4341 4767 4339 +f 4342 4767 4341 +f 4344 4769 4342 +f 4769 4767 4342 +f 3184 3141 3140 +f 3410 3258 3140 +f 3258 3184 3140 +f 3696 3586 3140 +f 3969 3830 3140 +f 3586 3541 3140 +f 3541 3477 3140 +f 3477 3410 3140 +f 4199 4114 3140 +f 4114 4061 3140 +f 4061 3969 3140 +f 3830 3828 3140 +f 3828 3825 3140 +f 3825 3696 3140 +f 3185 4344 3140 +f 4344 4226 3140 +f 4226 4199 3140 +f 3256 4344 3185 +f 3257 4344 3256 +f 3291 4344 3257 +f 3411 4344 3291 +f 3476 4344 3411 +f 3543 4344 3476 +f 3589 4344 3543 +f 3695 4344 3589 +f 3787 4344 3695 +f 3826 4344 3787 +f 3844 4344 3826 +f 3970 4344 3844 +f 4076 4344 3970 +f 4115 4344 4076 +f 4198 4344 4115 +f 4227 4344 4198 +f 4343 4344 4227 +f 4768 4769 4343 +f 4769 4344 4343 +f 4730 4272 4269 +f 4730 4732 4272 +f 4732 4273 4272 +f 4732 4276 4273 +f 4734 4277 4276 +f 4732 4734 4276 +f 4734 4280 4277 +f 4736 4281 4280 +f 4734 4736 4280 +f 4736 4284 4281 +f 4738 4285 4284 +f 4736 4738 4284 +f 4738 4288 4285 +f 4740 4289 4288 +f 4738 4740 4288 +f 4740 4292 4289 +f 4742 4293 4292 +f 4740 4742 4292 +f 4742 4296 4293 +f 4744 4297 4296 +f 4742 4744 4296 +f 4744 4300 4297 +f 4746 4301 4300 +f 4744 4746 4300 +f 4746 4304 4301 +f 4748 4305 4304 +f 4746 4748 4304 +f 4748 4308 4305 +f 4750 4309 4308 +f 4748 4750 4308 +f 4750 4312 4309 +f 4752 4313 4312 +f 4750 4752 4312 +f 4752 4316 4313 +f 4754 4317 4316 +f 4752 4754 4316 +f 4754 4320 4317 +f 4756 4321 4320 +f 4754 4756 4320 +f 4756 4324 4321 +f 4758 4325 4324 +f 4756 4758 4324 +f 4758 4328 4325 +f 4760 4329 4328 +f 4758 4760 4328 +f 4760 4332 4329 +f 4762 4333 4332 +f 4760 4762 4332 +f 4762 4336 4333 +f 4764 4337 4336 +f 4762 4764 4336 +f 4766 4340 4337 +f 4764 4766 4337 +f 4768 4343 4340 +f 4766 4768 4340 +f 6551 6550 6549 +f 6551 6552 6550 +f 6297 6048 6047 +f 6069 6297 6047 +f 6298 6070 6048 +f 6297 6298 6048 +f 6265 6289 6069 +f 6293 6297 6069 +f 6289 6293 6069 +f 6241 6265 6069 +f 6113 6241 6069 +f 6298 6114 6070 +f 6149 6241 6113 +f 6298 6150 6114 +f 6173 6241 6149 +f 6298 6174 6150 +f 6197 6241 6173 +f 6298 6198 6174 +f 6225 6241 6197 +f 6298 6294 6198 +f 6294 6290 6198 +f 6290 6266 6198 +f 6266 6242 6198 +f 6242 6226 6198 +f 5053 5318 5052 +f 5319 5318 5053 +f 5318 5284 5283 +f 5286 5318 5283 +f 5319 5285 5284 +f 5318 5319 5284 +f 5319 5287 5285 +f 5288 5318 5286 +f 5319 5289 5287 +f 5290 5318 5288 +f 5319 5291 5289 +f 5292 5318 5290 +f 5319 5293 5291 +f 5294 5318 5292 +f 5319 5295 5293 +f 5296 5318 5294 +f 5319 5297 5295 +f 5299 5318 5296 +f 5319 5298 5297 +f 5319 5300 5298 +f 5301 5318 5299 +f 5319 5302 5300 +f 5303 5318 5301 +f 5319 5304 5302 +f 5305 5318 5303 +f 5309 5307 5304 +f 5319 5317 5304 +f 5317 5315 5304 +f 5315 5313 5304 +f 5313 5311 5304 +f 5311 5309 5304 +f 5316 5318 5305 +f 5306 5308 5305 +f 5308 5310 5305 +f 5310 5312 5305 +f 5312 5314 5305 +f 5314 5316 5305 +f 5090 5091 5054 +f 5091 5055 5054 +f 5096 5097 5090 +f 5097 5091 5090 +f 5112 5113 5096 +f 5113 5097 5096 +f 5124 5125 5112 +f 5125 5113 5112 +f 5138 5139 5124 +f 5139 5125 5124 +f 5154 5155 5138 +f 5155 5139 5138 +f 5174 5175 5154 +f 5175 5155 5154 +f 5190 5191 5174 +f 5191 5175 5174 +f 5212 5213 5190 +f 5213 5191 5190 +f 5217 5218 5212 +f 5218 5213 5212 +f 5446 5447 5217 +f 5447 5218 5217 +f 5928 4451 4437 +f 5914 5928 4437 +f 5934 5215 4451 +f 5215 4469 4451 +f 5928 5934 4451 +f 5215 5247 4469 +f 5247 5264 4469 +f 5264 4503 4469 +f 5407 4535 4503 +f 5321 5407 4503 +f 5264 5275 4503 +f 5275 5321 4503 +f 5407 5409 4535 +f 5754 5750 4455 +f 4459 5754 4455 +f 5758 5754 4459 +f 4463 5758 4459 +f 5762 5758 4463 +f 4467 5762 4463 +f 5766 5762 4467 +f 4473 5766 4467 +f 5770 5766 4473 +f 4477 5770 4473 +f 5774 5770 4477 +f 4481 5774 4477 +f 5778 5774 4481 +f 4485 5778 4481 +f 5782 5778 4485 +f 4489 5782 4485 +f 5786 5782 4489 +f 4493 5786 4489 +f 5790 5786 4493 +f 4497 5790 4493 +f 5794 5790 4497 +f 4501 5794 4497 +f 5798 5794 4501 +f 4507 5798 4501 +f 5802 5798 4507 +f 4511 5802 4507 +f 5806 5802 4511 +f 4515 5806 4511 +f 5810 5806 4515 +f 4519 5810 4515 +f 5814 5810 4519 +f 4523 5814 4519 +f 5818 5814 4523 +f 4527 5818 4523 +f 5822 5818 4527 +f 4531 5822 4527 +f 5824 5822 4531 +f 4533 5824 4531 +f 4458 4462 4425 +f 4429 4458 4425 +f 4462 4427 4425 +f 4462 4431 4427 +f 4433 4458 4429 +f 4466 4435 4431 +f 4462 4466 4431 +f 4437 4455 4433 +f 4455 4458 4433 +f 4466 4439 4435 +f 4451 4463 4437 +f 4463 4459 4437 +f 4459 4455 4437 +f 4466 4441 4439 +f 4466 4472 4441 +f 4472 4443 4441 +f 4472 4445 4443 +f 4472 4447 4445 +f 4472 4449 4447 +f 4476 4453 4449 +f 4472 4476 4449 +f 4473 4467 4451 +f 4467 4463 4451 +f 4469 4481 4451 +f 4481 4477 4451 +f 4477 4473 4451 +f 4480 4484 4453 +f 4576 4627 4453 +f 4484 4488 4453 +f 4488 4492 4453 +f 4492 4496 4453 +f 4564 4568 4453 +f 4568 4572 4453 +f 4572 4576 4453 +f 4476 4480 4453 +f 4496 4500 4453 +f 4500 4506 4453 +f 4506 4564 4453 +f 4493 4489 4469 +f 4503 4493 4469 +f 4489 4485 4469 +f 4485 4481 4469 +f 4503 4497 4493 +f 4503 4501 4497 +f 4503 4507 4501 +f 4549 4507 4503 +f 4553 4549 4503 +f 4557 4553 4503 +f 4535 4565 4503 +f 4565 4561 4503 +f 4561 4557 4503 +f 4510 4564 4506 +f 4549 4511 4507 +f 4514 4564 4510 +f 4549 4515 4511 +f 4518 4564 4514 +f 4549 4519 4515 +f 4560 4564 4518 +f 4556 4560 4518 +f 4522 4556 4518 +f 4549 4523 4519 +f 4526 4556 4522 +f 4549 4527 4523 +f 4552 4556 4526 +f 4530 4552 4526 +f 4548 4531 4527 +f 4549 4548 4527 +f 4548 4552 4530 +f 4533 4548 4530 +f 4548 4533 4531 +f 4537 4573 4535 +f 4573 4569 4535 +f 4569 4565 4535 +f 4539 4573 4537 +f 4541 4573 4539 +f 4543 4573 4541 +f 4545 4577 4543 +f 4577 4573 4543 +f 4637 4589 4545 +f 4589 4585 4545 +f 4585 4581 4545 +f 4581 4577 4545 +f 4580 4627 4576 +f 4584 4627 4580 +f 4588 4627 4584 +f 4592 4627 4588 +f 4637 4593 4589 +f 4631 4627 4592 +f 4596 4631 4592 +f 4637 4597 4593 +f 4633 4631 4596 +f 4635 4633 4596 +f 4600 4645 4596 +f 4645 4639 4596 +f 4639 4635 4596 +f 4637 4601 4597 +f 4604 4651 4600 +f 4651 4645 4600 +f 4637 4605 4601 +f 4661 4657 4604 +f 4657 4651 4604 +f 4608 4670 4604 +f 4670 4667 4604 +f 4667 4661 4604 +f 4655 4659 4605 +f 4643 4647 4605 +f 4665 4609 4605 +f 4663 4665 4605 +f 4659 4663 4605 +f 4637 4641 4605 +f 4641 4643 4605 +f 4647 4649 4605 +f 4649 4653 4605 +f 4653 4655 4605 +f 4612 4670 4608 +f 4671 4613 4609 +f 4665 4671 4609 +f 4616 4670 4612 +f 4671 4617 4613 +f 4620 4670 4616 +f 4671 4621 4617 +f 4628 4670 4620 +f 4671 4629 4621 +f 4671 4670 4628 +f 4629 4671 4628 +f 4627 5599 4453 +f 5601 5599 4627 +f 5752 5749 4454 +f 4457 5752 4454 +f 5756 5752 4457 +f 4461 5756 4457 +f 5760 5756 4461 +f 4465 5760 4461 +f 5764 5760 4465 +f 4471 5764 4465 +f 5768 5764 4471 +f 4475 5768 4471 +f 5772 5768 4475 +f 4479 5772 4475 +f 5776 5772 4479 +f 4483 5776 4479 +f 5780 5776 4483 +f 4487 5780 4483 +f 5784 5780 4487 +f 4491 5784 4487 +f 5788 5784 4491 +f 4495 5788 4491 +f 5792 5788 4495 +f 4499 5792 4495 +f 5796 5792 4499 +f 4505 5796 4499 +f 5800 5796 4505 +f 4509 5800 4505 +f 5804 5800 4509 +f 4513 5804 4509 +f 5808 5804 4513 +f 4517 5808 4513 +f 5812 5808 4517 +f 4521 5812 4517 +f 5816 5812 4521 +f 4525 5816 4521 +f 5820 5816 4525 +f 4529 5820 4525 +f 5823 5820 4529 +f 4532 5823 4529 +f 4426 4461 4424 +f 4461 4457 4424 +f 4457 4428 4424 +f 4430 4461 4426 +f 4457 4432 4428 +f 4434 4465 4430 +f 4465 4461 4430 +f 4457 4436 4432 +f 4438 4465 4434 +f 4456 4450 4436 +f 4454 4456 4436 +f 4457 4454 4436 +f 4440 4465 4438 +f 4442 4471 4440 +f 4471 4465 4440 +f 4444 4471 4442 +f 4446 4471 4444 +f 4448 4475 4446 +f 4475 4471 4446 +f 4452 4479 4448 +f 4479 4475 4448 +f 4460 4464 4450 +f 4456 4460 4450 +f 4464 4470 4450 +f 4470 4474 4450 +f 4474 4468 4450 +f 4579 4575 4452 +f 4624 4579 4452 +f 4491 4487 4452 +f 4495 4491 4452 +f 4575 4571 4452 +f 4571 4567 4452 +f 4567 4563 4452 +f 4487 4483 4452 +f 4483 4479 4452 +f 4563 4505 4452 +f 4505 4499 4452 +f 4499 4495 4452 +f 4474 4478 4468 +f 4478 4482 4468 +f 4482 4486 4468 +f 4486 4502 4468 +f 4490 4502 4486 +f 4494 4502 4490 +f 4498 4502 4494 +f 4546 4502 4498 +f 4504 4546 4498 +f 4546 4550 4502 +f 4550 4554 4502 +f 4554 4558 4502 +f 4558 4534 4502 +f 4508 4546 4504 +f 4563 4509 4505 +f 4512 4546 4508 +f 4563 4513 4509 +f 4516 4546 4512 +f 4563 4517 4513 +f 4520 4546 4516 +f 4563 4521 4517 +f 4547 4546 4520 +f 4524 4547 4520 +f 4563 4525 4521 +f 4528 4547 4524 +f 4563 4529 4525 +f 4532 4547 4528 +f 4555 4551 4529 +f 4551 4532 4529 +f 4563 4559 4529 +f 4559 4555 4529 +f 4551 4547 4532 +f 4558 4562 4534 +f 4562 4566 4534 +f 4566 4536 4534 +f 4566 4570 4536 +f 4570 4538 4536 +f 4570 4540 4538 +f 4570 4542 4540 +f 4570 4544 4542 +f 4574 4578 4544 +f 4578 4582 4544 +f 4582 4636 4544 +f 4570 4574 4544 +f 4624 4583 4579 +f 4586 4636 4582 +f 4624 4587 4583 +f 4590 4636 4586 +f 4624 4591 4587 +f 4594 4636 4590 +f 4630 4595 4591 +f 4624 4630 4591 +f 4598 4636 4594 +f 4630 4632 4595 +f 4632 4634 4595 +f 4634 4638 4595 +f 4638 4599 4595 +f 4640 4636 4598 +f 4602 4640 4598 +f 4638 4644 4599 +f 4644 4650 4599 +f 4650 4603 4599 +f 4648 4646 4602 +f 4652 4648 4602 +f 4642 4640 4602 +f 4646 4642 4602 +f 4662 4658 4602 +f 4658 4654 4602 +f 4654 4652 4602 +f 4606 4668 4602 +f 4668 4664 4602 +f 4664 4662 4602 +f 4666 4607 4603 +f 4660 4666 4603 +f 4650 4656 4603 +f 4656 4660 4603 +f 4610 4668 4606 +f 4669 4611 4607 +f 4666 4669 4607 +f 4614 4668 4610 +f 4669 4615 4611 +f 4618 4668 4614 +f 4669 4619 4615 +f 4622 4668 4618 +f 4669 4623 4619 +f 4669 4668 4622 +f 4623 4669 4622 +f 5923 5903 5901 +f 5905 5923 5901 +f 5945 5941 5902 +f 5904 5945 5902 +f 5941 5906 5902 +f 5923 5907 5903 +f 5908 5945 5904 +f 5909 5923 5905 +f 5941 5910 5906 +f 5923 5911 5907 +f 5951 5945 5908 +f 5912 5951 5908 +f 5913 5939 5909 +f 5925 5923 5909 +f 5939 5925 5909 +f 5941 5914 5910 +f 5923 5921 5911 +f 5921 5919 5911 +f 5919 5917 5911 +f 5917 5915 5911 +f 5916 5951 5912 +f 5927 5943 5913 +f 5943 5939 5913 +f 5941 5936 5914 +f 5936 5942 5914 +f 5942 5928 5914 +f 5918 5951 5916 +f 5920 5957 5918 +f 5957 5951 5918 +f 5922 5957 5920 +f 5924 5957 5922 +f 5963 5957 5924 +f 5926 5963 5924 +f 5939 5929 5925 +f 5971 5963 5926 +f 5932 5971 5926 +f 5961 5955 5927 +f 5933 5961 5927 +f 5955 5949 5927 +f 5949 5943 5927 +f 5942 5946 5928 +f 5946 5952 5928 +f 5952 5958 5928 +f 5958 5934 5928 +f 5940 5944 5929 +f 5944 5950 5929 +f 5950 5956 5929 +f 5956 5962 5929 +f 5962 5970 5929 +f 5970 5930 5929 +f 5939 5935 5929 +f 5935 5940 5929 +f 5978 5931 5930 +f 5974 5978 5930 +f 5970 5974 5930 +f 5975 5932 5931 +f 5979 5975 5931 +f 5978 5982 5931 +f 5983 5979 5931 +f 5982 5983 5931 +f 5975 5971 5932 +f 5937 5961 5933 +f 5958 5964 5934 +f 5964 5938 5934 +f 5947 5969 5937 +f 5969 5961 5937 +f 5964 5972 5938 +f 5972 5948 5938 +f 5953 5969 5947 +f 5972 5954 5948 +f 5959 5969 5953 +f 5972 5960 5954 +f 5965 5973 5959 +f 5973 5969 5959 +f 5972 5976 5960 +f 5976 5966 5960 +f 5967 5977 5965 +f 5977 5973 5965 +f 5976 5968 5966 +f 5989 5985 5967 +f 6024 5989 5967 +f 5985 5981 5967 +f 5981 5977 5967 +f 5976 5980 5968 +f 5980 5984 5968 +f 5984 5988 5968 +f 5988 6025 5968 +f 5987 5983 5982 +f 5986 5987 5982 +f 5991 5987 5986 +f 5990 5991 5986 +f 5992 6025 5988 +f 6024 5993 5989 +f 5994 5991 5990 +f 6024 5995 5991 +f 5994 5998 5991 +f 5998 6002 5991 +f 6002 6006 5991 +f 6006 6010 5991 +f 6010 6014 5991 +f 6014 6024 5991 +f 5996 6025 5992 +f 6024 5997 5993 +f 6024 5999 5995 +f 6000 6025 5996 +f 6024 6001 5997 +f 6024 6003 5999 +f 6004 6025 6000 +f 6024 6005 6001 +f 6024 6007 6003 +f 6008 6025 6004 +f 6024 6009 6005 +f 6024 6011 6007 +f 6012 6025 6008 +f 6024 6013 6009 +f 6024 6015 6011 +f 6016 6025 6012 +f 6024 6017 6013 +f 6018 6024 6014 +f 6024 6019 6015 +f 6020 6025 6016 +f 6024 6021 6017 +f 6021 6024 6018 +f 6025 6022 6019 +f 6024 6025 6019 +f 6022 6025 6020 +f 6027 6047 6023 +f 6047 6024 6023 +f 6046 6025 6024 +f 6047 6048 6024 +f 6048 6046 6024 +f 6046 6026 6025 +f 6044 6042 6026 +f 6042 6040 6026 +f 6040 6038 6026 +f 6038 6028 6026 +f 6046 6044 6026 +f 6029 6049 6027 +f 6049 6047 6027 +f 6038 6030 6028 +f 6031 6049 6029 +f 6038 6032 6030 +f 6033 6051 6031 +f 6051 6049 6031 +f 6038 6034 6032 +f 6035 6051 6033 +f 6038 6036 6034 +f 6037 6051 6035 +f 6053 6051 6037 +f 6039 6053 6037 +f 6041 6053 6039 +f 6043 6055 6041 +f 6055 6053 6041 +f 6045 6057 6043 +f 6057 6055 6043 +f 6067 6065 6045 +f 6065 6063 6045 +f 6063 6061 6045 +f 6061 6059 6045 +f 6059 6057 6045 +f 6066 6068 6046 +f 6058 6060 6046 +f 6060 6062 6046 +f 6062 6064 6046 +f 6064 6066 6046 +f 6052 6054 6046 +f 6054 6056 6046 +f 6056 6058 6046 +f 6048 6050 6046 +f 6050 6052 6046 +f 5600 4624 4452 +f 5598 5600 4452 +f 4669 6111 4668 +f 5675 6111 4669 +f 4671 5676 4670 +f 6112 5676 4671 +f 5676 6300 5675 +f 6300 6299 5675 +f 6299 6295 5675 +f 6175 6151 5675 +f 6151 6115 5675 +f 6115 6111 5675 +f 6295 6291 5675 +f 6291 6267 5675 +f 6267 6243 5675 +f 6243 6227 5675 +f 6227 6199 5675 +f 6199 6175 5675 +f 6268 6292 5676 +f 6292 6296 5676 +f 6296 6300 5676 +f 6112 6116 5676 +f 6116 6152 5676 +f 6152 6176 5676 +f 6176 6200 5676 +f 6200 6228 5676 +f 6228 6244 5676 +f 6244 6268 5676 +f 5593 5595 5592 +f 5596 5595 5593 +f 5595 5598 5594 +f 5607 5609 5595 +f 5605 5607 5595 +f 5609 5602 5595 +f 5602 5600 5595 +f 5600 5598 5595 +f 5596 5601 5595 +f 5601 5603 5595 +f 5603 5605 5595 +f 5597 5599 5596 +f 5599 5601 5596 +f 5609 5604 5602 +f 5609 5606 5604 +f 5609 5608 5606 +f 5932 5597 5596 +f 5746 5932 5596 +f 5834 5932 5746 +f 5843 5932 5834 +f 5847 5932 5843 +f 5852 5932 5847 +f 5856 5932 5852 +f 5862 5932 5856 +f 5866 5932 5862 +f 5874 5932 5866 +f 5875 5932 5874 +f 5884 5932 5875 +f 5888 5932 5884 +f 5890 5932 5888 +f 5897 5932 5890 +f 5898 5932 5897 +f 5900 5932 5898 +f 5931 5932 5900 +f 4673 4403 4402 +f 4672 4673 4402 +f 4884 4818 4420 +f 4882 4884 4420 +f 4625 4882 4420 +f 5058 5056 4625 +f 4888 4882 4625 +f 5056 4888 4625 +f 4884 5257 4818 +f 5128 4896 4888 +f 5098 5128 4888 +f 5056 5098 4888 +f 5128 5164 4896 +f 5164 5210 4896 +f 5210 4911 4896 +f 5210 5251 4911 +f 5251 4942 4911 +f 5251 4972 4942 +f 5251 5010 4972 +f 5251 5106 5010 +f 5251 5269 5106 +f 5269 5148 5106 +f 5269 5186 5148 +f 5269 5237 5186 +f 5402 5478 5237 +f 5279 5402 5237 +f 5269 5279 5237 +f 5444 5478 5402 +f 5480 5482 5444 +f 5482 5478 5444 +f 5504 5508 5480 +f 5508 5482 5480 +f 5514 5534 5504 +f 5534 5508 5504 +f 5532 5562 5514 +f 5562 5534 5514 +f 5544 5633 5532 +f 5633 5562 5532 +f 5560 5677 5544 +f 5677 5633 5544 +f 5566 5693 5560 +f 5693 5677 5560 +f 5576 5711 5566 +f 5711 5693 5566 +f 5590 5733 5576 +f 5733 5711 5576 +f 5592 5743 5590 +f 5743 5733 5590 +f 5595 5745 5592 +f 5745 5743 5592 +f 4852 5258 4423 +f 5258 4885 4423 +f 4885 4883 4423 +f 4883 4626 4423 +f 5057 5059 4626 +f 4883 4889 4626 +f 4889 5057 4626 +f 5129 5099 4889 +f 4897 5129 4889 +f 5099 5057 4889 +f 5165 5129 4897 +f 5211 5165 4897 +f 4912 5211 4897 +f 5252 5211 4912 +f 4943 5252 4912 +f 4973 5252 4943 +f 5011 5252 4973 +f 5107 5270 5011 +f 5270 5252 5011 +f 5149 5270 5107 +f 5187 5270 5149 +f 5238 5280 5187 +f 5280 5270 5187 +f 5479 5445 5238 +f 5445 5403 5238 +f 5403 5280 5238 +f 5479 5481 5445 +f 5483 5481 5479 +f 5483 5505 5481 +f 5509 5505 5483 +f 5509 5515 5505 +f 5535 5515 5509 +f 5535 5533 5515 +f 5563 5545 5533 +f 5535 5563 5533 +f 5634 5561 5545 +f 5563 5634 5545 +f 5678 5567 5561 +f 5634 5678 5561 +f 5694 5577 5567 +f 5678 5694 5567 +f 5712 5591 5577 +f 5694 5712 5577 +f 5734 5593 5591 +f 5712 5734 5591 +f 5744 5596 5593 +f 5734 5744 5593 +f 5744 5746 5596 +f 3152 5079 3151 +f 5079 5078 3151 +f 5078 5057 5056 +f 5058 5078 5056 +f 5078 5079 5057 +f 5079 5059 5057 +f 5060 5078 5058 +f 5079 5061 5059 +f 5076 5078 5060 +f 5062 5076 5060 +f 5077 5063 5061 +f 5079 5077 5061 +f 5064 5076 5062 +f 5077 5065 5063 +f 5066 5076 5064 +f 5077 5067 5065 +f 5074 5076 5066 +f 5068 5074 5066 +f 5077 5069 5067 +f 5072 5074 5068 +f 5070 5072 5068 +f 5073 5071 5069 +f 5075 5073 5069 +f 5077 5075 5069 +f 5057 5098 5056 +f 5099 5098 5057 +f 5099 5128 5098 +f 5129 5128 5099 +f 5129 5164 5128 +f 5165 5164 5129 +f 5165 5210 5164 +f 5211 5210 5165 +f 5211 5251 5210 +f 5252 5251 5211 +f 5252 5269 5251 +f 5270 5269 5252 +f 5270 5279 5269 +f 5280 5279 5270 +f 5280 5402 5279 +f 5403 5402 5280 +f 5403 5444 5402 +f 5445 5444 5403 +f 5445 5480 5444 +f 5481 5480 5445 +f 5481 5504 5480 +f 5505 5504 5481 +f 5505 5514 5504 +f 5515 5514 5505 +f 5515 5532 5514 +f 5533 5532 5515 +f 5533 5544 5532 +f 5545 5544 5533 +f 5545 5560 5544 +f 5561 5560 5545 +f 5561 5566 5560 +f 5567 5566 5561 +f 5567 5576 5566 +f 5577 5576 5567 +f 5577 5590 5576 +f 5591 5590 5577 +f 5591 5592 5590 +f 5593 5592 5591 +f 5745 5595 5594 +f 5929 5745 5594 +f 5929 5831 5745 +f 5929 5844 5831 +f 5929 5853 5844 +f 5929 5861 5853 +f 5929 5863 5861 +f 5929 5873 5863 +f 5929 5880 5873 +f 5929 5881 5880 +f 5929 5887 5881 +f 5929 5889 5887 +f 5929 5895 5889 +f 5929 5896 5895 +f 5929 5899 5896 +f 5929 5930 5899 +f 5502 5503 5446 +f 5503 5447 5446 +f 5506 5507 5502 +f 5507 5503 5502 +f 5530 5531 5506 +f 5531 5507 5506 +f 5538 5539 5530 +f 5539 5531 5530 +f 5558 5559 5538 +f 5559 5539 5538 +f 5574 5575 5558 +f 5575 5559 5558 +f 5588 5589 5574 +f 5589 5575 5574 +f 5662 5663 5588 +f 5663 5589 5588 +f 5673 5674 5662 +f 5674 5663 5662 +f 5699 5700 5673 +f 5700 5674 5673 +f 5701 5702 5699 +f 5702 5700 5699 +f 5727 5728 5701 +f 5728 5702 5701 +f 5729 5730 5727 +f 5730 5728 5727 +f 5837 5838 5729 +f 5838 5730 5729 +f 5845 5846 5837 +f 5846 5838 5837 +f 5869 5870 5845 +f 5870 5846 5845 +f 5876 5877 5869 +f 5877 5870 5869 +f 5893 5894 5876 +f 5894 5877 5876 +f 5930 5931 5893 +f 5931 5894 5893 +f 5055 5053 5052 +f 5054 5055 5052 +f 3066 3070 3065 +f 3070 3069 3065 +f 3069 3067 3065 +f 3068 3072 3066 +f 3072 3070 3066 +f 3073 3075 3067 +f 3075 3077 3067 +f 3077 3079 3067 +f 3079 3081 3067 +f 3081 3083 3067 +f 3083 3085 3067 +f 3085 3087 3067 +f 3087 3089 3067 +f 3089 3124 3067 +f 3124 3139 3067 +f 3069 3071 3067 +f 3071 3073 3067 +f 3127 3125 3068 +f 3142 3127 3068 +f 3084 3082 3068 +f 3086 3084 3068 +f 3082 3080 3068 +f 3080 3078 3068 +f 3078 3076 3068 +f 3125 3090 3068 +f 3090 3088 3068 +f 3088 3086 3068 +f 3076 3074 3068 +f 3074 3072 3068 +f 3122 3124 3089 +f 3091 3122 3089 +f 3125 3123 3090 +f 3123 3121 3090 +f 3121 3092 3090 +f 3120 3122 3091 +f 3118 3120 3091 +f 3093 3118 3091 +f 3117 3094 3092 +f 3121 3119 3092 +f 3119 3117 3092 +f 3116 3118 3093 +f 3095 3116 3093 +f 3117 3115 3094 +f 3115 3096 3094 +f 3097 3116 3095 +f 3115 3098 3096 +f 3099 3116 3097 +f 3115 3100 3098 +f 3101 3116 3099 +f 3115 3102 3100 +f 3114 3116 3101 +f 3103 3114 3101 +f 3115 3104 3102 +f 3105 3114 3103 +f 3113 3106 3104 +f 3115 3113 3104 +f 3112 3114 3105 +f 3107 3112 3105 +f 3113 3108 3106 +f 3108 3110 3107 +f 3110 3109 3107 +f 3109 3112 3107 +f 3113 3111 3108 +f 3111 3110 3108 +f 3126 3139 3124 +f 3128 3139 3126 +f 3142 3129 3127 +f 3130 3139 3128 +f 3142 3131 3129 +f 3132 3139 3130 +f 3142 3133 3131 +f 3134 3139 3132 +f 3142 3135 3133 +f 3136 3139 3134 +f 3142 3137 3135 +f 3138 3139 3136 +f 3142 3141 3137 +f 3140 3139 3138 +f 5420 5405 5404 +f 5424 5420 5404 +f 5408 5424 5404 +f 5420 5421 5405 +f 5410 5424 5408 +f 5412 5424 5410 +f 5414 5424 5412 +f 5416 5426 5414 +f 5426 5424 5414 +f 5418 5428 5416 +f 5428 5426 5416 +f 5440 5438 5418 +f 5442 5440 5418 +f 5438 5436 5418 +f 5436 5434 5418 +f 5434 5432 5418 +f 5432 5430 5418 +f 5430 5428 5418 +f 4450 5913 4436 +f 5246 5214 4450 +f 4468 5246 4450 +f 5214 5927 4450 +f 5927 5913 4450 +f 4502 5274 4468 +f 5274 5263 4468 +f 5263 5246 4468 +f 4534 5404 4502 +f 5404 5320 4502 +f 5320 5274 4502 +f 5408 5404 4534 +f 5933 5927 5214 +f 5749 4456 4454 +f 5751 4460 4456 +f 5749 5751 4456 +f 5755 4464 4460 +f 5751 5755 4460 +f 5759 4470 4464 +f 5755 5759 4464 +f 5763 4474 4470 +f 5759 5763 4470 +f 5767 4478 4474 +f 5763 5767 4474 +f 5771 4482 4478 +f 5767 5771 4478 +f 5775 4486 4482 +f 5771 5775 4482 +f 5779 4490 4486 +f 5775 5779 4486 +f 5783 4494 4490 +f 5779 5783 4490 +f 5787 4498 4494 +f 5783 5787 4494 +f 5791 4504 4498 +f 5787 5791 4498 +f 5795 4508 4504 +f 5791 5795 4504 +f 5799 4512 4508 +f 5795 5799 4508 +f 5803 4516 4512 +f 5799 5803 4512 +f 5807 4520 4516 +f 5803 5807 4516 +f 5811 4524 4520 +f 5807 5811 4520 +f 5815 4528 4524 +f 5811 5815 4524 +f 5819 4532 4528 +f 5815 5819 4528 +f 5819 5823 4532 +f 5750 4458 4455 +f 5753 4462 4458 +f 5750 5753 4458 +f 5757 4466 4462 +f 5753 5757 4462 +f 5761 4472 4466 +f 5757 5761 4466 +f 5765 4476 4472 +f 5761 5765 4472 +f 5769 4480 4476 +f 5765 5769 4476 +f 5773 4484 4480 +f 5769 5773 4480 +f 5777 4488 4484 +f 5773 5777 4484 +f 5781 4492 4488 +f 5777 5781 4488 +f 5785 4496 4492 +f 5781 5785 4492 +f 5789 4500 4496 +f 5785 5789 4496 +f 5793 4506 4500 +f 5789 5793 4500 +f 5797 4510 4506 +f 5793 5797 4506 +f 5801 4514 4510 +f 5797 5801 4510 +f 5805 4518 4514 +f 5801 5805 4514 +f 5809 4522 4518 +f 5805 5809 4518 +f 5813 4526 4522 +f 5809 5813 4522 +f 5817 4530 4526 +f 5813 5817 4526 +f 5821 4533 4530 +f 5817 5821 4530 +f 5821 5824 4533 +f 5935 5751 5749 +f 5935 5939 5751 +f 5939 5755 5751 +f 5939 5943 5755 +f 5943 5759 5755 +f 5943 5949 5759 +f 5949 5763 5759 +f 5949 5955 5763 +f 5955 5767 5763 +f 5955 5961 5767 +f 5961 5771 5767 +f 5961 5969 5771 +f 5969 5775 5771 +f 5969 5973 5775 +f 5973 5779 5775 +f 5973 5977 5779 +f 5977 5783 5779 +f 5977 5981 5783 +f 5981 5787 5783 +f 5981 5985 5787 +f 5985 5791 5787 +f 5985 5989 5791 +f 5989 5795 5791 +f 5989 5993 5795 +f 5993 5799 5795 +f 5993 5997 5799 +f 5997 5803 5799 +f 5997 6001 5803 +f 6001 5807 5803 +f 6001 6005 5807 +f 6005 5811 5807 +f 6005 6009 5811 +f 6009 5815 5811 +f 6009 6013 5815 +f 6013 5819 5815 +f 6013 6017 5819 +f 6017 5823 5819 +f 6017 6021 5823 +f 5936 5753 5750 +f 5936 5941 5753 +f 5941 5757 5753 +f 5941 5945 5757 +f 5945 5761 5757 +f 5945 5951 5761 +f 5951 5765 5761 +f 5951 5957 5765 +f 5957 5769 5765 +f 5957 5963 5769 +f 5963 5773 5769 +f 5963 5971 5773 +f 5971 5777 5773 +f 5971 5975 5777 +f 5975 5781 5777 +f 5975 5979 5781 +f 5979 5785 5781 +f 5979 5983 5785 +f 5983 5789 5785 +f 5983 5987 5789 +f 5987 5793 5789 +f 5987 5991 5793 +f 5991 5797 5793 +f 5991 5995 5797 +f 5995 5801 5797 +f 5995 5999 5801 +f 5999 5805 5801 +f 5999 6003 5805 +f 6003 5809 5805 +f 6003 6007 5809 +f 6007 5813 5809 +f 6007 6011 5813 +f 6011 5817 5813 +f 6011 6015 5817 +f 6015 5821 5817 +f 6015 6019 5821 +f 6019 5824 5821 +f 6019 6022 5824 + + +o Object.4 +v -13.499999 -86.275032 0.538066 +v -13.499999 -86.267517 0.367704 +v -13.499999 -86.267517 0.708427 +v -13.724097 -86.264969 0.538066 +v -13.275901 -86.264969 0.538066 +v -13.723424 -86.257477 0.367704 +v -13.276574 -86.257477 0.367704 +v -13.723424 -86.257484 0.708427 +v -13.276574 -86.257484 0.708427 +v -13.499999 -86.245026 0.198666 +v -13.499999 -86.245033 0.877466 +v -13.499999 -86.240723 0.894557 +v -13.721408 -86.235085 0.877466 +v -13.278590 -86.235085 0.877466 +v -13.946391 -86.234856 0.538066 +v -13.053607 -86.234856 0.538066 +v -13.724608 -86.234795 0.198666 +v -13.275390 -86.234795 0.198666 +v -13.499999 -86.234055 0.910872 +v -13.724216 -86.230507 0.894557 +v -13.275782 -86.230507 0.894557 +v -13.945049 -86.227463 0.367704 +v -13.054949 -86.227463 0.367704 +v -13.945049 -86.227463 0.708427 +v -13.054949 -86.227463 0.708427 +v -13.499999 -86.225159 0.926087 +v -13.723610 -86.223869 0.910872 +v -13.276388 -86.223869 0.910872 +v -13.499999 -86.218842 0.101599 +v -13.722801 -86.215004 0.926087 +v -13.277197 -86.215004 0.926087 +v -13.499999 -86.214211 0.939900 +v -13.722227 -86.208717 0.101599 +v -13.277771 -86.208717 0.101599 +v -13.941034 -86.205338 0.877466 +v -13.058964 -86.205338 0.877466 +v -13.947356 -86.204178 0.198666 +v -13.052642 -86.204178 0.198666 +v -13.721806 -86.204102 0.939900 +v -13.278193 -86.204102 0.939900 +v -13.499999 -86.201424 0.952035 +v -13.946576 -86.199944 0.894557 +v -13.053422 -86.199944 0.894557 +v -13.610435 -86.198914 0.952035 +v -13.389563 -86.198914 0.952035 +v -13.945368 -86.193390 0.910872 +v -13.054630 -86.193390 0.910872 +v -13.720643 -86.191376 0.952035 +v -13.279355 -86.191376 0.952035 +v -14.165092 -86.184937 0.538066 +v -12.834907 -86.184937 0.538066 +v -13.943757 -86.184639 0.926087 +v -13.056241 -86.184639 0.926087 +v -13.830393 -86.178825 0.952035 +v -13.169605 -86.178825 0.952035 +v -13.942614 -86.178429 0.101599 +v -13.057384 -86.178429 0.101599 +v -14.163092 -86.177689 0.367704 +v -12.836906 -86.177689 0.367704 +v -14.163092 -86.177696 0.708427 +v -12.836906 -86.177696 0.708427 +v -13.499999 -86.176224 0.010544 +v -13.941773 -86.173866 0.939900 +v -13.058225 -86.173866 0.939900 +v -13.718351 -86.166275 0.010544 +v -13.281647 -86.166275 0.010544 +v -13.939459 -86.161301 0.952035 +v -13.060539 -86.161301 0.952035 +v -14.157110 -86.156021 0.877466 +v -12.842888 -86.156021 0.877466 +v -14.166397 -86.153435 0.198666 +v -12.833601 -86.153435 0.198666 +v -14.165235 -86.149292 0.894557 +v -12.834764 -86.149292 0.894557 +v -14.163436 -86.142868 0.910872 +v -12.836562 -86.142868 0.910872 +v -14.047613 -86.138824 0.952035 +v -12.952385 -86.138824 0.952035 +v -13.934895 -86.136513 0.010544 +v -13.065104 -86.136513 0.010544 +v -14.161036 -86.134300 0.926087 +v -12.838963 -86.134300 0.926087 +v -14.159333 -86.128220 0.101599 +v -12.840665 -86.128220 0.101599 +v -14.158081 -86.123756 0.939900 +v -12.841917 -86.123756 0.939900 +v -13.499999 -86.118454 -0.071739 +v -14.378436 -86.115616 0.538066 +v -12.621562 -86.115616 0.538066 +v -14.154633 -86.111450 0.952035 +v -12.845366 -86.111450 0.952035 +v -13.713099 -86.108749 -0.071739 +v -13.286900 -86.108749 -0.071739 +v -14.375795 -86.108582 0.367704 +v -12.624203 -86.108582 0.367704 +v -14.375795 -86.108582 0.708427 +v -12.624203 -86.108582 0.708427 +v -14.367895 -86.087532 0.877466 +v -12.632103 -86.087532 0.877466 +v -14.147834 -86.087181 0.010544 +v -12.852164 -86.087181 0.010544 +v -14.379916 -86.082985 0.198666 +v -12.620082 -86.082985 0.198666 +v -13.924432 -86.079704 -0.071739 +v -13.075566 -86.079704 -0.071739 +v -14.260296 -86.079231 0.952035 +v -12.739702 -86.079231 0.952035 +v -14.378382 -86.078957 0.894557 +v -12.621616 -86.078957 0.894557 +v -14.376006 -86.072731 0.910872 +v -12.623992 -86.072731 0.910872 +v -14.372836 -86.064415 0.926087 +v -12.627162 -86.064415 0.926087 +v -14.370588 -86.058517 0.101599 +v -12.629410 -86.058517 0.101599 +v -14.368937 -86.054184 0.939900 +v -12.631062 -86.054184 0.939900 +v -13.499999 -86.047295 -0.142757 +v -14.364383 -86.042244 0.952035 +v -12.635615 -86.042244 0.952035 +v -13.706627 -86.037880 -0.142757 +v -13.293371 -86.037880 -0.142757 +v -14.132249 -86.031555 -0.071739 +v -12.867749 -86.031555 -0.071739 +v -14.584708 -86.027451 0.538066 +v -12.415290 -86.027451 0.538066 +v -14.581448 -86.020683 0.367704 +v -12.418550 -86.020683 0.367704 +v -14.581448 -86.020683 0.708427 +v -12.418550 -86.020683 0.708427 +v -14.355405 -86.018692 0.010544 +v -12.644593 -86.018692 0.010544 +v -13.911544 -86.009720 -0.142756 +v -13.088454 -86.009720 -0.142756 +v -14.466678 -86.000549 0.952036 +v -12.533320 -86.000549 0.952036 +v -14.571692 -86.000427 0.877467 +v -12.428307 -86.000427 0.877467 +v -13.601152 -85.995163 1.108758 +v -13.398846 -85.995163 1.108758 +v -14.586144 -85.993401 0.198666 +v -12.413854 -85.993401 0.198666 +v -14.584250 -85.989540 0.894558 +v -12.415748 -85.989540 0.894558 +v -14.581317 -85.983551 0.910873 +v -12.418681 -85.983551 0.910873 +v -13.802621 -85.976768 1.108758 +v -13.197377 -85.976768 1.108758 +v -14.577405 -85.975555 0.926088 +v -12.422593 -85.975555 0.926088 +v -14.574630 -85.969887 0.101599 +v -12.425368 -85.969887 0.101599 +v -14.572591 -85.965721 0.939901 +v -12.427407 -85.965721 0.939901 +v -13.499999 -85.964897 -0.200356 +v -14.334826 -85.964714 -0.071738 +v -12.665172 -85.964714 -0.071738 +v -14.113050 -85.963036 -0.142756 +v -12.886949 -85.963036 -0.142756 +v -13.699135 -85.955826 -0.200356 +v -13.300863 -85.955826 -0.200356 +v -14.566970 -85.954247 0.952036 +v -12.433028 -85.954247 0.952036 +v -14.001581 -85.940125 1.108758 +v -12.998417 -85.940125 1.108758 +v -14.555888 -85.931610 0.010545 +v -12.444110 -85.931610 0.010545 +v -13.896620 -85.928680 -0.200356 +v -13.103378 -85.928680 -0.200356 +v -14.782248 -85.921150 0.538067 +v -12.217751 -85.921150 0.538067 +v -14.778393 -85.914703 0.367705 +v -12.221605 -85.914703 0.367705 +v -14.778393 -85.914703 0.708428 +v -12.221605 -85.914703 0.708428 +v -14.665051 -85.903419 0.952036 +v -12.334948 -85.903419 0.952036 +v -14.309476 -85.898224 -0.142756 +v -12.690522 -85.898224 -0.142756 +v -14.766860 -85.895401 0.877467 +v -12.233138 -85.895401 0.877467 +v -14.196386 -85.885544 1.108758 +v -12.803612 -85.885544 1.108758 +v -14.783371 -85.885445 0.198667 +v -12.216627 -85.885445 0.198667 +v -14.090818 -85.883690 -0.200356 +v -12.909180 -85.883690 -0.200356 +v -14.781133 -85.881767 0.894558 +v -12.218865 -85.881767 0.894558 +v -14.530486 -85.879730 -0.071738 +v -12.469512 -85.879730 -0.071738 +v -14.777668 -85.876068 0.910873 +v -12.222330 -85.876068 0.910873 +v -13.499999 -85.873756 -0.242794 +v -14.773046 -85.868469 0.926088 +v -12.226952 -85.868469 0.926088 +v -13.690846 -85.865059 -0.242794 +v -13.309152 -85.865059 -0.242794 +v -14.769767 -85.863075 0.101600 +v -12.230231 -85.863075 0.101600 +v -14.767357 -85.859108 0.939901 +v -12.232641 -85.859108 0.939901 +v -14.760715 -85.848190 0.952036 +v -12.239283 -85.848190 0.952036 +v -13.880113 -85.839043 -0.242794 +v -13.119885 -85.839043 -0.242794 +v -14.747622 -85.826660 0.010545 +v -12.252377 -85.826660 0.010545 +v -14.280121 -85.821228 -0.200356 +v -12.719877 -85.821228 -0.200356 +v -14.499194 -85.815819 -0.142756 +v -12.500804 -85.815819 -0.142756 +v -14.385420 -85.813477 1.108758 +v -12.614578 -85.813477 1.108758 +v -14.969462 -85.797569 0.538067 +v -12.030536 -85.797569 0.538067 +v -14.066229 -85.795929 -0.242794 +v -12.933769 -85.795929 -0.242794 +v -14.965045 -85.791489 0.367705 +v -12.034953 -85.791489 0.367705 +v -14.965045 -85.791496 0.708428 +v -12.034953 -85.791496 0.708428 +v -14.853768 -85.788658 0.952036 +v -12.146230 -85.788658 0.952036 +v -13.591410 -85.781334 1.251387 +v -13.408588 -85.781334 1.251387 +v -14.717607 -85.777298 -0.071738 +v -12.282391 -85.777298 -0.071738 +v -13.499999 -85.776634 -0.268782 +v -14.951829 -85.773300 0.877467 +v -12.048169 -85.773300 0.877467 +v -13.682015 -85.768341 -0.268782 +v -13.317983 -85.768341 -0.268782 +v -13.773474 -85.764709 1.251387 +v -13.226524 -85.764709 1.251387 +v -14.969965 -85.759995 0.198667 +v -12.030033 -85.759995 0.198667 +v -14.967402 -85.756538 0.894558 +v -12.032597 -85.756538 0.894558 +v -14.963433 -85.751175 0.910873 +v -12.036565 -85.751175 0.910873 +v -14.958138 -85.744026 0.926088 +v -12.041861 -85.744026 0.926088 +v -13.862523 -85.743530 -0.268782 +v -13.137475 -85.743530 -0.268782 +v -14.462960 -85.741806 -0.200356 +v -12.537038 -85.741806 -0.200356 +v -14.954382 -85.738953 0.101600 +v -12.045616 -85.738953 0.101600 +v -14.247653 -85.736069 -0.242794 +v -12.752345 -85.736069 -0.242794 +v -14.951622 -85.735229 0.939901 +v -12.048376 -85.735229 0.939901 +v -13.953272 -85.731598 1.251387 +v -13.046726 -85.731598 1.251387 +v -14.944016 -85.724960 0.952036 +v -12.055983 -85.724960 0.952036 +v -14.567117 -85.724510 1.108758 +v -12.432881 -85.724510 1.108758 +v -14.680634 -85.716499 -0.142756 +v -12.319365 -85.716499 -0.142756 +v -14.929017 -85.704704 0.010545 +v -12.070981 -85.704704 0.010545 +v -14.040027 -85.702408 -0.268782 +v -12.959971 -85.702408 -0.268782 +v -14.129314 -85.682274 1.251387 +v -12.870684 -85.682274 1.251387 +v -13.499999 -85.676483 -0.277533 +v -13.672908 -85.668602 -0.277533 +v -13.327090 -85.668602 -0.277533 +v -14.422882 -85.659950 -0.242794 +v -12.577116 -85.659950 -0.242794 +v -14.894638 -85.658279 -0.071738 +v -12.105360 -85.658279 -0.071738 +v -15.144846 -85.657707 0.538067 +v -11.855152 -85.657707 0.538067 +v -15.031268 -85.657211 0.952036 +v -11.968730 -85.657211 0.952036 +v -15.139902 -85.652046 0.367705 +v -11.860096 -85.652046 0.367705 +v -15.139902 -85.652054 0.708428 +v -11.860096 -85.652054 0.708428 +v -14.637819 -85.646095 -0.200356 +v -12.362179 -85.646095 -0.200356 +v -14.213056 -85.645317 -0.268782 +v -12.786942 -85.645317 -0.268782 +v -13.844383 -85.645035 -0.277533 +v -13.155615 -85.645035 -0.277533 +v -15.125108 -85.635117 0.877467 +v -11.874890 -85.635117 0.877467 +v -14.739972 -85.619400 1.108758 +v -12.260026 -85.619400 1.108758 +v -15.144377 -85.618103 0.198667 +v -11.855621 -85.618103 0.198667 +v -14.300141 -85.617142 1.251387 +v -12.699857 -85.617142 1.251387 +v -15.141509 -85.614891 0.894559 +v -11.858489 -85.614891 0.894559 +v -15.137070 -85.609917 0.910874 +v -11.862928 -85.609917 0.910874 +v -14.013005 -85.605972 -0.277533 +v -12.986993 -85.605972 -0.277533 +v -15.131147 -85.603279 0.926089 +v -11.868851 -85.603279 0.926089 +v -14.852288 -85.601097 -0.142756 +v -12.147710 -85.601097 -0.142756 +v -15.126946 -85.598564 0.101600 +v -11.873052 -85.598564 0.101600 +v -15.123858 -85.595108 0.939902 +v -11.876140 -85.595108 0.939902 +v -15.115348 -85.585564 0.952037 +v -11.884650 -85.585564 0.952037 +v -14.380176 -85.572731 -0.268782 +v -12.619823 -85.572731 -0.268782 +v -14.590464 -85.568222 -0.242794 +v -12.409534 -85.568222 -0.242794 +v -15.098571 -85.566765 0.010545 +v -11.901427 -85.566765 0.010545 +v -13.581252 -85.558395 1.379279 +v -13.418746 -85.558395 1.379279 +v -14.177377 -85.551735 -0.277533 +v -12.822621 -85.551735 -0.277533 +v -13.743086 -85.543617 1.379279 +v -13.256912 -85.543617 1.379279 +v -14.464338 -85.536751 1.251388 +v -12.535660 -85.536751 1.251388 +v -14.803250 -85.534874 -0.200356 +v -12.196748 -85.534874 -0.200356 +v -15.060114 -85.523659 -0.071738 +v -11.939884 -85.523659 -0.071738 +v -13.902905 -85.514183 1.379279 +v -13.097094 -85.514183 1.379279 +v -15.196080 -85.510170 0.952037 +v -11.803918 -85.510170 0.952037 +v -15.306986 -85.502686 0.538068 +v -11.693012 -85.502686 0.538068 +v -14.902552 -85.499001 1.108759 +v -12.097446 -85.499001 1.108759 +v -15.301555 -85.497490 0.367706 +v -11.698443 -85.497490 0.367706 +v -15.301555 -85.497490 0.708429 +v -11.698443 -85.497490 0.708429 +v -14.540003 -85.485245 -0.268781 +v -12.459995 -85.485245 -0.268781 +v -14.336134 -85.482780 -0.277532 +v -12.663864 -85.482780 -0.277532 +v -15.285302 -85.481956 0.877468 +v -11.714696 -85.481956 0.877468 +v -15.012739 -85.470558 -0.142755 +v -11.987259 -85.470558 -0.142755 +v -14.059384 -85.470337 1.379279 +v -12.940614 -85.470337 1.379279 +v -14.749010 -85.461632 -0.242793 +v -12.250988 -85.461632 -0.242793 +v -15.305164 -85.460938 0.198668 +v -11.694834 -85.460938 0.198668 +v -15.302016 -85.457993 0.894559 +v -11.697982 -85.457993 0.894559 +v -15.297142 -85.453445 0.910874 +v -11.702856 -85.453445 0.910874 +v -15.290640 -85.447372 0.926089 +v -11.709358 -85.447372 0.926089 +v -15.286028 -85.443062 0.101601 +v -11.713970 -85.443062 0.101601 +v -14.620545 -85.441757 1.251388 +v -12.379453 -85.441757 1.251388 +v -15.282639 -85.439896 0.939902 +v -11.717360 -85.439896 0.939902 +v -15.273297 -85.431175 0.952037 +v -11.726701 -85.431175 0.952037 +v -15.254879 -85.413971 0.010546 +v -11.745119 -85.413971 0.010546 +v -14.211229 -85.412445 1.379279 +v -12.788769 -85.412445 1.379279 +v -14.957882 -85.409073 -0.200355 +v -12.042116 -85.409073 -0.200355 +v -14.487964 -85.399666 -0.277532 +v -12.512034 -85.399666 -0.277532 +v -14.691212 -85.383583 -0.268781 +v -12.308786 -85.383583 -0.268781 +v -15.212661 -85.374542 -0.071737 +v -11.787337 -85.374542 -0.071737 +v -15.053509 -85.364319 1.108759 +v -11.946489 -85.364319 1.108759 +v -15.346838 -85.348747 0.952037 +v -11.653160 -85.348747 0.952037 +v -14.897206 -85.341064 -0.242793 +v -12.102792 -85.341064 -0.242793 +v -14.357182 -85.340988 1.379279 +v -12.642817 -85.340988 1.379279 +v -15.454578 -85.333755 0.538068 +v -11.545420 -85.333755 0.538068 +v -14.767466 -85.332954 1.251388 +v -12.232533 -85.332954 1.251388 +v -15.448703 -85.329071 0.367706 +v -11.551295 -85.329071 0.367706 +v -15.448703 -85.329071 0.708429 +v -11.551295 -85.329071 0.708429 +v -13.570725 -85.327354 1.491848 +v -13.429273 -85.327354 1.491848 +v -15.160654 -85.325974 -0.142755 +v -11.839344 -85.325974 -0.142755 +v -15.431123 -85.315048 0.877468 +v -11.568875 -85.315048 0.877468 +v -13.711593 -85.314491 1.491848 +v -13.288405 -85.314491 1.491848 +v -14.631607 -85.303093 -0.277532 +v -12.368391 -85.303093 -0.277532 +v -15.450992 -85.289795 0.198668 +v -11.549006 -85.289795 0.198668 +v -13.850707 -85.288872 1.491848 +v -13.149291 -85.288872 1.491848 +v -15.447590 -85.287155 0.894559 +v -11.552408 -85.287155 0.894559 +v -15.442323 -85.283066 0.910874 +v -11.557675 -85.283066 0.910874 +v -15.435295 -85.277611 0.926089 +v -11.564703 -85.277611 0.926089 +v -15.430311 -85.273743 0.101601 +v -11.569687 -85.273743 0.101601 +v -15.426647 -85.270897 0.939902 +v -11.573351 -85.270897 0.939902 +v -15.100433 -85.269730 -0.200355 +v -11.899565 -85.269730 -0.200355 +v -14.832550 -85.268593 -0.268781 +v -12.167448 -85.268593 -0.268781 +v -15.416551 -85.263062 0.952037 +v -11.583447 -85.263062 0.952037 +v -14.496030 -85.256554 1.379280 +v -12.503968 -85.256554 1.379280 +v -13.986915 -85.250710 1.491848 +v -13.013083 -85.250710 1.491848 +v -15.396645 -85.247604 0.010546 +v -11.603354 -85.247604 0.010546 +v -15.191594 -85.216461 1.108760 +v -11.808404 -85.216461 1.108760 +v -15.351017 -85.212173 -0.071737 +v -11.648981 -85.212173 -0.071737 +v -14.903884 -85.211243 1.251389 +v -12.096114 -85.211243 1.251389 +v -15.033825 -85.207520 -0.242793 +v -11.966173 -85.207520 -0.242793 +v -14.119088 -85.200317 1.491849 +v -12.880910 -85.200317 1.491849 +v -14.765873 -85.193863 -0.277532 +v -12.234125 -85.193863 -0.277532 +v -15.482292 -85.174286 0.952038 +v -11.517706 -85.174286 0.952038 +v -15.294808 -85.168533 -0.142755 +v -11.705190 -85.168533 -0.142755 +v -14.626625 -85.159843 1.379280 +v -12.373373 -85.159843 1.379280 +v -15.586432 -85.152275 0.538069 +v -11.413567 -85.152275 0.538069 +v -15.580161 -85.148132 0.367707 +v -11.419837 -85.148132 0.367707 +v -15.580161 -85.148132 0.708430 +v -11.419837 -85.148132 0.708430 +v -14.962846 -85.141235 -0.268781 +v -12.037152 -85.141235 -0.268781 +v -14.246131 -85.138115 1.491849 +v -12.753867 -85.138115 1.491849 +v -15.561395 -85.135742 0.198668 +v -11.438603 -85.135742 0.198668 +v -15.561395 -85.135750 0.877469 +v -11.438603 -85.135750 0.877469 +v -15.229723 -85.118004 -0.200355 +v -11.770275 -85.118004 -0.200355 +v -15.580654 -85.106110 0.198668 +v -11.419344 -85.106110 0.198668 +v -15.577026 -85.103790 0.894560 +v -11.422972 -85.103790 0.894560 +v -15.571409 -85.100197 0.910875 +v -11.428589 -85.100197 0.910875 +v -13.499999 -85.100082 1.585103 +v -13.560308 -85.098709 1.585103 +v -13.439690 -85.098709 1.585103 +v -15.563914 -85.095398 0.926090 +v -11.436084 -85.095398 0.926090 +v -15.558598 -85.091995 0.101602 +v -11.441401 -85.091995 0.101602 +v -15.554692 -85.089500 0.939903 +v -11.445306 -85.089500 0.939903 +v -13.673035 -85.088737 1.585103 +v -13.326963 -85.088737 1.585103 +v -13.324393 -85.088310 1.585135 +v -13.678731 -85.087540 1.585263 +v -13.321264 -85.087540 1.585263 +v -13.318958 -85.086784 1.585423 +v -13.315807 -85.085480 1.585739 +v -13.684750 -85.085213 1.585808 +v -13.313684 -85.084412 1.586021 +v -15.543924 -85.082611 0.952038 +v -11.456074 -85.082611 0.952038 +v -13.689826 -85.082245 1.586628 +v -13.307914 -85.080551 1.587125 +v -13.306154 -85.079033 1.587583 +v -13.694639 -85.078285 1.587813 +v -15.028670 -85.077629 1.251389 +v -11.971328 -85.077629 1.251389 +v -13.303662 -85.076523 1.588361 +v -13.697796 -85.074806 1.588904 +v -14.889650 -85.072868 -0.277531 +v -12.110348 -85.072868 -0.277531 +v -13.299616 -85.071129 1.590090 +v -13.701029 -85.070038 1.590448 +v -15.522696 -85.069031 0.010547 +v -11.477303 -85.069031 0.010547 +v -13.352046 -85.067169 1.352269 +v -13.647952 -85.067169 1.352268 +v -13.346333 -85.065987 1.351779 +v -13.653666 -85.065987 1.351778 +v -13.296939 -85.065880 1.591832 +v -13.703461 -85.064865 1.592177 +v -14.366992 -85.064621 1.491849 +v -12.633006 -85.064621 1.491849 +v -13.340874 -85.063904 1.351400 +v -13.659124 -85.063904 1.351399 +v -13.704086 -85.063057 1.592792 +v -15.157733 -85.062111 -0.242792 +v -11.842265 -85.062111 -0.242792 +v -13.664188 -85.060982 1.351141 +v -13.335810 -85.060982 1.351142 +v -13.295011 -85.059608 1.593976 +v -13.705029 -85.059402 1.594045 +v -13.331270 -85.057289 1.351011 +v -13.668728 -85.057289 1.351011 +v -13.705454 -85.056808 1.594950 +v -13.796917 -85.056686 1.588587 +v -13.203081 -85.056686 1.588587 +v -15.315662 -85.056664 1.108760 +v -11.684336 -85.056664 1.108760 +v -13.705697 -85.053802 1.596008 +v -13.294301 -85.053802 1.596008 +v -13.327374 -85.052917 1.351011 +v -13.672625 -85.052917 1.351011 +v -14.747885 -85.051651 1.379280 +v -12.252113 -85.051651 1.379280 +v -13.499999 -85.050537 1.113719 +v -13.324219 -85.047989 1.351142 +v -13.675779 -85.047989 1.351141 +v -13.622230 -85.044670 1.113719 +v -13.377769 -85.044670 1.113719 +v -13.372064 -85.043655 1.113719 +v -13.628085 -85.043617 1.113719 +v -13.321889 -85.042625 1.351400 +v -13.678109 -85.042625 1.351399 +v -13.366681 -85.041794 1.113719 +v -13.633683 -85.041634 1.113719 +v -13.638626 -85.038925 1.113719 +v -13.361122 -85.038765 1.113719 +v -15.474035 -85.037903 -0.071736 +v -11.525963 -85.037903 -0.071736 +v -13.320443 -85.036964 1.351779 +v -13.679555 -85.036964 1.351778 +v -13.356539 -85.035149 1.113719 +v -13.643526 -85.035088 1.113719 +v -13.319920 -85.031151 1.352269 +v -13.680079 -85.031151 1.352268 +v -13.352488 -85.030701 1.113719 +v -13.647563 -85.030632 1.113719 +v -13.650639 -85.025871 1.113719 +v -13.349135 -85.025452 1.113719 +v -13.499999 -85.025017 -5.996283 +v -13.499999 -85.025024 -0.277531 +v -13.912234 -85.024376 1.588587 +v -13.087764 -85.024376 1.588587 +v -13.652966 -85.020607 1.113719 +v -13.346916 -85.020271 1.113719 +v -13.345476 -85.014511 1.113719 +v -13.654547 -85.014359 1.113719 +v -13.655006 -85.008583 1.113719 +v -13.344992 -85.008583 1.113719 +v -13.711250 -85.007034 -5.996283 +v -13.288748 -85.007034 -5.996283 +v -13.711250 -85.007050 -0.277531 +v -13.288748 -85.007050 -0.277531 +v -15.081021 -85.002548 -0.268780 +v -11.918977 -85.002548 -0.268780 +v -15.414090 -84.999550 -0.142754 +v -11.585908 -84.999550 -0.142754 +v -15.601320 -84.988228 0.952038 +v -11.398678 -84.988228 0.952038 +v -14.024136 -84.981712 1.588587 +v -12.975863 -84.981712 1.588587 +v -14.480668 -84.980438 1.491849 +v -12.519330 -84.980438 1.491849 +v -15.701488 -84.959702 0.538069 +v -11.298510 -84.959702 0.538069 +v -15.694870 -84.956139 0.367707 +v -11.305128 -84.956139 0.367707 +v -15.694870 -84.956139 0.708430 +v -11.305128 -84.956139 0.708430 +v -15.344680 -84.955147 -0.200354 +v -11.655318 -84.955147 -0.200354 +v -13.916424 -84.953613 -5.996283 +v -13.083574 -84.953613 -5.996283 +v -13.916424 -84.953629 -0.277531 +v -13.083574 -84.953629 -0.277531 +v -15.675070 -84.945488 0.198669 +v -11.324928 -84.945488 0.198669 +v -15.675070 -84.945488 0.877469 +v -11.324928 -84.945488 0.877469 +v -15.001912 -84.941124 -0.277531 +v -11.998086 -84.941124 -0.277531 +v -15.140788 -84.933228 1.251389 +v -11.859210 -84.933228 1.251389 +v -14.858804 -84.932884 1.379280 +v -12.141194 -84.932884 1.379280 +v -14.131694 -84.929054 1.588587 +v -12.868304 -84.929054 1.588587 +v -15.693076 -84.911392 0.198669 +v -11.306922 -84.911392 0.198669 +v -15.689251 -84.909409 0.894560 +v -11.310747 -84.909409 0.894560 +v -15.683331 -84.906342 0.910875 +v -11.316668 -84.906342 0.910875 +v -15.267905 -84.906029 -0.242792 +v -11.732093 -84.906029 -0.242792 +v -15.675431 -84.902245 0.926090 +v -11.324567 -84.902245 0.926090 +v -15.669827 -84.899345 0.101602 +v -11.330172 -84.899345 0.101602 +v -15.665709 -84.897209 0.939903 +v -11.334290 -84.897209 0.939903 +v -15.654360 -84.891327 0.952038 +v -11.345638 -84.891327 0.952038 +v -14.586218 -84.886261 1.491849 +v -12.413780 -84.886261 1.491849 +v -15.424685 -84.886246 1.108760 +v -11.575314 -84.886246 1.108760 +v -15.631985 -84.879738 0.010547 +v -11.368013 -84.879738 0.010547 +v -14.234017 -84.866829 1.588588 +v -12.765981 -84.866829 1.588588 +v -14.109618 -84.866287 -5.996283 +v -12.890380 -84.866287 -5.996283 +v -14.109618 -84.866295 -0.277531 +v -12.890380 -84.866295 -0.277531 +v -15.186095 -84.853691 -0.268780 +v -11.813903 -84.853691 -0.268780 +v -15.580695 -84.853157 -0.071736 +v -11.419303 -84.853157 -0.071736 +v -13.712679 -84.847809 1.662441 +v -13.287319 -84.847809 1.662441 +v -15.517512 -84.820419 -0.142754 +v -11.482486 -84.820419 -0.142754 +v -13.741779 -84.818680 1.669055 +v -13.258219 -84.818680 1.669055 +v -14.958464 -84.804527 1.379281 +v -12.041534 -84.804527 1.379281 +v -15.101728 -84.799721 -0.277531 +v -11.898270 -84.799721 -0.277531 +v -14.330258 -84.795555 1.588588 +v -12.669740 -84.795555 1.588588 +v -13.835682 -84.792374 1.669055 +v -13.164316 -84.792374 1.669055 +v -15.702936 -84.792122 0.952039 +v -11.297062 -84.792122 0.952039 +v -14.682768 -84.782883 1.491850 +v -12.317230 -84.782883 1.491850 +v -15.444350 -84.782509 -0.200354 +v -11.555648 -84.782509 -0.200354 +v -15.239311 -84.779221 1.251390 +v -11.760687 -84.779221 1.251390 +v -13.926803 -84.757629 1.669055 +v -13.073195 -84.757629 1.669055 +v -15.798819 -84.757591 0.538069 +v -11.201180 -84.757591 0.538069 +v -15.791909 -84.754639 0.367707 +v -11.208089 -84.754639 0.367707 +v -15.791909 -84.754639 0.708431 +v -11.208089 -84.754639 0.708431 +v -14.285275 -84.747566 -5.996282 +v -12.714724 -84.747566 -5.996282 +v -14.285275 -84.747574 -0.277531 +v -12.714724 -84.747574 -0.277531 +v -15.771233 -84.745804 0.198669 +v -11.228765 -84.745804 0.198669 +v -15.771233 -84.745804 0.877470 +v -11.228765 -84.745804 0.877470 +v -13.499999 -84.743767 -6.277533 +v -15.363428 -84.740578 -0.242792 +v -11.636570 -84.740578 -0.242792 +v -13.663718 -84.729836 -6.277533 +v -13.336280 -84.729836 -6.277533 +v -14.419620 -84.715828 1.588588 +v -12.580379 -84.715828 1.588588 +v -14.014387 -84.714752 1.669055 +v -12.985611 -84.714752 1.669055 +v -15.787324 -84.707253 0.198669 +v -11.212674 -84.707253 0.198669 +v -15.787324 -84.707253 0.877470 +v -11.212674 -84.707253 0.877470 +v -15.517759 -84.706627 1.108761 +v -11.482239 -84.706627 1.108761 +v -15.783335 -84.705627 0.894561 +v -11.216663 -84.705627 0.894561 +v -15.777160 -84.703110 0.910876 +v -11.222838 -84.703110 0.910876 +v -15.768921 -84.699753 0.926091 +v -11.231077 -84.699753 0.926091 +v -15.763077 -84.697372 0.101603 +v -11.236921 -84.697372 0.101603 +v -15.277198 -84.695900 -0.268780 +v -11.722800 -84.695900 -0.268780 +v -15.758782 -84.695625 0.939904 +v -11.241216 -84.695625 0.939904 +v -15.746945 -84.690796 0.952039 +v -11.253053 -84.690796 0.952039 +v -13.822728 -84.688431 -6.277533 +v -13.177270 -84.688431 -6.277533 +v -15.723608 -84.681282 0.010548 +v -11.276390 -84.681282 0.010548 +v -14.769517 -84.671158 1.491850 +v -12.230481 -84.671158 1.491850 +v -15.046038 -84.667641 1.379281 +v -11.953960 -84.667641 1.379281 +v -14.097710 -84.664078 1.669055 +v -12.902288 -84.664078 1.669055 +v -15.670115 -84.659485 -0.071735 +v -11.329884 -84.659485 -0.071735 +v -15.188272 -84.649818 -0.277530 +v -11.811726 -84.649818 -0.277530 +v -13.718429 -84.638351 1.717138 +v -13.281569 -84.638351 1.717138 +v -15.604216 -84.632629 -0.142753 +v -11.395782 -84.632629 -0.142753 +v -14.501361 -84.628304 1.588588 +v -12.498637 -84.628304 1.588588 +v -13.655006 -84.625740 1.113720 +v -13.344992 -84.625740 1.113720 +v -13.972453 -84.620750 -6.277532 +v -13.027545 -84.620750 -6.277532 +v -15.323420 -84.616898 1.251390 +v -11.676579 -84.616898 1.251390 +v -13.721231 -84.606956 1.724135 +v -13.278768 -84.606956 1.724135 +v -14.176079 -84.606041 1.669055 +v -12.823919 -84.606041 1.669055 +v -15.527910 -84.601524 -0.200353 +v -11.472088 -84.601524 -0.200353 +v -14.438339 -84.600861 -5.996282 +v -12.561659 -84.600861 -5.996282 +v -14.438339 -84.600868 -0.277530 +v -12.561659 -84.600868 -0.277530 +v -13.657074 -84.594193 1.113720 +v -13.342924 -84.594193 1.113720 +v -15.786297 -84.587578 0.952039 +v -11.213701 -84.587578 0.952039 +v -13.728066 -84.576088 1.730495 +v -13.271932 -84.576088 1.730495 +v -15.443510 -84.567131 -0.242791 +v -11.556488 -84.567131 -0.242791 +v -13.663240 -84.563187 1.113720 +v -13.336758 -84.563187 1.113720 +v -13.757606 -84.555748 1.732886 +v -13.242393 -84.555748 1.732886 +v -14.845746 -84.552002 1.491850 +v -12.154252 -84.552002 1.491850 +v -15.877640 -84.547569 0.538070 +v -11.122358 -84.547569 0.538070 +v -13.738818 -84.546265 1.736109 +v -13.261180 -84.546265 1.736109 +v -15.870493 -84.545250 0.367708 +v -11.129505 -84.545250 0.367708 +v -15.870493 -84.545250 0.708431 +v -11.129505 -84.545250 0.708431 +v -14.248845 -84.541122 1.669055 +v -12.751153 -84.541122 1.669055 +v -15.849109 -84.538300 0.198670 +v -11.150889 -84.538300 0.198670 +v -15.849109 -84.538300 0.877470 +v -11.150889 -84.538300 0.877470 +v -14.574805 -84.533714 1.588588 +v -12.425193 -84.533714 1.588588 +v -13.673403 -84.533257 1.113720 +v -13.326595 -84.533257 1.113720 +v -15.353574 -84.530472 -0.268779 +v -11.646424 -84.530472 -0.268779 +v -13.827532 -84.529091 1.732886 +v -13.172466 -84.529091 1.732886 +v -14.108587 -84.528740 -6.277532 +v -12.891411 -84.528740 -6.277532 +v -15.120802 -84.523354 1.379281 +v -11.879196 -84.523354 1.379281 +v -15.594114 -84.519279 1.108761 +v -11.405884 -84.519279 1.108761 +v -13.894745 -84.496178 1.732887 +v -13.105253 -84.496178 1.732887 +v -15.862619 -84.495392 0.198670 +v -11.137379 -84.495392 0.198670 +v -15.862619 -84.495392 0.877470 +v -11.137379 -84.495392 0.877470 +v -15.858500 -84.494141 0.894561 +v -11.141499 -84.494141 0.894561 +v -15.260826 -84.492676 -0.277530 +v -11.739172 -84.492676 -0.277530 +v -15.852120 -84.492195 0.910876 +v -11.147878 -84.492195 0.910876 +v -15.843610 -84.489601 0.926091 +v -11.156388 -84.489601 0.926091 +v -15.837574 -84.487755 0.101603 +v -11.162424 -84.487755 0.101603 +v -15.833138 -84.486404 0.939904 +v -11.166861 -84.486404 0.939904 +v -15.820911 -84.482681 0.952039 +v -11.179087 -84.482681 0.952039 +v -15.796806 -84.475327 0.010548 +v -11.203192 -84.475327 0.010548 +v -14.315407 -84.469849 1.669055 +v -12.684591 -84.469849 1.669055 +v -15.741550 -84.458481 -0.071735 +v -11.258448 -84.458481 -0.071735 +v -13.958688 -84.457298 1.732887 +v -13.041310 -84.457298 1.732887 +v -15.392421 -84.447601 1.251390 +v -11.607577 -84.447601 1.251390 +v -15.673483 -84.437729 -0.142753 +v -11.326515 -84.437729 -0.142753 +v -14.639342 -84.432831 1.588588 +v -12.360656 -84.432831 1.588588 +v -14.564410 -84.430405 -5.996282 +v -12.435588 -84.430405 -5.996282 +v -14.564410 -84.430412 -0.277530 +v -12.435588 -84.430412 -0.277530 +v -14.910823 -84.426407 1.491850 +v -12.089175 -84.426407 1.491850 +v -14.227213 -84.415047 -6.277532 +v -12.772785 -84.415047 -6.277532 +v -15.594666 -84.413696 -0.200353 +v -11.405333 -84.413696 -0.200353 +v -14.018828 -84.412758 1.732887 +v -12.981170 -84.412758 1.732887 +v -13.799301 -84.406265 1.757999 +v -13.200697 -84.406265 1.757999 +v -14.375213 -84.392822 1.669056 +v -12.624785 -84.392822 1.669056 +v -15.507487 -84.387115 -0.242791 +v -11.492511 -84.387115 -0.242791 +v -15.850714 -84.376312 0.952039 +v -11.149284 -84.376312 0.952039 +v -15.182135 -84.372864 1.379282 +v -11.817863 -84.372864 1.379282 +v -14.074671 -84.362938 1.732887 +v -12.925327 -84.362938 1.732887 +v -15.414590 -84.358788 -0.268779 +v -11.585408 -84.358788 -0.268779 +v -15.937319 -84.331329 0.538070 +v -11.062679 -84.331329 0.538070 +v -15.929993 -84.329659 0.367708 +v -11.070005 -84.329659 0.367708 +v -15.929993 -84.329659 0.708431 +v -11.070005 -84.329659 0.708431 +v -15.318790 -84.329582 -0.277530 +v -11.681208 -84.329582 -0.277530 +v -14.694439 -84.326500 1.588589 +v -12.305559 -84.326500 1.588589 +v -15.653115 -84.325768 1.108762 +v -11.346883 -84.325768 1.108762 +v -15.908072 -84.324654 0.198670 +v -11.091927 -84.324654 0.198670 +v -15.908072 -84.324654 0.877470 +v -11.091927 -84.324654 0.877470 +v -14.427765 -84.310677 1.669056 +v -12.572233 -84.310677 1.669056 +v -14.125751 -84.308243 1.732887 +v -12.874248 -84.308243 1.732887 +v -14.964211 -84.295410 1.491851 +v -12.035788 -84.295410 1.491851 +v -14.324918 -84.282944 -6.277532 +v -12.675080 -84.282944 -6.277532 +v -15.918337 -84.277565 0.198670 +v -11.081661 -84.277565 0.198670 +v -15.918337 -84.277565 0.877471 +v -11.081661 -84.277565 0.877471 +v -15.914119 -84.276688 0.894562 +v -11.085879 -84.276688 0.894562 +v -15.907590 -84.275330 0.910877 +v -11.092408 -84.275330 0.910877 +v -15.898880 -84.273521 0.926092 +v -11.101118 -84.273521 0.926092 +v -15.445740 -84.272720 1.251391 +v -11.554258 -84.272720 1.251391 +v -15.892701 -84.272240 0.101604 +v -11.107297 -84.272240 0.101604 +v -15.888160 -84.271294 0.939905 +v -11.111838 -84.271294 0.939905 +v -15.875645 -84.268692 0.952040 +v -11.124353 -84.268692 0.952040 +v -13.859480 -84.265305 1.773747 +v -13.140518 -84.265305 1.773747 +v -15.850971 -84.263565 0.010549 +v -11.149027 -84.263565 0.010549 +v -15.794413 -84.251816 -0.071734 +v -11.205585 -84.251816 -0.071734 +v -14.171646 -84.249130 1.732887 +v -12.828352 -84.249130 1.732887 +v -14.659860 -84.241089 -5.996281 +v -12.340138 -84.241089 -5.996281 +v -14.659860 -84.241096 -0.277529 +v -12.340138 -84.241096 -0.277529 +v -15.724740 -84.237335 -0.142752 +v -11.275258 -84.237335 -0.142752 +v -13.876902 -84.231705 1.776266 +v -13.123096 -84.231705 1.776266 +v -14.472630 -84.224091 1.669056 +v -12.527369 -84.224091 1.669056 +v -15.644064 -84.220573 -0.200352 +v -11.355934 -84.220573 -0.200352 +v -15.229529 -84.217422 1.379282 +v -11.770469 -84.217422 1.379282 +v -14.739638 -84.215599 1.588589 +v -12.260360 -84.215599 1.588589 +v -13.806385 -84.212204 1.113721 +v -13.193613 -84.212204 1.113721 +v -15.554831 -84.202026 -0.242790 +v -11.445168 -84.202026 -0.242790 +v -13.899289 -84.201126 1.777540 +v -13.100709 -84.201126 1.777540 +v -14.211975 -84.186089 1.732887 +v -12.788023 -84.186089 1.732887 +v -15.459742 -84.182266 -0.268778 +v -11.540257 -84.182266 -0.268778 +v -13.823605 -84.178406 1.113721 +v -13.176394 -84.178406 1.113721 +v -13.926096 -84.174324 1.777540 +v -13.073902 -84.174324 1.777540 +v -15.361682 -84.161888 -0.277529 +v -11.638316 -84.161888 -0.277529 +v -15.005465 -84.160110 1.491851 +v -11.994534 -84.160110 1.491851 +v -15.895652 -84.160057 0.952040 +v -11.104346 -84.160057 0.952040 +v -13.956671 -84.151932 1.776266 +v -13.043327 -84.151932 1.776266 +v -13.845889 -84.147728 1.113721 +v -13.154109 -84.147728 1.113721 +v -14.398891 -84.136223 -6.277531 +v -12.601107 -84.136223 -6.277531 +v -13.990270 -84.134514 1.773747 +v -13.009728 -84.134514 1.773747 +v -14.509436 -84.133781 1.669056 +v -12.490562 -84.133781 1.669056 +v -15.694276 -84.127693 1.108762 +v -11.305722 -84.127693 1.108762 +v -13.872696 -84.120918 1.113721 +v -13.127302 -84.120918 1.113721 +v -14.246405 -84.119644 1.732888 +v -12.753593 -84.119644 1.732888 +v -15.977373 -84.110611 0.538071 +v -11.022625 -84.110611 0.538071 +v -15.969927 -84.109604 0.367709 +v -11.030071 -84.109604 0.367709 +v -15.969927 -84.109604 0.708432 +v -11.030071 -84.109604 0.708432 +v -15.947645 -84.106583 0.198671 +v -11.052353 -84.106583 0.198671 +v -15.947645 -84.106583 0.877471 +v -11.052353 -84.106583 0.877471 +v -14.774565 -84.101044 1.588589 +v -12.225433 -84.101044 1.588589 +v -13.903374 -84.098633 1.113721 +v -13.096624 -84.098633 1.113721 +v -15.482936 -84.093727 1.251391 +v -11.517062 -84.093727 1.251391 +v -13.937175 -84.081413 1.113721 +v -13.062823 -84.081413 1.113721 +v -14.131229 -84.074333 1.757999 +v -12.868769 -84.074333 1.757999 +v -15.262592 -84.058311 1.379282 +v -11.737406 -84.058311 1.379282 +v -15.954015 -84.055573 0.198671 +v -11.045983 -84.055573 0.198671 +v -15.954015 -84.055573 0.877471 +v -11.045983 -84.055573 0.877471 +v -15.949736 -84.055084 0.894562 +v -11.050262 -84.055084 0.894562 +v -15.943110 -84.054329 0.910877 +v -11.056889 -84.054329 0.910877 +v -15.934271 -84.053314 0.926092 +v -11.065727 -84.053314 0.926092 +v -15.928001 -84.052597 0.101604 +v -11.071997 -84.052597 0.101604 +v -15.923393 -84.052071 0.939905 +v -11.076605 -84.052071 0.939905 +v -15.910694 -84.050621 0.952040 +v -11.089304 -84.050621 0.952040 +v -14.274650 -84.050339 1.732888 +v -12.725348 -84.050339 1.732888 +v -15.885656 -84.047760 0.010549 +v -11.114342 -84.047760 0.010549 +v -15.828263 -84.041199 -0.071734 +v -11.171735 -84.041199 -0.071734 +v -14.537877 -84.040504 1.669056 +v -12.462121 -84.040504 1.669056 +v -14.721943 -84.038368 -5.996281 +v -12.278055 -84.038368 -5.996281 +v -14.721943 -84.038376 -0.277529 +v -12.278055 -84.038376 -0.277529 +v -15.757563 -84.033112 -0.142752 +v -11.242435 -84.033112 -0.142752 +v -15.675696 -84.023750 -0.200352 +v -11.324302 -84.023750 -0.200352 +v -15.034245 -84.021614 1.491852 +v -11.965754 -84.021614 1.491852 +v -14.271235 -84.013847 1.736111 +v -12.728763 -84.013847 1.736111 +v -15.585145 -84.013405 -0.242790 +v -11.414853 -84.013405 -0.242790 +v -14.301053 -84.003098 1.730497 +v -12.698945 -84.003098 1.730497 +v -15.488655 -84.002373 -0.268778 +v -11.511343 -84.002373 -0.268778 +v -14.331923 -83.996262 1.724137 +v -12.668076 -83.996262 1.724137 +v -14.363321 -83.993462 1.717140 +v -12.636677 -83.993462 1.717140 +v -15.389148 -83.990997 -0.277529 +v -11.610850 -83.990997 -0.277529 +v -14.572775 -83.987709 1.662444 +v -12.427223 -83.987709 1.662444 +v -14.798930 -83.983795 1.588590 +v -12.201068 -83.983795 1.588590 +v -14.778769 -83.980728 1.596011 +v -12.221230 -83.980728 1.596011 +v -12.218222 -83.980484 1.594953 +v -12.215624 -83.980064 1.594048 +v -14.784576 -83.980019 1.593979 +v -14.447005 -83.979111 -6.277531 +v -12.552993 -83.979111 -6.277531 +v -12.211976 -83.979118 1.592795 +v -12.210166 -83.978493 1.592180 +v -14.790851 -83.978088 1.591835 +v -12.206507 -83.976875 1.590953 +v -14.796099 -83.975410 1.590093 +v -12.201215 -83.973595 1.589223 +v -14.801490 -83.971367 1.588364 +v -12.196748 -83.969673 1.587816 +v -14.804000 -83.968880 1.587586 +v -14.805517 -83.967117 1.587128 +v -12.192787 -83.964859 1.586631 +v -14.808797 -83.962372 1.586182 +v -12.189816 -83.959785 1.585811 +v -14.810448 -83.959221 1.585742 +v -14.811751 -83.956070 1.585426 +v -14.756121 -83.955109 1.352272 +v -12.243877 -83.955109 1.352271 +v -14.761931 -83.954590 1.351782 +v -12.238067 -83.954590 1.351781 +v -14.812504 -83.953766 1.585266 +v -12.187493 -83.953766 1.585266 +v -14.767591 -83.953140 1.351403 +v -12.232407 -83.953140 1.351402 +v -14.772956 -83.950813 1.351145 +v -12.227043 -83.950813 1.351144 +v -14.813275 -83.950638 1.585138 +v -14.258224 -83.948433 1.113721 +v -12.741775 -83.948433 1.113721 +v -14.813704 -83.948067 1.585106 +v -12.186295 -83.948067 1.585106 +v -14.777886 -83.947655 1.351014 +v -12.222112 -83.947655 1.351014 +v -14.782254 -83.943756 1.351014 +v -12.217744 -83.943756 1.351014 +v -15.920739 -83.940613 0.952040 +v -11.079259 -83.940613 0.952040 +v -14.785949 -83.939217 1.351145 +v -12.214049 -83.939217 1.351144 +v -14.288158 -83.938271 1.113721 +v -12.711840 -83.938271 1.113721 +v -14.788874 -83.934158 1.351403 +v -12.211124 -83.934158 1.351402 +v -14.319160 -83.932106 1.113721 +v -12.680838 -83.932106 1.113721 +v -14.733553 -83.930038 1.113721 +v -14.350706 -83.930038 1.113721 +v -12.649292 -83.930038 1.113721 +v -12.266445 -83.930038 1.113721 +v -12.260670 -83.929581 1.113721 +v -14.739481 -83.929550 1.113721 +v -14.790954 -83.928696 1.351782 +v -12.209044 -83.928696 1.351781 +v -12.255135 -83.928238 1.113721 +v -14.745242 -83.928116 1.113721 +v -15.717255 -83.926697 1.108763 +v -11.282743 -83.926697 1.108763 +v -14.750424 -83.925896 1.113721 +v -12.249155 -83.925667 1.113721 +v -14.792136 -83.922981 1.352272 +v -12.207862 -83.922981 1.352271 +v -12.244401 -83.922592 1.113722 +v -14.755666 -83.922539 1.113722 +v -12.239945 -83.918556 1.113722 +v -14.760115 -83.918488 1.113722 +v -14.763632 -83.914055 1.113722 +v -12.236104 -83.913658 1.113722 +v -15.503701 -83.912086 1.251392 +v -11.496297 -83.912086 1.251392 +v -14.766453 -83.909035 1.113722 +v -12.233399 -83.908714 1.113722 +v -14.768586 -83.903114 1.113722 +v -12.231412 -83.903114 1.113722 +v -14.769636 -83.897263 1.113722 +v -12.230362 -83.897263 1.113722 +v -15.281050 -83.896858 1.379283 +v -11.718948 -83.896858 1.379283 +v -15.997482 -83.887192 0.538072 +v -11.002516 -83.887192 0.538072 +v -15.989975 -83.886856 0.367710 +v -11.010023 -83.886856 0.367710 +v -15.989975 -83.886856 0.708433 +v -11.010023 -83.886856 0.708433 +v -15.967512 -83.885841 0.198671 +v -11.032486 -83.885841 0.198671 +v -15.967512 -83.885849 0.877472 +v -11.032486 -83.885849 0.877472 +v -15.050311 -83.881073 1.491852 +v -11.949687 -83.881073 1.491852 +v -14.821962 -83.865456 1.585106 +v -12.178036 -83.865456 1.585106 +v -15.969359 -83.831253 0.198671 +v -11.030639 -83.831253 0.198671 +v -15.969359 -83.831253 0.877472 +v -11.030639 -83.831253 0.877472 +v -15.965054 -83.831154 0.894563 +v -11.034945 -83.831154 0.894563 +v -15.958385 -83.831009 0.910878 +v -11.041613 -83.831009 0.910878 +v -15.949492 -83.830803 0.926093 +v -11.050507 -83.830803 0.926093 +v -15.943182 -83.830658 0.101604 +v -11.056816 -83.830658 0.101604 +v -15.938546 -83.830551 0.939906 +v -11.061452 -83.830551 0.939906 +v -15.925766 -83.830261 0.952041 +v -11.074232 -83.830261 0.952041 +v -15.900572 -83.829689 0.010550 +v -11.099426 -83.829689 0.010550 +v -15.842821 -83.828369 -0.071733 +v -11.157177 -83.828369 -0.071733 +v -14.748873 -83.828072 -5.996280 +v -12.251125 -83.828072 -5.996280 +v -14.748873 -83.828079 -0.277528 +v -12.251125 -83.828079 -0.277528 +v -15.771678 -83.826752 -0.142751 +v -11.228320 -83.826752 -0.142751 +v -15.689301 -83.824875 -0.200351 +v -11.310698 -83.824875 -0.200351 +v -15.598183 -83.822800 -0.242790 +v -11.401815 -83.822800 -0.242790 +v -15.501089 -83.820587 -0.268777 +v -11.498909 -83.820587 -0.268777 +v -15.400960 -83.818314 -0.277528 +v -11.599038 -83.818314 -0.277528 +v -14.467876 -83.816132 -6.277530 +v -12.532122 -83.816132 -6.277530 +v -12.224492 -83.775032 1.113722 +v -13.499999 -83.775017 -6.277530 +v -14.775506 -83.775032 1.113722 +v -14.824707 -83.744865 1.585106 +v -12.175291 -83.744865 1.585106 +v -15.053531 -83.739655 1.491852 +v -11.946467 -83.739655 1.491852 +v -15.284749 -83.734390 1.379283 +v -11.715249 -83.734390 1.379283 +v -15.507863 -83.729317 1.251392 +v -11.492135 -83.729317 1.251392 +v -15.721859 -83.724442 1.108763 +v -11.278139 -83.724442 1.108763 +v -15.925766 -83.719795 0.952041 +v -11.074232 -83.719795 0.952041 +v -15.967512 -83.664215 0.198672 +v -11.032486 -83.664215 0.198672 +v -15.967512 -83.664215 0.877472 +v -11.032486 -83.664215 0.877472 +v -15.989975 -83.663200 0.367710 +v -11.010023 -83.663200 0.367710 +v -15.989975 -83.663208 0.708433 +v -11.010023 -83.663208 0.708433 +v -15.997482 -83.662865 0.538072 +v -11.002516 -83.662865 0.538072 +v -14.769636 -83.652802 1.113722 +v -12.230362 -83.652802 1.113722 +v -14.460902 -83.651970 -6.277530 +v -12.539096 -83.651970 -6.277530 +v -14.768911 -83.648270 1.113722 +v -12.231373 -83.647095 1.113722 +v -15.397020 -83.645271 -0.277528 +v -11.602978 -83.645271 -0.277528 +v -14.766964 -83.642189 1.113722 +v -12.233236 -83.641716 1.113722 +v -15.496941 -83.638435 -0.268777 +v -11.503057 -83.638435 -0.268777 +v -14.764311 -83.637054 1.113722 +v -12.236268 -83.636154 1.113722 +v -14.760435 -83.631920 1.113722 +v -15.593834 -83.631805 -0.242789 +v -11.406164 -83.631805 -0.242789 +v -12.240455 -83.630966 1.113722 +v -14.756251 -83.627975 1.113722 +v -12.244779 -83.627182 1.113722 +v -14.792136 -83.627075 1.352271 +v -12.207862 -83.627075 1.352271 +v -15.684762 -83.625587 -0.200351 +v -11.315236 -83.625587 -0.200351 +v -14.816476 -83.624535 1.585107 +v -12.183522 -83.624535 1.585107 +v -14.750843 -83.624390 1.113722 +v -12.250264 -83.623817 1.113722 +v -14.745579 -83.622063 1.113722 +v -12.255624 -83.621666 1.113722 +v -14.790954 -83.621361 1.351782 +v -12.209044 -83.621361 1.351782 +v -14.739328 -83.620483 1.113722 +v -12.261870 -83.620308 1.113722 +v -14.733553 -83.620026 1.113722 +v -14.350706 -83.620026 1.113722 +v -12.649292 -83.620026 1.113722 +v -12.266445 -83.620026 1.113722 +v -15.766969 -83.619965 -0.142751 +v -11.233029 -83.619965 -0.142751 +v -14.319160 -83.617958 1.113722 +v -12.680838 -83.617958 1.113722 +v -14.739875 -83.616249 -5.996279 +v -12.260123 -83.616249 -5.996279 +v -14.739875 -83.616257 -0.277528 +v -12.260123 -83.616257 -0.277528 +v -14.788874 -83.615906 1.351403 +v -12.211124 -83.615906 1.351403 +v -15.837965 -83.615105 -0.071733 +v -11.162033 -83.615105 -0.071733 +v -14.288158 -83.611786 1.113722 +v -12.711840 -83.611786 1.113722 +v -15.895596 -83.611168 0.010550 +v -11.104403 -83.611168 0.010550 +v -14.785949 -83.610840 1.351145 +v -12.214049 -83.610840 1.351145 +v -15.920739 -83.609444 0.952041 +v -11.079259 -83.609444 0.952041 +v -15.933491 -83.608574 0.939906 +v -11.066507 -83.608574 0.939906 +v -15.938118 -83.608253 0.101605 +v -11.061880 -83.608253 0.101605 +v -15.944414 -83.607826 0.926093 +v -11.055584 -83.607826 0.926093 +v -15.953291 -83.607224 0.910878 +v -11.046707 -83.607224 0.910878 +v -15.959943 -83.606766 0.894563 +v -11.040055 -83.606766 0.894563 +v -15.964241 -83.606468 0.198672 +v -11.035757 -83.606468 0.198672 +v -15.964241 -83.606468 0.877472 +v -11.035757 -83.606468 0.877472 +v -14.782254 -83.606300 1.351015 +v -12.217744 -83.606300 1.351015 +v -14.777886 -83.602402 1.351015 +v -12.222112 -83.602402 1.351015 +v -14.813704 -83.601997 1.585107 +v -12.186295 -83.601997 1.585107 +v -14.258224 -83.601624 1.113722 +v -12.741775 -83.601624 1.113722 +v -12.186723 -83.599426 1.585139 +v -14.772955 -83.599251 1.351145 +v -12.227043 -83.599251 1.351145 +v -15.043879 -83.598534 1.491853 +v -11.956120 -83.598534 1.491853 +v -14.767591 -83.596924 1.351403 +v -12.232407 -83.596924 1.351403 +v -14.812522 -83.596359 1.585263 +v -12.187494 -83.596298 1.585267 +v -14.761931 -83.595474 1.351782 +v -12.238067 -83.595474 1.351782 +v -14.756121 -83.594948 1.352272 +v -12.243877 -83.594948 1.352272 +v -12.188247 -83.593987 1.585427 +v -14.810534 -83.591026 1.585721 +v -12.189550 -83.590836 1.585743 +v -12.190621 -83.588715 1.586025 +v -14.807591 -83.585762 1.586523 +v -12.194481 -83.582947 1.587129 +v -14.804001 -83.581184 1.587587 +v -12.195998 -83.581184 1.587587 +v -12.199194 -83.578087 1.588580 +v -14.799771 -83.577232 1.588908 +v -12.204990 -83.573997 1.590452 +v -14.795008 -83.573997 1.590452 +v -15.273659 -83.572266 1.379284 +v -11.726339 -83.572266 1.379284 +v -12.209859 -83.571686 1.592077 +v -14.789832 -83.571571 1.592181 +v -14.788022 -83.570946 1.592796 +v -12.215422 -83.570045 1.593980 +v -14.784374 -83.570000 1.594049 +v -14.781776 -83.569580 1.594954 +v -14.778769 -83.569336 1.596012 +v -12.221230 -83.569336 1.596012 +v -14.572775 -83.562347 1.662445 +v -12.427223 -83.562347 1.662445 +v -14.548884 -83.557068 1.669058 +v -12.451114 -83.557068 1.669058 +v -14.363321 -83.556602 1.717141 +v -12.636677 -83.556602 1.717141 +v -14.331923 -83.553802 1.724138 +v -12.668076 -83.553802 1.724138 +v -14.301053 -83.546967 1.730498 +v -12.698945 -83.546967 1.730498 +v -15.495386 -83.546921 1.251392 +v -11.504612 -83.546921 1.251392 +v -14.271235 -83.536209 1.736112 +v -12.728763 -83.536209 1.736112 +v -14.286378 -83.535263 1.732889 +v -12.713620 -83.535263 1.732889 +v -15.708054 -83.522606 1.108764 +v -11.291945 -83.522606 1.108764 +v -14.788082 -83.507362 1.588591 +v -12.211916 -83.507362 1.588591 +v -15.910694 -83.499443 0.952042 +v -11.089304 -83.499443 0.952042 +v -14.426286 -83.491348 -6.277530 +v -12.573712 -83.491348 -6.277530 +v -14.131229 -83.475731 1.758001 +v -12.868769 -83.475731 1.758001 +v -15.377361 -83.473297 -0.277528 +v -11.622637 -83.473297 -0.277528 +v -13.937175 -83.468643 1.113723 +v -13.062823 -83.468643 1.113723 +v -14.261316 -83.464745 1.732889 +v -12.738682 -83.464745 1.732889 +v -14.524718 -83.462593 1.669058 +v -12.475280 -83.462593 1.669058 +v -15.021431 -83.458870 1.491853 +v -11.978567 -83.458870 1.491853 +v -15.476246 -83.457405 -0.268777 +v -11.523752 -83.457405 -0.268777 +v -13.903374 -83.451424 1.113723 +v -13.096624 -83.451424 1.113723 +v -15.947645 -83.443474 0.198672 +v -11.052353 -83.443474 0.198672 +v -15.947645 -83.443474 0.877473 +v -11.052353 -83.443474 0.877473 +v -15.572135 -83.441994 -0.242789 +v -11.427863 -83.441994 -0.242789 +v -15.969927 -83.440453 0.367711 +v -11.030071 -83.440453 0.367711 +v -15.969927 -83.440453 0.708434 +v -11.030071 -83.440453 0.708434 +v -15.977373 -83.439445 0.538073 +v -11.022625 -83.439445 0.538073 +v -13.872696 -83.429138 1.113723 +v -13.127302 -83.429138 1.113723 +v -15.662121 -83.427536 -0.200351 +v -11.337877 -83.427536 -0.200351 +v -13.990270 -83.415550 1.773749 +v -13.009728 -83.415550 1.773749 +v -15.743476 -83.414459 -0.142750 +v -11.256522 -83.414459 -0.142750 +v -15.247872 -83.411819 1.379284 +v -11.752126 -83.411819 1.379284 +v -14.695207 -83.408989 -5.996279 +v -12.304791 -83.408989 -5.996279 +v -14.695207 -83.408997 -0.277527 +v -12.304791 -83.408997 -0.277527 +v -15.813736 -83.403168 -0.071732 +v -11.186262 -83.403168 -0.071732 +v -13.845889 -83.402336 1.113723 +v -13.154109 -83.402336 1.113723 +v -13.956671 -83.398132 1.776268 +v -13.043327 -83.398132 1.776268 +v -14.229946 -83.396805 1.732889 +v -12.770052 -83.396805 1.732889 +v -15.870770 -83.393997 0.010551 +v -11.129229 -83.393997 0.010551 +v -14.758405 -83.391342 1.588591 +v -12.241593 -83.391342 1.588591 +v -15.895652 -83.389999 0.952042 +v -11.104346 -83.389999 0.952042 +v -15.908272 -83.387978 0.939907 +v -11.091726 -83.387978 0.939907 +v -15.912851 -83.387238 0.101606 +v -11.087147 -83.387238 0.101606 +v -15.919083 -83.386238 0.926094 +v -11.080915 -83.386238 0.926094 +v -15.927866 -83.384827 0.910879 +v -11.072132 -83.384827 0.910879 +v -15.934450 -83.383766 0.894564 +v -11.065548 -83.383766 0.894564 +v -15.938704 -83.383080 0.198673 +v -11.061295 -83.383080 0.198673 +v -15.938704 -83.383087 0.877473 +v -11.061295 -83.383087 0.877473 +v -13.926096 -83.375740 1.777542 +v -13.073902 -83.375740 1.777542 +v -13.823605 -83.371658 1.113723 +v -13.176394 -83.371658 1.113723 +v -14.492061 -83.370705 1.669058 +v -12.507937 -83.370705 1.669058 +v -15.466376 -83.366409 1.251393 +v -11.533622 -83.366409 1.251393 +v -13.899289 -83.348930 1.777542 +v -13.100709 -83.348930 1.777542 +v -14.365021 -83.338882 -6.277529 +v -12.634977 -83.338882 -6.277529 +v -13.806385 -83.337852 1.113723 +v -13.193613 -83.337852 1.113723 +v -14.192528 -83.331993 1.732889 +v -12.807470 -83.331993 1.732889 +v -15.675951 -83.322861 1.108764 +v -11.324047 -83.322861 1.108764 +v -14.986378 -83.321831 1.491853 +v -12.013620 -83.321831 1.491853 +v -13.876902 -83.318359 1.776268 +v -13.123096 -83.318359 1.776268 +v -15.342145 -83.303833 -0.277527 +v -11.657853 -83.303833 -0.277527 +v -13.859480 -83.284760 1.773749 +v -13.140518 -83.284760 1.773749 +v -14.451183 -83.282166 1.669058 +v -12.548815 -83.282166 1.669058 +v -15.875645 -83.281364 0.952042 +v -11.124353 -83.281364 0.952042 +v -15.439177 -83.279015 -0.268776 +v -11.560822 -83.279015 -0.268776 +v -14.718301 -83.278496 1.588591 +v -12.281697 -83.278496 1.588591 +v -14.149371 -83.270851 1.732889 +v -12.850627 -83.270851 1.732889 +v -15.533266 -83.254944 -0.242788 +v -11.466732 -83.254944 -0.242788 +v -15.207602 -83.254379 1.379284 +v -11.792397 -83.254379 1.379284 +v -15.621563 -83.232361 -0.200350 +v -11.378435 -83.232361 -0.200350 +v -15.908072 -83.225403 0.198673 +v -11.091927 -83.225403 0.198673 +v -15.908072 -83.225403 0.877473 +v -11.091927 -83.225403 0.877473 +v -15.929993 -83.220398 0.367711 +v -11.070005 -83.220398 0.367711 +v -15.929993 -83.220398 0.708434 +v -11.070005 -83.220398 0.708434 +v -15.937319 -83.218727 0.538073 +v -11.062679 -83.218727 0.538073 +v -14.100833 -83.213890 1.732890 +v -12.899165 -83.213890 1.732890 +v -14.616156 -83.212265 -5.996278 +v -12.383842 -83.212265 -5.996278 +v -14.616156 -83.212273 -0.277527 +v -12.383842 -83.212273 -0.277527 +v -15.701393 -83.211945 -0.142750 +v -11.298605 -83.211945 -0.142750 +v -14.278872 -83.198967 -6.277529 +v -12.721127 -83.198967 -6.277529 +v -14.402424 -83.197716 1.669059 +v -12.597574 -83.197716 1.669059 +v -15.770335 -83.194305 -0.071732 +v -11.229663 -83.194305 -0.071732 +v -15.421071 -83.189293 1.251393 +v -11.578927 -83.189293 1.251393 +v -14.939008 -83.188545 1.491853 +v -12.060990 -83.188545 1.491853 +v -15.826299 -83.179993 0.010551 +v -11.173699 -83.179993 0.010551 +v -15.850714 -83.173752 0.952042 +v -11.149284 -83.173752 0.952042 +v -15.863098 -83.170586 0.939907 +v -11.136900 -83.170586 0.939907 +v -14.668101 -83.169769 1.588592 +v -12.331897 -83.169769 1.588592 +v -15.867591 -83.169434 0.101606 +v -11.132407 -83.169434 0.101606 +v -15.873705 -83.167870 0.926094 +v -11.126293 -83.167870 0.926094 +v -15.882324 -83.165665 0.910879 +v -11.117674 -83.165665 0.910879 +v -15.888785 -83.164009 0.894564 +v -11.111213 -83.164009 0.894564 +v -15.892958 -83.162941 0.198673 +v -11.107040 -83.162941 0.198673 +v -15.892958 -83.162941 0.877473 +v -11.107040 -83.162941 0.877473 +v -14.047317 -83.161575 1.732890 +v -12.952682 -83.161575 1.732890 +v -13.799301 -83.143799 1.758002 +v -13.200697 -83.143799 1.758002 +v -15.291665 -83.138268 -0.277527 +v -11.708333 -83.138268 -0.277527 +v -15.625817 -83.126869 1.108765 +v -11.374181 -83.126869 1.108765 +v -14.346187 -83.118042 1.669059 +v -12.653811 -83.118042 1.669059 +v -13.989264 -83.114349 1.732890 +v -13.010734 -83.114349 1.732890 +v -15.386036 -83.104729 -0.268776 +v -11.613962 -83.104729 -0.268776 +v -15.153182 -83.101257 1.379285 +v -11.846816 -83.101257 1.379285 +v -14.170315 -83.075623 -6.277528 +v -12.829683 -83.075623 -6.277528 +v -13.927159 -83.072594 1.732890 +v -13.072839 -83.072594 1.732890 +v -15.477548 -83.072205 -0.242788 +v -11.522450 -83.072205 -0.242788 +v -15.820911 -83.067383 0.952043 +v -11.179087 -83.067383 0.952043 +v -14.608222 -83.066055 1.588592 +v -12.391776 -83.066055 1.588592 +v -14.879714 -83.060120 1.491854 +v -12.120284 -83.060120 1.491854 +v -14.282938 -83.043816 1.669059 +v -12.717060 -83.043816 1.669059 +v -15.563426 -83.041687 -0.200350 +v -11.436572 -83.041687 -0.200350 +v -13.861513 -83.036667 1.732890 +v -13.138485 -83.036667 1.732890 +v -14.504995 -83.031723 -5.996278 +v -12.495003 -83.031723 -5.996278 +v -14.504995 -83.031738 -0.277526 +v -12.495003 -83.031738 -0.277526 +v -15.359848 -83.017029 1.251394 +v -11.640150 -83.017029 1.251394 +v -13.673403 -83.016808 1.113724 +v -13.326595 -83.016808 1.113724 +v -15.641068 -83.014091 -0.142749 +v -11.358931 -83.014091 -0.142749 +v -15.849109 -83.011757 0.198673 +v -11.150889 -83.011757 0.198673 +v -15.849109 -83.011757 0.877474 +v -11.150889 -83.011757 0.877474 +v -13.792872 -83.006851 1.732890 +v -13.207126 -83.006851 1.732890 +v -15.870493 -83.004807 0.367712 +v -11.129505 -83.004807 0.367712 +v -15.870493 -83.004807 0.708435 +v -11.129505 -83.004807 0.708435 +v -13.738818 -83.003792 1.736113 +v -13.261180 -83.003792 1.736113 +v -15.877640 -83.002487 0.538074 +v -11.122358 -83.002487 0.538074 +v -15.708120 -82.990265 -0.071731 +v -11.291878 -82.990265 -0.071731 +v -13.663240 -82.986870 1.113724 +v -13.336758 -82.986870 1.113724 +v -15.226338 -82.977982 -0.277526 +v -11.773660 -82.977982 -0.277526 +v -14.213202 -82.975647 1.669059 +v -12.786797 -82.975647 1.669059 +v -13.728066 -82.973976 1.730499 +v -13.271932 -82.973976 1.730499 +v -14.042475 -82.972397 -6.277528 +v -12.957523 -82.972397 -6.277528 +v -15.762551 -82.970917 0.010552 +v -11.237447 -82.970917 0.010552 +v -14.539160 -82.968216 1.588592 +v -12.460838 -82.968216 1.588592 +v -15.786297 -82.962479 0.952043 +v -11.213701 -82.962479 0.952043 +v -15.798342 -82.958199 0.939908 +v -11.201656 -82.958199 0.939908 +v -15.802711 -82.956642 0.101607 +v -11.197287 -82.956642 0.101607 +v -13.657074 -82.955872 1.113724 +v -13.342924 -82.955872 1.113724 +v -15.808659 -82.954529 0.926095 +v -11.191339 -82.954529 0.926095 +v -15.085063 -82.953720 1.379285 +v -11.914935 -82.953720 1.379285 +v -15.817041 -82.951553 0.910880 +v -11.182957 -82.951553 0.910880 +v -15.823325 -82.949318 0.894565 +v -11.176673 -82.949318 0.894565 +v -15.827383 -82.947876 0.198673 +v -11.172615 -82.947876 0.198673 +v -15.827383 -82.947876 0.877474 +v -11.172615 -82.947876 0.877474 +v -13.721231 -82.943108 1.724139 +v -13.278768 -82.943108 1.724139 +v -14.808989 -82.937614 1.491854 +v -12.191010 -82.937614 1.491854 +v -15.558069 -82.936241 1.108765 +v -11.441929 -82.936241 1.108765 +v -15.317269 -82.935997 -0.268775 +v -11.682729 -82.935997 -0.268775 +v -13.655006 -82.924324 1.113724 +v -13.344992 -82.924324 1.113724 +v -14.137554 -82.914108 1.669059 +v -12.862444 -82.914108 1.669059 +v -13.718429 -82.911713 1.717142 +v -13.281569 -82.911713 1.717142 +v -15.405444 -82.895287 -0.242787 +v -11.594554 -82.895287 -0.242787 +v -13.899029 -82.892265 -6.277528 +v -13.100969 -82.892265 -6.277528 +v -14.461487 -82.877068 1.588592 +v -12.538511 -82.877068 1.588592 +v -14.364923 -82.872574 -5.996278 +v -12.635076 -82.872574 -5.996278 +v -14.364923 -82.872581 -0.277526 +v -12.635076 -82.872581 -0.277526 +v -14.056625 -82.859695 1.669059 +v -12.943373 -82.859695 1.669059 +v -15.746945 -82.859261 0.952043 +v -11.253053 -82.859261 0.952043 +v -15.488191 -82.857086 -0.200349 +v -11.511807 -82.857086 -0.200349 +v -15.283215 -82.851044 1.251394 +v -11.716784 -82.851044 1.251394 +v -13.744102 -82.837524 -6.277528 +v -13.255896 -82.837524 -6.277528 +v -15.146708 -82.824303 -0.277526 +v -11.853291 -82.824303 -0.277526 +v -15.563002 -82.822548 -0.142749 +v -11.436996 -82.822548 -0.142749 +v -14.727414 -82.822052 1.491854 +v -12.272584 -82.822052 1.491854 +v -15.003810 -82.812981 1.379286 +v -11.996188 -82.812981 1.379286 +v -13.971084 -82.812874 1.669060 +v -13.028914 -82.812874 1.669060 +v -13.582155 -82.809753 -6.277528 +v -13.417843 -82.809753 -6.277528 +v -15.771233 -82.804260 0.198674 +v -11.228765 -82.804260 0.198674 +v -15.771233 -82.804260 0.877474 +v -11.228765 -82.804260 0.877474 +v -15.791909 -82.795418 0.367712 +v -11.208089 -82.795418 0.367712 +v -15.791909 -82.795418 0.708435 +v -11.208089 -82.795418 0.708435 +v -14.375847 -82.793350 1.588593 +v -12.624151 -82.793350 1.588593 +v -15.627609 -82.792717 -0.071731 +v -11.372389 -82.792717 -0.071731 +v -15.798819 -82.792465 0.538074 +v -11.201180 -82.792465 0.538074 +v -15.233443 -82.774223 -0.268775 +v -11.766555 -82.774223 -0.268775 +v -13.881638 -82.774025 1.669060 +v -13.118361 -82.774025 1.669060 +v -15.680056 -82.768501 0.010552 +v -11.319942 -82.768501 0.010552 +v -15.702936 -82.757942 0.952043 +v -11.297062 -82.757942 0.952043 +v -15.714540 -82.752586 0.939908 +v -11.285458 -82.752586 0.939908 +v -15.473267 -82.752563 1.108765 +v -11.526731 -82.752563 1.108765 +v -15.718751 -82.750641 0.101607 +v -11.281247 -82.750641 0.101607 +v -15.724482 -82.747993 0.926095 +v -11.275517 -82.747993 0.926095 +v -15.732559 -82.744263 0.910880 +v -11.267439 -82.744263 0.910880 +v -13.789030 -82.743462 1.669060 +v -13.210968 -82.743462 1.669060 +v -15.738613 -82.741470 0.894565 +v -11.261385 -82.741470 0.894565 +v -15.742524 -82.739662 0.198674 +v -11.257474 -82.739662 0.198674 +v -15.742524 -82.739662 0.877474 +v -11.257474 -82.739662 0.877474 +v -14.199967 -82.739380 -5.996277 +v -12.800031 -82.739380 -5.996277 +v -14.199967 -82.739388 -0.277526 +v -12.800031 -82.739388 -0.277526 +v -15.317550 -82.725662 -0.242787 +v -11.682448 -82.725662 -0.242787 +v -14.282949 -82.717773 1.588593 +v -12.717049 -82.717773 1.588593 +v -14.635670 -82.714386 1.491855 +v -12.364328 -82.714386 1.491855 +v -13.712679 -82.702255 1.662447 +v -13.287319 -82.702255 1.662447 +v -15.191803 -82.692719 1.251395 +v -11.808195 -82.692719 1.251395 +v -14.910095 -82.680222 1.379286 +v -12.089903 -82.680222 1.379286 +v -15.396481 -82.680092 -0.200349 +v -11.603518 -82.680092 -0.200349 +v -15.053431 -82.678497 -0.277526 +v -11.946568 -82.678497 -0.277526 +v -15.654360 -82.658730 0.952044 +v -11.345638 -82.658730 0.952044 +v -14.183564 -82.650955 1.588593 +v -12.816434 -82.650955 1.588593 +v -15.467841 -82.638893 -0.142749 +v -11.532157 -82.638893 -0.142749 +v -14.014875 -82.635979 -5.996277 +v -12.985123 -82.635979 -5.996277 +v -14.014875 -82.635994 -0.277526 +v -12.985123 -82.635994 -0.277526 +v -15.135253 -82.620743 -0.268775 +v -11.864745 -82.620743 -0.268775 +v -14.534515 -82.615509 1.491855 +v -12.465483 -82.615509 1.491855 +v -15.675070 -82.604568 0.198674 +v -11.324928 -82.604568 0.198674 +v -15.675070 -82.604576 0.877475 +v -11.324928 -82.604576 0.877475 +v -15.529469 -82.603317 -0.071730 +v -11.470530 -82.603317 -0.071730 +v -15.694870 -82.593918 0.367713 +v -11.305128 -82.593918 0.367713 +v -15.694870 -82.593918 0.708436 +v -11.305128 -82.593918 0.708436 +v -14.078514 -82.593452 1.588593 +v -12.921484 -82.593452 1.588593 +v -15.701488 -82.590355 0.538075 +v -11.298510 -82.590355 0.538075 +v -15.372114 -82.577362 1.108766 +v -11.627884 -82.577362 1.108766 +v -15.579494 -82.574432 0.010553 +v -11.420504 -82.574432 0.010553 +v -13.814972 -82.565353 -5.996277 +v -13.185026 -82.565353 -5.996277 +v -13.814972 -82.565361 -0.277525 +v -13.185026 -82.565361 -0.277525 +v -15.214596 -82.564735 -0.242787 +v -11.785402 -82.564735 -0.242787 +v -15.601320 -82.561829 0.952044 +v -11.398678 -82.561829 0.952044 +v -14.804697 -82.556526 1.379286 +v -12.195301 -82.556526 1.379286 +v -15.612391 -82.555443 0.939909 +v -11.387608 -82.555443 0.939909 +v -15.616405 -82.553123 0.101608 +v -11.383593 -82.553123 0.101608 +v -15.621871 -82.549965 0.926096 +v -11.378127 -82.549965 0.926096 +v -13.968671 -82.545738 1.588593 +v -13.031327 -82.545738 1.588593 +v -15.629576 -82.545517 0.910881 +v -11.370422 -82.545517 0.910881 +v -15.086373 -82.543358 1.251395 +v -11.913625 -82.543358 1.251395 +v -15.635351 -82.542183 0.894566 +v -11.364647 -82.542183 0.894566 +v -14.947281 -82.541779 -0.277525 +v -12.052717 -82.541779 -0.277525 +v -13.655006 -82.541473 1.113725 +v -13.344992 -82.541473 1.113725 +v -15.639082 -82.540031 0.198674 +v -11.360916 -82.540031 0.198674 +v -15.639082 -82.540031 0.877475 +v -11.360916 -82.540031 0.877475 +v -13.654718 -82.536903 1.113725 +v -13.345451 -82.535698 1.113725 +v -13.653364 -82.530655 1.113725 +v -13.346790 -82.530167 1.113725 +v -13.606007 -82.529518 -5.996277 +v -13.393991 -82.529518 -5.996277 +v -13.606007 -82.529533 -0.277525 +v -13.393991 -82.529533 -0.277525 +v -14.424788 -82.526237 1.491855 +v -12.575210 -82.526237 1.491855 +v -13.651215 -82.525291 1.113725 +v -13.349360 -82.524185 1.113725 +v -13.647848 -82.519806 1.113725 +v -13.680079 -82.518906 1.352274 +v -13.319920 -82.518906 1.352274 +v -13.352946 -82.518776 1.113725 +v -13.644061 -82.515488 1.113725 +v -13.356888 -82.514595 1.113725 +v -13.679555 -82.513100 1.351784 +v -13.320443 -82.513100 1.351784 +v -15.289055 -82.512177 -0.200348 +v -11.710943 -82.512177 -0.200348 +v -13.639022 -82.511398 1.113725 +v -13.362024 -82.510719 1.113725 +v -13.634006 -82.508575 1.113725 +v -13.854944 -82.508217 1.588593 +v -13.145054 -82.508217 1.588593 +v -13.367154 -82.508064 1.113725 +v -13.678109 -82.507439 1.351405 +v -13.321889 -82.507439 1.351405 +v -13.628086 -82.506439 1.113725 +v -13.373241 -82.506119 1.113725 +v -13.622230 -82.505394 1.113725 +v -13.377769 -82.505394 1.113725 +v -13.675779 -82.502075 1.351147 +v -13.324219 -82.502075 1.351147 +v -13.499999 -82.499519 1.113725 +v -13.672625 -82.497147 1.351017 +v -13.327374 -82.497147 1.351017 +v -13.705697 -82.496262 1.596014 +v -13.294301 -82.496262 1.596014 +v -13.294544 -82.493256 1.594956 +v -13.668728 -82.492775 1.351017 +v -13.331270 -82.492775 1.351017 +v -13.294969 -82.490654 1.594051 +v -13.704988 -82.490456 1.593982 +v -13.664188 -82.489082 1.351147 +v -13.335810 -82.489082 1.351147 +v -13.295912 -82.487007 1.592798 +v -13.659124 -82.486153 1.351405 +v -13.340874 -82.486153 1.351405 +v -13.296537 -82.485199 1.592183 +v -13.703343 -82.484894 1.592079 +v -13.653666 -82.484077 1.351784 +v -13.346333 -82.484077 1.351784 +v -13.647952 -82.482895 1.352274 +v -13.352046 -82.482895 1.352274 +v -13.298151 -82.481537 1.590956 +v -13.738276 -82.481186 1.588593 +v -13.261723 -82.481186 1.588593 +v -13.701029 -82.480019 1.590454 +v -15.023513 -82.476822 -0.268774 +v -11.976485 -82.476822 -0.268774 +v -13.302202 -82.475258 1.588910 +v -13.696939 -82.474228 1.588582 +v -13.693844 -82.471031 1.587589 +v -13.306155 -82.471031 1.587589 +v -13.692084 -82.469513 1.587131 +v -15.543924 -82.467445 0.952044 +v -11.456074 -82.467445 0.952044 +v -13.310730 -82.467438 1.586525 +v -13.687340 -82.466232 1.586185 +v -15.356373 -82.464653 -0.142748 +v -11.643625 -82.464653 -0.142748 +v -13.684191 -82.464584 1.585745 +v -13.315991 -82.464493 1.585723 +v -13.681040 -82.463280 1.585429 +v -13.678734 -82.462524 1.585269 +v -13.321327 -82.462509 1.585265 +v -13.675605 -82.461754 1.585141 +v -13.673035 -82.461327 1.585109 +v -13.326963 -82.461327 1.585109 +v -13.620492 -82.455467 1.585109 +v -13.379506 -82.455467 1.585109 +v -13.499999 -82.449982 1.585109 +v -14.307398 -82.447319 1.491855 +v -12.692600 -82.447319 1.491855 +v -14.688487 -82.442932 1.379286 +v -12.311511 -82.442932 1.379286 +v -15.414510 -82.423622 -0.071730 +v -11.585488 -82.423622 -0.071730 +v -14.829139 -82.415283 -0.277525 +v -12.170859 -82.415283 -0.277525 +v -15.561395 -82.414314 0.198675 +v -11.438603 -82.414314 0.198675 +v -15.561395 -82.414314 0.877475 +v -11.438603 -82.414314 0.877475 +v -15.097434 -82.413834 -0.242786 +v -11.902564 -82.413834 -0.242786 +v -15.255448 -82.412086 1.108766 +v -11.744550 -82.412086 1.108766 +v -14.967798 -82.404198 1.251395 +v -12.032200 -82.404198 1.251395 +v -15.580161 -82.401924 0.367713 +v -11.419837 -82.401924 0.367713 +v -15.580161 -82.401924 0.708436 +v -11.419837 -82.401924 0.708436 +v -15.586432 -82.397789 0.538075 +v -11.413567 -82.397789 0.538075 +v -15.461703 -82.390305 0.010553 +v -11.538295 -82.390305 0.010553 +v -14.183318 -82.379402 1.491855 +v -12.816680 -82.379402 1.491855 +v -15.482292 -82.375778 0.952044 +v -11.517706 -82.375778 0.952044 +v -15.492735 -82.368401 0.939909 +v -11.507263 -82.368401 0.939909 +v -15.496523 -82.365730 0.101608 +v -11.503475 -82.365730 0.101608 +v -15.501678 -82.362091 0.926096 +v -11.498320 -82.362091 0.926096 +v -15.508948 -82.356956 0.910881 +v -11.491050 -82.356956 0.910881 +v -15.166806 -82.354721 -0.200348 +v -11.833192 -82.354721 -0.200348 +v -15.514396 -82.353111 0.894566 +v -11.485602 -82.353111 0.894566 +v -15.517915 -82.350632 0.198675 +v -11.482083 -82.350632 0.198675 +v -15.517915 -82.350632 0.877475 +v -11.482083 -82.350632 0.877475 +v -14.899148 -82.343658 -0.268774 +v -12.100850 -82.343658 -0.268774 +v -14.562428 -82.340378 1.379287 +v -12.437571 -82.340378 1.379287 +v -14.053576 -82.323044 1.491856 +v -12.946423 -82.323044 1.491856 +v -15.229523 -82.301277 -0.142748 +v -11.770475 -82.301277 -0.142748 +v -14.699984 -82.300049 -0.277525 +v -12.300014 -82.300049 -0.277525 +v -15.416551 -82.287003 0.952044 +v -11.583447 -82.287003 0.952044 +v -13.919246 -82.278717 1.491856 +v -13.080752 -82.278717 1.491856 +v -14.837061 -82.276405 1.251395 +v -12.162937 -82.276405 1.251395 +v -14.967036 -82.274208 -0.242786 +v -12.032962 -82.274208 -0.242786 +v -15.124235 -82.258102 1.108767 +v -11.875763 -82.258102 1.108767 +v -15.283687 -82.255119 -0.071730 +v -11.716311 -82.255119 -0.071730 +v -14.427567 -82.249710 1.379287 +v -12.572432 -82.249710 1.379287 +v -13.781442 -82.246796 1.491856 +v -13.218556 -82.246796 1.491856 +v -15.431123 -82.235008 0.198675 +v -11.568875 -82.235008 0.198675 +v -15.431123 -82.235008 0.877476 +v -11.568875 -82.235008 0.877476 +v -13.641306 -82.227531 1.491856 +v -13.358692 -82.227531 1.491856 +v -14.763190 -82.222359 -0.268774 +v -12.236808 -82.222359 -0.268774 +v -13.499999 -82.221100 1.491856 +v -15.448703 -82.220993 0.367714 +v -11.551295 -82.220993 0.367714 +v -15.448703 -82.220993 0.708437 +v -11.551295 -82.220993 0.708437 +v -15.327656 -82.217659 0.010554 +v -11.672342 -82.217659 0.010554 +v -15.454578 -82.216301 0.538076 +v -11.545420 -82.216301 0.538076 +v -15.030745 -82.209030 -0.200347 +v -11.969254 -82.209030 -0.200347 +v -15.346838 -82.201309 0.952045 +v -11.653160 -82.201309 0.952045 +v -14.560885 -82.197037 -0.277524 +v -12.439113 -82.197037 -0.277524 +v -15.356567 -82.193024 0.939910 +v -11.643431 -82.193024 0.939910 +v -15.360097 -82.190010 0.101609 +v -11.639901 -82.190010 0.101609 +v -15.364900 -82.185921 0.926097 +v -11.635098 -82.185921 0.926097 +v -15.371672 -82.180153 0.910882 +v -11.628326 -82.180153 0.910882 +v -15.376748 -82.175827 0.894567 +v -11.623250 -82.175827 0.894567 +v -15.380026 -82.173027 0.198675 +v -11.619972 -82.173027 0.198675 +v -15.380026 -82.173035 0.877476 +v -11.619972 -82.173035 0.877476 +v -14.285019 -82.171684 1.379287 +v -12.714979 -82.171684 1.379287 +v -14.695244 -82.161034 1.251396 +v -12.304754 -82.161034 1.251396 +v -15.088342 -82.150108 -0.142747 +v -11.911656 -82.150108 -0.142747 +v -14.824481 -82.147018 -0.242785 +v -12.175517 -82.147018 -0.242785 +v -15.273297 -82.118889 0.952045 +v -11.726701 -82.118889 0.952045 +v -14.979564 -82.116684 1.108767 +v -12.020434 -82.116684 1.108767 +v -14.616764 -82.113922 -0.268773 +v -12.383234 -82.113922 -0.268773 +v -14.412995 -82.107109 -0.277524 +v -12.587003 -82.107109 -0.277524 +v -14.135966 -82.106941 1.379287 +v -12.864032 -82.106941 1.379287 +v -15.138085 -82.099220 -0.071729 +v -11.861913 -82.099220 -0.071729 +v -14.881998 -82.076324 -0.200347 +v -12.118000 -82.076324 -0.200347 +v -15.285302 -82.068100 0.198676 +v -11.714696 -82.068100 0.198676 +v -15.285302 -82.068108 0.877476 +v -11.714696 -82.068108 0.877476 +v -14.543523 -82.059029 1.251396 +v -12.456475 -82.059029 1.251396 +v -15.178464 -82.057907 0.010554 +v -11.821534 -82.057907 0.010554 +v -13.981644 -82.056015 1.379287 +v -13.018354 -82.056015 1.379287 +v -15.301555 -82.052567 0.367714 +v -11.698443 -82.052567 0.367714 +v -15.301555 -82.052567 0.708437 +v -11.698443 -82.052567 0.708437 +v -15.306986 -82.047371 0.538076 +v -11.693012 -82.047371 0.538076 +v -15.196080 -82.039894 0.952045 +v -11.803918 -82.039894 0.952045 +v -14.670951 -82.033325 -0.242785 +v -12.329047 -82.033325 -0.242785 +v -14.257541 -82.030991 -0.277524 +v -12.742457 -82.030991 -0.277524 +v -15.205015 -82.030746 0.939910 +v -11.794983 -82.030746 0.939910 +v -15.208257 -82.027435 0.101609 +v -11.791741 -82.027435 0.101609 +v -15.212668 -82.022919 0.926097 +v -11.787330 -82.022919 0.926097 +v -13.823330 -82.019341 1.379287 +v -13.176668 -82.019341 1.379287 +v -14.461085 -82.019249 -0.268773 +v -12.538913 -82.019249 -0.268773 +v -15.218888 -82.016556 0.910882 +v -11.781110 -82.016556 0.910882 +v -14.934000 -82.012405 -0.142747 +v -12.065998 -82.012405 -0.142747 +v -15.223549 -82.011787 0.894567 +v -11.776449 -82.011787 0.894567 +v -15.226560 -82.008705 0.198676 +v -11.773438 -82.008705 0.198676 +v -15.226560 -82.008713 0.877476 +v -11.773438 -82.008713 0.877476 +v -13.662337 -81.997215 1.379287 +v -13.337661 -81.997215 1.379287 +v -13.499999 -81.989815 1.379287 +v -14.822632 -81.989014 1.108767 +v -12.177366 -81.989014 1.108767 +v -14.383155 -81.971245 1.251396 +v -12.616843 -81.971245 1.251396 +v -14.095808 -81.969330 -0.277524 +v -12.904190 -81.969330 -0.277524 +v -15.115348 -81.964493 0.952045 +v -11.884650 -81.964493 0.952045 +v -14.721801 -81.957687 -0.200347 +v -12.278197 -81.957687 -0.200347 +v -14.978909 -81.957207 -0.071729 +v -12.021090 -81.957207 -0.071729 +v -14.297442 -81.939133 -0.268773 +v -12.702556 -81.939133 -0.268773 +v -14.507718 -81.934059 -0.242785 +v -12.492280 -81.934059 -0.242785 +v -13.929139 -81.922630 -0.277524 +v -13.070859 -81.922630 -0.277524 +v -15.125108 -81.914940 0.198676 +v -11.874890 -81.914940 0.198676 +v -15.125108 -81.914940 0.877476 +v -11.874890 -81.914940 0.877476 +v -15.015364 -81.912392 0.010554 +v -11.984634 -81.912392 0.010554 +v -14.215469 -81.898407 1.251396 +v -12.784529 -81.898407 1.251396 +v -15.139902 -81.898010 0.367714 +v -11.860096 -81.898010 0.367714 +v -15.139902 -81.898010 0.708437 +v -11.860096 -81.898010 0.708437 +v -15.031268 -81.892845 0.952045 +v -11.968730 -81.892845 0.952045 +v -15.144846 -81.892349 0.538076 +v -11.855152 -81.892349 0.538076 +v -13.758914 -81.891281 -0.277524 +v -13.241084 -81.891281 -0.277524 +v -14.767775 -81.889305 -0.142747 +v -12.232224 -81.889305 -0.142747 +v -15.039335 -81.882935 0.939910 +v -11.960663 -81.882935 0.939910 +v -15.042262 -81.879333 0.101609 +v -11.957736 -81.879333 0.101609 +v -14.654741 -81.876137 1.108768 +v -12.345257 -81.876137 1.108768 +v -13.586543 -81.875542 -0.277524 +v -13.413455 -81.875542 -0.277524 +v -15.046246 -81.874435 0.926097 +v -11.953753 -81.874435 0.926097 +v -14.127192 -81.874222 -0.268773 +v -12.872807 -81.874222 -0.268773 +v -15.051859 -81.867538 0.910882 +v -11.948139 -81.867538 0.910882 +v -15.056068 -81.862366 0.894567 +v -11.943930 -81.862366 0.894567 +v -15.058786 -81.859024 0.198676 +v -11.941212 -81.859024 0.198676 +v -15.058786 -81.859024 0.877476 +v -11.941212 -81.859024 0.877476 +v -14.551479 -81.854111 -0.200347 +v -12.448519 -81.854111 -0.200347 +v -14.336134 -81.850052 -0.242785 +v -12.663864 -81.850052 -0.242785 +v -14.041855 -81.841125 1.251396 +v -12.958143 -81.841125 1.251396 +v -14.807478 -81.830254 -0.071728 +v -12.192520 -81.830254 -0.071728 +v -14.944016 -81.825104 0.952046 +v -12.055983 -81.825104 0.952046 +v -13.951743 -81.825066 -0.268773 +v -13.048255 -81.825066 -0.268773 +v -13.863750 -81.799858 1.251397 +v -13.136249 -81.799858 1.251397 +v -13.772552 -81.792061 -0.268773 +v -13.227447 -81.792061 -0.268773 +v -14.839708 -81.782310 0.010555 +v -12.160290 -81.782310 0.010555 +v -14.157622 -81.781990 -0.242785 +v -12.842376 -81.781990 -0.242785 +v -14.591044 -81.781830 -0.142746 +v -12.408954 -81.781830 -0.142746 +v -14.477282 -81.778999 1.108768 +v -12.522717 -81.778999 1.108768 +v -14.951829 -81.776756 0.198676 +v -12.048169 -81.776756 0.198676 +v -14.951829 -81.776756 0.877477 +v -12.048169 -81.776756 0.877477 +v -13.591102 -81.775490 -0.268773 +v -13.408896 -81.775490 -0.268773 +v -13.682631 -81.774963 1.251397 +v -13.317367 -81.774963 1.251397 +v -13.499999 -81.766647 1.251397 +v -14.372445 -81.766457 -0.200346 +v -12.627553 -81.766457 -0.200346 +v -14.853768 -81.761398 0.952046 +v -12.146230 -81.761398 0.952046 +v -14.965045 -81.758568 0.367715 +v -12.034953 -81.758568 0.367715 +v -14.965045 -81.758568 0.708438 +v -12.034953 -81.758568 0.708438 +v -14.969462 -81.752487 0.538077 +v -12.030536 -81.752487 0.538077 +v -14.860900 -81.750793 0.939911 +v -12.139098 -81.750793 0.939911 +v -14.863487 -81.746941 0.101609 +v -12.136511 -81.746941 0.101609 +v -14.867008 -81.741707 0.926098 +v -12.132990 -81.741707 0.926098 +v -14.871972 -81.734322 0.910883 +v -12.128026 -81.734322 0.910883 +v -13.973661 -81.730446 -0.242785 +v -13.026337 -81.730446 -0.242785 +v -14.875693 -81.728790 0.894568 +v -12.124305 -81.728790 0.894568 +v -14.878096 -81.725212 0.198677 +v -12.121902 -81.725212 0.198677 +v -14.878096 -81.725212 0.877477 +v -12.121902 -81.725212 0.877477 +v -14.625213 -81.719414 -0.071728 +v -12.374785 -81.719414 -0.071728 +v -14.760715 -81.701866 0.952046 +v -12.239283 -81.701866 0.952046 +v -14.291723 -81.698395 1.108768 +v -12.708275 -81.698395 1.108768 +v -13.785776 -81.695847 -0.242784 +v -13.214222 -81.695847 -0.242784 +v -14.186181 -81.695442 -0.200346 +v -12.813817 -81.695442 -0.200346 +v -14.405273 -81.690880 -0.142746 +v -12.594725 -81.690880 -0.142746 +v -13.595522 -81.678474 -0.242784 +v -13.404476 -81.678474 -0.242784 +v -14.652950 -81.668739 0.010555 +v -12.347048 -81.668739 0.010555 +v -14.766860 -81.654663 0.198677 +v -12.233138 -81.654663 0.198677 +v -14.766860 -81.654663 0.877477 +v -12.233138 -81.654663 0.877477 +v -14.665051 -81.646637 0.952046 +v -12.334948 -81.646637 0.952046 +v -13.994231 -81.641663 -0.200346 +v -13.005767 -81.641663 -0.200346 +v -14.671188 -81.635422 0.939911 +v -12.328810 -81.635422 0.939911 +v -14.778393 -81.635361 0.367715 +v -12.221605 -81.635361 0.367715 +v -14.778393 -81.635361 0.708438 +v -12.221605 -81.635361 0.708438 +v -14.099606 -81.635010 1.108768 +v -12.900393 -81.635010 1.108768 +v -14.673414 -81.631355 0.101610 +v -12.326584 -81.631355 0.101610 +v -14.782248 -81.628906 0.538077 +v -12.217751 -81.628906 0.538077 +v -14.676444 -81.625824 0.926098 +v -12.323554 -81.625824 0.926098 +v -14.433623 -81.625610 -0.071728 +v -12.566375 -81.625610 -0.071728 +v -14.680716 -81.618019 0.910883 +v -12.319283 -81.618019 0.910883 +v -14.212000 -81.617195 -0.142746 +v -12.787998 -81.617195 -0.142746 +v -14.683918 -81.612167 0.894568 +v -12.316080 -81.612167 0.894568 +v -14.685987 -81.608391 0.198677 +v -12.314011 -81.608391 0.198677 +v -14.685987 -81.608391 0.877477 +v -12.314011 -81.608391 0.877477 +v -13.798186 -81.605553 -0.200346 +v -13.201812 -81.605553 -0.200346 +v -14.566970 -81.595818 0.952046 +v -12.433028 -81.595818 0.952046 +v -13.902518 -81.589348 1.108768 +v -13.097480 -81.589348 1.108768 +v -13.599670 -81.587425 -0.200346 +v -13.400328 -81.587425 -0.200346 +v -14.456638 -81.572624 0.010555 +v -12.543360 -81.572624 0.010555 +v -13.702096 -81.561798 1.108768 +v -13.297902 -81.561798 1.108768 +v -14.012828 -81.561386 -0.142746 +v -12.987170 -81.561386 -0.142746 +v -13.499999 -81.552597 1.108768 +v -14.571692 -81.549637 0.198677 +v -12.428307 -81.549637 0.198677 +v -14.571692 -81.549637 0.877477 +v -12.428307 -81.549637 0.877477 +v -14.234299 -81.549614 -0.071728 +v -12.765699 -81.549614 -0.071728 +v -14.466678 -81.549515 0.952046 +v -12.533320 -81.549515 0.952046 +v -14.471770 -81.537788 0.939911 +v -12.528228 -81.537788 0.939911 +v -14.473618 -81.533531 0.101610 +v -12.526381 -81.533531 0.101610 +v -14.581448 -81.529373 0.367715 +v -12.418550 -81.529373 0.367715 +v -14.581448 -81.529373 0.708438 +v -12.418550 -81.529373 0.708438 +v -14.476132 -81.527748 0.926098 +v -12.523866 -81.527748 0.926098 +v -13.809406 -81.523926 -0.142746 +v -13.190592 -81.523926 -0.142746 +v -14.584708 -81.522606 0.538077 +v -12.415290 -81.522606 0.538077 +v -14.479677 -81.519585 0.910883 +v -12.520321 -81.519585 0.910883 +v -14.482334 -81.513466 0.894568 +v -12.517664 -81.513466 0.894568 +v -14.484050 -81.509514 0.198677 +v -12.515948 -81.509514 0.198677 +v -14.484050 -81.509514 0.877477 +v -12.515948 -81.509514 0.877477 +v -14.364383 -81.507820 0.952046 +v -12.635615 -81.507820 0.952046 +v -13.603420 -81.505112 -0.142746 +v -13.396578 -81.505112 -0.142746 +v -14.252399 -81.494759 0.010555 +v -12.747599 -81.494759 0.010555 +v -14.028889 -81.492065 -0.071728 +v -12.971109 -81.492065 -0.071728 +v -14.260296 -81.470825 0.952046 +v -12.739702 -81.470825 0.952046 +v -14.367895 -81.462524 0.198677 +v -12.632103 -81.462524 0.198677 +v -14.367895 -81.462532 0.877477 +v -12.632103 -81.462532 0.877477 +v -14.264301 -81.458687 0.939911 +v -12.735697 -81.458687 0.939911 +v -14.265754 -81.454285 0.101610 +v -12.734244 -81.454285 0.101610 +v -13.819096 -81.453423 -0.071728 +v -13.180902 -81.453423 -0.071728 +v -14.267732 -81.448288 0.926098 +v -12.732266 -81.448288 0.926098 +v -14.375795 -81.441475 0.367715 +v -12.624203 -81.441475 0.367715 +v -14.375795 -81.441475 0.708438 +v -12.624203 -81.441475 0.708438 +v -14.270519 -81.439842 0.910883 +v -12.729479 -81.439842 0.910883 +v -14.154633 -81.438614 0.952046 +v -12.845366 -81.438614 0.952046 +v -14.041925 -81.435783 0.010556 +v -12.958073 -81.435783 0.010556 +v -14.378436 -81.434441 0.538078 +v -12.621562 -81.434441 0.538078 +v -13.606659 -81.434029 -0.071728 +v -13.393339 -81.434029 -0.071728 +v -14.272609 -81.433510 0.894569 +v -12.727389 -81.433510 0.894569 +v -14.273958 -81.429420 0.198677 +v -12.726040 -81.429420 0.198677 +v -14.273958 -81.429420 0.877478 +v -12.726040 -81.429420 0.877478 +v -14.047613 -81.411240 0.952047 +v -12.952385 -81.411240 0.952047 +v -14.050498 -81.398781 0.939912 +v -12.949500 -81.398781 0.939912 +v -13.826962 -81.396194 0.010556 +v -13.173037 -81.396194 0.010556 +v -14.051545 -81.394264 0.101610 +v -12.948453 -81.394264 0.101610 +v -14.157110 -81.394043 0.198677 +v -12.842888 -81.394043 0.198677 +v -14.157110 -81.394043 0.877478 +v -12.842888 -81.394043 0.877478 +v -13.939459 -81.388763 0.952047 +v -13.060539 -81.388763 0.952047 +v -14.052969 -81.388115 0.926099 +v -12.947029 -81.388115 0.926099 +v -14.054977 -81.379448 0.910884 +v -12.945021 -81.379448 0.910884 +v -13.609288 -81.376320 0.010556 +v -13.390710 -81.376320 0.010556 +v -14.056482 -81.372955 0.894569 +v -12.943516 -81.372955 0.894569 +v -14.163092 -81.372368 0.367716 +v -12.836906 -81.372368 0.367716 +v -14.163092 -81.372368 0.708439 +v -12.836906 -81.372368 0.708439 +v -13.830393 -81.371231 0.952047 +v -13.169605 -81.371231 0.952047 +v -14.057454 -81.368759 0.198677 +v -12.942544 -81.368759 0.198677 +v -14.057454 -81.368759 0.877478 +v -12.942544 -81.368759 0.877478 +v -14.165092 -81.365120 0.538078 +v -12.834907 -81.365120 0.538078 +v -13.720643 -81.358688 0.952047 +v -13.279355 -81.358688 0.952047 +v -13.832134 -81.358566 0.939912 +v -13.167864 -81.358566 0.939912 +v -13.832766 -81.353973 0.101610 +v -13.167233 -81.353973 0.101610 +v -13.610435 -81.351151 0.952047 +v -13.389563 -81.351151 0.952047 +v -13.499999 -81.348633 0.952047 +v -13.833625 -81.347725 0.926099 +v -13.166373 -81.347725 0.926099 +v -13.941034 -81.344719 0.198677 +v -13.058964 -81.344719 0.198677 +v -13.941034 -81.344727 0.877478 +v -13.058964 -81.344727 0.877478 +v -13.834836 -81.338905 0.910884 +v -13.165162 -81.338905 0.910884 +v -13.611017 -81.338379 0.939912 +v -13.388981 -81.338379 0.939912 +v -13.611228 -81.333740 0.101611 +v -13.388770 -81.333740 0.101611 +v -13.835744 -81.332306 0.894569 +v -13.164254 -81.332306 0.894569 +v -13.836330 -81.328033 0.198678 +v -13.163668 -81.328033 0.198678 +v -13.836330 -81.328033 0.877478 +v -13.163668 -81.328033 0.877478 +v -13.611516 -81.327438 0.926099 +v -13.388482 -81.327438 0.926099 +v -13.945049 -81.322601 0.367716 +v -13.054949 -81.322601 0.367716 +v -13.945049 -81.322601 0.708439 +v -13.054949 -81.322601 0.708439 +v -13.611920 -81.318550 0.910884 +v -13.388078 -81.318550 0.910884 +v -13.946391 -81.315201 0.538078 +v -13.053607 -81.315201 0.538078 +v -13.721408 -81.314972 0.198678 +v -13.278590 -81.314972 0.198678 +v -13.721408 -81.314972 0.877478 +v -13.278590 -81.314972 0.877478 +v -13.612224 -81.311890 0.894569 +v -13.387774 -81.311890 0.894569 +v -13.612420 -81.307587 0.198678 +v -13.387578 -81.307587 0.198678 +v -13.612420 -81.307587 0.877478 +v -13.387578 -81.307587 0.877478 +v -13.499999 -81.305031 0.198678 +v -13.499999 -81.305031 0.877478 +v -13.723424 -81.292580 0.367716 +v -13.276574 -81.292580 0.367716 +v -13.723424 -81.292580 0.708439 +v -13.276574 -81.292580 0.708439 +v -13.724097 -81.285095 0.538078 +v -13.275901 -81.285095 0.538078 +v -13.499999 -81.282547 0.367716 +v -13.499999 -81.282547 0.708439 +v -13.499999 -81.275032 0.538078 + +f 6557 6555 6553 +f 6555 6560 6553 +f 6560 6556 6553 +f 6559 6557 6553 +f 6554 6559 6553 +f 6556 6554 6553 +f 6556 6558 6554 +f 6558 6569 6554 +f 6569 6562 6554 +f 6562 6559 6554 +f 6565 6560 6555 +f 6563 6565 6555 +f 6561 6563 6555 +f 6557 6561 6555 +f 6560 6576 6556 +f 6576 6567 6556 +f 6567 6558 6556 +f 6568 6561 6557 +f 6575 6568 6557 +f 6559 6575 6557 +f 6567 6574 6558 +f 6574 6589 6558 +f 6589 6569 6558 +f 6562 6570 6559 +f 6570 6575 6559 +f 6587 6576 6560 +f 6565 6587 6560 +f 6566 6563 6561 +f 6577 6566 6561 +f 6568 6577 6561 +f 6577 6588 6566 +f 6576 6612 6567 +f 6612 6602 6567 +f 6602 6574 6567 +f 6603 6577 6568 +f 6611 6603 6568 +f 6575 6611 6568 +f 6590 6575 6570 +f 6602 6610 6574 +f 6610 6623 6574 +f 6623 6589 6574 +f 6590 6611 6575 +f 6621 6612 6576 +f 6587 6621 6576 +f 6613 6588 6577 +f 6603 6613 6577 +f 6613 6622 6588 +f 6624 6611 6590 +f 6612 6648 6602 +f 6648 6640 6602 +f 6640 6610 6602 +f 6641 6613 6603 +f 6647 6641 6603 +f 6611 6647 6603 +f 6640 6646 6610 +f 6646 6654 6610 +f 6654 6623 6610 +f 6624 6647 6611 +f 6650 6648 6612 +f 6621 6650 6612 +f 6649 6622 6613 +f 6641 6649 6613 +f 6649 6651 6622 +f 6655 6647 6624 +f 6648 6681 6640 +f 6681 6677 6640 +f 6677 6646 6640 +f 6678 6649 6641 +f 6680 6678 6641 +f 6647 6680 6641 +f 6677 6679 6646 +f 6679 6693 6646 +f 6693 6654 6646 +f 6655 6680 6647 +f 6689 6681 6648 +f 6650 6689 6648 +f 6682 6651 6649 +f 6678 6682 6649 +f 6682 6690 6651 +f 6694 6680 6655 +f 6681 6726 6677 +f 6726 6722 6677 +f 6722 6679 6677 +f 6723 6682 6678 +f 6725 6723 6678 +f 6680 6725 6678 +f 6722 6724 6679 +f 6724 6736 6679 +f 6736 6693 6679 +f 6694 6725 6680 +f 6732 6726 6681 +f 6689 6732 6681 +f 6727 6690 6682 +f 6723 6727 6682 +f 6727 6733 6690 +f 6737 6725 6694 +f 6726 6773 6722 +f 6773 6767 6722 +f 6767 6724 6722 +f 6768 6727 6723 +f 6772 6768 6723 +f 6725 6772 6723 +f 6767 6771 6724 +f 6771 6788 6724 +f 6788 6736 6724 +f 6737 6772 6725 +f 6782 6773 6726 +f 6732 6782 6726 +f 6774 6733 6727 +f 6768 6774 6727 +f 6774 6783 6733 +f 6789 6772 6737 +f 6773 6833 6767 +f 6833 6827 6767 +f 6827 6771 6767 +f 6828 6774 6768 +f 6832 6828 6768 +f 6772 6832 6768 +f 6827 6831 6771 +f 6831 6845 6771 +f 6845 6788 6771 +f 6789 6832 6772 +f 6841 6833 6773 +f 6782 6841 6773 +f 6834 6783 6774 +f 6828 6834 6774 +f 6834 6842 6783 +f 6846 6832 6789 +f 6833 6893 6827 +f 6893 6887 6827 +f 6887 6831 6827 +f 6888 6834 6828 +f 6892 6888 6828 +f 6832 6892 6828 +f 6887 6891 6831 +f 6891 6907 6831 +f 6907 6845 6831 +f 6846 6892 6832 +f 6899 6893 6833 +f 6841 6899 6833 +f 6894 6842 6834 +f 6888 6894 6834 +f 6894 6900 6842 +f 6908 6892 6846 +f 6893 6949 6887 +f 6949 6943 6887 +f 6943 6891 6887 +f 6944 6894 6888 +f 6948 6944 6888 +f 6892 6948 6888 +f 6943 6947 6891 +f 6947 6961 6891 +f 6961 6907 6891 +f 6908 6948 6892 +f 6955 6949 6893 +f 6899 6955 6893 +f 6950 6900 6894 +f 6944 6950 6894 +f 6950 6956 6900 +f 6962 6948 6908 +f 6949 7009 6943 +f 7009 7005 6943 +f 7005 6947 6943 +f 6948 7008 6944 +f 7006 6950 6944 +f 7008 7006 6944 +f 7005 7007 6947 +f 7007 7015 6947 +f 7015 6961 6947 +f 6962 7008 6948 +f 7017 7009 6949 +f 6955 7017 6949 +f 7010 6956 6950 +f 7006 7010 6950 +f 7010 7018 6956 +f 7016 7008 6962 +f 7140 7007 7005 +f 7144 7140 7005 +f 7009 7144 7005 +f 7141 7010 7006 +f 7143 7141 7006 +f 7008 7143 7006 +f 7142 7152 7007 +f 7140 7142 7007 +f 7152 7021 7007 +f 7021 7015 7007 +f 7022 7143 7008 +f 7016 7022 7008 +f 7154 7144 7009 +f 7017 7154 7009 +f 7145 7018 7010 +f 7141 7145 7010 +f 7145 7155 7018 +f 7153 7143 7022 +f 7144 7224 7140 +f 7224 7220 7140 +f 7220 7142 7140 +f 7221 7145 7141 +f 7223 7221 7141 +f 7143 7223 7141 +f 7164 7152 7142 +f 7220 7222 7142 +f 7222 7230 7142 +f 7230 7164 7142 +f 7153 7165 7143 +f 7165 7223 7143 +f 7154 7232 7144 +f 7232 7224 7144 +f 7225 7155 7145 +f 7221 7225 7145 +f 7225 7233 7155 +f 7231 7223 7165 +f 7224 7319 7220 +f 7319 7313 7220 +f 7313 7222 7220 +f 7314 7225 7221 +f 7318 7314 7221 +f 7223 7318 7221 +f 7243 7230 7222 +f 7313 7317 7222 +f 7317 7323 7222 +f 7323 7243 7222 +f 7231 7244 7223 +f 7244 7318 7223 +f 7232 7245 7224 +f 7245 7319 7224 +f 7326 7246 7225 +f 7246 7233 7225 +f 7320 7326 7225 +f 7314 7320 7225 +f 7324 7318 7244 +f 7325 7319 7245 +f 7319 7405 7313 +f 7405 7401 7313 +f 7401 7317 7313 +f 7402 7320 7314 +f 7404 7402 7314 +f 7318 7404 7314 +f 7343 7323 7317 +f 7401 7403 7317 +f 7403 7413 7317 +f 7413 7343 7317 +f 7324 7344 7318 +f 7344 7404 7318 +f 7325 7345 7319 +f 7345 7405 7319 +f 7346 7326 7320 +f 7416 7346 7320 +f 7406 7416 7320 +f 7402 7406 7320 +f 7414 7404 7344 +f 7415 7405 7345 +f 7405 7507 7401 +f 7507 7503 7401 +f 7503 7403 7401 +f 7504 7406 7402 +f 7506 7504 7402 +f 7404 7506 7402 +f 7425 7413 7403 +f 7503 7505 7403 +f 7505 7509 7403 +f 7509 7425 7403 +f 7414 7426 7404 +f 7426 7506 7404 +f 7415 7427 7405 +f 7427 7507 7405 +f 7428 7416 7406 +f 7512 7428 7406 +f 7508 7512 7406 +f 7504 7508 7406 +f 7510 7506 7426 +f 7511 7507 7427 +f 7507 7664 7503 +f 7664 7660 7503 +f 7660 7505 7503 +f 7661 7508 7504 +f 7663 7661 7504 +f 7506 7663 7504 +f 7525 7509 7505 +f 7660 7662 7505 +f 7662 7666 7505 +f 7666 7525 7505 +f 7510 7526 7506 +f 7526 7663 7506 +f 7511 7527 7507 +f 7527 7664 7507 +f 7528 7512 7508 +f 7669 7528 7508 +f 7665 7669 7508 +f 7661 7665 7508 +f 7667 7663 7526 +f 7668 7664 7527 +f 7664 7731 7660 +f 7731 7733 7660 +f 7733 7662 7660 +f 7734 7665 7661 +f 7730 7734 7661 +f 7663 7730 7661 +f 7674 7666 7662 +f 7733 7729 7662 +f 7729 7725 7662 +f 7725 7674 7662 +f 7667 7675 7663 +f 7675 7730 7663 +f 7668 7676 7664 +f 7676 7731 7664 +f 7677 7669 7665 +f 7728 7677 7665 +f 7732 7728 7665 +f 7734 7732 7665 +f 7726 7730 7675 +f 7727 7731 7676 +f 7729 7803 7725 +f 7804 7730 7726 +f 7805 7731 7727 +f 7732 7806 7728 +f 7733 7900 7729 +f 7900 7896 7729 +f 7896 7890 7729 +f 7890 7803 7729 +f 7897 7734 7730 +f 7804 7897 7730 +f 7805 7898 7731 +f 7898 7733 7731 +f 7893 7806 7732 +f 7899 7893 7732 +f 7901 7899 7732 +f 7734 7901 7732 +f 7898 7900 7733 +f 7897 7901 7734 +f 7891 7897 7804 +f 7892 7898 7805 +f 7896 7940 7890 +f 7941 7897 7891 +f 7942 7898 7892 +f 7899 7943 7893 +f 7900 7994 7896 +f 7994 7990 7896 +f 7990 7986 7896 +f 7986 7940 7896 +f 7991 7901 7897 +f 7941 7991 7897 +f 7942 7992 7898 +f 7992 7900 7898 +f 7989 7943 7899 +f 7993 7989 7899 +f 7995 7993 7899 +f 7901 7995 7899 +f 7992 7994 7900 +f 7991 7995 7901 +f 7987 7991 7941 +f 7988 7992 7942 +f 7990 8030 7986 +f 8031 7991 7987 +f 8032 7992 7988 +f 7993 8033 7989 +f 7994 8090 7990 +f 8090 8084 7990 +f 8084 8078 7990 +f 8078 8030 7990 +f 8085 7995 7991 +f 8031 8085 7991 +f 8032 8086 7992 +f 8086 7994 7992 +f 8081 8033 7993 +f 8087 8081 7993 +f 8091 8087 7993 +f 7995 8091 7993 +f 8086 8090 7994 +f 8085 8091 7995 +f 8079 8085 8031 +f 8080 8086 8032 +f 8084 8124 8078 +f 8125 8085 8079 +f 8126 8086 8080 +f 8087 8127 8081 +f 8090 8186 8084 +f 8186 8178 8084 +f 8178 8174 8084 +f 8174 8124 8084 +f 8179 8091 8085 +f 8125 8179 8085 +f 8126 8180 8086 +f 8180 8090 8086 +f 8177 8127 8087 +f 8181 8177 8087 +f 8187 8181 8087 +f 8091 8187 8087 +f 8180 8186 8090 +f 8179 8187 8091 +f 8175 8179 8125 +f 8176 8180 8126 +f 8178 8210 8174 +f 8211 8179 8175 +f 8212 8180 8176 +f 8181 8213 8177 +f 8186 8260 8178 +f 8260 8254 8178 +f 8254 8248 8178 +f 8248 8210 8178 +f 8255 8187 8179 +f 8211 8255 8179 +f 8212 8256 8180 +f 8256 8186 8180 +f 8251 8213 8181 +f 8257 8251 8181 +f 8261 8257 8181 +f 8187 8261 8181 +f 8256 8260 8186 +f 8255 8261 8187 +f 8249 8255 8211 +f 8250 8256 8212 +f 8254 8294 8248 +f 8295 8255 8249 +f 8296 8256 8250 +f 8257 8297 8251 +f 8260 8405 8254 +f 8405 8401 8254 +f 8401 8391 8254 +f 8391 8294 8254 +f 8402 8261 8255 +f 8295 8402 8255 +f 8296 8403 8256 +f 8403 8260 8256 +f 8394 8297 8257 +f 8404 8394 8257 +f 8406 8404 8257 +f 8261 8406 8257 +f 8403 8405 8260 +f 8402 8406 8261 +f 8392 8402 8295 +f 8393 8403 8296 +f 8401 8425 8391 +f 8426 8402 8392 +f 8427 8403 8393 +f 8404 8428 8394 +f 8405 8470 8401 +f 8470 8464 8401 +f 8464 8455 8401 +f 8455 8425 8401 +f 8465 8406 8402 +f 8426 8465 8402 +f 8427 8466 8403 +f 8466 8405 8403 +f 8458 8428 8404 +f 8467 8458 8404 +f 8471 8467 8404 +f 8406 8471 8404 +f 8466 8470 8405 +f 8465 8471 8406 +f 8456 8465 8426 +f 8457 8466 8427 +f 8464 8488 8455 +f 8489 8465 8456 +f 8490 8466 8457 +f 8467 8491 8458 +f 8470 8528 8464 +f 8528 8524 8464 +f 8524 8514 8464 +f 8514 8488 8464 +f 8525 8471 8465 +f 8489 8525 8465 +f 8490 8526 8466 +f 8526 8470 8466 +f 8517 8491 8467 +f 8527 8517 8467 +f 8529 8527 8467 +f 8471 8529 8467 +f 8526 8528 8470 +f 8525 8529 8471 +f 8515 8525 8489 +f 8516 8526 8490 +f 8524 8552 8514 +f 8553 8525 8515 +f 8554 8526 8516 +f 8527 8555 8517 +f 8528 8591 8524 +f 8591 8585 8524 +f 8585 8577 8524 +f 8577 8552 8524 +f 8586 8529 8525 +f 8553 8586 8525 +f 8554 8587 8526 +f 8587 8528 8526 +f 8580 8555 8527 +f 8588 8580 8527 +f 8592 8588 8527 +f 8529 8592 8527 +f 8587 8591 8528 +f 8586 8592 8529 +f 8578 8586 8553 +f 8579 8587 8554 +f 8585 8613 8577 +f 8614 8586 8578 +f 8615 8587 8579 +f 8588 8616 8580 +f 8591 8658 8585 +f 8658 8654 8585 +f 8654 8641 8585 +f 8641 8613 8585 +f 8655 8592 8586 +f 8614 8655 8586 +f 8615 8656 8587 +f 8656 8591 8587 +f 8644 8616 8588 +f 8657 8644 8588 +f 8659 8657 8588 +f 8592 8659 8588 +f 8656 8658 8591 +f 8655 8659 8592 +f 8642 8655 8614 +f 8643 8656 8615 +f 8654 8672 8641 +f 8673 8655 8642 +f 8674 8656 8643 +f 8657 8675 8644 +f 8658 8710 8654 +f 8710 8702 8654 +f 8702 8692 8654 +f 8692 8672 8654 +f 8703 8659 8655 +f 8673 8703 8655 +f 8674 8704 8656 +f 8704 8658 8656 +f 8695 8675 8657 +f 8705 8695 8657 +f 8711 8705 8657 +f 8659 8711 8657 +f 8704 8710 8658 +f 8703 8711 8659 +f 8693 8703 8673 +f 8694 8704 8674 +f 8702 8722 8692 +f 8723 8703 8693 +f 8724 8704 8694 +f 8705 8725 8695 +f 8710 8761 8702 +f 8761 8753 8702 +f 8753 8741 8702 +f 8741 8722 8702 +f 8754 8711 8703 +f 8723 8754 8703 +f 8724 8755 8704 +f 8755 8710 8704 +f 8744 8725 8705 +f 8756 8744 8705 +f 8762 8756 8705 +f 8711 8762 8705 +f 8755 8761 8710 +f 8754 8762 8711 +f 8742 8754 8723 +f 8743 8755 8724 +f 8753 8767 8741 +f 8768 8754 8742 +f 8769 8755 8743 +f 8756 8770 8744 +f 8761 8803 8753 +f 8803 8793 8753 +f 8793 8781 8753 +f 8781 8767 8753 +f 8794 8762 8754 +f 8768 8794 8754 +f 8769 8795 8755 +f 8795 8761 8755 +f 8784 8770 8756 +f 8796 8784 8756 +f 8804 8796 8756 +f 8762 8804 8756 +f 8795 8803 8761 +f 8794 8804 8762 +f 8782 8794 8768 +f 8783 8795 8769 +f 8793 8809 8781 +f 8810 8794 8782 +f 8811 8795 8783 +f 8796 8812 8784 +f 8803 8845 8793 +f 8845 8835 8793 +f 8835 8821 8793 +f 8821 8809 8793 +f 8836 8804 8794 +f 8810 8836 8794 +f 8811 8837 8795 +f 8837 8803 8795 +f 8824 8812 8796 +f 8838 8824 8796 +f 8846 8838 8796 +f 8804 8846 8796 +f 8837 8845 8803 +f 8836 8846 8804 +f 8822 8836 8810 +f 8823 8837 8811 +f 8835 8841 8821 +f 8842 8836 8822 +f 8843 8837 8823 +f 8838 8844 8824 +f 8845 8882 8835 +f 8882 8876 8835 +f 8876 8858 8835 +f 8858 8841 8835 +f 8877 8846 8836 +f 8842 8877 8836 +f 8843 8878 8837 +f 8878 8845 8837 +f 8861 8844 8838 +f 8879 8861 8838 +f 8883 8879 8838 +f 8846 8883 8838 +f 8859 8877 8842 +f 8860 8878 8843 +f 8878 8882 8845 +f 8877 8883 8846 +f 8876 8870 8858 +f 8871 8877 8859 +f 8872 8878 8860 +f 8879 8873 8861 +f 8876 8884 8870 +f 8897 8877 8871 +f 8885 8897 8871 +f 8886 8898 8872 +f 8898 8878 8872 +f 8879 8887 8873 +f 8882 8900 8876 +f 8900 8896 8876 +f 8896 8884 8876 +f 8897 8883 8877 +f 8898 8882 8878 +f 8899 8887 8879 +f 8901 8899 8879 +f 8883 8901 8879 +f 8898 8900 8882 +f 8897 8901 8883 +f 8896 8890 8884 +f 8891 8897 8885 +f 8892 8898 8886 +f 8899 8893 8887 +f 8896 8894 8890 +f 8902 8897 8891 +f 8894 8902 8891 +f 8895 8903 8892 +f 8903 8898 8892 +f 8899 8895 8893 +f 8896 8902 8894 +f 8899 8903 8895 +f 8900 8904 8896 +f 8904 8902 8896 +f 8902 8901 8897 +f 8903 8900 8898 +f 8904 8903 8899 +f 8901 8904 8899 +f 8903 8904 8900 +f 8902 8904 8901 +f 6586 6570 6562 +f 6581 6586 6562 +f 6569 6581 6562 +f 6585 6581 6569 +f 6589 6585 6569 +f 6609 6590 6570 +f 6586 6609 6570 +f 6618 6586 6581 +f 6585 6614 6581 +f 6614 6618 6581 +f 6589 6608 6585 +f 6608 6617 6585 +f 6617 6614 6585 +f 6618 6632 6586 +f 6632 6609 6586 +f 6623 6608 6589 +f 6636 6624 6590 +f 6609 6636 6590 +f 6623 6635 6608 +f 6635 6631 6608 +f 6631 6617 6608 +f 6632 6653 6609 +f 6653 6636 6609 +f 6645 6618 6614 +f 6617 6639 6614 +f 6639 6645 6614 +f 6631 6644 6617 +f 6644 6639 6617 +f 6645 6657 6618 +f 6657 6632 6618 +f 6654 6635 6623 +f 6667 6655 6624 +f 6636 6667 6624 +f 6635 6652 6631 +f 6652 6656 6631 +f 6656 6644 6631 +f 6657 6676 6632 +f 6676 6653 6632 +f 6654 6666 6635 +f 6666 6652 6635 +f 6653 6684 6636 +f 6684 6667 6636 +f 6674 6645 6639 +f 6644 6670 6639 +f 6670 6674 6639 +f 6656 6673 6644 +f 6673 6670 6644 +f 6674 6686 6645 +f 6686 6657 6645 +f 6666 6683 6652 +f 6683 6675 6652 +f 6675 6656 6652 +f 6676 6709 6653 +f 6709 6684 6653 +f 6693 6666 6654 +f 6704 6694 6655 +f 6667 6704 6655 +f 6675 6685 6656 +f 6685 6673 6656 +f 6686 6711 6657 +f 6711 6676 6657 +f 6693 6703 6666 +f 6703 6683 6666 +f 6684 6719 6667 +f 6719 6704 6667 +f 6713 6674 6670 +f 6673 6707 6670 +f 6707 6713 6670 +f 6685 6712 6673 +f 6712 6707 6673 +f 6713 6721 6674 +f 6721 6686 6674 +f 6683 6708 6675 +f 6708 6710 6675 +f 6710 6685 6675 +f 6711 6731 6676 +f 6731 6709 6676 +f 6703 6718 6683 +f 6718 6708 6683 +f 6709 6743 6684 +f 6743 6719 6684 +f 6710 6720 6685 +f 6720 6712 6685 +f 6721 6739 6686 +f 6739 6711 6686 +f 6736 6703 6693 +f 6752 6737 6694 +f 6704 6752 6694 +f 6736 6751 6703 +f 6751 6718 6703 +f 6719 6760 6704 +f 6760 6752 6704 +f 6750 6713 6707 +f 6712 6746 6707 +f 6746 6750 6707 +f 6718 6742 6708 +f 6742 6730 6708 +f 6730 6710 6708 +f 6731 6764 6709 +f 6764 6743 6709 +f 6730 6738 6710 +f 6738 6720 6710 +f 6739 6762 6711 +f 6762 6731 6711 +f 6720 6749 6712 +f 6749 6746 6712 +f 6750 6758 6713 +f 6758 6721 6713 +f 6751 6759 6718 +f 6759 6742 6718 +f 6743 6780 6719 +f 6780 6760 6719 +f 6738 6757 6720 +f 6757 6749 6720 +f 6758 6770 6721 +f 6770 6739 6721 +f 6742 6763 6730 +f 6763 6761 6730 +f 6761 6738 6730 +f 6762 6799 6731 +f 6799 6764 6731 +f 6788 6751 6736 +f 6801 6789 6737 +f 6752 6801 6737 +f 6761 6769 6738 +f 6769 6757 6738 +f 6770 6803 6739 +f 6803 6762 6739 +f 6759 6779 6742 +f 6779 6763 6742 +f 6764 6813 6743 +f 6813 6780 6743 +f 6785 6750 6746 +f 6749 6781 6746 +f 6781 6785 6746 +f 6757 6784 6749 +f 6784 6781 6749 +f 6785 6797 6750 +f 6797 6758 6750 +f 6788 6800 6751 +f 6800 6759 6751 +f 6760 6815 6752 +f 6815 6801 6752 +f 6769 6796 6757 +f 6796 6784 6757 +f 6797 6817 6758 +f 6817 6770 6758 +f 6800 6814 6759 +f 6814 6779 6759 +f 6780 6826 6760 +f 6826 6815 6760 +f 6763 6798 6761 +f 6798 6802 6761 +f 6802 6769 6761 +f 6803 6824 6762 +f 6824 6799 6762 +f 6779 6812 6763 +f 6812 6798 6763 +f 6799 6836 6764 +f 6836 6813 6764 +f 6802 6816 6769 +f 6816 6796 6769 +f 6817 6838 6770 +f 6838 6803 6770 +f 6814 6825 6779 +f 6825 6812 6779 +f 6813 6858 6780 +f 6858 6826 6780 +f 6822 6785 6781 +f 6784 6820 6781 +f 6820 6822 6781 +f 6796 6821 6784 +f 6821 6820 6784 +f 6822 6840 6785 +f 6840 6797 6785 +f 6845 6800 6788 +f 6860 6846 6789 +f 6801 6860 6789 +f 6816 6839 6796 +f 6839 6821 6796 +f 6840 6854 6797 +f 6854 6817 6797 +f 6812 6835 6798 +f 6835 6823 6798 +f 6823 6802 6798 +f 6824 6868 6799 +f 6868 6836 6799 +f 6845 6859 6800 +f 6859 6814 6800 +f 6815 6870 6801 +f 6870 6860 6801 +f 6823 6837 6802 +f 6837 6816 6802 +f 6838 6866 6803 +f 6866 6824 6803 +f 6825 6857 6812 +f 6857 6835 6812 +f 6836 6880 6813 +f 6880 6858 6813 +f 6859 6869 6814 +f 6869 6825 6814 +f 6826 6882 6815 +f 6882 6870 6815 +f 6837 6853 6816 +f 6853 6839 6816 +f 6854 6874 6817 +f 6874 6838 6817 +f 6835 6867 6823 +f 6867 6865 6823 +f 6865 6837 6823 +f 6866 6896 6824 +f 6896 6868 6824 +f 6869 6881 6825 +f 6881 6857 6825 +f 6858 6902 6826 +f 6902 6882 6826 +f 6857 6879 6835 +f 6879 6867 6835 +f 6868 6906 6836 +f 6906 6880 6836 +f 6865 6873 6837 +f 6873 6853 6837 +f 6874 6898 6838 +f 6898 6866 6838 +f 6907 6859 6845 +f 6916 6908 6846 +f 6860 6916 6846 +f 6881 6901 6857 +f 6901 6879 6857 +f 6880 6928 6858 +f 6928 6902 6858 +f 6907 6915 6859 +f 6915 6869 6859 +f 6870 6924 6860 +f 6924 6916 6860 +f 6867 6895 6865 +f 6895 6897 6865 +f 6897 6873 6865 +f 6898 6930 6866 +f 6930 6896 6866 +f 6879 6905 6867 +f 6905 6895 6867 +f 6896 6932 6868 +f 6932 6906 6868 +f 6915 6923 6869 +f 6923 6881 6869 +f 6882 6934 6870 +f 6934 6924 6870 +f 6901 6927 6879 +f 6927 6905 6879 +f 6906 6940 6880 +f 6940 6928 6880 +f 6923 6933 6881 +f 6933 6901 6881 +f 6902 6954 6882 +f 6954 6934 6882 +f 6905 6931 6895 +f 6931 6929 6895 +f 6929 6897 6895 +f 6930 6960 6896 +f 6960 6932 6896 +f 6933 6953 6901 +f 6953 6927 6901 +f 6928 6976 6902 +f 6976 6954 6902 +f 6927 6939 6905 +f 6939 6931 6905 +f 6932 6978 6906 +f 6978 6940 6906 +f 6961 6915 6907 +f 6972 6962 6908 +f 6916 6972 6908 +f 6961 6971 6915 +f 6971 6923 6915 +f 6924 6986 6916 +f 6986 6972 6916 +f 6971 6985 6923 +f 6985 6933 6923 +f 6934 6990 6924 +f 6990 6986 6924 +f 6953 6975 6927 +f 6975 6939 6927 +f 6940 6994 6928 +f 6994 6976 6928 +f 6931 6959 6929 +f 6939 6977 6931 +f 6977 6959 6931 +f 6960 6998 6932 +f 6998 6978 6932 +f 6985 6989 6933 +f 6989 6953 6933 +f 6954 7002 6934 +f 7002 6990 6934 +f 6975 6993 6939 +f 6993 6977 6939 +f 6978 7012 6940 +f 7012 6994 6940 +f 6989 7001 6953 +f 7001 6975 6953 +f 6976 7020 6954 +f 7020 7002 6954 +f 6977 6997 6959 +f 7015 6971 6961 +f 6972 7016 6962 +f 7015 7032 6971 +f 7032 6985 6971 +f 7033 7016 6972 +f 6986 7060 6972 +f 7060 7033 6972 +f 7001 7019 6975 +f 7019 6993 6975 +f 6994 7073 6976 +f 7073 7020 6976 +f 6993 7011 6977 +f 7011 6997 6977 +f 6998 7056 6978 +f 7056 7012 6978 +f 7032 7059 6985 +f 7059 6989 6985 +f 6990 7105 6986 +f 7105 7060 6986 +f 7059 7104 6989 +f 7104 7001 6989 +f 7002 7133 6990 +f 7133 7105 6990 +f 7019 7072 6993 +f 7072 7011 6993 +f 7012 7131 6994 +f 7131 7073 6994 +f 7011 7055 6997 +f 7104 7132 7001 +f 7132 7019 7001 +f 7020 7147 7002 +f 7147 7133 7002 +f 7072 7130 7011 +f 7130 7055 7011 +f 7056 7157 7012 +f 7157 7131 7012 +f 7021 7032 7015 +f 7033 7022 7016 +f 7132 7146 7019 +f 7146 7072 7019 +f 7073 7171 7020 +f 7171 7147 7020 +f 7152 7032 7021 +f 7033 7153 7022 +f 7152 7174 7032 +f 7174 7059 7032 +f 7175 7153 7033 +f 7060 7185 7033 +f 7185 7175 7033 +f 7130 7156 7055 +f 7174 7184 7059 +f 7184 7104 7059 +f 7105 7195 7060 +f 7195 7185 7060 +f 7146 7170 7072 +f 7170 7130 7072 +f 7131 7193 7073 +f 7193 7171 7073 +f 7184 7194 7104 +f 7194 7132 7104 +f 7133 7199 7105 +f 7199 7195 7105 +f 7170 7192 7130 +f 7192 7156 7130 +f 7157 7205 7131 +f 7205 7193 7131 +f 7194 7198 7132 +f 7198 7146 7132 +f 7147 7215 7133 +f 7215 7199 7133 +f 7198 7214 7146 +f 7214 7170 7146 +f 7171 7236 7147 +f 7236 7215 7147 +f 7164 7174 7152 +f 7175 7165 7153 +f 7192 7204 7156 +f 7230 7174 7164 +f 7175 7231 7165 +f 7214 7235 7170 +f 7235 7192 7170 +f 7193 7258 7171 +f 7258 7236 7171 +f 7230 7255 7174 +f 7255 7184 7174 +f 7256 7231 7175 +f 7185 7266 7175 +f 7266 7256 7175 +f 7255 7265 7184 +f 7265 7194 7184 +f 7195 7274 7185 +f 7274 7266 7185 +f 7235 7257 7192 +f 7257 7204 7192 +f 7205 7276 7193 +f 7276 7258 7193 +f 7265 7273 7194 +f 7273 7198 7194 +f 7199 7280 7195 +f 7280 7274 7195 +f 7273 7279 7198 +f 7279 7214 7198 +f 7215 7294 7199 +f 7294 7280 7199 +f 7257 7275 7204 +f 7279 7293 7214 +f 7293 7235 7214 +f 7236 7306 7215 +f 7306 7294 7215 +f 7243 7255 7230 +f 7256 7244 7231 +f 7293 7305 7235 +f 7305 7257 7235 +f 7258 7332 7236 +f 7332 7306 7236 +f 7323 7255 7243 +f 7256 7324 7244 +f 7323 7355 7255 +f 7355 7265 7255 +f 7356 7324 7256 +f 7266 7362 7256 +f 7362 7356 7256 +f 7305 7331 7257 +f 7331 7275 7257 +f 7276 7350 7258 +f 7350 7332 7258 +f 7355 7361 7265 +f 7361 7273 7265 +f 7274 7366 7266 +f 7366 7362 7266 +f 7361 7365 7273 +f 7365 7279 7273 +f 7280 7372 7274 +f 7372 7366 7274 +f 7331 7349 7275 +f 7365 7371 7279 +f 7371 7293 7279 +f 7294 7384 7280 +f 7384 7372 7280 +f 7371 7383 7293 +f 7383 7305 7293 +f 7306 7392 7294 +f 7392 7384 7294 +f 7383 7391 7305 +f 7391 7331 7305 +f 7332 7400 7306 +f 7400 7392 7306 +f 7343 7355 7323 +f 7356 7344 7324 +f 7391 7399 7331 +f 7399 7349 7331 +f 7350 7408 7332 +f 7408 7400 7332 +f 7413 7355 7343 +f 7356 7414 7344 +f 7399 7407 7349 +f 7413 7437 7355 +f 7437 7361 7355 +f 7438 7414 7356 +f 7362 7446 7356 +f 7446 7438 7356 +f 7437 7445 7361 +f 7445 7365 7361 +f 7366 7448 7362 +f 7448 7446 7362 +f 7445 7447 7365 +f 7447 7371 7365 +f 7372 7456 7366 +f 7456 7448 7366 +f 7447 7455 7371 +f 7455 7383 7371 +f 7384 7462 7372 +f 7462 7456 7372 +f 7455 7461 7383 +f 7461 7391 7383 +f 7392 7470 7384 +f 7470 7462 7384 +f 7461 7469 7391 +f 7469 7399 7391 +f 7400 7476 7392 +f 7476 7470 7392 +f 7469 7475 7399 +f 7475 7407 7399 +f 7408 7482 7400 +f 7482 7476 7400 +f 7475 7481 7407 +f 7425 7437 7413 +f 7438 7426 7414 +f 7509 7437 7425 +f 7438 7510 7426 +f 7509 7535 7437 +f 7535 7445 7437 +f 7536 7510 7438 +f 7446 7544 7438 +f 7544 7536 7438 +f 7535 7543 7445 +f 7543 7447 7445 +f 7448 7546 7446 +f 7546 7544 7446 +f 7543 7545 7447 +f 7545 7455 7447 +f 7456 7554 7448 +f 7554 7546 7448 +f 7545 7553 7455 +f 7553 7461 7455 +f 7462 7556 7456 +f 7556 7554 7456 +f 7553 7555 7461 +f 7555 7469 7461 +f 7470 7562 7462 +f 7562 7556 7462 +f 7555 7561 7469 +f 7561 7475 7469 +f 7476 7566 7470 +f 7566 7562 7470 +f 7561 7565 7475 +f 7565 7481 7475 +f 7482 7572 7476 +f 7572 7566 7476 +f 7565 7571 7481 +f 7525 7535 7509 +f 7536 7526 7510 +f 7666 7535 7525 +f 7536 7667 7526 +f 7666 7684 7535 +f 7684 7543 7535 +f 7685 7667 7536 +f 7544 7691 7536 +f 7691 7685 7536 +f 7684 7690 7543 +f 7690 7545 7543 +f 7546 7693 7544 +f 7693 7691 7544 +f 7690 7692 7545 +f 7692 7553 7545 +f 7554 7699 7546 +f 7699 7693 7546 +f 7692 7698 7553 +f 7698 7555 7553 +f 7556 7701 7554 +f 7701 7699 7554 +f 7698 7700 7555 +f 7700 7561 7555 +f 7562 7703 7556 +f 7703 7701 7556 +f 7700 7702 7561 +f 7702 7565 7561 +f 7566 7705 7562 +f 7705 7703 7562 +f 7702 7704 7565 +f 7704 7571 7565 +f 7572 7707 7566 +f 7707 7705 7566 +f 7704 7706 7571 +f 7674 7684 7666 +f 7685 7675 7667 +f 7725 7684 7674 +f 7685 7726 7675 +f 7725 7795 7684 +f 7795 7690 7684 +f 7796 7726 7685 +f 7691 7788 7685 +f 7788 7796 7685 +f 7795 7787 7690 +f 7787 7692 7690 +f 7693 7784 7691 +f 7784 7788 7691 +f 7787 7783 7692 +f 7783 7698 7692 +f 7699 7774 7693 +f 7774 7784 7693 +f 7783 7773 7698 +f 7773 7700 7698 +f 7701 7758 7699 +f 7758 7774 7699 +f 7773 7757 7700 +f 7757 7702 7700 +f 7703 7751 7701 +f 7751 7758 7701 +f 7757 7750 7702 +f 7750 7704 7702 +f 7705 7746 7703 +f 7746 7751 7703 +f 7750 7745 7704 +f 7745 7706 7704 +f 7707 7742 7705 +f 7742 7746 7705 +f 7745 7741 7706 +f 7803 7795 7725 +f 7796 7804 7726 +f 7886 7876 7741 +f 7745 7886 7741 +f 7877 7746 7742 +f 7894 7886 7745 +f 7750 7894 7745 +f 7887 7751 7746 +f 7877 7887 7746 +f 7904 7894 7750 +f 7757 7904 7750 +f 7895 7758 7751 +f 7887 7895 7751 +f 7908 7904 7757 +f 7773 7908 7757 +f 7905 7774 7758 +f 7895 7905 7758 +f 7916 7908 7773 +f 7783 7916 7773 +f 7909 7784 7774 +f 7905 7909 7774 +f 7924 7916 7783 +f 7787 7924 7783 +f 7917 7788 7784 +f 7909 7917 7784 +f 7932 7924 7787 +f 7795 7932 7787 +f 7925 7796 7788 +f 7917 7925 7788 +f 7803 7932 7795 +f 7933 7891 7796 +f 7891 7804 7796 +f 7925 7933 7796 +f 7890 7932 7803 +f 7974 7966 7876 +f 7886 7974 7876 +f 7967 7887 7877 +f 7980 7974 7886 +f 7894 7980 7886 +f 7975 7895 7887 +f 7967 7975 7887 +f 7940 7932 7890 +f 7933 7941 7891 +f 7984 7980 7894 +f 7904 7984 7894 +f 7981 7905 7895 +f 7975 7981 7895 +f 8002 7984 7904 +f 7908 8002 7904 +f 7985 7909 7905 +f 7981 7985 7905 +f 8008 8002 7908 +f 7916 8008 7908 +f 8003 7917 7909 +f 7985 8003 7909 +f 8014 8008 7916 +f 7924 8014 7916 +f 8009 7925 7917 +f 8003 8009 7917 +f 8022 8014 7924 +f 7932 8022 7924 +f 8015 7933 7925 +f 8009 8015 7925 +f 7940 8022 7932 +f 8023 7987 7933 +f 7987 7941 7933 +f 8015 8023 7933 +f 7986 8022 7940 +f 8046 8038 7966 +f 7974 8046 7966 +f 8039 7975 7967 +f 8054 8046 7974 +f 7980 8054 7974 +f 8047 7981 7975 +f 8039 8047 7975 +f 8064 8054 7980 +f 7984 8064 7980 +f 8055 7985 7981 +f 8047 8055 7981 +f 8076 8064 7984 +f 8002 8076 7984 +f 8065 8003 7985 +f 8055 8065 7985 +f 8030 8022 7986 +f 8023 8031 7987 +f 8092 8076 8002 +f 8008 8092 8002 +f 8077 8009 8003 +f 8065 8077 8003 +f 8104 8092 8008 +f 8014 8104 8008 +f 8093 8015 8009 +f 8077 8093 8009 +f 8112 8104 8014 +f 8022 8112 8014 +f 8105 8023 8015 +f 8093 8105 8015 +f 8030 8112 8022 +f 8113 8079 8023 +f 8079 8031 8023 +f 8105 8113 8023 +f 8078 8112 8030 +f 8134 8096 8038 +f 8046 8134 8038 +f 8097 8047 8039 +f 8142 8134 8046 +f 8054 8142 8046 +f 8135 8055 8047 +f 8097 8135 8047 +f 8156 8142 8054 +f 8064 8156 8054 +f 8143 8065 8055 +f 8135 8143 8055 +f 8164 8156 8064 +f 8076 8164 8064 +f 8157 8077 8065 +f 8143 8157 8065 +f 8184 8164 8076 +f 8092 8184 8076 +f 8165 8093 8077 +f 8157 8165 8077 +f 8124 8112 8078 +f 8113 8125 8079 +f 8192 8184 8092 +f 8104 8192 8092 +f 8185 8105 8093 +f 8165 8185 8093 +f 8188 8162 8096 +f 8134 8188 8096 +f 8163 8135 8097 +f 8200 8192 8104 +f 8112 8200 8104 +f 8193 8113 8105 +f 8185 8193 8105 +f 8124 8200 8112 +f 8201 8175 8113 +f 8175 8125 8113 +f 8193 8201 8113 +f 8174 8200 8124 +f 8218 8188 8134 +f 8142 8218 8134 +f 8189 8143 8135 +f 8163 8189 8135 +f 8230 8218 8142 +f 8156 8230 8142 +f 8219 8157 8143 +f 8189 8219 8143 +f 8238 8230 8156 +f 8164 8238 8156 +f 8231 8165 8157 +f 8219 8231 8157 +f 8244 8232 8162 +f 8188 8244 8162 +f 8233 8189 8163 +f 8252 8238 8164 +f 8184 8252 8164 +f 8239 8185 8165 +f 8231 8239 8165 +f 8210 8200 8174 +f 8201 8211 8175 +f 8264 8252 8184 +f 8192 8264 8184 +f 8253 8193 8185 +f 8239 8253 8185 +f 8270 8244 8188 +f 8218 8270 8188 +f 8245 8219 8189 +f 8233 8245 8189 +f 8278 8264 8192 +f 8200 8278 8192 +f 8265 8201 8193 +f 8253 8265 8193 +f 8210 8278 8200 +f 8279 8249 8201 +f 8249 8211 8201 +f 8265 8279 8201 +f 8248 8278 8210 +f 8318 8270 8218 +f 8230 8318 8218 +f 8271 8231 8219 +f 8245 8271 8219 +f 8370 8318 8230 +f 8238 8370 8230 +f 8319 8239 8231 +f 8271 8319 8231 +f 8359 8290 8232 +f 8244 8359 8232 +f 8291 8245 8233 +f 8387 8370 8238 +f 8252 8387 8238 +f 8371 8253 8239 +f 8319 8371 8239 +f 8395 8359 8244 +f 8270 8395 8244 +f 8360 8271 8245 +f 8291 8360 8245 +f 8294 8278 8248 +f 8279 8295 8249 +f 8407 8387 8252 +f 8264 8407 8252 +f 8388 8265 8253 +f 8371 8388 8253 +f 8415 8407 8264 +f 8278 8415 8264 +f 8408 8279 8265 +f 8388 8408 8265 +f 8421 8395 8270 +f 8318 8421 8270 +f 8396 8319 8271 +f 8360 8396 8271 +f 8294 8415 8278 +f 8416 8392 8279 +f 8392 8295 8279 +f 8408 8416 8279 +f 8429 8389 8290 +f 8359 8429 8290 +f 8390 8360 8291 +f 8391 8415 8294 +f 8435 8421 8318 +f 8370 8435 8318 +f 8422 8371 8319 +f 8396 8422 8319 +f 8445 8429 8359 +f 8395 8445 8359 +f 8430 8396 8360 +f 8390 8430 8360 +f 8449 8435 8370 +f 8387 8449 8370 +f 8436 8388 8371 +f 8422 8436 8371 +f 8468 8449 8387 +f 8407 8468 8387 +f 8450 8408 8388 +f 8436 8450 8388 +f 8461 8437 8389 +f 8429 8461 8389 +f 8438 8430 8390 +f 8425 8415 8391 +f 8416 8426 8392 +f 8472 8445 8395 +f 8421 8472 8395 +f 8446 8422 8396 +f 8430 8446 8396 +f 8480 8468 8407 +f 8415 8480 8407 +f 8469 8416 8408 +f 8450 8469 8408 +f 8425 8480 8415 +f 8481 8456 8416 +f 8456 8426 8416 +f 8469 8481 8416 +f 8496 8472 8421 +f 8435 8496 8421 +f 8473 8436 8422 +f 8446 8473 8422 +f 8455 8480 8425 +f 8498 8461 8429 +f 8445 8498 8429 +f 8462 8446 8430 +f 8438 8462 8430 +f 8510 8496 8435 +f 8449 8510 8435 +f 8497 8450 8436 +f 8473 8497 8436 +f 8504 8476 8437 +f 8461 8504 8437 +f 8477 8462 8438 +f 8512 8498 8445 +f 8472 8512 8445 +f 8499 8473 8446 +f 8462 8499 8446 +f 8520 8510 8449 +f 8468 8520 8449 +f 8511 8469 8450 +f 8497 8511 8450 +f 8488 8480 8455 +f 8481 8489 8456 +f 8532 8504 8461 +f 8498 8532 8461 +f 8505 8499 8462 +f 8477 8505 8462 +f 8538 8520 8468 +f 8480 8538 8468 +f 8521 8481 8469 +f 8511 8521 8469 +f 8548 8512 8472 +f 8496 8548 8472 +f 8513 8497 8473 +f 8499 8513 8473 +f 8544 8506 8476 +f 8504 8544 8476 +f 8507 8505 8477 +f 8488 8538 8480 +f 8539 8515 8481 +f 8515 8489 8481 +f 8521 8539 8481 +f 8514 8538 8488 +f 8569 8548 8496 +f 8510 8569 8496 +f 8549 8511 8497 +f 8513 8549 8497 +f 8567 8532 8498 +f 8512 8567 8498 +f 8533 8513 8499 +f 8505 8533 8499 +f 8573 8544 8504 +f 8532 8573 8504 +f 8545 8533 8505 +f 8507 8545 8505 +f 8571 8534 8506 +f 8544 8571 8506 +f 8535 8545 8507 +f 8581 8569 8510 +f 8520 8581 8510 +f 8570 8521 8511 +f 8549 8570 8511 +f 8595 8567 8512 +f 8548 8595 8512 +f 8568 8549 8513 +f 8533 8568 8513 +f 8552 8538 8514 +f 8539 8553 8515 +f 8599 8581 8520 +f 8538 8599 8520 +f 8582 8539 8521 +f 8570 8582 8521 +f 8617 8573 8532 +f 8567 8617 8532 +f 8574 8568 8533 +f 8545 8574 8533 +f 8607 8563 8534 +f 8571 8607 8534 +f 8572 8545 8535 +f 8564 8572 8535 +f 8552 8599 8538 +f 8600 8578 8539 +f 8578 8553 8539 +f 8582 8600 8539 +f 8619 8571 8544 +f 8573 8619 8544 +f 8572 8574 8545 +f 8623 8595 8548 +f 8569 8623 8548 +f 8596 8570 8549 +f 8568 8596 8549 +f 8577 8599 8552 +f 8627 8575 8563 +f 8607 8627 8563 +f 8608 8572 8564 +f 8576 8608 8564 +f 8637 8617 8567 +f 8595 8637 8567 +f 8618 8596 8568 +f 8574 8618 8568 +f 8633 8623 8569 +f 8581 8633 8569 +f 8624 8582 8570 +f 8596 8624 8570 +f 8635 8607 8571 +f 8619 8635 8571 +f 8620 8574 8572 +f 8608 8620 8572 +f 8650 8619 8573 +f 8617 8650 8573 +f 8620 8618 8574 +f 8631 8593 8575 +f 8627 8631 8575 +f 8628 8608 8576 +f 8594 8628 8576 +f 8613 8599 8577 +f 8600 8614 8578 +f 8662 8633 8581 +f 8599 8662 8581 +f 8634 8600 8582 +f 8624 8634 8582 +f 8645 8603 8593 +f 8631 8645 8593 +f 8632 8628 8594 +f 8604 8632 8594 +f 8676 8637 8595 +f 8623 8676 8595 +f 8638 8624 8596 +f 8618 8638 8596 +f 8613 8662 8599 +f 8663 8642 8600 +f 8642 8614 8600 +f 8634 8663 8600 +f 8646 8604 8603 +f 8645 8646 8603 +f 8646 8632 8604 +f 8668 8627 8607 +f 8635 8668 8607 +f 8636 8620 8608 +f 8628 8636 8608 +f 8641 8662 8613 +f 8686 8650 8617 +f 8637 8686 8617 +f 8651 8638 8618 +f 8620 8651 8618 +f 8684 8635 8619 +f 8650 8684 8619 +f 8636 8651 8620 +f 8690 8676 8623 +f 8633 8690 8623 +f 8677 8634 8624 +f 8638 8677 8624 +f 8682 8631 8627 +f 8668 8682 8627 +f 8669 8636 8628 +f 8632 8669 8628 +f 8688 8645 8631 +f 8682 8688 8631 +f 8683 8669 8632 +f 8646 8683 8632 +f 8708 8690 8633 +f 8662 8708 8633 +f 8691 8663 8634 +f 8677 8691 8634 +f 8698 8668 8635 +f 8684 8698 8635 +f 8685 8651 8636 +f 8669 8685 8636 +f 8714 8686 8637 +f 8676 8714 8637 +f 8687 8677 8638 +f 8651 8687 8638 +f 8672 8662 8641 +f 8663 8673 8642 +f 8689 8646 8645 +f 8688 8689 8645 +f 8689 8683 8646 +f 8718 8684 8650 +f 8686 8718 8650 +f 8685 8687 8651 +f 8672 8708 8662 +f 8709 8693 8663 +f 8693 8673 8663 +f 8691 8709 8663 +f 8726 8682 8668 +f 8698 8726 8668 +f 8699 8685 8669 +f 8683 8699 8669 +f 8692 8708 8672 +f 8734 8714 8676 +f 8690 8734 8676 +f 8715 8691 8677 +f 8687 8715 8677 +f 8732 8688 8682 +f 8726 8732 8682 +f 8727 8699 8683 +f 8689 8727 8683 +f 8738 8698 8684 +f 8718 8738 8684 +f 8719 8687 8685 +f 8699 8719 8685 +f 8745 8718 8686 +f 8714 8745 8686 +f 8719 8715 8687 +f 8733 8689 8688 +f 8732 8733 8688 +f 8733 8727 8689 +f 8751 8734 8690 +f 8708 8751 8690 +f 8735 8709 8691 +f 8715 8735 8691 +f 8722 8708 8692 +f 8709 8723 8693 +f 8759 8726 8698 +f 8738 8759 8698 +f 8739 8719 8699 +f 8727 8739 8699 +f 8722 8751 8708 +f 8752 8742 8709 +f 8742 8723 8709 +f 8735 8752 8709 +f 8775 8745 8714 +f 8734 8775 8714 +f 8746 8735 8715 +f 8719 8746 8715 +f 8777 8738 8718 +f 8745 8777 8718 +f 8739 8746 8719 +f 8741 8751 8722 +f 8773 8732 8726 +f 8759 8773 8726 +f 8760 8739 8727 +f 8733 8760 8727 +f 8774 8733 8732 +f 8773 8774 8732 +f 8774 8760 8733 +f 8787 8775 8734 +f 8751 8787 8734 +f 8776 8752 8735 +f 8746 8776 8735 +f 8789 8759 8738 +f 8777 8789 8738 +f 8778 8746 8739 +f 8760 8778 8739 +f 8767 8751 8741 +f 8752 8768 8742 +f 8801 8777 8745 +f 8775 8801 8745 +f 8778 8776 8746 +f 8767 8787 8751 +f 8788 8782 8752 +f 8782 8768 8752 +f 8776 8788 8752 +f 8805 8773 8759 +f 8789 8805 8759 +f 8790 8778 8760 +f 8774 8790 8760 +f 8781 8787 8767 +f 8806 8774 8773 +f 8805 8806 8773 +f 8806 8790 8774 +f 8819 8801 8775 +f 8787 8819 8775 +f 8802 8788 8776 +f 8778 8802 8776 +f 8817 8789 8777 +f 8801 8817 8777 +f 8790 8802 8778 +f 8809 8787 8781 +f 8788 8810 8782 +f 8809 8819 8787 +f 8820 8822 8788 +f 8822 8810 8788 +f 8802 8820 8788 +f 8831 8805 8789 +f 8817 8831 8789 +f 8818 8802 8790 +f 8806 8818 8790 +f 8851 8817 8801 +f 8819 8851 8801 +f 8818 8820 8802 +f 8832 8806 8805 +f 8831 8832 8805 +f 8832 8818 8806 +f 8821 8819 8809 +f 8866 8831 8817 +f 8851 8866 8817 +f 8852 8820 8818 +f 8832 8852 8818 +f 8821 8841 8819 +f 8841 8851 8819 +f 8852 8859 8820 +f 8859 8842 8820 +f 8842 8822 8820 +f 8867 8832 8831 +f 8866 8867 8831 +f 8867 8852 8832 +f 8858 8851 8841 +f 8858 8870 8851 +f 8870 8866 8851 +f 8867 8885 8852 +f 8885 8871 8852 +f 8871 8859 8852 +f 8870 8884 8866 +f 8884 8890 8866 +f 8890 8894 8866 +f 8894 8867 8866 +f 8894 8891 8867 +f 8891 8885 8867 +f 7117 6822 6820 +f 6821 7117 6820 +f 7128 7117 6821 +f 6839 7128 6821 +f 7129 6840 6822 +f 7117 7129 6822 +f 6853 7128 6839 +f 7129 6854 6840 +f 7150 7128 6853 +f 6873 7150 6853 +f 7129 7151 6854 +f 7151 6874 6854 +f 6897 7150 6873 +f 7151 6898 6874 +f 7190 7150 6897 +f 6929 7190 6897 +f 7151 7191 6898 +f 7191 6930 6898 +f 7228 7190 6929 +f 6959 7228 6929 +f 7191 6960 6930 +f 6997 7228 6959 +f 7229 6998 6960 +f 7191 7229 6960 +f 7297 7228 6997 +f 7055 7297 6997 +f 7298 7056 6998 +f 7229 7298 6998 +f 7156 7297 7055 +f 7298 7157 7056 +f 7377 7297 7156 +f 7204 7377 7156 +f 7298 7378 7157 +f 7378 7205 7157 +f 7275 7377 7204 +f 7378 7276 7205 +f 7453 7377 7275 +f 7349 7453 7275 +f 7378 7454 7276 +f 7454 7350 7276 +f 7407 7453 7349 +f 7454 7408 7350 +f 7551 7453 7407 +f 7481 7551 7407 +f 7454 7552 7408 +f 7552 7482 7408 +f 7571 7551 7481 +f 7552 7572 7482 +f 7571 7696 7551 +f 7697 7572 7552 +f 7706 7696 7571 +f 7697 7707 7572 +f 7741 7779 7696 +f 7706 7741 7696 +f 7780 7742 7697 +f 7742 7707 7697 +f 7876 7779 7741 +f 7780 7877 7742 +f 7966 7914 7779 +f 7876 7966 7779 +f 7915 7967 7780 +f 7967 7877 7780 +f 7966 8038 7914 +f 8038 8000 7914 +f 8001 8097 7915 +f 8097 8039 7915 +f 8039 7967 7915 +f 8162 8070 8000 +f 8038 8096 8000 +f 8096 8162 8000 +f 8071 8163 8001 +f 8163 8097 8001 +f 8290 8150 8070 +f 8162 8232 8070 +f 8232 8290 8070 +f 8151 8291 8071 +f 8291 8233 8071 +f 8233 8163 8071 +f 8437 8216 8150 +f 8290 8389 8150 +f 8389 8437 8150 +f 8217 8438 8151 +f 8438 8390 8151 +f 8390 8291 8151 +f 8506 8242 8216 +f 8437 8476 8216 +f 8476 8506 8216 +f 8243 8507 8217 +f 8507 8477 8217 +f 8477 8438 8217 +f 8563 8268 8242 +f 8506 8534 8242 +f 8534 8563 8242 +f 8269 8564 8243 +f 8564 8535 8243 +f 8535 8507 8243 +f 8593 8304 8268 +f 8563 8575 8268 +f 8575 8593 8268 +f 8305 8594 8269 +f 8594 8576 8269 +f 8576 8564 8269 +f 8593 8603 8304 +f 8603 8305 8304 +f 8603 8604 8305 +f 8604 8594 8305 +f 7128 7126 7116 +f 7117 7128 7116 +f 7127 7117 7116 +f 7127 7129 7117 +f 7150 7148 7126 +f 7128 7150 7126 +f 7149 7129 7127 +f 7149 7151 7129 +f 7190 7188 7148 +f 7150 7190 7148 +f 7189 7151 7149 +f 7189 7191 7151 +f 7228 7226 7188 +f 7190 7228 7188 +f 7227 7191 7189 +f 7227 7229 7191 +f 7297 7295 7226 +f 7228 7297 7226 +f 7296 7229 7227 +f 7296 7298 7229 +f 7377 7375 7295 +f 7297 7377 7295 +f 7376 7298 7296 +f 7376 7378 7298 +f 7453 7451 7375 +f 7377 7453 7375 +f 7452 7378 7376 +f 7452 7454 7378 +f 7551 7549 7451 +f 7453 7551 7451 +f 7550 7454 7452 +f 7550 7552 7454 +f 7696 7694 7549 +f 7551 7696 7549 +f 7695 7552 7550 +f 7695 7697 7552 +f 7779 7777 7694 +f 7696 7779 7694 +f 7778 7697 7695 +f 7778 7780 7697 +f 7914 7912 7777 +f 7779 7914 7777 +f 7913 7780 7778 +f 7913 7915 7780 +f 8000 7998 7912 +f 7914 8000 7912 +f 7999 7915 7913 +f 7999 8001 7915 +f 8070 8068 7998 +f 8000 8070 7998 +f 8069 8001 7999 +f 8069 8071 8001 +f 8150 8148 8068 +f 8070 8150 8068 +f 8149 8071 8069 +f 8149 8151 8071 +f 8216 8214 8148 +f 8150 8216 8148 +f 8215 8151 8149 +f 8215 8217 8151 +f 8242 8240 8214 +f 8216 8242 8214 +f 8241 8217 8215 +f 8241 8243 8217 +f 8268 8266 8240 +f 8242 8268 8240 +f 8267 8243 8241 +f 8267 8269 8243 +f 8304 8302 8266 +f 8268 8304 8266 +f 8303 8269 8267 +f 8303 8305 8269 +f 8305 8303 8302 +f 8304 8305 8302 +f 7238 7127 7116 +f 7126 7234 7116 +f 7234 7238 7116 +f 7148 7237 7126 +f 7237 7234 7126 +f 7238 7264 7127 +f 7264 7149 7127 +f 7188 7263 7148 +f 7263 7237 7148 +f 7264 7286 7149 +f 7286 7189 7149 +f 7226 7285 7188 +f 7285 7263 7188 +f 7286 7336 7189 +f 7336 7227 7189 +f 7295 7335 7226 +f 7335 7285 7226 +f 7336 7382 7227 +f 7382 7296 7227 +f 7375 7381 7295 +f 7381 7335 7295 +f 7382 7424 7296 +f 7424 7376 7296 +f 7451 7423 7375 +f 7423 7381 7375 +f 7424 7492 7376 +f 7492 7452 7376 +f 7451 7491 7423 +f 7549 7491 7451 +f 7492 7583 7452 +f 7583 7550 7452 +f 7549 7582 7491 +f 7694 7582 7549 +f 7583 7709 7550 +f 7709 7695 7550 +f 7694 7708 7582 +f 7777 7708 7694 +f 7709 7738 7695 +f 7738 7778 7695 +f 7777 7737 7708 +f 7912 7872 7737 +f 7777 7912 7737 +f 7873 7778 7738 +f 7873 7913 7778 +f 7998 7954 7872 +f 7912 7998 7872 +f 7955 7913 7873 +f 7955 7999 7913 +f 8068 8004 7954 +f 7998 8068 7954 +f 8005 7999 7955 +f 8005 8069 7999 +f 8148 8050 8004 +f 8068 8148 8004 +f 8051 8069 8005 +f 8214 8102 8050 +f 8148 8214 8050 +f 8149 8069 8051 +f 8103 8149 8051 +f 8240 8144 8102 +f 8214 8240 8102 +f 8215 8149 8103 +f 8145 8215 8103 +f 8266 8160 8144 +f 8240 8266 8144 +f 8241 8215 8145 +f 8161 8241 8145 +f 8302 8172 8160 +f 8266 8302 8160 +f 8267 8241 8161 +f 8173 8267 8161 +f 8303 8173 8172 +f 8302 8303 8172 +f 8303 8267 8173 +f 7237 7711 7234 +f 7711 7238 7234 +f 7263 7711 7237 +f 7711 7264 7238 +f 7285 7711 7263 +f 7711 7286 7264 +f 7335 7711 7285 +f 7711 7336 7286 +f 7381 7711 7335 +f 7711 7382 7336 +f 7423 7711 7381 +f 7711 7424 7382 +f 7491 7711 7423 +f 7711 7492 7424 +f 7582 7711 7491 +f 7711 7583 7492 +f 7708 7711 7582 +f 7711 7709 7583 +f 7737 7711 7708 +f 7711 7738 7709 +f 7955 7873 7711 +f 7873 7738 7711 +f 8103 8051 7711 +f 8051 8005 7711 +f 8005 7955 7711 +f 8173 8161 7711 +f 8161 8145 7711 +f 8145 8103 7711 +f 8144 8160 7711 +f 8160 8172 7711 +f 8172 8173 7711 +f 8004 8050 7711 +f 8050 8102 7711 +f 8102 8144 7711 +f 7737 7872 7711 +f 7872 7954 7711 +f 7954 8004 7711 +f 6597 6692 6593 +f 6691 6596 6593 +f 6692 6691 6593 +f 6691 6600 6596 +f 6601 6692 6597 +f 6699 6606 6600 +f 6691 6699 6600 +f 6607 6700 6601 +f 6700 6692 6601 +f 6699 6619 6606 +f 6620 6700 6607 +f 6716 6629 6619 +f 6699 6716 6619 +f 6630 6717 6620 +f 6717 6700 6620 +f 6716 6642 6629 +f 6643 6717 6630 +f 6734 6658 6642 +f 6716 6734 6642 +f 6659 6735 6643 +f 6735 6717 6643 +f 6734 6671 6658 +f 6672 6735 6659 +f 6765 6687 6671 +f 6734 6765 6671 +f 6688 6766 6672 +f 6766 6735 6672 +f 6765 6714 6687 +f 6715 6766 6688 +f 6692 6777 6691 +f 6786 6699 6691 +f 6777 6786 6691 +f 6700 6778 6692 +f 6778 6777 6692 +f 6806 6716 6699 +f 6786 6806 6699 +f 6717 6787 6700 +f 6787 6778 6700 +f 6810 6728 6714 +f 6765 6810 6714 +f 6729 6811 6715 +f 6811 6766 6715 +f 6818 6734 6716 +f 6806 6818 6716 +f 6735 6807 6717 +f 6807 6787 6717 +f 6810 6755 6728 +f 6756 6811 6729 +f 6847 6765 6734 +f 6818 6847 6734 +f 6766 6819 6735 +f 6819 6807 6735 +f 6843 6775 6755 +f 6810 6843 6755 +f 6776 6844 6756 +f 6844 6811 6756 +f 6877 6810 6765 +f 6847 6877 6765 +f 6811 6848 6766 +f 6848 6819 6766 +f 6843 6808 6775 +f 6809 6844 6776 +f 6778 6871 6777 +f 6875 6786 6777 +f 6871 6875 6777 +f 6787 6872 6778 +f 6872 6871 6778 +f 6883 6806 6786 +f 6875 6883 6786 +f 6807 6876 6787 +f 6876 6872 6787 +f 6903 6818 6806 +f 6883 6903 6806 +f 6819 6884 6807 +f 6884 6876 6807 +f 6889 6829 6808 +f 6843 6889 6808 +f 6830 6890 6809 +f 6890 6844 6809 +f 6917 6843 6810 +f 6877 6917 6810 +f 6844 6878 6811 +f 6878 6848 6811 +f 6925 6847 6818 +f 6903 6925 6818 +f 6848 6904 6819 +f 6904 6884 6819 +f 6889 6863 6829 +f 6864 6890 6830 +f 6945 6889 6843 +f 6917 6945 6843 +f 6890 6918 6844 +f 6918 6878 6844 +f 6941 6877 6847 +f 6925 6941 6847 +f 6878 6926 6848 +f 6926 6904 6848 +f 6935 6885 6863 +f 6889 6935 6863 +f 6886 6936 6864 +f 6936 6890 6864 +f 6872 6951 6871 +f 6957 6875 6871 +f 6951 6957 6871 +f 6876 6952 6872 +f 6952 6951 6872 +f 6963 6883 6875 +f 6957 6963 6875 +f 6884 6958 6876 +f 6958 6952 6876 +f 6981 6917 6877 +f 6941 6981 6877 +f 6918 6942 6878 +f 6942 6926 6878 +f 6983 6903 6883 +f 6963 6983 6883 +f 6904 6964 6884 +f 6964 6958 6884 +f 6935 6921 6885 +f 6922 6936 6886 +f 6991 6935 6889 +f 6945 6991 6889 +f 6936 6946 6890 +f 6946 6918 6890 +f 6995 6925 6903 +f 6983 6995 6903 +f 6926 6984 6904 +f 6984 6964 6904 +f 7003 6945 6917 +f 6981 7003 6917 +f 6946 6982 6918 +f 6982 6942 6918 +f 6987 6937 6921 +f 6935 6987 6921 +f 6938 6988 6922 +f 6988 6936 6922 +f 7013 6941 6925 +f 6995 7013 6925 +f 6942 6996 6926 +f 6996 6984 6926 +f 7051 6987 6935 +f 6991 7051 6935 +f 6988 6992 6936 +f 6992 6946 6936 +f 6987 6979 6937 +f 6980 6988 6938 +f 7067 6981 6941 +f 7013 7067 6941 +f 6982 7014 6942 +f 7014 6996 6942 +f 7089 6991 6945 +f 7003 7089 6945 +f 6992 7004 6946 +f 7004 6982 6946 +f 7029 7027 6951 +f 6952 7029 6951 +f 7028 6957 6951 +f 7027 7028 6951 +f 6958 7037 6952 +f 7037 7029 6952 +f 7028 7036 6957 +f 7039 6963 6957 +f 7036 7039 6957 +f 7042 7041 6958 +f 7041 7040 6958 +f 7040 7038 6958 +f 6964 7042 6958 +f 7038 7037 6958 +f 7039 7043 6963 +f 7043 7047 6963 +f 7047 7050 6963 +f 7050 7054 6963 +f 7054 7081 6963 +f 7118 6983 6963 +f 7081 7118 6963 +f 7082 7053 6964 +f 7053 7049 6964 +f 7049 7048 6964 +f 7048 7044 6964 +f 6984 7082 6964 +f 7044 7042 6964 +f 7083 6999 6979 +f 6987 7083 6979 +f 7000 7084 6980 +f 7084 6988 6980 +f 7138 7003 6981 +f 7067 7138 6981 +f 7004 7068 6982 +f 7068 7014 6982 +f 7136 6995 6983 +f 7118 7136 6983 +f 6996 7119 6984 +f 7119 7082 6984 +f 7158 7083 6987 +f 7051 7158 6987 +f 7084 7052 6988 +f 7052 6992 6988 +f 7160 7051 6991 +f 7089 7160 6991 +f 7052 7090 6992 +f 7090 7004 6992 +f 7162 7013 6995 +f 7136 7162 6995 +f 7014 7137 6996 +f 7137 7119 6996 +f 7083 7045 6999 +f 7046 7084 7000 +f 7180 7089 7003 +f 7138 7180 7003 +f 7090 7139 7004 +f 7139 7068 7004 +f 7186 7067 7013 +f 7162 7186 7013 +f 7068 7163 7014 +f 7163 7137 7014 +f 7182 7134 7045 +f 7083 7182 7045 +f 7135 7183 7046 +f 7183 7084 7046 +f 7202 7158 7051 +f 7160 7202 7051 +f 7084 7159 7052 +f 7159 7161 7052 +f 7161 7090 7052 +f 7082 7057 7053 +f 7058 7081 7054 +f 7082 7065 7057 +f 7066 7081 7058 +f 7082 7076 7065 +f 7071 7081 7066 +f 7206 7138 7067 +f 7186 7206 7067 +f 7139 7187 7068 +f 7187 7163 7068 +f 7077 7081 7071 +f 7082 7086 7076 +f 7080 7081 7077 +f 7085 7081 7080 +f 7085 7200 7081 +f 7208 7118 7081 +f 7200 7208 7081 +f 7201 7197 7082 +f 7197 7086 7082 +f 7119 7201 7082 +f 7216 7182 7083 +f 7158 7216 7083 +f 7183 7159 7084 +f 7196 7200 7085 +f 7212 7160 7089 +f 7180 7212 7089 +f 7161 7181 7090 +f 7181 7139 7090 +f 7218 7136 7118 +f 7208 7218 7118 +f 7137 7209 7119 +f 7209 7201 7119 +f 7182 7178 7134 +f 7179 7183 7135 +f 7241 7162 7136 +f 7218 7241 7136 +f 7163 7219 7137 +f 7219 7209 7137 +f 7239 7180 7138 +f 7206 7239 7138 +f 7181 7207 7139 +f 7207 7187 7139 +f 7269 7216 7158 +f 7202 7269 7158 +f 7183 7217 7159 +f 7217 7203 7159 +f 7203 7161 7159 +f 7267 7202 7160 +f 7212 7267 7160 +f 7203 7213 7161 +f 7213 7181 7161 +f 7271 7186 7162 +f 7241 7271 7162 +f 7187 7242 7163 +f 7242 7219 7163 +f 7247 7210 7178 +f 7182 7247 7178 +f 7211 7248 7179 +f 7248 7183 7179 +f 7281 7212 7180 +f 7239 7281 7180 +f 7213 7240 7181 +f 7240 7207 7181 +f 7287 7247 7182 +f 7216 7287 7182 +f 7248 7217 7183 +f 7291 7206 7186 +f 7271 7291 7186 +f 7207 7272 7187 +f 7272 7242 7187 +f 7277 7200 7196 +f 7201 7278 7197 +f 7277 7208 7200 +f 7209 7278 7201 +f 7311 7269 7202 +f 7267 7311 7202 +f 7217 7270 7203 +f 7270 7268 7203 +f 7268 7213 7203 +f 7321 7239 7206 +f 7291 7321 7206 +f 7240 7292 7207 +f 7292 7272 7207 +f 7289 7309 7208 +f 7277 7289 7208 +f 7333 7218 7208 +f 7309 7333 7208 +f 7304 7290 7209 +f 7310 7304 7209 +f 7219 7310 7209 +f 7290 7278 7209 +f 7247 7261 7210 +f 7262 7248 7211 +f 7327 7267 7212 +f 7281 7327 7212 +f 7268 7282 7213 +f 7282 7240 7213 +f 7337 7287 7216 +f 7269 7337 7216 +f 7248 7288 7217 +f 7288 7270 7217 +f 7341 7241 7218 +f 7333 7341 7218 +f 7242 7334 7219 +f 7334 7310 7219 +f 7363 7281 7239 +f 7321 7363 7239 +f 7282 7322 7240 +f 7322 7292 7240 +f 7367 7271 7241 +f 7341 7367 7241 +f 7272 7342 7242 +f 7342 7334 7242 +f 7339 7261 7247 +f 7369 7339 7247 +f 7287 7369 7247 +f 7262 7340 7248 +f 7340 7288 7248 +f 7339 7301 7261 +f 7302 7340 7262 +f 7373 7311 7267 +f 7327 7373 7267 +f 7270 7312 7268 +f 7312 7328 7268 +f 7328 7282 7268 +f 7379 7337 7269 +f 7311 7379 7269 +f 7288 7338 7270 +f 7338 7312 7270 +f 7385 7291 7271 +f 7367 7385 7271 +f 7292 7368 7272 +f 7368 7342 7272 +f 7389 7327 7281 +f 7363 7389 7281 +f 7328 7364 7282 +f 7364 7322 7282 +f 7395 7369 7287 +f 7337 7395 7287 +f 7340 7370 7288 +f 7370 7338 7288 +f 7303 7309 7289 +f 7397 7321 7291 +f 7385 7397 7291 +f 7322 7386 7292 +f 7386 7368 7292 +f 7339 7359 7301 +f 7360 7340 7302 +f 7315 7309 7303 +f 7310 7316 7304 +f 7387 7333 7309 +f 7315 7387 7309 +f 7334 7316 7310 +f 7409 7379 7311 +f 7373 7409 7311 +f 7338 7380 7312 +f 7380 7374 7312 +f 7374 7328 7312 +f 7334 7388 7316 +f 7419 7363 7321 +f 7397 7419 7321 +f 7364 7398 7322 +f 7398 7386 7322 +f 7417 7373 7327 +f 7389 7417 7327 +f 7374 7390 7328 +f 7390 7364 7328 +f 7387 7341 7333 +f 7342 7388 7334 +f 7421 7395 7337 +f 7379 7421 7337 +f 7370 7396 7338 +f 7396 7380 7338 +f 7411 7359 7339 +f 7435 7411 7339 +f 7369 7435 7339 +f 7360 7412 7340 +f 7412 7370 7340 +f 7443 7367 7341 +f 7387 7443 7341 +f 7368 7388 7342 +f 7411 7393 7359 +f 7394 7412 7360 +f 7449 7389 7363 +f 7419 7449 7363 +f 7390 7420 7364 +f 7420 7398 7364 +f 7457 7385 7367 +f 7443 7457 7367 +f 7444 7388 7368 +f 7386 7444 7368 +f 7463 7435 7369 +f 7395 7463 7369 +f 7412 7436 7370 +f 7436 7396 7370 +f 7459 7409 7373 +f 7417 7459 7373 +f 7380 7410 7374 +f 7410 7418 7374 +f 7418 7390 7374 +f 7465 7421 7379 +f 7409 7465 7379 +f 7396 7422 7380 +f 7422 7410 7380 +f 7471 7397 7385 +f 7457 7471 7385 +f 7458 7444 7386 +f 7398 7458 7386 +f 7473 7417 7389 +f 7449 7473 7389 +f 7418 7450 7390 +f 7450 7420 7390 +f 7411 7441 7393 +f 7442 7412 7394 +f 7483 7463 7395 +f 7421 7483 7395 +f 7436 7464 7396 +f 7464 7422 7396 +f 7479 7419 7397 +f 7471 7479 7397 +f 7420 7480 7398 +f 7472 7458 7398 +f 7480 7472 7398 +f 7495 7465 7409 +f 7459 7495 7409 +f 7422 7466 7410 +f 7466 7460 7410 +f 7460 7418 7410 +f 7497 7441 7411 +f 7517 7497 7411 +f 7435 7517 7411 +f 7442 7498 7412 +f 7498 7436 7412 +f 7501 7459 7417 +f 7473 7501 7417 +f 7460 7474 7418 +f 7474 7450 7418 +f 7493 7449 7419 +f 7487 7493 7419 +f 7479 7487 7419 +f 7450 7488 7420 +f 7488 7480 7420 +f 7513 7483 7421 +f 7465 7513 7421 +f 7464 7484 7422 +f 7484 7466 7422 +f 7523 7517 7435 +f 7463 7523 7435 +f 7498 7518 7436 +f 7518 7464 7436 +f 7497 7485 7441 +f 7486 7498 7442 +f 7521 7473 7449 +f 7493 7521 7449 +f 7474 7494 7450 +f 7494 7488 7450 +f 7541 7495 7459 +f 7501 7541 7459 +f 7466 7496 7460 +f 7496 7502 7460 +f 7502 7474 7460 +f 7557 7523 7463 +f 7483 7557 7463 +f 7518 7524 7464 +f 7524 7484 7464 +f 7547 7513 7465 +f 7495 7547 7465 +f 7484 7514 7466 +f 7514 7496 7466 +f 7521 7501 7473 +f 7502 7522 7474 +f 7522 7494 7474 +f 7575 7557 7483 +f 7513 7575 7483 +f 7524 7558 7484 +f 7558 7514 7484 +f 7497 7539 7485 +f 7540 7498 7486 +f 7541 7563 7495 +f 7567 7547 7495 +f 7563 7567 7495 +f 7568 7542 7496 +f 7570 7568 7496 +f 7514 7548 7496 +f 7548 7570 7496 +f 7542 7502 7496 +f 7638 7539 7497 +f 7650 7638 7497 +f 7517 7650 7497 +f 7540 7639 7498 +f 7639 7518 7498 +f 7559 7541 7501 +f 7521 7559 7501 +f 7542 7522 7502 +f 7547 7573 7513 +f 7577 7575 7513 +f 7573 7577 7513 +f 7578 7548 7514 +f 7558 7576 7514 +f 7576 7578 7514 +f 7658 7650 7517 +f 7523 7658 7517 +f 7639 7651 7518 +f 7651 7524 7518 +f 7542 7560 7522 +f 7670 7658 7523 +f 7557 7670 7523 +f 7651 7659 7524 +f 7659 7558 7524 +f 7638 7618 7539 +f 7619 7639 7540 +f 7559 7563 7541 +f 7568 7564 7542 +f 7564 7560 7542 +f 7567 7569 7547 +f 7569 7573 7547 +f 7578 7574 7548 +f 7574 7570 7548 +f 7592 7593 7557 +f 7575 7590 7557 +f 7590 7592 7557 +f 7593 7595 7557 +f 7595 7597 7557 +f 7597 7598 7557 +f 7598 7603 7557 +f 7603 7609 7557 +f 7612 7670 7557 +f 7609 7612 7557 +f 7673 7613 7558 +f 7613 7604 7558 +f 7604 7596 7558 +f 7596 7594 7558 +f 7594 7591 7558 +f 7591 7589 7558 +f 7589 7576 7558 +f 7659 7671 7558 +f 7671 7673 7558 +f 7588 7590 7575 +f 7577 7581 7575 +f 7581 7586 7575 +f 7586 7588 7575 +f 7587 7585 7576 +f 7585 7584 7576 +f 7584 7580 7576 +f 7580 7579 7576 +f 7589 7587 7576 +f 7579 7578 7576 +f 7672 7670 7612 +f 7638 7688 7618 +f 7689 7639 7619 +f 7721 7688 7638 +f 7719 7721 7638 +f 7650 7719 7638 +f 7689 7722 7639 +f 7722 7651 7639 +f 7717 7719 7650 +f 7658 7717 7650 +f 7722 7720 7651 +f 7720 7659 7651 +f 7715 7717 7658 +f 7670 7715 7658 +f 7720 7718 7659 +f 7718 7671 7659 +f 7713 7715 7670 +f 7672 7713 7670 +f 7718 7716 7671 +f 7716 7673 7671 +f 7716 7714 7673 +f 7721 7723 7688 +f 7724 7722 7689 +f 7759 7715 7713 +f 7716 7819 7714 +f 7819 7760 7714 +f 7818 7717 7715 +f 7759 7818 7715 +f 7718 7841 7716 +f 7841 7819 7716 +f 7840 7719 7717 +f 7818 7840 7717 +f 7720 7861 7718 +f 7861 7841 7718 +f 7860 7721 7719 +f 7840 7860 7719 +f 7722 7867 7720 +f 7867 7861 7720 +f 7791 7723 7721 +f 7866 7791 7721 +f 7860 7866 7721 +f 7724 7792 7722 +f 7792 7867 7722 +f 7811 7818 7759 +f 7819 7812 7760 +f 7866 7870 7791 +f 7871 7867 7792 +f 7822 7818 7811 +f 7819 7815 7812 +f 7819 7823 7815 +f 7884 7840 7818 +f 7822 7884 7818 +f 7841 7911 7819 +f 7911 7885 7819 +f 7885 7823 7819 +f 7829 7884 7822 +f 7885 7828 7823 +f 7885 7830 7828 +f 7885 7831 7830 +f 7832 7884 7829 +f 7885 7833 7831 +f 7834 7884 7832 +f 7885 7835 7833 +f 7885 7836 7835 +f 7837 7884 7834 +f 7885 7869 7836 +f 7869 7838 7836 +f 7868 7884 7837 +f 7839 7868 7837 +f 7869 7842 7838 +f 7843 7868 7839 +f 7910 7860 7840 +f 7884 7910 7840 +f 7861 7951 7841 +f 7951 7911 7841 +f 7869 7845 7842 +f 7844 7868 7843 +f 7846 7868 7844 +f 7869 7849 7845 +f 7847 7868 7846 +f 7848 7868 7847 +f 7850 7868 7848 +f 7869 7851 7849 +f 7852 7868 7850 +f 7854 7852 7850 +f 7853 7855 7851 +f 7869 7853 7851 +f 7882 7868 7852 +f 7854 7882 7852 +f 7869 7927 7853 +f 7927 7883 7853 +f 7883 7855 7853 +f 7856 7882 7854 +f 7883 7857 7855 +f 7858 7864 7856 +f 7864 7882 7856 +f 7883 7859 7857 +f 7862 7864 7858 +f 7883 7865 7859 +f 7865 7863 7859 +f 7950 7866 7860 +f 7910 7950 7860 +f 7867 7961 7861 +f 7961 7951 7861 +f 7874 7864 7862 +f 7865 7881 7863 +f 7881 7875 7863 +f 7874 7880 7864 +f 7880 7882 7864 +f 7883 7949 7865 +f 7949 7881 7865 +f 7928 7870 7866 +f 7960 7928 7866 +f 7950 7960 7866 +f 7871 7929 7867 +f 7929 7961 7867 +f 7926 7884 7868 +f 7882 7926 7868 +f 7885 7963 7869 +f 7963 7927 7869 +f 7906 7922 7874 +f 7922 7880 7874 +f 7881 7923 7875 +f 7923 7959 7875 +f 7959 7907 7875 +f 7948 7882 7880 +f 7922 7948 7880 +f 7949 7971 7881 +f 7971 7923 7881 +f 7948 7926 7882 +f 7927 7977 7883 +f 7977 7949 7883 +f 7962 7910 7884 +f 7926 7962 7884 +f 7911 7983 7885 +f 7983 7963 7885 +f 7978 7958 7906 +f 7958 7922 7906 +f 7920 7978 7906 +f 7959 7979 7907 +f 7979 7921 7907 +f 7982 7950 7910 +f 7962 7982 7910 +f 7951 8011 7911 +f 8011 7983 7911 +f 7996 7978 7920 +f 7944 7996 7920 +f 7979 7997 7921 +f 7997 7945 7921 +f 7970 7948 7922 +f 7958 7970 7922 +f 7971 8007 7923 +f 8007 7959 7923 +f 7976 7962 7926 +f 7948 7976 7926 +f 7963 8013 7927 +f 8013 7977 7927 +f 7960 7972 7928 +f 7973 7961 7929 +f 7952 7996 7944 +f 7997 8035 7945 +f 8035 7953 7945 +f 7970 7976 7948 +f 7977 8021 7949 +f 8021 7971 7949 +f 8010 7960 7950 +f 7982 8010 7950 +f 7961 8041 7951 +f 8041 8011 7951 +f 7964 8034 7952 +f 8034 7996 7952 +f 8035 7965 7953 +f 8006 7970 7958 +f 7978 8006 7958 +f 8007 8043 7959 +f 8043 7979 7959 +f 8016 7972 7960 +f 8040 8016 7960 +f 8010 8040 7960 +f 7973 8017 7961 +f 8017 8041 7961 +f 8012 7982 7962 +f 7976 8012 7962 +f 7983 8049 7963 +f 8049 8013 7963 +f 7968 8044 7964 +f 8044 8034 7964 +f 8035 8045 7965 +f 8045 7969 7965 +f 8036 8052 7968 +f 8052 8044 7968 +f 8067 8037 7969 +f 8045 8053 7969 +f 8053 8067 7969 +f 8020 7976 7970 +f 8006 8020 7970 +f 8021 8059 7971 +f 8059 8007 7971 +f 8020 8012 7976 +f 8013 8061 7977 +f 8061 8021 7977 +f 8042 8006 7978 +f 7996 8042 7978 +f 8043 8063 7979 +f 8063 7997 7979 +f 8048 8010 7982 +f 8012 8048 7982 +f 8011 8073 7983 +f 8073 8049 7983 +f 8062 8042 7996 +f 8034 8062 7996 +f 8063 8099 7997 +f 8099 8035 7997 +f 8058 8020 8006 +f 8042 8058 8006 +f 8059 8107 8007 +f 8107 8043 8007 +f 8072 8040 8010 +f 8048 8072 8010 +f 8041 8133 8011 +f 8133 8073 8011 +f 8060 8048 8012 +f 8020 8060 8012 +f 8049 8119 8013 +f 8119 8061 8013 +f 8040 8056 8016 +f 8057 8041 8017 +f 8058 8060 8020 +f 8061 8131 8021 +f 8131 8059 8021 +f 8098 8062 8034 +f 8044 8098 8034 +f 8099 8139 8035 +f 8139 8045 8035 +f 8088 8066 8036 +f 8066 8052 8036 +f 8083 8089 8037 +f 8067 8083 8037 +f 8108 8056 8040 +f 8132 8108 8040 +f 8072 8132 8040 +f 8057 8109 8041 +f 8109 8133 8041 +f 8106 8058 8042 +f 8062 8106 8042 +f 8107 8147 8043 +f 8147 8063 8043 +f 8138 8098 8044 +f 8052 8138 8044 +f 8139 8153 8045 +f 8153 8053 8045 +f 8118 8072 8048 +f 8060 8118 8048 +f 8073 8159 8049 +f 8159 8119 8049 +f 8152 8138 8052 +f 8066 8152 8052 +f 8153 8171 8053 +f 8171 8067 8053 +f 8130 8060 8058 +f 8106 8130 8058 +f 8131 8167 8059 +f 8167 8107 8059 +f 8130 8118 8060 +f 8119 8169 8061 +f 8169 8131 8061 +f 8146 8106 8062 +f 8098 8146 8062 +f 8147 8183 8063 +f 8183 8099 8063 +f 8170 8152 8066 +f 8082 8170 8066 +f 8088 8082 8066 +f 8191 8083 8067 +f 8171 8191 8067 +f 8158 8132 8072 +f 8118 8158 8072 +f 8133 8199 8073 +f 8199 8159 8073 +f 8190 8170 8082 +f 8100 8190 8082 +f 8088 8100 8082 +f 8101 8089 8083 +f 8191 8101 8083 +f 8182 8146 8098 +f 8138 8182 8098 +f 8183 8221 8099 +f 8221 8139 8099 +f 8128 8206 8100 +f 8206 8190 8100 +f 8191 8207 8101 +f 8207 8129 8101 +f 8166 8130 8106 +f 8146 8166 8106 +f 8167 8223 8107 +f 8223 8147 8107 +f 8132 8154 8108 +f 8155 8133 8109 +f 8168 8158 8118 +f 8130 8168 8118 +f 8159 8227 8119 +f 8227 8169 8119 +f 8140 8206 8128 +f 8207 8141 8129 +f 8166 8168 8130 +f 8169 8229 8131 +f 8229 8167 8131 +f 8194 8154 8132 +f 8198 8194 8132 +f 8158 8198 8132 +f 8155 8195 8133 +f 8195 8199 8133 +f 8220 8182 8138 +f 8152 8220 8138 +f 8221 8237 8139 +f 8237 8153 8139 +f 8224 8206 8140 +f 8207 8225 8141 +f 8222 8166 8146 +f 8182 8222 8146 +f 8223 8247 8147 +f 8247 8183 8147 +f 8236 8220 8152 +f 8170 8236 8152 +f 8237 8259 8153 +f 8259 8171 8153 +f 8226 8198 8158 +f 8168 8226 8158 +f 8199 8263 8159 +f 8263 8227 8159 +f 8228 8168 8166 +f 8222 8228 8166 +f 8229 8275 8167 +f 8275 8223 8167 +f 8228 8226 8168 +f 8227 8287 8169 +f 8287 8229 8169 +f 8258 8236 8170 +f 8190 8258 8170 +f 8259 8283 8171 +f 8283 8191 8171 +f 8246 8222 8182 +f 8220 8246 8182 +f 8247 8307 8183 +f 8307 8221 8183 +f 8282 8258 8190 +f 8206 8282 8190 +f 8324 8207 8191 +f 8283 8324 8191 +f 8198 8234 8194 +f 8235 8199 8195 +f 8272 8234 8198 +f 8262 8272 8198 +f 8226 8262 8198 +f 8235 8273 8199 +f 8273 8263 8199 +f 8323 8282 8206 +f 8224 8323 8206 +f 8324 8225 8207 +f 8306 8246 8220 +f 8236 8306 8220 +f 8307 8384 8221 +f 8384 8237 8221 +f 8274 8228 8222 +f 8246 8274 8222 +f 8275 8386 8223 +f 8386 8247 8223 +f 8337 8356 8224 +f 8356 8323 8224 +f 8357 8338 8225 +f 8324 8357 8225 +f 8286 8262 8226 +f 8228 8286 8226 +f 8263 8398 8227 +f 8398 8287 8227 +f 8274 8286 8228 +f 8287 8400 8229 +f 8400 8275 8229 +f 8383 8306 8236 +f 8258 8383 8236 +f 8384 8410 8237 +f 8410 8259 8237 +f 8385 8274 8246 +f 8306 8385 8246 +f 8386 8432 8247 +f 8432 8307 8247 +f 8409 8383 8258 +f 8282 8409 8258 +f 8410 8434 8259 +f 8434 8283 8259 +f 8411 8366 8262 +f 8366 8272 8262 +f 8397 8411 8262 +f 8286 8397 8262 +f 8273 8367 8263 +f 8367 8412 8263 +f 8412 8398 8263 +f 8399 8286 8274 +f 8385 8399 8274 +f 8400 8444 8275 +f 8444 8386 8275 +f 8433 8409 8282 +f 8323 8433 8282 +f 8434 8442 8283 +f 8442 8324 8283 +f 8399 8397 8286 +f 8398 8448 8287 +f 8448 8400 8287 +f 8431 8385 8306 +f 8383 8431 8306 +f 8432 8452 8307 +f 8452 8384 8307 +f 8441 8433 8323 +f 8356 8441 8323 +f 8454 8357 8324 +f 8442 8454 8324 +f 8343 8356 8337 +f 8357 8339 8338 +f 8357 8342 8339 +f 8357 8346 8342 +f 8350 8356 8343 +f 8357 8349 8346 +f 8357 8355 8349 +f 8358 8356 8350 +f 8358 8362 8356 +f 8362 8453 8356 +f 8453 8441 8356 +f 8361 8355 8357 +f 8454 8361 8357 +f 8454 8364 8361 +f 8363 8453 8362 +f 8365 8453 8363 +f 8454 8368 8364 +f 8369 8453 8365 +f 8454 8373 8368 +f 8372 8453 8369 +f 8374 8453 8372 +f 8454 8376 8373 +f 8375 8453 8374 +f 8377 8453 8375 +f 8454 8379 8376 +f 8378 8459 8377 +f 8459 8453 8377 +f 8380 8459 8378 +f 8460 8381 8379 +f 8454 8460 8379 +f 8382 8459 8380 +f 8463 8382 8381 +f 8460 8463 8381 +f 8463 8459 8382 +f 8451 8431 8383 +f 8409 8451 8383 +f 8452 8493 8384 +f 8493 8410 8384 +f 8443 8399 8385 +f 8431 8443 8385 +f 8444 8495 8386 +f 8495 8432 8386 +f 8474 8439 8397 +f 8439 8411 8397 +f 8447 8474 8397 +f 8399 8447 8397 +f 8412 8440 8398 +f 8440 8475 8398 +f 8475 8448 8398 +f 8443 8447 8399 +f 8448 8503 8400 +f 8503 8444 8400 +f 8492 8451 8409 +f 8433 8492 8409 +f 8493 8509 8410 +f 8509 8434 8410 +f 8494 8443 8431 +f 8451 8494 8431 +f 8495 8519 8432 +f 8519 8452 8432 +f 8508 8492 8433 +f 8441 8508 8433 +f 8509 8523 8434 +f 8523 8442 8434 +f 8522 8508 8441 +f 8453 8522 8441 +f 8523 8543 8442 +f 8543 8454 8442 +f 8502 8447 8443 +f 8494 8502 8443 +f 8503 8560 8444 +f 8560 8495 8444 +f 8530 8500 8447 +f 8500 8474 8447 +f 8502 8530 8447 +f 8475 8501 8448 +f 8501 8531 8448 +f 8531 8503 8448 +f 8518 8494 8451 +f 8492 8518 8451 +f 8519 8562 8452 +f 8562 8493 8452 +f 8542 8522 8453 +f 8459 8542 8453 +f 8557 8460 8454 +f 8543 8557 8454 +f 8463 8556 8459 +f 8556 8542 8459 +f 8558 8463 8460 +f 8557 8558 8460 +f 8558 8556 8463 +f 8561 8518 8492 +f 8508 8561 8492 +f 8562 8584 8493 +f 8584 8509 8493 +f 8559 8502 8494 +f 8518 8559 8494 +f 8560 8602 8495 +f 8602 8519 8495 +f 8589 8565 8502 +f 8565 8530 8502 +f 8559 8589 8502 +f 8531 8566 8503 +f 8566 8590 8503 +f 8590 8560 8503 +f 8583 8561 8508 +f 8522 8583 8508 +f 8584 8622 8509 +f 8622 8523 8509 +f 8601 8559 8518 +f 8561 8601 8518 +f 8602 8640 8519 +f 8640 8562 8519 +f 8621 8583 8522 +f 8542 8621 8522 +f 8622 8630 8523 +f 8630 8543 8523 +f 8629 8621 8542 +f 8556 8629 8542 +f 8630 8648 8543 +f 8648 8557 8543 +f 8558 8647 8556 +f 8647 8629 8556 +f 8649 8558 8557 +f 8648 8649 8557 +f 8649 8647 8558 +f 8652 8625 8559 +f 8625 8589 8559 +f 8601 8652 8559 +f 8590 8626 8560 +f 8626 8653 8560 +f 8653 8602 8560 +f 8639 8601 8561 +f 8583 8639 8561 +f 8640 8681 8562 +f 8681 8584 8562 +f 8680 8639 8583 +f 8621 8680 8583 +f 8681 8707 8584 +f 8707 8622 8584 +f 8696 8678 8601 +f 8678 8652 8601 +f 8639 8696 8601 +f 8653 8679 8602 +f 8679 8697 8602 +f 8697 8640 8602 +f 8706 8680 8621 +f 8629 8706 8621 +f 8707 8731 8622 +f 8731 8630 8622 +f 8730 8706 8629 +f 8647 8730 8629 +f 8731 8737 8630 +f 8737 8648 8630 +f 8747 8728 8639 +f 8728 8696 8639 +f 8680 8747 8639 +f 8697 8729 8640 +f 8729 8748 8640 +f 8748 8681 8640 +f 8649 8736 8647 +f 8736 8730 8647 +f 8737 8740 8648 +f 8740 8649 8648 +f 8740 8736 8649 +f 8779 8771 8680 +f 8771 8747 8680 +f 8706 8779 8680 +f 8748 8772 8681 +f 8772 8780 8681 +f 8780 8707 8681 +f 8813 8799 8706 +f 8799 8779 8706 +f 8730 8813 8706 +f 8780 8800 8707 +f 8800 8814 8707 +f 8814 8731 8707 +f 8839 8825 8730 +f 8825 8813 8730 +f 8736 8839 8730 +f 8814 8826 8731 +f 8826 8840 8731 +f 8840 8737 8731 +f 8847 8839 8736 +f 8740 8853 8736 +f 8853 8847 8736 +f 8840 8848 8737 +f 8848 8854 8737 +f 8854 8740 8737 +f 8854 8855 8740 +f 8855 8853 8740 +f 6564 6565 6563 +f 6573 6564 6563 +f 6566 6573 6563 +f 6573 6571 6564 +f 6571 6579 6564 +f 6579 6572 6564 +f 6572 6565 6564 +f 6572 6587 6565 +f 6595 6573 6566 +f 6588 6595 6566 +f 6580 6578 6571 +f 6578 6582 6571 +f 6582 6579 6571 +f 6573 6580 6571 +f 6579 6598 6572 +f 6598 6594 6572 +f 6594 6587 6572 +f 6595 6580 6573 +f 6583 6584 6578 +f 6584 6591 6578 +f 6591 6582 6578 +f 6580 6583 6578 +f 6582 6604 6579 +f 6604 6598 6579 +f 6599 6583 6580 +f 6595 6599 6580 +f 6591 6615 6582 +f 6615 6604 6582 +f 6605 6592 6583 +f 6592 6584 6583 +f 6599 6605 6583 +f 6596 6591 6584 +f 6592 6597 6584 +f 6597 6593 6584 +f 6593 6596 6584 +f 6594 6621 6587 +f 6626 6595 6588 +f 6622 6626 6588 +f 6596 6600 6591 +f 6600 6606 6591 +f 6606 6615 6591 +f 6616 6607 6592 +f 6607 6601 6592 +f 6601 6597 6592 +f 6605 6616 6592 +f 6598 6627 6594 +f 6627 6625 6594 +f 6625 6621 6594 +f 6626 6599 6595 +f 6604 6633 6598 +f 6633 6627 6598 +f 6628 6605 6599 +f 6626 6628 6599 +f 6615 6637 6604 +f 6637 6633 6604 +f 6634 6616 6605 +f 6628 6634 6605 +f 6619 6615 6606 +f 6616 6620 6607 +f 6619 6629 6615 +f 6629 6637 6615 +f 6638 6630 6616 +f 6630 6620 6616 +f 6634 6638 6616 +f 6625 6650 6621 +f 6661 6626 6622 +f 6651 6661 6622 +f 6627 6662 6625 +f 6662 6660 6625 +f 6660 6650 6625 +f 6661 6628 6626 +f 6633 6664 6627 +f 6664 6662 6627 +f 6663 6634 6628 +f 6661 6663 6628 +f 6642 6637 6629 +f 6638 6643 6630 +f 6637 6668 6633 +f 6668 6664 6633 +f 6665 6638 6634 +f 6663 6665 6634 +f 6642 6658 6637 +f 6658 6668 6637 +f 6669 6659 6638 +f 6659 6643 6638 +f 6665 6669 6638 +f 6660 6689 6650 +f 6696 6661 6651 +f 6690 6696 6651 +f 6671 6668 6658 +f 6669 6672 6659 +f 6662 6697 6660 +f 6697 6695 6660 +f 6695 6689 6660 +f 6696 6663 6661 +f 6664 6701 6662 +f 6701 6697 6662 +f 6698 6665 6663 +f 6696 6698 6663 +f 6668 6705 6664 +f 6705 6701 6664 +f 6702 6669 6665 +f 6698 6702 6665 +f 6671 6687 6668 +f 6687 6705 6668 +f 6706 6688 6669 +f 6688 6672 6669 +f 6702 6706 6669 +f 6714 6705 6687 +f 6706 6715 6688 +f 6695 6732 6689 +f 6741 6696 6690 +f 6733 6741 6690 +f 6697 6744 6695 +f 6744 6740 6695 +f 6740 6732 6695 +f 6741 6698 6696 +f 6701 6747 6697 +f 6747 6744 6697 +f 6745 6702 6698 +f 6741 6745 6698 +f 6705 6753 6701 +f 6753 6747 6701 +f 6748 6706 6702 +f 6745 6748 6702 +f 6714 6728 6705 +f 6728 6753 6705 +f 6754 6729 6706 +f 6729 6715 6706 +f 6748 6754 6706 +f 6755 6753 6728 +f 6754 6756 6729 +f 6740 6782 6732 +f 6791 6741 6733 +f 6783 6791 6733 +f 6744 6792 6740 +f 6792 6790 6740 +f 6790 6782 6740 +f 6791 6745 6741 +f 6747 6794 6744 +f 6794 6792 6744 +f 6793 6748 6745 +f 6791 6793 6745 +f 6753 6804 6747 +f 6804 6794 6747 +f 6795 6754 6748 +f 6793 6795 6748 +f 6755 6775 6753 +f 6775 6804 6753 +f 6805 6776 6754 +f 6776 6756 6754 +f 6795 6805 6754 +f 6808 6804 6775 +f 6805 6809 6776 +f 6790 6841 6782 +f 6850 6791 6783 +f 6842 6850 6783 +f 6792 6851 6790 +f 6851 6849 6790 +f 6849 6841 6790 +f 6850 6793 6791 +f 6794 6855 6792 +f 6855 6851 6792 +f 6852 6795 6793 +f 6850 6852 6793 +f 6804 6861 6794 +f 6861 6855 6794 +f 6856 6805 6795 +f 6852 6856 6795 +f 6808 6829 6804 +f 6829 6861 6804 +f 6862 6830 6805 +f 6830 6809 6805 +f 6856 6862 6805 +f 6863 6861 6829 +f 6862 6864 6830 +f 6849 6899 6841 +f 6910 6850 6842 +f 6900 6910 6842 +f 6851 6911 6849 +f 6911 6909 6849 +f 6909 6899 6849 +f 6910 6852 6850 +f 6855 6913 6851 +f 6913 6911 6851 +f 6912 6856 6852 +f 6910 6912 6852 +f 6861 6919 6855 +f 6919 6913 6855 +f 6914 6862 6856 +f 6912 6914 6856 +f 6863 6885 6861 +f 6885 6919 6861 +f 6920 6886 6862 +f 6886 6864 6862 +f 6914 6920 6862 +f 6921 6919 6885 +f 6920 6922 6886 +f 6909 6955 6899 +f 6966 6910 6900 +f 6956 6966 6900 +f 6911 6967 6909 +f 6967 6965 6909 +f 6965 6955 6909 +f 6966 6912 6910 +f 6913 6969 6911 +f 6969 6967 6911 +f 6968 6914 6912 +f 6966 6968 6912 +f 6919 6973 6913 +f 6973 6969 6913 +f 6970 6920 6914 +f 6968 6970 6914 +f 6921 6937 6919 +f 6937 6973 6919 +f 6974 6938 6920 +f 6938 6922 6920 +f 6970 6974 6920 +f 6979 6973 6937 +f 6974 6980 6938 +f 6965 7017 6955 +f 7024 6966 6956 +f 7018 7024 6956 +f 6967 7025 6965 +f 7025 7023 6965 +f 7023 7017 6965 +f 7024 6968 6966 +f 6969 7030 6967 +f 7030 7025 6967 +f 7026 6970 6968 +f 7024 7026 6968 +f 6973 7034 6969 +f 7034 7030 6969 +f 7031 6974 6970 +f 7026 7031 6970 +f 6979 6999 6973 +f 6999 7034 6973 +f 7000 6980 6974 +f 7035 7000 6974 +f 7031 7035 6974 +f 7045 7034 6999 +f 7035 7046 7000 +f 7023 7154 7017 +f 7167 7024 7018 +f 7155 7167 7018 +f 7025 7168 7023 +f 7168 7166 7023 +f 7166 7154 7023 +f 7167 7026 7024 +f 7030 7172 7025 +f 7172 7168 7025 +f 7169 7031 7026 +f 7167 7169 7026 +f 7034 7176 7030 +f 7176 7172 7030 +f 7173 7035 7031 +f 7169 7173 7031 +f 7045 7134 7034 +f 7134 7176 7034 +f 7135 7046 7035 +f 7177 7135 7035 +f 7173 7177 7035 +f 7178 7176 7134 +f 7177 7179 7135 +f 7166 7232 7154 +f 7250 7167 7155 +f 7233 7250 7155 +f 7168 7251 7166 +f 7251 7249 7166 +f 7249 7232 7166 +f 7250 7169 7167 +f 7172 7253 7168 +f 7253 7251 7168 +f 7252 7173 7169 +f 7250 7252 7169 +f 7176 7259 7172 +f 7259 7253 7172 +f 7254 7177 7173 +f 7252 7254 7173 +f 7210 7259 7176 +f 7178 7210 7176 +f 7211 7179 7177 +f 7260 7211 7177 +f 7254 7260 7177 +f 7261 7259 7210 +f 7260 7262 7211 +f 7249 7245 7232 +f 7246 7250 7233 +f 7249 7325 7245 +f 7348 7250 7246 +f 7326 7348 7246 +f 7347 7325 7249 +f 7351 7347 7249 +f 7251 7351 7249 +f 7348 7252 7250 +f 7353 7351 7251 +f 7253 7353 7251 +f 7352 7254 7252 +f 7348 7352 7252 +f 7357 7353 7253 +f 7259 7357 7253 +f 7354 7260 7254 +f 7352 7354 7254 +f 7301 7357 7259 +f 7261 7301 7259 +f 7302 7262 7260 +f 7358 7302 7260 +f 7354 7358 7260 +f 7359 7357 7301 +f 7358 7360 7302 +f 7347 7345 7325 +f 7346 7348 7326 +f 7347 7415 7345 +f 7430 7348 7346 +f 7416 7430 7346 +f 7429 7415 7347 +f 7431 7429 7347 +f 7351 7431 7347 +f 7430 7352 7348 +f 7433 7431 7351 +f 7353 7433 7351 +f 7432 7354 7352 +f 7430 7432 7352 +f 7439 7433 7353 +f 7357 7439 7353 +f 7434 7358 7354 +f 7432 7434 7354 +f 7393 7439 7357 +f 7359 7393 7357 +f 7434 7440 7358 +f 7440 7394 7358 +f 7394 7360 7358 +f 7441 7439 7393 +f 7440 7442 7394 +f 7429 7427 7415 +f 7428 7430 7416 +f 7429 7511 7427 +f 7530 7430 7428 +f 7512 7530 7428 +f 7529 7511 7429 +f 7531 7529 7429 +f 7431 7531 7429 +f 7530 7432 7430 +f 7533 7531 7431 +f 7433 7533 7431 +f 7532 7434 7432 +f 7530 7532 7432 +f 7537 7533 7433 +f 7439 7537 7433 +f 7534 7440 7434 +f 7532 7534 7434 +f 7485 7537 7439 +f 7441 7485 7439 +f 7486 7442 7440 +f 7538 7486 7440 +f 7534 7538 7440 +f 7539 7537 7485 +f 7538 7540 7486 +f 7529 7527 7511 +f 7528 7530 7512 +f 7529 7668 7527 +f 7679 7530 7528 +f 7669 7679 7528 +f 7678 7668 7529 +f 7680 7678 7529 +f 7531 7680 7529 +f 7679 7532 7530 +f 7682 7680 7531 +f 7533 7682 7531 +f 7681 7534 7532 +f 7679 7681 7532 +f 7686 7682 7533 +f 7537 7686 7533 +f 7683 7538 7534 +f 7681 7683 7534 +f 7618 7686 7537 +f 7539 7618 7537 +f 7619 7540 7538 +f 7687 7619 7538 +f 7683 7687 7538 +f 7688 7686 7618 +f 7687 7689 7619 +f 7678 7676 7668 +f 7677 7679 7669 +f 7678 7727 7676 +f 7728 7679 7677 +f 7801 7727 7678 +f 7799 7801 7678 +f 7680 7799 7678 +f 7802 7681 7679 +f 7728 7802 7679 +f 7797 7799 7680 +f 7682 7797 7680 +f 7800 7683 7681 +f 7802 7800 7681 +f 7793 7797 7682 +f 7686 7793 7682 +f 7798 7687 7683 +f 7800 7798 7683 +f 7723 7793 7686 +f 7688 7723 7686 +f 7724 7689 7687 +f 7794 7724 7687 +f 7798 7794 7687 +f 7791 7793 7723 +f 7794 7792 7724 +f 7801 7805 7727 +f 7806 7802 7728 +f 7870 7793 7791 +f 7794 7871 7792 +f 7930 7797 7793 +f 7870 7930 7793 +f 7931 7871 7794 +f 7935 7931 7794 +f 7798 7935 7794 +f 7934 7799 7797 +f 7930 7934 7797 +f 7937 7935 7798 +f 7800 7937 7798 +f 7936 7801 7799 +f 7934 7936 7799 +f 7939 7937 7800 +f 7802 7939 7800 +f 7892 7805 7801 +f 7938 7892 7801 +f 7936 7938 7801 +f 7893 7939 7802 +f 7806 7893 7802 +f 7928 7930 7870 +f 7931 7929 7871 +f 7938 7942 7892 +f 7943 7939 7893 +f 7972 7930 7928 +f 7931 7973 7929 +f 8018 7934 7930 +f 7972 8018 7930 +f 8019 7973 7931 +f 8025 8019 7931 +f 7935 8025 7931 +f 8024 7936 7934 +f 8018 8024 7934 +f 8027 8025 7935 +f 7937 8027 7935 +f 8026 7938 7936 +f 8024 8026 7936 +f 8029 8027 7937 +f 7939 8029 7937 +f 7988 7942 7938 +f 8028 7988 7938 +f 8026 8028 7938 +f 7989 8029 7939 +f 7943 7989 7939 +f 8016 8018 7972 +f 8019 8017 7973 +f 8028 8032 7988 +f 8033 8029 7989 +f 8056 8018 8016 +f 8019 8057 8017 +f 8110 8024 8018 +f 8056 8110 8018 +f 8111 8057 8019 +f 8117 8111 8019 +f 8025 8117 8019 +f 8116 8026 8024 +f 8110 8116 8024 +f 8121 8117 8025 +f 8027 8121 8025 +f 8120 8028 8026 +f 8116 8120 8026 +f 8123 8121 8027 +f 8029 8123 8027 +f 8080 8032 8028 +f 8122 8080 8028 +f 8120 8122 8028 +f 8081 8123 8029 +f 8033 8081 8029 +f 8108 8110 8056 +f 8111 8109 8057 +f 8122 8126 8080 +f 8127 8123 8081 +f 8154 8110 8108 +f 8111 8155 8109 +f 8196 8116 8110 +f 8154 8196 8110 +f 8197 8155 8111 +f 8203 8197 8111 +f 8117 8203 8111 +f 8202 8120 8116 +f 8196 8202 8116 +f 8205 8203 8117 +f 8121 8205 8117 +f 8204 8122 8120 +f 8202 8204 8120 +f 8209 8205 8121 +f 8123 8209 8121 +f 8176 8126 8122 +f 8208 8176 8122 +f 8204 8208 8122 +f 8177 8209 8123 +f 8127 8177 8123 +f 8194 8196 8154 +f 8197 8195 8155 +f 8208 8212 8176 +f 8213 8209 8177 +f 8234 8196 8194 +f 8197 8235 8195 +f 8276 8202 8196 +f 8234 8276 8196 +f 8277 8235 8197 +f 8281 8277 8197 +f 8203 8281 8197 +f 8280 8204 8202 +f 8276 8280 8202 +f 8285 8281 8203 +f 8205 8285 8203 +f 8284 8208 8204 +f 8280 8284 8204 +f 8289 8285 8205 +f 8209 8289 8205 +f 8250 8212 8208 +f 8288 8250 8208 +f 8284 8288 8208 +f 8251 8289 8209 +f 8213 8251 8209 +f 8272 8276 8234 +f 8277 8273 8235 +f 8288 8296 8250 +f 8297 8289 8251 +f 8366 8276 8272 +f 8277 8367 8273 +f 8413 8280 8276 +f 8366 8413 8276 +f 8414 8367 8277 +f 8418 8414 8277 +f 8281 8418 8277 +f 8417 8284 8280 +f 8413 8417 8280 +f 8420 8418 8281 +f 8285 8420 8281 +f 8419 8288 8284 +f 8417 8419 8284 +f 8424 8420 8285 +f 8289 8424 8285 +f 8393 8296 8288 +f 8423 8393 8288 +f 8419 8423 8288 +f 8394 8424 8289 +f 8297 8394 8289 +f 8411 8413 8366 +f 8414 8412 8367 +f 8423 8427 8393 +f 8428 8424 8394 +f 8439 8413 8411 +f 8414 8440 8412 +f 8478 8417 8413 +f 8439 8478 8413 +f 8479 8440 8414 +f 8483 8479 8414 +f 8418 8483 8414 +f 8482 8419 8417 +f 8478 8482 8417 +f 8485 8483 8418 +f 8420 8485 8418 +f 8484 8423 8419 +f 8482 8484 8419 +f 8487 8485 8420 +f 8424 8487 8420 +f 8457 8427 8423 +f 8486 8457 8423 +f 8484 8486 8423 +f 8458 8487 8424 +f 8428 8458 8424 +f 8474 8478 8439 +f 8479 8475 8440 +f 8486 8490 8457 +f 8491 8487 8458 +f 8500 8478 8474 +f 8479 8501 8475 +f 8536 8482 8478 +f 8500 8536 8478 +f 8537 8501 8479 +f 8541 8537 8479 +f 8483 8541 8479 +f 8540 8484 8482 +f 8536 8540 8482 +f 8547 8541 8483 +f 8485 8547 8483 +f 8546 8486 8484 +f 8540 8546 8484 +f 8551 8547 8485 +f 8487 8551 8485 +f 8516 8490 8486 +f 8550 8516 8486 +f 8546 8550 8486 +f 8517 8551 8487 +f 8491 8517 8487 +f 8530 8536 8500 +f 8537 8531 8501 +f 8550 8554 8516 +f 8555 8551 8517 +f 8565 8536 8530 +f 8537 8566 8531 +f 8597 8540 8536 +f 8565 8597 8536 +f 8598 8566 8537 +f 8606 8598 8537 +f 8541 8606 8537 +f 8605 8546 8540 +f 8597 8605 8540 +f 8610 8606 8541 +f 8547 8610 8541 +f 8609 8550 8546 +f 8605 8609 8546 +f 8612 8610 8547 +f 8551 8612 8547 +f 8579 8554 8550 +f 8611 8579 8550 +f 8609 8611 8550 +f 8580 8612 8551 +f 8555 8580 8551 +f 8589 8597 8565 +f 8598 8590 8566 +f 8611 8615 8579 +f 8616 8612 8580 +f 8625 8597 8589 +f 8598 8626 8590 +f 8660 8605 8597 +f 8625 8660 8597 +f 8661 8626 8598 +f 8665 8661 8598 +f 8606 8665 8598 +f 8664 8609 8605 +f 8660 8664 8605 +f 8667 8665 8606 +f 8610 8667 8606 +f 8666 8611 8609 +f 8664 8666 8609 +f 8671 8667 8610 +f 8612 8671 8610 +f 8643 8615 8611 +f 8670 8643 8611 +f 8666 8670 8611 +f 8644 8671 8612 +f 8616 8644 8612 +f 8652 8660 8625 +f 8661 8653 8626 +f 8670 8674 8643 +f 8675 8671 8644 +f 8678 8660 8652 +f 8661 8679 8653 +f 8700 8664 8660 +f 8678 8700 8660 +f 8701 8679 8661 +f 8713 8701 8661 +f 8665 8713 8661 +f 8712 8666 8664 +f 8700 8712 8664 +f 8717 8713 8665 +f 8667 8717 8665 +f 8716 8670 8666 +f 8712 8716 8666 +f 8721 8717 8667 +f 8671 8721 8667 +f 8694 8674 8670 +f 8720 8694 8670 +f 8716 8720 8670 +f 8695 8721 8671 +f 8675 8695 8671 +f 8696 8700 8678 +f 8701 8697 8679 +f 8720 8724 8694 +f 8725 8721 8695 +f 8728 8700 8696 +f 8701 8729 8697 +f 8749 8712 8700 +f 8728 8749 8700 +f 8750 8729 8701 +f 8758 8750 8701 +f 8713 8758 8701 +f 8757 8716 8712 +f 8749 8757 8712 +f 8764 8758 8713 +f 8717 8764 8713 +f 8763 8720 8716 +f 8757 8763 8716 +f 8766 8764 8717 +f 8721 8766 8717 +f 8743 8724 8720 +f 8765 8743 8720 +f 8763 8765 8720 +f 8744 8766 8721 +f 8725 8744 8721 +f 8747 8749 8728 +f 8750 8748 8729 +f 8765 8769 8743 +f 8770 8766 8744 +f 8771 8749 8747 +f 8750 8772 8748 +f 8785 8757 8749 +f 8771 8785 8749 +f 8786 8772 8750 +f 8792 8786 8750 +f 8758 8792 8750 +f 8791 8763 8757 +f 8785 8791 8757 +f 8798 8792 8758 +f 8764 8798 8758 +f 8797 8765 8763 +f 8791 8797 8763 +f 8808 8798 8764 +f 8766 8808 8764 +f 8783 8769 8765 +f 8807 8783 8765 +f 8797 8807 8765 +f 8784 8808 8766 +f 8770 8784 8766 +f 8779 8785 8771 +f 8786 8780 8772 +f 8799 8785 8779 +f 8786 8800 8780 +f 8807 8811 8783 +f 8812 8808 8784 +f 8815 8791 8785 +f 8799 8815 8785 +f 8816 8800 8786 +f 8828 8816 8786 +f 8792 8828 8786 +f 8827 8797 8791 +f 8815 8827 8791 +f 8830 8828 8792 +f 8798 8830 8792 +f 8829 8807 8797 +f 8827 8829 8797 +f 8834 8830 8798 +f 8808 8834 8798 +f 8813 8815 8799 +f 8816 8814 8800 +f 8823 8811 8807 +f 8833 8823 8807 +f 8829 8833 8807 +f 8824 8834 8808 +f 8812 8824 8808 +f 8825 8815 8813 +f 8816 8826 8814 +f 8849 8827 8815 +f 8825 8849 8815 +f 8850 8826 8816 +f 8857 8850 8816 +f 8828 8857 8816 +f 8833 8843 8823 +f 8844 8834 8824 +f 8839 8849 8825 +f 8850 8840 8826 +f 8856 8829 8827 +f 8849 8856 8827 +f 8863 8857 8828 +f 8830 8863 8828 +f 8862 8833 8829 +f 8856 8862 8829 +f 8869 8863 8830 +f 8834 8869 8830 +f 8860 8843 8833 +f 8868 8860 8833 +f 8862 8868 8833 +f 8861 8869 8834 +f 8844 8861 8834 +f 8847 8849 8839 +f 8850 8848 8840 +f 8853 8864 8847 +f 8864 8849 8847 +f 8865 8854 8848 +f 8850 8865 8848 +f 8864 8856 8849 +f 8875 8865 8850 +f 8857 8875 8850 +f 8855 8864 8853 +f 8865 8855 8854 +f 8865 8864 8855 +f 8874 8862 8856 +f 8864 8874 8856 +f 8881 8875 8857 +f 8863 8881 8857 +f 8868 8872 8860 +f 8873 8869 8861 +f 8880 8868 8862 +f 8874 8880 8862 +f 8889 8881 8863 +f 8869 8889 8863 +f 8865 8874 8864 +f 8875 8874 8865 +f 8886 8872 8868 +f 8888 8886 8868 +f 8880 8888 8868 +f 8887 8889 8869 +f 8873 8887 8869 +f 8875 8880 8874 +f 8881 8880 8875 +f 8881 8888 8880 +f 8889 8888 8881 +f 8888 8892 8886 +f 8893 8889 8887 +f 8895 8892 8888 +f 8889 8895 8888 +f 8893 8895 8889 +f 8334 8353 8330 +f 8354 8382 8331 +f 8382 8334 8331 +f 8382 8353 8334 +f 8380 8378 8353 +f 8382 8380 8353 +f 8379 8381 8354 +f 8381 8382 8354 +f 8312 8293 8137 +f 8225 8312 8137 +f 8141 8225 8137 +f 8338 8312 8225 +f 8037 8075 7957 +f 7969 8037 7957 +f 8089 8075 8037 +f 7875 7879 7814 +f 7863 7875 7814 +f 7907 7879 7875 +f 7772 7827 7771 +f 7827 7849 7771 +f 7849 7851 7771 +f 7851 7855 7771 +f 7673 7643 7613 +f 7714 7657 7643 +f 7673 7714 7643 +f 7714 7710 7657 +f 7756 7736 7710 +f 7714 7756 7710 +f 7760 7756 7714 +f 7760 7812 7756 +f 7120 7094 7091 +f 7115 7120 7091 +f 7095 7115 7091 +f 7120 7097 7094 +f 7096 7115 7095 +f 7120 7101 7097 +f 7100 7115 7096 +f 7120 7102 7101 +f 7103 7115 7100 +f 7120 7109 7102 +f 7112 7115 7103 +f 7108 7112 7103 +f 7120 7113 7109 +f 7120 7114 7113 +f 7121 7120 7115 +f 7122 7125 7120 +f 7121 7122 7120 +f 7125 7123 7120 +f 7125 7124 7123 +f 7125 7283 7124 +f 7284 7283 7125 +f 7284 7299 7283 +f 7300 7299 7284 +f 7300 7307 7299 +f 7308 7329 7300 +f 7329 7307 7300 +f 7467 7329 7308 +f 7330 7467 7308 +f 7468 7467 7330 +f 7468 7478 7467 +f 7478 7490 7467 +f 7490 7903 7467 +f 7903 7477 7467 +f 7903 7489 7477 +f 7903 7499 7489 +f 7500 7903 7490 +f 7947 7957 7499 +f 7957 7918 7499 +f 7903 7919 7499 +f 7919 7947 7499 +f 7918 7902 7499 +f 7902 7888 7499 +f 7888 7515 7499 +f 7516 7903 7500 +f 7888 7878 7515 +f 7878 7519 7515 +f 7889 7903 7516 +f 7879 7889 7516 +f 7520 7879 7516 +f 7878 7813 7519 +f 7813 7610 7519 +f 7611 7879 7520 +f 7813 7785 7610 +f 7785 7622 7610 +f 7814 7879 7611 +f 7623 7814 7611 +f 7785 7775 7622 +f 7775 7626 7622 +f 7786 7814 7623 +f 7776 7786 7623 +f 7627 7776 7623 +f 7775 7629 7626 +f 7771 7776 7627 +f 7630 7771 7627 +f 7767 7763 7628 +f 7763 7633 7628 +f 7629 7770 7628 +f 7770 7769 7628 +f 7769 7767 7628 +f 7775 7770 7629 +f 7772 7771 7630 +f 7631 7772 7630 +f 7632 7772 7631 +f 7636 7772 7632 +f 7763 7637 7633 +f 7763 7640 7637 +f 7768 7772 7636 +f 7646 7649 7636 +f 7649 7653 7636 +f 7653 7655 7636 +f 7762 7764 7636 +f 7644 7646 7636 +f 7764 7768 7636 +f 7655 7657 7636 +f 7657 7710 7636 +f 7710 7762 7636 +f 7641 7644 7636 +f 7654 7652 7640 +f 7652 7648 7640 +f 7763 7712 7640 +f 7712 7656 7640 +f 7656 7654 7640 +f 7648 7645 7640 +f 7648 7647 7645 +f 7736 7762 7710 +f 7763 7735 7712 +f 7763 7739 7735 +f 7740 7762 7736 +f 7763 7743 7739 +f 7744 7762 7740 +f 7763 7747 7743 +f 7748 7762 7744 +f 7763 7749 7747 +f 7754 7762 7748 +f 7752 7754 7748 +f 7763 7753 7749 +f 7763 7761 7753 +f 7957 7946 7918 +f 7957 7956 7946 +f 8075 8074 7956 +f 7957 8075 7956 +f 8095 8094 8074 +f 8075 8095 8074 +f 8095 8114 8094 +f 8115 8114 8095 +f 8115 8136 8114 +f 8137 8136 8115 +f 8137 8292 8136 +f 8293 8292 8137 +f 8299 8301 8292 +f 8301 8298 8292 +f 8293 8299 8292 +f 8301 8300 8298 +f 8301 8308 8300 +f 8315 8321 8301 +f 8321 8325 8301 +f 8325 8329 8301 +f 8313 8315 8301 +f 8329 8331 8301 +f 8331 8334 8301 +f 8334 8308 8301 +f 8309 8313 8301 +f 8328 8322 8308 +f 8322 8320 8308 +f 8334 8330 8308 +f 8330 8328 8308 +f 8320 8310 8308 +f 8320 8314 8310 +f 8101 8095 8075 +f 8089 8101 8075 +f 8129 8115 8095 +f 8101 8129 8095 +f 8141 8137 8115 +f 8129 8141 8115 +f 7921 7889 7879 +f 7907 7921 7879 +f 7945 7903 7889 +f 7921 7945 7889 +f 7953 7919 7903 +f 7945 7953 7903 +f 7965 7947 7919 +f 7953 7965 7919 +f 7969 7957 7947 +f 7965 7969 7947 +f 7857 7776 7771 +f 7855 7857 7771 +f 7859 7786 7776 +f 7857 7859 7776 +f 7863 7814 7786 +f 7859 7863 7786 +f 7756 7740 7736 +f 7766 7744 7740 +f 7756 7766 7740 +f 7766 7782 7744 +f 7782 7790 7744 +f 7790 7748 7744 +f 7790 7752 7748 +f 7790 7808 7752 +f 7808 7754 7752 +f 7808 7810 7754 +f 7810 7817 7754 +f 7817 7762 7754 +f 7812 7766 7756 +f 7817 7821 7762 +f 7821 7764 7762 +f 7821 7825 7764 +f 7825 7768 7764 +f 7812 7815 7766 +f 7815 7823 7766 +f 7823 7782 7766 +f 7827 7772 7768 +f 7825 7827 7768 +f 7823 7828 7782 +f 7828 7830 7782 +f 7830 7790 7782 +f 7831 7808 7790 +f 7830 7831 7790 +f 7831 7833 7808 +f 7833 7835 7808 +f 7835 7810 7808 +f 7836 7817 7810 +f 7835 7836 7810 +f 7836 7838 7817 +f 7838 7821 7817 +f 7845 7825 7821 +f 7842 7845 7821 +f 7838 7842 7821 +f 7849 7827 7825 +f 7845 7849 7825 +f 8312 8317 8293 +f 8317 8299 8293 +f 8317 8301 8299 +f 8317 8327 8301 +f 8327 8309 8301 +f 8336 8313 8309 +f 8333 8336 8309 +f 8327 8333 8309 +f 8338 8339 8312 +f 8339 8317 8312 +f 8336 8315 8313 +f 8336 8341 8315 +f 8341 8345 8315 +f 8345 8321 8315 +f 8346 8327 8317 +f 8342 8346 8317 +f 8339 8342 8317 +f 8345 8348 8321 +f 8348 8325 8321 +f 8352 8329 8325 +f 8348 8352 8325 +f 8346 8349 8327 +f 8355 8333 8327 +f 8349 8355 8327 +f 8354 8331 8329 +f 8352 8354 8329 +f 8355 8361 8333 +f 8361 8336 8333 +f 8364 8341 8336 +f 8361 8364 8336 +f 8368 8345 8341 +f 8364 8368 8341 +f 8373 8348 8345 +f 8368 8373 8345 +f 8373 8376 8348 +f 8376 8352 8348 +f 8376 8354 8352 +f 8376 8379 8354 +f 7574 7630 7570 +f 7578 7600 7574 +f 7600 7630 7574 +f 7631 7630 7600 +f 7522 7520 7494 +f 7522 7611 7520 +f 7560 7611 7522 +f 7388 7330 7316 +f 7388 7468 7330 +f 7444 7468 7388 +f 7284 7110 7086 +f 7197 7284 7086 +f 7284 7125 7110 +f 7278 7284 7197 +f 7061 7091 7027 +f 7029 7061 7027 +f 7091 7094 7027 +f 7094 7062 7027 +f 7062 7028 7027 +f 7062 7036 7028 +f 7037 7061 7029 +f 7095 7091 7061 +f 7111 7196 7085 +f 7124 7283 7111 +f 7283 7196 7111 +f 7283 7277 7196 +f 7329 7387 7315 +f 7467 7387 7329 +f 7467 7443 7387 +f 7519 7521 7493 +f 7610 7521 7519 +f 7610 7559 7521 +f 7629 7573 7569 +f 7629 7577 7573 +f 7629 7599 7577 +f 7629 7628 7599 +f 7642 7672 7612 +f 7656 7712 7642 +f 7712 7713 7642 +f 7713 7672 7642 +f 7735 7713 7712 +f 7735 7755 7713 +f 7755 7759 7713 +f 7811 7759 7755 +f 7770 7826 7769 +f 7850 7826 7770 +f 7854 7850 7770 +f 7850 7848 7826 +f 7874 7862 7813 +f 7878 7874 7813 +f 7878 7906 7874 +f 8036 7968 7956 +f 8074 8036 7956 +f 8074 8088 8036 +f 8292 8311 8136 +f 8311 8337 8136 +f 8337 8224 8136 +f 8224 8140 8136 +f 7564 7611 7560 +f 7568 7623 7564 +f 7623 7611 7564 +f 7570 7627 7568 +f 7627 7623 7568 +f 7630 7627 7570 +f 7458 7468 7444 +f 7472 7478 7458 +f 7478 7468 7458 +f 7480 7490 7472 +f 7490 7478 7472 +f 7488 7500 7480 +f 7500 7490 7480 +f 7494 7516 7488 +f 7516 7500 7488 +f 7520 7516 7494 +f 7290 7284 7278 +f 7290 7300 7284 +f 7304 7300 7290 +f 7304 7308 7300 +f 7316 7308 7304 +f 7316 7330 7308 +f 7283 7299 7277 +f 7299 7289 7277 +f 7299 7307 7289 +f 7307 7303 7289 +f 7307 7329 7303 +f 7329 7315 7303 +f 7467 7477 7443 +f 7477 7457 7443 +f 7477 7489 7457 +f 7489 7471 7457 +f 7489 7499 7471 +f 7499 7479 7471 +f 7499 7515 7479 +f 7515 7487 7479 +f 7515 7519 7487 +f 7519 7493 7487 +f 7610 7622 7559 +f 7622 7563 7559 +f 7622 7626 7563 +f 7626 7567 7563 +f 7626 7629 7567 +f 7629 7569 7567 +f 7775 7854 7770 +f 7856 7854 7775 +f 7785 7856 7775 +f 7858 7856 7785 +f 7813 7858 7785 +f 7862 7858 7813 +f 7888 7906 7878 +f 7920 7906 7888 +f 7902 7920 7888 +f 7944 7920 7902 +f 7918 7944 7902 +f 7952 7944 7918 +f 7946 7952 7918 +f 7964 7952 7946 +f 7956 7964 7946 +f 7968 7964 7956 +f 8094 8088 8074 +f 8094 8100 8088 +f 8114 8100 8094 +f 8114 8128 8100 +f 8136 8128 8114 +f 8136 8140 8128 +f 7063 7061 7037 +f 7038 7063 7037 +f 7040 7063 7038 +f 7041 7069 7040 +f 7069 7063 7040 +f 7042 7069 7041 +f 7075 7069 7042 +f 7044 7075 7042 +f 7078 7075 7044 +f 7048 7078 7044 +f 7049 7078 7048 +f 7087 7078 7049 +f 7053 7087 7049 +f 7092 7087 7053 +f 7057 7092 7053 +f 7098 7092 7057 +f 7065 7098 7057 +f 7063 7096 7061 +f 7096 7095 7061 +f 7100 7096 7063 +f 7069 7100 7063 +f 7076 7098 7065 +f 7075 7100 7069 +f 7103 7100 7075 +f 7078 7108 7075 +f 7108 7103 7075 +f 7086 7106 7076 +f 7106 7098 7076 +f 7112 7108 7078 +f 7087 7112 7078 +f 7110 7106 7086 +f 7092 7112 7087 +f 7115 7112 7092 +f 7098 7115 7092 +f 7121 7115 7098 +f 7106 7121 7098 +f 7122 7121 7106 +f 7110 7122 7106 +f 7125 7122 7110 +f 7579 7600 7578 +f 7580 7602 7579 +f 7602 7600 7579 +f 7584 7602 7580 +f 7585 7606 7584 +f 7606 7602 7584 +f 7587 7606 7585 +f 7608 7606 7587 +f 7589 7608 7587 +f 7615 7608 7589 +f 7591 7615 7589 +f 7617 7615 7591 +f 7594 7617 7591 +f 7621 7617 7594 +f 7596 7621 7594 +f 7625 7621 7596 +f 7604 7625 7596 +f 7602 7631 7600 +f 7632 7631 7602 +f 7606 7636 7602 +f 7636 7632 7602 +f 7643 7635 7604 +f 7635 7625 7604 +f 7613 7643 7604 +f 7641 7636 7606 +f 7608 7641 7606 +f 7615 7641 7608 +f 7644 7641 7615 +f 7646 7644 7615 +f 7617 7646 7615 +f 7621 7646 7617 +f 7649 7646 7621 +f 7625 7649 7621 +f 7653 7649 7625 +f 7635 7653 7625 +f 7655 7653 7635 +f 7643 7655 7635 +f 7657 7655 7643 +f 7599 7601 7577 +f 7601 7581 7577 +f 7601 7605 7581 +f 7605 7586 7581 +f 7605 7588 7586 +f 7605 7607 7588 +f 7607 7590 7588 +f 7607 7614 7590 +f 7614 7592 7590 +f 7616 7593 7592 +f 7614 7616 7592 +f 7616 7595 7593 +f 7616 7620 7595 +f 7620 7597 7595 +f 7624 7598 7597 +f 7620 7624 7597 +f 7624 7603 7598 +f 7628 7633 7599 +f 7633 7601 7599 +f 7637 7605 7601 +f 7633 7637 7601 +f 7634 7609 7603 +f 7624 7634 7603 +f 7640 7607 7605 +f 7637 7640 7605 +f 7645 7614 7607 +f 7640 7645 7607 +f 7634 7612 7609 +f 7634 7642 7612 +f 7645 7616 7614 +f 7647 7620 7616 +f 7645 7647 7616 +f 7652 7624 7620 +f 7648 7652 7620 +f 7647 7648 7620 +f 7652 7634 7624 +f 7652 7654 7634 +f 7654 7642 7634 +f 7654 7656 7642 +f 7062 7039 7036 +f 7070 7043 7039 +f 7062 7064 7039 +f 7064 7070 7039 +f 7070 7074 7043 +f 7074 7047 7043 +f 7074 7079 7047 +f 7079 7050 7047 +f 7079 7088 7050 +f 7088 7054 7050 +f 7093 7058 7054 +f 7088 7093 7054 +f 7093 7099 7058 +f 7099 7066 7058 +f 7094 7097 7062 +f 7097 7064 7062 +f 7097 7101 7064 +f 7101 7070 7064 +f 7099 7071 7066 +f 7102 7074 7070 +f 7101 7102 7070 +f 7099 7107 7071 +f 7107 7077 7071 +f 7109 7079 7074 +f 7102 7109 7074 +f 7107 7080 7077 +f 7109 7088 7079 +f 7111 7085 7080 +f 7107 7111 7080 +f 7113 7114 7088 +f 7114 7093 7088 +f 7109 7113 7088 +f 7114 7099 7093 +f 7114 7120 7099 +f 7120 7107 7099 +f 7124 7111 7107 +f 7123 7124 7107 +f 7120 7123 7107 +f 8298 8311 8292 +f 8316 8311 8298 +f 8300 8316 8298 +f 8326 8316 8300 +f 8308 8326 8300 +f 8332 8326 8308 +f 8310 8332 8308 +f 8335 8332 8310 +f 8314 8340 8310 +f 8340 8335 8310 +f 8316 8337 8311 +f 8344 8340 8314 +f 8320 8344 8314 +f 8343 8337 8316 +f 8326 8343 8316 +f 8322 8344 8320 +f 8351 8347 8322 +f 8347 8344 8322 +f 8328 8351 8322 +f 8350 8343 8326 +f 8332 8358 8326 +f 8358 8350 8326 +f 8353 8351 8328 +f 8330 8353 8328 +f 8335 8362 8332 +f 8362 8358 8332 +f 8340 8363 8335 +f 8363 8362 8335 +f 8344 8369 8340 +f 8369 8365 8340 +f 8365 8363 8340 +f 8347 8372 8344 +f 8372 8369 8344 +f 8375 8374 8347 +f 8374 8372 8347 +f 8351 8375 8347 +f 8353 8378 8351 +f 8378 8377 8351 +f 8377 8375 8351 +f 7739 7755 7735 +f 7765 7755 7739 +f 7743 7765 7739 +f 7781 7765 7743 +f 7747 7781 7743 +f 7789 7781 7747 +f 7749 7789 7747 +f 7807 7789 7749 +f 7753 7809 7749 +f 7809 7807 7749 +f 7761 7809 7753 +f 7822 7811 7755 +f 7765 7822 7755 +f 7763 7820 7761 +f 7816 7809 7761 +f 7820 7816 7761 +f 7824 7820 7763 +f 7767 7824 7763 +f 7781 7822 7765 +f 7769 7824 7767 +f 7826 7824 7769 +f 7789 7829 7781 +f 7829 7822 7781 +f 7807 7832 7789 +f 7832 7829 7789 +f 7809 7834 7807 +f 7834 7832 7807 +f 7816 7837 7809 +f 7837 7834 7809 +f 7839 7837 7816 +f 7820 7839 7816 +f 7844 7843 7820 +f 7824 7844 7820 +f 7843 7839 7820 +f 7846 7844 7824 +f 7847 7846 7824 +f 7826 7847 7824 +f 7848 7847 7826 + diff --git a/resources/meshes/ultimaker_sketch_sprint_platform.obj b/resources/meshes/ultimaker_sketch_sprint_platform.obj new file mode 100644 index 0000000000..75fd7924a8 --- /dev/null +++ b/resources/meshes/ultimaker_sketch_sprint_platform.obj @@ -0,0 +1,5202 @@ +# Blender 4.2.3 LTS +# www.blender.org +mtllib ultimaker_sketch_sprint_platform.mtl +o UMS5_Sketch_Sprint_Print_Bed +v 118.354355 -110.073631 -15.743714 +v 114.068901 -119.722466 -20.180742 +v 114.739487 -119.531227 -20.297823 +v 118.222610 111.787270 -1.131925 +v 118.105339 112.000687 -0.992558 +v 114.372559 -120.408913 -1.567918 +v 115.075256 -120.310265 -1.497765 +v 114.623497 -120.192039 -1.310149 +v 114.343330 -120.358589 -1.426186 +v 115.554459 -120.107918 -1.370554 +v 116.561562 -119.835945 -1.523531 +v 116.733383 -119.639137 -1.368375 +v 116.043571 -119.849419 -1.310030 +v 117.248619 -119.459877 -1.522869 +v 118.072464 -118.823708 -1.548110 +v 117.566948 -119.092918 -1.349133 +v 118.491196 -118.370094 -1.471259 +v 118.148705 -118.456383 -1.307177 +v 119.063904 -117.618919 -1.496006 +v 118.898308 -117.518639 -1.309195 +v 119.545059 -116.684624 -1.501324 +v 119.368965 -116.693657 -1.327539 +v 119.979317 -114.791542 -1.546374 +v 119.872765 -114.779594 -1.359541 +v 119.666153 -115.628761 -1.308552 +v 114.330254 -119.769600 -20.014753 +v 114.783730 -119.664619 -20.188375 +v 115.452164 -119.587349 -20.015177 +v 115.687637 -119.464653 -20.162813 +v 116.668396 -119.071022 -20.032831 +v 116.353371 -119.145027 -20.220758 +v 117.369240 -118.588310 -20.017691 +v 117.326752 -118.499260 -20.236134 +v 118.061874 -117.663261 -20.275988 +v 118.048515 -117.928963 -20.015162 +v 118.031891 -117.887001 -20.156713 +v 118.578491 -117.092583 -20.185795 +v 118.996643 -116.220100 -20.174234 +v 118.741119 -116.933876 -20.016701 +v 119.189331 -115.750694 -20.018003 +v 119.139214 -115.462776 -20.248936 +v 119.320786 -114.889366 -20.096815 +v 119.135612 -114.846748 -20.292841 +v -118.105087 112.111557 -0.909175 +v -119.795189 112.455376 -0.397314 +v -118.101974 112.512970 -0.341264 +v -114.381645 -120.408150 -1.560494 +v -114.337540 -120.353432 -1.417620 +v -115.075378 -120.307335 -1.484236 +v -114.369156 -120.190910 -1.306552 +v -115.421761 -120.125435 -1.356481 +v -115.842773 -120.127281 -1.528008 +v -116.801514 -119.722115 -1.529071 +v -116.721581 -119.672783 -1.389807 +v -116.096489 -119.869316 -1.328043 +v -117.660309 -119.174797 -1.581664 +v -117.731583 -119.034370 -1.396137 +v -118.395699 -118.498619 -1.537008 +v -118.816689 -117.842995 -1.374314 +v -119.059280 -117.637291 -1.538945 +v -119.347755 -117.138710 -1.600160 +v -119.466316 -116.738152 -1.418659 +v -119.614754 -116.515724 -1.573588 +v -119.790253 -115.740837 -1.411590 +v -119.446068 -116.415977 -1.311703 +v -119.851295 -115.738640 -1.607201 +v -119.984589 -114.772270 -1.549987 +v -119.760483 -114.956902 -1.308016 +v -114.288513 -119.768730 -20.062483 +v -114.807518 -119.655586 -20.193521 +v -114.054405 -119.653221 -20.249144 +v -114.479156 -119.513466 -20.300638 +v -115.314285 -119.617699 -20.019548 +v -115.577896 -119.446388 -20.233912 +v -116.598450 -119.075127 -20.136557 +v -115.648697 -119.281960 -20.300360 +v -117.359421 -118.595436 -20.016443 +v -116.676758 -118.845695 -20.293947 +v -117.344505 -118.538933 -20.178822 +v -117.667435 -118.141136 -20.254480 +v -118.071205 -117.812065 -20.193678 +v -118.174393 -117.411293 -20.300406 +v -118.596100 -117.170021 -20.014219 +v -118.457596 -117.328346 -20.146734 +v -118.785400 -116.747444 -20.154688 +v -119.074623 -116.153236 -20.014315 +v -119.129585 -115.797600 -20.177160 +v -118.782196 -116.350227 -20.297037 +v -119.229736 -114.967064 -20.227976 +v -117.562439 -119.004112 -1.307583 +v -118.768143 -117.685417 -1.307626 +v -118.202690 -114.999275 -1.308099 +v 118.175125 -114.557808 -1.315966 +v -102.527359 117.855774 -0.138955 +v -102.927872 117.810875 0.040628 +v -100.471260 117.820648 -1.295716 +v -100.992523 117.774666 -1.188606 +v -101.818733 117.807976 -0.728877 +v 102.324310 117.848808 -0.270058 +v 111.261032 117.771225 0.172241 +v -114.251167 -118.497536 -1.384598 +v -114.607948 -118.624672 -1.307527 +v -115.169846 -118.403404 -1.343519 +v -115.564735 -118.176643 -1.402441 +v -114.882591 -118.327950 -1.505959 +v -116.304878 -117.701027 -1.532470 +v -116.415077 -117.902229 -1.307001 +v -116.187958 -117.852654 -1.399487 +v -116.757812 -117.427696 -1.390281 +v -116.949265 -117.129433 -1.518561 +v -117.307846 -117.091057 -1.305928 +v -117.345657 -116.773384 -1.381237 +v -117.830345 -116.205086 -1.307540 +v -117.762093 -116.003441 -1.388678 +v -117.908432 -115.308769 -1.486646 +v 114.410706 -118.572090 -1.331378 +v 114.401733 -118.467690 -1.417553 +v 114.372513 -118.411201 -1.544239 +v 114.761902 -118.637306 -1.305184 +v 115.234459 -118.232216 -1.501867 +v 115.472389 -118.235603 -1.388141 +v 115.867188 -117.962715 -1.521933 +v 116.139709 -118.068581 -1.307948 +v 116.223412 -117.772270 -1.448448 +v 116.695084 -117.382805 -1.517056 +v 116.893127 -117.280663 -1.406004 +v 117.270126 -116.842323 -1.395105 +v 117.167587 -116.863258 -1.548390 +v 117.143982 -117.279213 -1.306531 +v 117.758835 -116.284264 -1.313314 +v 117.546371 -116.291313 -1.483026 +v 117.753342 -115.811241 -1.484175 +v 117.992233 -115.474098 -1.349329 +v 117.893784 -115.324654 -1.532187 +v -118.435722 -114.474144 -20.263544 +v -119.107986 -114.652489 -20.292082 +v -119.174210 -113.204521 -19.937138 +v -119.171562 -110.927956 -18.133066 +v -119.226143 -110.495995 -17.358345 +v -118.358910 -110.157631 -16.292034 +v -118.367775 -110.068810 -15.701695 +v 116.520187 -118.885094 -20.302139 +v -117.216118 -117.523552 -20.299276 +v 118.461922 -116.962868 -20.301001 +v 119.134209 -113.038582 -19.875038 +v 118.441986 -112.293785 -19.469841 +v 119.199783 -111.768379 -19.063713 +v 119.220894 -110.489204 -17.346581 +v 119.298531 -110.073555 -15.688435 +v 119.774773 111.181702 -1.307426 +v 119.901337 111.240204 -1.382934 +v 119.768761 111.412079 -1.271711 +v 119.909409 111.583611 -1.303208 +v 119.752731 111.747925 -1.147999 +v 119.761627 112.046616 -0.944470 +v 119.950867 111.999252 -1.151350 +v 119.872047 111.945747 -1.088650 +v 119.812729 112.230949 -0.769017 +v 119.807709 112.379074 -0.552417 +v 119.996223 111.991684 -1.300525 +v 119.792519 112.509766 -0.255078 +v 120.016357 112.556053 -0.746103 +v 119.969116 112.416672 -0.729576 +v 119.933853 112.561646 -0.318717 +v 115.859978 -120.120552 -1.519115 +v 119.850487 -115.699898 -1.498003 +v 119.334488 -114.421516 -20.080484 +v 119.118271 -114.445030 -20.263659 +v 119.260567 -114.185707 -20.150444 +v 119.151794 -113.650291 -20.097744 +v 119.317360 -113.145576 -19.784409 +v 119.184242 -112.493034 -19.588066 +v 119.362602 -112.287315 -19.258549 +v 119.383240 -111.707222 -18.742691 +v 119.177887 -111.304573 -18.606186 +v 119.423111 -110.913338 -17.714630 +v 119.324661 -111.208443 -18.370621 +v 119.356911 -110.794914 -17.743828 +v 119.168114 -110.893318 -18.084213 +v 119.396790 -110.438011 -16.939041 +v 119.482597 -110.337410 -16.039654 +v 119.239334 -110.201347 -16.518200 +v 119.426453 -110.188942 -15.950776 +v 119.720940 -110.140907 -9.095842 +v 100.478218 119.323578 -1.298503 +v 100.982079 119.310349 -1.184934 +v 101.352829 119.356827 -1.035616 +v 100.915642 119.437042 -1.252497 +v 101.744217 119.373672 -0.792286 +v 101.453491 119.486572 -1.074371 +v 100.470589 119.464737 -1.367917 +v 100.855423 119.531769 -1.387293 +v 101.885551 119.515541 -0.794318 +v 100.646645 119.560753 -1.522317 +v 101.673973 119.571487 -1.117970 +v 102.845520 119.395126 0.015532 +v 102.163635 119.375435 -0.398620 +v 102.472847 119.423157 -0.187953 +v 103.097450 119.568367 -0.033304 +v 102.213242 119.545952 -0.507437 +v 102.731453 119.601128 -0.234942 +v 103.488472 119.419319 0.177406 +v 103.541191 119.602989 0.006507 +v 111.997025 119.590935 0.055387 +v 111.999817 119.378288 0.193333 +v 112.029739 119.696396 2.196733 +v 114.688354 112.618401 2.196826 +v 120.092644 114.405334 2.196831 +v 112.301201 114.327972 2.196841 +v 112.050560 115.165657 2.196837 +v -112.038719 115.298553 2.196812 +v -112.000046 117.673386 0.196838 +v -112.029953 119.696396 2.196733 +v -112.000137 119.382225 0.192853 +v -111.998138 119.596565 0.039034 +v -102.519218 119.370659 -0.145344 +v -103.496948 119.392380 0.183681 +v -102.903625 119.382584 0.036505 +v -103.364662 119.518753 0.100297 +v -102.225067 119.534798 -0.480732 +v -102.628830 119.543793 -0.196382 +v -101.341583 119.313904 -1.041634 +v -101.815208 119.348564 -0.728377 +v -100.774269 119.339378 -1.247849 +v -102.167564 119.381317 -0.397547 +v -100.411278 119.427612 -1.343696 +v -101.098648 119.449120 -1.209595 +v -101.748756 119.478783 -0.866042 +v -100.674942 119.531944 -1.442215 +v -102.003891 119.584351 -0.855444 +v -101.438965 119.542778 -1.164828 +v -100.891144 119.563461 -1.508202 +v -100.345688 119.312752 -1.302963 +v -120.077667 114.552368 2.196836 +v -118.765244 117.459824 2.196814 +v -112.891495 113.458054 2.196831 +v -119.739502 111.199829 -1.301930 +v -119.869804 111.209549 -1.354857 +v -119.947899 111.338959 -1.424786 +v -119.775185 111.496338 -1.250351 +v -119.882454 111.734093 -1.215490 +v -119.732979 111.828209 -1.100308 +v -119.990753 111.619453 -1.504900 +v -119.948074 111.869217 -1.227037 +v -119.792702 111.970375 -1.015716 +v -119.784363 112.205727 -0.789996 +v -119.916168 112.246925 -0.854155 +v -119.810181 112.345894 -0.606553 +v -119.993370 112.217445 -1.075825 +v -119.939140 112.402214 -0.675780 +v -119.940781 112.562508 -0.345468 +v -120.015823 112.558044 -0.692138 +v -119.902252 -114.754082 -1.392986 +v -116.286118 -119.274895 -20.014666 +v -118.021980 -117.960091 -20.015696 +v -119.340454 -114.783348 -20.052219 +v -119.274757 -114.534630 -20.181112 +v -119.161011 -113.723274 -20.117853 +v -119.340775 -113.526985 -19.884098 +v -119.338287 -112.604042 -19.494431 +v -119.152519 -112.475212 -19.585812 +v -119.239815 -111.889656 -19.145155 +v -119.394661 -111.493965 -18.532040 +v -119.156212 -111.468712 -18.791901 +v -119.321434 -111.065666 -18.214069 +v -119.432602 -110.601891 -17.191807 +v -119.410721 -110.281731 -16.411993 +v -119.256668 -110.210915 -16.549652 +v -119.715919 -110.121147 -9.112865 +v -119.493843 -110.264641 -15.542340 +v -119.408600 -110.151344 -15.743709 +v -119.278488 -110.070000 -15.690523 +v -114.543411 112.614906 1.349945 +v -114.569489 112.626572 2.196838 +v -113.733543 112.884850 2.196829 +v -113.587433 112.932289 1.244100 +v -112.872269 113.469612 1.065024 +v -112.329155 114.199677 0.821673 +v -112.262863 114.402695 2.196818 +v -120.122360 112.609085 2.196839 +v -118.093246 112.594391 1.356758 +v -119.828186 112.563057 -0.067153 +v -118.076958 -114.826668 -1.373401 +v 117.984924 -114.751640 -1.532419 +v 118.021835 -114.473595 -1.456656 +v -111.256271 117.643867 0.041906 +v -102.529915 117.607796 -0.400179 +v -103.459129 117.631706 0.001664 +v -102.225235 117.660789 -0.480169 +v -102.700783 117.677444 -0.145199 +v -103.480064 117.730530 0.126017 +v -102.186890 117.827904 -0.378837 +v -103.497665 117.837036 0.183584 +v -100.942566 117.572754 -1.483352 +v -100.806305 117.616570 -1.366747 +v -101.309052 117.657494 -1.141272 +v -101.793945 117.616234 -0.944776 +v -101.892303 117.666786 -0.778263 +v -101.453026 117.826424 -0.978215 +v -100.472275 117.660339 -1.365899 +v 100.882896 117.577080 -1.446540 +v 100.498810 117.597534 -1.449843 +v 101.071053 117.676590 -1.224921 +v 100.471420 117.683937 -1.349211 +v 100.547012 117.824173 -1.290294 +v 101.593864 117.805428 -0.892168 +v 101.209450 117.828842 -1.102163 +v 102.499138 117.609131 -0.410057 +v 101.835945 117.594933 -0.977223 +v 102.186714 117.697548 -0.460251 +v 102.625229 117.695549 -0.169653 +v 103.693855 117.700951 0.114212 +v 102.824951 117.820709 0.006567 +v 101.728447 117.682243 -0.897458 +v 103.347092 117.783714 0.135633 +v 101.882988 117.826164 -0.665331 +v 103.286613 117.627090 -0.033296 +v 111.255653 117.641045 0.026226 +v 103.505989 117.879341 0.190402 +v 120.122147 112.609085 2.196839 +v 119.808662 112.570107 0.025544 +v 118.100433 112.559685 -0.076123 +v 118.093033 112.594391 1.356758 +v 113.833527 112.833344 2.196847 +v 112.876434 113.473206 2.196846 +v 112.466660 113.969559 0.898356 +v -114.220016 -118.415413 -1.547968 +v -115.551888 -118.108620 -1.539496 +v -116.838486 -116.964348 -7.303131 +v -117.462646 -116.437065 -1.539383 +v -117.799347 -115.665260 -1.538199 +v 117.314270 -116.331474 -7.303139 +v -118.021492 -110.084679 -9.303214 +v -118.248695 -114.779701 -20.143911 +v -118.341934 -114.082909 -20.156809 +v -118.343941 -113.331734 -19.948376 +v -118.228622 -113.755836 -19.923141 +v -118.491402 -113.690300 -20.118551 +v -118.281517 -112.643852 -19.587799 +v -118.479012 -112.848610 -19.797256 +v -118.212761 -112.312386 -19.234245 +v -118.274643 -111.907295 -19.075550 +v -118.455978 -112.123207 -19.357267 +v -118.390884 -111.464455 -18.778076 +v -118.200592 -111.281166 -18.305035 +v -118.386139 -111.056160 -18.293686 +v -118.267181 -110.736427 -17.689953 +v -118.428482 -110.690086 -17.755825 +v -118.173897 -110.573433 -17.063385 +v -118.338127 -110.325630 -16.908857 +v -118.152855 -110.318230 -16.209042 +v -118.189339 -110.177757 -15.727274 +v -118.410713 -115.219551 -20.302942 +v -118.226944 -115.403053 -20.232317 +v -118.219284 -114.775841 -20.057142 +v -114.604118 -118.850975 -20.296370 +v -114.230171 -118.712608 -20.194994 +v -114.980797 -118.633812 -20.225313 +v -114.237946 -118.650871 -20.060488 +v -114.956863 -118.546791 -20.066828 +v -115.717819 -118.408028 -20.240309 +v -115.509010 -118.375328 -20.088516 +v -116.214821 -118.281883 -20.294706 +v -116.010811 -118.144814 -20.050982 +v -116.361855 -117.990349 -20.172842 +v -116.965950 -117.539345 -20.208700 +v -116.630165 -117.735298 -20.024969 +v -117.168457 -117.223122 -20.032032 +v -117.447517 -116.952980 -20.175619 +v -117.608551 -116.630058 -20.013937 +v -117.832123 -116.307945 -20.169645 +v -117.909012 -116.562126 -20.297514 +v -118.081764 -115.600945 -20.114298 +v -118.009041 -115.791924 -20.013157 +v 114.271744 -118.705406 -20.190256 +v 114.526398 -118.850563 -20.295605 +v 115.021896 -118.660896 -20.255693 +v 114.974297 -118.539452 -20.071810 +v 115.735191 -118.383827 -20.227636 +v 116.189018 -118.264778 -20.286875 +v 116.995476 -117.707527 -20.293524 +v 116.921356 -117.479561 -20.022980 +v 116.834862 -117.645073 -20.182421 +v 117.519600 -116.977455 -20.251129 +v 117.444305 -116.916878 -20.123838 +v 117.935783 -116.140450 -20.192568 +v 118.064545 -116.262779 -20.296556 +v 118.265579 -115.387825 -20.260626 +v 118.433533 -114.635353 -20.284807 +v 118.174767 -115.215004 -20.125319 +v 118.149712 -115.242363 -20.009623 +v 118.228859 -114.644630 -20.073263 +v 118.301346 -114.051491 -20.114044 +v 118.232056 -113.448189 -19.854509 +v 118.443710 -113.676445 -20.109734 +v 118.412544 -112.917137 -19.818981 +v 118.295586 -112.562767 -19.546108 +v 118.216263 -112.365685 -19.277142 +v 118.473877 -111.751152 -19.065559 +v 118.298096 -111.838142 -19.049168 +v 118.195251 -111.426582 -18.428761 +v 118.276863 -111.240913 -18.415592 +v 118.415070 -111.165672 -18.449102 +v 118.379578 -110.677071 -17.717499 +v 118.190681 -110.821678 -17.642534 +v 118.388199 -110.328514 -16.943983 +v 118.333221 -110.165306 -16.307446 +v 118.217369 -110.375160 -16.767635 +v 118.220291 -110.135368 -15.607141 +v 118.006775 -110.143120 -9.303140 +v 118.142166 -110.323936 -15.964074 +v 118.153137 -109.950203 -9.303253 +v 119.986130 111.431015 -1.503587 +v 119.465630 115.315529 -9.028274 +v 119.471832 116.382378 2.196832 +v 118.360519 117.892685 2.196834 +v 116.898895 118.999329 2.196828 +v 114.897308 119.658577 2.196837 +v -114.310127 119.295677 -9.074260 +v -103.318733 119.609589 -0.043131 +v -119.723175 113.894119 -9.058856 +v -119.617691 116.017387 2.196832 +v -118.951599 116.432686 -9.115372 +v -117.866882 117.796654 -9.103258 +v -117.375725 118.697189 2.196826 +v -116.220100 119.283691 2.196831 +v -116.204552 118.856842 -9.108438 +v -114.791077 119.664810 2.196834 +v -118.085884 114.103027 0.853900 +v -112.051407 115.021782 0.546189 +v -117.688515 115.388397 0.423658 +v -111.996468 116.239250 0.213352 +v -116.938034 116.475845 0.201350 +v -115.611305 117.363991 0.196839 +v -111.261223 117.779091 0.175496 +v -118.007248 111.205269 -1.476738 +v -118.181023 111.212807 -1.309211 +v -118.204781 111.546188 -1.238346 +v -118.049149 111.539536 -1.355923 +v -118.016716 111.782684 -1.317997 +v -117.989693 -114.646675 -1.547499 +v -117.790543 111.574188 -7.303161 +v -117.770966 -114.941475 -7.303129 +v 117.790359 111.574188 -7.303161 +v 118.007660 111.359886 -1.467665 +v 118.132286 111.265457 -1.334945 +v 118.254005 111.239197 -1.298588 +v 118.232063 111.581589 -1.221117 +v 118.005493 111.781433 -1.364473 +v 118.103584 111.786919 -1.196514 +v -111.000137 117.364594 -7.303161 +v 114.463310 112.623199 1.347147 +v 113.255150 113.120026 1.181553 +v 111.999832 117.673386 0.196838 +v 116.048340 117.139496 0.195208 +v 112.058876 114.923340 0.576337 +v 117.780670 115.214111 0.480125 +v 111.997513 116.287979 0.213848 +v 117.019211 116.373627 0.214759 +v -114.575195 111.587540 -7.303161 +v -117.460663 -115.993248 -7.303128 +v -115.758873 -117.806511 -7.303132 +v -113.249184 111.944473 -7.303161 +v -114.517075 -118.196587 -7.303126 +v 114.858284 -118.155693 -7.303141 +v 116.282097 -117.474159 -7.303131 +v 117.766136 -114.965294 -7.303128 +v -111.015915 115.157600 -7.303161 +v 112.592667 112.356422 -7.303161 +v -114.694916 -118.398705 -9.303122 +v -115.851013 -117.975945 -9.303125 +v -116.843689 -117.281914 -9.303120 +v -117.710106 -115.971046 -9.303122 +v -117.987144 -114.826180 -9.303126 +v 114.251518 -118.645699 -20.031149 +v 115.756523 -118.271217 -20.049339 +v 116.342628 -117.943626 -20.019876 +v 116.575775 -117.499138 -9.303124 +v 117.525543 -116.771294 -20.015806 +v 117.941772 -115.949471 -20.020885 +v 117.971428 -115.014107 -9.303124 +v 119.724571 113.897469 -9.037808 +v 119.662277 113.886078 -9.194241 +v 119.511459 114.710922 -9.239288 +v 119.644234 114.548500 -9.063747 +v 119.414192 115.280792 -9.192769 +v 119.486115 114.208084 -9.299534 +v 119.197311 115.983597 -9.052954 +v 119.015770 116.188271 -9.214239 +v 118.532333 116.957756 -9.220334 +v 118.856323 116.623253 -9.047146 +v 118.794510 116.322868 -9.302421 +v 118.195679 117.463333 -9.121452 +v 117.678635 117.949295 -9.119539 +v 117.737122 117.715118 -9.270584 +v 116.968620 118.229507 -9.299248 +v 117.066910 118.400398 -9.133306 +v 116.097443 118.764076 -9.259561 +v 115.271828 119.074493 -9.228449 +v 116.195343 118.859680 -9.115148 +v 115.194016 118.961502 -9.302785 +v 115.201538 119.175812 -9.086913 +v 114.349159 119.179108 -9.248663 +v 114.290710 119.295265 -9.081708 +v -114.294373 119.220024 -9.209826 +v -119.466911 114.472115 -9.296118 +v -119.636940 113.925682 -9.223073 +v -119.577560 114.824707 -9.135611 +v -119.210777 115.722191 -9.231287 +v -119.294563 115.760719 -9.090499 +v -118.910774 116.103325 -9.299102 +v -118.567177 116.849304 -9.252007 +v -118.550682 117.050499 -9.098431 +v -117.764481 117.662971 -9.291236 +v -117.008949 118.288445 -9.260779 +v -117.070122 118.399796 -9.128294 +v -116.066216 118.735298 -9.291537 +v -114.900818 119.057205 -9.293817 +v -115.217964 119.163567 -9.123405 +v -119.559166 -109.946861 -9.286351 +v -118.149033 111.504288 -9.303160 +v -118.145325 111.787430 -1.157956 +v -118.146606 113.956833 -9.303160 +v -117.741333 115.440353 -9.303156 +v -114.458145 117.655617 0.196838 +v -114.559723 117.701035 -9.303161 +v -110.930252 117.723083 -9.303161 +v 118.103348 112.366615 -0.619473 +v 114.719315 117.636887 0.196839 +v 118.089966 113.938210 0.908857 +v 114.463875 117.705055 -9.303161 +v -114.583672 111.589951 -9.303160 +v 114.551651 -118.405678 -9.303126 +v -113.507935 111.842911 -9.303161 +v 115.694908 -118.059959 -9.303124 +v 117.487122 -116.446327 -9.303119 +v -112.188461 112.687088 -9.303161 +v -110.965225 117.364594 -9.303059 +v -117.790550 111.550911 -9.303102 +v -118.222229 -109.931847 -9.303194 +v 119.569618 -109.949059 -9.283138 +v 118.148880 111.504288 -9.303160 +v 111.483582 113.605560 -9.303161 +v 118.145561 113.947037 -9.303158 +v 111.027687 114.999153 -9.303161 +v 117.836464 115.200005 -9.303161 +v -116.775146 116.683022 -9.303156 +v 116.974548 116.507736 -9.303158 +v 110.930069 117.723083 -9.303161 +v 110.976608 117.364594 -9.302755 +v -115.703613 117.368263 -9.303161 +v 115.630531 117.410057 -9.303160 +v 110.999832 117.364594 -7.303161 +v 114.575012 111.587540 -9.303160 +v 113.586540 111.821754 -9.303161 +v 114.090614 111.640953 -7.303161 +v 112.513763 112.416969 -9.303161 +v 111.637863 113.373016 -7.303161 +v 111.041344 114.815544 -7.303161 +v 117.790367 111.539261 -9.303123 +v -111.307175 113.989441 -9.303161 +v -112.004547 112.895470 -7.303161 +v -111.013504 115.149124 -9.303161 +v -111.269112 114.081352 -7.303161 +v -19.787857 -128.898560 -0.003119 +v 3.791261 -129.875824 -0.003119 +v 24.018154 -130.925842 -0.003119 +v 37.218113 -129.875824 -0.003119 +v 51.827042 -130.344208 -0.003119 +v -52.515575 -129.622467 -0.003119 +v -46.827885 -128.586487 -0.003119 +v -0.865442 -128.717773 -0.003119 +v -1.687130 -128.287933 -0.003119 +v 1.172104 -128.586487 -0.003119 +v 2.048102 -128.011169 -0.003119 +v 47.134560 -128.717773 -0.003119 +v 46.008858 -128.065826 -0.003119 +v -50.091888 -127.982689 -0.003119 +v -50.710430 -126.978249 -0.003119 +v 50.693977 -127.037041 -0.003119 +v 52.580395 -129.496490 -0.003119 +v -45.077415 -125.886391 -0.003120 +v 45.305794 -124.814720 -0.003121 +v 2.563610 -124.499855 -0.003121 +v 50.563610 -124.499855 -0.003121 +v 45.867809 -123.939171 -0.003121 +v 0.495702 -123.054695 -0.003110 +v -19.825306 -117.420433 -0.003119 +v 56.905453 -119.375435 -0.003121 +v -57.001270 -119.208733 -0.003121 +v -58.083355 -118.235634 -0.003121 +v -59.166183 -117.938484 -0.003087 +v 58.770206 -117.975914 -0.003112 +v -113.385384 -117.880409 -0.003121 +v -115.146996 -117.195107 -0.003121 +v 117.065689 -114.993492 -0.003121 +v 117.465057 -113.645073 -0.003121 +v -117.448318 -113.873650 -0.003121 +v 15.711704 -114.453835 -0.003121 +v -117.465271 112.793373 -0.003155 +v 116.702469 114.825691 -0.003156 +v 115.335022 116.237984 -0.003156 +v -115.054428 116.386589 -0.003156 +v 113.426025 117.018105 -0.003156 +v -47.701908 -128.824799 -0.003119 +v -48.865448 -128.717773 -0.003119 +v -46.888092 -128.612213 -0.803119 +v -45.951878 -128.011139 -0.003119 +v -45.335190 -127.105263 -0.803119 +v -45.306046 -127.037086 -0.003119 +v -50.922802 -125.965294 -0.003120 +v -45.077415 -125.965340 -0.803119 +v -50.694225 -124.814751 -0.003121 +v -45.436405 -124.499840 -0.003121 +v -50.563824 -124.499855 -0.803120 +v -50.132195 -123.939171 -0.003121 +v -45.868023 -123.939171 -0.803120 +v -49.407265 -123.381599 -0.003121 +v -46.422649 -123.465111 -0.003121 +v -46.815056 -123.253899 -0.803120 +v -47.504299 -123.054695 -0.003110 +v -48.532536 -123.058678 -0.003108 +v 0.298098 -128.824799 -0.003119 +v -2.425719 -127.575844 -0.003119 +v -2.694181 -127.037056 -0.803119 +v 2.693967 -127.037056 -0.003119 +v -2.928645 -126.098259 -0.003120 +v 2.928431 -126.098259 -0.803119 +v 2.922588 -125.886406 -0.003120 +v -2.694218 -124.814735 -0.003121 +v 2.694004 -124.814735 -0.803120 +v -2.132176 -123.939156 -0.003121 +v -1.407283 -123.381615 -0.003121 +v 1.407069 -123.381615 -0.803120 +v 1.577361 -123.465111 -0.003121 +v -0.532529 -123.058678 -0.003109 +v -0.447260 -123.043343 -0.803118 +v 48.298092 -128.824799 -0.003119 +v 46.827671 -128.586487 -0.803119 +v 49.172123 -128.586487 -0.003119 +v 45.951664 -128.011139 -0.803119 +v 50.048126 -128.011139 -0.003119 +v 45.334976 -127.105263 -0.003119 +v 45.305832 -127.037086 -0.803119 +v 50.710217 -126.978249 -0.803119 +v 45.077202 -125.965340 -0.003120 +v 45.077202 -125.886391 -0.803120 +v 50.922588 -125.965294 -0.803119 +v 50.922588 -125.886421 -0.003120 +v 45.436192 -124.499840 -0.803120 +v 50.210964 -124.037865 -0.803120 +v 49.526669 -123.443565 -0.803120 +v 46.592731 -123.381599 -0.003121 +v 46.422436 -123.465111 -0.803120 +v 49.577354 -123.465111 -0.003121 +v 48.495705 -123.054695 -0.003110 +v 47.467472 -123.058678 -0.003109 +v 50.543003 -130.901367 -0.803119 +v 50.624214 -130.885345 -0.003119 +v 51.645302 -130.459686 -0.803119 +v 52.515362 -129.622467 -0.803119 +v 57.573318 -118.597160 -0.003121 +v 113.488632 -117.862587 -0.003121 +v 113.385170 -117.880409 -0.803121 +v 115.054192 -117.238304 -0.003121 +v 115.146767 -117.195122 -0.803121 +v 116.245628 -116.272743 -0.003121 +v 116.588020 -115.869102 -0.803121 +v 117.461884 112.972755 -0.003155 +v 116.769157 114.721024 -0.803156 +v -117.448318 113.021957 -0.803156 +v -117.065941 114.141716 -0.003156 +v -116.245857 115.421028 -0.003156 +v -115.146980 116.343414 -0.803156 +v -113.398720 117.036133 -0.003123 +v -113.385368 117.028725 -0.803157 +v -113.488846 -117.862587 -0.803121 +v -116.588234 -115.869102 -0.003121 +v -58.770420 -117.975914 -0.803121 +v -56.905666 -119.375435 -0.803121 +v -57.573532 -118.597160 -0.803121 +v -50.521194 -130.907288 -0.003119 +v -50.558754 -130.904358 -0.803119 +v -51.645515 -130.459686 -0.003119 +v -0.940402 -128.693420 -0.803119 +v -2.048316 -128.011169 -0.803119 +v 50.091675 -127.982689 -0.803119 +v 48.865234 -128.717773 -0.803119 +v 47.701694 -128.824799 -0.803119 +v -48.940411 -128.693420 -0.803119 +v -51.827255 -130.344208 -0.803119 +v -50.048340 -128.011139 -0.803119 +v -52.580608 -129.496490 -0.803119 +v -50.694191 -127.037041 -0.803119 +v -1.577575 -123.465111 -0.803120 +v -2.563823 -124.499855 -0.803120 +v -2.922801 -125.886406 -0.803120 +v -47.775795 -128.831451 -0.803119 +v 0.224211 -128.831451 -0.803119 +v 57.970268 -118.329140 -0.803121 +v 1.350205 -128.518188 -0.803119 +v -46.009071 -128.065826 -0.803119 +v 2.425506 -127.575844 -0.803119 +v -50.922802 -125.886421 -0.803120 +v 57.069794 -119.094872 -0.803121 +v -45.306007 -124.814720 -0.803120 +v 50.694012 -124.814751 -0.803120 +v 2.131962 -123.939156 -0.803120 +v -49.577568 -123.465111 -0.803120 +v 47.384830 -123.084160 -0.803121 +v 0.574773 -123.069633 -0.803121 +v -48.227192 -123.003090 -0.803126 +v 48.417694 -123.031471 -0.803119 +v -116.588211 115.017433 -0.803156 +v -117.444061 -113.851982 -0.803121 +v 58.914619 -117.961693 -0.803121 +v -115.443382 -117.013954 -0.803121 +v -116.769394 -115.572701 -0.803121 +v 117.448105 -113.873634 -0.803121 +v 117.454475 112.959404 -0.803156 +v 113.447708 117.022362 -0.803157 +v 115.443161 116.162262 -0.803156 +v -62.599171 -132.473022 -5.251460 +v -61.084202 -134.336731 -5.250694 +v -61.927765 -133.794037 -5.234055 +v -61.413071 -134.433472 -5.130073 +v -62.810913 -132.268616 -5.188101 +v -62.512043 -133.304321 -5.126961 +v -62.989403 -132.001984 -5.045164 +v -62.259815 -133.757385 -5.076126 +v -60.728928 -134.793945 -5.079775 +v -62.990475 -132.486694 -4.886766 +v -62.778763 -132.972198 -4.999060 +v -61.837406 -134.318054 -4.906021 +v -61.408154 -134.580536 -4.947586 +v -62.563820 -133.510559 -4.820682 +v -63.075256 -131.933716 -4.812197 +v -61.153618 -134.754578 -4.816848 +v -62.826405 -133.007965 -4.781903 +v -60.497292 -134.973419 -4.813115 +v -62.212803 -133.969818 -4.837227 +v 61.415157 -134.195282 -5.245720 +v 62.624371 -132.258148 -5.251283 +v 60.288685 -134.614532 -5.249709 +v 62.208233 -133.283417 -5.251491 +v 62.614449 -132.991364 -5.163911 +v 60.659607 -134.705414 -5.176619 +v 61.223797 -134.551392 -5.109436 +v 62.247849 -133.613892 -5.169321 +v 62.920506 -132.185699 -5.109753 +v 59.873363 -134.850006 -5.165746 +v 60.723160 -134.835541 -5.028444 +v 61.807644 -134.237518 -5.048457 +v 62.826767 -132.993286 -4.891037 +v 60.053406 -134.988342 -4.999694 +v 62.561386 -133.507294 -4.890443 +v 62.998104 -132.468567 -4.833053 +v 62.198444 -133.977264 -4.905087 +v 63.034019 -131.925964 -4.963954 +v 60.079563 -135.046509 -4.816732 +v 61.241802 -134.702667 -4.881850 +v 60.743134 -134.907166 -4.771093 +v 61.768909 -134.375732 -4.839019 +v 62.789181 -132.189545 -5.201126 +v 62.370220 -125.859978 -5.251936 +v 62.670925 -126.289726 -5.247613 +v 61.945690 -125.575813 -5.244751 +v 62.866707 -126.347862 -5.161251 +v 62.220135 -125.525993 -5.184903 +v 62.585991 -125.752266 -5.161252 +v 62.800095 -125.992180 -5.126012 +v 62.315517 -125.370338 -4.993566 +v 63.000904 -126.354546 -5.021897 +v 62.990021 -126.096260 -4.913997 +v -62.751270 -126.365364 -5.224673 +v -62.529827 -126.016365 -5.251658 +v -62.734982 -125.960701 -5.159585 +v -62.330677 -125.644310 -5.211166 +v -61.945305 -125.508492 -5.224621 +v -62.955479 -126.321007 -5.082891 +v -62.338913 -125.444328 -5.074618 +v -62.796169 -125.831459 -5.027390 +v -62.702877 -125.622704 -4.914413 +v -61.934273 -125.222878 -4.911737 +v -61.934303 -132.024994 -5.253119 +v -61.042862 -133.521423 -5.253115 +v 60.065979 -133.906647 -5.253119 +v 60.744240 -133.695374 -5.253118 +v -60.404114 -134.616089 -5.248145 +v -59.991501 -134.851959 -5.162782 +v -60.069202 -134.996796 -4.988297 +v -59.920784 -135.053375 -4.802398 +v 63.076515 -131.911987 -4.786809 +v 60.782104 -132.160370 -0.003105 +v 60.152294 -132.766449 -0.003109 +v 62.464901 -125.393898 -4.788413 +v 62.780857 -125.684776 -4.863092 +v 63.076771 -126.403130 -4.801378 +v -56.921116 -121.250648 -0.003117 +v 56.358704 -121.103615 -0.003121 +v 56.511997 -121.111382 -0.003125 +v 56.891109 -121.232780 -0.003117 +v 57.230110 -121.522545 -0.003116 +v 57.452896 -121.951912 -0.003098 +v -60.856499 -125.403572 -0.003121 +v -60.479137 -132.541504 -0.003118 +v -60.801395 -132.081604 -0.003112 +v -60.906845 -131.933136 -3.503122 +v -60.034172 -132.792969 -0.003116 +v -60.080845 -132.863159 -3.503115 +v 60.905151 -131.947632 -3.503123 +v 61.873306 -132.016693 -3.503119 +v 61.939976 -125.324593 -5.078493 +v 61.884880 -125.256828 -3.503115 +v 60.244820 -133.827454 -3.503111 +v 61.558098 -133.029541 -5.253103 +v 61.928558 -132.066925 -5.253119 +v -60.166397 -133.899200 -5.253116 +v -61.680592 -132.806885 -5.253115 +v -61.034702 -133.443542 -3.503118 +v -60.235451 -133.825195 -3.503114 +v -63.074604 -126.395546 -4.840703 +v -62.986717 -126.026619 -4.830525 +v -62.774971 -125.663261 -4.769261 +v -62.463909 -125.401466 -4.811262 +v 62.800034 -126.383171 1.490654 +v 62.703907 -126.072609 1.547446 +v 62.749302 -126.346748 1.645581 +v 62.298828 -125.628532 1.701210 +v 62.536472 -125.831993 1.639090 +v 62.567268 -125.968376 1.764726 +v 62.618229 -126.246452 1.804726 +v 62.286373 -125.711571 1.904069 +v 62.129612 -125.606773 1.946899 +v 62.136662 -125.773643 2.103464 +v 62.279903 -125.908043 2.043833 +v 62.794617 -131.938873 1.538574 +v 62.689457 -132.023804 1.741514 +v 60.917374 -125.250771 -3.503120 +v 60.856285 -125.403572 -0.003121 +v 61.933613 -125.199455 -4.787917 +v 62.984138 -126.015495 -4.757121 +v 61.945004 -125.501060 1.856449 +v 57.392586 -123.016838 1.685595 +v 57.193584 -122.988884 1.962860 +v 57.511974 -123.939461 2.314683 +v 57.493599 -123.607201 1.945323 +v 57.391308 -123.484612 2.067196 +v 57.259708 -123.758430 2.354791 +v 57.404518 -122.118324 1.297885 +v 57.306881 -122.966576 1.834591 +v 56.966507 -121.816643 1.548199 +v 56.957523 -121.337242 1.073783 +v 57.363857 -121.870293 1.195201 +v 56.477127 -121.158073 1.044802 +v 56.717522 -121.224510 1.107338 +v 57.168652 -121.534660 1.138092 +v 56.953354 -121.410866 1.244395 +v 56.472786 -121.261742 1.257490 +v 56.692745 -121.415352 1.368236 +v 57.250168 -121.753746 1.326678 +v 57.033508 -121.567680 1.369395 +v 57.310726 -122.016304 1.433183 +v 57.156296 -121.910179 1.528700 +v -56.659985 -121.194649 1.047980 +v -57.255051 -121.642708 1.107336 +v -56.413494 -121.159889 1.071847 +v -57.134811 -121.496941 1.137333 +v -56.862743 -121.289070 1.116903 +v -56.507332 -121.250008 1.234633 +v -57.400719 -121.999382 1.222879 +v -56.691826 -121.401741 1.362798 +v -57.229542 -121.722527 1.328497 +v -57.009281 -121.478264 1.286602 +v -57.152767 -121.922935 1.536778 +v -57.319134 -122.001945 1.417109 +v -57.399544 -122.942741 1.602992 +v -57.374317 -123.123329 1.815871 +v -57.299934 -123.022255 1.877613 +v -57.453014 -123.478798 1.942603 +v -57.565842 -123.836189 2.111758 +v -57.057690 -122.923439 2.010936 +v -57.276470 -123.585793 2.252312 +v -57.846867 -124.186501 -0.003128 +v -57.464516 -122.054543 -0.003118 +v -57.306164 -121.618111 -0.003110 +v -56.508854 -121.109398 -0.003118 +v 56.349892 -121.103584 -0.003121 +v -61.868141 -132.057434 -3.503119 +v -60.917587 -125.250771 -3.503120 +v -61.598648 -132.825684 -3.503115 +v -60.668365 -132.474945 -3.503114 +v 61.154076 -133.355255 -3.503115 +v 60.154240 -132.851044 -3.503107 +v 61.664593 -132.692596 -3.503118 +v 60.704475 -132.413055 -3.503118 +v -62.197918 -125.267876 -4.817040 +v -61.884895 -125.255394 -3.503111 +v -62.793270 -126.402412 1.554587 +v -62.693062 -126.054649 1.581864 +v -62.502602 -125.801277 1.678457 +v -62.285252 -125.627647 1.733960 +v -61.960251 -125.497597 1.817330 +v -62.477978 -125.951790 1.870741 +v -62.224606 -125.667854 1.926579 +v -61.956051 -125.570183 2.031543 +v -62.143570 -125.765892 2.094579 +v -61.258629 -134.395935 1.325654 +v -62.798374 -131.928375 1.521968 +v -62.594208 -132.859650 1.495123 +v -61.759399 -134.032104 1.440136 +v -62.129131 -133.645874 1.482802 +v -62.401806 -133.237030 1.521620 +v -62.700214 -132.549988 1.519871 +v -62.735481 -132.067444 1.667910 +v -62.189346 -133.452209 1.662267 +v -62.582253 -132.404694 1.786077 +v -61.474712 -134.129150 1.612616 +v -62.491879 -132.935883 1.677993 +v -61.841415 -133.781830 1.703686 +v -62.645245 -131.868195 1.787635 +v -62.408833 -132.779968 1.826476 +v 59.961536 -134.791626 1.116880 +v -60.000526 -134.782745 1.159646 +v -60.600849 -134.680969 1.202195 +v 60.387451 -134.725067 1.196405 +v 61.665260 -134.115875 1.392861 +v 61.213604 -134.407288 1.393798 +v 62.325844 -133.383606 1.480781 +v 60.853313 -134.575409 1.324706 +v 60.165642 -134.694550 1.325164 +v 62.019306 -133.767242 1.491740 +v 61.677105 -134.037201 1.552093 +v 62.038361 -133.672363 1.620329 +v 60.894684 -134.425354 1.536099 +v 62.562656 -132.892639 1.580479 +v 62.353493 -133.241211 1.634542 +v 62.712376 -132.435364 1.578745 +v 61.780006 -133.767822 1.741366 +v 62.226082 -133.239563 1.783118 +v 61.163151 -125.513268 2.374758 +v 61.327946 -125.610146 2.510991 +v 61.353367 -125.744011 2.631798 +v 61.068619 -125.578758 2.560854 +v 61.399044 -125.933678 2.679246 +v 61.065407 -125.724358 2.706926 +v 61.221794 -125.907356 2.749138 +v 61.008144 -125.899498 2.788635 +v 57.488174 -123.180473 -0.003104 +v 57.732376 -123.983025 -0.003130 +v 58.291897 -124.727455 -0.003129 +v 59.049015 -125.214394 -0.003126 +v 59.788223 -125.395958 -0.003117 +v 57.706276 -124.131767 2.219944 +v 57.950787 -124.501122 2.338030 +v 57.914490 -124.534752 2.487782 +v 57.693027 -124.441154 2.602668 +v 57.515778 -124.420219 2.656702 +v 58.334568 -125.148338 2.700105 +v 57.721241 -124.731911 2.741927 +v -56.918106 -121.638741 1.469399 +v 57.019352 -123.174065 2.126461 +v -59.528442 -125.386757 -0.003144 +v -58.455891 -124.867180 -0.003128 +v -57.502419 -123.306114 -0.003112 +v -57.700428 -124.110313 2.176949 +v -57.861614 -124.392738 2.344754 +v -57.569347 -124.026146 2.336464 +v -57.470795 -124.331123 2.622430 +v -57.464329 -124.115913 2.500555 +v -57.685360 -124.645195 2.718105 +v -61.055187 -125.513741 2.403326 +v -61.292290 -125.578484 2.488581 +v -61.316193 -125.723991 2.637859 +v -61.027122 -125.700935 2.695490 +v -61.111855 -125.905556 2.780607 +v -62.274925 -125.955360 2.055063 +v -62.660831 -126.278358 1.766809 +v -60.482677 -134.619476 1.401215 +v -61.051006 -134.412262 1.502305 +v -62.258228 -133.210266 1.770258 +v 61.414219 -134.140808 1.625896 +v 60.481274 -132.802246 2.697419 +v 62.529896 -132.575073 1.794140 +v 61.338074 -131.423889 2.706224 +v 59.341866 -125.412575 2.339031 +v 58.318672 -124.883781 2.398056 +v 59.836704 -125.504387 2.399879 +v 58.807377 -125.207878 2.403461 +v 58.302227 -124.968651 2.580071 +v 59.216427 -125.430504 2.518778 +v 58.777634 -125.433388 2.715325 +v 59.687065 -125.615959 2.632827 +v 59.777348 -125.755959 2.740828 +v 57.965588 -125.098686 2.791265 +v 58.595875 -125.590904 2.793991 +v -58.810997 -125.209953 2.389282 +v -59.336941 -125.410393 2.374567 +v -58.297619 -124.870171 2.405324 +v -58.371368 -125.031105 2.582883 +v -59.819504 -125.575706 2.567843 +v -58.871983 -125.325310 2.583977 +v -58.278862 -125.059746 2.673068 +v -59.288353 -125.562691 2.679758 +v -58.835030 -125.525261 2.748737 +v -57.914692 -125.049919 2.788238 +v -59.830070 -125.501411 2.377535 +v -61.069519 -125.588356 2.570240 +v -59.843292 -125.739754 2.731404 +v -61.413918 -125.913353 2.668051 +v -60.618896 -132.694733 2.695554 +v -59.090858 -133.223785 2.709276 +v -61.353123 -131.464661 2.694462 +v -60.911930 -132.203125 2.753335 +v -61.067871 -131.358948 2.789939 +v -60.085434 -132.936859 2.734128 +v -60.251774 -132.551514 2.796069 +v -59.288734 -133.380859 2.613300 +v -59.569672 -132.938263 2.786367 +v 59.147224 -133.413300 2.591545 +v 59.013474 -133.174103 2.730376 +v 59.756893 -133.124756 2.701907 +v 60.982693 -132.178040 2.731928 +v 59.679306 -132.834839 2.794284 +v 60.599369 -132.344818 2.791033 +v 61.056393 -131.270050 2.790982 +v -59.207817 -125.861320 2.793944 +v 59.561317 -125.881966 2.792318 +v 1.009265 -125.511131 -5.253121 +v 60.064846 -132.657715 -0.503117 +v 60.698875 -131.945190 -0.503120 +v 60.756817 -131.918671 -3.503120 +v -59.911755 -132.684570 -0.503120 +v -60.690269 -131.999237 -0.503119 +v -60.730717 -132.078217 -3.503112 +v -60.369400 -132.484894 -0.503116 +v 56.647533 -120.970055 -3.535595 +v 60.767353 -125.250771 -3.503121 +v 60.714985 -125.381752 -0.503123 +v -61.373013 -132.894287 -3.503116 +v -60.727161 -133.470673 -3.503116 +v -60.160641 -132.692505 -3.503105 +v -60.036026 -133.696899 -3.503120 +v 60.210030 -133.679718 -3.503113 +v 60.015305 -132.722931 -3.503118 +v 60.531811 -132.400574 -3.503117 +v -60.767567 -125.250771 -3.503121 +v -60.715199 -125.381752 -0.503123 +v -59.454121 -125.341301 -0.503142 +v -57.926945 -124.260109 -0.503125 +v -57.513344 -123.327522 -0.503141 +v -57.246933 -121.507729 -0.503120 +v 57.260761 -121.525917 -0.503121 +v 57.473972 -121.955177 -0.503115 +v 57.503975 -123.167168 -0.503128 +v 60.502861 -132.341034 -0.503120 +v 59.679684 -125.363701 -0.503126 +v 57.475719 -121.514015 -4.641304 +v 57.136456 -121.179283 -4.167922 +v 56.765976 -121.130943 -0.503090 +v 57.699539 -122.447563 -5.196053 +v -57.470043 -121.940819 -0.503114 +v -57.679825 -122.027122 -5.023052 +v -57.556648 -121.649193 -4.769504 +v -57.179962 -121.196938 -4.222804 +v -56.732906 -121.118340 -0.503094 +v -56.598572 -120.966499 -3.480691 +v 57.828594 -124.128883 -0.503133 +v 58.683777 -125.019493 -0.503143 +v 58.740093 -124.806511 -5.253140 +v 59.712776 -125.162056 -5.253126 +v 61.795921 -125.174385 -5.253121 +v 61.734814 -125.250771 -3.503121 +v 61.194118 -133.130707 -3.503105 +v 61.322250 -133.082642 -5.253096 +v 61.701687 -132.176971 -3.503115 +v -61.714481 -132.102081 -3.503117 +v -60.804138 -133.497345 -5.253114 +v -61.796135 -125.174385 -5.253121 +v -61.735027 -125.250771 -3.503121 +v -59.739876 -125.163811 -5.253124 +v -58.453651 -124.837196 -0.503129 +v -58.178078 -124.286705 -5.253142 +v 57.707520 -123.079460 -5.258509 +v -57.699478 -122.533836 -5.220398 +v 57.668495 -121.954689 -4.985284 +v -61.781857 -132.020447 -5.253120 +v -61.509552 -132.813416 -5.253111 +v -60.052338 -133.759033 -5.253120 +v -58.980675 -124.929131 -5.253127 +v -57.740059 -123.317055 -5.254305 +v 57.977913 -123.968819 -5.253132 +v 61.774746 -132.113647 -5.253115 +v 60.301826 -133.723877 -5.253114 +vn 0.0011 0.9998 -0.0195 +vn -0.0005 0.9998 -0.0192 +vn -0.0000 -0.9338 0.3577 +vn -0.0000 -0.9424 0.3346 +vn -0.0000 -0.5642 0.8256 +vn -0.0000 -0.5717 0.8205 +vn 0.0001 -0.9620 -0.2732 +vn -0.0001 -0.8503 -0.5264 +vn 0.0001 -0.5224 -0.8527 +vn -0.0000 -0.3458 -0.9383 +vn -0.0000 -0.1532 0.9882 +vn 0.0078 -0.2202 0.9754 +vn -0.0073 -0.3460 0.9382 +vn -0.0006 -0.3979 0.9174 +vn -0.3645 -0.6413 0.6752 +vn -0.0053 -0.5488 0.8359 +vn -0.0084 -0.5629 0.8265 +vn -0.0005 -0.7139 0.7002 +vn 0.0085 -0.6907 0.7231 +vn -0.0162 -0.8255 0.5642 +vn -0.0091 -0.9156 0.4019 +vn 0.0076 -0.9422 0.3349 +vn -0.0066 -0.9776 0.2106 +vn 0.0958 -0.9316 0.3506 +vn 0.1154 -0.6912 0.7134 +vn 0.2149 -0.8312 0.5127 +vn 0.1091 -0.7012 0.7045 +vn 0.2889 -0.6996 0.6535 +vn 0.0949 -0.3936 0.9144 +vn 0.3036 -0.7391 0.6013 +vn 0.2684 -0.6956 0.6664 +vn 0.4147 -0.7584 0.5028 +vn 0.1680 -0.2895 0.9423 +vn 0.4170 -0.6584 0.6266 +vn 0.1049 -0.1606 0.9814 +vn 0.5516 -0.6961 0.4596 +vn 0.5491 -0.6046 0.5770 +vn 0.4744 -0.4821 0.7366 +vn 0.5643 -0.4066 0.7185 +vn 0.4757 -0.3786 0.7939 +vn 0.6692 -0.3409 0.6603 +vn 0.6102 -0.3322 0.7192 +vn 0.6927 -0.2056 0.6913 +vn 0.6610 -0.2074 0.7211 +vn 0.1360 -0.0556 0.9891 +vn 0.8620 -0.0958 0.4977 +vn 0.6874 -0.1243 0.7155 +vn 0.0708 -0.9247 -0.3741 +vn 0.1578 -0.9717 -0.1756 +vn 0.2083 -0.8894 -0.4070 +vn 0.0423 -0.6253 -0.7792 +vn 0.1541 -0.5957 -0.7883 +vn 0.1566 -0.4824 -0.8618 +vn 0.3850 -0.9117 -0.1436 +vn 0.3892 -0.8670 -0.3111 +vn 0.1331 -0.3729 -0.9183 +vn 0.5241 -0.7481 -0.4070 +vn 0.4714 -0.7226 -0.5056 +vn 0.2835 -0.4475 -0.8482 +vn 0.6687 -0.6878 -0.2823 +vn 0.6272 -0.6710 -0.3955 +vn 0.4842 -0.4613 -0.7435 +vn 0.1742 -0.1991 -0.9644 +vn 0.0821 -0.0824 -0.9932 +vn 0.7930 -0.5524 -0.2570 +vn 0.7950 -0.5559 -0.2428 +vn 0.6001 -0.4374 -0.6697 +vn 0.4782 -0.3026 -0.8245 +vn 0.8187 -0.3868 -0.4244 +vn 0.5309 -0.2437 -0.8116 +vn 0.9315 -0.3529 -0.0883 +vn 0.4453 -0.1705 -0.8790 +vn 0.2252 -0.0680 -0.9719 +vn 0.8696 -0.2079 -0.4479 +vn 0.8947 -0.1742 -0.4113 +vn 0.7213 -0.0451 -0.6912 +vn 0.7272 0.0027 -0.6864 +vn 0.7137 0.0159 -0.7003 +vn 0.5219 0.0842 -0.8488 +vn 0.0060 -0.1707 0.9853 +vn -0.0009 -0.2080 0.9781 +vn 0.0061 -0.4126 0.9109 +vn 0.0261 -0.3218 0.9464 +vn 0.0131 -0.6098 0.7924 +vn -0.0111 -0.5147 0.8573 +vn 0.0124 -0.6924 0.7214 +vn -0.0015 -0.7947 0.6070 +vn -0.0098 -0.8165 0.5772 +vn 0.0148 -0.8864 0.4628 +vn 0.0220 -0.9498 0.3119 +vn -0.0000 -0.9994 -0.0345 +vn -0.0000 -0.9994 -0.0346 +vn -0.0919 -0.9201 0.3807 +vn -0.2204 -0.8058 0.5497 +vn -0.1075 -0.7003 0.7057 +vn -0.0743 -0.5725 0.8165 +vn -0.2528 -0.7357 0.6284 +vn -0.0624 -0.2711 0.9605 +vn -0.3415 -0.8069 0.4819 +vn -0.2942 -0.7493 0.5933 +vn -0.0245 -0.0652 0.9976 +vn -0.2059 -0.3704 0.9058 +vn -0.5128 -0.7678 0.3841 +vn -0.4591 -0.7211 0.5189 +vn -0.3263 -0.5083 0.7970 +vn -0.6371 -0.7123 0.2944 +vn -0.5559 -0.5182 0.6499 +vn -0.3806 -0.3623 0.8508 +vn -0.3135 -0.2866 0.9053 +vn -0.7343 -0.5649 0.3763 +vn -0.8139 -0.4219 0.3994 +vn -0.7226 -0.4023 0.5621 +vn -0.4807 -0.2489 0.8408 +vn -0.4394 -0.2319 0.8678 +vn -0.8771 -0.3880 0.2833 +vn -0.9206 -0.2679 0.2843 +vn -0.8623 -0.2831 0.4198 +vn -0.6281 -0.2093 0.7494 +vn -0.4530 -0.0998 0.8859 +vn -0.9446 -0.1476 0.2931 +vn -0.8752 -0.1082 0.4715 +vn -0.5968 -0.0828 0.7981 +vn -0.1512 -0.9611 -0.2311 +vn -0.0388 -0.8272 -0.5606 +vn -0.2147 -0.8745 -0.4349 +vn -0.0620 -0.5055 -0.8606 +vn -0.0821 -0.4719 -0.8778 +vn -0.0800 -0.4028 -0.9118 +vn -0.3162 -0.8917 -0.3238 +vn -0.3416 -0.8172 -0.4642 +vn -0.2913 -0.6068 -0.7396 +vn -0.1911 -0.4374 -0.8787 +vn -0.5348 -0.8449 -0.0142 +vn -0.5408 -0.7777 -0.3203 +vn -0.3976 -0.6074 -0.6877 +vn -0.3442 -0.4374 -0.8308 +vn -0.6604 -0.6883 -0.3002 +vn -0.6535 -0.6609 -0.3689 +vn -0.5529 -0.5653 -0.6122 +vn -0.1624 -0.1739 -0.9713 +vn -0.3981 -0.3304 -0.8558 +vn -0.8009 -0.5817 -0.1420 +vn -0.7642 -0.5838 -0.2742 +vn -0.5236 -0.3425 -0.7801 +vn -0.8284 -0.4716 -0.3024 +vn -0.5211 -0.2960 -0.8006 +vn -0.4938 -0.2898 -0.8199 +vn -0.9031 -0.4250 -0.0616 +vn -0.8548 -0.3194 -0.4091 +vn -0.6488 -0.2521 -0.7180 +vn -0.9773 -0.1921 -0.0897 +vn -0.8956 -0.1340 -0.4242 +vn -0.4772 -0.1109 -0.8718 +vn -0.3356 -0.0617 -0.9400 +vn -0.8616 -0.0348 -0.5064 +vn -0.5361 0.0356 -0.8434 +vn -0.0000 0.0006 1.0000 +vn -0.0000 -0.0032 1.0000 +vn 0.0007 -0.0033 1.0000 +vn -0.0001 0.0006 1.0000 +vn 0.0025 -0.0013 1.0000 +vn 0.0001 -0.0006 1.0000 +vn -0.0006 -0.0011 1.0000 +vn -0.0006 -0.0010 1.0000 +vn -0.0009 -0.0008 1.0000 +vn 0.0004 -0.0009 1.0000 +vn 0.0016 0.0008 1.0000 +vn -0.0020 0.0021 1.0000 +vn 0.0023 0.0054 1.0000 +vn -0.0026 0.0003 1.0000 +vn -0.0022 -0.0030 1.0000 +vn -0.0028 0.0008 1.0000 +vn -0.0033 0.0023 1.0000 +vn 0.0001 0.0005 1.0000 +vn 0.0001 -0.0000 1.0000 +vn 0.0047 -0.0000 1.0000 +vn -0.0050 -0.0001 1.0000 +vn 0.0058 -0.0000 1.0000 +vn 0.0285 0.0023 0.9996 +vn -0.0010 -0.0001 1.0000 +vn 0.0011 -0.0103 0.9999 +vn 0.6890 -0.0018 0.7248 +vn 0.6845 0.0003 0.7290 +vn 0.5761 0.0027 0.8174 +vn 0.5828 0.0003 0.8126 +vn 0.4090 0.0016 0.9125 +vn 0.4275 -0.0042 0.9040 +vn 0.2433 -0.0012 0.9700 +vn 0.2408 -0.0002 0.9706 +vn 0.1272 -0.0059 0.9919 +vn 0.2005 0.0091 0.9797 +vn 0.3421 -0.0121 0.9396 +vn 0.4162 0.0076 0.9092 +vn 0.5514 -0.0057 0.8343 +vn 0.5634 -0.0016 0.8262 +vn -0.0000 0.0055 1.0000 +vn -0.0000 0.0049 1.0000 +vn -0.2200 -0.0048 0.9755 +vn -0.2733 0.0118 0.9619 +vn -0.3730 -0.0054 0.9278 +vn -0.4798 -0.0099 0.8773 +vn -0.5283 0.0126 0.8489 +vn -0.6176 0.0091 0.7864 +vn -0.6844 -0.0016 0.7291 +vn -0.6669 -0.0075 0.7451 +vn -0.5641 0.0102 0.8257 +vn -0.4836 -0.0000 0.8753 +vn -0.4792 0.0013 0.8777 +vn -0.2604 -0.0021 0.9655 +vn -0.2443 0.0054 0.9697 +vn -0.0330 0.0021 0.9995 +vn 0.0021 -0.0141 0.9999 +vn -0.0018 0.0084 1.0000 +vn 0.0775 0.3487 0.9340 +vn 0.1089 0.8139 0.5707 +vn 0.1448 0.8727 0.4662 +vn 0.3698 0.9251 -0.0860 +vn 0.2511 0.6286 0.7361 +vn 0.2579 0.8556 0.4489 +vn 0.2964 0.6882 0.6622 +vn 0.2453 0.4641 0.8511 +vn 0.4169 0.7980 0.4351 +vn 0.4157 0.7594 0.5004 +vn 0.2832 0.3605 0.8887 +vn 0.5622 0.7462 0.3565 +vn 0.3839 0.4215 0.8216 +vn 0.5460 0.6014 0.5833 +vn 0.2964 0.2536 0.9208 +vn 0.6857 0.6106 0.3963 +vn 0.6468 0.4970 0.5785 +vn 0.4321 0.2564 0.8646 +vn 0.3974 0.2236 0.8900 +vn 0.8241 0.4490 0.3454 +vn 0.7604 0.3309 0.5588 +vn 0.5206 0.1612 0.8384 +vn 0.6758 0.2406 0.6967 +vn 0.9214 0.2375 0.3075 +vn 0.4942 -0.0313 0.8688 +vn 0.8120 0.1515 0.5636 +vn -0.0000 0.5184 0.8552 +vn -0.0001 0.3723 0.9281 +vn -0.0000 0.6366 0.7712 +vn -0.0001 0.8935 0.4491 +vn -0.0000 0.9133 0.4073 +vn -0.0264 0.2468 0.9687 +vn -0.2340 0.8251 0.5142 +vn -0.0995 0.6283 0.7716 +vn -0.2034 0.8760 0.4374 +vn -0.2393 0.5836 0.7760 +vn -0.2888 0.7246 0.6258 +vn -0.2200 0.4680 0.8559 +vn -0.4957 0.8347 0.2399 +vn -0.3357 0.4256 0.8404 +vn -0.4035 0.4826 0.7773 +vn -0.5721 0.7510 0.3297 +vn -0.3549 0.2831 0.8910 +vn -0.6049 0.5828 0.5426 +vn -0.7032 0.5951 0.3891 +vn -0.4868 0.3064 0.8180 +vn -0.5792 0.4034 0.7084 +vn -0.7671 0.4565 0.4508 +vn -0.7064 0.2332 0.6683 +vn -0.6074 0.2636 0.7494 +vn -0.7357 0.2735 0.6196 +vn -0.6660 0.1595 -0.7287 +vn -0.8241 0.1313 0.5510 +vn -0.8023 0.1390 0.5805 +vn -0.7018 -0.0990 0.7054 +vn -0.0016 0.9998 -0.0214 +vn -0.0115 0.9997 -0.0197 +vn 0.0281 0.0537 -0.9982 +vn -0.0064 0.1815 -0.9834 +vn -0.0101 0.1837 -0.9829 +vn -0.0185 0.3568 -0.9340 +vn 0.0213 0.3294 -0.9440 +vn -0.0415 0.4346 -0.8997 +vn 0.0188 0.5181 -0.8551 +vn -0.0389 0.5971 -0.8012 +vn 0.0103 0.6416 -0.7670 +vn -0.0063 0.6606 -0.7507 +vn 0.0074 0.7646 -0.6445 +vn -0.0036 0.7729 -0.6345 +vn 0.0202 0.8273 -0.5615 +vn -0.0312 0.8721 -0.4884 +vn 0.0252 0.9173 -0.3974 +vn -0.0124 0.9429 -0.3328 +vn 0.0180 0.9648 -0.2622 +vn -0.0159 0.9887 -0.1490 +vn -0.0033 0.9868 -0.1619 +vn -0.0000 0.0064 -1.0000 +vn -0.0000 0.0033 -1.0000 +vn 0.0011 0.0066 -1.0000 +vn 0.0012 0.0063 -1.0000 +vn -0.0032 0.0022 -1.0000 +vn -0.0050 0.0028 -1.0000 +vn -0.0029 0.0231 -0.9997 +vn 0.0022 -0.0031 -1.0000 +vn 0.0007 -0.0037 -1.0000 +vn -0.0184 0.0148 -0.9997 +vn -0.0111 0.0118 -0.9999 +vn 0.0015 0.0029 -1.0000 +vn -0.0065 0.0027 -1.0000 +vn 0.0003 0.0033 -1.0000 +vn -0.0017 -0.0047 -1.0000 +vn -0.0028 0.0048 -1.0000 +vn -0.0156 -0.0001 -0.9999 +vn -0.0087 0.0092 -0.9999 +vn 0.0105 0.0729 -0.9973 +vn -0.0269 0.2054 -0.9783 +vn 0.0100 0.1795 -0.9837 +vn 0.0033 0.3422 -0.9396 +vn -0.0124 0.3571 -0.9340 +vn 0.0095 0.4648 -0.8853 +vn -0.0077 0.4889 -0.8723 +vn 0.0282 0.5856 -0.8101 +vn 0.0162 0.5968 -0.8022 +vn 0.0185 0.7026 -0.7114 +vn -0.0100 0.7246 -0.6891 +vn 0.0156 0.7855 -0.6186 +vn -0.0309 0.8305 -0.5561 +vn 0.0165 0.8764 -0.4813 +vn -0.0226 0.9116 -0.4105 +vn 0.0233 0.9442 -0.3286 +vn -0.0196 0.9681 -0.2499 +vn 0.0038 0.9883 -0.1525 +vn 0.0093 0.9869 -0.1608 +vn 0.5474 -0.1143 0.8290 +vn 0.8924 -0.1218 0.4345 +vn 0.4523 -0.2117 0.8664 +vn 0.5162 -0.2743 0.8114 +vn 0.8617 -0.1865 0.4719 +vn 0.3411 -0.4529 0.8237 +vn 0.9344 -0.2007 0.2943 +vn 0.7107 -0.3028 0.6350 +vn 0.4783 -0.5042 0.7191 +vn 0.2336 -0.7036 0.6711 +vn 0.5331 -0.5797 0.6162 +vn 0.9026 -0.3176 0.2906 +vn 0.7204 -0.5083 0.4719 +vn 0.9272 -0.2855 0.2425 +vn 0.1411 -0.8157 0.5610 +vn 0.4638 -0.8021 0.3762 +vn 0.7008 -0.6517 0.2901 +vn 0.9372 -0.2958 0.1848 +vn 0.4061 -0.8980 0.1697 +vn 0.8687 -0.0001 0.4954 +vn 0.8182 -0.0000 0.5749 +vn 0.5123 -0.0000 0.8588 +vn 0.2401 -0.0001 0.9708 +vn 0.1423 -0.9892 -0.0346 +vn 0.2340 -0.9717 -0.0332 +vn 0.1602 -0.9865 -0.0352 +vn 0.3755 -0.9262 -0.0350 +vn 0.4799 -0.8767 -0.0335 +vn 0.3901 -0.9201 -0.0358 +vn 0.6102 -0.7915 -0.0333 +vn 0.5674 -0.8227 -0.0351 +vn 0.7372 -0.6748 -0.0337 +vn 0.6961 -0.7170 -0.0356 +vn 0.7943 -0.6067 -0.0334 +vn 0.8202 -0.5710 -0.0354 +vn 0.8885 -0.4577 -0.0324 +vn 0.9345 -0.3541 -0.0358 +vn 0.9546 -0.2960 -0.0333 +vn 0.9875 -0.1539 -0.0348 +vn 0.9892 -0.1422 -0.0344 +vn 0.9990 -0.0281 -0.0353 +vn 0.4041 0.1706 -0.8987 +vn 0.8629 0.1252 -0.4897 +vn 0.6859 0.2080 -0.6974 +vn 0.9839 0.0528 -0.1709 +vn 0.5575 0.2981 -0.7748 +vn 0.5694 0.3412 -0.7479 +vn 0.7290 0.3293 -0.6001 +vn 0.6478 0.4374 -0.6237 +vn 0.7483 0.4258 -0.5087 +vn 0.7292 0.4621 -0.5047 +vn 0.5437 0.6023 -0.5845 +vn 0.9081 0.3136 -0.2773 +vn 0.4234 0.7154 -0.5558 +vn 0.8603 0.4040 -0.3110 +vn 0.5170 0.7020 -0.4897 +vn 0.4195 0.7831 -0.4591 +vn 0.8721 0.4299 -0.2338 +vn 0.5993 0.7204 -0.3491 +vn 0.9613 0.2481 -0.1195 +vn 0.4544 0.8383 -0.3014 +vn 0.8982 0.4191 -0.1326 +vn 0.5950 0.7749 -0.2132 +vn 0.4489 0.8778 -0.1672 +vn 0.9259 0.3755 -0.0424 +vn 0.8025 0.5954 -0.0386 +vn 0.6209 0.7828 -0.0415 +vn -0.1938 0.3806 0.9042 +vn -0.3886 0.2665 0.8820 +vn -0.2027 0.4233 0.8830 +vn -0.4548 0.5598 0.6927 +vn -0.5714 0.5532 0.6062 +vn -0.3146 0.4874 0.8145 +vn -0.5685 0.5748 0.5886 +vn -0.4938 0.5022 0.7099 +vn -0.1073 0.7902 0.6033 +vn -0.2425 0.7395 0.6280 +vn -0.2343 0.8503 0.4712 +vn -0.1370 0.9037 0.4057 +vn -0.2793 0.8987 0.3380 +vn -0.4479 0.7847 0.4285 +vn -0.2045 0.8433 0.4971 +vn -0.5234 0.5614 0.6411 +vn -0.3247 0.6526 0.6846 +vn -0.3184 0.6559 0.6844 +vn -0.2232 0.5512 0.8040 +vn -0.1179 0.6944 0.7099 +vn -0.3843 0.7132 0.5863 +vn -0.2265 0.9441 0.2395 +vn -0.1034 0.9349 0.3396 +vn 0.0011 0.5442 0.8389 +vn -0.0033 0.6817 0.7316 +vn -0.9999 -0.0046 0.0157 +vn -0.9996 0.0009 0.0273 +vn -0.9867 -0.0004 -0.1625 +vn -0.9999 -0.0032 0.0154 +vn -0.0000 -0.0000 1.0000 +vn -0.0000 0.0001 1.0000 +vn 0.9998 -0.0020 0.0204 +vn 0.9999 0.0026 0.0123 +vn 0.9999 0.0001 0.0149 +vn 0.9999 0.0013 0.0147 +vn 0.0002 0.5830 0.8125 +vn -0.0009 0.5514 0.8342 +vn 0.0038 0.8443 0.5358 +vn 0.2305 0.3562 0.9055 +vn 0.4886 0.5166 0.7031 +vn 0.3877 0.4778 0.7883 +vn 0.4890 0.5501 0.6770 +vn 0.2811 0.6013 0.7479 +vn 0.2025 0.7968 0.5694 +vn 0.1882 0.9531 0.2371 +vn 0.1344 0.9731 0.1874 +vn 0.1413 0.4016 0.9049 +vn 0.2712 0.5193 0.8104 +vn 0.4628 0.2315 0.8557 +vn 0.5051 0.4920 0.7091 +vn 0.6551 0.3649 0.6616 +vn 0.1931 0.2391 0.9516 +vn 0.5646 0.5467 0.6184 +vn 0.2909 0.8282 0.4791 +vn 0.1305 0.8348 0.5348 +vn 0.2706 0.6388 0.7202 +vn 0.3722 0.8659 0.3341 +vn 0.3442 0.7792 0.5238 +vn 0.0838 0.9777 0.1926 +vn 0.4393 0.5206 0.7321 +vn -0.0000 0.3342 0.9425 +vn -0.0000 0.4413 0.8974 +vn -0.0000 0.6865 0.7271 +vn 0.0001 0.8491 0.5282 +vn -0.0000 0.9025 0.4306 +vn -0.3814 -0.2028 0.9019 +vn -0.6957 -0.0320 0.7177 +vn -0.4960 -0.3408 0.7987 +vn -0.6627 -0.2619 0.7016 +vn -0.9708 -0.0841 0.2247 +vn -0.4422 -0.3222 0.8371 +vn -0.2456 -0.5698 0.7843 +vn -0.7019 -0.2851 0.6527 +vn -0.8767 -0.2830 0.3890 +vn -0.4871 -0.5924 0.6417 +vn -0.4947 -0.5924 0.6359 +vn -0.8981 -0.2682 0.3485 +vn 0.9837 -0.1020 0.1480 +vn -0.7889 -0.5101 0.3426 +vn -0.4691 -0.7324 0.4935 +vn -0.5581 -0.6601 0.5027 +vn -0.5429 -0.7275 0.4195 +vn -0.8679 -0.3955 0.3004 +vn -0.4530 -0.8029 0.3875 +vn -0.5279 -0.8216 0.2152 +vn -0.8876 -0.4161 0.1975 +vn -0.8819 -0.0001 0.4714 +vn -0.8856 -0.0001 0.4644 +vn -0.6671 -0.0000 0.7450 +vn -0.5142 -0.0001 0.8577 +vn -0.3763 -0.0000 0.9265 +vn -0.1475 -0.9884 -0.0349 +vn -0.1470 -0.9885 -0.0349 +vn -0.2265 -0.9734 -0.0333 +vn -0.3326 -0.9424 -0.0355 +vn -0.3890 -0.9206 -0.0331 +vn -0.5356 -0.8438 -0.0353 +vn -0.5345 -0.8444 -0.0353 +vn -0.6776 -0.7346 -0.0341 +vn -0.6917 -0.7213 -0.0350 +vn -0.7917 -0.6100 -0.0338 +vn -0.8085 -0.5874 -0.0351 +vn -0.8632 -0.5037 -0.0344 +vn -0.9042 -0.4256 -0.0362 +vn -0.9191 -0.3924 -0.0346 +vn -0.9557 -0.2924 -0.0337 +vn -0.9808 -0.1913 -0.0371 +vn -0.9903 -0.1346 -0.0344 +vn -0.9256 0.0500 -0.3753 +vn -0.7168 0.1535 -0.6802 +vn -0.4810 0.1350 -0.8663 +vn -0.6690 0.2293 -0.7070 +vn -0.7244 0.2698 -0.6344 +vn -0.6012 0.3612 -0.7128 +vn -0.9915 0.0531 -0.1192 +vn -0.8468 0.3233 -0.4225 +vn -0.6162 0.4128 -0.6707 +vn -0.7144 0.4918 -0.4978 +vn -0.5620 0.5944 -0.5752 +vn -0.3394 0.7232 -0.6015 +vn -0.9042 0.3433 -0.2540 +vn -0.6437 0.6681 -0.3731 +vn -0.4545 0.7640 -0.4580 +vn -0.6009 0.7452 -0.2891 +vn -0.6090 0.7406 -0.2841 +vn -0.9490 0.3001 -0.0966 +vn -0.8677 0.4885 -0.0925 +vn -0.4726 0.8653 -0.1673 +vn -0.5211 0.8400 -0.1510 +vn -0.8321 0.5531 -0.0411 +vn -0.7616 0.6469 -0.0382 +vn -0.5181 0.8544 -0.0391 +vn 0.3152 -0.9490 0.0011 +vn 0.2951 -0.9552 0.0222 +vn 0.5621 -0.8258 0.0451 +vn 0.6010 -0.7992 0.0020 +vn 0.8035 -0.5952 0.0076 +vn 0.8318 -0.5535 0.0416 +vn 0.9476 -0.3196 0.0015 +vn 0.9696 -0.2426 0.0332 +vn 0.9990 -0.0451 -0.0001 +vn -0.0189 -0.9997 0.0170 +vn -0.0343 -0.9993 0.0159 +vn -0.0214 -0.9986 0.0480 +vn 0.0012 -0.9998 0.0205 +vn 0.0058 -0.9999 0.0139 +vn 0.0031 -0.9997 0.0251 +vn 0.8940 -0.0001 0.4480 +vn 0.6940 0.0001 0.7199 +vn 0.4610 -0.0000 0.8874 +vn -0.8989 -0.0000 0.4381 +vn -0.7290 -0.0000 0.6845 +vn -0.6762 -0.0001 0.7367 +vn -0.2862 -0.0000 0.9582 +vn 0.0020 -0.7827 0.6224 +vn 0.0001 -0.7028 0.7114 +vn 0.0026 -0.4752 0.8799 +vn 0.2418 -0.9186 0.3126 +vn 0.1215 -0.9338 0.3364 +vn 0.4555 -0.7406 0.4940 +vn 0.2602 -0.8729 0.4127 +vn 0.1784 -0.6829 0.7084 +vn 0.2063 -0.7488 0.6298 +vn 0.5748 -0.5204 0.6315 +vn 0.4745 -0.5335 0.7002 +vn 0.5751 -0.5167 0.6343 +vn 0.4756 -0.4881 0.7318 +vn 0.4094 -0.4264 0.8066 +vn 0.1994 -0.4402 0.8755 +vn 0.1263 -0.9681 0.2163 +vn 0.3408 0.8124 0.4731 +vn 0.0545 -0.9540 0.2947 +vn 0.2707 -0.8259 0.4946 +vn 0.3126 -0.5243 0.7921 +vn 0.6503 -0.5294 0.5448 +vn 0.0895 -0.6967 0.7117 +vn 0.3217 -0.6893 0.6491 +vn 0.3091 -0.5109 0.8022 +vn 0.2182 -0.3925 0.8935 +vn 0.5492 -0.2889 0.7841 +vn -0.0002 0.1561 0.9877 +vn -0.0000 -0.8016 0.5978 +vn -0.0000 -0.7588 0.6514 +vn -0.0000 -0.4010 0.9161 +vn -0.0000 -0.3873 0.9220 +vn -0.0514 -0.8940 0.4451 +vn -0.2838 -0.7615 0.5828 +vn -0.2511 -0.8030 0.5405 +vn -0.1386 -0.7697 0.6232 +vn -0.3680 -0.8321 0.4149 +vn -0.3921 -0.4626 0.7952 +vn -0.4862 -0.5600 0.6709 +vn -0.1978 -0.2872 0.9372 +vn -0.2382 -0.4691 0.8504 +vn -0.4760 -0.2476 0.8438 +vn -0.3080 -0.8714 0.3818 +vn -0.3095 -0.8316 0.4612 +vn -0.1778 -0.8927 0.4141 +vn -0.2163 -0.6633 0.7164 +vn -0.2219 -0.6741 0.7045 +vn -0.1251 -0.7048 0.6983 +vn -0.4870 -0.4769 0.7317 +vn -0.4627 -0.3856 0.7983 +vn -0.6233 -0.4074 0.6675 +vn -0.0482 -0.4349 0.8992 +vn -0.6203 -0.3303 0.7114 +vn -0.2469 -0.1391 0.9590 +vn -0.0018 -0.8921 0.4518 +vn 0.0018 -0.7465 0.6654 +vn -0.0034 -0.3957 0.9184 +vn 0.0215 -0.9996 0.0172 +vn -0.0130 -0.9997 0.0198 +vn 0.0051 -0.9998 0.0172 +vn -0.0028 -0.9997 0.0242 +vn -0.0017 -1.0000 -0.0052 +vn -0.0080 -0.9993 0.0369 +vn -0.2434 -0.9681 0.0590 +vn -0.3742 -0.9261 -0.0483 +vn -0.5539 -0.8286 0.0816 +vn -0.7271 -0.6857 -0.0327 +vn -0.8287 -0.5577 0.0483 +vn -0.9185 -0.3953 -0.0079 +vn -0.9573 -0.2864 0.0379 +vn -0.9990 -0.0445 0.0015 +vn 0.1327 0.9907 0.0308 +vn 0.2994 0.9533 0.0405 +vn 0.3094 0.9501 0.0387 +vn 0.4760 0.8789 0.0290 +vn 0.6145 0.7877 0.0437 +vn 0.6636 0.7473 0.0340 +vn 0.8024 0.5959 0.0324 +vn 0.8413 0.5390 0.0418 +vn 0.9161 0.3996 0.0311 +vn 0.9584 0.2827 0.0402 +vn 0.9571 0.2870 0.0407 +vn 0.9917 0.1246 0.0313 +vn -0.0002 0.9990 0.0443 +vn -0.0000 0.9993 0.0380 +vn -0.2045 0.9785 0.0262 +vn -0.3906 0.9198 0.0375 +vn -0.4313 0.9011 0.0452 +vn -0.4775 0.8777 0.0399 +vn -0.6335 0.7730 0.0330 +vn -0.7378 0.6736 0.0434 +vn -0.7414 0.6697 0.0423 +vn -0.8349 0.5496 0.0295 +vn -0.9177 0.3958 0.0339 +vn -0.9585 0.2812 0.0472 +vn -0.9486 0.3138 0.0405 +vn -0.9871 0.1571 0.0316 +vn 0.9382 0.3448 -0.0295 +vn 0.6055 0.7953 -0.0273 +vn 0.5178 0.8550 -0.0301 +vn 0.9451 0.0510 -0.3226 +vn 0.8321 0.1013 -0.5453 +vn 0.2669 0.1936 -0.9441 +vn 0.7695 0.1727 -0.6148 +vn 0.4170 0.2440 -0.8756 +vn 0.8330 0.1957 -0.5175 +vn 0.2140 0.3456 -0.9136 +vn 0.9395 0.1391 -0.3131 +vn 0.4586 0.3796 -0.8035 +vn 0.3585 0.4758 -0.8031 +vn 0.8404 0.3041 -0.4485 +vn 0.5172 0.4854 -0.7049 +vn 0.4054 0.5807 -0.7060 +vn 0.9196 0.2569 -0.2971 +vn 0.7102 0.5114 -0.4838 +vn 0.6616 0.5701 -0.4871 +vn 0.6806 0.5835 -0.4432 +vn 0.4192 0.7656 -0.4880 +vn 0.9001 0.3700 -0.2303 +vn 0.7142 0.6442 -0.2739 +vn 0.3998 0.8257 -0.3980 +vn 0.7518 0.6265 -0.2057 +vn 0.6487 0.7396 -0.1796 +vn 0.6472 0.7437 -0.1678 +vn 0.5046 0.8548 -0.1211 +vn 0.4113 0.0619 -0.9094 +vn 0.5482 0.0953 -0.8309 +vn 0.8465 0.1036 -0.5222 +vn 0.0819 0.4354 -0.8965 +vn 0.2533 0.7188 -0.6474 +vn 0.1105 0.8641 -0.4911 +vn 0.1344 0.9035 -0.4069 +vn 0.1994 0.5995 -0.7752 +vn 0.2583 0.8081 -0.5294 +vn 0.2754 0.8245 -0.4944 +vn 0.3037 0.7556 -0.5804 +vn 0.2123 0.4661 -0.8589 +vn 0.4785 0.7973 -0.3678 +vn 0.4847 0.7605 -0.4322 +vn 0.3310 0.4320 -0.8389 +vn 0.4355 0.5252 -0.7310 +vn 0.5880 0.7672 -0.2564 +vn 0.6204 0.6459 -0.4450 +vn 0.3398 0.3288 -0.8812 +vn 0.7376 0.6208 -0.2657 +vn 0.5217 0.3774 -0.7651 +vn 0.7367 0.5584 -0.3814 +vn 0.4619 0.2832 -0.8405 +vn 0.8460 0.5060 -0.1680 +vn 0.8368 0.4002 -0.3736 +vn 0.5095 0.1870 -0.8399 +vn 0.5990 0.2078 -0.7733 +vn 0.8231 0.3270 -0.4642 +vn 0.9410 0.3356 -0.0429 +vn 0.7208 0.1219 -0.6823 +vn 0.9296 0.1773 -0.3230 +vn 0.9267 0.1774 -0.3313 +vn -0.0000 0.5909 -0.8067 +vn -0.0000 0.5874 -0.8093 +vn -0.0000 0.9089 -0.4171 +vn -0.0000 0.9363 -0.3513 +vn -0.1042 0.4580 -0.8829 +vn -0.3088 0.8818 -0.3566 +vn -0.0979 0.8185 -0.5660 +vn -0.1555 0.9182 -0.3643 +vn -0.2771 0.7714 -0.5728 +vn -0.2755 0.7678 -0.5784 +vn -0.2699 0.8283 -0.4909 +vn -0.2805 0.8263 -0.4884 +vn -0.4087 0.5488 -0.7292 +vn -0.4892 0.8654 0.1083 +vn -0.3524 0.5005 -0.7907 +vn -0.5679 0.7054 -0.4242 +vn -0.4327 0.3587 -0.8271 +vn -0.5867 0.5396 -0.6038 +vn -0.7301 0.6319 -0.2601 +vn -0.7260 0.6223 -0.2926 +vn -0.7713 0.5701 -0.2828 +vn -0.4323 0.2750 -0.8588 +vn -0.6994 0.3897 -0.5992 +vn -0.8455 0.5285 -0.0763 +vn -0.8088 0.4070 -0.4245 +vn -0.5271 0.1554 -0.8355 +vn -0.6548 0.2216 -0.7225 +vn -0.9314 0.2591 -0.2557 +vn -0.9495 0.2814 -0.1391 +vn -0.9717 0.2197 0.0872 +vn -0.9765 0.1095 -0.1855 +vn -0.9799 0.1082 -0.1677 +vn -0.7700 0.0899 -0.6316 +vn -0.5822 0.1040 -0.8064 +vn -0.9003 0.0806 -0.4277 +vn -0.4147 0.1677 -0.8944 +vn -0.6263 0.2462 -0.7397 +vn -0.6167 0.2593 -0.7433 +vn -0.8865 0.2077 -0.4136 +vn -0.6949 0.2805 -0.6621 +vn -0.4327 0.4560 -0.7777 +vn -0.8088 0.3345 -0.4836 +vn -0.5224 0.4835 -0.7024 +vn -0.3523 0.5724 -0.7404 +vn -0.8970 0.2851 -0.3378 +vn -0.8291 0.3927 -0.3979 +vn -0.4884 0.6267 -0.6072 +vn -0.3833 0.6512 -0.6550 +vn -0.8610 0.4007 -0.3133 +vn -0.6511 0.6344 -0.4167 +vn -0.5048 0.7063 -0.4962 +vn -0.6528 0.6826 -0.3284 +vn -0.5552 0.7606 -0.3366 +vn -0.9580 0.2661 -0.1066 +vn -0.8246 0.5545 -0.1125 +vn -0.4915 0.8324 -0.2559 +vn -0.7000 0.6997 -0.1428 +vn -0.5128 0.8502 -0.1190 +vn -0.9021 0.4306 -0.0300 +vn -0.7964 0.6042 -0.0262 +vn -0.4440 0.8955 -0.0310 +vn 0.9994 -0.0018 -0.0348 +vn 0.9994 -0.0000 -0.0342 +vn 0.9994 -0.0002 -0.0343 +vn 0.9993 0.0015 -0.0382 +vn 0.9994 -0.0067 -0.0332 +vn 0.9993 -0.0036 -0.0361 +vn 0.9994 -0.0000 -0.0347 +vn 0.9993 -0.0049 -0.0363 +vn 0.9994 -0.0010 -0.0353 +vn 0.9994 0.0117 -0.0333 +vn 0.9992 0.0164 -0.0362 +vn 0.9919 0.1209 -0.0380 +vn 0.9730 0.2282 -0.0358 +vn 0.9537 0.2995 -0.0290 +vn 0.9278 0.3713 -0.0358 +vn 0.8817 0.4703 -0.0382 +vn 0.8051 0.5924 -0.0314 +vn 0.7871 0.6159 -0.0348 +vn 0.6843 0.7282 -0.0376 +vn 0.6033 0.7968 -0.0324 +vn 0.5936 0.8040 -0.0337 +vn 0.4652 0.8843 -0.0398 +vn 0.3021 0.9527 -0.0326 +vn 0.3127 0.9493 -0.0312 +vn 0.1297 0.9908 -0.0389 +vn -0.0010 0.9994 -0.0336 +vn -0.0009 0.9995 -0.0328 +vn -0.0018 0.9995 -0.0325 +vn -0.0013 0.9994 -0.0332 +vn -0.0000 0.9994 -0.0354 +vn 0.0005 0.9995 -0.0322 +vn 0.0016 0.9995 -0.0319 +vn 0.0020 0.9995 -0.0316 +vn 0.0004 0.9994 -0.0340 +vn 0.0058 0.9996 -0.0270 +vn -0.0000 0.9994 -0.0351 +vn -0.0114 0.9989 -0.0464 +vn 0.0132 0.9987 -0.0494 +vn -0.9877 0.1513 -0.0400 +vn -0.9561 0.2908 -0.0352 +vn -0.9535 0.2994 -0.0341 +vn -0.8907 0.4533 -0.0358 +vn -0.8605 0.5085 -0.0320 +vn -0.8379 0.5447 -0.0357 +vn -0.7368 0.6750 -0.0385 +vn -0.6647 0.7465 -0.0306 +vn -0.6039 0.7962 -0.0372 +vn -0.4660 0.8841 -0.0358 +vn -0.4523 0.8912 -0.0343 +vn -0.2972 0.9541 -0.0364 +vn -0.2575 0.9657 -0.0330 +vn -0.1419 0.9891 -0.0384 +vn -0.9992 0.0049 -0.0390 +vn -0.9994 0.0005 -0.0345 +vn -0.9994 0.0012 -0.0348 +vn -0.9994 -0.0000 -0.0355 +vn -0.9994 -0.0000 -0.0354 +vn -0.9993 0.0034 -0.0378 +vn -0.9997 -0.0138 -0.0191 +vn -0.9994 0.0032 -0.0345 +vn -0.9990 0.0230 -0.0372 +vn -0.9993 0.0160 -0.0324 +vn -0.0000 -0.3162 -0.9487 +vn -0.0001 -0.3160 -0.9488 +vn -0.0002 -0.3174 -0.9483 +vn 0.0003 -0.3164 -0.9486 +vn -0.0001 -0.3177 -0.9482 +vn 0.0038 -0.2639 -0.9646 +vn -0.0070 -0.1957 -0.9806 +vn 0.0001 -0.0115 -0.9999 +vn 0.0020 -0.0081 -1.0000 +vn 0.5945 -0.1264 0.7941 +vn 0.6798 -0.1724 0.7129 +vn 0.6092 -0.2010 0.7672 +vn 0.5464 -0.3829 0.7449 +vn 0.7612 -0.1978 0.6176 +vn 0.9993 0.0001 0.0380 +vn 0.9993 0.0001 0.0372 +vn 0.9993 0.0060 0.0376 +vn -0.9993 0.0001 0.0379 +vn -0.9993 0.0001 0.0372 +vn -0.9992 -0.0141 0.0367 +vn -0.3236 -0.2285 0.9182 +vn 0.1841 -0.3840 0.9048 +vn -0.7637 -0.1149 0.6353 +vn -0.4337 -0.4116 0.8015 +vn -0.8546 -0.1275 0.5033 +vn -0.0014 -0.9993 0.0379 +vn -0.0000 -0.9993 0.0363 +vn -0.0000 -0.9994 0.0357 +vn -0.0069 -0.9990 0.0436 +vn 0.0011 -0.9994 0.0339 +vn 0.0005 -0.9993 0.0371 +vn -0.0043 -0.9995 0.0301 +vn 0.0015 -0.9993 0.0376 +vn 0.0037 -0.9992 0.0400 +vn 0.0004 -0.3184 -0.9479 +vn -0.0005 -0.3167 -0.9485 +vn 0.0003 -0.3198 -0.9475 +vn -0.0002 -0.0123 -0.9999 +vn -0.0034 -0.0058 -1.0000 +vn -0.0032 -0.2569 -0.9664 +vn 0.0039 -0.2206 -0.9753 +vn 0.0006 -0.0248 -0.9997 +vn 0.9998 0.0072 -0.0193 +vn 0.9998 0.0037 -0.0216 +vn 0.9994 0.0135 -0.0328 +vn 0.9997 0.0044 -0.0240 +vn 0.9996 0.0067 -0.0266 +vn 0.9999 -0.0101 -0.0019 +vn 0.1434 0.9895 -0.0171 +vn 0.2972 0.9546 -0.0204 +vn 0.3433 0.9389 -0.0239 +vn 0.4161 0.9091 -0.0205 +vn 0.5729 0.8194 -0.0214 +vn 0.5507 0.8344 -0.0243 +vn 0.6893 0.7242 -0.0169 +vn 0.8026 0.5962 -0.0210 +vn 0.8340 0.5512 -0.0260 +vn 0.9021 0.4311 -0.0180 +vn 0.9717 0.2351 -0.0232 +vn 0.9792 0.2017 -0.0202 +vn -0.0000 0.9997 -0.0234 +vn -0.0000 0.9997 -0.0224 +vn -0.1464 0.9891 -0.0180 +vn -0.2894 0.9569 -0.0232 +vn -0.3238 0.9459 -0.0205 +vn -0.4870 0.8732 -0.0200 +vn -0.5369 0.8433 -0.0233 +vn -0.6255 0.7800 -0.0187 +vn -0.7559 0.6543 -0.0232 +vn -0.7605 0.6490 -0.0224 +vn -0.8920 0.4517 -0.0169 +vn -0.9470 0.3202 -0.0253 +vn -0.9591 0.2824 -0.0220 +vn -0.9914 0.1292 -0.0193 +vn -0.9997 0.0073 -0.0236 +vn -0.9998 -0.0007 -0.0203 +vn -0.9995 0.0081 -0.0296 +vn -0.9994 0.0114 -0.0323 +vn -0.9994 -0.0307 0.0179 +vn -0.9998 -0.0034 -0.0210 +vn 0.9290 0.0001 -0.3700 +vn 0.7778 -0.0001 -0.6285 +vn 0.5132 0.0001 -0.8583 +vn 0.5976 0.0656 -0.7991 +vn 0.8437 0.1258 -0.5218 +vn 0.9220 0.0988 -0.3744 +vn 0.8587 0.1856 -0.4778 +vn 0.9144 0.2284 -0.3342 +vn 0.3042 0.0982 -0.9475 +vn 0.3992 0.1421 -0.9058 +vn 0.4567 0.1799 -0.8712 +vn 0.8100 0.3444 -0.4747 +vn 0.8752 0.3388 -0.3452 +vn 0.8205 0.4407 -0.3642 +vn 0.5102 0.3142 -0.8006 +vn 0.7385 0.4601 -0.4929 +vn 0.7579 0.5676 -0.3215 +vn 0.2852 0.2378 -0.9285 +vn 0.4964 0.4729 -0.7279 +vn 0.1058 0.1030 -0.9890 +vn 0.5160 0.5516 -0.6554 +vn 0.3788 0.5233 -0.7633 +vn 0.4308 0.5627 -0.7056 +vn 0.0964 0.2290 -0.9686 +vn 0.3112 0.5639 -0.7650 +vn 0.3361 0.6643 -0.6676 +vn 0.1448 0.4723 -0.8695 +vn 0.2472 0.7223 -0.6458 +vn 0.2542 0.8417 -0.4763 +vn 0.0766 0.5106 -0.8564 +vn 0.1063 0.8328 -0.5433 +vn 0.1062 0.8333 -0.5426 +vn 0.0001 0.2416 -0.9704 +vn -0.0001 0.4586 -0.8886 +vn -0.0000 0.8209 -0.5711 +vn -0.0000 0.8733 -0.4872 +vn -0.6812 0.1153 -0.7229 +vn -0.8887 0.1022 -0.4470 +vn -0.3643 0.1225 -0.9232 +vn -0.6055 0.1644 -0.7787 +vn -0.7945 0.2665 -0.5457 +vn -0.5650 0.3085 -0.7652 +vn -0.6210 0.3416 -0.7055 +vn -0.7532 0.3641 -0.5479 +vn -0.6997 0.4688 -0.5391 +vn -0.2046 0.1553 -0.9664 +vn -0.5493 0.5100 -0.6619 +vn -0.5771 0.5249 -0.6256 +vn -0.4464 0.5727 -0.6876 +vn -0.4628 0.5837 -0.6672 +vn -0.1266 0.2003 -0.9715 +vn -0.3275 0.6433 -0.6920 +vn -0.3292 0.6530 -0.6821 +vn -0.1804 0.6479 -0.7401 +vn -0.2336 0.7194 -0.6541 +vn -0.1073 0.7414 -0.6625 +vn -0.0990 0.8640 -0.4936 +vn -0.8854 0.0001 -0.4649 +vn -0.7419 -0.0001 -0.6705 +vn -0.3950 0.0001 -0.9187 +vn 1.0000 -0.0010 -0.0004 +vn 0.9944 -0.1024 -0.0274 +vn 1.0000 -0.0006 -0.0051 +vn 1.0000 -0.0057 -0.0059 +vn 1.0000 -0.0065 -0.0048 +vn 0.9646 -0.2635 -0.0020 +vn 0.9547 -0.2974 -0.0068 +vn 0.8223 -0.5690 -0.0075 +vn 0.7895 -0.6138 0.0001 +vn 0.5562 -0.8310 -0.0086 +vn 0.5387 -0.8425 -0.0056 +vn 0.2793 -0.9602 -0.0031 +vn 0.2452 -0.9695 -0.0073 +vn 0.0072 -1.0000 -0.0049 +vn 0.1200 -0.6955 0.7085 +vn 0.0061 -1.0000 -0.0045 +vn -0.0417 -0.9991 -0.0099 +vn -0.9951 0.0971 -0.0174 +vn -0.9994 0.0003 -0.0349 +vn -0.1290 0.9916 -0.0115 +vn -0.0011 0.9994 -0.0347 +vn -0.0068 0.9994 -0.0351 +vn -1.0000 -0.0014 -0.0052 +vn -0.9999 0.0138 -0.0061 +vn -1.0000 -0.0004 -0.0049 +vn -1.0000 -0.0032 -0.0054 +vn -1.0000 -0.0050 -0.0036 +vn -1.0000 -0.0040 -0.0051 +vn 0.0971 0.9951 -0.0174 +vn 0.0037 0.9994 -0.0348 +vn 0.0002 0.9994 -0.0349 +vn 0.9916 0.1287 -0.0115 +vn 0.9994 -0.0001 -0.0349 +vn -0.1199 -0.7388 0.6632 +vn -0.0134 -0.9999 -0.0037 +vn 0.0458 -0.9989 -0.0104 +vn -0.0051 -1.0000 -0.0070 +vn -0.9714 -0.2373 -0.0055 +vn -0.9709 -0.2395 -0.0052 +vn -0.8349 -0.5503 -0.0040 +vn -0.8355 -0.5495 -0.0038 +vn -0.6192 -0.7852 -0.0082 +vn -0.5574 -0.8302 0.0009 +vn -0.3505 -0.9365 -0.0113 +vn -0.2451 -0.9695 -0.0004 +vn -0.0000 -0.0000 -1.0000 +vn -0.0008 -0.0000 -1.0000 +vn -0.0001 -0.0000 -1.0000 +vn 0.0002 -0.0000 -1.0000 +vn -0.0054 -0.0000 -1.0000 +vn -0.0126 -0.0000 -0.9999 +vn 0.0142 -0.0000 -0.9999 +vn 0.0029 -0.0001 -1.0000 +vn -0.0001 -0.0001 -1.0000 +vn -0.0053 -0.0000 -1.0000 +vn 0.0027 -0.0000 -1.0000 +vn -0.0048 0.0013 -1.0000 +vn 0.0026 0.0006 -1.0000 +vn -0.0038 -0.0005 -1.0000 +vn 0.0017 -0.0008 -1.0000 +vn -0.0000 0.0002 -1.0000 +vn 0.0004 0.0003 -1.0000 +vn -0.0024 0.0019 -1.0000 +vn -0.0041 0.0080 -1.0000 +vn 0.0006 0.0023 -1.0000 +vn -0.0047 0.0073 -1.0000 +vn -0.0048 0.0073 -1.0000 +vn 0.0015 0.0023 -1.0000 +vn 0.0024 0.0009 -1.0000 +vn -0.0000 -0.0011 -1.0000 +vn -0.0000 -0.0003 -1.0000 +vn -0.0023 0.0079 -1.0000 +vn 0.0001 0.0003 -1.0000 +vn -0.0036 0.0060 -1.0000 +vn -0.0000 0.0069 -1.0000 +vn -0.0000 0.0070 -1.0000 +vn -0.0000 0.0004 -1.0000 +vn -0.0000 0.0003 -1.0000 +vn 0.9998 0.0216 -0.0048 +vn 0.9998 0.0163 -0.0116 +vn 0.2305 0.9726 0.0298 +vn 0.4852 0.8744 0.0073 +vn 0.4308 0.9020 -0.0270 +vn 0.7555 0.6549 0.0179 +vn 0.7289 0.6846 -0.0080 +vn 0.9238 0.3820 -0.0268 +vn 0.9502 0.3109 0.0220 +vn 0.0180 0.9996 -0.0223 +vn 0.0150 0.9997 -0.0175 +vn -0.0042 0.9999 -0.0116 +vn -0.0122 0.9999 0.0013 +vn -0.2289 0.9734 0.0021 +vn -0.2599 0.9655 -0.0154 +vn -0.5387 0.8420 0.0269 +vn -0.6069 0.7943 -0.0269 +vn -0.8281 0.5603 0.0178 +vn -0.8498 0.5270 -0.0080 +vn -0.9694 0.2455 0.0072 +vn -0.9734 0.2290 -0.0021 +vn -1.0000 0.0071 -0.0012 +vn -0.9996 0.0218 -0.0175 +vn -0.0000 -0.0001 1.0000 +vn 0.1177 0.9929 0.0192 +vn 0.0916 0.9957 -0.0167 +vn -0.2397 0.9707 0.0141 +vn -0.2630 0.9647 -0.0112 +vn 0.5244 0.8515 -0.0017 +vn 0.5140 0.8575 -0.0221 +vn -0.5279 0.8492 0.0124 +vn -0.5489 0.8357 -0.0179 +vn 0.8332 0.5524 0.0257 +vn -0.8185 0.5742 0.0193 +vn -0.8333 0.5525 -0.0167 +vn 0.8513 0.5242 -0.0212 +vn 0.9806 0.1948 0.0192 +vn 0.9787 0.2052 0.0048 +vn -0.9752 0.2205 0.0167 +vn -0.9806 0.1948 -0.0192 +vn 0.9807 -0.1948 -0.0192 +vn 0.9664 -0.2502 0.0590 +vn -0.9806 -0.1948 0.0192 +vn -0.9664 -0.2502 -0.0590 +vn 0.8392 -0.5387 -0.0752 +vn -0.8392 -0.5387 0.0752 +vn 0.7208 -0.6870 0.0926 +vn -0.7208 -0.6870 -0.0926 +vn 0.6090 -0.7918 -0.0470 +vn -0.5846 -0.8080 0.0735 +vn 0.3462 -0.9378 0.0242 +vn 0.3232 -0.9446 0.0577 +vn -0.3538 -0.9325 -0.0726 +vn -0.1741 -0.9802 0.0941 +vn 0.0039 -0.9977 -0.0678 +vn -0.2680 0.9633 0.0167 +vn -0.2630 0.9645 0.0238 +vn 0.5235 0.8501 0.0577 +vn 0.4635 0.8860 -0.0165 +vn -0.5482 0.8348 -0.0508 +vn 0.6926 0.7184 -0.0642 +vn -0.6559 0.7485 0.0978 +vn 0.8299 0.5503 0.0921 +vn -0.8299 0.5503 -0.0921 +vn 0.9419 0.3206 -0.1002 +vn -0.9419 0.3206 0.1002 +vn 0.9791 0.1945 0.0587 +vn -0.9791 0.1945 -0.0587 +vn 0.9829 -0.1795 -0.0404 +vn -0.9829 -0.1795 0.0404 +vn -0.6090 -0.7918 0.0470 +vn 0.3495 -0.9367 0.0193 +vn -0.3509 -0.9361 -0.0230 +vn -0.3547 -0.9348 -0.0176 +vn -0.0257 -0.9995 0.0161 +vn 0.0039 -0.9998 -0.0188 +vn 0.0914 0.9935 -0.0681 +vn -0.0914 0.9935 0.0681 +vn 0.2626 0.9632 0.0573 +vn -0.2626 0.9632 -0.0573 +vn 0.5489 0.8357 0.0179 +vn 0.5005 0.8643 -0.0502 +vn -0.5133 0.8564 0.0564 +vn -0.5490 0.8358 -0.0002 +vn 0.8333 0.5525 0.0167 +vn 0.8185 0.5742 -0.0193 +vn -0.8332 0.5524 -0.0257 +vn -0.8513 0.5242 0.0212 +vn 0.9752 0.2205 -0.0167 +vn -0.9787 0.2052 -0.0048 +vn -0.9807 -0.1948 0.0192 +vn -0.8472 -0.5268 0.0693 +vn -0.7216 -0.6878 -0.0791 +vn -0.6556 -0.7548 0.0212 +vn 0.3680 -0.9298 -0.0084 +vn -0.3483 -0.9374 -0.0032 +vn -0.3547 -0.9349 0.0074 +vn 0.0509 -0.9983 0.0266 +vn 0.0039 -0.9996 -0.0294 +vn 0.3719 -0.9281 -0.0191 +vn 0.4100 -0.9113 0.0384 +vn 0.6924 -0.7195 -0.0534 +vn 0.7468 -0.6636 0.0438 +vn 0.7569 -0.6495 -0.0723 +vn 0.6464 -0.7601 0.0661 +vn 0.4596 -0.8855 -0.0686 +vn 0.3622 -0.9308 0.0488 +vn 0.0015 -0.9998 -0.0175 +vn 0.0021 -0.9998 0.0220 +vn 0.3624 -0.9316 -0.0261 +vn 0.3704 -0.9288 -0.0073 +vn 0.6293 -0.7765 0.0309 +vn 0.6748 -0.7335 -0.0813 +vn 0.8386 -0.5376 0.0877 +vn 0.9123 -0.3932 -0.1143 +vn 0.9571 -0.2835 0.0607 +vn 1.0000 -0.0000 -0.0093 +vn 0.9998 -0.0000 -0.0212 +vn 0.9319 0.3625 -0.0147 +vn 0.9249 0.3791 0.0275 +vn 0.7356 0.6768 -0.0272 +vn 0.7181 0.6953 0.0312 +vn 0.3956 0.9178 -0.0334 +vn 0.3782 0.9256 0.0152 +vn -0.0000 1.0000 -0.0093 +vn 0.0001 1.0000 0.0054 +vn -0.9571 0.2835 0.0607 +vn -0.9123 0.3932 -0.1143 +vn -0.8386 0.5376 0.0877 +vn -0.6748 0.7335 -0.0812 +vn -0.6293 0.7765 0.0309 +vn -0.3652 0.9309 -0.0080 +vn -0.3625 0.9319 -0.0147 +vn -1.0000 -0.0000 -0.0053 +vn -0.9998 -0.0001 -0.0212 +vn -0.3624 -0.9316 0.0261 +vn -0.3975 -0.9156 -0.0600 +vn -0.6747 -0.7333 0.0839 +vn -0.7333 -0.6747 -0.0839 +vn -0.9166 -0.3951 0.0612 +vn -0.9309 -0.3650 -0.0148 +vn -0.0021 -0.9998 -0.0220 +vn -0.0011 -0.9989 0.0462 +vn -0.7581 -0.6506 0.0450 +vn -0.6660 -0.7406 -0.0897 +vn -0.4580 -0.8825 0.1069 +vn -0.2637 -0.9608 -0.0855 +vn -0.9195 -0.3929 0.0129 +vn -0.9181 -0.3955 -0.0273 +vn -0.3698 -0.9290 0.0140 +vn -0.4036 -0.9140 -0.0402 +vn -0.6924 -0.7195 0.0534 +vn -0.7468 -0.6636 -0.0438 +vn -0.0000 -0.9996 -0.0296 +vn -0.0002 -1.0000 -0.0037 +vn 0.0015 -0.9998 0.0199 +vn 0.9167 -0.3966 0.0492 +vn 0.9195 -0.3929 -0.0129 +vn -0.0418 -0.0344 -0.9985 +vn -0.3159 -0.1728 -0.9329 +vn -0.4357 -0.1778 -0.8824 +vn -0.2351 -0.3374 -0.9115 +vn -0.1846 -0.4573 -0.8700 +vn -0.4345 -0.3357 -0.8358 +vn -0.4215 -0.4658 -0.7781 +vn -0.1865 -0.4740 -0.8605 +vn -0.1360 -0.5388 -0.8314 +vn -0.6363 -0.2272 -0.7372 +vn -0.1328 -0.7328 -0.6674 +vn -0.7740 -0.1951 -0.6024 +vn -0.7727 -0.1974 -0.6033 +vn -0.4991 -0.5732 -0.6499 +vn -0.4754 -0.6913 -0.5442 +vn -0.3446 -0.7354 -0.5834 +vn -0.6562 -0.6234 -0.4252 +vn -0.9427 -0.1017 -0.3176 +vn -0.7759 -0.4547 -0.4373 +vn -0.7594 -0.4729 -0.4468 +vn -0.3458 -0.8318 -0.4341 +vn -0.2953 -0.8915 -0.3435 +vn -0.2159 -0.8866 -0.4092 +vn -0.7500 -0.5606 -0.3509 +vn -0.9067 -0.3365 -0.2543 +vn -0.8638 -0.4312 -0.2605 +vn -0.5261 -0.8445 -0.1001 +vn -0.1314 -0.9727 -0.1912 +vn 0.1140 -0.2972 -0.9480 +vn 0.2326 -0.2083 -0.9500 +vn 0.3351 -0.1893 -0.9230 +vn 0.2891 -0.1171 -0.9501 +vn 0.3331 -0.1160 -0.9357 +vn 0.0686 -0.4402 -0.8953 +vn 0.2261 -0.4518 -0.8630 +vn 0.3705 -0.4219 -0.8275 +vn 0.2648 -0.6654 -0.6979 +vn 0.3480 -0.4923 -0.7978 +vn 0.5669 -0.1610 -0.8079 +vn 0.1182 -0.6961 -0.7081 +vn 0.1338 -0.7155 -0.6857 +vn 0.5797 -0.5293 -0.6195 +vn 0.6818 -0.3961 -0.6151 +vn 0.7633 -0.2499 -0.5957 +vn 0.4460 -0.7287 -0.5197 +vn 0.3487 -0.7676 -0.5378 +vn 0.6651 -0.4962 -0.5581 +vn 0.7296 -0.3773 -0.5703 +vn 0.5048 -0.7604 -0.4085 +vn 0.8528 -0.2264 -0.4706 +vn 0.1974 -0.9258 -0.3224 +vn 0.8962 -0.1592 -0.4141 +vn 0.2157 -0.9362 -0.2774 +vn 0.3112 -0.9090 -0.2772 +vn 0.6050 -0.7114 -0.3576 +vn 0.9677 -0.1178 -0.2229 +vn 0.2918 -0.0017 -0.9565 +vn 0.4038 0.0009 -0.9148 +vn 0.5712 -0.0020 -0.8208 +vn 0.7203 0.0005 -0.6936 +vn 0.7905 -0.0017 -0.6125 +vn 0.9458 0.0022 -0.3249 +vn 0.9724 -0.0007 -0.2332 +vn 0.1598 0.2628 -0.9515 +vn 0.2417 0.2942 -0.9247 +vn 0.2947 0.1968 -0.9351 +vn 0.3781 0.2048 -0.9028 +vn 0.4395 0.1697 -0.8821 +vn 0.0810 0.5514 -0.8303 +vn 0.7105 0.1999 -0.6747 +vn 0.4126 0.5950 -0.6897 +vn 0.2384 0.6918 -0.6816 +vn 0.5738 0.6340 -0.5185 +vn 0.6623 0.5105 -0.5484 +vn 0.7643 0.4461 -0.4657 +vn 0.7793 0.2692 -0.5659 +vn 0.1968 0.9020 -0.3842 +vn 0.5900 0.7296 -0.3459 +vn 0.9437 0.1606 -0.2893 +vn 0.3401 0.9298 -0.1408 +vn 0.8617 0.4635 -0.2063 +vn 0.9665 0.2410 -0.0878 +vn -0.0889 0.1546 -0.9840 +vn -0.3671 0.1621 -0.9159 +vn -0.3305 0.2752 -0.9028 +vn -0.5405 0.1548 -0.8270 +vn -0.4725 0.4836 -0.7368 +vn -0.2200 0.5439 -0.8098 +vn -0.7157 0.3042 -0.6287 +vn -0.4940 0.4963 -0.7139 +vn -0.1339 0.7343 -0.6655 +vn -0.5488 0.5741 -0.6076 +vn -0.8194 0.3205 -0.4753 +vn -0.2980 0.8557 -0.4231 +vn -0.9000 0.2247 -0.3735 +vn -0.5362 0.7551 -0.3774 +vn -0.4280 0.8376 -0.3395 +vn -0.8122 0.5131 -0.2774 +vn -0.6487 0.7528 -0.1118 +vn -0.8147 0.5185 -0.2597 +vn -0.0054 0.0044 -1.0000 +vn 0.0467 -0.0005 -0.9989 +vn -0.0020 -0.0007 -1.0000 +vn -0.0028 -0.0027 -1.0000 +vn -0.0031 -0.0028 -1.0000 +vn -0.0013 -0.0029 -1.0000 +vn 0.0008 -0.0072 -1.0000 +vn -0.0000 -0.0069 -1.0000 +vn -0.0000 -0.0048 -1.0000 +vn 0.0033 -0.0104 -0.9999 +vn 0.0048 -0.0033 -1.0000 +vn 0.0058 -0.0070 -1.0000 +vn -0.0000 -0.0063 -1.0000 +vn 0.0022 -0.0007 -1.0000 +vn 0.0024 -0.0009 -1.0000 +vn -0.0027 0.0013 -1.0000 +vn 0.0028 0.0006 -1.0000 +vn -0.0444 -0.0411 -0.9982 +vn -0.1230 0.0013 -0.9924 +vn -0.2893 -0.0030 -0.9572 +vn -0.5702 0.0007 -0.8215 +vn -0.6264 -0.0014 -0.7795 +vn -0.8976 0.0024 -0.4408 +vn -0.9385 -0.0017 -0.3454 +vn -0.0000 -0.3403 -0.9403 +vn -0.0000 -0.3358 -0.9419 +vn -0.0000 -0.7684 -0.6400 +vn -0.0000 -0.7694 -0.6387 +vn -0.0000 -0.9567 -0.2912 +vn -0.0000 -0.9530 -0.3030 +vn 0.9990 0.0001 0.0445 +vn 0.9990 -0.0006 0.0439 +vn -0.9395 0.3409 0.0336 +vn -0.9187 0.3917 0.0510 +vn -0.7755 0.6294 0.0496 +vn -0.6901 0.7232 0.0269 +vn -0.6033 0.7954 0.0587 +vn -0.4069 0.9120 0.0525 +vn -0.3240 0.9456 0.0301 +vn -0.1450 0.9877 0.0593 +vn -0.0000 0.9989 0.0469 +vn -0.0001 0.9987 0.0519 +vn 0.0035 0.9987 0.0515 +vn 0.0505 0.9977 0.0461 +vn 0.3047 0.9516 0.0405 +vn 0.2536 0.9659 0.0515 +vn 0.4313 0.9002 0.0607 +vn 0.6494 0.7597 0.0336 +vn 0.6751 0.7364 0.0442 +vn 0.8594 0.5087 0.0517 +vn 0.8871 0.4603 0.0346 +vn 0.9808 0.1857 0.0602 +vn 0.9152 0.4028 -0.0105 +vn 0.8185 0.5735 -0.0333 +vn 0.5512 0.8342 -0.0139 +vn 0.4919 0.8703 -0.0240 +vn -0.0001 0.9998 -0.0201 +vn -0.0002 0.9997 -0.0242 +vn -0.6227 0.7822 -0.0193 +vn -0.6929 0.7201 -0.0366 +vn -0.9182 0.3959 -0.0082 +vn -0.9995 0.0027 -0.0316 +vn -0.9994 0.0017 -0.0352 +vn -0.9994 0.0005 -0.0350 +vn -0.9988 0.0337 -0.0364 +vn -0.2974 0.9547 -0.0128 +vn -0.4599 0.8856 -0.0644 +vn -0.6332 0.7740 -0.0021 +vn -0.7903 0.6088 -0.0691 +vn -0.9332 0.3591 -0.0124 +vn -0.9548 0.2948 -0.0386 +vn 0.0001 0.9990 -0.0452 +vn -0.0000 0.9991 -0.0423 +vn 0.9507 0.3085 -0.0302 +vn 0.9428 0.3308 -0.0406 +vn 0.7458 0.6656 -0.0278 +vn 0.7382 0.6738 -0.0334 +vn 0.3957 0.9181 -0.0232 +vn 0.4305 0.9016 -0.0421 +vn 0.9993 0.0025 -0.0377 +vn 0.9994 0.0018 -0.0353 +vn 0.9994 -0.0003 -0.0350 +vn -0.9990 0.0007 0.0437 +vn -0.9990 0.0003 0.0439 +vn -0.0001 -0.9990 0.0453 +vn 0.0001 -0.9991 0.0429 +vn -0.9866 -0.1571 0.0433 +vn -0.9868 -0.1560 0.0432 +vn -0.9444 -0.3265 0.0396 +vn -0.9554 -0.2922 0.0422 +vn -0.8841 -0.4653 0.0437 +vn -0.8913 -0.4514 0.0422 +vn -0.8291 -0.5573 0.0452 +vn -0.7931 -0.6077 0.0416 +vn -0.7191 -0.6934 0.0451 +vn -0.6754 -0.7363 0.0415 +vn -0.5413 -0.8399 0.0398 +vn -0.5807 -0.8130 0.0438 +vn -0.3897 -0.9197 0.0470 +vn -0.3163 -0.9478 0.0406 +vn -0.1639 -0.9855 0.0451 +vn -0.1380 -0.9895 0.0431 +vn 0.2026 -0.9784 0.0419 +vn 0.1460 -0.9882 0.0454 +vn 0.2938 -0.9547 0.0466 +vn 0.3873 -0.9210 0.0431 +vn 0.4154 -0.9085 0.0446 +vn 0.5241 -0.8506 0.0424 +vn 0.5417 -0.8394 0.0440 +vn 0.6830 -0.7293 0.0418 +vn 0.6949 -0.7179 0.0430 +vn 0.7902 -0.6115 0.0411 +vn 0.7811 -0.6230 0.0423 +vn 0.8878 -0.4583 0.0417 +vn 0.8964 -0.4412 0.0434 +vn 0.9482 -0.3145 0.0439 +vn 0.9495 -0.3107 0.0436 +vn 0.9861 -0.1597 0.0448 +vn 0.9888 -0.1429 0.0435 +vn 0.9371 0.2444 0.2494 +vn 0.8327 0.4650 0.3006 +vn 0.8668 0.2890 0.4064 +vn 0.6632 0.6775 0.3181 +vn 0.8170 0.2260 0.5305 +vn 0.4096 0.8893 0.2033 +vn 0.5851 0.7373 0.3377 +vn 0.7165 0.5532 0.4249 +vn 0.7027 0.2258 0.6747 +vn 0.6781 0.4110 0.6093 +vn 0.6566 0.4228 0.6246 +vn 0.5524 0.5826 0.5962 +vn 0.9505 0.0018 0.3108 +vn 0.8881 -0.0016 0.4596 +vn 0.7727 0.0026 0.6348 +vn -0.9998 0.0018 -0.0174 +vn -0.9993 0.0110 -0.0345 +vn 0.0186 0.9988 0.0453 +vn 0.3434 0.9382 0.0427 +vn 0.3548 0.9340 0.0418 +vn 0.6564 0.7532 0.0440 +vn 0.6821 0.7301 0.0422 +vn 0.8278 0.5593 0.0438 +vn 0.8450 0.5330 0.0424 +vn 0.9566 0.2878 0.0451 +vn 0.9728 0.2277 0.0421 +vn 0.2283 0.9024 0.3656 +vn 0.2895 0.8619 0.4164 +vn 0.4491 0.6213 0.6421 +vn 0.4438 0.6454 0.6217 +vn 0.5374 0.3242 0.7785 +vn 0.5619 0.2488 0.7889 +vn 0.9981 0.0287 0.0537 +vn 0.9993 0.0029 0.0375 +vn 0.8593 0.3219 0.3975 +vn 0.8645 0.3163 0.3906 +vn 0.6528 0.3963 0.6456 +vn 0.6350 0.3932 0.6649 +vn 0.8592 0.4009 0.3179 +vn 0.3053 0.4529 0.8377 +vn 0.4817 0.5140 0.7098 +vn 0.7315 0.5246 0.4355 +vn 0.5059 0.5595 0.6566 +vn 0.3066 0.4907 0.8156 +vn 0.8308 0.4626 0.3093 +vn 0.8777 0.1800 0.4441 +vn 0.8681 0.1901 0.4584 +vn 0.6957 0.2771 0.6627 +vn 0.6437 0.3048 0.7020 +vn 0.4139 0.3522 0.8394 +vn 0.2803 0.3854 0.8791 +vn 0.5881 0.7373 0.3325 +vn 0.1324 0.8899 0.4364 +vn 0.4371 0.8219 0.3653 +vn 0.8184 0.5182 0.2483 +vn 0.6014 0.6629 0.4460 +vn 0.2651 0.7661 0.5855 +vn 0.2431 0.7718 0.5876 +vn 0.6295 0.6280 0.4575 +vn 0.8749 0.3006 0.3798 +vn 0.8396 0.3590 0.4077 +vn 0.3035 0.6839 0.6634 +vn 0.5632 0.5058 0.6534 +vn 0.2321 0.5254 0.8186 +vn 0.6662 0.4071 0.6248 +vn 0.3255 0.4922 0.8073 +vn 0.0001 0.8989 0.4381 +vn -0.0000 0.8749 0.4844 +vn -0.0001 0.6454 0.7639 +vn -0.0000 0.5848 0.8111 +vn -0.1659 0.9002 0.4027 +vn -0.2446 0.8567 0.4541 +vn -0.8628 0.4355 0.2567 +vn -0.7661 0.5713 0.2946 +vn -0.5474 0.7525 0.3661 +vn -0.2689 0.7911 0.5494 +vn -0.6254 0.6404 0.4458 +vn -0.3192 0.7577 0.5691 +vn -0.8484 0.3866 0.3615 +vn -0.3215 0.6264 0.7102 +vn -0.4633 0.5385 0.7038 +vn -0.6529 0.4111 0.6362 +vn -0.4627 0.5474 0.6973 +vn -0.9147 0.1500 0.3752 +vn -0.9099 0.1563 0.3843 +vn -0.6472 0.3035 0.6994 +vn -0.5528 0.3134 0.7721 +vn -0.2284 0.3991 0.8880 +vn -0.9980 0.0225 0.0588 +vn -0.9983 0.0302 0.0506 +vn -0.8361 0.3655 0.4091 +vn -0.8653 0.3270 0.3800 +vn -0.8155 0.2965 0.4970 +vn -0.7499 0.3631 0.5529 +vn -0.5641 0.4408 0.6982 +vn -0.6821 0.4775 0.5538 +vn -0.7852 0.4789 0.3926 +vn -0.6987 0.5517 0.4555 +vn -0.7439 0.5997 0.2949 +vn -0.5745 0.5052 0.6440 +vn -0.9474 0.2329 -0.2195 +vn -0.3973 0.4612 0.7934 +vn 0.9995 0.0082 -0.0298 +vn 0.9998 0.0016 -0.0174 +vn -0.9721 0.2304 0.0430 +vn -0.9609 0.2733 0.0452 +vn -0.8663 0.4978 0.0418 +vn -0.8069 0.5888 0.0467 +vn -0.6399 0.7672 0.0435 +vn -0.6304 0.7750 0.0440 +vn -0.4476 0.8932 0.0431 +vn -0.3812 0.9234 0.0456 +vn -0.1583 0.9870 0.0283 +vn -0.2128 0.9762 0.0414 +vn -0.8802 0.2207 0.4203 +vn -0.8136 0.2964 0.5003 +vn -0.7912 0.4283 0.4366 +vn -0.6381 0.6886 0.3446 +vn -0.6937 0.5213 0.4970 +vn -0.4207 0.8524 0.3103 +vn -0.6643 0.1382 0.7345 +vn -0.4269 0.8539 0.2977 +vn -0.6563 0.4695 0.5906 +vn -0.6393 0.2951 0.7100 +vn -0.4701 0.6446 0.6029 +vn -0.1604 0.9483 0.2739 +vn -0.2071 0.9253 0.3176 +vn -0.4069 0.6859 0.6033 +vn -0.4473 0.6324 0.6325 +vn -0.5193 0.3893 0.7608 +vn -0.5716 0.2321 0.7870 +vn -0.9189 -0.0015 0.3946 +vn -0.8489 0.0019 0.5286 +vn -0.7986 -0.0000 0.6019 +vn -0.1307 -0.9227 0.3627 +vn -0.3299 -0.8934 0.3051 +vn -0.2452 -0.8756 0.4161 +vn -0.4910 -0.7908 0.3655 +vn -0.4241 -0.8000 0.4245 +vn -0.9520 -0.1512 0.2662 +vn -0.8566 -0.4152 0.3062 +vn -0.6313 -0.6509 0.4216 +vn -0.8760 -0.3281 0.3534 +vn -0.5322 -0.6904 0.4900 +vn -0.7706 -0.5453 0.3299 +vn -0.6408 -0.6194 0.4535 +vn -0.7650 -0.4619 0.4489 +vn -0.8453 -0.2122 0.4904 +vn -0.7266 -0.4418 0.5262 +vn -0.8307 -0.2432 0.5008 +vn -0.5270 -0.4670 0.7101 +vn -0.7052 -0.2546 0.6618 +vn -0.6462 -0.3169 0.6942 +vn -0.7209 -0.0866 0.6876 +vn 0.0789 -0.9309 0.3565 +vn 0.0001 -0.9064 0.4224 +vn -0.0002 -0.8286 0.5598 +vn 0.1513 -0.8712 0.4670 +vn 0.1424 -0.8201 0.5543 +vn 0.5082 -0.7865 0.3508 +vn 0.6220 -0.7194 0.3091 +vn 0.2775 -0.8082 0.5194 +vn 0.4352 -0.7549 0.4906 +vn 0.8423 -0.4625 0.2768 +vn 0.7442 -0.5854 0.3216 +vn 0.6082 -0.6791 0.4109 +vn 0.7408 -0.5540 0.3798 +vn 0.3062 -0.7458 0.5916 +vn 0.9009 -0.1154 0.4185 +vn 0.4292 -0.6233 0.6537 +vn 0.5092 -0.6165 0.6006 +vn 0.6556 -0.4979 0.5677 +vn 0.8136 -0.2644 0.5178 +vn 0.5116 -0.4879 0.7072 +vn 0.8049 -0.1790 0.5658 +vn 0.7140 -0.3329 0.6160 +vn 0.7159 -0.3374 0.6113 +vn 0.5803 -0.0024 0.8144 +vn 0.5826 -0.0017 0.8128 +vn 0.5848 0.0115 0.8111 +vn 0.0063 0.9989 0.0454 +vn 0.0145 0.9989 0.0439 +vn 0.0071 0.9990 0.0449 +vn 0.0075 0.9990 0.0451 +vn 0.0138 0.9989 0.0443 +vn 0.1868 0.8932 0.4091 +vn 0.2172 0.6764 0.7038 +vn 0.2270 0.6873 0.6900 +vn 0.3882 0.3105 0.8677 +vn 0.2558 0.4195 0.8709 +vn 0.1822 0.3662 0.9125 +vn 0.9821 0.1846 0.0377 +vn 0.9549 0.2906 0.0610 +vn 0.9192 0.3921 0.0370 +vn 0.7980 0.5998 0.0583 +vn 0.8259 0.5618 0.0473 +vn 0.7175 0.6956 0.0373 +vn 0.5403 0.8401 0.0487 +vn 0.5515 0.8325 0.0531 +vn 0.3610 0.9320 0.0337 +vn 0.2382 0.9698 0.0523 +vn 0.1774 0.9833 0.0408 +vn 0.7408 0.5928 0.3160 +vn 0.7428 0.5918 0.3130 +vn 0.6596 0.6832 0.3134 +vn 0.6532 0.6619 0.3676 +vn 0.8384 0.5297 -0.1284 +vn 0.5175 0.5588 0.6481 +vn 0.4489 0.5508 0.7036 +vn 0.3500 0.4320 0.8312 +vn 0.3092 0.4351 0.8457 +vn -0.0000 0.3959 0.9183 +vn 0.0003 0.4100 0.9121 +vn -0.0321 0.3907 0.9200 +vn -0.0001 0.3884 0.9215 +vn -0.0001 0.3915 0.9202 +vn -0.0000 0.3984 0.9172 +vn -0.1813 0.9831 0.0244 +vn -0.3568 0.9334 0.0380 +vn -0.4351 0.8981 0.0641 +vn -0.5523 0.8328 0.0373 +vn -0.7344 0.6769 0.0491 +vn -0.7442 0.6658 0.0538 +vn -0.8575 0.5130 0.0397 +vn -0.8926 0.4488 0.0443 +vn -0.9294 0.3636 0.0633 +vn -0.9449 0.3232 0.0527 +vn -0.9919 0.1217 0.0360 +vn -0.7490 0.6033 0.2739 +vn -0.6147 0.6228 0.4840 +vn -0.5190 0.5651 0.6413 +vn -0.3125 0.7648 0.5634 +vn -0.3277 0.4730 0.8179 +vn -0.3986 0.4861 0.7777 +vn -0.2933 0.3222 0.9001 +vn -0.0048 0.9990 0.0437 +vn -0.0103 0.9989 0.0453 +vn -0.0126 0.9990 0.0439 +vn -0.0116 0.9989 0.0454 +vn -0.0091 0.9989 0.0470 +vn -0.1056 0.9112 0.3983 +vn -0.2118 0.7165 0.6646 +vn -0.1934 0.6963 0.6912 +vn -0.3384 0.3160 0.8863 +vn -0.2090 0.4481 0.8692 +vn -0.5991 0.0013 0.8006 +vn -0.5740 -0.0024 0.8189 +vn -0.5800 -0.0005 0.8146 +vn -0.1003 -0.6448 0.7577 +vn -0.1722 -0.5706 0.8029 +vn -0.1838 -0.5513 0.8138 +vn -0.2740 -0.4700 0.8391 +vn -0.2501 -0.4839 0.8386 +vn -0.3670 -0.3672 0.8547 +vn -0.3832 -0.3298 0.8628 +vn -0.5588 -0.0680 0.8265 +vn -0.4322 -0.2639 0.8623 +vn -0.5132 -0.1462 0.8457 +vn -0.4573 -0.2042 0.8656 +vn -0.0001 -0.6994 0.7147 +vn -0.0000 -0.7030 0.7112 +vn 0.0425 -0.6850 0.7273 +vn 0.1366 -0.5923 0.7941 +vn 0.1729 -0.5693 0.8038 +vn 0.2301 -0.5053 0.8317 +vn 0.2437 -0.4969 0.8329 +vn 0.3570 -0.3693 0.8580 +vn 0.3672 -0.3428 0.8647 +vn 0.5549 -0.0816 0.8279 +vn 0.4620 -0.2255 0.8577 +vn 0.4719 -0.1930 0.8603 +vn 0.3669 0.0005 0.9303 +vn 0.2874 -0.0014 0.9578 +vn 0.1819 0.0021 0.9833 +vn 0.0127 0.9412 0.3377 +vn -0.0018 0.9023 0.4310 +vn 0.0058 0.6131 0.7899 +vn 0.0177 0.7079 0.7061 +vn 0.0136 0.4191 0.9078 +vn 0.0068 0.3682 0.9297 +vn 0.3717 0.8617 0.3454 +vn 0.1543 0.9667 0.2041 +vn 0.5029 0.7651 0.4022 +vn 0.1991 0.8279 0.5244 +vn 0.3525 0.8502 0.3911 +vn 0.4944 0.5426 0.6791 +vn 0.2141 0.8448 0.4904 +vn 0.3352 0.5614 0.7566 +vn 0.2667 0.3009 0.9156 +vn 0.2708 0.4659 0.8424 +vn -0.1266 0.5535 0.8232 +vn 0.1694 0.4467 0.8785 +vn 0.1924 0.2517 0.9485 +vn 0.1054 0.3443 0.9329 +vn -0.0000 0.2914 0.9566 +vn -0.0001 0.2637 0.9646 +vn -0.0001 0.1708 0.9853 +vn -0.0000 0.1333 0.9911 +vn -0.3362 0.8527 0.3999 +vn -0.5005 0.7346 0.4580 +vn -0.1667 0.9153 0.3666 +vn -0.1182 0.8809 0.4584 +vn -0.3567 0.8120 0.4620 +vn -0.4773 0.8134 0.3324 +vn -0.1621 0.7084 0.6869 +vn -0.3961 0.6763 0.6211 +vn -0.1683 0.6081 0.7758 +vn -0.3603 0.5527 0.7515 +vn -0.2779 0.4683 0.8387 +vn -0.0249 0.3512 0.9360 +vn -0.1681 0.3122 0.9350 +vn -0.2353 0.3813 0.8940 +vn -0.0006 0.9129 0.4081 +vn -0.0087 0.9313 0.3641 +vn -0.0062 0.7427 0.6697 +vn 0.0017 0.7060 0.7082 +vn -0.0152 0.3894 0.9210 +vn -0.0155 0.3919 0.9199 +vn -0.3492 0.0006 0.9371 +vn -0.3171 -0.0009 0.9484 +vn -0.0929 -0.4132 0.9059 +vn -0.1047 -0.4191 0.9019 +vn -0.1659 -0.2121 0.9631 +vn -0.2845 -0.0939 0.9541 +vn -0.1849 -0.2333 0.9547 +vn -0.0993 -0.1995 0.9748 +vn -0.0964 -0.0609 0.9935 +vn -0.0000 -0.5214 0.8533 +vn 0.0001 -0.5019 0.8649 +vn -0.0001 -0.2608 0.9654 +vn 0.0001 -0.1853 0.9827 +vn 0.0651 -0.4734 0.8784 +vn 0.2554 -0.2567 0.9321 +vn 0.1263 -0.2703 0.9545 +vn 0.1259 -0.2300 0.9650 +vn 0.0558 -0.2895 0.9555 +vn 0.1853 -0.0787 0.9795 +vn 0.2454 -0.0827 0.9659 +vn -0.0051 0.0017 1.0000 +vn -0.0070 0.0014 1.0000 +vn 0.0132 -0.0017 0.9999 +vn -0.0001 0.0004 1.0000 +vn -0.0000 -0.0002 1.0000 +vn 0.0053 -0.0013 1.0000 +vn -0.0049 -0.0007 1.0000 +vn 0.0018 0.0003 1.0000 +vn 0.0020 0.0003 1.0000 +vn 0.0026 0.0005 1.0000 +vn 0.0045 -0.0019 1.0000 +vn 0.5294 -0.8483 0.0097 +vn 0.5858 -0.8102 0.0217 +vn 0.8960 -0.4437 0.0175 +vn 0.9060 -0.4230 0.0138 +vn -0.0003 -1.0000 0.0027 +vn 0.0002 -0.9998 0.0217 +vn -0.8341 -0.5511 0.0258 +vn -0.7330 -0.6802 -0.0039 +vn -0.3997 -0.9160 0.0356 +vn 0.0001 0.9987 0.0509 +vn 0.0001 0.9986 0.0530 +vn 0.9998 -0.0025 0.0193 +vn 0.9998 -0.0016 0.0174 +vn -0.9998 -0.0054 0.0172 +vn -0.9999 -0.0038 0.0136 +vn 0.9981 0.0443 0.0433 +vn 0.9266 0.3739 0.0403 +vn 0.8946 0.4443 0.0477 +vn 0.7294 0.6829 0.0399 +vn 0.6230 0.7804 0.0527 +vn 0.4271 0.9036 0.0313 +vn 0.9990 0.0084 0.0429 +vn 0.9987 0.0247 0.0454 +vn -0.9985 0.0312 0.0446 +vn -0.9987 0.0208 0.0460 +vn -0.9575 0.2859 0.0390 +vn -0.8879 0.4574 0.0493 +vn -0.7894 0.6128 0.0370 +vn -0.6029 0.7959 0.0556 +vn -0.3997 0.9162 0.0287 +vn 0.9557 0.2908 0.0463 +vn 0.9467 0.3195 0.0405 +vn 0.7389 0.6723 0.0459 +vn 0.7207 0.6921 0.0396 +vn 0.3429 0.9382 0.0461 +vn 0.3264 0.9443 0.0424 +vn 0.0059 0.9989 0.0471 +vn 0.0113 0.9990 0.0438 +vn 0.0174 0.9989 0.0425 +vn -0.0000 0.9990 0.0436 +vn 0.9994 -0.0030 0.0348 +vn 0.9991 -0.0048 0.0415 +vn 0.4866 -0.8723 0.0475 +vn 0.5320 -0.8466 0.0157 +vn 0.8816 -0.4692 0.0517 +vn 0.9058 -0.4230 0.0225 +vn 0.0003 -0.9997 0.0252 +vn 0.0001 -0.9994 0.0355 +vn -0.9456 -0.3247 0.0213 +vn -0.9170 -0.3953 0.0533 +vn -0.6959 -0.7178 0.0211 +vn -0.6653 -0.7455 0.0406 +vn -0.3286 -0.9440 0.0288 +vn -0.3109 -0.9497 0.0366 +vn -0.9993 -0.0021 0.0384 +vn -0.9994 -0.0030 0.0348 +vn -0.0051 0.9990 0.0438 +vn -0.0190 0.9991 0.0385 +vn -0.0000 0.9988 0.0496 +vn -0.0320 0.9985 0.0442 +vn -0.2949 0.9540 0.0534 +vn -0.4497 0.8926 0.0326 +vn -0.6240 0.7796 0.0541 +vn -0.7382 0.6737 0.0353 +vn -0.9132 0.4050 0.0460 +vn -0.9104 0.4113 0.0443 +vn -0.9976 0.0496 0.0477 +vn 0.0016 0.0432 -0.9991 +vn -0.0043 0.0983 -0.9951 +vn 0.0002 0.0149 -0.9999 +vn -0.0001 0.3629 -0.9318 +vn 0.0001 0.3932 -0.9195 +vn -0.0001 0.5571 -0.8304 +vn 0.0002 0.6153 -0.7883 +vn -0.0002 0.7706 -0.6373 +vn 0.0002 0.8165 -0.5773 +vn -0.0000 0.9494 -0.3141 +vn -0.0001 0.9550 -0.2965 +vn -0.0000 -0.0012 -1.0000 +vn 0.0002 -0.0060 -1.0000 +vt 0.647387 0.000318 +vt 0.415797 0.008175 +vt 0.276695 0.005359 +vt 0.285054 0.000259 +vt 0.602205 0.000000 +vt 0.516133 0.004234 +vt 0.566859 0.066420 +vt 0.715385 0.000329 +vt 0.720418 0.002497 +vt 0.658375 0.004234 +vt 0.280302 0.001981 +vt 0.297002 0.008587 +vt 0.292118 0.009079 +vt 0.287043 0.012060 +vt 0.709218 0.009491 +vt 0.705512 0.008587 +vt 0.712833 0.011885 +vt 0.723667 0.005809 +vt 0.300707 0.009491 +vt 0.307096 0.015725 +vt 0.304323 0.011885 +vt 0.307983 0.020321 +vt 0.415637 0.054457 +vt 0.501257 0.008587 +vt 0.496373 0.009079 +vt 0.492835 0.010655 +vt 0.489921 0.013657 +vt 0.487827 0.019476 +vt 0.504963 0.009491 +vt 0.508578 0.011885 +vt 0.512238 0.020321 +vt 0.511352 0.015725 +vt 0.700629 0.009079 +vt 0.695919 0.011667 +vt 0.693027 0.015452 +vt 0.692012 0.020006 +vt 0.715607 0.015725 +vt 0.284270 0.015940 +vt 0.283501 0.020007 +vt 0.257290 0.047150 +vt 0.742240 0.046524 +vt 0.716493 0.020321 +vt 0.284393 0.024597 +vt 0.306405 0.025780 +vt 0.488648 0.024597 +vt 0.510660 0.025780 +vt 0.692904 0.024597 +vt 0.714915 0.025780 +vt 0.286761 0.028093 +vt 0.491016 0.028093 +vt 0.695271 0.028093 +vt 0.302347 0.029927 +vt 0.506602 0.029927 +vt 0.710858 0.029927 +vt 0.289787 0.030369 +vt 0.494042 0.030369 +vt 0.698298 0.030369 +vt 0.293503 0.031599 +vt 0.297834 0.031629 +vt 0.497759 0.031599 +vt 0.502089 0.031629 +vt 0.702014 0.031599 +vt 0.706345 0.031629 +vt 0.745073 0.049619 +vt 0.252692 0.050921 +vt 0.750156 0.051949 +vt 0.248224 0.052326 +vt 0.010119 0.055526 +vt 0.017556 0.052860 +vt 0.989540 0.055275 +vt 0.982878 0.052941 +vt 0.994515 0.059212 +vt 0.004135 0.060890 +vt 0.998059 0.064283 +vt 0.000526 0.068811 +vt 0.999708 0.069700 +vt 0.999505 0.983407 +vt 0.000292 0.982720 +vt 0.017511 0.999531 +vt 0.001941 0.988136 +vt 0.996440 0.990831 +vt 0.005485 0.993208 +vt 0.990601 0.996377 +vt 0.010459 0.997145 +vt 0.982620 0.999538 +vt 0.647395 0.000319 +vt 0.647401 0.000319 +vt 0.647400 0.000319 +vt 0.647406 0.000319 +vt 0.647407 0.000319 +vt 0.647407 0.000318 +vt 0.647408 0.000320 +vt 0.647414 0.000320 +vt 0.647415 0.000320 +vt 0.647415 0.000346 +vt 0.647414 0.000346 +vt 0.647387 0.000346 +vt 0.647387 0.000320 +vt 0.647394 0.000320 +vt 0.647395 0.000318 +vt 0.647394 0.000318 +vt 0.647404 0.000318 +s 0 +usemtl Material.001 +f 1/1/1 541/1/1 149/1/1 +f 412/1/2 541/1/2 1/1/2 +f 9/1/3 48/1/3 47/1/3 +f 6/1/4 9/1/4 47/1/4 +f 8/1/5 50/1/5 48/1/5 +f 9/1/6 8/1/6 48/1/6 +f 2/1/7 26/1/7 69/1/7 +f 71/1/8 2/1/8 69/1/8 +f 3/1/9 2/1/9 71/1/9 +f 72/1/10 3/1/10 71/1/10 +f 152/1/11 447/1/11 150/1/11 +f 448/1/12 447/1/12 152/1/12 +f 154/1/13 448/1/13 152/1/13 +f 154/1/14 4/1/14 448/1/14 +f 4/1/15 5/1/15 450/1/15 +f 154/1/16 5/1/16 4/1/16 +f 155/1/17 5/1/17 154/1/17 +f 528/1/18 5/1/18 155/1/18 +f 158/1/19 528/1/19 155/1/19 +f 159/1/20 528/1/20 158/1/20 +f 161/1/21 528/1/21 159/1/21 +f 322/1/22 528/1/22 161/1/22 +f 321/1/23 322/1/23 161/1/23 +f 7/1/24 9/1/24 6/1/24 +f 7/1/25 8/1/25 9/1/25 +f 165/1/26 10/1/26 7/1/26 +f 10/1/27 8/1/27 7/1/27 +f 165/1/28 13/1/28 10/1/28 +f 10/1/29 13/1/29 8/1/29 +f 11/1/30 12/1/30 165/1/30 +f 12/1/31 13/1/31 165/1/31 +f 14/1/32 12/1/32 11/1/32 +f 16/1/33 13/1/33 12/1/33 +f 16/1/34 12/1/34 14/1/34 +f 18/1/35 13/1/35 16/1/35 +f 15/1/36 16/1/36 14/1/36 +f 17/1/37 16/1/37 15/1/37 +f 17/1/38 18/1/38 16/1/38 +f 19/1/39 20/1/39 17/1/39 +f 20/1/40 18/1/40 17/1/40 +f 21/1/41 22/1/41 19/1/41 +f 22/1/42 20/1/42 19/1/42 +f 25/1/43 22/1/43 21/1/43 +f 166/1/44 25/1/44 21/1/44 +f 25/1/45 20/1/45 22/1/45 +f 23/1/46 24/1/46 166/1/46 +f 24/1/47 25/1/47 166/1/47 +f 27/1/48 26/1/48 2/1/48 +f 27/1/49 28/1/49 26/1/49 +f 27/1/50 29/1/50 28/1/50 +f 3/1/51 27/1/51 2/1/51 +f 3/1/52 29/1/52 27/1/52 +f 3/1/53 31/1/53 29/1/53 +f 29/1/54 30/1/54 28/1/54 +f 31/1/55 30/1/55 29/1/55 +f 142/1/56 31/1/56 3/1/56 +f 33/1/57 32/1/57 30/1/57 +f 31/1/58 33/1/58 30/1/58 +f 142/1/59 33/1/59 31/1/59 +f 36/1/60 35/1/60 32/1/60 +f 33/1/61 36/1/61 32/1/61 +f 34/1/62 36/1/62 33/1/62 +f 142/1/63 34/1/63 33/1/63 +f 144/1/64 34/1/64 142/1/64 +f 36/1/65 39/1/65 35/1/65 +f 37/1/66 39/1/66 36/1/66 +f 34/1/67 37/1/67 36/1/67 +f 144/1/68 37/1/68 34/1/68 +f 38/1/69 39/1/69 37/1/69 +f 144/1/70 38/1/70 37/1/70 +f 38/1/71 40/1/71 39/1/71 +f 144/1/72 41/1/72 38/1/72 +f 43/1/73 41/1/73 144/1/73 +f 41/1/74 40/1/74 38/1/74 +f 41/1/75 42/1/75 40/1/75 +f 43/1/76 42/1/76 41/1/76 +f 43/1/77 167/1/77 42/1/77 +f 169/1/78 167/1/78 43/1/78 +f 168/1/79 169/1/79 43/1/79 +f 437/1/80 240/1/80 237/1/80 +f 438/1/81 240/1/81 437/1/81 +f 438/1/82 242/1/82 240/1/82 +f 522/1/83 242/1/83 438/1/83 +f 44/1/84 242/1/84 522/1/84 +f 44/1/85 245/1/85 242/1/85 +f 44/1/86 246/1/86 245/1/86 +f 44/1/87 248/1/87 246/1/87 +f 46/1/88 248/1/88 44/1/88 +f 46/1/89 45/1/89 248/1/89 +f 46/1/90 282/1/90 45/1/90 +f 69/1/91 6/1/91 47/1/91 +f 69/1/92 26/1/92 6/1/92 +f 48/1/93 49/1/93 47/1/93 +f 51/1/94 52/1/94 49/1/94 +f 51/1/95 49/1/95 48/1/95 +f 50/1/96 51/1/96 48/1/96 +f 55/1/97 52/1/97 51/1/97 +f 55/1/98 51/1/98 50/1/98 +f 54/1/99 53/1/99 52/1/99 +f 55/1/100 54/1/100 52/1/100 +f 50/1/101 90/1/101 55/1/101 +f 90/1/102 54/1/102 55/1/102 +f 57/1/103 56/1/103 53/1/103 +f 54/1/104 57/1/104 53/1/104 +f 90/1/105 57/1/105 54/1/105 +f 57/1/106 58/1/106 56/1/106 +f 57/1/107 59/1/107 58/1/107 +f 90/1/108 59/1/108 57/1/108 +f 91/1/109 59/1/109 90/1/109 +f 59/1/110 60/1/110 58/1/110 +f 62/1/111 61/1/111 60/1/111 +f 59/1/112 62/1/112 60/1/112 +f 65/1/113 62/1/113 59/1/113 +f 91/1/114 65/1/114 59/1/114 +f 62/1/115 63/1/115 61/1/115 +f 64/1/116 66/1/116 63/1/116 +f 62/1/117 64/1/117 63/1/117 +f 65/1/118 64/1/118 62/1/118 +f 68/1/119 64/1/119 65/1/119 +f 64/1/120 67/1/120 66/1/120 +f 253/1/121 67/1/121 64/1/121 +f 68/1/122 253/1/122 64/1/122 +f 73/1/123 70/1/123 69/1/123 +f 70/1/124 71/1/124 69/1/124 +f 73/1/125 74/1/125 70/1/125 +f 70/1/126 72/1/126 71/1/126 +f 74/1/127 72/1/127 70/1/127 +f 74/1/128 76/1/128 72/1/128 +f 254/1/129 74/1/129 73/1/129 +f 75/1/130 74/1/130 254/1/130 +f 75/1/131 78/1/131 74/1/131 +f 78/1/132 76/1/132 74/1/132 +f 77/1/133 75/1/133 254/1/133 +f 77/1/134 79/1/134 75/1/134 +f 79/1/135 78/1/135 75/1/135 +f 80/1/136 78/1/136 79/1/136 +f 255/1/137 79/1/137 77/1/137 +f 255/1/138 81/1/138 79/1/138 +f 81/1/139 80/1/139 79/1/139 +f 80/1/140 82/1/140 78/1/140 +f 81/1/141 82/1/141 80/1/141 +f 83/1/142 84/1/142 255/1/142 +f 84/1/143 81/1/143 255/1/143 +f 84/1/144 82/1/144 81/1/144 +f 85/1/145 84/1/145 83/1/145 +f 88/1/146 82/1/146 84/1/146 +f 85/1/147 88/1/147 84/1/147 +f 86/1/148 85/1/148 83/1/148 +f 87/1/149 85/1/149 86/1/149 +f 87/1/150 88/1/150 85/1/150 +f 256/1/151 87/1/151 86/1/151 +f 256/1/152 89/1/152 87/1/152 +f 89/1/153 88/1/153 87/1/153 +f 89/1/154 136/1/154 88/1/154 +f 257/1/155 89/1/155 256/1/155 +f 257/1/156 136/1/156 89/1/156 +f 119/1/157 102/1/157 50/1/157 +f 8/1/158 119/1/158 50/1/158 +f 13/1/159 119/1/159 8/1/159 +f 102/1/160 90/1/160 50/1/160 +f 123/1/161 119/1/161 13/1/161 +f 102/1/162 107/1/162 90/1/162 +f 18/1/163 123/1/163 13/1/163 +f 129/1/164 123/1/164 18/1/164 +f 111/1/165 91/1/165 90/1/165 +f 107/1/166 111/1/166 90/1/166 +f 20/1/167 129/1/167 18/1/167 +f 111/1/168 65/1/168 91/1/168 +f 130/1/169 129/1/169 20/1/169 +f 111/1/170 113/1/170 65/1/170 +f 113/1/171 68/1/171 65/1/171 +f 25/1/172 130/1/172 20/1/172 +f 93/1/173 130/1/173 25/1/173 +f 92/1/174 68/1/174 113/1/174 +f 92/1/175 237/1/175 68/1/175 +f 437/1/176 237/1/176 92/1/176 +f 25/1/177 447/1/177 93/1/177 +f 150/1/178 447/1/178 25/1/178 +f 435/1/179 214/1/179 212/1/179 +f 217/1/180 435/1/180 293/1/180 +f 217/1/181 214/1/181 435/1/181 +f 223/1/182 292/1/182 98/1/182 +f 223/1/183 225/1/183 292/1/183 +f 225/1/184 94/1/184 292/1/184 +f 225/1/185 216/1/185 94/1/185 +f 216/1/186 95/1/186 94/1/186 +f 216/1/187 218/1/187 95/1/187 +f 218/1/188 293/1/188 95/1/188 +f 218/1/189 217/1/189 293/1/189 +f 233/1/190 224/1/190 96/1/190 +f 224/1/191 97/1/191 96/1/191 +f 224/1/192 222/1/192 97/1/192 +f 222/1/193 299/1/193 97/1/193 +f 222/1/194 223/1/194 299/1/194 +f 223/1/195 98/1/195 299/1/195 +f 305/1/196 185/1/196 96/1/196 +f 185/1/197 233/1/197 96/1/197 +f 186/1/198 185/1/198 305/1/198 +f 307/1/199 186/1/199 305/1/199 +f 187/1/200 186/1/200 307/1/200 +f 306/1/201 189/1/201 307/1/201 +f 189/1/202 187/1/202 307/1/202 +f 316/1/203 189/1/203 306/1/203 +f 197/1/204 189/1/204 316/1/204 +f 99/1/205 197/1/205 316/1/205 +f 198/1/206 197/1/206 99/1/206 +f 313/1/207 198/1/207 99/1/207 +f 196/1/208 198/1/208 313/1/208 +f 319/1/209 196/1/209 313/1/209 +f 202/1/210 196/1/210 319/1/210 +f 205/1/211 100/1/211 454/1/211 +f 100/1/212 205/1/212 319/1/212 +f 205/1/213 202/1/213 319/1/213 +f 103/1/214 102/1/214 101/1/214 +f 105/1/215 103/1/215 101/1/215 +f 327/1/216 105/1/216 101/1/216 +f 103/1/217 107/1/217 102/1/217 +f 105/1/218 104/1/218 103/1/218 +f 328/1/219 104/1/219 105/1/219 +f 104/1/220 107/1/220 103/1/220 +f 108/1/221 107/1/221 104/1/221 +f 328/1/222 108/1/222 104/1/222 +f 106/1/223 108/1/223 328/1/223 +f 109/1/224 107/1/224 108/1/224 +f 106/1/225 109/1/225 108/1/225 +f 109/1/226 111/1/226 107/1/226 +f 110/1/227 109/1/227 106/1/227 +f 109/1/228 112/1/228 111/1/228 +f 110/1/229 112/1/229 109/1/229 +f 330/1/230 112/1/230 110/1/230 +f 112/1/231 113/1/231 111/1/231 +f 114/1/232 113/1/232 112/1/232 +f 330/1/233 114/1/233 112/1/233 +f 331/1/234 114/1/234 330/1/234 +f 114/1/235 92/1/235 113/1/235 +f 115/1/236 92/1/236 114/1/236 +f 331/1/237 115/1/237 114/1/237 +f 115/1/238 283/1/238 92/1/238 +f 441/1/239 283/1/239 115/1/239 +f 119/1/240 101/1/240 102/1/240 +f 116/1/241 101/1/241 119/1/241 +f 117/1/242 101/1/242 116/1/242 +f 117/1/243 327/1/243 101/1/243 +f 118/1/244 327/1/244 117/1/244 +f 119/1/245 121/1/245 116/1/245 +f 121/1/246 120/1/246 116/1/246 +f 120/1/247 117/1/247 116/1/247 +f 120/1/248 118/1/248 117/1/248 +f 123/1/249 121/1/249 119/1/249 +f 121/1/250 122/1/250 120/1/250 +f 123/1/251 124/1/251 121/1/251 +f 124/1/252 122/1/252 121/1/252 +f 129/1/253 126/1/253 123/1/253 +f 126/1/254 124/1/254 123/1/254 +f 126/1/255 125/1/255 124/1/255 +f 127/1/256 126/1/256 129/1/256 +f 128/1/257 125/1/257 126/1/257 +f 127/1/258 128/1/258 126/1/258 +f 130/1/259 127/1/259 129/1/259 +f 130/1/260 131/1/260 127/1/260 +f 131/1/261 128/1/261 127/1/261 +f 133/1/262 132/1/262 130/1/262 +f 132/1/263 131/1/263 130/1/263 +f 133/1/264 134/1/264 132/1/264 +f 93/1/265 133/1/265 130/1/265 +f 284/1/266 134/1/266 133/1/266 +f 93/1/267 284/1/267 133/1/267 +f 285/1/268 284/1/268 93/1/268 +f 540/1/269 141/1/269 272/1/269 +f 520/1/270 540/1/270 272/1/270 +f 136/1/271 135/1/271 353/1/271 +f 136/1/272 338/1/272 135/1/272 +f 258/1/273 338/1/273 136/1/273 +f 258/1/274 340/1/274 338/1/274 +f 137/1/275 340/1/275 258/1/275 +f 261/1/276 340/1/276 137/1/276 +f 261/1/277 343/1/277 340/1/277 +f 262/1/278 343/1/278 261/1/278 +f 264/1/279 344/1/279 262/1/279 +f 344/1/280 343/1/280 262/1/280 +f 346/1/281 344/1/281 264/1/281 +f 138/1/282 346/1/282 264/1/282 +f 138/1/283 348/1/283 346/1/283 +f 139/1/284 348/1/284 138/1/284 +f 350/1/285 348/1/285 139/1/285 +f 268/1/286 350/1/286 139/1/286 +f 140/1/287 350/1/287 268/1/287 +f 141/1/288 140/1/288 268/1/288 +f 272/1/289 141/1/289 268/1/289 +f 356/1/290 3/1/290 72/1/290 +f 356/1/291 376/1/291 3/1/291 +f 76/1/292 356/1/292 72/1/292 +f 363/1/293 356/1/293 76/1/293 +f 376/1/294 142/1/294 3/1/294 +f 78/1/295 363/1/295 76/1/295 +f 376/1/296 380/1/296 142/1/296 +f 143/1/297 363/1/297 78/1/297 +f 82/1/298 143/1/298 78/1/298 +f 380/1/299 381/1/299 142/1/299 +f 381/1/300 144/1/300 142/1/300 +f 372/1/301 143/1/301 82/1/301 +f 387/1/302 144/1/302 381/1/302 +f 88/1/303 372/1/303 82/1/303 +f 353/1/304 372/1/304 88/1/304 +f 387/1/305 43/1/305 144/1/305 +f 136/1/306 353/1/306 88/1/306 +f 389/1/307 43/1/307 387/1/307 +f 389/1/308 168/1/308 43/1/308 +f 170/1/309 168/1/309 389/1/309 +f 395/1/310 170/1/310 389/1/310 +f 395/1/311 145/1/311 170/1/311 +f 396/1/312 145/1/312 395/1/312 +f 396/1/313 172/1/313 145/1/313 +f 146/1/314 172/1/314 396/1/314 +f 146/1/315 147/1/315 172/1/315 +f 399/1/316 147/1/316 146/1/316 +f 399/1/317 175/1/317 147/1/317 +f 403/1/318 175/1/318 399/1/318 +f 179/1/319 175/1/319 403/1/319 +f 404/1/320 179/1/320 403/1/320 +f 148/1/321 179/1/321 404/1/321 +f 406/1/322 148/1/322 404/1/322 +f 182/1/323 148/1/323 406/1/323 +f 407/1/324 182/1/324 406/1/324 +f 149/1/325 182/1/325 407/1/325 +f 1/1/326 149/1/326 407/1/326 +f 151/1/327 152/1/327 150/1/327 +f 413/1/328 153/1/328 151/1/328 +f 151/1/329 153/1/329 152/1/329 +f 153/1/330 154/1/330 152/1/330 +f 413/1/331 160/1/331 153/1/331 +f 153/1/332 157/1/332 154/1/332 +f 160/1/333 156/1/333 153/1/333 +f 156/1/334 157/1/334 153/1/334 +f 157/1/335 155/1/335 154/1/335 +f 158/1/336 155/1/336 157/1/336 +f 157/1/337 163/1/337 158/1/337 +f 160/1/338 162/1/338 156/1/338 +f 156/1/339 163/1/339 157/1/339 +f 162/1/340 163/1/340 156/1/340 +f 158/1/341 164/1/341 159/1/341 +f 164/1/342 161/1/342 159/1/342 +f 163/1/343 164/1/343 158/1/343 +f 162/1/344 164/1/344 163/1/344 +f 164/1/345 321/1/345 161/1/345 +f 413/1/346 24/1/346 23/1/346 +f 413/1/347 151/1/347 24/1/347 +f 151/1/348 150/1/348 24/1/348 +f 150/1/349 25/1/349 24/1/349 +f 26/1/350 7/1/350 6/1/350 +f 28/1/351 165/1/351 7/1/351 +f 26/1/352 28/1/352 7/1/352 +f 28/1/353 11/1/353 165/1/353 +f 30/1/354 14/1/354 11/1/354 +f 28/1/355 30/1/355 11/1/355 +f 32/1/356 15/1/356 14/1/356 +f 30/1/357 32/1/357 14/1/357 +f 35/1/358 17/1/358 15/1/358 +f 32/1/359 35/1/359 15/1/359 +f 35/1/360 19/1/360 17/1/360 +f 35/1/361 39/1/361 19/1/361 +f 39/1/362 21/1/362 19/1/362 +f 40/1/363 21/1/363 39/1/363 +f 40/1/364 166/1/364 21/1/364 +f 42/1/365 166/1/365 40/1/365 +f 42/1/366 23/1/366 166/1/366 +f 167/1/367 23/1/367 42/1/367 +f 170/1/368 169/1/368 168/1/368 +f 169/1/369 171/1/369 167/1/369 +f 170/1/370 171/1/370 169/1/370 +f 171/1/371 173/1/371 167/1/371 +f 145/1/372 171/1/372 170/1/372 +f 145/1/373 172/1/373 171/1/373 +f 172/1/374 173/1/374 171/1/374 +f 147/1/375 173/1/375 172/1/375 +f 147/1/376 174/1/376 173/1/376 +f 147/1/377 177/1/377 174/1/377 +f 175/1/378 177/1/378 147/1/378 +f 177/1/379 176/1/379 174/1/379 +f 179/1/380 177/1/380 175/1/380 +f 177/1/381 178/1/381 176/1/381 +f 179/1/382 178/1/382 177/1/382 +f 179/1/383 148/1/383 178/1/383 +f 180/1/384 176/1/384 178/1/384 +f 148/1/385 180/1/385 178/1/385 +f 180/1/386 181/1/386 176/1/386 +f 148/1/387 182/1/387 180/1/387 +f 183/1/388 181/1/388 180/1/388 +f 182/1/389 183/1/389 180/1/389 +f 149/1/390 183/1/390 182/1/390 +f 183/1/391 184/1/391 181/1/391 +f 541/1/392 184/1/392 183/1/392 +f 149/1/393 541/1/393 183/1/393 +f 186/1/394 188/1/394 185/1/394 +f 187/1/395 188/1/395 186/1/395 +f 188/1/396 191/1/396 185/1/396 +f 189/1/397 190/1/397 187/1/397 +f 200/1/398 189/1/398 197/1/398 +f 187/1/399 190/1/399 188/1/399 +f 200/1/400 193/1/400 189/1/400 +f 193/1/401 190/1/401 189/1/401 +f 188/1/402 192/1/402 191/1/402 +f 195/1/403 192/1/403 188/1/403 +f 190/1/404 195/1/404 188/1/404 +f 192/1/405 194/1/405 191/1/405 +f 193/1/406 195/1/406 190/1/406 +f 200/1/407 195/1/407 193/1/407 +f 195/1/408 194/1/408 192/1/408 +f 198/1/409 200/1/409 197/1/409 +f 196/1/410 201/1/410 198/1/410 +f 199/1/411 201/1/411 196/1/411 +f 202/1/412 199/1/412 196/1/412 +f 203/1/413 199/1/413 202/1/413 +f 198/1/414 201/1/414 200/1/414 +f 200/1/415 201/1/415 195/1/415 +f 203/1/416 201/1/416 199/1/416 +f 204/1/417 202/1/417 205/1/417 +f 204/1/418 203/1/418 202/1/418 +f 206/1/419 205/1/419 210/1/419 +f 205/1/420 458/1/420 210/1/420 +f 205/1/421 454/1/421 458/1/421 +f 206/1/422 204/1/422 205/1/422 +f 320/1/423 208/1/423 207/1/423 +f 208/1/423 325/1/423 207/1/423 +f 325/1/424 324/1/424 207/1/424 +f 208/1/423 415/1/423 325/1/423 +f 415/1/423 209/1/423 325/1/423 +f 415/1/423 210/1/423 209/1/423 +f 418/1/423 206/1/423 210/1/423 +f 415/1/423 416/1/423 210/1/423 +f 417/1/423 418/1/423 210/1/423 +f 416/1/423 417/1/423 210/1/423 +f 432/1/425 213/1/425 211/1/425 +f 212/1/426 213/1/426 432/1/426 +f 214/1/427 213/1/427 212/1/427 +f 215/1/428 213/1/428 214/1/428 +f 217/1/429 215/1/429 214/1/429 +f 219/1/430 215/1/430 217/1/430 +f 420/1/431 215/1/431 219/1/431 +f 219/1/432 217/1/432 218/1/432 +f 225/1/433 221/1/433 216/1/433 +f 221/1/434 218/1/434 216/1/434 +f 220/1/435 221/1/435 225/1/435 +f 221/1/436 219/1/436 218/1/436 +f 221/1/437 420/1/437 219/1/437 +f 230/1/438 221/1/438 220/1/438 +f 230/1/439 420/1/439 221/1/439 +f 233/1/440 226/1/440 224/1/440 +f 227/1/441 222/1/441 224/1/441 +f 227/1/442 228/1/442 222/1/442 +f 228/1/443 223/1/443 222/1/443 +f 228/1/444 225/1/444 223/1/444 +f 226/1/445 227/1/445 224/1/445 +f 220/1/446 225/1/446 228/1/446 +f 231/1/447 228/1/447 227/1/447 +f 229/1/448 227/1/448 226/1/448 +f 229/1/449 231/1/449 227/1/449 +f 230/1/450 220/1/450 228/1/450 +f 231/1/451 230/1/451 228/1/451 +f 229/1/452 232/1/452 231/1/452 +f 232/1/453 230/1/453 231/1/453 +f 185/1/454 226/1/454 233/1/454 +f 191/1/455 226/1/455 185/1/455 +f 191/1/456 229/1/456 226/1/456 +f 191/1/457 194/1/457 229/1/457 +f 194/1/458 232/1/458 229/1/458 +f 274/1/423 234/1/423 280/1/423 +f 235/1/423 422/1/423 274/1/423 +f 422/1/423 234/1/423 274/1/423 +f 425/1/423 235/1/423 274/1/423 +f 428/1/423 426/1/423 274/1/423 +f 426/1/423 425/1/423 274/1/423 +f 275/1/423 428/1/423 274/1/423 +f 211/1/423 428/1/423 275/1/423 +f 236/1/423 279/1/423 275/1/423 +f 279/1/423 211/1/423 275/1/423 +f 213/1/423 428/1/423 211/1/423 +f 240/1/459 238/1/459 237/1/459 +f 240/1/460 239/1/460 238/1/460 +f 241/1/461 239/1/461 240/1/461 +f 241/1/462 244/1/462 239/1/462 +f 244/1/463 243/1/463 239/1/463 +f 242/1/464 241/1/464 240/1/464 +f 245/1/465 241/1/465 242/1/465 +f 244/1/466 241/1/466 245/1/466 +f 249/1/467 243/1/467 244/1/467 +f 247/1/468 244/1/468 245/1/468 +f 246/1/469 247/1/469 245/1/469 +f 247/1/470 249/1/470 244/1/470 +f 249/1/471 252/1/471 243/1/471 +f 250/1/472 249/1/472 247/1/472 +f 248/1/473 247/1/473 246/1/473 +f 250/1/474 247/1/474 248/1/474 +f 45/1/475 250/1/475 248/1/475 +f 252/1/476 249/1/476 250/1/476 +f 45/1/477 251/1/477 250/1/477 +f 282/1/478 251/1/478 45/1/478 +f 251/1/479 252/1/479 250/1/479 +f 239/1/480 243/1/480 67/1/480 +f 253/1/481 239/1/481 67/1/481 +f 238/1/482 239/1/482 253/1/482 +f 68/1/483 238/1/483 253/1/483 +f 237/1/484 238/1/484 68/1/484 +f 49/1/485 73/1/485 47/1/485 +f 73/1/486 69/1/486 47/1/486 +f 52/1/487 73/1/487 49/1/487 +f 254/1/488 73/1/488 52/1/488 +f 53/1/489 254/1/489 52/1/489 +f 56/1/490 254/1/490 53/1/490 +f 77/1/491 254/1/491 56/1/491 +f 58/1/492 77/1/492 56/1/492 +f 255/1/493 77/1/493 58/1/493 +f 60/1/494 255/1/494 58/1/494 +f 83/1/495 255/1/495 60/1/495 +f 61/1/496 83/1/496 60/1/496 +f 86/1/497 83/1/497 61/1/497 +f 63/1/498 86/1/498 61/1/498 +f 66/1/499 86/1/499 63/1/499 +f 66/1/500 256/1/500 86/1/500 +f 67/1/501 256/1/501 66/1/501 +f 259/1/502 257/1/502 256/1/502 +f 259/1/503 258/1/503 257/1/503 +f 258/1/504 136/1/504 257/1/504 +f 259/1/505 137/1/505 258/1/505 +f 260/1/506 137/1/506 259/1/506 +f 260/1/507 261/1/507 137/1/507 +f 263/1/508 260/1/508 259/1/508 +f 263/1/509 262/1/509 260/1/509 +f 262/1/510 261/1/510 260/1/510 +f 263/1/511 265/1/511 262/1/511 +f 265/1/512 264/1/512 262/1/512 +f 138/1/513 264/1/513 265/1/513 +f 266/1/514 265/1/514 263/1/514 +f 266/1/515 139/1/515 265/1/515 +f 139/1/516 138/1/516 265/1/516 +f 267/1/517 268/1/517 266/1/517 +f 268/1/518 139/1/518 266/1/518 +f 270/1/519 267/1/519 266/1/519 +f 270/1/520 271/1/520 267/1/520 +f 271/1/521 272/1/521 267/1/521 +f 272/1/522 268/1/522 267/1/522 +f 269/1/523 271/1/523 270/1/523 +f 269/1/524 520/1/524 271/1/524 +f 520/1/525 272/1/525 271/1/525 +f 276/1/526 275/1/526 273/1/526 +f 275/1/527 274/1/527 273/1/527 +f 236/1/528 275/1/528 276/1/528 +f 277/1/529 236/1/529 276/1/529 +f 278/1/530 236/1/530 277/1/530 +f 279/1/531 236/1/531 278/1/531 +f 430/1/532 279/1/532 278/1/532 +f 211/1/533 279/1/533 430/1/533 +f 432/1/534 211/1/534 430/1/534 +f 251/1/535 280/1/535 252/1/535 +f 282/1/536 280/1/536 251/1/536 +f 46/1/537 281/1/537 282/1/537 +f 281/1/538 280/1/538 282/1/538 +f 273/1/539 274/1/539 281/1/539 +f 274/1/540 280/1/540 281/1/540 +f 436/1/541 283/1/541 441/1/541 +f 436/1/542 437/1/542 283/1/542 +f 437/1/543 92/1/543 283/1/543 +f 285/1/544 445/1/544 284/1/544 +f 446/1/545 445/1/545 285/1/545 +f 93/1/546 446/1/546 285/1/546 +f 447/1/547 446/1/547 93/1/547 +f 291/1/548 286/1/548 288/1/548 +f 291/1/549 435/1/549 286/1/549 +f 293/1/550 435/1/550 291/1/550 +f 297/1/551 289/1/551 287/1/551 +f 290/1/552 288/1/552 287/1/552 +f 298/1/553 289/1/553 297/1/553 +f 289/1/554 290/1/554 287/1/554 +f 95/1/555 288/1/555 290/1/555 +f 95/1/556 291/1/556 288/1/556 +f 98/1/557 289/1/557 298/1/557 +f 292/1/558 290/1/558 289/1/558 +f 98/1/559 292/1/559 289/1/559 +f 292/1/560 94/1/560 290/1/560 +f 94/1/561 95/1/561 290/1/561 +f 95/1/562 293/1/562 291/1/562 +f 300/1/563 295/1/563 294/1/563 +f 297/1/564 287/1/564 294/1/564 +f 295/1/565 296/1/565 294/1/565 +f 296/1/566 297/1/566 294/1/566 +f 295/1/567 97/1/567 296/1/567 +f 98/1/568 298/1/568 297/1/568 +f 300/1/569 97/1/569 295/1/569 +f 296/1/570 98/1/570 297/1/570 +f 97/1/571 299/1/571 296/1/571 +f 96/1/572 97/1/572 300/1/572 +f 299/1/573 98/1/573 296/1/573 +f 302/1/574 294/1/574 301/1/574 +f 302/1/575 300/1/575 294/1/575 +f 304/1/576 300/1/576 302/1/576 +f 304/1/577 96/1/577 300/1/577 +f 305/1/578 96/1/578 304/1/578 +f 301/1/579 303/1/579 302/1/579 +f 314/1/580 303/1/580 301/1/580 +f 309/1/581 314/1/581 301/1/581 +f 303/1/582 304/1/582 302/1/582 +f 310/1/583 314/1/583 309/1/583 +f 314/1/584 306/1/584 303/1/584 +f 316/1/585 306/1/585 314/1/585 +f 303/1/586 305/1/586 304/1/586 +f 307/1/587 305/1/587 303/1/587 +f 306/1/588 307/1/588 303/1/588 +f 308/1/589 310/1/589 309/1/589 +f 311/1/590 310/1/590 308/1/590 +f 317/1/591 311/1/591 308/1/591 +f 317/1/592 313/1/592 311/1/592 +f 315/1/593 313/1/593 317/1/593 +f 312/1/594 315/1/594 317/1/594 +f 311/1/595 99/1/595 310/1/595 +f 313/1/596 99/1/596 311/1/596 +f 310/1/597 316/1/597 314/1/597 +f 312/1/598 319/1/598 315/1/598 +f 99/1/599 316/1/599 310/1/599 +f 315/1/600 319/1/600 313/1/600 +f 318/1/601 312/1/601 317/1/601 +f 100/1/602 312/1/602 318/1/602 +f 100/1/603 319/1/603 312/1/603 +f 320/1/604 164/1/604 162/1/604 +f 320/1/605 321/1/605 164/1/605 +f 320/1/606 322/1/606 321/1/606 +f 320/1/607 323/1/607 322/1/607 +f 320/1/608 207/1/608 452/1/608 +f 323/1/609 320/1/609 452/1/609 +f 324/1/610 452/1/610 207/1/610 +f 324/1/611 453/1/611 452/1/611 +f 325/1/612 453/1/612 324/1/612 +f 325/1/613 326/1/613 453/1/613 +f 209/1/614 326/1/614 325/1/614 +f 209/1/615 456/1/615 326/1/615 +f 210/1/616 456/1/616 209/1/616 +f 210/1/617 458/1/617 456/1/617 +f 464/1/618 105/1/618 327/1/618 +f 464/1/619 462/1/619 105/1/619 +f 462/1/620 328/1/620 105/1/620 +f 462/1/621 106/1/621 328/1/621 +f 329/1/622 106/1/622 462/1/622 +f 329/1/623 110/1/623 106/1/623 +f 329/1/624 330/1/624 110/1/624 +f 461/1/625 330/1/625 329/1/625 +f 461/1/626 331/1/626 330/1/626 +f 443/1/627 331/1/627 461/1/627 +f 443/1/628 115/1/628 331/1/628 +f 443/1/629 441/1/629 115/1/629 +f 465/1/630 464/1/630 118/1/630 +f 464/1/631 327/1/631 118/1/631 +f 120/1/632 465/1/632 118/1/632 +f 122/1/633 465/1/633 120/1/633 +f 466/1/634 465/1/634 122/1/634 +f 124/1/635 466/1/635 122/1/635 +f 125/1/636 466/1/636 124/1/636 +f 128/1/637 332/1/637 125/1/637 +f 332/1/638 466/1/638 125/1/638 +f 131/1/639 332/1/639 128/1/639 +f 132/1/640 332/1/640 131/1/640 +f 134/1/641 332/1/641 132/1/641 +f 134/1/642 467/1/642 332/1/642 +f 284/1/643 467/1/643 134/1/643 +f 352/1/644 333/1/644 351/1/644 +f 540/1/645 333/1/645 352/1/645 +f 141/1/646 540/1/646 352/1/646 +f 334/1/647 337/1/647 355/1/647 +f 335/1/648 337/1/648 334/1/648 +f 338/1/649 335/1/649 135/1/649 +f 336/1/650 337/1/650 335/1/650 +f 338/1/651 336/1/651 335/1/651 +f 336/1/652 339/1/652 337/1/652 +f 338/1/653 340/1/653 336/1/653 +f 339/1/654 341/1/654 337/1/654 +f 340/1/655 339/1/655 336/1/655 +f 343/1/656 339/1/656 340/1/656 +f 339/1/657 342/1/657 341/1/657 +f 343/1/658 342/1/658 339/1/658 +f 343/1/659 344/1/659 342/1/659 +f 342/1/660 345/1/660 341/1/660 +f 344/1/661 345/1/661 342/1/661 +f 346/1/662 345/1/662 344/1/662 +f 346/1/663 347/1/663 345/1/663 +f 348/1/664 347/1/664 346/1/664 +f 347/1/665 349/1/665 345/1/665 +f 350/1/666 349/1/666 347/1/666 +f 348/1/667 350/1/667 347/1/667 +f 350/1/668 351/1/668 349/1/668 +f 140/1/669 351/1/669 350/1/669 +f 140/1/670 352/1/670 351/1/670 +f 141/1/671 352/1/671 140/1/671 +f 135/1/672 354/1/672 353/1/672 +f 135/1/673 335/1/673 354/1/673 +f 334/1/674 354/1/674 335/1/674 +f 358/1/675 357/1/675 356/1/675 +f 363/1/676 361/1/676 356/1/676 +f 358/1/677 360/1/677 357/1/677 +f 360/1/678 359/1/678 357/1/678 +f 361/1/679 358/1/679 356/1/679 +f 361/1/680 362/1/680 358/1/680 +f 362/1/681 360/1/681 358/1/681 +f 361/1/682 364/1/682 362/1/682 +f 363/1/683 365/1/683 361/1/683 +f 365/1/684 364/1/684 361/1/684 +f 365/1/685 367/1/685 364/1/685 +f 143/1/686 366/1/686 363/1/686 +f 366/1/687 365/1/687 363/1/687 +f 366/1/688 367/1/688 365/1/688 +f 368/1/689 367/1/689 366/1/689 +f 143/1/690 369/1/690 366/1/690 +f 369/1/691 368/1/691 366/1/691 +f 372/1/692 369/1/692 143/1/692 +f 369/1/693 370/1/693 368/1/693 +f 371/1/694 369/1/694 372/1/694 +f 371/1/695 370/1/695 369/1/695 +f 374/1/696 370/1/696 371/1/696 +f 353/1/697 354/1/697 372/1/697 +f 354/1/698 371/1/698 372/1/698 +f 354/1/699 373/1/699 371/1/699 +f 373/1/700 374/1/700 371/1/700 +f 334/1/701 373/1/701 354/1/701 +f 334/1/702 355/1/702 373/1/702 +f 355/1/703 374/1/703 373/1/703 +f 357/1/704 376/1/704 356/1/704 +f 357/1/705 375/1/705 376/1/705 +f 359/1/706 375/1/706 357/1/706 +f 475/1/707 375/1/707 359/1/707 +f 375/1/708 377/1/708 376/1/708 +f 377/1/709 380/1/709 376/1/709 +f 378/1/710 377/1/710 375/1/710 +f 475/1/711 378/1/711 375/1/711 +f 379/1/712 380/1/712 377/1/712 +f 378/1/713 379/1/713 377/1/713 +f 476/1/714 379/1/714 378/1/714 +f 476/1/715 380/1/715 379/1/715 +f 383/1/716 380/1/716 476/1/716 +f 477/1/717 383/1/717 476/1/717 +f 383/1/718 381/1/718 380/1/718 +f 477/1/719 382/1/719 383/1/719 +f 383/1/720 384/1/720 381/1/720 +f 385/1/721 384/1/721 383/1/721 +f 382/1/722 385/1/722 383/1/722 +f 479/1/723 385/1/723 382/1/723 +f 384/1/724 387/1/724 381/1/724 +f 386/1/725 387/1/725 384/1/725 +f 385/1/726 386/1/726 384/1/726 +f 479/1/727 386/1/727 385/1/727 +f 480/1/728 386/1/728 479/1/728 +f 386/1/729 388/1/729 387/1/729 +f 390/1/730 388/1/730 386/1/730 +f 480/1/731 390/1/731 386/1/731 +f 391/1/732 390/1/732 480/1/732 +f 388/1/733 389/1/733 387/1/733 +f 391/1/734 392/1/734 390/1/734 +f 392/1/735 393/1/735 390/1/735 +f 393/1/736 388/1/736 390/1/736 +f 393/1/737 389/1/737 388/1/737 +f 394/1/738 393/1/738 392/1/738 +f 393/1/739 395/1/739 389/1/739 +f 394/1/740 395/1/740 393/1/740 +f 396/1/741 395/1/741 394/1/741 +f 398/1/742 397/1/742 394/1/742 +f 397/1/743 396/1/743 394/1/743 +f 146/1/744 396/1/744 397/1/744 +f 398/1/745 400/1/745 397/1/745 +f 400/1/746 146/1/746 397/1/746 +f 400/1/747 399/1/747 146/1/747 +f 401/1/748 400/1/748 398/1/748 +f 401/1/749 402/1/749 400/1/749 +f 402/1/750 403/1/750 400/1/750 +f 403/1/751 399/1/751 400/1/751 +f 405/1/752 402/1/752 401/1/752 +f 405/1/753 404/1/753 402/1/753 +f 404/1/754 403/1/754 402/1/754 +f 408/1/755 404/1/755 405/1/755 +f 408/1/756 406/1/756 404/1/756 +f 411/1/757 408/1/757 405/1/757 +f 411/1/758 409/1/758 408/1/758 +f 407/1/759 406/1/759 408/1/759 +f 409/1/760 407/1/760 408/1/760 +f 409/1/761 1/1/761 407/1/761 +f 410/1/762 409/1/762 411/1/762 +f 410/1/763 412/1/763 409/1/763 +f 412/1/764 1/1/764 409/1/764 +f 181/1/765 23/1/765 167/1/765 +f 184/1/766 413/1/766 23/1/766 +f 181/1/767 184/1/767 23/1/767 +f 173/1/768 181/1/768 167/1/768 +f 176/1/769 181/1/769 173/1/769 +f 174/1/770 176/1/770 173/1/770 +f 482/1/771 413/1/771 184/1/771 +f 482/1/772 160/1/772 413/1/772 +f 482/1/773 162/1/773 160/1/773 +f 482/1/774 208/1/774 162/1/774 +f 208/1/775 320/1/775 162/1/775 +f 485/1/776 208/1/776 482/1/776 +f 414/1/777 208/1/777 485/1/777 +f 415/1/778 208/1/778 414/1/778 +f 488/1/779 415/1/779 414/1/779 +f 491/1/780 415/1/780 488/1/780 +f 416/1/781 415/1/781 491/1/781 +f 493/1/782 416/1/782 491/1/782 +f 494/1/783 416/1/783 493/1/783 +f 417/1/784 416/1/784 494/1/784 +f 497/1/785 417/1/785 494/1/785 +f 500/1/786 417/1/786 497/1/786 +f 502/1/787 418/1/787 500/1/787 +f 418/1/788 417/1/788 500/1/788 +f 504/1/789 418/1/789 502/1/789 +f 230/1/790 232/1/790 419/1/790 +f 428/1/791 215/1/791 419/1/791 +f 215/1/792 420/1/792 419/1/792 +f 420/1/793 230/1/793 419/1/793 +f 232/1/794 504/1/794 419/1/794 +f 204/1/795 418/1/795 504/1/795 +f 203/1/796 204/1/796 504/1/796 +f 194/1/797 195/1/797 504/1/797 +f 195/1/798 201/1/798 504/1/798 +f 201/1/799 203/1/799 504/1/799 +f 232/1/800 194/1/800 504/1/800 +f 428/1/801 213/1/801 215/1/801 +f 206/1/802 418/1/802 204/1/802 +f 234/1/803 508/1/803 421/1/803 +f 234/1/804 510/1/804 508/1/804 +f 422/1/805 510/1/805 234/1/805 +f 422/1/806 423/1/806 510/1/806 +f 235/1/807 423/1/807 422/1/807 +f 235/1/808 513/1/808 423/1/808 +f 235/1/809 424/1/809 513/1/809 +f 425/1/810 424/1/810 235/1/810 +f 425/1/811 516/1/811 424/1/811 +f 425/1/812 427/1/812 516/1/812 +f 425/1/813 426/1/813 427/1/813 +f 426/1/814 519/1/814 427/1/814 +f 426/1/815 428/1/815 519/1/815 +f 428/1/816 419/1/816 519/1/816 +f 270/1/817 259/1/817 256/1/817 +f 269/1/818 270/1/818 256/1/818 +f 67/1/819 269/1/819 256/1/819 +f 421/1/820 269/1/820 67/1/820 +f 243/1/821 421/1/821 67/1/821 +f 270/1/822 266/1/822 259/1/822 +f 266/1/823 263/1/823 259/1/823 +f 252/1/824 421/1/824 243/1/824 +f 280/1/825 234/1/825 252/1/825 +f 234/1/826 421/1/826 252/1/826 +f 429/1/827 273/1/827 281/1/827 +f 429/1/827 277/1/827 273/1/827 +f 277/1/828 276/1/828 273/1/828 +f 429/1/829 431/1/829 277/1/829 +f 431/1/830 278/1/830 277/1/830 +f 431/1/831 430/1/831 278/1/831 +f 431/1/832 432/1/832 430/1/832 +f 431/1/833 433/1/833 432/1/833 +f 525/1/834 212/1/834 432/1/834 +f 433/1/835 434/1/835 432/1/835 +f 434/1/835 525/1/835 432/1/835 +f 439/1/836 438/1/836 437/1/836 +f 436/1/837 439/1/837 437/1/837 +f 440/1/838 439/1/838 436/1/838 +f 439/1/839 522/1/839 438/1/839 +f 440/1/840 522/1/840 439/1/840 +f 436/1/841 441/1/841 443/1/841 +f 442/1/842 436/1/842 443/1/842 +f 442/1/843 440/1/843 436/1/843 +f 284/1/844 444/1/844 467/1/844 +f 445/1/845 444/1/845 284/1/845 +f 445/1/846 449/1/846 444/1/846 +f 448/1/847 446/1/847 447/1/847 +f 4/1/848 446/1/848 448/1/848 +f 4/1/849 445/1/849 446/1/849 +f 450/1/850 445/1/850 4/1/850 +f 450/1/851 449/1/851 445/1/851 +f 288/1/852 286/1/852 451/1/852 +f 553/1/853 301/1/853 451/1/853 +f 301/1/854 294/1/854 451/1/854 +f 287/1/855 288/1/855 451/1/855 +f 294/1/856 287/1/856 451/1/856 +f 309/1/857 301/1/857 553/1/857 +f 308/1/858 309/1/858 553/1/858 +f 318/1/859 317/1/859 553/1/859 +f 317/1/860 308/1/860 553/1/860 +f 530/1/827 323/1/827 452/1/827 +f 453/1/827 530/1/827 452/1/827 +f 457/1/861 530/1/861 453/1/861 +f 326/1/862 457/1/862 453/1/862 +f 456/1/863 457/1/863 326/1/863 +f 454/1/864 529/1/864 458/1/864 +f 529/1/865 455/1/865 458/1/865 +f 458/1/866 457/1/866 456/1/866 +f 459/1/867 457/1/867 458/1/867 +f 455/1/868 459/1/868 458/1/868 +f 463/1/423 460/1/423 464/1/423 +f 461/1/423 329/1/423 464/1/423 +f 460/1/423 443/1/423 464/1/423 +f 443/1/423 461/1/423 464/1/423 +f 465/1/423 463/1/423 464/1/423 +f 329/1/423 462/1/423 464/1/423 +f 562/1/423 463/1/423 465/1/423 +f 466/1/423 562/1/423 465/1/423 +f 332/1/423 562/1/423 466/1/423 +f 564/1/423 562/1/423 332/1/423 +f 467/1/423 564/1/423 332/1/423 +f 460/1/423 442/1/423 443/1/423 +f 444/1/423 556/1/423 467/1/423 +f 556/1/423 564/1/423 467/1/423 +f 468/1/423 564/1/423 556/1/423 +f 451/1/423 468/1/423 556/1/423 +f 469/1/423 451/1/423 556/1/423 +f 558/1/423 451/1/423 469/1/423 +f 559/1/423 451/1/423 558/1/423 +f 553/1/423 451/1/423 559/1/423 +f 351/1/869 333/1/869 474/1/869 +f 355/1/870 351/1/870 474/1/870 +f 337/1/871 351/1/871 355/1/871 +f 345/1/872 349/1/872 337/1/872 +f 349/1/873 351/1/873 337/1/873 +f 341/1/874 345/1/874 337/1/874 +f 360/1/875 470/1/875 359/1/875 +f 362/1/876 470/1/876 360/1/876 +f 471/1/877 470/1/877 362/1/877 +f 364/1/878 471/1/878 362/1/878 +f 472/1/879 471/1/879 364/1/879 +f 367/1/880 472/1/880 364/1/880 +f 368/1/881 472/1/881 367/1/881 +f 370/1/882 472/1/882 368/1/882 +f 473/1/883 472/1/883 370/1/883 +f 374/1/884 473/1/884 370/1/884 +f 374/1/885 474/1/885 473/1/885 +f 355/1/886 474/1/886 374/1/886 +f 359/1/887 470/1/887 475/1/887 +f 470/1/888 533/1/888 475/1/888 +f 533/1/889 378/1/889 475/1/889 +f 533/1/890 535/1/890 378/1/890 +f 535/1/891 476/1/891 378/1/891 +f 535/1/892 477/1/892 476/1/892 +f 535/1/893 478/1/893 477/1/893 +f 478/1/894 382/1/894 477/1/894 +f 478/1/895 536/1/895 382/1/895 +f 536/1/896 479/1/896 382/1/896 +f 536/1/897 480/1/897 479/1/897 +f 481/1/898 480/1/898 536/1/898 +f 481/1/899 391/1/899 480/1/899 +f 481/1/900 392/1/900 391/1/900 +f 481/1/901 410/1/901 392/1/901 +f 410/1/902 411/1/902 392/1/902 +f 411/1/903 394/1/903 392/1/903 +f 411/1/904 405/1/904 394/1/904 +f 405/1/905 401/1/905 394/1/905 +f 401/1/906 398/1/906 394/1/906 +f 483/1/907 482/1/907 184/1/907 +f 541/1/908 483/1/908 184/1/908 +f 487/1/909 483/1/909 541/1/909 +f 484/1/910 483/1/910 487/1/910 +f 484/1/911 485/1/911 483/1/911 +f 485/1/912 482/1/912 483/1/912 +f 486/1/913 485/1/913 484/1/913 +f 486/1/914 414/1/914 485/1/914 +f 492/1/915 484/1/915 487/1/915 +f 492/1/916 486/1/916 484/1/916 +f 489/1/917 486/1/917 492/1/917 +f 489/1/918 488/1/918 486/1/918 +f 488/1/919 414/1/919 486/1/919 +f 491/1/920 488/1/920 489/1/920 +f 492/1/921 490/1/921 489/1/921 +f 490/1/922 491/1/922 489/1/922 +f 493/1/923 491/1/923 490/1/923 +f 495/1/924 490/1/924 492/1/924 +f 495/1/925 493/1/925 490/1/925 +f 496/1/926 495/1/926 492/1/926 +f 495/1/927 494/1/927 493/1/927 +f 496/1/928 497/1/928 495/1/928 +f 497/1/929 494/1/929 495/1/929 +f 501/1/930 498/1/930 496/1/930 +f 498/1/931 497/1/931 496/1/931 +f 498/1/932 500/1/932 497/1/932 +f 501/1/933 499/1/933 498/1/933 +f 499/1/934 500/1/934 498/1/934 +f 499/1/935 502/1/935 500/1/935 +f 503/1/936 499/1/936 501/1/936 +f 503/1/937 502/1/937 499/1/937 +f 503/1/938 504/1/938 502/1/938 +f 503/1/939 501/1/939 518/1/939 +f 505/1/940 503/1/940 518/1/940 +f 504/1/941 503/1/941 505/1/941 +f 419/1/942 504/1/942 505/1/942 +f 508/1/943 506/1/943 507/1/943 +f 421/1/944 508/1/944 507/1/944 +f 509/1/945 511/1/945 506/1/945 +f 508/1/946 509/1/946 506/1/946 +f 510/1/947 509/1/947 508/1/947 +f 509/1/948 512/1/948 511/1/948 +f 423/1/949 512/1/949 509/1/949 +f 510/1/950 423/1/950 509/1/950 +f 513/1/951 512/1/951 423/1/951 +f 512/1/952 514/1/952 511/1/952 +f 424/1/953 514/1/953 512/1/953 +f 513/1/954 424/1/954 512/1/954 +f 516/1/955 515/1/955 514/1/955 +f 424/1/956 516/1/956 514/1/956 +f 515/1/957 517/1/957 514/1/957 +f 516/1/958 517/1/958 515/1/958 +f 427/1/959 517/1/959 516/1/959 +f 519/1/960 518/1/960 517/1/960 +f 427/1/961 519/1/961 517/1/961 +f 519/1/962 505/1/962 518/1/962 +f 419/1/963 505/1/963 519/1/963 +f 421/1/964 507/1/964 269/1/964 +f 507/1/965 520/1/965 269/1/965 +f 507/1/966 506/1/966 520/1/966 +f 523/1/967 522/1/967 521/1/967 +f 523/1/968 44/1/968 522/1/968 +f 523/1/969 46/1/969 44/1/969 +f 523/1/970 429/1/970 46/1/970 +f 429/1/971 281/1/971 46/1/971 +f 524/1/972 429/1/972 523/1/972 +f 431/1/973 429/1/973 524/1/973 +f 433/1/974 431/1/974 524/1/974 +f 547/1/975 433/1/975 524/1/975 +f 547/1/976 434/1/976 433/1/976 +f 551/1/977 434/1/977 547/1/977 +f 526/1/978 434/1/978 551/1/978 +f 526/1/979 525/1/979 434/1/979 +f 526/1/980 212/1/980 525/1/980 +f 286/1/981 435/1/981 212/1/981 +f 526/1/982 527/1/982 212/1/982 +f 527/1/983 286/1/983 212/1/983 +f 451/1/984 527/1/984 538/1/984 +f 286/1/985 527/1/985 451/1/985 +f 442/1/986 539/1/986 521/1/986 +f 522/1/987 442/1/987 521/1/987 +f 522/1/988 440/1/988 442/1/988 +f 5/1/989 544/1/989 542/1/989 +f 450/1/990 5/1/990 542/1/990 +f 528/1/991 544/1/991 5/1/991 +f 530/1/992 544/1/992 528/1/992 +f 322/1/993 530/1/993 528/1/993 +f 323/1/994 530/1/994 322/1/994 +f 444/1/995 542/1/995 560/1/995 +f 449/1/996 450/1/996 542/1/996 +f 444/1/997 449/1/997 542/1/997 +f 549/1/998 553/1/998 550/1/998 +f 549/1/999 318/1/999 553/1/999 +f 318/1/1000 454/1/1000 100/1/1000 +f 549/1/1001 529/1/1001 454/1/1001 +f 318/1/1002 549/1/1002 454/1/1002 +f 549/1/1003 531/1/1003 529/1/1003 +f 457/1/1004 544/1/1004 530/1/1004 +f 457/1/1005 546/1/1005 544/1/1005 +f 457/1/1006 548/1/1006 546/1/1006 +f 459/1/1007 548/1/1007 457/1/1007 +f 455/1/1008 548/1/1008 459/1/1008 +f 552/1/1009 548/1/1009 455/1/1009 +f 529/1/1010 552/1/1010 455/1/1010 +f 531/1/1011 552/1/1011 529/1/1011 +f 333/1/1012 533/1/1012 470/1/1012 +f 474/1/1012 333/1/1012 470/1/1012 +f 539/1/1012 532/1/1012 533/1/1012 +f 532/1/1012 534/1/1012 533/1/1012 +f 333/1/1012 539/1/1012 533/1/1012 +f 472/1/1012 473/1/1012 470/1/1012 +f 473/1/1012 474/1/1012 470/1/1012 +f 534/1/1012 535/1/1012 533/1/1012 +f 471/1/1012 472/1/1012 470/1/1012 +f 534/1/1012 478/1/1012 535/1/1012 +f 534/1/1012 536/1/1012 478/1/1012 +f 534/1/1012 537/1/1012 536/1/1012 +f 537/1/1012 481/1/1012 536/1/1012 +f 537/1/1012 410/1/1012 481/1/1012 +f 561/1/1012 563/1/1012 410/1/1012 +f 563/1/1012 538/1/1012 410/1/1012 +f 554/1/1012 560/1/1012 410/1/1012 +f 537/1/1012 561/1/1012 410/1/1012 +f 538/1/1012 543/1/1012 410/1/1012 +f 557/1/1012 555/1/1012 410/1/1012 +f 555/1/1012 554/1/1012 410/1/1012 +f 543/1/1012 557/1/1012 410/1/1012 +f 560/1/1013 412/1/1013 410/1/1013 +f 540/1/1014 539/1/1014 333/1/1014 +f 521/1/1015 539/1/1015 540/1/1015 +f 506/1/1016 521/1/1016 520/1/1016 +f 521/1/1017 540/1/1017 520/1/1017 +f 560/1/1018 541/1/1018 412/1/1018 +f 542/1/1019 487/1/1019 541/1/1019 +f 560/1/1020 542/1/1020 541/1/1020 +f 506/1/1021 523/1/1021 521/1/1021 +f 544/1/1022 487/1/1022 542/1/1022 +f 538/1/1012 545/1/1012 543/1/1012 +f 506/1/1023 524/1/1023 523/1/1023 +f 546/1/1024 487/1/1024 544/1/1024 +f 511/1/1025 524/1/1025 506/1/1025 +f 492/1/1026 487/1/1026 546/1/1026 +f 538/1/1027 550/1/1027 545/1/1027 +f 548/1/1028 492/1/1028 546/1/1028 +f 511/1/1029 547/1/1029 524/1/1029 +f 511/1/1030 514/1/1030 547/1/1030 +f 496/1/1031 492/1/1031 548/1/1031 +f 517/1/1032 551/1/1032 547/1/1032 +f 514/1/1033 517/1/1033 547/1/1033 +f 552/1/1034 496/1/1034 548/1/1034 +f 501/1/1035 496/1/1035 552/1/1035 +f 549/1/1036 550/1/1036 538/1/1036 +f 527/1/1037 549/1/1037 538/1/1037 +f 517/1/1038 526/1/1038 551/1/1038 +f 531/1/1039 501/1/1039 552/1/1039 +f 517/1/1040 518/1/1040 526/1/1040 +f 518/1/1041 527/1/1041 526/1/1041 +f 518/1/1042 549/1/1042 527/1/1042 +f 518/1/1043 501/1/1043 549/1/1043 +f 501/1/1044 531/1/1044 549/1/1044 +f 550/1/1045 559/1/1045 545/1/1045 +f 550/1/1046 553/1/1046 559/1/1046 +f 555/1/1047 556/1/1047 554/1/1047 +f 557/1/1048 469/1/1048 555/1/1048 +f 469/1/1049 556/1/1049 555/1/1049 +f 543/1/1050 558/1/1050 557/1/1050 +f 558/1/1051 469/1/1051 557/1/1051 +f 559/1/1052 558/1/1052 543/1/1052 +f 545/1/1053 559/1/1053 543/1/1053 +f 556/1/1054 444/1/1054 554/1/1054 +f 444/1/1055 560/1/1055 554/1/1055 +f 442/1/1056 460/1/1056 539/1/1056 +f 460/1/1057 532/1/1057 539/1/1057 +f 460/1/1058 534/1/1058 532/1/1058 +f 463/1/1059 534/1/1059 460/1/1059 +f 463/1/1060 537/1/1060 534/1/1060 +f 562/1/1061 537/1/1061 463/1/1061 +f 562/1/1062 561/1/1062 537/1/1062 +f 564/1/1063 561/1/1063 562/1/1063 +f 564/1/1064 563/1/1064 561/1/1064 +f 468/1/1065 563/1/1065 564/1/1065 +f 468/1/1066 451/1/1066 563/1/1066 +f 451/1/1067 538/1/1067 563/1/1067 +f 565/2/423 570/3/423 682/4/423 +f 567/5/423 565/2/423 682/4/423 +f 566/6/423 565/2/423 567/5/423 +f 599/7/423 566/6/423 567/5/423 +f 659/8/423 569/9/423 567/5/423 +f 568/10/423 599/7/423 567/5/423 +f 569/9/423 568/10/423 567/5/423 +f 570/3/423 684/11/423 682/4/423 +f 565/2/423 605/12/423 570/3/423 +f 605/12/423 606/13/423 570/3/423 +f 606/13/423 578/14/423 570/3/423 +f 640/15/423 638/16/423 569/9/423 +f 642/17/423 640/15/423 569/9/423 +f 581/18/423 642/17/423 569/9/423 +f 638/16/423 568/10/423 569/9/423 +f 571/19/423 605/12/423 565/2/423 +f 610/20/423 608/21/423 565/2/423 +f 608/21/423 571/19/423 565/2/423 +f 582/22/423 610/20/423 565/2/423 +f 588/23/423 582/22/423 565/2/423 +f 566/6/423 623/24/423 565/2/423 +f 623/24/423 572/25/423 565/2/423 +f 572/25/423 573/26/423 565/2/423 +f 573/26/423 624/27/423 565/2/423 +f 624/27/423 627/28/423 565/2/423 +f 627/28/423 588/23/423 565/2/423 +f 574/29/423 623/24/423 566/6/423 +f 575/30/423 574/29/423 566/6/423 +f 629/31/423 626/32/423 566/6/423 +f 599/7/423 629/31/423 566/6/423 +f 626/32/423 575/30/423 566/6/423 +f 638/16/423 576/33/423 568/10/423 +f 576/33/423 577/34/423 568/10/423 +f 577/34/423 643/35/423 568/10/423 +f 643/35/423 646/36/423 568/10/423 +f 646/36/423 599/7/423 568/10/423 +f 580/37/423 642/17/423 581/18/423 +f 578/14/423 579/38/423 570/3/423 +f 611/39/423 590/40/423 570/3/423 +f 579/38/423 611/39/423 570/3/423 +f 589/41/423 649/42/423 581/18/423 +f 649/42/423 580/37/423 581/18/423 +f 613/43/423 590/40/423 611/39/423 +f 588/23/423 614/44/423 582/22/423 +f 630/45/423 588/23/423 627/28/423 +f 599/7/423 584/46/423 629/31/423 +f 583/47/423 599/7/423 646/36/423 +f 589/41/423 585/48/423 649/42/423 +f 616/49/423 590/40/423 613/43/423 +f 632/50/423 588/23/423 630/45/423 +f 586/51/423 599/7/423 583/47/423 +f 588/23/423 619/52/423 614/44/423 +f 599/7/423 635/53/423 584/46/423 +f 589/41/423 655/54/423 585/48/423 +f 618/55/423 590/40/423 616/49/423 +f 633/56/423 588/23/423 632/50/423 +f 653/57/423 599/7/423 586/51/423 +f 622/58/423 590/40/423 618/55/423 +f 588/23/423 621/59/423 619/52/423 +f 636/60/423 588/23/423 633/56/423 +f 599/7/423 587/61/423 635/53/423 +f 657/62/423 599/7/423 653/57/423 +f 589/41/423 656/63/423 655/54/423 +f 588/23/423 590/40/423 621/59/423 +f 621/59/423 590/40/423 622/58/423 +f 599/7/423 588/23/423 636/60/423 +f 587/61/423 599/7/423 636/60/423 +f 589/41/423 599/7/423 657/62/423 +f 656/63/423 589/41/423 657/62/423 +f 662/64/423 599/7/423 589/41/423 +f 588/23/423 591/65/423 590/40/423 +f 593/66/423 599/7/423 662/64/423 +f 588/23/1068 592/67/1068 591/65/1068 +f 592/67/423 595/68/423 594/69/423 +f 665/70/423 593/66/423 663/71/423 +f 667/72/423 593/66/423 665/70/423 +f 592/67/423 678/73/423 595/68/423 +f 596/74/423 593/66/423 667/72/423 +f 592/67/423 598/75/423 678/73/423 +f 597/76/423 593/66/423 596/74/423 +f 669/77/423 593/66/423 597/76/423 +f 599/7/423 592/67/423 588/23/423 +f 592/67/423 600/78/423 598/75/423 +f 675/79/423 592/67/423 599/7/423 +f 593/66/423 675/79/423 599/7/423 +f 675/79/423 593/66/423 669/77/423 +f 672/80/423 600/78/423 592/67/423 +f 669/77/423 601/81/423 675/79/423 +f 673/82/423 672/80/423 592/67/423 +f 601/81/423 602/83/423 675/79/423 +f 603/84/423 673/82/423 592/67/423 +f 675/79/423 603/84/423 592/67/423 +f 602/83/423 604/85/423 675/79/423 +f 690/86/1069 606/86/1069 698/86/1069 +f 606/86/1070 605/86/1070 698/86/1070 +f 605/86/1071 607/86/1071 698/86/1071 +f 571/86/1072 607/86/1072 605/86/1072 +f 692/86/1073 578/86/1073 690/86/1073 +f 578/86/1074 606/86/1074 690/86/1074 +f 571/86/1075 702/86/1075 607/86/1075 +f 608/86/1076 702/86/1076 571/86/1076 +f 694/86/1077 578/86/1077 692/86/1077 +f 608/86/1078 609/86/1078 702/86/1078 +f 610/86/1079 609/86/1079 608/86/1079 +f 579/86/1080 578/86/1080 694/86/1080 +f 704/86/1081 611/86/1081 694/86/1081 +f 611/86/1082 579/86/1082 694/86/1082 +f 610/86/1083 612/86/1083 609/86/1083 +f 582/86/1084 612/86/1084 610/86/1084 +f 613/86/1085 611/86/1085 704/86/1085 +f 615/86/1086 613/86/1086 704/86/1086 +f 582/86/1087 706/86/1087 612/86/1087 +f 614/86/1088 706/86/1088 582/86/1088 +f 616/86/1089 613/86/1089 615/86/1089 +f 614/86/1090 617/86/1090 706/86/1090 +f 709/86/1091 616/86/1091 615/86/1091 +f 619/86/1092 617/86/1092 614/86/1092 +f 618/86/1093 616/86/1093 709/86/1093 +f 619/86/1094 620/86/1094 617/86/1094 +f 622/86/1095 618/86/1095 709/86/1095 +f 712/86/1096 622/86/1096 709/86/1096 +f 621/86/1097 620/86/1097 619/86/1097 +f 621/86/1098 712/86/1098 620/86/1098 +f 712/86/1099 621/86/1099 622/86/1099 +f 685/87/1069 572/87/1069 699/87/1069 +f 572/87/1070 623/87/1070 699/87/1070 +f 623/87/1100 701/87/1100 699/87/1100 +f 574/87/1101 701/87/1101 623/87/1101 +f 686/87/1102 573/87/1102 685/87/1102 +f 573/87/1103 572/87/1103 685/87/1103 +f 575/87/1104 701/87/1104 574/87/1104 +f 624/88/1105 573/87/1105 686/87/1105 +f 575/87/1106 703/87/1106 701/87/1106 +f 625/88/1107 624/88/1107 686/87/1107 +f 626/87/1108 703/87/1108 575/87/1108 +f 627/88/1109 624/88/1109 625/88/1109 +f 626/87/1110 628/87/1110 703/87/1110 +f 697/88/1111 627/88/1111 625/88/1111 +f 629/87/1112 628/87/1112 626/87/1112 +f 630/88/1113 627/88/1113 697/88/1113 +f 696/88/1086 630/88/1086 697/88/1086 +f 629/87/1114 631/87/1114 628/87/1114 +f 584/87/1088 631/87/1088 629/87/1088 +f 632/88/1089 630/88/1089 696/88/1089 +f 584/87/1090 708/87/1090 631/87/1090 +f 695/87/1091 632/88/1091 696/88/1091 +f 635/87/1092 708/87/1092 584/87/1092 +f 633/87/1093 632/88/1093 695/87/1093 +f 635/87/1115 634/87/1115 708/87/1115 +f 636/87/1095 633/87/1095 695/87/1095 +f 637/87/1116 636/87/1116 695/87/1116 +f 635/87/1117 711/87/1117 634/87/1117 +f 587/87/1118 711/87/1118 635/87/1118 +f 587/87/1119 637/87/1119 711/87/1119 +f 637/87/1120 587/87/1120 636/87/1120 +f 576/89/1121 638/90/1121 689/89/1121 +f 638/90/1122 688/90/1122 689/89/1122 +f 639/89/1123 576/89/1123 689/89/1123 +f 640/90/1124 688/90/1124 638/90/1124 +f 641/89/1125 577/89/1125 639/89/1125 +f 577/89/1126 576/89/1126 639/89/1126 +f 640/90/1127 687/90/1127 688/90/1127 +f 642/90/1128 687/90/1128 640/90/1128 +f 644/89/1129 643/89/1129 641/89/1129 +f 643/89/1130 577/89/1130 641/89/1130 +f 580/90/1131 687/90/1131 642/90/1131 +f 580/90/1132 645/90/1132 687/90/1132 +f 647/89/1081 646/89/1081 644/89/1081 +f 646/89/1133 643/89/1133 644/89/1133 +f 580/90/1134 648/90/1134 645/90/1134 +f 649/90/1084 648/90/1084 580/90/1084 +f 583/89/1085 646/89/1085 647/89/1085 +f 650/89/1086 583/89/1086 647/89/1086 +f 649/90/1135 707/90/1135 648/90/1135 +f 585/90/1088 707/90/1088 649/90/1088 +f 586/89/1089 583/89/1089 650/89/1089 +f 585/90/1136 651/90/1136 707/90/1136 +f 654/89/1091 586/89/1091 650/89/1091 +f 655/90/1137 651/90/1137 585/90/1137 +f 655/90/1138 652/90/1138 651/90/1138 +f 653/89/1093 586/89/1093 654/89/1093 +f 657/89/1095 653/89/1095 654/89/1095 +f 710/89/1139 657/89/1139 654/89/1139 +f 655/90/1140 713/90/1140 652/90/1140 +f 656/90/1141 713/90/1141 655/90/1141 +f 713/90/1142 657/89/1142 710/89/1142 +f 713/90/1143 656/90/1143 657/89/1143 +f 660/91/1144 659/91/1144 658/91/1144 +f 660/91/1145 569/91/1145 659/91/1145 +f 661/91/1146 569/91/1146 660/91/1146 +f 661/91/1147 581/91/1147 569/91/1147 +f 662/92/1148 589/92/1148 705/92/1148 +f 700/92/1149 662/92/1149 705/92/1149 +f 593/92/1150 662/92/1150 700/92/1150 +f 716/92/1151 593/92/1151 700/92/1151 +f 664/93/1152 593/92/1152 716/92/1152 +f 663/93/1153 593/92/1153 664/93/1153 +f 666/94/1154 663/93/1154 664/93/1154 +f 666/94/1155 665/94/1155 663/93/1155 +f 666/94/1156 667/94/1156 665/94/1156 +f 668/94/1157 667/94/1157 666/94/1157 +f 668/94/1158 596/94/1158 667/94/1158 +f 719/94/1159 596/94/1159 668/94/1159 +f 719/94/1160 597/94/1160 596/94/1160 +f 720/95/1161 669/95/1161 719/94/1161 +f 669/95/1162 597/94/1162 719/94/1162 +f 670/95/1163 669/95/1163 720/95/1163 +f 670/95/1164 601/95/1164 669/95/1164 +f 722/95/1165 601/95/1165 670/95/1165 +f 722/95/1166 602/95/1166 601/95/1166 +f 721/96/1167 602/95/1167 722/95/1167 +f 721/96/1168 604/96/1168 602/95/1168 +f 675/97/1169 721/96/1169 676/97/1169 +f 675/97/1170 604/96/1170 721/96/1170 +f 600/97/1171 672/97/1171 671/97/1171 +f 672/97/1172 714/97/1172 671/97/1172 +f 672/97/1173 673/97/1173 714/97/1173 +f 673/97/1174 674/97/1174 714/97/1174 +f 673/97/1175 603/97/1175 674/97/1175 +f 603/97/1176 675/97/1176 674/97/1176 +f 675/97/1177 676/97/1177 674/97/1177 +f 598/98/1178 671/97/1178 715/98/1178 +f 600/97/1179 671/97/1179 598/98/1179 +f 594/98/1180 595/98/1180 677/98/1180 +f 595/98/1181 717/98/1181 677/98/1181 +f 595/98/1182 678/98/1182 717/98/1182 +f 678/98/1183 718/98/1183 717/98/1183 +f 678/98/1184 598/98/1184 718/98/1184 +f 598/98/1185 715/98/1185 718/98/1185 +f 679/99/1186 594/98/1186 677/98/1186 +f 592/99/1187 594/98/1187 679/99/1187 +f 590/99/1188 681/99/1188 680/99/1188 +f 591/99/1189 681/99/1189 590/99/1189 +f 591/99/1190 679/99/1190 681/99/1190 +f 592/99/1191 679/99/1191 591/99/1191 +f 570/100/1192 680/99/1192 693/101/1192 +f 590/99/1193 680/99/1193 570/100/1193 +f 682/100/1194 684/100/1194 683/100/1194 +f 684/100/1195 691/100/1195 683/100/1195 +f 684/100/1196 570/100/1196 691/100/1196 +f 570/100/1197 693/101/1197 691/100/1197 +f 658/91/1198 567/102/1198 683/100/1198 +f 567/102/1199 682/100/1199 683/100/1199 +f 659/91/1200 567/102/1200 658/91/1200 +f 705/92/1201 589/92/1201 661/91/1201 +f 589/92/1202 581/91/1202 661/91/1202 +f 639/89/1012 658/91/1012 683/100/1012 +f 686/87/1012 685/87/1012 683/100/1012 +f 641/89/1012 639/89/1012 683/100/1012 +f 625/88/1012 686/87/1012 683/100/1012 +f 644/89/1012 641/89/1012 683/100/1012 +f 690/86/1012 698/86/1012 683/100/1012 +f 698/86/1012 697/88/1012 683/100/1012 +f 697/88/1012 625/88/1012 683/100/1012 +f 685/87/1012 699/87/1012 683/100/1012 +f 699/87/1012 644/89/1012 683/100/1012 +f 687/90/1012 705/92/1012 658/91/1012 +f 688/90/1012 687/90/1012 658/91/1012 +f 689/89/1012 688/90/1012 658/91/1012 +f 639/89/1012 689/89/1012 658/91/1012 +f 692/86/1012 690/86/1012 683/100/1012 +f 691/100/1012 692/86/1012 683/100/1012 +f 705/92/1012 660/91/1012 658/91/1012 +f 705/92/1012 661/91/1012 660/91/1012 +f 693/101/1012 692/86/1012 691/100/1012 +f 694/86/1012 692/86/1012 693/101/1012 +f 680/99/1012 704/86/1012 693/101/1012 +f 704/86/1012 694/86/1012 693/101/1012 +f 647/89/1012 644/89/1012 699/87/1012 +f 637/87/1012 695/87/1012 698/86/1012 +f 695/87/1012 696/88/1012 698/86/1012 +f 696/88/1012 697/88/1012 698/86/1012 +f 607/86/1012 637/87/1012 698/86/1012 +f 654/89/1012 650/89/1012 699/87/1012 +f 710/89/1012 654/89/1012 699/87/1012 +f 700/92/1012 710/89/1012 699/87/1012 +f 716/92/1012 700/92/1012 699/87/1012 +f 701/87/1012 716/92/1012 699/87/1012 +f 650/89/1012 647/89/1012 699/87/1012 +f 702/86/1012 637/87/1012 607/86/1012 +f 703/87/1012 716/92/1012 701/87/1012 +f 609/86/1012 637/87/1012 702/86/1012 +f 645/90/1012 705/92/1012 687/90/1012 +f 628/87/1012 716/92/1012 703/87/1012 +f 612/86/1012 637/87/1012 609/86/1012 +f 648/90/1012 705/92/1012 645/90/1012 +f 716/92/1012 637/87/1012 612/86/1012 +f 680/99/1012 615/86/1012 704/86/1012 +f 706/86/1012 716/92/1012 612/86/1012 +f 631/87/1012 716/92/1012 628/87/1012 +f 707/90/1012 705/92/1012 648/90/1012 +f 617/86/1012 716/92/1012 706/86/1012 +f 708/87/1012 716/92/1012 631/87/1012 +f 651/90/1012 705/92/1012 707/90/1012 +f 700/92/1012 705/92/1012 651/90/1012 +f 680/99/1012 709/86/1012 615/86/1012 +f 652/90/1012 700/92/1012 651/90/1012 +f 620/86/1012 716/92/1012 617/86/1012 +f 634/87/1012 716/92/1012 708/87/1012 +f 680/99/1012 712/86/1012 709/86/1012 +f 711/87/1012 716/92/1012 634/87/1012 +f 713/90/1012 700/92/1012 652/90/1012 +f 680/99/1012 716/92/1012 620/86/1012 +f 712/86/1012 680/99/1012 620/86/1012 +f 700/92/1012 713/90/1012 710/89/1012 +f 637/87/1012 716/92/1012 711/87/1012 +f 681/99/1012 716/92/1012 680/99/1012 +f 676/97/1012 716/92/1012 681/99/1012 +f 679/99/1012 676/97/1012 681/99/1012 +f 714/97/1012 674/97/1012 679/99/1012 +f 671/97/1012 714/97/1012 679/99/1012 +f 674/97/1012 676/97/1012 679/99/1012 +f 715/98/1012 671/97/1012 679/99/1012 +f 718/98/1012 715/98/1012 679/99/1012 +f 676/97/1012 721/96/1012 716/92/1012 +f 677/98/1012 717/98/1012 679/99/1012 +f 717/98/1012 718/98/1012 679/99/1012 +f 721/96/1012 664/93/1012 716/92/1012 +f 721/96/1012 720/95/1012 664/93/1012 +f 720/95/1012 719/94/1012 664/93/1012 +f 719/94/1012 666/94/1012 664/93/1012 +f 719/94/1012 668/94/1012 666/94/1012 +f 721/96/1012 670/95/1012 720/95/1012 +f 721/96/1012 722/95/1012 670/95/1012 +f 724/1/1203 725/1/1203 723/1/1203 +f 725/1/1204 728/1/1204 723/1/1204 +f 728/1/1205 727/1/1205 723/1/1205 +f 724/1/1206 726/1/1206 725/1/1206 +f 789/1/1207 726/1/1207 724/1/1207 +f 725/1/1208 730/1/1208 728/1/1208 +f 726/1/1209 730/1/1209 725/1/1209 +f 789/1/1210 731/1/1210 726/1/1210 +f 790/1/1211 731/1/1211 789/1/1211 +f 728/1/1212 733/1/1212 727/1/1212 +f 790/1/1213 791/1/1213 731/1/1213 +f 727/1/1214 732/1/1214 729/1/1214 +f 733/1/1215 732/1/1215 727/1/1215 +f 726/1/1216 734/1/1216 730/1/1216 +f 726/1/1217 735/1/1217 734/1/1217 +f 731/1/1218 735/1/1218 726/1/1218 +f 734/1/1219 741/1/1219 730/1/1219 +f 732/1/1220 737/1/1220 729/1/1220 +f 728/1/1221 736/1/1221 733/1/1221 +f 730/1/1222 736/1/1222 728/1/1222 +f 731/1/1223 738/1/1223 735/1/1223 +f 740/1/1224 738/1/1224 731/1/1224 +f 791/1/1225 740/1/1225 731/1/1225 +f 741/1/1226 736/1/1226 730/1/1226 +f 733/1/1227 739/1/1227 732/1/1227 +f 736/1/1228 739/1/1228 733/1/1228 +f 738/1/1229 734/1/1229 735/1/1229 +f 791/1/1230 792/1/1230 740/1/1230 +f 742/1/1231 747/1/1231 744/1/1231 +f 745/1/1232 749/1/1232 742/1/1232 +f 746/1/1233 749/1/1233 745/1/1233 +f 743/1/1234 746/1/1234 745/1/1234 +f 764/1/1235 746/1/1235 743/1/1235 +f 744/1/1236 747/1/1236 751/1/1236 +f 742/1/1237 748/1/1237 747/1/1237 +f 749/1/1238 753/1/1238 742/1/1238 +f 748/1/1239 752/1/1239 747/1/1239 +f 742/1/1240 753/1/1240 748/1/1240 +f 764/1/1241 750/1/1241 746/1/1241 +f 747/1/1242 755/1/1242 751/1/1242 +f 752/1/1243 755/1/1243 747/1/1243 +f 749/1/1244 758/1/1244 753/1/1244 +f 746/1/1245 756/1/1245 749/1/1245 +f 750/1/1246 754/1/1246 746/1/1246 +f 753/1/1247 761/1/1247 748/1/1247 +f 748/1/1248 761/1/1248 752/1/1248 +f 749/1/1249 756/1/1249 758/1/1249 +f 746/1/1250 754/1/1250 756/1/1250 +f 753/1/1251 763/1/1251 761/1/1251 +f 750/1/1252 757/1/1252 754/1/1252 +f 752/1/1253 760/1/1253 755/1/1253 +f 759/1/1254 757/1/1254 750/1/1254 +f 752/1/1255 762/1/1255 760/1/1255 +f 761/1/1256 762/1/1256 752/1/1256 +f 758/1/1257 763/1/1257 753/1/1257 +f 759/1/1258 793/1/1258 757/1/1258 +f 766/1/1259 764/1/1259 743/1/1259 +f 768/1/1260 764/1/1260 766/1/1260 +f 768/1/1261 750/1/1261 764/1/1261 +f 773/1/1262 750/1/1262 768/1/1262 +f 773/1/1263 759/1/1263 750/1/1263 +f 798/1/1264 759/1/1264 773/1/1264 +f 798/1/1265 793/1/1265 759/1/1265 +f 767/1/1266 769/1/1266 765/1/1266 +f 769/1/1267 770/1/1267 765/1/1267 +f 770/1/1268 766/1/1268 765/1/1268 +f 770/1/1269 771/1/1269 766/1/1269 +f 771/1/1270 768/1/1270 766/1/1270 +f 813/1/1271 769/1/1271 767/1/1271 +f 771/1/1272 773/1/1272 768/1/1272 +f 772/1/1273 770/1/1273 769/1/1273 +f 813/1/1274 772/1/1274 769/1/1274 +f 772/1/1275 797/1/1275 770/1/1275 +f 797/1/1276 771/1/1276 770/1/1276 +f 797/1/1277 774/1/1277 771/1/1277 +f 774/1/1278 773/1/1278 771/1/1278 +f 841/1/1279 772/1/1279 813/1/1279 +f 796/1/1280 797/1/1280 772/1/1280 +f 774/1/1281 798/1/1281 773/1/1281 +f 841/1/1282 796/1/1282 772/1/1282 +f 797/1/1283 842/1/1283 774/1/1283 +f 842/1/1284 798/1/1284 774/1/1284 +f 778/1/1285 779/1/1285 776/1/1285 +f 777/1/1286 776/1/1286 775/1/1286 +f 777/1/1287 778/1/1287 776/1/1287 +f 780/1/1288 777/1/1288 775/1/1288 +f 777/1/1289 781/1/1289 778/1/1289 +f 781/1/1290 779/1/1290 778/1/1290 +f 780/1/1291 782/1/1291 777/1/1291 +f 782/1/1292 781/1/1292 777/1/1292 +f 781/1/1293 784/1/1293 779/1/1293 +f 782/1/1294 783/1/1294 781/1/1294 +f 823/1/1295 782/1/1295 780/1/1295 +f 897/1/1296 784/1/1296 781/1/1296 +f 822/1/1297 823/1/1297 780/1/1297 +f 783/1/1298 825/1/1298 781/1/1298 +f 825/1/1299 897/1/1299 781/1/1299 +f 823/1/1300 783/1/1300 782/1/1300 +f 824/1/1301 825/1/1301 783/1/1301 +f 824/1/1302 783/1/1302 823/1/1302 +f 779/1/1303 785/1/1303 723/1/1303 +f 776/1/1304 779/1/1304 723/1/1304 +f 785/1/1305 819/1/1305 723/1/1305 +f 819/1/1306 724/1/1306 723/1/1306 +f 819/1/1307 786/1/1307 724/1/1307 +f 786/1/1308 818/1/1308 724/1/1308 +f 818/1/1309 789/1/1309 724/1/1309 +f 787/1/1310 789/1/1310 818/1/1310 +f 787/1/1311 744/1/1311 789/1/1311 +f 788/1/1312 742/1/1312 787/1/1312 +f 742/1/1313 744/1/1313 787/1/1313 +f 816/1/1314 742/1/1314 788/1/1314 +f 745/1/1315 742/1/1315 816/1/1315 +f 743/1/1316 745/1/1316 816/1/1316 +f 817/1/1317 743/1/1317 816/1/1317 +f 767/1/1318 766/1/1318 817/1/1318 +f 766/1/1319 743/1/1319 817/1/1319 +f 765/1/1320 766/1/1320 767/1/1320 +f 775/1/1321 776/1/1321 723/1/1321 +f 727/1/1322 775/1/1322 723/1/1322 +f 780/1/1323 775/1/1323 727/1/1323 +f 729/1/1324 780/1/1324 727/1/1324 +f 822/1/1325 780/1/1325 729/1/1325 +f 737/1/1326 822/1/1326 729/1/1326 +f 751/1/1327 790/1/1327 789/1/1327 +f 744/1/1328 751/1/1328 789/1/1328 +f 751/1/1329 755/1/1329 790/1/1329 +f 755/1/1330 791/1/1330 790/1/1330 +f 760/1/1331 792/1/1331 791/1/1331 +f 755/1/1332 760/1/1332 791/1/1332 +f 798/1/1333 837/1/1333 793/1/1333 +f 826/1/1334 837/1/1334 798/1/1334 +f 871/1/1335 886/1/1335 885/1/1335 +f 871/1/1336 866/1/1336 886/1/1336 +f 866/1/1337 868/1/1337 886/1/1337 +f 868/1/1338 799/1/1338 886/1/1338 +f 868/1/1339 869/1/1339 799/1/1339 +f 869/1/1340 865/1/1340 799/1/1340 +f 865/1/1341 887/1/1341 799/1/1341 +f 865/1/1342 867/1/1342 887/1/1342 +f 867/1/1343 855/1/1343 887/1/1343 +f 855/1/1344 888/1/1344 887/1/1344 +f 855/1/1345 800/1/1345 888/1/1345 +f 855/1/1346 801/1/1346 800/1/1346 +f 856/1/1347 802/1/1347 801/1/1347 +f 855/1/1348 856/1/1348 801/1/1348 +f 856/1/1349 853/1/1349 802/1/1349 +f 853/1/1350 803/1/1350 802/1/1350 +f 853/1/1351 857/1/1351 803/1/1351 +f 857/1/1352 854/1/1352 803/1/1352 +f 854/1/1353 804/1/1353 803/1/1353 +f 854/1/1354 850/1/1354 804/1/1354 +f 807/1/1355 892/1/1355 808/1/1355 +f 807/1/1356 806/1/1356 892/1/1356 +f 806/1/1357 810/1/1357 892/1/1357 +f 806/1/1358 809/1/1358 810/1/1358 +f 809/1/1359 894/1/1359 810/1/1359 +f 809/1/1360 795/1/1360 894/1/1360 +f 795/1/1361 896/1/1361 894/1/1361 +f 795/1/1362 794/1/1362 896/1/1362 +f 794/1/1363 811/1/1363 896/1/1363 +f 812/1/1364 767/1/1364 817/1/1364 +f 812/1/1365 814/1/1365 767/1/1365 +f 814/1/1366 813/1/1366 767/1/1366 +f 814/1/1367 841/1/1367 813/1/1367 +f 815/1/1368 788/1/1368 787/1/1368 +f 815/1/1369 893/1/1369 788/1/1369 +f 893/1/1370 816/1/1370 788/1/1370 +f 893/1/1371 895/1/1371 816/1/1371 +f 895/1/1372 817/1/1372 816/1/1372 +f 895/1/1373 812/1/1373 817/1/1373 +f 815/1/1374 787/1/1374 818/1/1374 +f 821/1/1375 815/1/1375 818/1/1375 +f 889/1/1376 819/1/1376 785/1/1376 +f 889/1/1377 891/1/1377 819/1/1377 +f 891/1/1378 786/1/1378 819/1/1378 +f 891/1/1379 820/1/1379 786/1/1379 +f 821/1/1380 818/1/1380 786/1/1380 +f 820/1/1381 821/1/1381 786/1/1381 +f 898/1/1382 889/1/1382 785/1/1382 +f 779/1/1383 898/1/1383 785/1/1383 +f 784/1/1384 898/1/1384 779/1/1384 +f 909/1/1385 899/1/1385 737/1/1385 +f 899/1/1386 822/1/1386 737/1/1386 +f 923/1/1387 924/1/1387 792/1/1387 +f 760/1/1388 923/1/1388 792/1/1388 +f 732/1/1389 909/1/1389 737/1/1389 +f 914/1/1390 909/1/1390 732/1/1390 +f 910/1/1391 914/1/1391 732/1/1391 +f 739/1/1392 910/1/1392 732/1/1392 +f 736/1/1393 910/1/1393 739/1/1393 +f 913/1/1394 910/1/1394 736/1/1394 +f 912/1/1395 913/1/1395 736/1/1395 +f 741/1/1396 912/1/1396 736/1/1396 +f 911/1/1397 912/1/1397 741/1/1397 +f 734/1/1398 911/1/1398 741/1/1398 +f 738/1/1399 908/1/1399 734/1/1399 +f 908/1/1400 911/1/1400 734/1/1400 +f 925/1/1401 908/1/1401 738/1/1401 +f 740/1/1402 925/1/1402 738/1/1402 +f 924/1/1403 925/1/1403 740/1/1403 +f 792/1/1404 924/1/1404 740/1/1404 +f 762/1/1405 926/1/1405 760/1/1405 +f 926/1/1406 923/1/1406 760/1/1406 +f 930/1/1407 926/1/1407 762/1/1407 +f 761/1/1408 930/1/1408 762/1/1408 +f 928/1/1409 930/1/1409 761/1/1409 +f 763/1/1410 928/1/1410 761/1/1410 +f 927/1/1411 928/1/1411 763/1/1411 +f 758/1/1412 927/1/1412 763/1/1412 +f 932/1/1413 927/1/1413 758/1/1413 +f 756/1/1414 929/1/1414 758/1/1414 +f 929/1/1415 932/1/1415 758/1/1415 +f 754/1/1416 929/1/1416 756/1/1416 +f 936/1/1417 929/1/1417 754/1/1417 +f 757/1/1418 938/1/1418 754/1/1418 +f 938/1/1419 936/1/1419 754/1/1419 +f 837/1/1420 938/1/1420 757/1/1420 +f 793/1/1421 837/1/1421 757/1/1421 +f 827/1/1422 828/1/1422 826/1/1422 +f 830/1/1423 831/1/1423 827/1/1423 +f 831/1/1424 828/1/1424 827/1/1424 +f 829/1/1425 833/1/1425 830/1/1425 +f 831/1/1426 832/1/1426 828/1/1426 +f 843/1/1427 834/1/1427 829/1/1427 +f 834/1/1428 833/1/1428 829/1/1428 +f 833/1/1429 831/1/1429 830/1/1429 +f 836/1/1430 832/1/1430 831/1/1430 +f 833/1/1431 836/1/1431 831/1/1431 +f 835/1/1432 836/1/1432 833/1/1432 +f 834/1/1433 835/1/1433 833/1/1433 +f 828/1/1434 837/1/1434 826/1/1434 +f 828/1/1435 838/1/1435 837/1/1435 +f 832/1/1436 838/1/1436 828/1/1436 +f 840/1/1437 839/1/1437 811/1/1437 +f 794/1/1438 840/1/1438 811/1/1438 +f 814/1/1439 843/1/1439 841/1/1439 +f 829/1/1440 796/1/1440 841/1/1440 +f 843/1/1441 829/1/1441 841/1/1441 +f 829/1/1442 830/1/1442 796/1/1442 +f 830/1/1443 797/1/1443 796/1/1443 +f 830/1/1444 827/1/1444 797/1/1444 +f 827/1/1445 842/1/1445 797/1/1445 +f 827/1/1446 826/1/1446 842/1/1446 +f 826/1/1447 798/1/1447 842/1/1447 +f 941/1/1448 942/1/1448 843/1/1448 +f 942/1/1449 834/1/1449 843/1/1449 +f 942/1/1450 835/1/1450 834/1/1450 +f 942/1/1451 943/1/1451 835/1/1451 +f 943/1/1452 945/1/1452 835/1/1452 +f 945/1/1453 836/1/1453 835/1/1453 +f 804/1/1454 844/1/1454 949/1/1454 +f 850/1/1455 844/1/1455 804/1/1455 +f 848/1/1456 847/1/1456 844/1/1456 +f 851/1/1457 848/1/1457 844/1/1457 +f 845/1/1458 848/1/1458 851/1/1458 +f 849/1/1459 848/1/1459 845/1/1459 +f 846/1/1460 847/1/1460 848/1/1460 +f 962/1/1461 849/1/1461 845/1/1461 +f 849/1/1462 846/1/1462 848/1/1462 +f 846/1/1463 954/1/1463 847/1/1463 +f 849/1/1464 957/1/1464 846/1/1464 +f 958/1/1465 957/1/1465 849/1/1465 +f 962/1/1466 958/1/1466 849/1/1466 +f 851/1/1467 844/1/1467 850/1/1467 +f 863/1/1468 851/1/1468 850/1/1468 +f 845/1/1469 851/1/1469 863/1/1469 +f 864/1/1470 845/1/1470 863/1/1470 +f 962/1/1471 845/1/1471 864/1/1471 +f 852/1/1472 962/1/1472 864/1/1472 +f 858/1/1473 857/1/1473 853/1/1473 +f 859/1/1474 856/1/1474 855/1/1474 +f 856/1/1475 858/1/1475 853/1/1475 +f 857/1/1476 861/1/1476 854/1/1476 +f 858/1/1477 862/1/1477 857/1/1477 +f 860/1/1478 858/1/1478 856/1/1478 +f 859/1/1479 860/1/1479 856/1/1479 +f 862/1/1480 861/1/1480 857/1/1480 +f 863/1/1481 850/1/1481 854/1/1481 +f 861/1/1482 863/1/1482 854/1/1482 +f 860/1/1483 862/1/1483 858/1/1483 +f 864/1/1484 861/1/1484 862/1/1484 +f 860/1/1485 852/1/1485 862/1/1485 +f 864/1/1486 863/1/1486 861/1/1486 +f 852/1/1487 864/1/1487 862/1/1487 +f 867/1/1488 859/1/1488 855/1/1488 +f 870/1/1489 859/1/1489 867/1/1489 +f 872/1/1490 859/1/1490 870/1/1490 +f 872/1/1491 860/1/1491 859/1/1491 +f 865/1/1492 870/1/1492 867/1/1492 +f 869/1/1493 870/1/1493 865/1/1493 +f 871/1/1494 873/1/1494 866/1/1494 +f 873/1/1495 868/1/1495 866/1/1495 +f 868/1/1496 874/1/1496 869/1/1496 +f 869/1/1497 872/1/1497 870/1/1497 +f 873/1/1498 874/1/1498 868/1/1498 +f 874/1/1499 872/1/1499 869/1/1499 +f 876/1/1500 873/1/1500 871/1/1500 +f 961/1/1501 872/1/1501 874/1/1501 +f 873/1/1502 961/1/1502 874/1/1502 +f 876/1/1503 875/1/1503 873/1/1503 +f 875/1/1504 961/1/1504 873/1/1504 +f 877/1/1505 879/1/1505 871/1/1505 +f 879/1/1506 876/1/1506 871/1/1506 +f 879/1/1507 875/1/1507 876/1/1507 +f 879/1/1508 882/1/1508 875/1/1508 +f 882/1/1509 961/1/1509 875/1/1509 +f 877/1/1510 871/1/1510 965/1/1510 +f 871/1/1511 885/1/1511 965/1/1511 +f 878/1/1512 879/1/1512 877/1/1512 +f 880/1/1513 878/1/1513 877/1/1513 +f 878/1/1514 883/1/1514 879/1/1514 +f 880/1/1515 883/1/1515 878/1/1515 +f 883/1/1516 882/1/1516 879/1/1516 +f 881/1/1517 883/1/1517 880/1/1517 +f 966/1/1518 968/1/1518 881/1/1518 +f 968/1/1519 883/1/1519 881/1/1519 +f 967/1/1520 968/1/1520 966/1/1520 +f 968/1/1521 970/1/1521 883/1/1521 +f 970/1/1522 882/1/1522 883/1/1522 +f 970/1/1523 969/1/1523 882/1/1523 +f 805/1/1524 807/1/1524 808/1/1524 +f 890/1/1525 805/1/1525 808/1/1525 +f 898/1/1012 808/1/1012 889/1/1012 +f 808/1/1012 891/1/1012 889/1/1012 +f 890/1/1012 808/1/1012 898/1/1012 +f 808/1/1012 892/1/1012 891/1/1012 +f 892/1/1012 820/1/1012 891/1/1012 +f 892/1/1012 810/1/1012 820/1/1012 +f 810/1/1012 821/1/1012 820/1/1012 +f 810/1/1012 815/1/1012 821/1/1012 +f 894/1/1012 815/1/1012 810/1/1012 +f 893/1/1012 815/1/1012 894/1/1012 +f 896/1/1012 893/1/1012 894/1/1012 +f 895/1/1012 893/1/1012 896/1/1012 +f 811/1/1012 895/1/1012 896/1/1012 +f 812/1/1012 895/1/1012 811/1/1012 +f 839/1/1012 812/1/1012 811/1/1012 +f 814/1/1012 812/1/1012 839/1/1012 +f 899/1/1526 823/1/1526 822/1/1526 +f 899/1/1527 900/1/1527 823/1/1527 +f 900/1/1528 824/1/1528 823/1/1528 +f 900/1/1529 901/1/1529 824/1/1529 +f 901/1/1530 825/1/1530 824/1/1530 +f 901/1/1531 902/1/1531 825/1/1531 +f 902/1/1532 897/1/1532 825/1/1532 +f 902/1/1533 903/1/1533 897/1/1533 +f 898/1/1534 784/1/1534 897/1/1534 +f 903/1/1535 898/1/1535 897/1/1535 +f 978/1/1536 900/1/1536 899/1/1536 +f 978/1/1537 904/1/1537 900/1/1537 +f 904/1/1538 901/1/1538 900/1/1538 +f 905/1/1539 902/1/1539 901/1/1539 +f 904/1/1540 905/1/1540 901/1/1540 +f 905/1/1541 903/1/1541 902/1/1541 +f 977/1/1542 904/1/1542 978/1/1542 +f 905/1/1543 906/1/1543 903/1/1543 +f 907/1/1544 905/1/1544 904/1/1544 +f 977/1/1545 907/1/1545 904/1/1545 +f 907/1/1546 906/1/1546 905/1/1546 +f 973/1/1547 972/1/1547 903/1/1547 +f 906/1/1548 973/1/1548 903/1/1548 +f 974/1/1549 973/1/1549 906/1/1549 +f 907/1/1550 974/1/1550 906/1/1550 +f 1010/1/1551 974/1/1551 907/1/1551 +f 977/1/1552 1010/1/1552 907/1/1552 +f 915/1/1553 899/1/1553 909/1/1553 +f 978/1/1554 899/1/1554 915/1/1554 +f 921/1/1555 978/1/1555 915/1/1555 +f 924/1/1556 979/1/1556 925/1/1556 +f 925/1/1557 980/1/1557 908/1/1557 +f 979/1/1558 980/1/1558 925/1/1558 +f 918/1/1559 911/1/1559 908/1/1559 +f 980/1/1560 918/1/1560 908/1/1560 +f 914/1/1561 915/1/1561 909/1/1561 +f 913/1/1562 919/1/1562 910/1/1562 +f 920/1/1563 912/1/1563 911/1/1563 +f 919/1/1564 914/1/1564 910/1/1564 +f 918/1/1565 920/1/1565 911/1/1565 +f 916/1/1566 913/1/1566 912/1/1566 +f 920/1/1567 916/1/1567 912/1/1567 +f 916/1/1568 919/1/1568 913/1/1568 +f 917/1/1569 915/1/1569 914/1/1569 +f 916/1/1570 981/1/1570 919/1/1570 +f 919/1/1571 917/1/1571 914/1/1571 +f 920/1/1572 981/1/1572 916/1/1572 +f 919/1/1573 922/1/1573 917/1/1573 +f 981/1/1574 922/1/1574 919/1/1574 +f 917/1/1575 921/1/1575 915/1/1575 +f 926/1/1576 931/1/1576 923/1/1576 +f 931/1/1577 924/1/1577 923/1/1577 +f 931/1/1578 979/1/1578 924/1/1578 +f 930/1/1579 931/1/1579 926/1/1579 +f 930/1/1580 935/1/1580 931/1/1580 +f 933/1/1581 928/1/1581 927/1/1581 +f 932/1/1582 933/1/1582 927/1/1582 +f 928/1/1583 935/1/1583 930/1/1583 +f 933/1/1584 982/1/1584 928/1/1584 +f 929/1/1585 936/1/1585 937/1/1585 +f 929/1/1586 934/1/1586 932/1/1586 +f 932/1/1587 934/1/1587 933/1/1587 +f 937/1/1588 934/1/1588 929/1/1588 +f 982/1/1589 935/1/1589 928/1/1589 +f 838/1/1590 938/1/1590 837/1/1590 +f 933/1/1591 939/1/1591 982/1/1591 +f 934/1/1592 939/1/1592 933/1/1592 +f 937/1/1593 940/1/1593 934/1/1593 +f 938/1/1594 984/1/1594 936/1/1594 +f 940/1/1595 939/1/1595 934/1/1595 +f 838/1/1596 984/1/1596 938/1/1596 +f 936/1/1597 940/1/1597 937/1/1597 +f 984/1/1598 940/1/1598 936/1/1598 +f 945/1/1599 985/1/1599 838/1/1599 +f 832/1/1600 945/1/1600 838/1/1600 +f 836/1/1601 945/1/1601 832/1/1601 +f 843/1/1602 814/1/1602 839/1/1602 +f 840/1/1603 843/1/1603 839/1/1603 +f 988/1/1604 840/1/1604 953/1/1604 +f 988/1/1605 941/1/1605 840/1/1605 +f 941/1/1606 843/1/1606 840/1/1606 +f 944/1/1607 942/1/1607 941/1/1607 +f 943/1/1608 942/1/1608 944/1/1608 +f 946/1/1609 943/1/1609 944/1/1609 +f 947/1/1610 945/1/1610 943/1/1610 +f 946/1/1611 947/1/1611 943/1/1611 +f 948/1/1612 947/1/1612 946/1/1612 +f 844/1/1613 847/1/1613 949/1/1613 +f 847/1/1614 950/1/1614 949/1/1614 +f 847/1/1615 954/1/1615 950/1/1615 +f 955/1/1616 951/1/1616 950/1/1616 +f 954/1/1617 955/1/1617 950/1/1617 +f 955/1/1618 987/1/1618 951/1/1618 +f 987/1/1619 952/1/1619 951/1/1619 +f 987/1/1620 989/1/1620 952/1/1620 +f 989/1/1621 986/1/1621 952/1/1621 +f 986/1/1622 953/1/1622 952/1/1622 +f 986/1/1623 988/1/1623 953/1/1623 +f 846/1/1624 956/1/1624 954/1/1624 +f 956/1/1625 955/1/1625 954/1/1625 +f 956/1/1626 987/1/1626 955/1/1626 +f 990/1/1627 987/1/1627 956/1/1627 +f 959/1/1628 956/1/1628 846/1/1628 +f 957/1/1629 959/1/1629 846/1/1629 +f 959/1/1630 990/1/1630 956/1/1630 +f 960/1/1631 959/1/1631 957/1/1631 +f 958/1/1632 960/1/1632 957/1/1632 +f 962/1/1633 860/1/1633 872/1/1633 +f 961/1/1634 962/1/1634 872/1/1634 +f 962/1/1635 852/1/1635 860/1/1635 +f 882/1/1636 962/1/1636 961/1/1636 +f 958/1/1637 962/1/1637 882/1/1637 +f 969/1/1638 958/1/1638 882/1/1638 +f 1007/1/1639 998/1/1639 963/1/1639 +f 998/1/1640 997/1/1640 963/1/1640 +f 997/1/1641 964/1/1641 963/1/1641 +f 997/1/1642 999/1/1642 964/1/1642 +f 999/1/1643 967/1/1643 964/1/1643 +f 967/1/1644 884/1/1644 964/1/1644 +f 967/1/1645 966/1/1645 884/1/1645 +f 966/1/1646 881/1/1646 884/1/1646 +f 881/1/1647 965/1/1647 884/1/1647 +f 881/1/1648 880/1/1648 965/1/1648 +f 880/1/1649 877/1/1649 965/1/1649 +f 1003/1/1650 968/1/1650 967/1/1650 +f 999/1/1651 1003/1/1651 967/1/1651 +f 1003/1/1652 970/1/1652 968/1/1652 +f 1000/1/1653 1003/1/1653 999/1/1653 +f 970/1/1654 971/1/1654 969/1/1654 +f 1003/1/1655 971/1/1655 970/1/1655 +f 1006/1/1656 971/1/1656 1003/1/1656 +f 805/1/1657 890/1/1657 898/1/1657 +f 903/1/1658 805/1/1658 898/1/1658 +f 903/1/1659 963/1/1659 805/1/1659 +f 903/1/1660 972/1/1660 963/1/1660 +f 972/1/1661 1007/1/1661 963/1/1661 +f 1008/1/1662 972/1/1662 973/1/1662 +f 974/1/1663 1008/1/1663 973/1/1663 +f 974/1/1664 975/1/1664 1008/1/1664 +f 1010/1/1665 976/1/1665 974/1/1665 +f 976/1/1666 975/1/1666 974/1/1666 +f 977/1/1667 978/1/1667 921/1/1667 +f 1013/1/1668 1010/1/1668 921/1/1668 +f 1010/1/1669 977/1/1669 921/1/1669 +f 1018/1/1670 980/1/1670 979/1/1670 +f 1018/1/1671 918/1/1671 980/1/1671 +f 1018/1/1672 1016/1/1672 918/1/1672 +f 1016/1/1673 1011/1/1673 918/1/1673 +f 1011/1/1674 920/1/1674 918/1/1674 +f 1011/1/1675 981/1/1675 920/1/1675 +f 1011/1/1676 1014/1/1676 981/1/1676 +f 917/1/1677 1013/1/1677 921/1/1677 +f 1014/1/1678 922/1/1678 981/1/1678 +f 922/1/1679 1013/1/1679 917/1/1679 +f 1014/1/1680 1013/1/1680 922/1/1680 +f 1020/1/1681 1018/1/1681 979/1/1681 +f 931/1/1682 1020/1/1682 979/1/1682 +f 935/1/1683 1020/1/1683 931/1/1683 +f 1022/1/1684 1020/1/1684 935/1/1684 +f 982/1/1685 1022/1/1685 935/1/1685 +f 983/1/1686 1022/1/1686 982/1/1686 +f 939/1/1687 983/1/1687 982/1/1687 +f 940/1/1688 983/1/1688 939/1/1688 +f 1023/1/1689 983/1/1689 940/1/1689 +f 985/1/1690 984/1/1690 838/1/1690 +f 984/1/1691 1023/1/1691 940/1/1691 +f 985/1/1692 1023/1/1692 984/1/1692 +f 947/1/1693 985/1/1693 945/1/1693 +f 947/1/1694 1026/1/1694 985/1/1694 +f 947/1/1695 948/1/1695 1026/1/1695 +f 944/1/1696 941/1/1696 988/1/1696 +f 993/1/1697 944/1/1697 988/1/1697 +f 994/1/1698 946/1/1698 993/1/1698 +f 946/1/1699 944/1/1699 993/1/1699 +f 948/1/1700 946/1/1700 994/1/1700 +f 1028/1/1701 948/1/1701 994/1/1701 +f 991/1/1702 986/1/1702 989/1/1702 +f 991/1/1703 988/1/1703 986/1/1703 +f 990/1/1704 989/1/1704 987/1/1704 +f 991/1/1705 993/1/1705 988/1/1705 +f 959/1/1706 991/1/1706 989/1/1706 +f 990/1/1707 959/1/1707 989/1/1707 +f 992/1/1708 993/1/1708 991/1/1708 +f 959/1/1709 992/1/1709 991/1/1709 +f 960/1/1710 995/1/1710 959/1/1710 +f 995/1/1711 992/1/1711 959/1/1711 +f 1028/1/1712 994/1/1712 993/1/1712 +f 992/1/1713 1028/1/1713 993/1/1713 +f 996/1/1714 992/1/1714 995/1/1714 +f 996/1/1715 1028/1/1715 992/1/1715 +f 971/1/1716 960/1/1716 969/1/1716 +f 960/1/1717 958/1/1717 969/1/1717 +f 1006/1/1718 960/1/1718 971/1/1718 +f 995/1/1719 960/1/1719 1006/1/1719 +f 998/1/1720 1002/1/1720 997/1/1720 +f 1000/1/1721 999/1/1721 997/1/1721 +f 1001/1/1722 998/1/1722 1007/1/1722 +f 1001/1/1723 1004/1/1723 998/1/1723 +f 1004/1/1724 1002/1/1724 998/1/1724 +f 1002/1/1725 1000/1/1725 997/1/1725 +f 1009/1/1726 1004/1/1726 1001/1/1726 +f 1002/1/1727 1003/1/1727 1000/1/1727 +f 1004/1/1728 1005/1/1728 1002/1/1728 +f 1005/1/1729 1003/1/1729 1002/1/1729 +f 1005/1/1730 1006/1/1730 1003/1/1730 +f 1009/1/1731 1027/1/1731 1004/1/1731 +f 1027/1/1732 1005/1/1732 1004/1/1732 +f 1027/1/1733 1006/1/1733 1005/1/1733 +f 1008/1/1734 1007/1/1734 972/1/1734 +f 1008/1/1735 1001/1/1735 1007/1/1735 +f 975/1/1736 1001/1/1736 1008/1/1736 +f 975/1/1737 1009/1/1737 1001/1/1737 +f 976/1/1738 1009/1/1738 975/1/1738 +f 976/1/1739 1027/1/1739 1009/1/1739 +f 976/1/1740 1010/1/1740 1013/1/1740 +f 1015/1/1741 976/1/1741 1013/1/1741 +f 1018/1/1742 1019/1/1742 1016/1/1742 +f 1012/1/1743 1019/1/1743 1018/1/1743 +f 1016/1/1744 1014/1/1744 1011/1/1744 +f 1014/1/1745 1015/1/1745 1013/1/1745 +f 1016/1/1746 1017/1/1746 1014/1/1746 +f 1019/1/1747 1017/1/1747 1016/1/1747 +f 1014/1/1748 1017/1/1748 1015/1/1748 +f 1020/1/1749 1012/1/1749 1018/1/1749 +f 1021/1/1750 1012/1/1750 1020/1/1750 +f 1019/1/1751 1012/1/1751 1021/1/1751 +f 1021/1/1752 1024/1/1752 1019/1/1752 +f 1022/1/1753 1021/1/1753 1020/1/1753 +f 1023/1/1754 1025/1/1754 983/1/1754 +f 983/1/1755 1024/1/1755 1022/1/1755 +f 1025/1/1756 1024/1/1756 983/1/1756 +f 1022/1/1757 1024/1/1757 1021/1/1757 +f 1026/1/1758 1025/1/1758 1023/1/1758 +f 985/1/1759 1026/1/1759 1023/1/1759 +f 1017/1/1760 976/1/1760 1015/1/1760 +f 1017/1/1761 1027/1/1761 976/1/1761 +f 1017/1/1762 1019/1/1762 1027/1/1762 +f 1024/1/1763 995/1/1763 1019/1/1763 +f 995/1/1764 1006/1/1764 1019/1/1764 +f 1006/1/1765 1027/1/1765 1019/1/1765 +f 1024/1/1766 996/1/1766 995/1/1766 +f 1028/1/1767 996/1/1767 1024/1/1767 +f 1026/1/1768 1028/1/1768 1024/1/1768 +f 1026/1/1769 948/1/1769 1028/1/1769 +f 1025/1/1770 1026/1/1770 1024/1/1770 +f 1046/1/1771 1030/1/1771 1045/1/1771 +f 1056/1/1772 1030/1/1772 1046/1/1772 +f 1031/1/1773 1056/1/1773 1046/1/1773 +f 1032/1/1774 1031/1/1774 1046/1/1774 +f 1045/1/1775 1033/1/1775 1042/1/1775 +f 1030/1/1776 1033/1/1776 1045/1/1776 +f 1036/1/1777 1034/1/1777 1035/1/1777 +f 1042/1/1778 1036/1/1778 1035/1/1778 +f 1033/1/1779 1036/1/1779 1042/1/1779 +f 1066/1/1780 1037/1/1780 1067/1/1780 +f 1066/1/1781 1060/1/1781 1037/1/1781 +f 1039/1/1782 1031/1/1782 1032/1/1782 +f 1038/1/1783 1039/1/1783 1032/1/1783 +f 1035/1/423 1080/1/423 1077/1/423 +f 1035/1/423 1047/1/423 1080/1/423 +f 1040/1/423 1035/1/423 1077/1/423 +f 1042/1/423 1035/1/423 1040/1/423 +f 1041/1/423 1042/1/423 1040/1/423 +f 1043/1/423 1042/1/423 1041/1/423 +f 1045/1/423 1042/1/423 1043/1/423 +f 1044/1/423 1045/1/423 1043/1/423 +f 1044/1/423 1074/1/423 1045/1/423 +f 1074/1/423 1046/1/423 1045/1/423 +f 1074/1/423 1076/1/423 1046/1/423 +f 1076/1/423 1032/1/423 1046/1/423 +f 1076/1/423 1038/1/423 1032/1/423 +f 1076/1/423 1073/1/423 1038/1/423 +f 1048/1/1784 1047/1/1784 1035/1/1784 +f 1034/1/1785 1048/1/1785 1035/1/1785 +f 1086/1/1786 1054/1/1786 1061/1/1786 +f 1058/1/1787 1054/1/1787 1086/1/1787 +f 1053/1/1788 1054/1/1788 1058/1/1788 +f 1059/1/1789 1053/1/1789 1058/1/1789 +f 1060/1/1790 1053/1/1790 1059/1/1790 +f 1037/1/1791 1060/1/1791 1059/1/1791 +f 1061/1/1792 1055/1/1792 1084/1/1792 +f 1054/1/1793 1055/1/1793 1061/1/1793 +f 1051/1/1794 1062/1/1794 1085/1/1794 +f 1062/1/1795 1063/1/1795 1085/1/1795 +f 1062/1/1796 1064/1/1796 1063/1/1796 +f 1062/1/1797 1052/1/1797 1064/1/1797 +f 1052/1/1798 1065/1/1798 1064/1/1798 +f 1052/1/1799 1066/1/1799 1065/1/1799 +f 1066/1/1800 1067/1/1800 1065/1/1800 +f 1055/1/1801 1092/1/1801 1084/1/1801 +f 1055/1/1802 1068/1/1802 1092/1/1802 +f 1068/1/1803 1070/1/1803 1092/1/1803 +f 1068/1/1804 1069/1/1804 1070/1/1804 +f 1069/1/1805 1071/1/1805 1070/1/1805 +f 1069/1/1806 1057/1/1806 1071/1/1806 +f 1038/1/1807 1072/1/1807 1071/1/1807 +f 1039/1/1808 1038/1/1808 1071/1/1808 +f 1057/1/1809 1039/1/1809 1071/1/1809 +f 1038/1/1810 1073/1/1810 1072/1/1810 +f 1072/1/1811 1073/1/1811 1093/1/1811 +f 1073/1/1812 1076/1/1812 1093/1/1812 +f 1074/1/1813 1044/1/1813 1094/1/1813 +f 1075/1/1814 1074/1/1814 1094/1/1814 +f 1076/1/1815 1074/1/1815 1075/1/1815 +f 1093/1/1816 1076/1/1816 1075/1/1816 +f 1094/1/1817 1044/1/1817 1089/1/1817 +f 1044/1/1818 1043/1/1818 1089/1/1818 +f 1088/1/1819 1077/1/1819 1087/1/1819 +f 1040/1/1820 1077/1/1820 1088/1/1820 +f 1078/1/1821 1040/1/1821 1088/1/1821 +f 1041/1/1822 1040/1/1822 1078/1/1822 +f 1089/1/1823 1041/1/1823 1078/1/1823 +f 1043/1/1824 1041/1/1824 1089/1/1824 +f 1077/1/1825 1079/1/1825 1087/1/1825 +f 1077/1/1826 1080/1/1826 1079/1/1826 +f 1080/1/1827 1081/1/1827 1079/1/1827 +f 1047/1/1828 1049/1/1828 1081/1/1828 +f 1080/1/1829 1047/1/1829 1081/1/1829 +f 1048/1/1830 1049/1/1830 1047/1/1830 +f 1049/1/1831 1090/1/1831 1081/1/1831 +f 1049/1/1832 1082/1/1832 1090/1/1832 +f 1082/1/1833 1083/1/1833 1090/1/1833 +f 1082/1/1834 1050/1/1834 1083/1/1834 +f 1050/1/1835 1051/1/1835 1083/1/1835 +f 1051/1/1836 1091/1/1836 1083/1/1836 +f 1051/1/1837 1085/1/1837 1091/1/1837 +f 1085/1/1838 1029/1/1838 1091/1/1838 +f 1029/1/1839 1061/1/1839 1084/1/1839 +f 1085/1/1840 1061/1/1840 1029/1/1840 +f 1085/1/1841 1063/1/1841 1061/1/1841 +f 1063/1/1842 1086/1/1842 1061/1/1842 +f 1063/1/1843 1064/1/1843 1086/1/1843 +f 1058/1/1844 1086/1/1844 1064/1/1844 +f 1064/1/1845 1065/1/1845 1058/1/1845 +f 1065/1/1846 1059/1/1846 1058/1/1846 +f 1065/1/1847 1037/1/1847 1059/1/1847 +f 1065/1/1848 1067/1/1848 1037/1/1848 +f 1079/1/1012 1081/1/1012 1087/1/1012 +f 1081/1/1012 1089/1/1012 1087/1/1012 +f 1089/1/1012 1088/1/1012 1087/1/1012 +f 1089/1/1012 1078/1/1012 1088/1/1012 +f 1081/1/1012 1090/1/1012 1089/1/1012 +f 1090/1/1012 1029/1/1012 1089/1/1012 +f 1029/1/1012 1094/1/1012 1089/1/1012 +f 1083/1/1012 1029/1/1012 1090/1/1012 +f 1091/1/1849 1029/1/1849 1083/1/1849 +f 1070/1/1012 1094/1/1012 1029/1/1012 +f 1092/1/1012 1070/1/1012 1029/1/1012 +f 1084/1/1850 1092/1/1850 1029/1/1850 +f 1071/1/1012 1094/1/1012 1070/1/1012 +f 1071/1/1012 1072/1/1012 1094/1/1012 +f 1072/1/1012 1093/1/1012 1094/1/1012 +f 1093/1/1012 1075/1/1012 1094/1/1012 +f 803/1/1012 804/1/1012 949/1/1012 950/1/1012 951/1/1012 952/1/1012 953/1/1012 840/1/1012 794/1/1012 795/1/1012 809/1/1012 806/1/1012 807/1/1012 805/1/1012 963/1/1012 964/1/1012 884/1/1012 965/1/1012 885/1/1012 886/1/1012 799/1/1012 887/1/1012 888/1/1012 801/1/1012 802/1/1012 +f 1030/1/423 1056/1/423 1031/1/423 1039/1/423 1057/1/423 1069/1/423 1068/1/423 1055/1/423 1054/1/423 1053/1/423 1060/1/423 1066/1/423 1052/1/423 1062/1/423 1051/1/423 1050/1/423 1082/1/423 1049/1/423 1048/1/423 1034/1/423 1036/1/423 1033/1/423 diff --git a/resources/meshes/zyyx_pro_platform.stl b/resources/meshes/zyyx_pro_platform.stl new file mode 100644 index 0000000000..16b2ef7abc Binary files /dev/null and b/resources/meshes/zyyx_pro_platform.stl differ diff --git a/resources/qml/ActionPanel/OutputProcessWidget.qml b/resources/qml/ActionPanel/OutputProcessWidget.qml index 1303dc20a2..c609cd6ca5 100644 --- a/resources/qml/ActionPanel/OutputProcessWidget.qml +++ b/resources/qml/ActionPanel/OutputProcessWidget.qml @@ -10,7 +10,7 @@ import Cura 1.0 as Cura // This element contains all the elements the user needs to visualize the data -// that is gather after the slicing process, such as printint time, material usage, ... +// that is gather after the slicing process, such as printing time, material usage, ... // There are also two buttons: one to previsualize the output layers, and the other to // select what to do with it (such as print over network, save to file, ...) Column diff --git a/resources/qml/Actions.qml b/resources/qml/Actions.qml index 7acf39ecb2..1ae0802be7 100644 --- a/resources/qml/Actions.qml +++ b/resources/qml/Actions.qml @@ -62,7 +62,6 @@ Item property alias showProfileFolder: showProfileFolderAction property alias documentation: documentationAction - property alias showTroubleshooting: showTroubleShootingAction property alias openSponsershipPage: openSponsershipPageAction property alias reportBug: reportBugAction property alias whatsNew: whatsNewAction @@ -78,6 +77,7 @@ Item property alias paste: pasteAction property alias copy: copyAction property alias cut: cutAction + property alias exportProjectForSupport: exportProjectForSupportAction readonly property bool copy_paste_enabled: { const all_enabled_packages = CuraApplication.getPackageManager().allEnabledPackages; @@ -86,14 +86,6 @@ Item UM.I18nCatalog{id: catalog; name: "cura"} - - Action - { - id: showTroubleShootingAction - onTriggered: Qt.openUrlExternally("https://ultimaker.com/en/troubleshooting?utm_source=cura&utm_medium=software&utm_campaign=dropdown-troubleshooting") - text: catalog.i18nc("@action:inmenu", "Show Online Troubleshooting") - } - Action { id: openSponsershipPageAction @@ -558,4 +550,25 @@ Item text: "&Marketplace" icon.name: "plugins_browse" } + + Action + { + id: exportProjectForSupportAction + text: catalog.i18nc("@action:inmenu menubar:help", "Export Package For Technical Support") + onTriggered: + { + var exportName = Qt.formatDateTime(new Date(), "'export-'yyyyMMdd-HHmmss") + var args = { + "filter_by_machine": false, + "file_type": "workspace", + "preferred_mimetypes": "application/vnd.ms-package.3dmanufacturing-3dmodel+xml", + "limit_mimetypes": ["application/vnd.ms-package.3dmanufacturing-3dmodel+xml"], + "silent_save": true, + "writer_args": { + "include_log": true + } + }; + UM.OutputDeviceManager.requestWriteToDevice("local_file", exportName, args) + } + } } diff --git a/resources/qml/Dialogs/AboutDialog.qml b/resources/qml/Dialogs/AboutDialog.qml index 5c80964e38..6f1078425d 100644 --- a/resources/qml/Dialogs/AboutDialog.qml +++ b/resources/qml/Dialogs/AboutDialog.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2023 UltiMaker +// Copyright (c) 2025 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.4 @@ -19,9 +19,7 @@ UM.Dialog // Flag to toggle between main dependencies information and extensive dependencies information property bool showDefaultDependencies: true - minimumWidth: 500 * screenScaleFactor minimumHeight: 700 * screenScaleFactor - width: minimumWidth height: minimumHeight backgroundColor: UM.Theme.getColor("main_background") @@ -86,7 +84,6 @@ UM.Dialog return name; } } - visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 1 onLinkActivated: Qt.openUrlExternally(url) @@ -95,23 +92,43 @@ UM.Dialog UM.Label { text: description - visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 2 } UM.Label { - text: license - visible: text !== "" + text: + { + if (license_full !== "") + { + return `${license}`; + } + else + { + return license; + } + } Layout.fillWidth: true Layout.preferredWidth: 1 + + Component + { + id: componentLicenseDialog + + LicenseDialog { } + } + + onLinkActivated: + { + var license_dialog = componentLicenseDialog.createObject(base, {name: name, version: version, license: license_full}); + license_dialog.open(); + } } UM.Label { text: version - visible: text !== "" Layout.fillWidth: true Layout.preferredWidth: 1 } @@ -151,6 +168,7 @@ UM.Dialog { visible: showDefaultDependencies width: parent.width + spacing: UM.Theme.getSize("narrow_margin").height Repeater { @@ -160,65 +178,16 @@ UM.Dialog { sourceComponent: dependency_row width: parent.width - property string name: model.name - property string description: model.description - property string license: model.license - property string url: model.url - property string version: "" + property string name: modelData.name + property string description: modelData.summary + property string license: modelData.license + property string license_full: modelData.license_full + property string url: modelData.sources_url + property string version: modelData.version } - model: ListModel - { - id: projectsModel - } - Component.onCompleted: - { - //Do NOT add dependencies of our dependencies here, nor CI-dependencies! - //UltiMaker's own projects and forks. - projectsModel.append({ name: "Cura", description: catalog.i18nc("@label Description for application component", "Graphical user interface"), license: "LGPLv3", url: "https://github.com/Ultimaker/Cura" }); - projectsModel.append({ name: "Uranium", description: catalog.i18nc("@label Description for application component", "Application framework"), license: "LGPLv3", url: "https://github.com/Ultimaker/Uranium" }); - projectsModel.append({ name: "CuraEngine", description: catalog.i18nc("@label Description for application component", "G-code generator"), license: "AGPLv3", url: "https://github.com/Ultimaker/CuraEngine" }); - projectsModel.append({ name: "libArcus", description: catalog.i18nc("@label Description for application component", "Interprocess communication library"), license: "LGPLv3", url: "https://github.com/Ultimaker/libArcus" }); - projectsModel.append({ name: "pynest2d", description: catalog.i18nc("@label Description for application component", "Python bindings for libnest2d"), license: "LGPL", url: "https://github.com/Ultimaker/pynest2d" }); - projectsModel.append({ name: "libnest2d", description: catalog.i18nc("@label Description for application component", "Polygon packing library, developed by Prusa Research"), license: "LGPL", url: "https://github.com/tamasmeszaros/libnest2d" }); - projectsModel.append({ name: "libSavitar", description: catalog.i18nc("@label Description for application component", "Support library for handling 3MF files"), license: "LGPLv3", url: "https://github.com/ultimaker/libsavitar" }); - projectsModel.append({ name: "libCharon", description: catalog.i18nc("@label Description for application component", "Support library for file metadata and streaming"), license: "LGPLv3", url: "https://github.com/ultimaker/libcharon" }); - - //Direct dependencies of the front-end. - projectsModel.append({ name: "Python", description: catalog.i18nc("@label Description for application dependency", "Programming language"), license: "Python", url: "http://python.org/" }); - projectsModel.append({ name: "Qt6", description: catalog.i18nc("@label Description for application dependency", "GUI framework"), license: "LGPLv3", url: "https://www.qt.io/" }); - projectsModel.append({ name: "PyQt", description: catalog.i18nc("@label Description for application dependency", "GUI framework bindings"), license: "GPL", url: "https://riverbankcomputing.com/software/pyqt" }); - projectsModel.append({ name: "SIP", description: catalog.i18nc("@label Description for application dependency", "C/C++ Binding library"), license: "GPL", url: "https://riverbankcomputing.com/software/sip" }); - projectsModel.append({ name: "Protobuf", description: catalog.i18nc("@label Description for application dependency", "Data interchange format"), license: "BSD", url: "https://developers.google.com/protocol-buffers" }); - projectsModel.append({ name: "Noto Sans", description: catalog.i18nc("@label", "Font"), license: "Apache 2.0", url: "https://www.google.com/get/noto/" }); - - //CuraEngine's dependencies. - projectsModel.append({ name: "Clipper", description: catalog.i18nc("@label Description for application dependency", "Polygon clipping library"), license: "Boost", url: "http://www.angusj.com/delphi/clipper.php" }); - projectsModel.append({ name: "RapidJSON", description: catalog.i18nc("@label Description for application dependency", "JSON parser"), license: "MIT", url: "https://rapidjson.org/" }); - projectsModel.append({ name: "STB", description: catalog.i18nc("@label Description for application dependency", "Utility functions, including an image loader"), license: "Public Domain", url: "https://github.com/nothings/stb" }); - projectsModel.append({ name: "Boost", description: catalog.i18nc("@label Description for application dependency", "Utility library, including Voronoi generation"), license: "Boost", url: "https://www.boost.org/" }); - - //Python modules. - projectsModel.append({ name: "Certifi", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "MPL", url: "https://github.com/certifi/python-certifi" }); - projectsModel.append({ name: "Cryptography", description: catalog.i18nc("@label Description for application dependency", "Root Certificates for validating SSL trustworthiness"), license: "APACHE and BSD", url: "https://cryptography.io/" }); - projectsModel.append({ name: "Future", description: catalog.i18nc("@label Description for application dependency", "Compatibility between Python 2 and 3"), license: "MIT", url: "https://python-future.org/" }); - projectsModel.append({ name: "keyring", description: catalog.i18nc("@label Description for application dependency", "Support library for system keyring access"), license: "MIT", url: "https://github.com/jaraco/keyring" }); - projectsModel.append({ name: "NumPy", description: catalog.i18nc("@label Description for application dependency", "Support library for faster math"), license: "BSD", url: "http://www.numpy.org/" }); - projectsModel.append({ name: "NumPy-STL", description: catalog.i18nc("@label Description for application dependency", "Support library for handling STL files"), license: "BSD", url: "https://github.com/WoLpH/numpy-stl" }); - projectsModel.append({ name: "PyClipper", description: catalog.i18nc("@label Description for application dependency", "Python bindings for Clipper"), license: "MIT", url: "https://github.com/fonttools/pyclipper" }); - projectsModel.append({ name: "PySerial", description: catalog.i18nc("@label Description for application dependency", "Serial communication library"), license: "Python", url: "http://pyserial.sourceforge.net/" }); - projectsModel.append({ name: "SciPy", description: catalog.i18nc("@label Description for application dependency", "Support library for scientific computing"), license: "BSD-new", url: "https://www.scipy.org/" }); - projectsModel.append({ name: "Sentry", description: catalog.i18nc("@Label Description for application dependency", "Python Error tracking library"), license: "BSD 2-Clause 'Simplified'", url: "https://sentry.io/for/python/" }); - projectsModel.append({ name: "Trimesh", description: catalog.i18nc("@label Description for application dependency", "Support library for handling triangular meshes"), license: "MIT", url: "https://trimsh.org" }); - projectsModel.append({ name: "python-zeroconf", description: catalog.i18nc("@label Description for application dependency", "ZeroConf discovery library"), license: "LGPL", url: "https://github.com/jstasiak/python-zeroconf" }); - - //Building/packaging. - projectsModel.append({ name: "CMake", description: catalog.i18nc("@label Description for development tool", "Universal build system configuration"), license: "BSD 3-Clause", url: "https://cmake.org/" }); - projectsModel.append({ name: "Conan", description: catalog.i18nc("@label Description for development tool", "Dependency and package manager"), license: "MIT", url: "https://conan.io/" }); - projectsModel.append({ name: "Pyinstaller", description: catalog.i18nc("@label Description for development tool", "Packaging Python-applications"), license: "GPLv2", url: "https://pyinstaller.org/" }); - projectsModel.append({ name: "AppImageKit", description: catalog.i18nc("@label Description for development tool", "Linux cross-distribution application deployment"), license: "MIT", url: "https://github.com/AppImage/AppImageKit" }); - projectsModel.append({ name: "NSIS", description: catalog.i18nc("@label Description for development tool", "Generating Windows installers"), license: "Zlib", url: "https://nsis.sourceforge.io/" }); - } + property var dependencies_model: Cura.OpenSourceDependenciesModel {} + model: dependencies_model.dependencies } } @@ -247,6 +216,7 @@ UM.Dialog property string name: modelData.name property string version: modelData.version property string license: "" + property string license_full: "" property string url: "" property string description: "" } @@ -274,6 +244,7 @@ UM.Dialog property string name: modelData.name property string version: modelData.version property string license: "" + property string license_full: "" property string url: "" property string description: "" } diff --git a/resources/qml/Dialogs/LicenseDialog.qml b/resources/qml/Dialogs/LicenseDialog.qml new file mode 100644 index 0000000000..d443cb4998 --- /dev/null +++ b/resources/qml/Dialogs/LicenseDialog.qml @@ -0,0 +1,43 @@ +// Copyright (c) 2025 UltiMaker +// Cura is released under the terms of the LGPLv3 or higher. + +import QtQuick 2.4 +import QtQuick.Controls 2.9 +import QtQuick.Layouts 1.3 + +import UM 1.6 as UM +import Cura 1.6 as Cura + +UM.Dialog +{ + readonly property UM.I18nCatalog catalog: UM.I18nCatalog { name: "cura" } + + property var name + property var version + property var license + + id: base + title: catalog.i18nc("@title:window The argument is a package name, and the second is the version.", "License for %1 %2").arg(name).arg(version) + minimumWidth: 500 * screenScaleFactor + + Flickable + { + anchors.fill: parent + contentHeight: labelLicense.height + ScrollBar.vertical: UM.ScrollBar { } + + UM.Label + { + id: labelLicense + width: parent.width + text: license + } + } + + rightButtons: Cura.TertiaryButton + { + id: closeButton + text: catalog.i18nc("@action:button", "Close") + onClicked: reject() + } +} diff --git a/resources/qml/MachineSettings/GcodeTextArea.qml b/resources/qml/MachineSettings/GcodeTextArea.qml index 2538cd9f65..05d3711bae 100644 --- a/resources/qml/MachineSettings/GcodeTextArea.qml +++ b/resources/qml/MachineSettings/GcodeTextArea.qml @@ -12,20 +12,16 @@ import Cura 1.1 as Cura // // TextArea widget for editing Gcode in the Machine Settings dialog. // -UM.TooltipArea +Item { id: control UM.I18nCatalog { id: catalog; name: "cura"; } - text: tooltip - property alias containerStackId: propertyProvider.containerStackId property alias settingKey: propertyProvider.key property alias settingStoreIndex: propertyProvider.storeIndex - property string tooltip: propertyProvider.properties.description ? propertyProvider.properties.description : "" - property alias labelText: titleLabel.text property alias labelFont: titleLabel.font diff --git a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml index bcbb6d7679..f822dad933 100644 --- a/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml +++ b/resources/qml/Menus/ConfigurationMenu/ConfigurationItem.qml @@ -1,4 +1,4 @@ -// Copyright (c) 2018 Ultimaker B.V. +// Copyright (c) 2025 UltiMaker // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.7 @@ -12,7 +12,7 @@ Button id: configurationItem property var configuration: null - hoverEnabled: isValidMaterial + hoverEnabled: isValidMaterial && isValidCore property bool isValidMaterial: { @@ -25,7 +25,6 @@ Button for (var index in extruderConfigurations) { var name = extruderConfigurations[index].material ? extruderConfigurations[index].material.name : "" - if (name == "" || name == "Unknown") { return false @@ -34,6 +33,25 @@ Button return true } + property bool isValidCore: + { + if (configuration === null) + { + return false + } + var extruderConfigurations = configuration.extruderConfigurations + var coresList = configuration.validCoresForPrinterType + for (var index in extruderConfigurations) + { + var name = extruderConfigurations[index].hotendID ? extruderConfigurations[index].hotendID : "" + if (name != "" && ! coresList.includes(name)) + { + return false + } + } + return true + } + background: Rectangle { color: parent.hovered ? UM.Theme.getColor("action_button_hovered") : UM.Theme.getColor("action_button") @@ -60,7 +78,7 @@ Button right: parent.right rightMargin: UM.Theme.getSize("wide_margin").width } - height: childrenRect.height + height: unknownMaterial.visible ? unknownMaterial.height : (repeater.count > 0 ? repeater.itemAt(0).height : 0) spacing: UM.Theme.getSize("default_margin").width Repeater @@ -72,21 +90,20 @@ Button { width: Math.round(parent.width / (configuration !== null ? configuration.extruderConfigurations.length : 1)) printCoreConfiguration: modelData - visible: configurationItem.isValidMaterial + visible: configurationItem.isValidMaterial && configurationItem.isValidCore } } - // Unknown material + // Unknown material or core ('variant') Item { id: unknownMaterial - height: unknownMaterialMessage.height + UM.Theme.getSize("thin_margin").width / 2 + height: unknownMaterialMessage.height width: parent.width anchors.top: parent.top - anchors.topMargin: UM.Theme.getSize("thin_margin").width / 2 - visible: !configurationItem.isValidMaterial + visible: ! (configurationItem.isValidMaterial && configurationItem.isValidCore) UM.ColorImage { @@ -102,13 +119,9 @@ Button UM.Label { id: unknownMaterialMessage - text: - { - if (configuration === null) - { - return "" - } + function whenUnknownMaterial() + { var extruderConfigurations = configuration.extruderConfigurations var unknownMaterials = [] for (var index in extruderConfigurations) @@ -135,9 +148,47 @@ Button unknownMaterials = "" + unknownMaterials + "" var draftResult = catalog.i18nc("@label", "This configuration is not available because %1 is not recognized. Please visit %2 to download the correct material profile."); - var result = draftResult.arg(unknownMaterials).arg("" + catalog.i18nc("@label","Marketplace") + " ") + return draftResult.arg(unknownMaterials).arg("" + catalog.i18nc("@label","Marketplace") + " ") + } - return result + function whenMismatchedCore() + { + var extruderConfigurations = configuration.extruderConfigurations + var coresList = configuration.validCoresForPrinterType + var mismatchedCores = [] + for (var index in extruderConfigurations) + { + var name = extruderConfigurations[index].hotendID ? extruderConfigurations[index].hotendID : "" + if (name != "" && ! coresList.includes(name)) + { + mismatchedCores.push(name) + } + } + + mismatchedCores = "" + mismatchedCores + "" + var draftResult = catalog.i18nc("@label", "This configuration is not available because there is a mismatch or other problem with core-type %1. Please visit the support page to check which cores this printer-type supports w.r.t. new slices."); + return draftResult.arg(mismatchedCores).arg("https://support.ultimaker.com/s/article/1667411313529") + } + + text: + { + if (configuration === null) + { + return "" + } + + var extruderConfigurations = configuration.extruderConfigurations + var perExtruder = [] + for (var index in extruderConfigurations) + { + var matName = extruderConfigurations[index].material ? extruderConfigurations[index].material.name : "" + var coreName = extruderConfigurations[index].hotendID ? extruderConfigurations[index].hotendID : "" + perExtruder.push(` [${coreName}/${matName}]`) + } + + var configsStr = "" + perExtruder + "" + var warnStr = isValidMaterial ? whenMismatchedCore() : whenUnknownMaterial() + return configsStr + "
    " + warnStr } width: extruderRow.width @@ -148,9 +199,16 @@ Button wrapMode: Text.WordWrap - onLinkActivated: + onLinkActivated: (link) => { - Cura.Actions.browsePackages.trigger() + if(link.trim().length === 0) + { + Cura.Actions.browsePackages.trigger(); + } + else + { + Qt.openUrlExternally(link); + } } } @@ -225,7 +283,7 @@ Button onClicked: { - if(isValidMaterial) + if (isValidMaterial && isValidCore) { toggleContent() Cura.MachineManager.applyRemoteConfiguration(configuration) diff --git a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml index 7acba1e103..41bf047795 100644 --- a/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml +++ b/resources/qml/Menus/ConfigurationMenu/CustomConfiguration.qml @@ -18,6 +18,12 @@ Item name: "cura" } + UM.I18nCatalog + { + id: catalog_fdmprinter + name: "fdmprinter.def.json" + } + width: parent.width height: childrenRect.height @@ -281,7 +287,7 @@ Item UM.Label { - text: Cura.MachineManager.activeDefinitionVariantsName + text: catalog_fdmprinter.i18nc("variant_name", Cura.MachineManager.activeDefinitionVariantsName) height: parent.height width: selectors.textWidth } diff --git a/resources/qml/Menus/HelpMenu.qml b/resources/qml/Menus/HelpMenu.qml index 6a57a99515..473649a964 100644 --- a/resources/qml/Menus/HelpMenu.qml +++ b/resources/qml/Menus/HelpMenu.qml @@ -14,11 +14,12 @@ Cura.Menu title: catalog.i18nc("@title:menu menubar:toplevel", "&Help") Cura.MenuItem { action: Cura.Actions.showProfileFolder } - Cura.MenuItem { action: Cura.Actions.showTroubleshooting} Cura.MenuItem { action: Cura.Actions.documentation } Cura.MenuItem { action: Cura.Actions.reportBug } Cura.MenuItem { action: Cura.Actions.openSponsershipPage } Cura.MenuSeparator { } + Cura.MenuItem { action: Cura.Actions.exportProjectForSupport } + Cura.MenuSeparator { } Cura.MenuItem { action: Cura.Actions.whatsNew } Cura.MenuItem { action: Cura.Actions.about } } \ No newline at end of file diff --git a/resources/qml/Menus/RecentFilesMenu.qml b/resources/qml/Menus/RecentFilesMenu.qml index 19ff681219..93fddd0bf6 100644 --- a/resources/qml/Menus/RecentFilesMenu.qml +++ b/resources/qml/Menus/RecentFilesMenu.qml @@ -2,7 +2,7 @@ // Cura is released under the terms of the LGPLv3 or higher. import QtQuick 2.2 -import QtQuick.Controls 2.1 +import QtQuick.Controls 2.15 import UM 1.3 as UM import Cura 1.0 as Cura @@ -30,6 +30,6 @@ Cura.Menu onTriggered: CuraApplication.readLocalFile(modelData) } onObjectAdded: (index, object) => menu.insertItem(index, object) - onObjectRemoved: (object) => menu.removeItem(object) + onObjectRemoved: (index, object) => menu.removeItem(object) } } diff --git a/resources/qml/Preferences/GeneralPage.qml b/resources/qml/Preferences/GeneralPage.qml index 4cc87e9644..42469c6cf6 100644 --- a/resources/qml/Preferences/GeneralPage.qml +++ b/resources/qml/Preferences/GeneralPage.qml @@ -109,6 +109,9 @@ UM.PreferencesPage UM.Preferences.resetPreference("general/restore_window_geometry") restoreWindowPositionCheckbox.checked = boolCheck(UM.Preferences.getValue("general/restore_window_geometry")) + UM.Preferences.resetPreference("tool/flip_y_axis_tool_handle") + flipToolhandleYCheckbox.checked = boolcheck(UM.Preferences.getValue("tool/flip_y_axis_tool_handle")) + UM.Preferences.resetPreference("general/camera_perspective_mode") //var defaultCameraMode = UM.Preferences.getValue("general/camera_perspective_mode") // /setDefaultCameraMode(defaultCameraMode) @@ -357,17 +360,6 @@ UM.PreferencesPage } } - UM.Label - { - id: languageCaption - - //: Language change warning - text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.") - wrapMode: Text.WordWrap - font.italic: true - - } - Item { //: Spacer @@ -662,6 +654,21 @@ UM.PreferencesPage } } } + UM.TooltipArea + { + width: childrenRect.width + height: childrenRect.height + text: catalog.i18nc("@info:tooltip", "Should the Y axis of the translate toolhandle be flipped? This will only affect model's Y coordinate, all other settings such as machine Printhead settings are unaffected and still behave as before.") + + UM.CheckBox + { + id: flipToolhandleYCheckbox + text: catalog.i18nc("@option:check", "Flip model's toolhandle Y axis (restart required)") + checked: boolCheck(UM.Preferences.getValue("tool/flip_y_axis_tool_handle")) + onCheckedChanged: UM.Preferences.setValue("tool/flip_y_axis_tool_handle", checked) + } + } + Item { @@ -687,7 +694,7 @@ UM.PreferencesPage UM.CheckBox { id: singleInstanceCheckbox - text: catalog.i18nc("@option:check","Use a single instance of Cura") + text: catalog.i18nc("@option:check","Use a single instance of Cura *") checked: boolCheck(UM.Preferences.getValue("cura/single_instance")) onCheckedChanged: UM.Preferences.setValue("cura/single_instance", checked) @@ -1083,8 +1090,6 @@ UM.PreferencesPage } } - - /* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it. Item { //: Spacer @@ -1092,6 +1097,18 @@ UM.PreferencesPage width: UM.Theme.getSize("default_margin").height } + UM.Label + { + id: languageCaption + + //: Language change warning + text: catalog.i18nc("@label", "*You will need to restart the application for these changes to have effect.") + wrapMode: Text.WordWrap + font.italic: true + } + + /* Multi-buildplate functionality is disabled because it's broken. See CURA-4975 for the ticket to remove it. + Label { font.bold: true diff --git a/resources/qml/Preferences/SettingVisibilityItem.qml b/resources/qml/Preferences/SettingVisibilityItem.qml index 07255306a5..a7f4a47e23 100644 --- a/resources/qml/Preferences/SettingVisibilityItem.qml +++ b/resources/qml/Preferences/SettingVisibilityItem.qml @@ -11,7 +11,7 @@ Item // Use the depth of the model to move the item, but also leave space for the visibility / enabled exclamation mark. // Align checkbox with SettingVisibilityCategory icon with + 5 - x: definition ? definition.depth * UM.Theme.getSize("narrow_margin").width : UM.Theme.getSize("default_margin").width + x: definition ? definition.depth * UM.Theme.getSize("wide_margin").width : UM.Theme.getSize("default_margin").width UM.TooltipArea { @@ -46,33 +46,26 @@ Item text: { - if(provider.properties.enabled == "True") - { - return "" - } - var key = definition ? definition.key : "" - var requires = settingDefinitionsModel.getRequires(key, "enabled") - if (requires.length == 0) - { - return catalog.i18nc("@item:tooltip", "This setting has been hidden by the active machine and will not be visible."); - } - else - { - var requires_text = "" - for (var i in requires) - { - if (requires_text == "") - { - requires_text = requires[i].label - } - else - { - requires_text += ", " + requires[i].label - } - } + if (provider.properties.enabled === "True") return ""; - return catalog.i18ncp("@item:tooltip %1 is list of setting names", "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible.", "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible.", requires.length) .arg(requires_text); + var key = definition ? definition.key : ""; + var requires = settingDefinitionsModel.getRequires(key, "enabled"); + + if (requires.length === 0) { + return catalog.i18nc( + "@item:tooltip", + "This setting has been hidden by the active machine and will not be visible." + ); } + + var requiresText = requires.map(r => r.label).join(", "); + + return catalog.i18ncp( + "@item:tooltip %1 is list of setting names", + "This setting has been hidden by the value of %1. Change the value of that setting to make this setting visible.", + "This setting has been hidden by the values of %1. Change the values of those settings to make this setting visible.", + requires.length + ).arg(requiresText); } UM.ColorImage diff --git a/resources/qml/Preferences/SettingVisibilityPage.qml b/resources/qml/Preferences/SettingVisibilityPage.qml index 8743999fe2..73fd021fa2 100644 --- a/resources/qml/Preferences/SettingVisibilityPage.qml +++ b/resources/qml/Preferences/SettingVisibilityPage.qml @@ -1,7 +1,7 @@ // Copyright (c) 2022 Ultimaker B.V. // Cura is released under the terms of the LGPLv3 or higher. -import QtQuick 2.1 +import QtQuick 2.15 import QtQuick.Controls 2.15 import UM 1.5 as UM @@ -27,10 +27,7 @@ UM.PreferencesPage ] signal scrollToSection( string key ) - onScrollToSection: - { - settingsListView.positionViewAtIndex(definitionsModel.getIndex(key), ListView.Beginning) - } + onScrollToSection: settingsListView.positionViewAtIndex(definitionsModel.getIndex(key), ListView.Beginning) function reset() { @@ -118,30 +115,14 @@ UM.PreferencesPage model: settingVisibilityPresetsModel.items textRole: "name" - currentIndex: - { - var idx = -1; - for(var i = 0; i < settingVisibilityPresetsModel.items.length; ++i) - { - if(settingVisibilityPresetsModel.items[i].presetId === settingVisibilityPresetsModel.activePreset) - { - idx = i; - break; - } - } - return idx; - } - - onActivated: - { - var preset_id = settingVisibilityPresetsModel.items[index].presetId - settingVisibilityPresetsModel.setActivePreset(preset_id) - } + currentIndex: settingVisibilityPresetsModel.items.findIndex(i => i.presetId === settingVisibilityPresetsModel.activePreset) + onActivated: settingVisibilityPresetsModel.setActivePreset(settingVisibilityPresetsModel.items[index].presetId) } ListView { id: settingsListView + reuseItems: true anchors { top: filter.bottom @@ -165,31 +146,30 @@ UM.PreferencesPage visibilityHandler: UM.SettingPreferenceVisibilityHandler {} } - property Component settingVisibilityCategory: Cura.SettingVisibilityCategory {} - property Component settingVisibilityItem: Cura.SettingVisibilityItem {} + Component + { + id: settingVisibilityCategory + Cura.SettingVisibilityCategory {} + } + + Component + { + id: settingVisibilityItem + Cura.SettingVisibilityItem {} + } delegate: Loader { id: loader - width: settingsListView.width - scrollBar.width height: model.type !== undefined ? UM.Theme.getSize("section").height : 0 property var definition: model property var settingDefinitionsModel: definitionsModel - asynchronous: true + asynchronous: false active: model.type !== undefined - sourceComponent: - { - switch (model.type) - { - case "category": - return settingsListView.settingVisibilityCategory - default: - return settingsListView.settingVisibilityItem - } - } + sourceComponent: model.type === "category" ? settingVisibilityCategory : settingVisibilityItem } } } diff --git a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml index 254ba477bf..48a164819d 100644 --- a/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml +++ b/resources/qml/PrintSetupSelector/Recommended/RecommendedSupportSelector.qml @@ -46,7 +46,7 @@ RecommendedSettingSection contents: [ RecommendedSettingItem { - settingName: catalog.i18nc("@action:label", "Support Type") + settingName: catalog.i18nc("@action:label", "Support Structure") tooltipText: catalog.i18nc("@label", "Chooses between the techniques available to generate support. \n\n\"Normal\" support creates a support structure directly below the overhanging parts and drops those areas straight down. \n\n\"Tree\" support creates branches towards the overhanging areas that support the model on the tips of those branches, and allows the branches to crawl around the model to support it from the build plate as much as possible.") isCompressed: enableSupportRow.isCompressed @@ -57,7 +57,9 @@ RecommendedSettingSection settingName: "support_structure" propertyRemoveUnusedValue: false updateAllExtruders: false - defaultExtruderIndex: supportExtruderProvider.properties.value + defaultExtruderIndex: supportExtruderProvider.properties.value != undefined ? + supportExtruderProvider.properties.value : + Cura.ExtruderManager.activeExtruderIndex } }, RecommendedSettingItem @@ -92,7 +94,9 @@ RecommendedSettingSection width: parent.width settingName: "support_type" updateAllExtruders: true - defaultExtruderIndex: supportExtruderProvider.properties.value + defaultExtruderIndex: supportExtruderProvider.properties.value != undefined ? + supportExtruderProvider.properties.value : + Cura.ExtruderManager.activeExtruderIndex } } ] diff --git a/resources/qml/Settings/SettingItem.qml b/resources/qml/Settings/SettingItem.qml index 1d8ad654e3..744ce8b197 100644 --- a/resources/qml/Settings/SettingItem.qml +++ b/resources/qml/Settings/SettingItem.qml @@ -13,7 +13,7 @@ import "." Item { id: base - height: enabled ? UM.Theme.getSize("section").height + UM.Theme.getSize("narrow_margin").height : 0 + height: enabled ? Math.max(UM.Theme.getSize("section").height, label.height) + UM.Theme.getSize("narrow_margin").height : 0 anchors.left: parent.left anchors.right: parent.right @@ -53,6 +53,7 @@ Item signal showTooltip(string text) signal hideTooltip() signal showAllHiddenInheritedSettings(string category_id) + signal setScrollPositionChangeLoseFocus(bool lose_focus) function createTooltipText() { diff --git a/resources/qml/Settings/SettingTextField.qml b/resources/qml/Settings/SettingTextField.qml index f49b688c18..3b0f2bf521 100644 --- a/resources/qml/Settings/SettingTextField.qml +++ b/resources/qml/Settings/SettingTextField.qml @@ -92,6 +92,8 @@ SettingItem UM.Label { + id: unitLabel + anchors { left: parent.left @@ -106,6 +108,16 @@ SettingItem horizontalAlignment: (input.effectiveHorizontalAlignment == Text.AlignLeft) ? Text.AlignRight : Text.AlignLeft textFormat: Text.PlainText color: UM.Theme.getColor("setting_unit") + + Binding + { + target: unitLabel + property: "text" + value: + { + return propertyProvider.properties.unit; + } + } } TextInput @@ -148,6 +160,11 @@ SettingItem if(activeFocus) { base.focusReceived(); + setScrollPositionChangeLoseFocus(false); + } + else + { + setScrollPositionChangeLoseFocus(true); } base.focusGainedByClick = false; } diff --git a/resources/qml/Settings/SettingView.qml b/resources/qml/Settings/SettingView.qml index c5fed795d5..0252d57056 100644 --- a/resources/qml/Settings/SettingView.qml +++ b/resources/qml/Settings/SettingView.qml @@ -15,6 +15,7 @@ Item property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel() property bool findingSettings + property bool loseFocusOnScrollPositionChange: true Item { @@ -195,7 +196,7 @@ Item onPositionChanged: { // This removes focus from items when scrolling. // This fixes comboboxes staying open and scrolling container - if (!activeFocus && !filter.activeFocus) { + if (!activeFocus && !filter.activeFocus && loseFocusOnScrollPositionChange) { forceActiveFocus(); } } @@ -320,7 +321,7 @@ Item containerStackId: contents.activeMachineId key: model.key - watchedProperties: [ "value", "enabled", "state", "validationState", "settable_per_extruder", "resolve" ] + watchedProperties: [ "value", "enabled", "state", "validationState", "settable_per_extruder", "resolve", "unit" ] storeIndex: 0 removeUnusedValue: model.resolve === undefined } @@ -378,6 +379,10 @@ Item } } } + function onSetScrollPositionChangeLoseFocus(lose_focus) + { + loseFocusOnScrollPositionChange = lose_focus; + } } } diff --git a/resources/qml/TableView.qml b/resources/qml/TableView.qml index 7da2341908..30087dcece 100644 --- a/resources/qml/TableView.qml +++ b/resources/qml/TableView.qml @@ -25,8 +25,10 @@ Item property var onDoubleClicked: function(row) {} //Something to execute when double clicked. Accepts one argument: The index of the row that was clicked on. property bool allowSelection: true //Whether to allow the user to select items. property string sectionRole: "" + property int minimumColumnWidth: 50 //The minimum width of a column while resizing. property alias flickableDirection: tableView.flickableDirection + Row { id: headerBar @@ -50,49 +52,97 @@ Item anchors.leftMargin: UM.Theme.getSize("default_margin").width anchors.right: parent.right anchors.rightMargin: UM.Theme.getSize("narrow_margin").width + anchors.verticalCenter: parent.verticalCenter wrapMode: Text.NoWrap text: modelData font: UM.Theme.getFont("medium_bold") elide: Text.ElideRight } - Item + + MouseArea { - //Resize handle. + // Resize handle anchors { right: parent.right top: parent.top bottom: parent.bottom + rightMargin: -width / 2 } - width: UM.Theme.getSize("default_lining").width + width: UM.Theme.getSize("wide_lining").width * 2 + enabled: index < headerRepeater.count - 1 + acceptedButtons: Qt.LeftButton + cursorShape: enabled ? Qt.SizeHorCursor : Qt.ArrowCursor - MouseArea + property var dragLastPos + + onPressed: function(mouse) { dragLastPos = mapToItem(parent, mouse.x, mouse.y) } + + onPositionChanged: function(mouse) { - anchors.fill: parent + let global_pos = mapToItem(parent, mouse.x, mouse.y) + let delta = global_pos.x - dragLastPos.x + dragLastPos = global_pos - cursorShape: Qt.SizeHorCursor - drag + let new_widths = [] + for(let i = 0; i < headerRepeater.count; ++i) { - target: parent - axis: Drag.XAxis + new_widths[i] = headerRepeater.itemAt(i).width; } - onMouseXChanged: + + // Reduce the delta if needed, depending on how much available space we have on the sides + if(delta > 0) { - if(drag.active) + let available_extra_width = 0 + for(let i = index + 1; i < headerRepeater.count; ++i) { - let new_width = parent.parent.width + mouseX; - let sum_widths = mouseX; - for(let i = 0; i < headerBar.children.length; ++i) - { - sum_widths += headerBar.children[i].width; - } - if(sum_widths > tableBase.width) - { - new_width -= sum_widths - tableBase.width; //Limit the total width to not exceed the view. - } - let width_fraction = new_width / tableBase.width; //Scale with the same fraction along with the total width, if the table is resized. - parent.parent.width = Qt.binding(function() { return Math.max(10, Math.round(tableBase.width * width_fraction)) }); + available_extra_width += headerRepeater.itemAt(i).width - minimumColumnWidth } + + delta = Math.min(delta, available_extra_width) + } + else if(delta < 0) + { + let available_substracted_width = 0 + for(let i = index ; i >= 0 ; --i) + { + available_substracted_width -= headerRepeater.itemAt(i).width - minimumColumnWidth + } + + delta = Math.max(delta, available_substracted_width) + } + + if(delta > 0) + { + // Enlarge the current element + new_widths[index] += delta + + // Now reduce elements on the right + for (let i = index + 1; delta > 0 && i < headerRepeater.count; ++i) + { + let substract_width = Math.min(delta, headerRepeater.itemAt(i).width - minimumColumnWidth) + new_widths[i] -= substract_width + delta -= substract_width + } + } + else if(delta < 0) + { + // Enlarge the element on the right + new_widths[index + 1] -= delta + + // Now reduce elements on the left + for (let i = index; delta < 0 && i >= 0; --i) + { + let substract_width = Math.max(delta, -(headerRepeater.itemAt(i).width - minimumColumnWidth)) + new_widths[i] += substract_width + delta -= substract_width + } + } + + // Apply the calculated widths + for(let i = 0; i < headerRepeater.count; ++i) + { + headerRepeater.itemAt(i).width = new_widths[i]; } } } @@ -101,6 +151,7 @@ Item } } } + Rectangle { color: UM.Theme.getColor("main_background") @@ -201,6 +252,24 @@ Item } } + onWidthChanged: + { + // Get the previous width but summing the width of actual columns + let previous_width = 0 + for(let i = 0; i < headerRepeater.count; ++i) + { + previous_width += headerRepeater.itemAt(i).width; + } + + // Now resize the columns while keeping their previous ratios + for(let i = 0; i < headerRepeater.count; ++i) + { + let item = headerRepeater.itemAt(i) + let item_width_ratio = item.width / previous_width; + item.width = item_width_ratio * tableBase.width + } + } + Connections { target: model diff --git a/resources/qml/WelcomePages/ChangelogContent.qml b/resources/qml/WelcomePages/ChangelogContent.qml index 7c3b1adfc3..a8e70463e9 100644 --- a/resources/qml/WelcomePages/ChangelogContent.qml +++ b/resources/qml/WelcomePages/ChangelogContent.qml @@ -43,6 +43,8 @@ Item textArea.readOnly: true textArea.font: UM.Theme.getFont("default") textArea.onLinkActivated: Qt.openUrlExternally(link) + textArea.rightPadding: 15 + textArea.leftPadding: 15 } Cura.PrimaryButton diff --git a/resources/qml/WelcomePages/WhatsNewContent.qml b/resources/qml/WelcomePages/WhatsNewContent.qml index 6406d65756..d4b1c8e04b 100644 --- a/resources/qml/WelcomePages/WhatsNewContent.qml +++ b/resources/qml/WelcomePages/WhatsNewContent.qml @@ -114,7 +114,7 @@ Item textArea.font: UM.Theme.getFont("default") textArea.onLinkActivated: Qt.openUrlExternally(link) textArea.leftPadding: 0 - textArea.rightPadding: 0 + textArea.rightPadding: 15 } } } diff --git a/resources/qml/Widgets/SingleSettingComboBox.qml b/resources/qml/Widgets/SingleSettingComboBox.qml index d917dc2753..d627efd2a9 100644 --- a/resources/qml/Widgets/SingleSettingComboBox.qml +++ b/resources/qml/Widgets/SingleSettingComboBox.qml @@ -12,7 +12,8 @@ import Cura 1.7 as Cura // All of the setting updating logic is handled by this component. // This uses the "options" value of a setting to populate the drop down. This will only work for settings with "options" // If the setting is limited to a single extruder or is settable with different values per extruder use "updateAllExtruders: true" -Cura.ComboBox { +Cura.ComboBox +{ textRole: "text" property alias settingName: propertyProvider.key property alias propertyRemoveUnusedValue: propertyProvider.removeUnusedValue @@ -23,6 +24,8 @@ Cura.ComboBox { // This is only used if updateAllExtruders == true property int defaultExtruderIndex: Cura.ExtruderManager.activeExtruderIndex + UM.I18nCatalog { id: settings_catalog; name: "fdmprinter.def.json" } + model: ListModel { id: comboboxModel @@ -42,6 +45,7 @@ Cura.ComboBox { { var key = propertyProvider.properties["options"].keys()[i] var value = propertyProvider.properties["options"][key] + value = settings_catalog.i18nc(settingName + " option " + key, value) comboboxModel.append({ text: value, code: key}) if (propertyProvider.properties.value === key) diff --git a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg index b81f16ec61..9194a15347 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/Leapfrog_Bolt_Pro_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg index d0c7219857..95e3dc9106 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_brass0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg index 1e9a2e43f5..310dfa2668 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/abs/Leapfrog_Bolt_Pro_nozzlex0.4_abs_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_abs_natural quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg index a6640512a3..6a446d19ff 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_brass0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg index 5be2675226..52142ea5b5 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/epla/Leapfrog_Bolt_Pro_nozzlex0.4_epla_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_epla_natural quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg index cf8577fdd9..4806742d43 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_brass0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4 weight = 0 diff --git a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg index ef2a78edca..597b5db5dc 100644 --- a/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg +++ b/resources/quality/Leapfrog_Bolt_Pro/pva/Leapfrog_Bolt_Pro_nozzlex0.4_pva_natural_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = leapfrog_pva_natural quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = NozzleX 0.4 weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg index 9acf14f593..4646588b42 100644 --- a/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg index f293b9f43a..f13e386db7 100644 --- a/resources/quality/abax_pri3/apri3_pla_high.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg index 3af1a557a5..53e84776e9 100644 --- a/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg +++ b/resources/quality/abax_pri3/apri3_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg index 8264717b80..f901a10ca0 100644 --- a/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg index d210d49036..922e633df2 100644 --- a/resources/quality/abax_pri5/apri5_pla_high.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg index e1ce9538fb..1fd71cd2db 100644 --- a/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg +++ b/resources/quality/abax_pri5/apri5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg index 09cebca9c2..31260c6466 100644 --- a/resources/quality/abax_titan/atitan_pla_fast.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/abax_titan/atitan_pla_high.inst.cfg b/resources/quality/abax_titan/atitan_pla_high.inst.cfg index af29995363..6b4a9fcb40 100644 --- a/resources/quality/abax_titan/atitan_pla_high.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg index 2bc6d4ef85..c09cf58d49 100644 --- a/resources/quality/abax_titan/atitan_pla_normal.inst.cfg +++ b/resources/quality/abax_titan/atitan_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg index 653fe51985..6f125988ae 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg index b51b9ab357..419bbb58da 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg index 144d56eca6..b3a5d690c7 100644 --- a/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg +++ b/resources/quality/ankermake_m5/ankermake_m5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg index eb8725bc6d..be12e86966 100644 --- a/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg +++ b/resources/quality/ankermake_m5c/ankermake_m5c_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg index d3e14088bd..42aa6de02f 100644 --- a/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg +++ b/resources/quality/ankermake_m5c/ankermake_m5c_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg b/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg index f615a7aaa4..a1ad341b61 100644 --- a/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg +++ b/resources/quality/ankermake_m5c/ankermake_m5c_precision.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = precision -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg index 10e78081b9..ebcb2b7c08 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg index 9e4aee0e44..d7bba91a7e 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg index 32d10397bc..8fa633144a 100644 --- a/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg +++ b/resources/quality/anycubic_4max/abs/anycubic_4max_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg index 1a1b8572bb..998db21b68 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg index af3b74fc0c..031b20fed6 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg index 18c0acaf01..4063390090 100644 --- a/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg +++ b/resources/quality/anycubic_4max/anycubic_4max_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg index a100908a53..cbf72b9db8 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg index 41fc5c20ae..3aa08581a5 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg index 898c3e131a..cb5da8393a 100644 --- a/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg +++ b/resources/quality/anycubic_4max/hips/anycubic_4max_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg index be43f63425..ee0e81d5f6 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg index 9d8b7c9919..3b7837045b 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg index b57341f9a2..b96edf45f4 100644 --- a/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg +++ b/resources/quality/anycubic_4max/petg/anycubic_4max_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg index e358bb9e17..f89d0ed25e 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg index 8663045149..c1eaed88af 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg index 8e3d3abc54..89614f962c 100644 --- a/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg +++ b/resources/quality/anycubic_4max/pla/anycubic_4max_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg index c9de15f792..cc2992a034 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg index 1b8db2a1e0..4354d0e76f 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg index df989f6adc..166e96ee33 100644 --- a/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg +++ b/resources/quality/anycubic_chiron/anycubic_chiron_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg index 3d372ceef1..421b39b4a4 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg index d5d27481a0..612aa0118d 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg index 73910af233..0d7ed3359d 100644 --- a/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega/anycubic_i3_mega_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg index bb1ba76661..dbc1407dc9 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg index 6806a23c2b..695ad6b4d0 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg index 4ce9996043..1b03a390ba 100644 --- a/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg +++ b/resources/quality/anycubic_i3_mega_s/anycubic_i3_mega_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg index 824d4e6fa5..83313672d0 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = abs -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg index 6a0462b35b..c734fbf8dd 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg index 4be68e74e5..f987da160e 100644 --- a/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra/anycubic_kobra_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg index 0b9632a9c9..8baf26d8d4 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_abs.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_abs quality_type = abs -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg index 2d91d4c584..0c77923cab 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_pla.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = pla -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg index 93bfca84fe..a6b8470e4a 100644 --- a/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_go/anycubic_kobra_go_tpu.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_tpu quality_type = tpu -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg index e04940df10..0526b0f603 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = pla -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg index ce518fc4e1..4da10b8b8e 100644 --- a/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg +++ b/resources/quality/anycubic_kobra_max/anycubic_kobra_max_tpu.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = tpu -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg index 7ac90930a9..9217643c89 100644 --- a/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg +++ b/resources/quality/anycubic_kobra_plus/anycubic_kobra_plus_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg index ffdbb12038..5529816a02 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg index 69ea443736..c8818da7ed 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg index 23467c9bc3..0bd80120de 100644 --- a/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg +++ b/resources/quality/anycubic_mega_zero/anycubic_mega_zero_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/anycubic_predator/predator_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_coarse.inst.cfg index cecac7c417..26fa696466 100644 --- a/resources/quality/anycubic_predator/predator_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/anycubic_predator/predator_draft.inst.cfg b/resources/quality/anycubic_predator/predator_draft.inst.cfg index b675f04ca4..374deca2e3 100644 --- a/resources/quality/anycubic_predator/predator_draft.inst.cfg +++ b/resources/quality/anycubic_predator/predator_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg index 21b398c1bb..4e4397d970 100644 --- a/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg index 0b4735578c..950a81f12b 100644 --- a/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xfine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_fine.inst.cfg b/resources/quality/anycubic_predator/predator_fine.inst.cfg index 0d3015814d..1c4f6ed5bb 100644 --- a/resources/quality/anycubic_predator/predator_fine.inst.cfg +++ b/resources/quality/anycubic_predator/predator_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/anycubic_predator/predator_normal.inst.cfg b/resources/quality/anycubic_predator/predator_normal.inst.cfg index a684d4d35b..d9a2d68c1b 100644 --- a/resources/quality/anycubic_predator/predator_normal.inst.cfg +++ b/resources/quality/anycubic_predator/predator_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg index 11acec995d..2d6645a34e 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg index c7666a95ec..45ee081ac1 100644 --- a/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg index a3f3a42ca6..19260356d1 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg index 5128f6fe3f..1a7b5473a2 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg index f1931b93e9..40cd01ad3f 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg index 2fb224f03a..4200c69001 100644 --- a/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg index 117f78ff38..c3bf7c407b 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg index add5e339d4..b93b36ec5d 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg index 0eb908acf6..eeeee0d188 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg index 25983e79c2..d0b4c7f964 100644 --- a/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg index 6980b4c848..6175524128 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg index 549506a69a..b718ecd684 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg index d6136c9f17..2510e4aae6 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg index 258a45ba89..b3e32fcf18 100644 --- a/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg index 1c556e5564..3ad4c092e2 100644 --- a/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg index bad27f445d..59a10dad2d 100644 --- a/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg index 7fd0913c5e..032af81f57 100644 --- a/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg +++ b/resources/quality/artillery/ABS/artillery_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg index c27c00e6d9..f869a22e57 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg index 84099e707d..2f589318bb 100644 --- a/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg index d8ab5b4708..fc741f7305 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg index 859d7010b1..b52ac9c71f 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg index 121e957c30..89152c4d45 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg index 92551aa821..0b1750a940 100644 --- a/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg index 776636a8fd..0eae81f437 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg index daceab0a29..fb5385de8c 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg index 50314b8361..39d12f1805 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg index 2f4b5206de..18dff69442 100644 --- a/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg index 207b81227e..7f7420d681 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg index 24cf0d5390..f3ff173e08 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg index 8b6b8a0599..019ef0d677 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg index 48a329febc..b157135855 100644 --- a/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg index d9230a6398..d0fa57a50a 100644 --- a/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg index 2f92394892..92d5d96997 100644 --- a/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg index 4c58a5698e..404b9af2ef 100644 --- a/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg +++ b/resources/quality/artillery/PETG/artillery_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg index 8ec277000a..dc2345b206 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg index f020dd2225..f9228794d6 100644 --- a/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg index a8ead0ef61..fad6b2d45b 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg index 201cc59e1d..4422e6367e 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg index 2bb875f22d..f8d9ff4999 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg index e6295131e6..963208a672 100644 --- a/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg index 71cef9cc68..43f90bbb7f 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg index 84905f95d9..65f51a0ff0 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg index 83c159d91f..b34daeba52 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg index 118494b380..a1bc73dae8 100644 --- a/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg index e2b8eb9d5c..322beb504e 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg index ecd8357307..28d908b872 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg index 46487edb08..a75279b131 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg index 6d31588cf0..c7b933d89b 100644 --- a/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg index ea6dfa3f9e..1e1e406aa4 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg index 2b281b57f7..b04ad1c2b9 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg index d349693711..a5d42d22b6 100644 --- a/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg index 08a00715be..0fe24e83e0 100644 --- a/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg index bd3c512710..f29426fe08 100644 --- a/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg +++ b/resources/quality/artillery/PLA/artillery_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg index 964c5c1a82..f7ab821730 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg index c8df48da97..026515dd70 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg index c91abe6f60..4210b1f741 100644 --- a/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg index 4f609193b9..b560a69cc3 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg index 643d3f802c..77dffae027 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg index fd9770ad13..0c64f90c1c 100644 --- a/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg index 7e20a4e444..fb770f3f53 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg index b172c720a6..bdd9bdc4bf 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg index 8488194de3..2eda61adad 100644 --- a/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg index f19464ad8c..0cf8ca895b 100644 --- a/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg index f49e7541ac..483413baa0 100644 --- a/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg index 7d21369ee5..f1216d5c2f 100644 --- a/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg +++ b/resources/quality/artillery/TPU/artillery_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/artillery/artillery_global_adaptive.inst.cfg b/resources/quality/artillery/artillery_global_adaptive.inst.cfg index c38437a2b0..8bc150c2a0 100644 --- a/resources/quality/artillery/artillery_global_adaptive.inst.cfg +++ b/resources/quality/artillery/artillery_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/artillery/artillery_global_draft.inst.cfg b/resources/quality/artillery/artillery_global_draft.inst.cfg index f2623b07ca..746600e1d9 100644 --- a/resources/quality/artillery/artillery_global_draft.inst.cfg +++ b/resources/quality/artillery/artillery_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/artillery/artillery_global_low.inst.cfg b/resources/quality/artillery/artillery_global_low.inst.cfg index b68bb9cad0..15a795c864 100644 --- a/resources/quality/artillery/artillery_global_low.inst.cfg +++ b/resources/quality/artillery/artillery_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/artillery/artillery_global_standard.inst.cfg b/resources/quality/artillery/artillery_global_standard.inst.cfg index 3c4b7e3f3f..29ad74ebbe 100644 --- a/resources/quality/artillery/artillery_global_standard.inst.cfg +++ b/resources/quality/artillery/artillery_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/artillery/artillery_global_super.inst.cfg b/resources/quality/artillery/artillery_global_super.inst.cfg index e70190eb90..7136d43e4d 100644 --- a/resources/quality/artillery/artillery_global_super.inst.cfg +++ b/resources/quality/artillery/artillery_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/artillery/artillery_global_ultra.inst.cfg b/resources/quality/artillery/artillery_global_ultra.inst.cfg index 850cc73f83..23fef62018 100644 --- a/resources/quality/artillery/artillery_global_ultra.inst.cfg +++ b/resources/quality/artillery/artillery_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg index 9244ae9335..1287d690ae 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg index 9523866c1d..ca968d8695 100644 --- a/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg index f59bf7aaf9..1766d81554 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg index 7ca002b987..9f852005a3 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg index ba93b1d995..1136bf538b 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg index 1ba4d7b89f..51f078ff1c 100644 --- a/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg index 3a738b966f..73dc370aaa 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg index 10ea2fe33f..0f31650e6e 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg index 7b40781160..7ad923b2e6 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg index 1bfa6501b8..8c87e6d3dc 100644 --- a/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg index 68e9d25231..3fd82d5c46 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg index 055614c812..4768cf9e39 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg index 37f8e3ca18..415640238b 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg index ea87807340..12e4ffaf79 100644 --- a/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg index a4d8b5cf89..0da5cf610d 100644 --- a/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg index 450ff10e65..59138eeaac 100644 --- a/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg index 651b7b91ce..caff72c7c5 100644 --- a/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/artillery/nylon/artillery_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg index c618f22ec6..3442923e63 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg index 9045688eb5..cdc3592f8b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg index c20770e7eb..b693b661bb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg index 21a9b4977d..48f336fc63 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg index 5783d4035e..9254fe59c1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg index ebf2240981..d25834ca2a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg index 45ac5f30e1..d17fa7da79 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg index abea65986d..8c2e80a7f4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg index 9211291503..ab7cb0118b 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg index 0037dc8e3b..f0c17511dc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg index 7814f10d5a..65acd66e0d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg index f4f52b4f64..94f92e1936 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg index 7e0700c912..db475e53df 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg index f31ac3b763..babd96748d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg index da88ed8e0a..358ce60aea 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg index b5f6a23b1a..c5d0819c60 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_HIPS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg index cfe6423311..266e2fe501 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg index f12e118679..d095339d5e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg index cfd4c48e3c..af5f393aae 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg index e2267a15be..40a03c55ce 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg index 4895e1bad9..f1a252403f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg index 594c8cc340..152553472f 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg index f98243c870..f85c3cb510 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg index 9a392d3fe7..6bc8f33e54 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg index 204bc3c6ce..a3232105ae 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg index 8b70a44c01..fe8f09c63c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg index 8674f58cd1..31a05bb617 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg index f9e1c1575a..d4b9b4ddfa 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg index b6bd759337..26df90f5c1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg index 1aa556f189..31e8ea0550 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg index cd021a0cbc..c9797a2cfe 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg index 6b4a617394..becf5b5cf4 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg index c40580028a..dd9e7fe3bb 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg index 03f80e8e84..513f0da466 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg index 820c8b74ac..adae714df1 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg index 6ad627d3e1..6b1bbbb8a9 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg index e9b0b4fd9c..6e478a911e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg index d5e5334a22..3457a1b02d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg index 962d4dcce6..221cc5ac38 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg index 89cfdadfd5..22b8d0a8d3 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.40_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg index 17323226f9..0f9315203c 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg index d81d212335..2a746d7f64 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg index 98ef74f7d2..36fd86e13e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg index 40c8023fb6..cccd3b2256 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg index b1de8aaba1..ba2511281a 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg index ae01192293..7b4fcde4e8 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_HIPS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg index 65582f5b0d..e3e0d799f0 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg index a156e49b78..aac1d8a0ab 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg index 28aa90f61a..55ae0a8fce 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg index b1d9efc34a..385b7e3141 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg index 672c65f51c..c9fc67c950 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg index b29b85b8f2..943f08d599 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg index bf044f9541..4705703de2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg index 99aa800fd3..5440413296 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg index 6109281345..f528d7cf56 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg index d5e6e8f61d..886537d0cc 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg index e558d3c272..859a354d51 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg index 034dd29681..f535be8554 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg index 8bffcdd8c5..04cfdde468 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg index e64eee6119..55ef14550e 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg index fa25a246fb..adb4728d13 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_PVA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg index a68aded6ce..84b3f9b55d 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg index 908298d6c4..f6a4434cc2 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg index db69b0d710..52ea41c487 100644 --- a/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg +++ b/resources/quality/atmat_signal_pro/signal_pro_v6_0.80_TPU_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/bambu/bambulab_a1_0.4_PLA_standard.inst.cfg b/resources/quality/bambu/bambulab_a1_0.4_PLA_standard.inst.cfg new file mode 100644 index 0000000000..9f2878702e --- /dev/null +++ b/resources/quality/bambu/bambulab_a1_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = bambulab_a1 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 25 +type = quality +variant = 0.4mm + +[values] + diff --git a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg b/resources/quality/bambu/bambulab_a1_normal.inst.cfg similarity index 76% rename from resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg rename to resources/quality/bambu/bambulab_a1_normal.inst.cfg index 2356a128b0..a3fd08879e 100644 --- a/resources/quality/zyyx/zyyx_agile_global_normal.inst.cfg +++ b/resources/quality/bambu/bambulab_a1_normal.inst.cfg @@ -1,12 +1,12 @@ [general] -definition = zyyx_agile +definition = bambulab_a1 name = Normal version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/bambu/bambulab_a1mini_0.4_PLA_standard.inst.cfg b/resources/quality/bambu/bambulab_a1mini_0.4_PLA_standard.inst.cfg new file mode 100644 index 0000000000..95c665155d --- /dev/null +++ b/resources/quality/bambu/bambulab_a1mini_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = bambulab_a1mini +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 25 +type = quality +variant = 0.4mm + +[values] + diff --git a/resources/quality/bambu/bambulab_a1mini_normal.inst.cfg b/resources/quality/bambu/bambulab_a1mini_normal.inst.cfg new file mode 100644 index 0000000000..afb403d8f1 --- /dev/null +++ b/resources/quality/bambu/bambulab_a1mini_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = bambulab_a1mini +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 25 +type = quality +weight = 0 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/bambu/bambulab_x1_0.4_PLA_standard.inst.cfg b/resources/quality/bambu/bambulab_x1_0.4_PLA_standard.inst.cfg new file mode 100644 index 0000000000..01ba90dcb9 --- /dev/null +++ b/resources/quality/bambu/bambulab_x1_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = bambulab_x1 +name = Standard +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 25 +type = quality +variant = X1 0.4mm + +[values] + diff --git a/resources/quality/bambu/bambulab_x1_normal.inst.cfg b/resources/quality/bambu/bambulab_x1_normal.inst.cfg new file mode 100644 index 0000000000..22c501ee36 --- /dev/null +++ b/resources/quality/bambu/bambulab_x1_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = bambulab_x1 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 25 +type = quality +weight = 0 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg index 0c492f7651..c043269490 100644 --- a/resources/quality/beamup_l/beamup_l_coarse.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/beamup_l/beamup_l_draft.inst.cfg b/resources/quality/beamup_l/beamup_l_draft.inst.cfg index 8f3fb7ce5d..997a500f44 100644 --- a/resources/quality/beamup_l/beamup_l_draft.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg index 203f8da165..ccede55a1c 100644 --- a/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/beamup_l/beamup_l_fine.inst.cfg b/resources/quality/beamup_l/beamup_l_fine.inst.cfg index e62534025d..d3b48cc45f 100644 --- a/resources/quality/beamup_l/beamup_l_fine.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/beamup_l/beamup_l_normal.inst.cfg b/resources/quality/beamup_l/beamup_l_normal.inst.cfg index 86d73af1ef..d0a0262349 100644 --- a/resources/quality/beamup_l/beamup_l_normal.inst.cfg +++ b/resources/quality/beamup_l/beamup_l_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg index d7b636cbc7..fd77eb1c8b 100644 --- a/resources/quality/beamup_s/beamup_s_coarse.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/beamup_s/beamup_s_draft.inst.cfg b/resources/quality/beamup_s/beamup_s_draft.inst.cfg index 50a8d2fe50..777c22b9a2 100644 --- a/resources/quality/beamup_s/beamup_s_draft.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg index eaa39d9cf7..54b2ecf98f 100644 --- a/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/beamup_s/beamup_s_fine.inst.cfg b/resources/quality/beamup_s/beamup_s_fine.inst.cfg index 726d48be20..17a4ad3128 100644 --- a/resources/quality/beamup_s/beamup_s_fine.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/beamup_s/beamup_s_normal.inst.cfg b/resources/quality/beamup_s/beamup_s_normal.inst.cfg index eaafcc1164..23066f7881 100644 --- a/resources/quality/beamup_s/beamup_s_normal.inst.cfg +++ b/resources/quality/beamup_s/beamup_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/biqu/b2/biqu_b2_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_adaptive.inst.cfg new file mode 100644 index 0000000000..b9f8323096 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_adaptive.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = biqu_b2 +name = Dynamic Quality +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = adaptive +setting_version = 25 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/biqu/b2/biqu_b2_0.4_PLA_draft.inst.cfg b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_draft.inst.cfg new file mode 100644 index 0000000000..57b48a55a5 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_draft.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = biqu_b2 +name = Draft Quality +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/biqu/b2/biqu_b2_0.4_PLA_low.inst.cfg b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_low.inst.cfg new file mode 100644 index 0000000000..d11d6658d4 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_low.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = biqu_b2 +name = Low Quality +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = low +setting_version = 25 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/biqu/b2/biqu_b2_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_standard.inst.cfg new file mode 100644 index 0000000000..fa641937bb --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_standard.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = biqu_b2 +name = Standard Quality +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = standard +setting_version = 25 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/biqu/b2/biqu_b2_0.4_PLA_super.inst.cfg b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_super.inst.cfg new file mode 100644 index 0000000000..7aadcb580c --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_super.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = biqu_b2 +name = Super Quality +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = super +setting_version = 25 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/biqu/b2/biqu_b2_0.4_PLA_ultra.inst.cfg b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_ultra.inst.cfg new file mode 100644 index 0000000000..fbd8a08905 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_0.4_PLA_ultra.inst.cfg @@ -0,0 +1,14 @@ +[general] +definition = biqu_b2 +name = Ultra Quality +version = 4 + +[metadata] +material = generic_pla_175 +quality_type = ultra +setting_version = 25 +type = quality +variant = 0.4mm Nozzle + +[values] + diff --git a/resources/quality/biqu/b2/biqu_b2_global_adaptive.inst.cfg b/resources/quality/biqu/b2/biqu_b2_global_adaptive.inst.cfg new file mode 100644 index 0000000000..54484e046e --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_global_adaptive.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = biqu_b2 +name = Dynamic Quality +version = 4 + +[metadata] +global_quality = True +quality_type = adaptive +setting_version = 25 +type = quality +weight = -2 + +[values] +adaptive_layer_height_enabled = true +layer_height = 0.16 +layer_height_0 = 0.20 +material_final_print_temperature = 195 +material_initial_print_temperature = 195 +material_print_temperature = 190 +material_standby_temperature = 195 +optimize_wall_printing_order = True +prime_tower_min_volume = 150 +support_interface_height = =layer_height*6 +switch_extruder_prime_speed = 10 +switch_extruder_retraction_amount = 40 +switch_extruder_retraction_speeds = 30 +top_bottom_thickness = =layer_height_0+layer_height*4 +wall_thickness = =line_width*3 + diff --git a/resources/quality/biqu/b2/biqu_b2_global_draft.inst.cfg b/resources/quality/biqu/b2/biqu_b2_global_draft.inst.cfg new file mode 100644 index 0000000000..e5ebe77ad2 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_global_draft.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = biqu_b2 +name = Draft Quality +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 25 +type = quality +weight = -5 + +[values] +layer_height = 0.32 +layer_height_0 = 0.32 +material_final_print_temperature = 195 +material_initial_print_temperature = 195 +material_print_temperature = 190 +material_standby_temperature = 195 +optimize_wall_printing_order = True +prime_tower_min_volume = 150 +support_interface_height = =layer_height*4 +switch_extruder_prime_speed = 10 +switch_extruder_retraction_amount = 40 +switch_extruder_retraction_speeds = 30 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/quality/biqu/b2/biqu_b2_global_low.inst.cfg b/resources/quality/biqu/b2/biqu_b2_global_low.inst.cfg new file mode 100644 index 0000000000..2a0f57981f --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_global_low.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = biqu_b2 +name = Low Quality +version = 4 + +[metadata] +global_quality = True +quality_type = low +setting_version = 25 +type = quality +weight = -4 + +[values] +layer_height = 0.28 +layer_height_0 = 0.28 +material_final_print_temperature = 195 +material_initial_print_temperature = 195 +material_print_temperature = 190 +material_standby_temperature = 195 +optimize_wall_printing_order = True +prime_tower_min_volume = 150 +support_interface_height = =layer_height*4 +switch_extruder_prime_speed = 10 +switch_extruder_retraction_amount = 40 +switch_extruder_retraction_speeds = 30 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*3 + diff --git a/resources/quality/biqu/b2/biqu_b2_global_standard.inst.cfg b/resources/quality/biqu/b2/biqu_b2_global_standard.inst.cfg new file mode 100644 index 0000000000..e2860c23e3 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_global_standard.inst.cfg @@ -0,0 +1,29 @@ +[general] +definition = biqu_b2 +name = Standard Quality +version = 4 + +[metadata] +global_quality = True +position = 0 +quality_type = standard +setting_version = 25 +type = quality +weight = -3 + +[values] +layer_height = 0.2 +layer_height_0 = 0.2 +material_final_print_temperature = 195 +material_initial_print_temperature = 195 +material_print_temperature = 190 +material_standby_temperature = 195 +optimize_wall_printing_order = True +prime_tower_min_volume = 150 +support_interface_height = =layer_height*4 +switch_extruder_prime_speed = 10 +switch_extruder_retraction_amount = 40 +switch_extruder_retraction_speeds = 30 +top_bottom_thickness = =layer_height_0+layer_height*3 +wall_thickness = =line_width*3 + diff --git a/resources/quality/biqu/b2/biqu_b2_global_super.inst.cfg b/resources/quality/biqu/b2/biqu_b2_global_super.inst.cfg new file mode 100644 index 0000000000..9343fe00df --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_global_super.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = biqu_b2 +name = Super Quality +version = 4 + +[metadata] +global_quality = True +quality_type = super +setting_version = 25 +type = quality +weight = -1 + +[values] +layer_height = 0.12 +layer_height_0 = 0.12 +material_final_print_temperature = 195 +material_initial_print_temperature = 195 +material_print_temperature = 190 +material_standby_temperature = 195 +optimize_wall_printing_order = True +prime_tower_min_volume = 150 +support_interface_height = =layer_height*8 +switch_extruder_prime_speed = 10 +switch_extruder_retraction_amount = 40 +switch_extruder_retraction_speeds = 30 +top_bottom_thickness = =layer_height_0+layer_height*6 +wall_thickness = =line_width*3 + diff --git a/resources/quality/biqu/b2/biqu_b2_global_ultra.inst.cfg b/resources/quality/biqu/b2/biqu_b2_global_ultra.inst.cfg new file mode 100644 index 0000000000..4625e672e3 --- /dev/null +++ b/resources/quality/biqu/b2/biqu_b2_global_ultra.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = biqu_b2 +name = Ultra Quality +version = 4 + +[metadata] +global_quality = True +quality_type = ultra +setting_version = 25 +type = quality +weight = 0 + +[values] +layer_height = 0.08 +layer_height_0 = 0.12 +material_final_print_temperature = 195 +material_initial_print_temperature = 195 +material_print_temperature = 190 +material_standby_temperature = 195 +optimize_wall_printing_order = True +prime_tower_min_volume = 150 +support_interface_height = =layer_height*12 +switch_extruder_prime_speed = 10 +switch_extruder_retraction_amount = 40 +switch_extruder_retraction_speeds = 30 +top_bottom_thickness = =layer_height_0+layer_height*10 +wall_thickness = =line_width*4 + diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg index 6aa4fae488..825d4ae6c0 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg index a521feca63..01c6825bc0 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg index 8811d1f837..844c50017a 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg index d7a307f57a..47894db344 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg index e672eb9316..0dd31a5476 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg index be00db90b3..754b629307 100644 --- a/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg index b565e8f74c..6c4dc4deb3 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg index 51dc9fbb76..3df664ef80 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg index 0738ff8ef8..479914bc8c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg index 07c7f0ded1..4b15f5a12f 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg index c014b267d0..b55d5d34b6 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg index 09f14d8c01..8f66e33c43 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg index 363762ac85..5c528864d0 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg index fb21754f0f..86d4ed49fc 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg index ce554b2755..daa4c45b4c 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg index 07b0d4d369..5bb624bb1b 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg index 06258db290..22a04e85e4 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg index 6815703726..abecac2b8a 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg index 8d5cc94903..8048ffde74 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg index 84eaa67a29..356e811d10 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg index 000779dbba..4fbe36ffee 100644 --- a/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg index ea02181e29..4661962a8d 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg index 1301d6b732..e49716a5d3 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg index 005a64b24d..c60725d95e 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg index f9b4caf8fb..1a443bb8c2 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg index 4af0e371e8..5ef2b049d9 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg index 78825c5d8d..0542cee607 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg index aa96425455..d31c2e6d57 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg index c62eb06655..af6e8dfb1f 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg index a507e2555e..efe34eb49e 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg index 588b3dacc1..3bec498297 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg index df61197924..cb9143ff63 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg index 1dbcb62fb3..dd57580823 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg index 8bff839e45..2c1a84e23d 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg index f0333fac75..d60aef3028 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg index 924dd669d1..85b9d6a8fd 100644 --- a/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg index 05e3644675..ffdd8a8884 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg index 91466498c5..b8385f2c82 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg index 68e774f205..6c01cc3457 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg index 0f84569bad..754aa3a141 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg index 724d76d23b..a9fb59016f 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg index b801e75cc3..13c34d248d 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg index 7340f539f2..d3553fc610 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg index 754c2a43ea..8310e9d6f5 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg index f21e6e3b08..b258b7eddb 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg index 157b8eb9e3..a53c22e16d 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg index e116b7ec11..d36b0144f5 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg index 1ea39a2d1e..6ff27af1f7 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg index 7009c6d5fb..cf753450c5 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg index 2f0f770507..0a355334be 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg index 8a23e888c5..7073486d72 100644 --- a/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg index 9c5164287e..1fabda4e70 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg index 1ac3ee85a3..7dc6fa9c70 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg index 6b90e73483..7f4e6050b0 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg index c4db9c1979..33f9506049 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg index 23f06b83d7..92dc062953 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg index a95181b907..c6f45df050 100644 --- a/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg index 5df16e09a6..6c769adfcc 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg index bcbf4eb1e6..a71bbce0ec 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg index ef2c484653..a81f2d51ee 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg index d3a92884d1..b6307d751a 100644 --- a/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg index c5d553b9d9..1e78d64f83 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg index 8c999eb161..95a38a8ccc 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg index f509a3b572..cfae14655a 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg index d712d097b2..c35e623798 100644 --- a/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg index 1096d25f8c..c61f9b4b26 100644 --- a/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg index bfe1b9a4b1..93020af6de 100644 --- a/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg index f302300232..63a27bb2a4 100644 --- a/resources/quality/biqu/base/biqu_base_global_low.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg index 7361f29fa0..5981a04f51 100644 --- a/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg index 8c6c8d0919..0538442525 100644 --- a/resources/quality/biqu/base/biqu_base_global_super.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg index fbea0a9ed8..0f2cb93d81 100644 --- a/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg +++ b/resources/quality/biqu/base/biqu_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg index bd1da0170a..a8a6a726ee 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low 0.2 -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg index 08fc738619..123efd1298 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.2 -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg index 0993d1e938..1fcd6f5526 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg index 60df32c561..ea6e114cd7 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal 0.3 -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg index c54ce24ba4..966d1b5214 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg index dbbd5b3788..fa00fd28fb 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg index 6fa18591f6..d4e7def62b 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg index 1c630a6e14..30aa251cff 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg index 7b5af6f41b..edadbb4116 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg index 92deb8ba49..b9409d2fac 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg index e09730ba94..38545d78af 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg index d04036f8d8..104fdd410e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg index 9713c85ede..6f465c45a7 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg index f9597d54b5..8958b1661a 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg index 2e26c89cd2..82abfe9915 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg index 0706d57844..b80bc293a0 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg index ca494c3777..f106f40b57 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg index 97eb190769..6e634293b2 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg index 7eb8ddd920..ab59d82aff 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg index 7b80e3ba89..00ad27496e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg index 22389c7f59..239145f024 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg index bfe070b2ef..3fe7409da3 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg index 5420a1f6b8..01068c06aa 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg index 33071d96b4..339cc5dbe1 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg index 241a81753e..16ef0c1c9c 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg index 17033f013d..d90cb707ec 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg index 0b6985238b..3b57ba9071 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg index abdf0409f0..a9855ecc05 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg index d83be54131..1dc1af41d0 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg index f97453339b..c3c6688f69 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg index 66ef59fac8..a3d44d1dc1 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 1.2mm Nozzle weight = -2 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg index 45549791bf..cab1f5129a 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg index 0f95a2c5f3..fb397d4418 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg index 4b777fb89d..e1d9cb9090 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.2mm Nozzle weight = -3 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg index b1d01bfc87..4f240e2e19 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = 1.2mm Nozzle weight = -5 diff --git a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg index 61c875e617..c3cd197b7e 100644 --- a/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Nozzle/blocks_global_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 1.2mm Nozzle weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg index dd9168741c..48e1078ded 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg index 7ac14cd8f3..05cbdaa69d 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg index 7c7f10fe64..7dfeeef5e0 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg index a74ca975ff..4d3499c6a2 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg index 815027d6ef..3a317c6cd9 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg index c3c4a03bd6..fb18bdeebe 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg index 66790c739a..23dfdf0963 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg index a3f8ed15b9..f558438979 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg index 99432f51c0..72e14bdf57 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg index e789d4ae4b..f8a173a485 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg index d54e44fff1..56e83b94cf 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg index a97de1a9a3..7bf93961ca 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg index 92ca89fa6f..567528549c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg index 6727b950c8..3337617856 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg index 2dbee187a8..a3c6085f7a 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg index ef6e16e3f3..a76d39742c 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg index 2d85d53f4e..2cf3a3ac1f 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg index 109c79608f..80e2c7e508 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg index b87d68962e..3fcc46da81 100644 --- a/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/HT/blocks_global_ht_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = HT - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg index 10806f53c4..ae3f06a81e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg index 8f747c08e9..cb9b027982 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.20_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg index b0d9447b82..3311fcf14c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.3mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg index 2c8444df01..b37b2387ba 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.3mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg index 8410e56e1d..0cc38503e5 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.30_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.3mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg index 0dee28da76..ba376bbf90 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.4mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg index 86be97d7ef..efd2b79e7a 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.4mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg index b3b20834ec..2488dedf08 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.4mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg index ea1c5269f4..cc6f02e1fd 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.40_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.4mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg index d95326a2cd..76bc81adc9 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.5mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg index 6139f477a9..2d2a5e91b0 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.5mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg index d6b10ead40..de8dd11a2c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.5mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg index 501fd43305..eff4f93ea8 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.50_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.5mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg index 9210920b17..03384aa8a7 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.6mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg index 37071e37ec..e2902cffe3 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.6mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg index 4d7a139ee4..2ad0d6165c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg index 0f4fb4da2a..e63e250f3c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.6mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg index c0d98feb50..7e26c27a49 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.60_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.6mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg index f3b66ecd9f..a4afd5ac73 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.8mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg index 075bc33bdf..378523f478 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.8mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg index bfe0c1efb3..850bc3a26c 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg index cdeffbce07..fe1d023acf 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.8mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg index 6aa9142446..fe9b8af1ea 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg index 4f196bd070..7f1d6398aa 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_0.80_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 0.8mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg index 8df63decc4..991af69021 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.0mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg index cc34498a54..4276b3bbfa 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.0mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg index 5dcd5eca8c..d0ed7c0803 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg index 12c5e568ab..de9a297fbb 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.0mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg index 910efb6244..04e87705dd 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg index a9d00ea40d..7b89e904aa 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.0_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.0mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg index 3acda8b9dc..0d11ee867e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.2mm weight = -2 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg index ced39e298b..079e1905bc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.2mm weight = -5 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg index 068ed81057..0888a4da85 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg index f094968a1a..d7a6e327fc 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.2mm weight = -3 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg index 2f34faba86..a423ad8c6b 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_superlow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superlow -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg index 416ed6cce1..55b360ec4e 100644 --- a/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg +++ b/resources/quality/blocks/Printcore/ST/blocks_global_st_1.2_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = ST - 1.2mm weight = 0 diff --git a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg index 0c86d1922b..180249221f 100644 --- a/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg index f2f475d324..05559947f0 100644 --- a/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg index f96020401d..3e3fe86cf3 100644 --- a/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_BVOH_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg index fbd2b1b648..2df728b31e 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg index 18b43d1fce..d5c45ec73b 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg index c25fe48eee..6db0415e07 100644 --- a/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_Innoflex60_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = innofill_innoflex60_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg index a662fd199a..3ce7c190e9 100644 --- a/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg index 5be817574f..14a29de619 100644 --- a/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg index 955c533ee0..00f1a15517 100644 --- a/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg index 81c3bac17a..2ff764640e 100644 --- a/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg index 0270042c6d..795cf2dc31 100644 --- a/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg index 10cd3774a1..decaa0f341 100644 --- a/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg index 55b35c33a1..d4620fe905 100644 --- a/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg index 5c744cde48..8445797af4 100644 --- a/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg index da56e1c7d0..c9da08478d 100644 --- a/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg index 74ac09ab1f..fb501d5422 100644 --- a/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg index 4185c32c2d..da0ac4350d 100644 --- a/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg index 6ffc2dc31a..7a1f65fb7c 100644 --- a/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg +++ b/resources/quality/builder_premium/bp_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg index 747d7c0bbe..713f12bb50 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg index 8d9db6ef9d..ffeb1be1cb 100644 --- a/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.25_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg index 756f8f2917..72d51f566f 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg index 2b50d823db..fd9fdb92a4 100644 --- a/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg index e20ed3a4a5..c0fdcd3232 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg index 89c3c5ddf1..20b665fcc1 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg index 98ec1d290c..d205c78b13 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg index 1102445d73..9161e459c2 100644 --- a/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg +++ b/resources/quality/cartesio/abs/cartesio_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg index fdebf33114..a6e40799ce 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg index dc583398e3..f12e6545d4 100644 --- a/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg +++ b/resources/quality/cartesio/arnitel/cartesio_0.4_arnitel2045_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = dsm_arnitel2045_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg index 275f1afb76..a20c84c8df 100644 --- a/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg index 0db9ae1a24..0dfd1bdc45 100644 --- a/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg index 30633b369d..1ea14a2477 100644 --- a/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg index 3037c3aaad..8d21247eda 100644 --- a/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg +++ b/resources/quality/cartesio/cartesio_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg index 59d3cde27f..c503cde747 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg index 237b9c9997..178ba3d646 100644 --- a/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.25_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg index d045650dd1..3e70115c40 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg index 9edbe0795b..84c97acc97 100644 --- a/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.4_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg index 07cb20a6a3..719cc30498 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg index f83ece82c9..a7fa0f7cf0 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg index 432bdb5181..7f5770f197 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg index 56767df588..99f40abc38 100644 --- a/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg +++ b/resources/quality/cartesio/hips/cartesio_0.8_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg index cd90509f5f..0e9c34821b 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg index 8b67e6343f..a6d25da3b7 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.25_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg index c2602f9f9b..8314d224d2 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg index c20a955d02..a636819d4d 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.4_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg index 0aa49b222d..9f039aac07 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg index a31c713bde..7ae2d5f587 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg index ba853061da..043bd09616 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg index 3907f5ceca..397b7cb212 100644 --- a/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg +++ b/resources/quality/cartesio/nylon/cartesio_0.8_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg index 59e92e733f..68dc5884c8 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg index 4e408ceef7..deaa3d7de1 100644 --- a/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.25_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg index f01fae14b4..cc961cbc22 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg index b70d03a341..31006a7332 100644 --- a/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.4_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg index 3dfa6bbc07..9cca9cf27e 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg index 48851fed3e..671aea19ad 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg index feed09fb66..9316622dd5 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg index e510fc1453..375ea932cb 100644 --- a/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg +++ b/resources/quality/cartesio/pc/cartesio_0.8_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg index b6422335ff..729bf0b8e3 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg index 79c4b15ea8..be77418247 100644 --- a/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.25_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg index fd94e73fd1..1ed66f4035 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg index e648a5bb24..a849e69445 100644 --- a/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg index 2a824cbd42..470c8142a8 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg index efd1f9a6d7..a9fdd48401 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg index 7a294b9532..643e084280 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg index 1fb094b684..7bff2f1423 100644 --- a/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg +++ b/resources/quality/cartesio/petg/cartesio_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg index f4c45020ea..3e88ce4fd1 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg index 88a4cbaf4b..6242fd942f 100644 --- a/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.25_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg index d68392a58e..6beb957085 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg index 52d9cbefa0..84e5d08dc7 100644 --- a/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg index 1664e93b37..6f66cbacd9 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = -3 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg index e269557ea5..b1f2a1e658 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = -4 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg index e8af9745d7..1fc82ac3b8 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg index d2a7e8d673..b1001f3da7 100644 --- a/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg +++ b/resources/quality/cartesio/pla/cartesio_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg index c077347a27..f3297f5885 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg index 7689cb7296..b16d2627fa 100644 --- a/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.25_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg index a764523419..4aa1d32815 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg index 5d96b324b8..6a559623d2 100644 --- a/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.4_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm thermoplastic extruder weight = 0 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg index c97c5e0d11..199d8de28b 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 3 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg index b9ccbec940..75ca10f9c6 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 4 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg index 7be3729c54..d08afa49e1 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 1 diff --git a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg index c5575d58fc..d2ba3c2fe0 100644 --- a/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg +++ b/resources/quality/cartesio/pva/cartesio_0.8_pva_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm thermoplastic extruder weight = 0 diff --git a/resources/quality/coarse.inst.cfg b/resources/quality/coarse.inst.cfg index 28df0a1c18..30bf70ecf1 100644 --- a/resources/quality/coarse.inst.cfg +++ b/resources/quality/coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg index 510e7f1c3d..d3dc8796f1 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg index 2901a92b34..c3dc296893 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg index 37390c4f2c..b8aceef7af 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg index e631278a12..2ce859be79 100644 --- a/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg +++ b/resources/quality/crazy3dprint/abs/crazy3dprint_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg index 0cc925e81c..10f8658714 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg index 42a05036bf..525e7d69b5 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg index be04111ffc..caa15e254a 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg index 0a89b548af..3abd21edaf 100644 --- a/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/crazy3dprint_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg index a215b77102..a65af4af42 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg index f8bd706b13..9da0e102be 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg index 59769cff2c..0f5ebcbccd 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg index 07e3bdfc33..3c5bba3ad9 100644 --- a/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg +++ b/resources/quality/crazy3dprint/pla/crazy3dprint_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg index 17f02a5341..5d7f84b41f 100644 --- a/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg index 249d81eda4..92e0d973eb 100644 --- a/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg index f202bc039f..9156fdca37 100644 --- a/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg index f014c4d817..40919d09f7 100644 --- a/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg index 9069c6217d..cd99fca0f7 100644 --- a/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg index e7549eb0cd..f120708eca 100644 --- a/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/creality/base/base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg index c459673c03..7387612340 100644 --- a/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg index 3ac36051ef..eafc7db9d8 100644 --- a/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg index 0747c9470e..90b6843a28 100644 --- a/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg index 32520aa212..523886b6e7 100644 --- a/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg index c131707e19..fd10117016 100644 --- a/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg index b20f448ba0..a1cd72919f 100644 --- a/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg index b8e5ad16c2..47ab5af61d 100644 --- a/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg index e5c59aade7..2166908b2e 100644 --- a/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg index a1b31cbb36..8c13019ca2 100644 --- a/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg index 4958661ff4..97f249cd2c 100644 --- a/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg index f5319c95ac..5a4d943ce5 100644 --- a/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg index 91518c75fc..2312e0b43b 100644 --- a/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg index 24b32bccdb..3ab36c3552 100644 --- a/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg index cc15f42fb1..c573e5f5a2 100644 --- a/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg index 6e9a67af5c..5b0317dba6 100644 --- a/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg index cb84911e81..16a2acdecc 100644 --- a/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg index 38b057a744..f88e5210fc 100644 --- a/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg index 400bc2a190..f9505b62a8 100644 --- a/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg index 4501bb5227..ac0abf04b9 100644 --- a/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg index 09122ad76b..617d80ed43 100644 --- a/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg index 316291ca09..2405672412 100644 --- a/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg index b279711da0..5ef10ceb94 100644 --- a/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg index cf31ad62b5..4e4d24d3ac 100644 --- a/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg index 7ba40dcd48..77dddadb12 100644 --- a/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg index 356a9390b0..8acb2b6700 100644 --- a/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg index 2ca57936c3..cf5a7d0057 100644 --- a/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg index 873563a5ab..a9fbd8c0ca 100644 --- a/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg index 3e33d4d280..9ae00de91e 100644 --- a/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg index 39244b0cc6..ab562174b8 100644 --- a/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg index 3e3e8ac50e..6732c58a78 100644 --- a/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg index 7f1bb0bc66..4c600f5089 100644 --- a/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg index 878286e616..eda5b36bbd 100644 --- a/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg index 7724c1001a..de3fe23ec2 100644 --- a/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg index c33d5a48b7..7a4590f47b 100644 --- a/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg index 675794832b..4bc27c697b 100644 --- a/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg index d55b54dc8b..0ba0bca725 100644 --- a/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg index b8b08fba46..7d2941a580 100644 --- a/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg index dd64434c06..7d219f3995 100644 --- a/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg index bea3579678..bce09e893f 100644 --- a/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg index 85809f8aaf..e085a8fa34 100644 --- a/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg index f4a885cd2c..16ceee72c2 100644 --- a/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg index d4caac8486..1115d93659 100644 --- a/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg index 4c8f24db64..0513706a2f 100644 --- a/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg index f437fc220c..eff4c95df3 100644 --- a/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg index 7c4a2dc2d7..a9fafaf4e1 100644 --- a/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg +++ b/resources/quality/creality/base/base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg index 0faaf8e45d..917012d379 100644 --- a/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg index 040da082a4..0a39206ef0 100644 --- a/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg index 9ce2b0454b..bb82f0b2a7 100644 --- a/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg index 463b652b05..1e81ddd8f5 100644 --- a/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg index 377b68b0d8..ddca071757 100644 --- a/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg index 1057a431a6..ddf826c2ec 100644 --- a/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/creality/base/base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg index 3f4026061c..0a4b7c3120 100644 --- a/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg index 587724a118..7a5035b4aa 100644 --- a/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg index 1e86537713..129663aedf 100644 --- a/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg index d660e3b15b..ec80ad4bbd 100644 --- a/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg index 13a66ff494..73d499cf58 100644 --- a/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg index b2e58f2975..3e1e1105ef 100644 --- a/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg index 76de410101..4e3cad5cb1 100644 --- a/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg index fd999f6b0d..ebc4783e45 100644 --- a/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/creality/base/base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/creality/base/base_global_adaptive.inst.cfg b/resources/quality/creality/base/base_global_adaptive.inst.cfg index 9a9841afbe..5de859107c 100644 --- a/resources/quality/creality/base/base_global_adaptive.inst.cfg +++ b/resources/quality/creality/base/base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/creality/base/base_global_draft.inst.cfg b/resources/quality/creality/base/base_global_draft.inst.cfg index dd5078d648..5635fb5671 100644 --- a/resources/quality/creality/base/base_global_draft.inst.cfg +++ b/resources/quality/creality/base/base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/creality/base/base_global_low.inst.cfg b/resources/quality/creality/base/base_global_low.inst.cfg index fd0a08e352..1160a40c1e 100644 --- a/resources/quality/creality/base/base_global_low.inst.cfg +++ b/resources/quality/creality/base/base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/creality/base/base_global_standard.inst.cfg b/resources/quality/creality/base/base_global_standard.inst.cfg index a3fd5f5956..b4deb5c44a 100644 --- a/resources/quality/creality/base/base_global_standard.inst.cfg +++ b/resources/quality/creality/base/base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/creality/base/base_global_super.inst.cfg b/resources/quality/creality/base/base_global_super.inst.cfg index a4bbfed83d..7ab93ce635 100644 --- a/resources/quality/creality/base/base_global_super.inst.cfg +++ b/resources/quality/creality/base/base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/creality/base/base_global_ultra.inst.cfg b/resources/quality/creality/base/base_global_ultra.inst.cfg index 85c78d7b8d..825dee599a 100644 --- a/resources/quality/creality/base/base_global_ultra.inst.cfg +++ b/resources/quality/creality/base/base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg index b75eb896a4..b13a01ebbd 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg index 9ce1333999..e35f4ffe93 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg index cf231a7631..1f127b595f 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg index 4487d7314a..79086d4a4e 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg index 18c2c9e8c2..9992daf088 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg index 18b92d7b8b..f96bef8aae 100644 --- a/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoeasy200_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg index 2964bd8424..226f4f743d 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg index db5d49de7b..b6afbd7ab9 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg index 99940ba8e4..8e5a066f10 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_bicolor_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg index 7873309c26..439cd7cc49 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg index 194a9d2ecc..7870a6fb30 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg index 2bc213d8ba..cd4c1a631e 100644 --- a/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_discoultimate_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg index 815d889a1b..bf0b5a423e 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg index 17493da3ac..7a838a75c4 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg index 83988387dd..2e3a30ba61 100644 --- a/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_magis_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg index 1ab336b3bd..ea51225daf 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg index 6095afc7a9..f3453a78bb 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg index 14cb361ba5..3ffa8910ca 100644 --- a/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg +++ b/resources/quality/dagoma/dagoma_neva_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = chromatik_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg index 7299109537..6a31d95887 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg index e1cbebad59..b0e7968901 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg index 8f52deed73..16ebf7a3cd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg index c66b230b3f..9d2217b583 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg index 5ca0aff282..50e237e887 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg index e4e9a63b3b..8fc5d48dbe 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg index 50af708e6d..b53db3a45f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg index 2c07478c3b..ee5a1350cf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg index 652346f10b..5899e3d16d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg index 2bbf4ca548..023fb8f9fb 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg index cc458da8d1..73a7de70df 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg index abf58a72a4..c5702688d1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg index 129ea34c39..3675bc6d73 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg index 10dcfad171..bdc70f8f0b 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg index 39d12f2573..9089249f54 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg index 5c79e53906..f1eaed090e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg index 6ba205b42e..009524b323 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg index 3f8e4d098f..b0ddc9982d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg index 41ceb4e795..6a73607216 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg index 5604950ca3..1fffa70b33 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg index f0462b9356..c643992cd1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg index 2d175ae2fa..b7216bc79e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg index 606a733664..2737398f13 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg index 6fc1ba3286..0925960e31 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg index 74a331f160..11f5aaf8dd 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg index cacb37c73d..d3c3fda8af 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg index 671147552c..51cfe182d1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg index e41b33ce6e..338530b309 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg index 42875c40dd..62f4f48cd7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg index fb4d097abb..a5592c93ad 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg index 6223ddba96..c35a4b1ef5 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg index bff7731278..5db36f6cda 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg index 7dadd7ef79..c2ff86bfad 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg index 8c90a1f304..9f12688a45 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg index cb2ad61411..a09d48e134 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg index 36e59de2e3..3f80a1765c 100644 --- a/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_bowden_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg index 9c87a86afc..4d951f889a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg index 7d01768643..29ba1a8dcc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg index 1a372f2689..614e020297 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg index 03735e73c9..e9ae4df410 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.4_tpu_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg index fd0e2092fe..5a710e2d43 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg index 764fae3340..b626c26084 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg index 105457d8dd..6719cb38a1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg index 418750d4bf..a575d26824 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg index 3d823e2b15..69a831fe33 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_brass_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg index bc56d30d7c..5ac630cac0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg index aa03342cb2..3ab92063d4 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg index 9c58bafbbc..6d0b8ec273 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg index 736ac60dee..bc4758d5c7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg index 60cd6a6835..fd2c489618 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg index cda0198ba2..4ccbf5b838 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg index 5d48f19122..ef975303f0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.6mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg index d4c97e9387..f6c356be01 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg index 8e9ce5df5c..25e1aa7df1 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg index 706e493748..cc6d580edf 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg index 5fa87f6a3d..7e56f6b116 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg index 1ec3a05ef3..8b1b9223f3 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg index c997636195..3908ba3a4e 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg index 6866799752..e338c7fa14 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg index a7b08617c6..c2507dfb80 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.2mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg index 0aa380fcff..4474fe0dd2 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg index 487bac34b2..dc028640fc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg index bdf235bd29..39e0c1dc7f 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg index 4ac4a2b798..862e2eb094 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg index bdef20e4f8..c596a7ac26 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg index 897f9fc63a..5acd13a08d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg index 1203ab3c8d..ee5dad6997 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg index 9fd1c53811..b16334c95d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg index 70de54d92f..2c8f36a934 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg index faa45bd0d8..2d507697e0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg index eb8aec270f..0d44c2d9da 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg index 75c4f287eb..725afa7e86 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg index 45f129d8b4..cdcfc861a0 100644 --- a/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_directdrive_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg index 5349318ce5..efe796aa70 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg index 515114f3a2..6f7d2c89a8 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg index 9b81d1096a..d1ab1e17fc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.2_pla_h0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg index d039abd7d7..559b9f2551 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg index 9a3f73e717..b02864b288 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg index f5c8e5c226..27b6fb0127 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg index 9e24a016db..f7d24ceb53 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg index 0457db771e..1e6e954a6d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.6_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.6mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg index c27869d858..aa8e67cc1a 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.8mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg index 54a8cf3c59..e38cc25be7 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg index 5eecef0be1..eab67ca36d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg index e99408614c..9e36a6665d 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg index d89273d34b..ebf4ac9656 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.0_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.0mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg index 6e4e2441df..1dadc75868 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg index 2ee463e2f7..e736f05a27 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_generic_1.2_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = Serie 1.2mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg index 6e26fa8520..86f41a7652 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.05.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.05 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg index 621303c03f..17be4d3e75 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg index 37bcb1de38..2876079892 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.15.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.15 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg index 9b3c420461..6d01707221 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg index 29dcfd687e..cb55dd19cc 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg index 11fa0af120..498b57cb04 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg index a84246755c..d2d7b30625 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg index 2a35c53029..a83a174601 100644 --- a/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_pro_430_dual_global_h0.8.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg index 87b536ce00..21a5847cc9 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg index 7caa4f19b3..c0fdfe3f54 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg index 3d18ae5645..1e11b9193e 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg index 26c55325d3..35407f1f8b 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg index f6f9bdcfd5..77aea655ad 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.6inst.cfg @@ -4,7 +4,7 @@ name = Draft definition = dagoma_sigma [metadata] -setting_version = 23 +setting_version = 25 type = quality quality_type = h0.6 weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg index c0dd1bdc22..53f95df598 100644 --- a/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_0.8_pla_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg index 39d1311f88..e23beeb9de 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg index 30bd0b88f4..63bd1b556b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg index 6f5e1594a3..8b80701780 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg index 11627f7cc0..420f4dcfbc 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg index 13f032f573..19fdf843e7 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg index 2d3a252eff..26f651813b 100644 --- a/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_global_h0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h0.8 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg index 2f4b38a21c..7119167862 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg index 6cf00327bc..846e0700a6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg index 89f3b80443..38c87d479d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg index d4bfe2a43d..7bb87e4f6d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg index d8e4c1c2e2..645d9860be 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg index a5e83f03be..d5d95a1f8b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg index 94261daf9e..2a24a4650a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg index 16b40d8c6b..f8fab289fc 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg index b6973e84ae..edd05ad8f8 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg index d69a78f115..85d15464e6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg index 3f1fbabc67..a3edd68522 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg index 8c0008450d..edca8ba64e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_brass_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Brass 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg index 6d675bba9c..ef82e2957a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg index 254c651f8b..015fa8c7e7 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg index 055d0a803e..eac436246d 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg index e64d545725..4c7d30bf4b 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg index a0d307ee22..72af0aee4e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg index 982b7761fa..392b68574e 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg index 235498bc96..33a9a826ac 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg index 290910742d..486e892d82 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg index 58656290ee..cbd4551895 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg index be38030f9f..9266a24176 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg index f313d739e2..dbaa34236a 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_dual_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg index 3b0c42ca93..076acb8097 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.1.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg index 5755713fe3..4cc3fc380f 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.2.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg index a055df78fb..a090de8528 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.3.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg index 0f39dc8803..ebcbd6b352 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.4.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg index 9640066226..b1910a4618 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_global_h0.6.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg index 6156764dbf..0a116b3956 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.1.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.1 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg index d0aad40ed3..4fc900c776 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg index 456c6ea798..399a873dc6 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.4_pla_h0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.3 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.4mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg index d365c172a4..c93714e299 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.2 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg index 7dee9e7317..eb2a0958d2 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.4 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg index d5e2a394a0..ba28071782 100644 --- a/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg +++ b/resources/quality/dagoma/dagoma_sigma_pro_steel_0.8_pla_h0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = h0.6 -setting_version = 23 +setting_version = 25 type = quality variant = Steel 0.8mm weight = 1 diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg index e42c085ea2..25dd56f3c4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg index 20f232643c..efab24593b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg index b62f57aab6..59b41b11dc 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg index e8e1200b57..b07a360182 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg index 78e3e52258..2e97dd2769 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg index 75321948b3..84c935555d 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg index 43e7c86bba..14e2d539a4 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg index 255e5e84ac..143b0cff8c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg index 94ff2c2f31..947a1d23e9 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg index 212aaf3863..be1ca67069 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg index 7d5b705561..57987697fb 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg index 58c39a178d..f6605be855 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_DBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg index 168d464453..0bfe61d2e2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg index aa26014230..9ea5f06693 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg index 1bbd850357..725b6d360e 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.25_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg index df0b816a22..303f0c2ce1 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg index b8557252d5..35d4f745ea 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg index f9ecee8b9a..377595c12c 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg index 5129278efd..5de0c95ee6 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg index 1e6378bbff..db14c82c44 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.40_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg index ad052174fd..e79cf72367 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg index 8f04ff05be..010cacee2b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg index c6fd1a5b34..c97374a1ea 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg index 7a281473bf..916806d5b7 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_FBE0.60_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg index dee783d9ef..3ec58ebc79 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg index 39cd500d38..3838dcd2a5 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg index 5cd566790a..f4619bcefe 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg index bd2767eb92..fc4a96cbf2 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VDBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg index 657f0acb13..a809176152 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg index ecd5808a63..68470f6127 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg index 073abec7a4..c78d449e0b 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg index cc893ee6dc..5752d816bb 100755 --- a/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg +++ b/resources/quality/deltacomb/ABS/deltacomb_VFBE0.80_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg index ddd1eb6d15..01b114cd25 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg index 42681e7332..7a01e4fae3 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg index 48620f80de..0ce752ec32 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg index 814a31f541..0c7afa4fad 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg index 3e58d17c2b..a7d4e1a30f 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg index 422fd262eb..8bf8a7cbe9 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg index 7c09cea5e6..bb146bc176 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg index 04fd4eb000..3c1d2e95bf 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg index e69dbee1da..ce7a64c453 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_DBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg index 8fa17b68ae..384b8291b0 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg index 228f9ef2ea..11b2df18ad 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg index f7759e4ac2..3ad559eeb5 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg index 40ab119290..881610ac47 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg index f12afe9f2f..ce6ee221ae 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.40_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg index 28d9bd7a1e..3e0b97883f 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg index 4926b470de..75a09ccb8e 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg index 83bc04f13b..3378a73768 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg index de3b81ec1c..6a27a691f2 100644 --- a/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg +++ b/resources/quality/deltacomb/PETG/deltacomb_FBE0.60_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg index 84e69b2c51..eceb3c3d3c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg index e751ff9df6..77199c85a9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg index 63fe58d5a7..b14d6ee6de 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg index 7feff9db8d..8a7559ab10 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg index 63f28107d5..9282a23740 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg index a4ac0de94f..e3f01775bf 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg index 8e0a0f89f9..a63372d96b 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg index a8d4d43e62..516d2ed01a 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg index 639b632459..4435538eb6 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg index 878eb66f4f..a07affea5e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg index 9beead6171..05a3618aa9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg index d443dd99fc..666ebe1a14 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_DBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg index 94a9161ac1..08b6ce779c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg index 963b6330e3..1397af4a16 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg index 813ef05b3e..3774547969 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.25_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.25mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg index dd9f03094a..83edc0223c 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg index 85c84cc075..846f7901a0 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg index 1963e7531f..2731ec8323 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg index edb5b6a2b3..71cb0101d6 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg index bfe360e0a0..0070d096fe 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.40_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg index 1f9fe6362d..e40866200e 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg index 7c75a8f974..24bae9bedf 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg index f054df6a1d..fc08e59ed9 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg index c54e26b6a3..4541f8706f 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_FBE0.60_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg index 63fc3efa35..8d7e71f770 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg index b9d742bae3..18170162a4 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg index 892a526b0d..7925207f21 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg index 25a4e96755..273f118b94 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VDBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg index 00aacd6141..81c74b1341 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg index 91c16e5c67..4812ec4055 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg index 3668246197..f46316cb90 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg index 519e1f5eaf..047b2b00f7 100755 --- a/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg +++ b/resources/quality/deltacomb/PLA/deltacomb_VFBE0.80_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg index 1149937c87..5496eeaacf 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg index 352d4de341..963d3f9279 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg index e06a0a7322..8faa532609 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg index 7ac8c61715..f7d9b1f3bb 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg index b39b5d2e96..4be38b7d7e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg index 7a3ef1b326..9f39b3baad 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg index 373de4e4b4..4e696d19cf 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg index 0b175880b9..3457a75119 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg index 508911edfd..2acf811f86 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_DBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg index 0ecb10b88b..57027c1d18 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg index fcd493bc51..1cb573fdbc 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg index 208f17e7c3..1c043c7cf7 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg index 07bf612a39..909d542daf 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg index eb2e6a695e..0726eb8119 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.40_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg index 644cc467e4..7efa5a8337 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg index 219153ea6d..269cc3d207 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg index a654a9c09d..69168b6480 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg index fb793f17f6..735afab686 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_FBE0.60_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg index 13026b5e40..42a75e67f9 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg index 21dc4e258e..53b292fc67 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg index 7bc4648976..eebff5a57e 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg index b8e9e60a71..2f3ca4ccda 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VDBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality variant = V-DBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg index 99c9fbb302..bffe293e73 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg index 2d0575447b..c08bc683f7 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.60mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg index 6aaad33447..43185932dd 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg index 854c30e546..d37900c6c4 100644 --- a/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg +++ b/resources/quality/deltacomb/PVA/deltacomb_VFBE0.80_PVA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality variant = V-FBE 0.80mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg index 29601ca25e..e9252d630a 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg index 136ddf125b..9aa8d88ad0 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg index 6e67b7bc50..d171b7aa0c 100644 --- a/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_DBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = DBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg index 58f9f71b7d..adfd7e621b 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg index 53b1fdebe1..725fe65fd2 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg index cb83ab0b66..f9a61730c3 100755 --- a/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg +++ b/resources/quality/deltacomb/TPU/deltacomb_FBE0.40_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality variant = FBE 0.40mm diff --git a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg index ead1fb1073..57d4f780b5 100755 --- a/resources/quality/deltacomb/deltacomb_global_A.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D005 -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg index 91d2b0c01d..961f37016f 100755 --- a/resources/quality/deltacomb/deltacomb_global_B.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D010 -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg index e2ed0c55ec..5477cb9e36 100755 --- a/resources/quality/deltacomb/deltacomb_global_C.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D015 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg index c5a78b5fee..755f958247 100755 --- a/resources/quality/deltacomb/deltacomb_global_D.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D020 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg index c4db01ca7a..8182bce361 100755 --- a/resources/quality/deltacomb/deltacomb_global_E.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D030 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg index d8015320e4..8e44c26ac8 100755 --- a/resources/quality/deltacomb/deltacomb_global_F.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D045 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg index 86e6afbd00..0e7d9b9d5e 100755 --- a/resources/quality/deltacomb/deltacomb_global_G.inst.cfg +++ b/resources/quality/deltacomb/deltacomb_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = D060 -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/diy220/diy220_draft.inst.cfg b/resources/quality/diy220/diy220_draft.inst.cfg index b72d99e6b7..2227e64ded 100644 --- a/resources/quality/diy220/diy220_draft.inst.cfg +++ b/resources/quality/diy220/diy220_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/diy220/diy220_fast.inst.cfg b/resources/quality/diy220/diy220_fast.inst.cfg index 96cc12594c..254484ed66 100644 --- a/resources/quality/diy220/diy220_fast.inst.cfg +++ b/resources/quality/diy220/diy220_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/diy220/diy220_high.inst.cfg b/resources/quality/diy220/diy220_high.inst.cfg index 409b655fed..9b31ec3c33 100644 --- a/resources/quality/diy220/diy220_high.inst.cfg +++ b/resources/quality/diy220/diy220_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/diy220/diy220_normal.inst.cfg b/resources/quality/diy220/diy220_normal.inst.cfg index c9d06fff3b..f43ce36199 100644 --- a/resources/quality/diy220/diy220_normal.inst.cfg +++ b/resources/quality/diy220/diy220_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/draft.inst.cfg b/resources/quality/draft.inst.cfg index b0510350d2..bbb250b29c 100644 --- a/resources/quality/draft.inst.cfg +++ b/resources/quality/draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg index 6a5928fe39..394218a60e 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg index 94e0ff76db..696f83326d 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg index 8e0753df21..9f72ec8473 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg index d15fe35565..f1fa2477ea 100644 --- a/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/abs/nozzle_0_40/elegoo_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg index 9c0d0b373f..22cb80dad8 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg index caae30a653..ed60cc9e71 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg index 821aad26e0..f6d3491bf0 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg index dda2efc18d..08a667911c 100644 --- a/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/asa/nozzle_0_40/elegoo_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg index 80daf5e208..59a7b0f490 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg index b8205a51e9..a83a5f1748 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg index 639416de9a..76a6db0057 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg index 28df9f27f6..10b7e26333 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg index 1027aefde0..e3d573e488 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg index abb411e9aa..49fa53b64a 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg index 60854868a7..99d3933ab3 100644 --- a/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/elegoo_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg index 31f6f2eea5..8f2e6ec9a5 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg index 4ceba7f60d..b1cf6b8c90 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg index abaf0e45b0..e72232fb45 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg index 05ddbca9c9..4628576200 100644 --- a/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/petg/nozzle_0_40/elegoo_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg index e7c17603c4..ce8ee63336 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg index 56425ebc32..11e65cb6e3 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_20/elegoo_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg index 18057cbd23..ecdb85e116 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg index 5787dec9ab..c5c3eab874 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg index 61f1200dc5..09e0e17fbe 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg index 64e054eb60..937bd6a8a1 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_40/elegoo_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg index a3597c5cfe..3c7682efef 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg index 6f15cd12b0..7de7b378e6 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg index 326df93ddf..70aae2fcc7 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg index daf028784f..24174ecf40 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_60/elegoo_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg index 64a766b544..8b6c000f21 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg index e2eecb087f..b6df9ca880 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg index ac50ba359c..3cf9c6cf86 100644 --- a/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/base/pla/nozzle_0_80/elegoo_pla_nozzle_0.80_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg index b3354fcc42..c78f8e9723 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg index 236f4546c7..0ba789aa31 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg index 4bff2a9a5c..23e91ee636 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg index fdace5abf3..b1263dd95c 100644 --- a/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/base/tpu/nozzle_0_40/elegoo_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg index 40ddd88c0d..eef17ecde8 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg index 9a8a5ff0be..b13a13127b 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg index 4035d17d24..95fee86e1a 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg index f9dc125bba..3d7c462f52 100644 --- a/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/abs/nozzle_0_40/elegoo_n4_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg index 615dc1ef52..9b26904811 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg index ced818bcec..04537373b1 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg index 29877b0ff2..0c3fdb4e9a 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg index d9efc99162..ac59dc6525 100644 --- a/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/asa/nozzle_0_40/elegoo_n4_asa_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg index 9abf9fd779..172685f14f 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_005 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg index 67163bd6a0..28e26d4f24 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg index 6cc3c34161..922e091f66 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg index 9016c13baf..f77d03e764 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg index 3acd8e9c19..1e090815f8 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg index 66a007ae30..264ef93beb 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_040 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg index c0f861ed11..e36afc85f5 100644 --- a/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg +++ b/resources/quality/elegoo/neptune_4/elegoo_n4_layer_0.60.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Elegoo_layer_060 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg index fdbe91aecb..c5aea7f7c2 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg index 12ab4871e6..666113397b 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg index 66841fad83..1fe896e509 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg index 6adae27f5d..cd48c9e887 100644 --- a/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/petg/nozzle_0_40/elegoo_n4_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg index 7ec14659ba..11b1ef1053 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg index 01f00569fe..cc61b032ce 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg index 963b61f697..c351f42c9b 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg index 256c231275..46e1602d03 100644 --- a/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/pla/nozzle_0_40/elegoo_n4_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg index b9a1aa3dff..4dfbbd1f77 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg index ac71e65614..a0e13adae5 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg index 95fc95df77..45f0f17afe 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg index 84b045be8b..4bcd6cba0d 100644 --- a/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/elegoo/neptune_4/tpu/nozzle_0_40/elegoo_n4_tpu_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = Elegoo_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_Elegoo_Nozzle diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg index d527b02bca..52edd2f45c 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg index 267d5935a1..a0e5bb50c8 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg index e2dc623cfc..503b119c27 100644 --- a/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2/elegoo_neptune_2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg index 2a8f9f73de..bb05f011bf 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg index 5945ec42df..a3006ba6de 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg index c747fb3b2d..92de882ea7 100644 --- a/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg +++ b/resources/quality/elegoo_neptune_2D/elegoo_neptune_2D_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg index 27a692eda5..c379357ee8 100644 --- a/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg index 582b0f6206..d2c781bb19 100644 --- a/resources/quality/eryone_er20/eryone_er20_high.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg index 79ed3bf4e0..5d6665c52c 100644 --- a/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg +++ b/resources/quality/eryone_er20/eryone_er20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg index aa29fd73a0..e1853fd51a 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg index 6d02bfab86..cfac9da58c 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg index 98d77a8408..594a7fb0ba 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg index 559a547b75..7983567f69 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg index 1baad09869..5a00c1a4fd 100644 --- a/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg +++ b/resources/quality/eryone_thinker/eryone_thinker_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/extra_coarse.inst.cfg b/resources/quality/extra_coarse.inst.cfg index 2ef72cde59..3d24f9dead 100644 --- a/resources/quality/extra_coarse.inst.cfg +++ b/resources/quality/extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/extra_fast.inst.cfg b/resources/quality/extra_fast.inst.cfg index 3e432ede96..c3bea09b7d 100644 --- a/resources/quality/extra_fast.inst.cfg +++ b/resources/quality/extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg index 28dd970db6..05a52d78a6 100644 --- a/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg index e9b55c8635..dfe5db5061 100644 --- a/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg index dcacb56d01..49870975c8 100644 --- a/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg index 3858c9d91a..32a832816b 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg index 45bef0403c..012b5cde69 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg index 55532ceb2a..f606c7ca50 100644 --- a/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg index 92c4f0dfeb..c166e95217 100644 --- a/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg index 5f5d9a87dc..6aed7d1e75 100644 --- a/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg index b6f13d5efe..e19310ea39 100644 --- a/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg index 3f206edb69..48dc139127 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = -1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg index e5758fd610..f808a8fb57 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 1 diff --git a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg index dc86601a44..0c3e188e4b 100644 --- a/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg +++ b/resources/quality/fabtotum/fabtotum_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Lite 0.4 mm weight = 0 diff --git a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg index 98022f1371..a1ffd3617c 100644 --- a/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg index 8b3864f9be..20fdc131c9 100644 --- a/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg index c36f61cb8d..25f74141ea 100644 --- a/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_abs_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_abs quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg index 61d33928a0..e3873a3982 100644 --- a/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg index 33af821e05..9bd865f2c1 100644 --- a/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg index f6a03c6725..75369e9795 100644 --- a/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_asa_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_asa quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg index ec39636406..bfaa453a86 100644 --- a/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg index 44870395ff..5c18821f54 100644 --- a/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg index 55d0cbdfe5..07843b3b32 100644 --- a/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_hips_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_hips quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg index ac01503afa..3e34cebd98 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg index 70cf6b75cf..c00ae6f355 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg index 2afb912967..f512814676 100644 --- a/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_nylon_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_nylon quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg index c9668fec6a..d30d084756 100644 --- a/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg index 26ac9b1eef..0cd5aa5da6 100644 --- a/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg index 5596b8911d..4c67e68c98 100644 --- a/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_petg_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_petg quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg index 4e0841b5fa..5861991d2c 100644 --- a/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg index faca76f359..7acd435fbe 100644 --- a/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg index db95936528..53d105cdbf 100644 --- a/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_pla_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_pla quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg index d992ad808f..fb1390015c 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_draft.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg index 6751fa489a..3a83bb0b8c 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_fine.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg index be5bf2a03b..91167ad66a 100644 --- a/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg +++ b/resources/quality/fabxpro/fabxpro_tpe_normal.inst.cfg @@ -7,7 +7,7 @@ version = 4 global_quality = True material = redd_tpe quality_type = Normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fast.inst.cfg b/resources/quality/fast.inst.cfg index 2bd950fbf2..d3d4c034da 100644 --- a/resources/quality/fast.inst.cfg +++ b/resources/quality/fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg index ceeb33ebb0..d0ec00f82f 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg index 59f9dfc21b..87a384e12d 100644 --- a/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.20_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg index c0ca53f77e..f5cc3828bf 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg index 214e8838d0..9207e2be34 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg index 840be24862..ebebddef14 100644 --- a/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg index 563fabb46a..29faa4200f 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg index 1644284954..72e9c8ea57 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg index 64deb8c257..fed7135b00 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg index d70262d6e3..52f533395b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg index dc92a36227..6f21e89812 100644 --- a/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg index a3540c2f2a..81bdc4cc48 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg index 2af3abe070..0aee6be8c7 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg index d1c103a95b..adb21517a4 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg index 8558a9af98..7054cb2d12 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg index 9d95220b24..d36950d8bc 100644 --- a/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg index 34a0265bad..b02e326576 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg index abe8341705..8e513b302b 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg index 27be971b69..64ac6d2002 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = Xcoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg index ff14587278..673f4ad9bd 100644 --- a/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg index aae66cffb2..9c7d6d40cb 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg index 3c0cefacdf..47356a4c26 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg index 0b679e648b..68f88a7717 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg index 19e2ba1fa2..b2386a4343 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg index 1e7d154fa1..8243ba6487 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg index 84e9388526..0d8a73b491 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg index 4454e4caa8..6160a4fd87 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg index 89552b7d27..e455bf7fce 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg index 5823fde21c..d92aabdc79 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg index 4749e76a58..b13227e84a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg index 2e27fad0d1..957b56e744 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer3_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg index 544850b5a1..625816653c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg index 51be6df1ef..9efc54ea46 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg index 92db3f7497..2207ccaf18 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg index 44c5c7eb4b..6c9ae06d56 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg index 9385df4953..6cbf92a18a 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg index 0f7bb26ea3..157c0377a7 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg index eb77c444fc..bb13927166 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg index b3c8daf042..eed718ef3b 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg index 9ca8cbbd12..a60885654c 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg index 577b560d8b..45d6c907e6 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg index d04e5f2713..dd66f09261 100644 --- a/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/abs/flashforge_adventurer4_abs_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg index e58194790c..7c7ac6e6d4 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg index 1cc6c7d5a6..fdb79106be 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg index 004c970641..65ca4c814c 100644 --- a/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/asa/flashforge_adventurer4_asa_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg index 01722e32ea..d90534699a 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg index ea2288f712..c63e34b1a8 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg index 57ea1716a0..c2f6a46e72 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg index 412236a0b4..64354afd98 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg index 2393725b44..c262eedd4c 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg index ef88b8f515..9fc045c11b 100644 --- a/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg index f0ea2efb26..fea19aaef5 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg index 1b1a290eca..89ffeccbe1 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg index 5045911c77..c3b54e82a4 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg index fdfa82e182..ad6c52cf0d 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg index 6049accf3c..c369afe0cd 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg index 9ad3086e4d..e891bc7c92 100644 --- a/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg +++ b/resources/quality/flashforge/flashforge_adventurer4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg index 4d02730890..a77200723b 100644 --- a/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg index 0569e335b9..925731d9dd 100644 --- a/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg index ae3e8dbbf2..e91a06cfa5 100644 --- a/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg index 057fd5c164..e94976d8fe 100644 --- a/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg index 686394cfc3..891fa9ca26 100644 --- a/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg index df8c6440f1..4e4695c41e 100644 --- a/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg index 8ca5ffe6d5..4a93be1912 100644 --- a/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg index 2daeadc9d8..dcb078ccd4 100644 --- a/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/flashforge_global_0.48_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Xcoarse -setting_version = 23 +setting_version = 25 type = quality weight = -7 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg index a0c8d9634c..db1b43f17c 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg index fc2a74f13f..78c4af97e4 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg index 7287263674..68e2ee30a8 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg index 49a5747768..dd4f4f4023 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg index f381d51404..f0c9999186 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg index f56ef4cea5..e965a79860 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg index 140906c9bb..4f03ee3f01 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer3_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg index 8a0958494a..9849b5f899 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg index 2d1d442ae0..0d953fbd96 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg index 12224722b4..9c3f1a8825 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg index fe3cb31541..bd89d06fc9 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg index 987e14ec9c..fed5307869 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg index 5de2fbac40..784351b9f1 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg index 77f453fc03..1ae4493232 100644 --- a/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pc/flashforge_adventurer4_pc_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg index 3be4591fee..1f768793c6 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg index 28dc975374..7590e4de59 100644 --- a/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg index 36f5894a95..f9d8da8345 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg index 328a8a1ef9..394b4b4249 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg index 05907e516c..9b22a9497a 100644 --- a/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg index c7d703e787..5f8fec7136 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg index ff367e7422..6034219329 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg index e0837d68e5..1bd035f2a5 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg index b2c7b3ae15..20ad799a1b 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg index 8254ecd952..6f25adcb94 100644 --- a/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg index 1955a20517..b18e735815 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg index 33450d9d86..37b2500538 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg index b17e8c421f..ee738435ec 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg index aa39173cb3..0bb744f3ec 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg index ba80b010f4..51b6d40871 100644 --- a/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg index 737bb68786..02dbf86b28 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg index 055eb43155..7b760ca221 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = Xcoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg index aae8dae743..988f73ab52 100644 --- a/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg index f1dab1f88a..f87abf9d8f 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg index 940aa1b704..b90cb5ee0c 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg index 2233823918..91d226aa55 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg index 94f819068d..904b772840 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg index 46fcf05f83..7b14fc1f99 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg index edb4b63932..09ae2b58dd 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg index 3873c089a5..9c74ea6c34 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg index 68caeb589a..57744f92b9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg index e360f94600..dfe0b85f6d 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg index 07e9565243..c3215d3391 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg index 279130f4dc..7cb3be942e 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer3_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg index 68475b9a3f..32c2accae8 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg index a64bce087f..1756924c3a 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg index 1ff8c93689..9ca23d9a04 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg index 8d6052529a..8395fef3a9 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg index fde77f6c68..6c3d9de72b 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg index bac296cdd9..44305913c2 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg index a603d564d1..97a162a10a 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg index 253ed947c1..084fa9f6af 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg index 41eeff7317..fd80950bc1 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg index bbdfb71452..42f78094be 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg index bf68f7518c..cefebca84a 100644 --- a/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/petg/flashforge_adventurer4_petg_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg index d0f9b2605b..8dbadf3af3 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg index 4b67350081..7a469724aa 100644 --- a/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.20_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg index 967c4906b0..11cad4599b 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg index 93671d76ed..e51ee57632 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg index d1becca566..5ef7e6056a 100644 --- a/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg index a43dec98ca..f4b9bdbe53 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg index e93f061086..c8a72c065d 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg index b699f3488d..4345015ad7 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg index fc9bf8e60c..af85e17aae 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg index 402abc4be9..19e855828b 100644 --- a/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg index ba5b5d9cd7..107ccb0308 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg index e908862f69..071d4e2014 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg index 1fc1c76255..8b9e7cc1e6 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg index 8a785cccec..e9002559cf 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg index dbfd3fe273..8392b510d4 100644 --- a/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg index 48d67a8657..ffc945dc66 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg index c14b3543a4..4ac2dbd3b4 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_extra Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = Xcoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg index 893f575be8..5101c8bdd4 100644 --- a/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg index 793fc6d10e..c29bf0aa77 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg index c983c9fe5f..742133678d 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg index a649f8c2bb..86bfc187f5 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -3 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg index 84cdfaf7be..06a9a9649a 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg index 4a6852033e..a5628a1d31 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg index d71dbd89c8..25a9d2b4c2 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg index d4df69f5f0..16e4102727 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg index e379ed2035..f7cf1ee306 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg index 4520b7cb87..568b677a81 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg index b4084177b4..d9cc3fe5c8 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg index 2b23a1699d..c01b8a4482 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer3_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg index de66e4f871..81be3c3412 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg index 4f45dd9a3b..4e3c50a922 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.3_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg index de3ed6f4f1..751d9fc4fd 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg index ab3f1260e7..43a3a865f8 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg index 3b6bd6fa03..882ec99c3d 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg index cf9a7d73a5..ceda16731f 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg index 628dc43a99..ab43d8c633 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg index ce2a91ad6e..3e8d18ad54 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.4_vfine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg index d91ec1c84d..3f78f2870b 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg index 1dcbb15714..c9bb9eeced 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg index 21139a85fd..f83e2c4329 100644 --- a/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg +++ b/resources/quality/flashforge/pla/flashforge_adventurer4_pla_0.6_vfast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = veryfast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -2 diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg index aff1ba5017..194fe95be0 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg index a79887ca13..c54446b1b2 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg index 49335a5773..3ad83f495d 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg index c648bd5bf3..34070e45a7 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg index 874afda091..f0bea5399c 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg index 91eafec12c..33a99a844d 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg index 61e83554ed..27b6737938 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg index dc0da4c92d..c2baecd1f5 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg index 8ca5c89a31..6c44c976fd 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg index b7c3bbf127..8bda4e7363 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg index a638f56d61..8b6b0bafb7 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg index bbb162048c..8ac4672d86 100644 --- a/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flashforge/tpu/flashforge_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg index 6c598e033d..73e37e98bc 100644 --- a/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg index f74057ed5e..3adfef5e46 100644 --- a/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg +++ b/resources/quality/flsun_sr/flsun_sr_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg index e0a1712310..7cb8de454b 100644 --- a/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg +++ b/resources/quality/flsun_v400/flsun_v400_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 @@ -115,7 +115,7 @@ travel_avoid_other_parts = True travel_avoid_supports = True travel_retract_before_outer_wall = False wall_overhang_angle = 35.0 -wall_overhang_speed_factor = 60.0 +wall_overhang_speed_factors = [60] wall_thickness = =line_width*2 z_seam_corner = z_seam_corner_inner z_seam_position = backright diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg index 5ae7ce783f..24b69f61e4 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg index 3b97fbbec3..677d4a7111 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.25_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg index 9067ae4f18..22ec7e2f5d 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg index ba555c9b20..137c6c81d7 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg index 712ffc8076..ebbf372699 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.30_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg index 7ec3745a34..69f5fa4c73 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg index 6d90f7d958..cb8255c94e 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg index d6909bc982..4bbc0bb309 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg index e7fcde28b5..e9539ede86 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.40_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg index 5137f14e39..e17ee2908f 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg index 05ccbc742f..0992b93137 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg index 4d87172310..2307a5b341 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg index e645dc6064..9ac9e2c7ea 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.50_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg index 325f189ce5..86724bcae5 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg index 64c4740121..22d6b4c433 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg index af09323a3a..648acee7bf 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.60_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg index 2fe02ed7f0..d39eecce80 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg index b551a10c00..d839a1a562 100644 --- a/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg +++ b/resources/quality/flyingbear/abs/flyingbear_0.80_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg index 1ab5c72914..8dc9a85ddd 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.08_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg index 7fa1bd9489..5183bf60a7 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.12_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg index e46142baea..fee1c4f261 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.16_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg index 14e7112594..d945748ab5 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg index 90777f4f27..32e9ed9796 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.28_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg index bdffacbf93..14113355bf 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.32_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg index 5f83d78564..76e8cf45d6 100644 --- a/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg +++ b/resources/quality/flyingbear/flyingbear_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg index ee4503a01d..ed1b8b2f89 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg index 1051c04f35..83dbbcb4b1 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.25_hips_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg index 39b0cd3a95..917ad3872c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg index 992218c567..35de4baec0 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg index a9e55e4965..13f2507ff8 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.30_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg index 639276336a..29953b5e85 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg index 176f54fe31..4e59719957 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg index dbde45c7ae..ce56ac3ff4 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg index b962c50da2..65201e29a3 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.40_hips_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg index 7f61cc4893..7897da3ec4 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg index 4ad6474263..a8bb493f0b 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg index 9f9229d901..d0aa93215c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg index 23c0c98525..46239c8ba4 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.50_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg index 5ff44cc28b..0aca403855 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg index 1bfae457ce..e262e22d9a 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg index 7a5c4dff28..f5fe2bfd99 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.60_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg index b7deccddd0..b4be1e36f7 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg index 30dd959964..4fb7fcdc3c 100644 --- a/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg +++ b/resources/quality/flyingbear/hips/flyingbear_0.80_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg index a6c59756d1..f5f1650a5b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg index 5d03677094..737bd0f2c2 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.25_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg index 80b7ce3632..03e64b3c71 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg index ed022ff1a7..77dd1bbc57 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg index fb08d90281..f5e84d8933 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.30_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg index bee035c633..1541320bc1 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg index f7e51f3ccf..6b9c1cc984 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg index 408bbccf1c..57423e19f4 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg index fed9d3d3ac..b63e84b160 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.40_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg index a6c52520c3..ddf69f7ba5 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg index 6e8556c649..3ac5b76a7b 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg index 18b5c61b2b..0f09fb7b23 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg index 92e2b2d84b..0716cacefa 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.50_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg index 2990745ee5..cc72ef5de0 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg index 6ae9d86cc3..a5e4b77fa0 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg index bef2f08658..7bcc437bfc 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.60_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg index dccc9296de..83f5981100 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg index 00ea087078..4b5def7125 100644 --- a/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg +++ b/resources/quality/flyingbear/petg/flyingbear_0.80_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg index 5949d2337c..a8e4258548 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg index c7fca8f17d..f7e53899d1 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.25_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg index b38c4dc5a1..4dce4a50ef 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg index c69fb2a58f..090bbaa2ca 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg index 6936c9506e..b728d30dd6 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.30_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg index e1c669ac7f..2d2ca69438 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg index c2e502ea92..ed4f7631ad 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg index 56f9be67c3..c432c02b45 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg index 8af6273550..1a919b40e2 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.40_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg index 575a89d77d..cdd370e36a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg index 4988d8fcfd..95e0d90684 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg index 203d6f9002..5592dc9172 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg index d46789d1e3..10282caa62 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.50_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg index 7fa9b57c3d..a28c174465 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg index 01da9606ed..2a5834659a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg index 1a9d835227..c7711a768a 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.60_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg index eea62d9901..3e4f044935 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg index f672730f2a..8e7569ada7 100644 --- a/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg +++ b/resources/quality/flyingbear/pla/flyingbear_0.80_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg index 2878b3c270..4fab8f8b90 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg index acfd12f444..c06b13778c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.25_plapro_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg index 430e88b36a..bed16d23bd 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg index 02965b938e..95e262ddf9 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg index 4627852ad2..274e6a0a3e 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.30_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg index a5d4c71cb5..734355acea 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg index bce6a871cf..4ae5ce5e50 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg index f4506c04ec..281690c349 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg index 42700664c2..0c0dc66a7f 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.40_plapro_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg index 5002536077..b6b6ba2e22 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg index 414afc7d4b..5ccd8e2ac0 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg index 125d504830..6a8c462161 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg index 2128cebe40..d357639e87 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.50_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg index 844fb8697f..bc8d879bee 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg index 853b1b80d8..108e6719c0 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg index 00fbabdd23..85c7227f6c 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.60_plapro_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg index f0e0332111..8a0091f9ea 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg index 068b59ac7c..0ad63b7964 100644 --- a/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg +++ b/resources/quality/flyingbear/plapro/flyingbear_0.80_plapro_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = eSUN_PLA_PRO_Black quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg index 023d73a5e7..ca5cbde9f1 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg index ae22d9d0f0..cbd184f187 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg index fba61c57cd..fc26db2478 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg index f33ef9889b..3403185e89 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.40_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg index 68dd1abf08..c765c0458c 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg index 4c6a7e6bf0..9b1b0dfcdb 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg index 9bf8763a8d..73f7bf8baf 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg index a7ac0d2a0b..ca31515ecb 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.50_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg index 950b9a87b0..20cc20344a 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg index cf7aea8e4f..f94cd33622 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg index 80db600843..567baf859e 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.60_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg index 56a06a3261..eedc187217 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg index baf68727fa..bd82a8bde8 100644 --- a/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg +++ b/resources/quality/flyingbear/tpu/flyingbear_0.80_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg index f2d1f7d6f2..5e39a22f34 100644 --- a/resources/quality/fusedform/base/base_PVA_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_PVA_high.inst.cfg b/resources/quality/fusedform/base/base_PVA_high.inst.cfg index 352494579c..05848cffc3 100644 --- a/resources/quality/fusedform/base/base_PVA_high.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg index 04154bf4b3..bc935429ce 100644 --- a/resources/quality/fusedform/base/base_PVA_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_PVA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_draft.inst.cfg b/resources/quality/fusedform/base/base_abs_draft.inst.cfg index a5c297eca4..29cd84ddce 100644 --- a/resources/quality/fusedform/base/base_abs_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusedform/base/base_abs_high.inst.cfg b/resources/quality/fusedform/base/base_abs_high.inst.cfg index a4f9fa613a..533352a76f 100644 --- a/resources/quality/fusedform/base/base_abs_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_abs_normal.inst.cfg b/resources/quality/fusedform/base/base_abs_normal.inst.cfg index 4c62b0cc6c..8dcfae7605 100644 --- a/resources/quality/fusedform/base/base_abs_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg index d007a855a1..1b51bb2b96 100644 --- a/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_abs_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_draft.inst.cfg b/resources/quality/fusedform/base/base_draft.inst.cfg index 8a6910cd1a..25769e9c23 100644 --- a/resources/quality/fusedform/base/base_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_flex_high.inst.cfg b/resources/quality/fusedform/base/base_flex_high.inst.cfg index ba3a62ef36..1efbd7ba99 100644 --- a/resources/quality/fusedform/base/base_flex_high.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_flex_normal.inst.cfg b/resources/quality/fusedform/base/base_flex_normal.inst.cfg index a247d6f6bf..ed475d4689 100644 --- a/resources/quality/fusedform/base/base_flex_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_high.inst.cfg b/resources/quality/fusedform/base/base_high.inst.cfg index 06c28b5c7a..5e3d1922c2 100644 --- a/resources/quality/fusedform/base/base_high.inst.cfg +++ b/resources/quality/fusedform/base/base_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_draft.inst.cfg b/resources/quality/fusedform/base/base_hips_draft.inst.cfg index e02c07f97f..07b23c0879 100644 --- a/resources/quality/fusedform/base/base_hips_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusedform/base/base_hips_high.inst.cfg b/resources/quality/fusedform/base/base_hips_high.inst.cfg index e015f56f53..c500f638b8 100644 --- a/resources/quality/fusedform/base/base_hips_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_hips_normal.inst.cfg b/resources/quality/fusedform/base/base_hips_normal.inst.cfg index 416747436c..fc8a152886 100644 --- a/resources/quality/fusedform/base/base_hips_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg index 462791472c..a3cf715b38 100644 --- a/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_hips_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = ultra high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_normal.inst.cfg b/resources/quality/fusedform/base/base_normal.inst.cfg index 549dea9145..0046228217 100644 --- a/resources/quality/fusedform/base/base_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg index 8abb293bf0..a7f58519f7 100644 --- a/resources/quality/fusedform/base/base_nylon_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusedform/base/base_nylon_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_high.inst.cfg index c9dcdf2af4..bc2569c449 100644 --- a/resources/quality/fusedform/base/base_nylon_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg index 861a877d65..9421f812a8 100644 --- a/resources/quality/fusedform/base/base_nylon_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg index 12000acf62..c258434d5e 100644 --- a/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_nylon_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_high.inst.cfg b/resources/quality/fusedform/base/base_petg_high.inst.cfg index 576e790dd2..d95133fac0 100644 --- a/resources/quality/fusedform/base/base_petg_high.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_petg_normal.inst.cfg b/resources/quality/fusedform/base/base_petg_normal.inst.cfg index 2548ddc851..ed6278668a 100644 --- a/resources/quality/fusedform/base/base_petg_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_draft.inst.cfg b/resources/quality/fusedform/base/base_pla_draft.inst.cfg index 7ff4389b71..4af5314f75 100644 --- a/resources/quality/fusedform/base/base_pla_draft.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/fusedform/base/base_pla_high.inst.cfg b/resources/quality/fusedform/base/base_pla_high.inst.cfg index 26fd52efa8..ef0fca323e 100644 --- a/resources/quality/fusedform/base/base_pla_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusedform/base/base_pla_normal.inst.cfg b/resources/quality/fusedform/base/base_pla_normal.inst.cfg index e95ac62277..6e9f247cc9 100644 --- a/resources/quality/fusedform/base/base_pla_normal.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg index fecf4bafcb..465b583152 100644 --- a/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_pla_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra high -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/fusedform/base/base_ultra_high.inst.cfg b/resources/quality/fusedform/base/base_ultra_high.inst.cfg index 853565b80b..1818eb30c2 100644 --- a/resources/quality/fusedform/base/base_ultra_high.inst.cfg +++ b/resources/quality/fusedform/base/base_ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg index b8fb0fc084..84923616e5 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg index 170487b7a8..92a1a5420b 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg index 314d61894a..15ce955f54 100644 --- a/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg index edbf7c4d7c..5f996deb22 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg index 408fd5b062..d18f2de9dd 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg index e4e8ecd157..4394be726e 100644 --- a/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_ASA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg index 3700253dad..e18e4a350b 100644 --- a/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_CPE_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg index 923e252770..3112e3507c 100644 --- a/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg index a716730eed..4a4a8015b7 100644 --- a/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg index 9a414b2f15..632e76882e 100644 --- a/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg index 5b343453d0..bd33e88ab4 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg index c57e47950d..de53625453 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg index 04bb078949..caf195dc64 100644 --- a/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg index 289646eec4..9a1f0aeeae 100644 --- a/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg index 560fcf2c35..62ea3f0325 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg index 20fb1056bb..9ef7a93313 100644 --- a/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg index 13885dda24..3ffc322046 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg index 6e1708c534..1cc098516b 100644 --- a/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_ASA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg index 2e41da31be..8da045a765 100644 --- a/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_CPE_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg index c15be13de6..5513e335b2 100644 --- a/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg index 45380a16d4..e15b69731d 100644 --- a/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PC_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg index 1a304a07ed..bde833565f 100644 --- a/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PETG_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg index 49567c3ebd..dc448b52f8 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg index e8e13fa7f2..20d75e772a 100644 --- a/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg index 8a9d975219..1f0bb8ff8c 100644 --- a/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.6_TPU_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg index 29adfb091b..e0df9da8a0 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg index fbee684ce2..706d7f43cd 100644 --- a/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg index a268baf68b..9f9da0bdc2 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg index 0c918f88ac..234cbaf3d1 100644 --- a/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_ASA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg index 73d199f6ce..0dd6fffffe 100644 --- a/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_CPE_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg index e2beebc76a..fd057875ef 100644 --- a/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon_175 quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg index 16894ed8da..f90af487e7 100644 --- a/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PC_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc_175 quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg index d3551c51bd..f4079a9261 100644 --- a/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg index 86b8596128..7a3480ac93 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg index 0e9de77d8f..698d00ebb1 100644 --- a/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg index ffbc74268d..7385301a7f 100644 --- a/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/fusion3/fusion3_global_fine.inst.cfg b/resources/quality/fusion3/fusion3_global_fine.inst.cfg index 4af1cc5535..d52a98d1e2 100644 --- a/resources/quality/fusion3/fusion3_global_fine.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_good.inst.cfg b/resources/quality/fusion3/fusion3_global_good.inst.cfg index 5f36f60d73..43706da3c8 100644 --- a/resources/quality/fusion3/fusion3_global_good.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_low.inst.cfg b/resources/quality/fusion3/fusion3_global_low.inst.cfg index 84bc1e0a27..22467bceee 100644 --- a/resources/quality/fusion3/fusion3_global_low.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_normal.inst.cfg b/resources/quality/fusion3/fusion3_global_normal.inst.cfg index ab2cbf7de0..b19cea8cb9 100644 --- a/resources/quality/fusion3/fusion3_global_normal.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg index 91b851f576..c60de597eb 100644 --- a/resources/quality/fusion3/fusion3_global_rapid.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/fusion3/fusion3_global_rough.inst.cfg b/resources/quality/fusion3/fusion3_global_rough.inst.cfg index e3ad70b5c1..44a3b29e17 100644 --- a/resources/quality/fusion3/fusion3_global_rough.inst.cfg +++ b/resources/quality/fusion3/fusion3_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg index 59475969b8..06711c2f11 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg index 9fda1b2e51..2fc3efabd3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg index 0f3057fe82..e0a91b22ac 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg index e459a9d096..1f394fd6f5 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg index 6e4f55fcba..c4a8e75b97 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg index 3e84045674..7215b7c0a3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg index b5b72a1d6a..ed0726979c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg index d1497b1d4b..c605c6a2e9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg index 9fef4f56d2..bff6097404 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg index 3150c7bf1b..d1ba58a2dd 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg index 321f584169..c1392761d0 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg index 79203249f8..58b3ce107a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg index 23ad0fa136..1948504f5c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg index bd77f7a194..5130dfb84d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg index f6e74f21de..01ab24d990 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg index 6a0ace1634..1ac4020c7e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg index be9207dfe5..70f327ad90 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg index f0087a0135..82b4cabb60 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg index 08174d60e3..42514d1a88 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg index 5db816a83a..ea327de9fb 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg index 45179cb24c..c5205ae42a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg index db97cac4f4..cd273e2868 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg index 5036b82e30..ce6cdf6391 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg index 8a9cdf11c8..14290c910b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg index e3a026eb54..0e09634aca 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg index c510219770..c1b84f9354 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg index 6ca89507a9..c4092aecbe 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg index f9c427f3da..d6d534172b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg index 00afeb3d7b..d20ad85a8a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg index 013a9a81c2..5ec9f43fc3 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg index 5cfefecfad..9eb20f8a53 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg index 64662fdfe2..d3115e60bf 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg index 14797b146b..3df95677c0 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg index 5b47dd59da..2d01de7cfc 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg index ebd00a13aa..e0a4de63e8 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg index 6abd2e66b6..98fcc9d105 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg index 9b1deace62..3d6f60bcff 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg index a5415cc14e..14c7d1b76c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg index 16fd183692..da5c39a3fe 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg index 6473b02231..07b9f0cdce 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg index 696f4ef947..717e76e911 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg index 362ee45ceb..8b68117d86 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg index 6a68da9a6b..7ff4f12072 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg index 3647e19894..72f83f7d2b 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg index 1e4e05e520..699993594c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg index a86131a041..28bba47dc7 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg index 298569b4e4..892c886a5a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg index cb34fe279d..f7f5707828 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg index d650752d4c..26212e2be9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg index 4bf0718a0b..d41e33e8fa 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg index a8c395e18c..fd1c06a20f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg index 238d5721a2..7c00ee2868 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg index d4aea0867f..bfe7c0bfd9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg index 6ab31aac4a..315ca6ab5f 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg index 4bcdf7c5ae..b242e3f1ed 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg index 16a6a8866a..0698558f0c 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg index 2d17a5669a..41fa93d592 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg index c23ce9e590..7345e7202a 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg index 19542d65bd..87272e5c20 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg index e963451053..e9dcbabab9 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg index 5a71879909..a96095c82e 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg index 704342ad44..63e5ed0f6d 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg index a8c9fbdfea..a3e651e2fa 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg index f166dcd8e0..20ecb22115 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg index a9370c5674..48e7cd3eed 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg index 829c96a27a..a9b5c6e6d4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg index eb9747c47d..5cc5fbf386 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg index 5a4ca40612..76a16eecf4 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg index 29f950977d..a9f96d26d2 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg index 41fa491055..639be1d2ee 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg index d8036a5885..09e6b83a09 100644 --- a/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg +++ b/resources/quality/geeetech_quality/geeetech_quality_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg index 120b8e9cb3..eb07124c52 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg index 6718a49e29..4cb4018018 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg index f42f350d69..697def6564 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg index 2a65300e35..5fbbe11490 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_dual_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg index 4ff40b9db2..c8e60dcd29 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg index 2aa06147d8..56d55dbfb7 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = course -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg index 1ad1a76b9b..d3642ca8c7 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_thin.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg index 3b0b433ee4..7ca4a11fea 100644 --- a/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg +++ b/resources/quality/gmax15plus/gmax15plus_global_very_thick.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_course -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg index 44aeccf545..880c276ac2 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg index 635575d990..c403886493 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg index 2c0df2f7ac..f1d39749d8 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg index 4b7e34524e..19190de0ba 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg index 40370dcd41..929590ea75 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg index 9ea1e92e5f..bd616e24ff 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg index 4f899585ec..ef8f38ff93 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg index 2c9710a487..6ce370133f 100644 --- a/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg index b0c8caef65..d53ce68274 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg index b30bd33e3c..25bb3d3202 100644 --- a/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_far_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg index 9e6f652f87..bf24e61e3e 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg index 7ca5a1939d..07ea9307fd 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.2_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg index d382453320..55116ccb28 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg index 617bee3083..8773a4c036 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.40_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg index bff7afc626..68c32ec423 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg index c6949b5820..a4ed2d04ea 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.6_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg index ee28d12a05..e006746d5e 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg index 981aed3726..d4e707cd09 100644 --- a/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_0.8_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg index a752b4ce18..5666a7d29c 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg index 602551cd69..b5fd31d6fe 100644 --- a/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg +++ b/resources/quality/goofoo/abs/goofoo_near_1.0_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg index 07cc2fcdae..7a1f4cfb37 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg index cf030a6f8d..5df4ebc30e 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg index 55e01a8ba1..41ba3575df 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg index e42993080f..9f543b2dd2 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg index 1a73f46b85..170275403e 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg index dbf082da40..aa320c1191 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg index 65321d4fec..7d65bfa1f1 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg index 75d8941434..a133d5c572 100644 --- a/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg index eb09eda464..11852ae772 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg index 6f7d653798..796371e1be 100644 --- a/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_far_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg index 7f37899966..b77843be68 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg index d1c6e6bead..039f8fac70 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.2_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg index 2daa1107a6..8d706ac4ac 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg index 9948b00c8d..2e7c8d3af0 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.40_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg index 9e060de7cf..e7a8b4281f 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg index 4bdd3ef015..5d172a6ae5 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.6_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg index 9f1afa96f6..8e5ca31526 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg index ebd0e10908..324491395a 100644 --- a/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_0.8_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg index 01b7889d9b..80197e6ee4 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg index 099097d723..5a903b6d93 100644 --- a/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg +++ b/resources/quality/goofoo/asa/goofoo_near_1.0_asa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_asa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg index cd9beaf5a7..e5ea7348a0 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg index 93c7bc6d49..87025c31b0 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg index 0011ca9d41..c7ed640345 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg index d219cad79c..a2f4337494 100644 --- a/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_far_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg index f57797456b..67c220a98a 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg index 3fce59afe3..76e2478dd9 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg index fbd171efa2..12bd2d1394 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg index d2bb27659f..79c273ee73 100644 --- a/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_near_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg index 99d27a7f56..56e4f8bea5 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg index b0a4334327..8a7af59600 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg index 6bef72abfc..8522d78d32 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg index 5d0c696b34..a18a3d5537 100644 --- a/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_open_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg index 8e755fb23d..34cf402a6c 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg index 7527db4b4b..ce4f35a480 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.1_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = efine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg index 921cc3c0ce..957b49cfd2 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.20_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg index 9c5b3a901f..4dadcb686a 100644 --- a/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg +++ b/resources/quality/goofoo/goofoo_small_global_0.3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg index bcecf64b08..13650718c5 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg index 6704636080..29f9f6ed95 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg index 89014792ab..b9f40262f9 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg index 7cc9f07223..ee80804ed6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg index ff991d2e92..7192742a85 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg index 387bc2803f..9c3a96e4cb 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg index 4749e80886..124fa9dbdd 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg index e2cc8ebc5e..456a4a1868 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg index 636cb46324..7ea0d51eb5 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg index 94f7035de6..cdb415e19b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg index 046c224eee..db328d709b 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg index c82d1e59d5..5568f7c5a0 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg index ba1f025416..a00ce925b8 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg index 7c13e9a36c..34367d23d6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg index 3de4182895..a5b4df2e97 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg index ea23db0653..23204c14e7 100644 --- a/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg index 0d0d14a536..d566308bbf 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg index 3bb109d6c9..a52d1c4e73 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg index 5edf0b9bd8..5c0c746be6 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg index ae16cbc3b8..407ad641d4 100644 --- a/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_far_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg index 182a5eb557..ed6817411d 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg index 1bea3a0353..02ef2a2f16 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg index 8fc710811b..3b3015719e 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg index 8c5e9ebcce..dcfd462070 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg index 2a905fb6a7..f4285828a3 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg index c07fd746d1..28d277aaed 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg index 6f647df03f..db2023d796 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg index a908ae58c9..8d8a3bf55f 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg index 503947b259..526ee0bbc5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg index e68a678370..67c6c11ad5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg index 2c8ae1a79f..6d28b93545 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg index dd79f1ffa6..e460c80222 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg index a7f82c656d..17967b0ee5 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg index 5f7de68aa0..311e7531f8 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg index 7594f90b2c..8008e89f01 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg index a26870a135..afb9ce0483 100644 --- a/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg index 4728c71a2f..44db64bc32 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg index 9c4c3d1b17..e21c560322 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg index 93b15b522a..6629e110dd 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg index 7ca4ae0e0c..d272cb16e6 100644 --- a/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_near_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg index 7c6018bf2c..2981371b9b 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg index 4b88ea8654..d9234b9fe0 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg index 9894d7449a..57e12b65b9 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg index 6ae4291645..cba38ffad5 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.2_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg index 5deaafd570..188fff4431 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg index 1640a2df7b..792f759007 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg index 907140849a..81fc54ad06 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg index 575a91c50b..32a37bfc2d 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.40_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg index e336fdd056..b0e76ef6a6 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg index 1dadaad261..1069f11c28 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg index 427fac9af3..6e841242f3 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg index 723879fbe7..031739bf95 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.6_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg index b5bb1979f6..ddb5ae445c 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg index 5501ac6902..0f7c83994f 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg index 9866bd5114..da9244c853 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg index 4aa0b53205..fb03d9f499 100644 --- a/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_0.8_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg index 5cbec44964..33d9f06f1e 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg index a6d91a1007..250c463c45 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg index 8c640dfb5c..4de3f5291c 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg index 53222d2273..7de3ff0b52 100644 --- a/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg +++ b/resources/quality/goofoo/hips/goofoo_open_1.0_hips_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_hips quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg index 348a785acc..95e1298c93 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg index 46567e5724..478ea23b16 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg index 4390447146..3dacc20474 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg index 2d28320a98..33b7e17eb8 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg index 17b8df3dbd..f969d168ac 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg index e832ecfd9f..49a83dcb29 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg index 3d1af0cfde..1767bbb9a8 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg index e2bf82bbaf..7b0e33c79c 100644 --- a/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg index f7dc4ed76e..dc1b22450d 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg index 6c1d838564..bd2df2062b 100644 --- a/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_far_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg index 896c4734d8..1160a7c0b9 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg index 2ef08555de..b31cb6c686 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.2_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg index 674a74b59a..1d76a7d191 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg index 060f1b2078..5ee240c7ae 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.40_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg index af1847498e..08d1f314d8 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg index 774904af4e..92098898d5 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.6_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg index beb2bce12d..30277ee3ea 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg index 19e0532dc4..9c65df511d 100644 --- a/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_0.8_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg index da00944e6e..a3018a537a 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg index e59c08ce03..c89dee5ca7 100644 --- a/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg +++ b/resources/quality/goofoo/pa/goofoo_near_1.0_pa_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg index 121b088b85..1e673ebac7 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg index 6bba94e2be..2c077d1e75 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg index e0f595bde6..066344ead3 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg index 9ede72af1b..5d6255ac9f 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg index 0be8604ae4..10db4bef6f 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg index 7ba70b1d35..fe34a5defa 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg index 356904c310..83c8b84955 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg index 43f9621a4e..12e7a1a794 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg index 30365cd67a..44b38378c9 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg index 7cda0fac5f..fbeff81525 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_far_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg index 527bf85048..96be581586 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg index 2080deeacf..ce81e85319 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.2_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg index da0a593f95..e163ed7dc0 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg index d8d1a7ca87..f23e73e517 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.40_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg index c22215a97e..51733f89bd 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg index 361687e2ee..1987de713e 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.6_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg index 0b40b616f0..cc71450d4d 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg index a6352e8542..9f8405697b 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_0.8_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg index 217577960d..b370bf853e 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg index 5224461e41..7162ee1a3f 100644 --- a/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg +++ b/resources/quality/goofoo/pa_cf/goofoo_near_1.0_pa_cf_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pa_cf quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg index d80a21dd47..5b30a9d6a6 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg index 6e77446e48..3e8a7efbe3 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg index 5b23f59e2e..278905e2c9 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg index 0c8a2e9d47..c73e19e7b7 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg index 9170a6ccd3..fd612c8277 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg index b7165ca165..6da61e954a 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg index c9e9e48f4d..a5f76bf2bc 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg index c4a2ae6ee6..8898ec1d73 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg index 03c98d3620..c80bca7f45 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg index 0651e514be..3aa9ee7759 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg index ef9c935596..444289d8a0 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg index dcd50bc969..93b0d16245 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg index e536456bc9..6b5669e33d 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg index 9deab3245f..c83504de07 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg index ecf42151cb..fc29fd9342 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg index 02c02bc3e6..f39d27ce07 100644 --- a/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg index 245bae2a99..71158d8851 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg index fb58a85c07..16ec9cb0d7 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg index 4d97e9e32d..32e96c6cdd 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg index 065fc1731c..96e25eb57f 100644 --- a/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_far_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg index 9ea26f12e8..1f558a62b5 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg index 5128f225a4..66115c984e 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg index bdcf429b4b..6ab9d0e8fe 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg index 2f2985b521..ece90078cc 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.2_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg index c31e8c3165..6a6e9a294f 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg index 77e928ecde..3ff30d548c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg index 4f300b8df5..528f0a015c 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg index cf42e403b0..aaccac441e 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.40_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg index bdfc2bc6ac..67c64c75e1 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg index 781e1a49ca..1c78411d82 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg index a01576b86c..c1d98c282a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg index d6e876a7d5..862e9e7a39 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.6_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg index bb2f366c99..17c1684764 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg index aa93b4aa81..bb4f2dba18 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg index 05ba27ebe5..3e8a5d8e4a 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg index bf53f2de7a..4164a588fd 100644 --- a/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_0.8_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg index d6c47ed9f1..ba2ec24801 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg index d7238ad4e5..71a31e8232 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg index 6ec648b3d5..4fb3accc5e 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg index 623995b206..d6e03f9a42 100644 --- a/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg +++ b/resources/quality/goofoo/pc/goofoo_near_1.0_pc_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg index 44c249c816..e07090d822 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg index 9be8e0a81b..f496633441 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg index 55946c3114..889941b958 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg index 905359674c..dba1e9bd9a 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg index 924af69d3e..19d9a80324 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg index 2397cfaa83..837742d77b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg index 38a70388ed..fc54aec619 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg index 62c13964a0..c0423bd7f0 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg index 390be62de2..e89baba3cd 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg index 30931645ad..7eb1ade11c 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg index 33b80dd579..3262632e69 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg index 250cb060bc..989ebe5af1 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg index a69b7dcc37..f2c9665648 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg index 9b822a58c9..5741414dc3 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg index 59283a5e34..3d843fa420 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg index c55e3ad761..44c8dbd73e 100644 --- a/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg index f0f668ab32..4e1182cccc 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg index 2688901e07..2f2d0ad222 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg index 47045c91b8..4fc398df3b 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg index 7b1b50ad63..9910f94475 100644 --- a/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_far_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg index 6cf5819318..6ed3f788b4 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg index 156a652a8f..44ca6b25d3 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg index 1a5215be93..1892c3956f 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg index 8c16dc8cb2..867bda6ea1 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.2_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg index aa74e974f8..9bfe9b3287 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg index dcbe3f44fa..7ec5f50773 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg index a69c6e51bc..bd142b4b82 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg index 5cf34da5b3..53502f28b3 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.40_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg index ab90f22afd..3eb4612e96 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg index eb511de63f..ef5d0b1e39 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg index 9a84bc7a23..3dc4da95c6 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg index af8d148076..d39a4de79c 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.6_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg index 4ab82b5dfd..bb4ba502b5 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg index 83dc2864d9..a606e3a310 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg index 43e36bb640..77cc2dbf47 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg index deedf0bf1d..3a1ea5ebba 100644 --- a/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_0.8_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg index 142cb15786..c45493813e 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg index 9b770447bd..d9283a5c22 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg index b80eabd35c..f2e708ff34 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg index 44730ff9d3..e456f5c02e 100644 --- a/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg +++ b/resources/quality/goofoo/peek/goofoo_near_1.0_peek_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_peek quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg index 1cdf589a09..2982c773e2 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg index a4e470199a..8109f55189 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg index 20d6b7d38b..ed6ec238a3 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg index d71b7310b4..f96019a4b4 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg index 75bea2fc24..7e6491a4c3 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg index 1d054195e1..f5cbc02a2d 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg index d82203c2e7..9271a3ee9c 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg index cfeab2566c..847bb0fd94 100644 --- a/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg index 2448c605f0..5e62f74cd8 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg index 9a817f0e39..795d337117 100644 --- a/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_far_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg index 380f4e2dd5..8324c04b5e 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg index 439bd15e25..90f2241792 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg index 2fa405b164..6c3ee05cd3 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg index 5c7cf701fe..9e804f7b0f 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg index 8c59997a60..a1824470fb 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg index 00eca070f8..2402ceac14 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg index 33cb7b1a87..b716c96bfe 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg index 5f54ebf647..9c7fc67491 100644 --- a/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg index 9eaac26a42..9b38ce1030 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg index 041302c244..c7b4c57818 100644 --- a/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_near_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg index e80ab9d9ee..db2f94d210 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg index ad81d57fb7..8a7a374bed 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg index 0443634dc4..89b5ac394a 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg index b5275e5c2e..f5304b9f6f 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg index 353632253d..22ca03b84d 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg index 274cbc354e..c323637b9d 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg index 6a85e0c7ed..b1d0cde7d6 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg index 08aca6b910..8bb4fe4fcd 100644 --- a/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg index 1a1e074028..76892f6bb0 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg index f9f8010d49..2004386bea 100644 --- a/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_open_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg index 9defbeb911..ca3eeec6b8 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg index 983c32e725..550d903a21 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.2_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg index baa5bcae96..e099450e96 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg index 4f94d09d63..82fb411c85 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.40_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg index 2fee6bc6ad..4d3a89d380 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg index 6f205a97a2..a19a043844 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.6_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg index fa705a5520..f0a1d1f1bc 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg index 0baea30908..1f960089e0 100644 --- a/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_0.8_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg index 15c3ea0e2a..de480db5a2 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg index 8b56269c2d..4dcb11ab5e 100644 --- a/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg +++ b/resources/quality/goofoo/petg/goofoo_small_1.0_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg index ea804f05f4..f43b3bc78d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg index 274838e728..416b74218b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg index 0e78ad6acf..dc751ccf36 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg index c340d22e6f..112a8c2334 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg index 92050f0dc8..d8b64429fb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg index 7976f5db53..f6a5f976d6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg index 44b404c6a1..a1bad70c82 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg index 9f71bdd306..cb94175aa4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg index d9b2378055..e75e26a996 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg index 74ab85f6b9..b44a28968b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg index 54753bcd6a..a22a6100d8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg index 53742da7ba..e441752b97 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg index 1b830d2bb4..90a9bbcdb7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg index e6b6248c65..9cf33dcf28 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg index ca03daad0e..e96948fac2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg index eda258e7de..824925e620 100644 --- a/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg index 7d1fdddb59..0379d72a77 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg index 474ec20184..325259e6d1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg index c19ce0e996..2dd5f8432d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg index 524229cfcd..fa184f8e94 100644 --- a/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg index b4c78531a4..3e6df986c3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg index b6f9ae029e..b5e51d42b3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg index d681300f02..c3ae09aad1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg index de5b575061..e0426f5d97 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg index 86536b0e01..09d010a214 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg index 12df7e9cc9..cbd1b7ba89 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg index 576c85cdfe..32531f26b4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg index 2d739906bf..7d26a8ade4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg index 77e61240d4..313c7a760a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg index 27ff3f26f8..0d2da4e8b2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg index 85b73e4b6d..ef22c9176b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg index 21ca35b524..2b15c118b8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg index 9ef89bb7c8..1a31c2f4a6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg index a85340ad4d..4b813c06ab 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg index e2ddb16800..ca6c78bb12 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg index c820a301e7..25fddd5b36 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg index c0cff5cc4b..b661b919ce 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg index 9931f64de2..29008285f7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg index c954561593..41b414b786 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg index cee16a757d..f08310e04f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg index 76215536e6..7c2b5bcacb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg index 02e0c41bb5..78ea22f421 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg index 5a1e3c456a..68b8bf40c4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg index 1f36479435..3af11852d6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg index b8c86af345..7cad2ce705 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg index d12504ba95..0d5006c1ee 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg index e5031178ca..74570b0eb4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg index 2e60dcdcc3..58970ab20d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg index 39dee8a34a..e58d764878 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg index 7b2eaa4d07..61068deaae 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg index 81378a00fe..4fa9789893 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg index 2079e1f0c8..193b80e419 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg index f2380c7cfe..15967645fb 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg index e3f6c13bea..35519aea66 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg index 2dce8f735e..bdb3aee401 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg index 3f60c32563..32ca246983 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg index 53f23e6eb3..befe412e50 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg index 46e26a0626..d2e8af1b47 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg index bff51d98fd..3da65b52da 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg index 1201a30d5d..9b6c6e1d51 100644 --- a/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg index e9645c7f0f..0e3942eda3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg index 7e7fea7877..e3254fe5b6 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg index a4ee3f3bf5..288e7031e8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg index 125f0e9beb..88dd2f2dbc 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg index 8a46d6cbd1..b8ba3789d0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg index ea6cbec13b..6ac6298ac8 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg index f7a613a20b..1abe4ee0e4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg index 44ac6c91b7..4417c6f837 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg index 7f93f92adf..731271d570 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg index 61a251e220..ba33e1ee8c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg index 7db0bfd557..7b2860a390 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg index 2f8a3bdb57..3a25d96439 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg index d78c1b2bf7..b41a5f79ad 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg index 0513491e11..65bb0341b5 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg index 3f92cc307b..26f484cacf 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg index 4c4fcd3605..5be2d5fae3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg index e36d6cc922..184ec5656a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg index 16679787e5..ea0233e2ba 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg index daadf2a25f..9d941249c3 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg index 220f3b38e7..1ca72ca49d 100644 --- a/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg index 72b6c17e6f..6bd73645d7 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg index 480a6d0d46..7b772d68d4 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg index 4aed3391d2..0a43b6c3d2 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg index a8b259e40e..a998293b09 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg index 4515d11786..8aa0555dc9 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg index 9332be7f50..a1d3269e69 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg index 75cec5183e..7d35672f8c 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg index 875390ef4d..d00b339840 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg index 40834d6db8..6fdf3e9ce0 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg index 23c59fb500..a93f4e2404 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg index e2ad9d6fd4..5d5132cf7f 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg index c70bdfb20e..5306e65b45 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg index 9f860abd28..bbe4e44d55 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg index 520f8fc8a5..5b722dcf18 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg index 8fd2bee068..5f5cc9af9a 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg index 561bde734c..b0380ce054 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg index 671b54bdf4..98525a0747 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg index ddd379be18..72f54724b1 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg index b123bd5721..4a08475609 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg index 36875a4c57..7690c2bd3b 100644 --- a/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_far_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg index 11fafe0809..230d61a1cf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg index 0fe62096af..8a55b907d3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg index 29f1abb2a7..488611b876 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg index 00deef516c..75a012fb9a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg index 94ae0743fe..51ddb44018 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg index f9b94fc257..46052680ce 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg index 46a3a9fa61..f85f20fcc2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg index 56f92ab16b..b7ea3aeb68 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg index bd58e7adf5..f2215dabc8 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg index cee9e4dccb..a6639f979e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg index 9f02a5215e..8b53dd774c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg index 6f53a862dc..dd6a46ad4c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg index 6046f738c5..f79ca5bbda 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg index c07b6dfad4..b69ff32dbb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg index bdda4ef8a1..75d1581a26 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg index fb0fc68a5c..69d163fc93 100644 --- a/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg index 4c01ab631e..f5b47dfe8e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg index 1a4c2426fb..e3f172b20d 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg index 968a7a9c67..1de85bb23e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg index 6a216a25a1..4abf651fdb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg index 457eefe206..653ea13720 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg index 5008a6a0ae..63078ad6d9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg index 2e9e44565b..8008809fff 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg index bcd800c289..4602450588 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg index aac1990e10..47ae2a89f0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg index d8e6eceaa6..a6d2ae6e23 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg index 0f3d79ceca..a44099b944 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg index 35d29dfef7..c791948bc2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg index c4bcca2059..bc86358173 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg index 0332a2f238..3dd480c439 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg index 931a14e739..0537664047 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg index c613d41901..0d03569b65 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg index 9ca43bb40f..0b691ab4c9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg index 57332ca7b7..3c3b10eaa0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg index a19e30459f..62f0188a91 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg index c6f687d186..a8a73a95d8 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg index a8416f211e..a3f5049779 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg index 7e5063001f..021c3493b3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg index 80e240c99e..566e6c5ca5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg index 30c88bcb71..08d085ddbd 100644 --- a/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_bronze_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_bronze_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg index fb5ce48208..cdeeb2ef93 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg index 5e4135d37f..6e2aa88854 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg index 2ca72b6478..c0adc86b96 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg index fb76a0b203..9c75007905 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg index a604d591e7..f8a64d371b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg index 36aa675aa5..81b04cbe41 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg index 9f8ea69fb5..e047b9349b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg index 30b78bc806..ae24ec7f68 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg index 440620c4f4..97d1eeff12 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg index 7d04f1fe66..414d9f445f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg index f31ca3a447..80c5a058a5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg index 78337e4399..4ca9168adf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg index a522b67182..bbd6e2d45c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg index a5237fd688..3372e9fbea 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg index 0735eafe6b..249d1eef01 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg index ac8f22dae5..f4ee992884 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg index 2137bb44d6..b65878e6ae 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg index 8bf07b71bd..55df7b866c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg index 1b0303b4a0..5e0373b494 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg index 12af81f8ff..9bce75f106 100644 --- a/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg index 5f23442d9e..33077f90a4 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg index 1e1954997d..057e43337c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg index c2dccc4c29..2626e84200 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg index 29be08b135..11acbe1a5a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg index d1cf9b5edf..07ec85b5c7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg index eeb45c2cca..c6793c9f50 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg index 8205023bcd..1756f1b2f5 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg index 3495ff4d3b..ba81601980 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg index 208e9a81be..23c51a3ea1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg index 2df649ca35..252d255e96 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg index 1e56bc12bf..f407c3a141 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg index f1f8cc59ce..e16ef3a029 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg index ca0921304a..802285b606 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg index e2fd6b87d3..52768d2300 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg index 52d3659570..0f938042a3 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg index 8a005e13f4..4ebd82f7ce 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg index 35831312bb..bab15eef06 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg index 0ff8d89664..215c5ddef2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg index 43859075e1..28ce0c2321 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg index 09e685a14d..cabb1e943c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg index 99187ad5df..44a51af3f9 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg index 81fdbdbafb..c47b8fb7cf 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg index 3ed41c0309..1a8d8fac92 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg index b51daea66f..e1d0fe653a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg index 1a054a1259..d16402778e 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg index 9ba820f877..6fdc3cd5a1 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg index c89eedbf43..3f15618eb0 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg index 39d4687305..50206b67eb 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg index 7bd3af8187..75443b975c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg index da4acd2f6f..89dfa9008b 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg index d3a322e465..b50203946f 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg index a63a8816e7..2d2d485d6a 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg index de0137a4e6..cb25e1ddac 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg index fa28f435c6..2bfa69deee 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg index 16534a9d4a..58a00412a7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg index 3025e1b77c..4b8f0f249c 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg index ebd9e68fe0..a4572274f2 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg index 7f039d1a1c..3d45594fca 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg index cf026efa1d..864c4eab70 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg index 83700acaf2..103f58acb7 100644 --- a/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_near_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg index 9c912e786f..f46410b55e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg index c38c5b2fb0..526e0bec5e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg index 44f3add9e2..41c509826a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg index 573484ba80..dd23074797 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg index 9aa7c8002e..9e78e617c1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg index 46469f6f29..b364d88a53 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg index 05eedcdbb9..df01a1a88d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg index 681f07472e..8a60a8449a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg index 30ad404a8c..c8ce45f86f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg index fbe87ef6c6..015f09a9e8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg index 9fe7f059cd..969301cdb1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg index ba0d5867f0..92fa01efab 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg index e8848d36ed..2be3605181 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg index 5a581ba104..6434e49e6f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg index 9999ad4926..7aa0638280 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg index b99ed6619c..68bd3d76c8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg index e69de84b62..ddddd6d330 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg index 181121e481..62bd4b457c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg index 073a976f16..aceaf5d283 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg index 4a508a0a06..f9a6ed0289 100644 --- a/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg index 3c8b00f626..4e010425ce 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg index 3ce95f7a63..2b3d42d5cf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg index 3b41b07a06..c7849c5953 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg index 3210f1da7b..6ffe7ee4d5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg index 46e75f3899..ded6b7ae1d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg index aa4f99fcb3..86e66af99d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg index 679e88140f..9d22622da6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg index 1b3680cf73..7bd020a6c8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg index dac40bc410..884edc539b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg index 80b5c6b650..d4cbda92de 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg index 17b366bf72..eb123fc40c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg index cee54c2363..9f4f6eae8e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg index e4deeed9db..d6d03541f6 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg index adeb956660..192cb0d8e5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg index 682d398b68..d1fb5427a8 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg index e465530528..9be2c987e3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg index d7a74a43fe..a8cb398546 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg index 50ecaf14ec..adaa4ff370 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg index 04334a9c55..60830973dc 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg index 427ecf378d..9c89e0c1ac 100644 --- a/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg index 98fd96a26d..e229873a5a 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg index f4dda4780a..9835b78c85 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg index 6d9bfd898e..efd8adcfe1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg index 83789925b6..cd50c34b3f 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg index 6807168f8a..cca422aab3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg index 72f6883afd..07a50c0be4 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg index 8070d0e64c..3e00dad718 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg index 4abf8d0c80..afa7e1fefd 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg index 4367c59ba8..2485afdd5d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg index 7290662db6..93ac3eabfe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg index 28b3cbc3be..6d1297669c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg index 48f1358124..cbf5ceee2c 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg index 63395c97e2..4c19a44d36 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg index bb80d477d2..0623dff770 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg index 234019da73..43645c057e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg index 8106b3ef21..42970dc708 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg index 7ff797252c..c68412d26e 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg index 2a667d6466..060bb48ab1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg index df35985225..b76957d9b3 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg index e2d4610158..ab2102512b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg index 495ce5971c..7e54fa17bf 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg index 7d13a8dadc..6e46ff26c7 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg index d895be517a..2ed6b9e71b 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg index e34dcbac6d..613618484d 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg index 86db2a4d45..3d3d89f085 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg index 6b4d27dd4a..6239123bda 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg index 4886566493..7f3720a778 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg index a38cf1fd2e..f73f1949d5 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg index 5a23fd57a2..7867366941 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg index 8e4170d9d2..886b32e432 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg index 938461c5e7..7458b078a1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg index 9e4a762812..29ffbe4b33 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg index 336196c2ca..38e24c97fa 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg index 16e9d629c1..8dd016d080 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg index cedbff00bf..97544e1d46 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg index 434da68f63..361b00b6a7 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg index 5e46e31d8f..20c89b34ff 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg index a0b4939bf2..4826fe62fe 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg index 4a39e1c8e1..f9093a2ff1 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg index 96b2f04cef..1832ae5827 100644 --- a/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_open_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg index b3e32302ab..3c1484ddd2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg index c64a33386e..5e7dd82dbe 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg index a7959b6cc9..1ee1e2ff4c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg index 2493925bfd..adc6bc17a3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg index 1f98a763f8..5aab8486a2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg index f464e71639..61026b13ae 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg index 279a08f94f..da5cc14077 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg index 29a442d2f2..70bfa78a26 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg index 806e5fd9fa..7766698208 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg index cc43279098..79c50c26b5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg index b308cdd674..e1ccdbb785 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg index 5ffd943827..de2114b28c 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg index 90011648e7..b8351c1341 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.70_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.7mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg index d4be1df646..05a3c38c3f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg index c1d11ee1e5..522045710b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg index 06d6553302..fc6a4fc6a5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg index 713055db6d..ba8a731269 100644 --- a/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg index d537e2bce9..b49f6d70cb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg index 67e57f4a4f..167383588a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg index 4bbf391b45..3ef9ecb066 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg index 01dc8f7675..2c3231a470 100644 --- a/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg index e2dc4fb2ba..7ef0fed665 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg index 87062b3c99..0eb6cf1f1f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg index c6fddf4d72..3a08386bb3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg index 011559774d..496b5816b5 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg index 7838ee5fee..42223dd486 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg index 197d91b836..73afce4696 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg index 835f59c754..014cd4609e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg index c5e129679a..8e2a8b8749 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg index 2e70de1784..f66868e957 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg index 0b690d4ea6..86af5f7947 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg index 550659cd4e..a85ff37916 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg index db0e547e98..27d226b4d1 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg index 3b34147009..3c323977b3 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg index 506475b0b5..71a8aedf08 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg index 75f6251d43..dced5b76fb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg index 0020c6afc2..b74fe51e4f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg index 1721758d21..477c06ba32 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg index ae3a1f9195..30054aae1e 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg index 7ceb595c4b..2bbefae6cd 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg index 436fef5536..f5d8beb770 100644 --- a/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_emarble_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_emarble_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg index ade3324090..a83797e410 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg index d84355a0dc..f38fc6b631 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg index a8ac3c5a58..5ad1fc1929 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg index 32d826930a..e50c39c125 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg index e0b1b83885..5f214a0e5b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg index 8b2d5d8dab..88aba29724 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg index a4e05f0b1b..073c0f3ea1 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg index 3dcf5d8cf2..c999117a63 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg index bebb81291a..d16bcb9c4f 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg index fb219f2e16..7741670b52 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg index 9c23538b5f..ddfcde45be 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg index bd4e3851be..dc4fa4115a 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg index 6d788974ce..a8197a0bd8 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg index be1ad19db6..e6bb069a1b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg index 133e168d63..ffb8f890bb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg index 2d895109ed..9b10822810 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg index d25c4c2793..2ae78770e7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg index eef04ba0f0..7cec7ab329 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg index bc6abd6fde..ae488f8820 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg index 444258d3e7..9f6f7adc51 100644 --- a/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_esilk_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_esilk_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg index aafee1609c..da901b85de 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg index 91dfb9945f..603b5287f2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg index 383b814804..54960daba0 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg index f15973a0e4..90d587c9ee 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.2_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg index f1855c07d7..ed30f22eff 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg index 2cff52d0d7..31fb9c20a7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg index 45b10074a0..eece7d7a10 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg index 55c4a61eee..090e4c55d2 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.40_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg index 243bdcfaea..bba269a45b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg index 8913a0d710..5cf00dddbb 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg index 7e30359f03..56f05db475 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg index 6aabac6e5b..8f3757410b 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.6_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg index 61e3bc8944..afa3a851b4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg index e24514e973..08a2921cf1 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg index f2a18d1a0f..0a85da85b7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg index 25f5eea228..1baea406cc 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_0.8_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg index d6f8b70abb..5ab8c004b1 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg index 78b6abfcce..b1823f23e4 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg index 4d2b12b952..5df84965a7 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg index 89863c4c31..35ccbafe71 100644 --- a/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg +++ b/resources/quality/goofoo/pla/goofoo_small_wood_1.0_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_wood_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg index 9f9fef6d60..f652b4ec63 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg index f7e1050f20..4efe359c5b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg index c04809b64f..7f7ff6092f 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg index 1668ede94c..84c164a6c9 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg index 62933a4fbd..a81ab1c29e 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg index 7bb06108a0..41b83b1270 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg index 1c0691a7d6..a4b02ce79b 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg index 48f165411b..d013179e51 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg index a106cf2fd2..9c6c605a31 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg index feccfe4d0c..d31a9419d5 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg index e7c73d65ec..aea79846b8 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg index 072c9b3697..7f74409485 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg index 0822ed9395..5d8ee032fe 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg index af138ec9ad..81aedcd233 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg index 5f56b9858a..22672d7817 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg index f19c453c06..e360191874 100644 --- a/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg index f771663bc6..dadfe3a94a 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg index 88619447b8..45dd223d2a 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg index 32d055d519..a2dbb4bf09 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg index b387713b73..0646a345a9 100644 --- a/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_far_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg index 9ef41cae42..39550bfb2d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg index 0f51bcd54a..65ad7b5920 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg index 6d2760a8b6..6cf8b531fd 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg index 9024d3af2c..bbb6278ab7 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg index 6d65d34038..8509ebf3e9 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg index 951d21a24a..c2d120f5e8 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg index 03902636ee..2943c1a8ea 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg index b427f6ade8..194d42aba1 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg index a818846db1..df6ed7060e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg index 7156000c89..0d431e5430 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg index 2bcce8c08f..2e3acd99b7 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg index a89d332e92..6312a19227 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg index 7accd1dc5d..9858188ad9 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg index eb55f19744..0cfd2ce6d0 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg index d6cdef8f46..a74accccf4 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg index 4c7386319d..62e37067f2 100644 --- a/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg index cfb6048bfa..062faf7af7 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg index 7aa0d81680..7a849c6c3d 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg index 7cbc5d0d5a..e1782bf84e 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg index a217770025..887aaec0cc 100644 --- a/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_near_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg index b5e6cfd2da..be31ce40a8 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg index 3bd3ce920f..c6a748d3a9 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg index beb9b922a1..912342fff8 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg index e167dcac9f..cdaf937b38 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.2_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg index 664f3e6ca1..e93ddbb8af 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg index 444da63072..ab1b80888a 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg index 3f9ada087c..6f72b71a68 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg index d00e73fabb..7f1926115a 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.40_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg index 4343317dfc..1e384e21f7 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg index c286dc2485..77487562dc 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg index e31017db6d..1cc2d39b68 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg index d05f817415..df4b649a99 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.6_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg index 9a47845871..b01301e784 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg index 49609c7121..7af82c1a0f 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg index 0647fcbeaa..159fe1dfb6 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg index 9e69c455dd..ca0b4b9c9b 100644 --- a/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_0.8_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg index 0b1278493c..6bfba4dd87 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg index 1d31469cc3..239a6ee9bf 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg index 7e9261a810..1ae8aad7db 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg index abc24c245c..a9709a314d 100644 --- a/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg +++ b/resources/quality/goofoo/pva/goofoo_open_1.0_pva_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg index 9d90340c7d..6e0512d2a4 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg index c3369b073b..ea62c27b5b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg index 098e1b2733..58c21c4a77 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg index 034b928933..d2ff4993db 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg index 47443f2158..90bc2e6cdd 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg index aa2c30969b..75b8d6f936 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg index c032396476..2a39f696e3 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg index 99e48b52ca..1211ce8310 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg index 960ea90df3..5ddc216f14 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg index f6be30dffb..c369d5186b 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg index 01f7d71e9b..6201b27064 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg index 02adae91d8..5389839b78 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg index 5bbf15d831..bf5dcef883 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg index 22109fa736..2ac9ad7ffe 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg index d005f36294..03709004e1 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg index 51afba93ed..52f6f60194 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg index 435b079942..582642128e 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg index ee17b3b568..fb51a48606 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg index 9d3027b926..47201c0f57 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg index b76e7d1237..ac17fb7fa0 100644 --- a/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_far_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg index 306b13f499..6daac4ba48 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg index 7fbfd04d18..441689ccbb 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg index 3829cd6681..0ee1c5f4aa 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg index ef53446b4c..1f7b781d43 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.2_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg index c59f80887b..46abd0a72e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg index 55ffd2c0ca..dad613cbfb 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg index a00cca72fe..60973c9330 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg index c0348c50a0..c70b30d488 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.40_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg index 9dd50875e1..7d7d7db9a3 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg index 5975aed497..643cacb8e0 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg index 3e2c862d7b..e26bab0d9c 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg index 67f9a187c8..bc6196a95c 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.6_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg index fd576bf979..b7270cbd49 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg index ca2db4cbc3..e0af393659 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg index ba6b8e3bdd..40cac0e996 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg index d30b9f23c7..523b727e17 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_0.8_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg index 104e8167c3..93adf92b1e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg index 28a10003f4..d740a13adf 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg index 4acd15ea0f..e92b2d3d3e 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg index a31b09d1e3..6baaa1f10f 100644 --- a/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg +++ b/resources/quality/goofoo/tpe/goofoo_near_1.0_tpe_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpe_83a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg index 7de788b6cd..657a8eee44 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg index d07ac3d50e..112e2fe082 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg index a9c8d61167..bef5f1dddf 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg index 9e11cd6a41..1141ea7000 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg index e29af7fa79..6b5ff504b1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg index a29e3ab72e..d1495cb723 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg index bb0e6fe9ab..f7fdabdb48 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg index c810bf612f..94ddbf0028 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg index 268f749a4e..c1e23167b1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg index 4eb93f317e..2260e011a8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg index 7b584856be..d9887165c0 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg index d82bad2d38..16f8712d7e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg index 3fbc6b312f..4f23d252c9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg index 4380089b59..bd92e5cae4 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg index 144a7913ce..908391db75 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg index e844f9d899..ebab9d010d 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg index 38f9972768..57aaa960d1 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg index ea465314fd..ebbd107bdc 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg index 4fedd884d2..e269758b3f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg index 10dac63a0a..5db6c9b4df 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg index c196470d71..fc660d6dbc 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg index ad943c9b4c..1edda8efd6 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg index b5829eadfa..a4055abd8f 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg index c062f66dfd..2f0b3ed5d3 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg index 13461b69ac..f493221f79 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg index ab3386b24c..896563f9f7 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg index ec1e72432d..c33252258e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg index de5ddffaa8..aba4c4e9dd 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg index 92727c490a..dfefe472be 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg index eb9edd824d..4f7c782073 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg index 13fced9fa9..0ad5e1cce9 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg index a54569e07b..08959b6b4e 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg index d21940b51e..35219416d8 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg index 9a0b95203e..e9a3350492 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg index 6b7ee19e86..bcb64a4217 100644 --- a/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_far_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg index 6ae18a8b21..72ba5a0763 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg index 9ac8127039..04cef7014a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg index 2c703191c8..1b21d025ba 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg index 07a9538f65..b65868ad91 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg index f0fcc87112..739d2b5d58 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg index 95bd1f3d8e..8fe6880920 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg index bf773f65c4..b375bd7175 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.2_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg index 59bd0b6edb..296c6dda8b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg index a7df472cc2..6e24a4db61 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg index 0fda0370f2..fd6b639abe 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg index 9d1f7abe98..7a6949bdbb 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg index c04888e54b..f55bba347f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg index 165a7be1df..45dcf5dbb3 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg index 2487452a5c..9e4816acbd 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.40_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg index 3992eb5636..8cc30e583f 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg index 4fbf336105..0e71927369 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg index c71962cb1e..4bb05e7947 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg index c444297122..2dd8b73394 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg index f2448b4f1f..29d316e6b8 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg index bec02e01c0..88538a031e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg index 0b61c51846..e27bea118a 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.6_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg index 0d8d49da54..613af22c63 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg index 13bb7b8a48..49ebebf199 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg index 900bbfd174..b817cabbe1 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg index ac47dccb19..210a152a3b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg index 18854e1f8b..948dba6311 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg index a3d82be732..0cbb83279e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg index 734be5fbb5..bcb76c8f9e 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_0.8_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg index 23b596fef9..22f17eb278 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg index 7fb524d988..29600815b1 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg index fc703723a3..3da19de9e3 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_87a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_87a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg index 583ccc7233..b6c2927cbc 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg index 82e8848521..04ac4c2bfc 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_efine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = efine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg index 93a3eeceea..9db4f909b3 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg index 23665d699a..64b8cd336b 100644 --- a/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg +++ b/resources/quality/goofoo/tpu/goofoo_near_1.0_tpu_95a_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = goofoo_tpu_95a quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg index 85f0bb9e0e..6e78c55d66 100644 --- a/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg index 55b1637938..07821d3750 100644 --- a/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg index a70b33ef30..8b54ec4def 100644 --- a/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg index 12d536938c..4bfac85fa2 100644 --- a/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg +++ b/resources/quality/gutenberg/gutenberg_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/high.inst.cfg b/resources/quality/high.inst.cfg index 5b78cb99d1..010eb4ad5d 100644 --- a/resources/quality/high.inst.cfg +++ b/resources/quality/high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg index bf18f50f12..203d576ca3 100644 --- a/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg index c70f229a77..3a93633d9b 100644 --- a/resources/quality/hms434/hms434_global_High_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg index 9b016128d3..7dac2a0fd4 100644 --- a/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg +++ b/resources/quality/hms434/hms434_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg index 7c6743494c..1ede145939 100644 --- a/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg +++ b/resources/quality/hms434/pla/hms434_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm TP extruder weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg index 8edf92e6eb..024cfc5547 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg index 60703ed4a0..e0e356db53 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg index 50f79ee486..f0153fd15b 100644 --- a/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PETG/jbo_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg index 4382e3194b..ab63fe4218 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg index ff8acff08f..ccb082ddae 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg index 194740ca18..34f00c0c36 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg index 649d0aa573..2ffd133b82 100644 --- a/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/PLA/jbo_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg index 33f64bac61..33b69fc78b 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg index 55ef0c54bf..5d587ca7e4 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg index e9efa56b41..29dc180ac7 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg index 79c5d00156..f3edacffe6 100644 --- a/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox/imade3d_jellybox_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg index 24975658e7..d68d5f2765 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg index 92cc50fe64..d8e644a39a 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg index ee758d4c06..20ff757f43 100644 --- a/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PETG/jb2_generic_petg_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg index f400857822..3306885561 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg index ce0a5d45f5..bf0baa789f 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg index eddfaeb3ae..9af3f395b5 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_medium.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg index 4d498a7d4e..e59e632a1b 100644 --- a/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/PLA/jb2_generic_pla_0.4_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrahigh -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 2 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg index 1f0999bac1..4f14a7e796 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg index 4cfc017bff..c8ea37293e 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg index 952c67285c..6edfc5e2f5 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg index a9f4ce4136..bfe30dfcb9 100644 --- a/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg +++ b/resources/quality/imade3d_jellybox_2/jb2_global_ultrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrahigh -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/inat/inat_base_advanced_materials.inst.cfg b/resources/quality/inat/inat_base_advanced_materials.inst.cfg index ddd332c199..6b246adc50 100644 --- a/resources/quality/inat/inat_base_advanced_materials.inst.cfg +++ b/resources/quality/inat/inat_base_advanced_materials.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_advanced -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/inat/inat_base_draft.inst.cfg b/resources/quality/inat/inat_base_draft.inst.cfg index e24e5cb684..7e4158bfc2 100644 --- a/resources/quality/inat/inat_base_draft.inst.cfg +++ b/resources/quality/inat/inat_base_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_fine.inst.cfg b/resources/quality/inat/inat_base_fine.inst.cfg index 3274629305..f6bb3ef011 100644 --- a/resources/quality/inat/inat_base_fine.inst.cfg +++ b/resources/quality/inat/inat_base_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/inat/inat_base_standard.inst.cfg b/resources/quality/inat/inat_base_standard.inst.cfg index a7ff77f71c..fa28af767e 100644 --- a/resources/quality/inat/inat_base_standard.inst.cfg +++ b/resources/quality/inat/inat_base_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/inat/inat_base_strong.inst.cfg b/resources/quality/inat/inat_base_strong.inst.cfg index bb49238d33..b0d6afc925 100644 --- a/resources/quality/inat/inat_base_strong.inst.cfg +++ b/resources/quality/inat/inat_base_strong.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/inat/inat_base_tree_support.inst.cfg b/resources/quality/inat/inat_base_tree_support.inst.cfg index c7985d704e..9eb55e5201 100644 --- a/resources/quality/inat/inat_base_tree_support.inst.cfg +++ b/resources/quality/inat/inat_base_tree_support.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal_tree_supp -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg index 61f44fe2db..f7d8ceebc8 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.12_detail.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = detail -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg index d29c72d391..5bcb8e4aa2 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.16_optimal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = optimal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg index 1e07e55fff..5c8d2019e4 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.24_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg index 4ee1bab58b..0436ca4a23 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.28_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg index 2df4e25328..4b994b5f99 100644 --- a/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg +++ b/resources/quality/jgaurora_a6/jgaurora_a6_0.2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = true quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/katihal/alya3dp_normal.inst.cfg b/resources/quality/katihal/alya3dp_normal.inst.cfg index b9605426b8..92be8da4f6 100644 --- a/resources/quality/katihal/alya3dp_normal.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alya_normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg index 0cfa315170..312754c476 100644 --- a/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alya3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alya_normal -setting_version = 23 +setting_version = 25 type = quality weight = 3 diff --git a/resources/quality/katihal/alyanx3dp_normal.inst.cfg b/resources/quality/katihal/alyanx3dp_normal.inst.cfg index 4accd0ff52..5a8c7ee422 100644 --- a/resources/quality/katihal/alyanx3dp_normal.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = alyanx_normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg index 809f08de22..ad5e629588 100644 --- a/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/alyanx3dp_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = alyanx_normal -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/katihal/kupido_normal.inst.cfg b/resources/quality/katihal/kupido_normal.inst.cfg index cb6a330c8b..640763222a 100644 --- a/resources/quality/katihal/kupido_normal.inst.cfg +++ b/resources/quality/katihal/kupido_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = kupido_normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg index 63f63fe194..d2a5c62b7f 100644 --- a/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_abs.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = kupido_normal -setting_version = 23 +setting_version = 25 type = quality weight = 3 diff --git a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg index d363393593..51596f3246 100644 --- a/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg +++ b/resources/quality/katihal/kupido_normal_generic_pla.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = kupido_normal -setting_version = 23 +setting_version = 25 type = quality weight = 3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg index d809ae48ad..ed60c966a1 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg index fc8fd5c7a5..e17e5e493e 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg index 34651bc83b..7155f5f8da 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg index 456784f7ca..2c8ace3469 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg index 8a4bcd4968..3b1251aa04 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg index e413d82cf5..082a4c9da7 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg index ffe75aeb45..e09e302272 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg index 099e5081b7..bb055b20a4 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg index 6b7c08d2bd..20b3e8740f 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg index d8d485ab99..f61da9f36d 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_beta_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg index d92fd6ca25..32095a3b20 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg index 297a0b9e85..f3567c43b2 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_extra_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg index 5630fdefe0..c702dbb005 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg index a74f9f83b0..ab1b98a01b 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg index cb5baf62b7..42c341b931 100644 --- a/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg +++ b/resources/quality/kemiq_q2/kemiq_q2_gama_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_best.inst.cfg b/resources/quality/key3d/key3d_tyro_best.inst.cfg index e5b68e36b8..33041874d5 100644 --- a/resources/quality/key3d/key3d_tyro_best.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/key3d/key3d_tyro_fast.inst.cfg b/resources/quality/key3d/key3d_tyro_fast.inst.cfg index d988800c1a..f651cdc94c 100644 --- a/resources/quality/key3d/key3d_tyro_fast.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/key3d/key3d_tyro_normal.inst.cfg b/resources/quality/key3d/key3d_tyro_normal.inst.cfg index a7d361bdac..4055b24f4b 100644 --- a/resources/quality/key3d/key3d_tyro_normal.inst.cfg +++ b/resources/quality/key3d/key3d_tyro_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg index 6e146e7b70..2f537218a8 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg index 1567cdd68d..be99adf2a5 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg index 267c47b676..b38a989032 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg index 68c797149e..27ec3d99de 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg index 7b5ed95354..6936efc5fa 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg index 0f4d5f9132..08f8d5eace 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg index 201e6a7b27..c6c416ee04 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg index 4ff7b3bcb5..5c4b077f94 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg index 9732857f87..0d6b16e8ae 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg index 600158f328..7681fe4fe9 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg index 08ae5147ed..d220280768 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg index 6bd87de8b1..32f7edfb3d 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg index a9ee4d58da..ffdf9b3bf2 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg index f92db9d0d3..f8ecd6bb87 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg index c13c12ff0e..5740b88676 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg index 9705ae65b4..edad5a6010 100644 --- a/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg index 4bf4616338..4e238cc897 100644 --- a/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg +++ b/resources/quality/kingroon/ABS/kingroon_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg index 18743bfb14..fbb3e64eb2 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg index 90b68a4b2d..1141da4d7a 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg index f4e2967c60..1ca16bfe2d 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg index 90161eeb14..201e5d6524 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg index 88b3f0fac3..6219605827 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg index 669ee1ba2d..3c6613dd57 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg index ecda7d46d9..3835e925cf 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg index c7c486a8b2..b67b86d1e6 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg index 96103eaeca..adf7299e5f 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg index 3b9e707058..d63f1ccfd2 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg index f65914591b..541a0d55e2 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg index dd9512693f..86b56d8b43 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg index 8ddbf80ae3..8585740540 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg index 2d3e127421..0090f34a9b 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg index 712d39c19d..3c0b6f9fe1 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg index 09210cdb3c..7878d4ee00 100644 --- a/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg index 70efb35bad..15d7bade10 100644 --- a/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg +++ b/resources/quality/kingroon/PETG/kingroon_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg index 0d75516111..ffda33edb0 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg index a8cf9eac90..823e9b86a5 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg index 096a94fbbd..d8ab46c1f2 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg index 184fd09da7..9da9ee4333 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg index 825f2a1ef3..a600560d8d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg index a243276092..d04a33e9f6 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg index 0683da11e5..509e96041b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg index 272fd0531f..4fd453357d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg index 78116453e2..00a2d0b3ba 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg index 3b02bf9e14..384625999d 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg index 08afefaa7c..baa85dfd68 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg index c07aec9317..7f63b48b19 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg index 6309f6637e..fe20f64fdf 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg index 58c6b73697..ae1c2798c1 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg index 8a7142b9c6..9dd32f242b 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg index bf4471ea15..e6877268a5 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg index 9e4c79f1a4..d7027e6b08 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg index 43328ed7c2..883e26a989 100644 --- a/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg index a22662c906..390fd9af7b 100644 --- a/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg +++ b/resources/quality/kingroon/PLA/kingroon_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg index f27334e5f4..5bf59a26d0 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg index cbc2f2688d..20e2914469 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg index cd78f0f22d..df0438d912 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg index 0ff82bd8f1..44a5883852 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg index 7e15efbd9c..e514b2ffb8 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg index 91ff4fa64b..624b4ab0a9 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg index 335da8db18..9b40df77a0 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg index 5d2f1f1b45..85d66b4fa7 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg index 48fa66b72b..80c39b0151 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg index 0b965f6a3d..2640657384 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg index 6b7aa3fb02..af5a93b42a 100644 --- a/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg index 8fa29c3e7f..6c37c10dee 100644 --- a/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg +++ b/resources/quality/kingroon/TPU/kingroon_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg index fd3c7d48c6..7bec9c0df1 100644 --- a/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/kingroon/kingroon_global_draft.inst.cfg b/resources/quality/kingroon/kingroon_global_draft.inst.cfg index 0e1282093d..3f664cafa1 100644 --- a/resources/quality/kingroon/kingroon_global_draft.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/kingroon/kingroon_global_low.inst.cfg b/resources/quality/kingroon/kingroon_global_low.inst.cfg index d0687eb4ba..1d1406032f 100644 --- a/resources/quality/kingroon/kingroon_global_low.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/kingroon/kingroon_global_standard.inst.cfg b/resources/quality/kingroon/kingroon_global_standard.inst.cfg index 7a6a1a0ff2..f8d3dc9a90 100644 --- a/resources/quality/kingroon/kingroon_global_standard.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/kingroon/kingroon_global_super.inst.cfg b/resources/quality/kingroon/kingroon_global_super.inst.cfg index 24651d6e30..66f762ed0c 100644 --- a/resources/quality/kingroon/kingroon_global_super.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg index ed8f7487ee..f2b277eed2 100644 --- a/resources/quality/kingroon/kingroon_global_ultra.inst.cfg +++ b/resources/quality/kingroon/kingroon_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg index 068213f167..6105832267 100644 --- a/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg index 79ac2a8dd1..39a6281331 100644 --- a/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg +++ b/resources/quality/koonovo/koonovo_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/koonovo/koovono_base_global_high.inst.cfg b/resources/quality/koonovo/koovono_base_global_high.inst.cfg index fa7f77732d..064849b06c 100644 --- a/resources/quality/koonovo/koovono_base_global_high.inst.cfg +++ b/resources/quality/koonovo/koovono_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg index 529fb00e0c..b85719129e 100644 --- a/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg index 2555cbf163..8eeb62c0ce 100644 --- a/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg index bc4dd518f7..a15b63e6b9 100644 --- a/resources/quality/liquid/liquid_global_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg index 50d4b9d85c..64b4f86698 100644 --- a/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg index 0b96cdc9f1..a8c949d179 100644 --- a/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg index 8ad236a3a5..1ab12d82db 100644 --- a/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg index 7edc4475d1..3d24c7ea21 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg index adbf76cf59..659a58c29d 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg index 8f02ace622..63fa53f908 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg index 481f928668..b547ebb444 100644 --- a/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg index 793b141039..72cef3a17f 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg index 82d3afb3c3..5664445aea 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg index 79a9ec7afe..42f2292ebc 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg index 20e046ae9d..eab5e3a1dc 100644 --- a/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg index 9ab6e00494..120c785a58 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg index bad45f35ff..0019207545 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg index 2c1b409a61..0e446c32ed 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg index 92e7b6f1dc..6afb2f900b 100644 --- a/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg index 43dad6ef40..b4d9cf1a18 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg index 61e64bcdce..622aafdf1e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg index 72279f861e..a00efaa0d6 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg index b0c5a190d2..bf2c1c1c99 100644 --- a/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg index eb8bfd773d..0504097764 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg index 64ab7b9b1a..57b4635c97 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg index 3ed34d7d21..71c6727233 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg index 6f2cace35e..00b157c45e 100644 --- a/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg index 9a99d3d243..0cb72eb937 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg index fc113b83c2..e99e839c4b 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg index 3a2cb07bd1..c139944454 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 1 diff --git a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg index 3119dc6139..2f128e3d03 100644 --- a/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg index f873d577d7..31ee493a96 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg index 3eb242372e..0bfcab0d56 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg index 65e6e3b18e..8641c308e2 100644 --- a/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg index 796de0a70b..68ae155116 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg index fee2e03376..b2a552fd6d 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = -1 diff --git a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg index bfbcb68eca..6cae3ed0c7 100644 --- a/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.4 weight = 0 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg index da52676e53..98e38218bf 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg index e4b64bc6dd..adc22194ee 100644 --- a/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_CFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg index 2d2411a178..aebdb06130 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFCPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg index 2b81e1bf5c..8aa9547507 100644 --- a/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_GFFPA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg index b1191d4a49..ce70d9f0ae 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg index b38068f681..b2f5d884e1 100644 --- a/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PETG_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg index ac516c9182..341882ec89 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Draft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg index 7141c80b65..f32c712717 100644 --- a/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.6_PLA_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.6 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg index 30dc909d48..62f08f0fbf 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg index 2fad19c793..ae09fb76b9 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg index 29a059069b..d0278e9aba 100644 --- a/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg index 504681900f..6c350fda11 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg index 9916790871..63c85b8925 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg index 9197ac19ea..1295ec2f39 100644 --- a/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg index 650c292701..61b24c7dcf 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg index e97ebb3a2b..8868e8b830 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg index 23d6bb0ee5..81b6428de0 100644 --- a/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg index e833d7f132..1f9f81521a 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg index fe21da3107..67e253c91f 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg index 40970b649c..37e88a07e8 100644 --- a/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg index c889900b38..e0b2e466dd 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg index bef9ca1bbe..7c23b1126a 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg index bd78aaee1c..cbf5f19548 100644 --- a/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg index cf03a5eef0..4e49585fe6 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg index 279bf1b9cd..7b7f595d7a 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg index bcb84f17d2..4fe0597a2a 100644 --- a/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg index 846f1debc2..43b7a8ae9f 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg index ca74c20bbc..2809044462 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg index 5397b2ffd6..34e4a56325 100644 --- a/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg index e89de5246f..fe0f36a9d3 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -2 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg index f14bf32f35..892afb7606 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -4 diff --git a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg index 19b419068a..1698e67396 100644 --- a/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/liquid/liquid_vo0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = VO 0.8 weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg index 909a8cebee..9eb1bbcc13 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg index 7ed1077b3e..d6359b1c57 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg index 449deae2ad..8ce925d72b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg index 5473b935f6..75fecb5445 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.2_generic_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg index 0a20b2fbf1..64866a017e 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg index 21a69ce7c2..f0486cccbd 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg index d0f709d405..ff85ab5fac 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg index 7bb2651f33..91c2411938 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg index bb773464c8..f968c5b3f2 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg index e355bd25b4..cad0707499 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg index 617821370a..21a665f725 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg index 84339d288a..bf97d087c4 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg index 69869e3fd6..ff4f4d09c3 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg index a51303702c..ab4ed581ac 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg index 6dda11cc51..7f49cebd28 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.4_generic_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg index ad87dd1196..ad5e31db16 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg index df5df7cf6a..5b5962083b 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg index d2a4c50817..3bddca499e 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg index 097f8d4eca..9220f2b609 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg index d30b3f83c5..22b2ca2f9f 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.6_generic_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg index 613a72ae4a..b427d53c10 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg index 19c26a6cc3..2b47dc5f70 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg index 6e81d2d1c6..5eb82fe536 100644 --- a/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_0.8_generic_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg index deabef32a8..3776596d79 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg index fa55dbe427..d6b32cd960 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg index 3d4f20932a..b363cbe654 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg index a5b2708995..387d8a6abe 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg index fb492bda7b..623b2c36bd 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg index e6f942ff5f..8600a348f3 100644 --- a/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg +++ b/resources/quality/lnl3d/lnl3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg index c0ad2d4f36..434adeb9bc 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg index c617b11b87..816f4ed5b8 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg index 3707ac77ff..c75672b1a5 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg index 64a55d3c0a..ac1dedaa89 100644 --- a/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg +++ b/resources/quality/longer/ABS/longer_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg index 940dddc62b..4e599fe82a 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg index 175bcd85d7..47f30c756d 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg index e4fdecd332..baedfa19b2 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg index c11539a7fe..08dc99aba3 100644 --- a/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg +++ b/resources/quality/longer/PETG/longer_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg index 47077570bf..d4f8487732 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg index 49e6e755c5..b7d60cb4e1 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg index 3b57ab093a..85aac0a778 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg index 84ce5bc92e..ae30cec46b 100644 --- a/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg +++ b/resources/quality/longer/PLA/longer_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg index a9c094251b..a0218a3d3c 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg index fccb8288ed..560536cc9b 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg index ea294530e0..17e190800c 100644 --- a/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg +++ b/resources/quality/longer/TPU/longer_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/longer/longer_global_adaptive.inst.cfg b/resources/quality/longer/longer_global_adaptive.inst.cfg index fe9c855ded..58b1d90b47 100644 --- a/resources/quality/longer/longer_global_adaptive.inst.cfg +++ b/resources/quality/longer/longer_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/longer/longer_global_draft.inst.cfg b/resources/quality/longer/longer_global_draft.inst.cfg index a93d4aa255..391fcaf065 100644 --- a/resources/quality/longer/longer_global_draft.inst.cfg +++ b/resources/quality/longer/longer_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/longer/longer_global_low.inst.cfg b/resources/quality/longer/longer_global_low.inst.cfg index 3e38f97bef..c607844daa 100644 --- a/resources/quality/longer/longer_global_low.inst.cfg +++ b/resources/quality/longer/longer_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/longer/longer_global_standard.inst.cfg b/resources/quality/longer/longer_global_standard.inst.cfg index c8ee6fdb8e..ec2267d9a1 100644 --- a/resources/quality/longer/longer_global_standard.inst.cfg +++ b/resources/quality/longer/longer_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/longer/longer_global_super.inst.cfg b/resources/quality/longer/longer_global_super.inst.cfg index db208391a3..e3f6f8b047 100644 --- a/resources/quality/longer/longer_global_super.inst.cfg +++ b/resources/quality/longer/longer_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/longer/longer_global_ultra.inst.cfg b/resources/quality/longer/longer_global_ultra.inst.cfg index 7bf07f7c85..5193804756 100644 --- a/resources/quality/longer/longer_global_ultra.inst.cfg +++ b/resources/quality/longer/longer_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg index 5afe35de2c..ae6ffefc81 100644 --- a/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg +++ b/resources/quality/makeblock/makeblock_mcreate_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg index 6313dcb6be..c6b91530a0 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg index 37eb3c1762..c1bac5adde 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg index dc2a3dd90f..d5414bb745 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg index 35498f1237..6e49a2da88 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg index 6ba4fa8e52..39eb22709f 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg index 87bfea805d..418a730915 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg index 238f45df16..ba6ca1da69 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg index 44667c79e0..a7cbda88e7 100644 --- a/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/abs/malyan_m200_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg index 4593a16ed9..e7ce115d42 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg index 0027871b23..84ac35c2bb 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg index da25e42b6c..8ac11414e4 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg index dd8b85c1ab..8a40614879 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg index bb9b810157..66f4ab2d01 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg index faa108a83c..d294a3361e 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg index 528b877958..ce89e1441c 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg index 7402b0f81b..a280843ae1 100644 --- a/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/malyan_m200/malyan_m200_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg index 259b34ef55..4f3efe747e 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg index caf8ecbff7..c70e96b4e4 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg index 7dbc1778d0..67d82f4384 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg index 9bdfb41533..a47f41bbbc 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg index 6871e99b76..a01d89eeff 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg index a5f982f2be..88a0c8f283 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg index 33f99e5fcb..c9222366fb 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg index 46480c1bf7..7c3a3924f1 100644 --- a/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/petg/malyan_m200_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg index 82787afe54..7d97c17951 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg index 642d0810e4..ea4b3f204d 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg index 0695f9fe57..56e8809472 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg index 18a65ba0c3..9d9ec47662 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg index f3a017087c..682e41e7cf 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg index e9c279967e..71701ee549 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg index 1a74e53aaf..adf939caf4 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg index 99291c7ffc..6f28c04d7d 100644 --- a/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg +++ b/resources/quality/malyan_m200/pla/malyan_m200_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg index 7822cc565b..6f8c13366f 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg index 72681de427..8bc43c4592 100644 --- a/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg index 53fc6550b0..c792469024 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg index 26dcce8ed6..5dcd63ca52 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg index 4695644f2d..b17ccf3375 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg index 42487ec3e6..6b0bd19883 100644 --- a/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg index 3c1359073d..9ea41e6801 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg index d1a28a7653..712046d6d2 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg index 1e7c29a347..f937a32438 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg index f8211f3d41..0d5593c2d6 100644 --- a/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg index 3785771f47..28af502d7f 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg index f0af9dbc34..a4e45c1974 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg index d0d1a4ccf3..f4979e0b26 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg index c5ced7c9a5..29d137ae07 100644 --- a/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg index 7b7a024bf0..1cfa41d788 100644 --- a/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg index 61160d6bb0..6bac5fa296 100644 --- a/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg index acb60b6c9f..49ee6863ae 100644 --- a/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg +++ b/resources/quality/mingda/ABS/mingda_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg index 35dec16918..16bda473e7 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg index 53a2bc13b3..5cec8c8e1c 100644 --- a/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg index 6c126047ad..ffb5e647f8 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg index e6e118e21f..45c827f4f2 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg index 0b5acb5a1d..cc7db825d9 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg index ebb706385c..b6452c4785 100644 --- a/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg index ee0e96899d..22a4547e9d 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg index 8a8ee114e4..c8259c2a2e 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg index 37c01e84a1..698a51399f 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg index 92efaca3e6..fa4caa5dd0 100644 --- a/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg index cedcc4aee8..9e346a23f3 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg index 5a47d08a6e..3b9f1cf729 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg index ee9baa433e..4fc6dbd5df 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg index 4505d985f6..b52373b64e 100644 --- a/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg index 1b6c6b9a64..9b6c87130c 100644 --- a/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg index a69338d3d9..3b32bfcff9 100644 --- a/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg index a4519d007e..8abe4d14a5 100644 --- a/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg +++ b/resources/quality/mingda/PETG/mingda_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg index afa0fab2f1..3d0998062f 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg index 9157f938cc..93db70877f 100644 --- a/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg index e74c862004..622a00fdd9 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg index 0b4e80354e..1dbd7530dc 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg index 09c7cbeb8a..82fffa2b2b 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg index 2b37626e56..9e2c23b3b9 100644 --- a/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg index b23b08c986..96ba4aa48a 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg index dc73a650d5..0a10870cde 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg index 2e10d594bf..3ef5663a2f 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg index a8f4d0d870..8aa478c855 100644 --- a/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg index 516fd69b22..14fe84090f 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg index 9f620c26e6..fd8e80d1b7 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg index 26a6e27821..fe653dd534 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg index 25155655e7..117829820b 100644 --- a/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg index 494357a91d..b3656b260d 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg index 7d870437bf..d2192c93b8 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg index f102e574be..200b4b4f51 100644 --- a/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg index 70842228e2..bc7ecb6e54 100644 --- a/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg index 05cf9e0bbc..a557125216 100644 --- a/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg +++ b/resources/quality/mingda/PLA/mingda_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg index 1967d1be9f..62730f21f8 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg index 2c1cf471df..d736bc9cac 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg index ff3f81c034..02df3acd53 100644 --- a/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg index 77e839eaff..2a88795d18 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg index 442065f509..d4569c84e0 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg index ac3882c1fc..8e53724810 100644 --- a/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg index f705eea1cd..f9ebda3a7a 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg index 7626ff56e7..aa3de9134d 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg index db3124027b..943279494d 100644 --- a/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg index 0dc6d71649..9d1d752e9b 100644 --- a/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg index f34b342364..4760e52967 100644 --- a/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg index 7b410aea17..c13d7d5377 100644 --- a/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg +++ b/resources/quality/mingda/TPU/mingda_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/mingda/mingda_global_adaptive.inst.cfg b/resources/quality/mingda/mingda_global_adaptive.inst.cfg index 79435798a9..f51c13145c 100644 --- a/resources/quality/mingda/mingda_global_adaptive.inst.cfg +++ b/resources/quality/mingda/mingda_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/mingda/mingda_global_draft.inst.cfg b/resources/quality/mingda/mingda_global_draft.inst.cfg index b17f84f742..fb7e5b59dc 100644 --- a/resources/quality/mingda/mingda_global_draft.inst.cfg +++ b/resources/quality/mingda/mingda_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/mingda/mingda_global_low.inst.cfg b/resources/quality/mingda/mingda_global_low.inst.cfg index 723fe0120f..0b7d727c6c 100644 --- a/resources/quality/mingda/mingda_global_low.inst.cfg +++ b/resources/quality/mingda/mingda_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/mingda/mingda_global_standard.inst.cfg b/resources/quality/mingda/mingda_global_standard.inst.cfg index e17f3bcd93..d5b5cefaa3 100644 --- a/resources/quality/mingda/mingda_global_standard.inst.cfg +++ b/resources/quality/mingda/mingda_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/mingda/mingda_global_super.inst.cfg b/resources/quality/mingda/mingda_global_super.inst.cfg index 64fd4936cf..5a638cf34c 100644 --- a/resources/quality/mingda/mingda_global_super.inst.cfg +++ b/resources/quality/mingda/mingda_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/mingda/mingda_global_ultra.inst.cfg b/resources/quality/mingda/mingda_global_ultra.inst.cfg index fb7385fab1..3ca24c1c9d 100644 --- a/resources/quality/mingda/mingda_global_ultra.inst.cfg +++ b/resources/quality/mingda/mingda_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg index 3702314162..6b74b6fa19 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg index 1f66a09b62..bb3cec8c41 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg index a155a520d3..e8fc9c4461 100644 --- a/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg +++ b/resources/quality/mixware_hyper_k/mixware_hyper_k_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg index e21090c600..93dcf61973 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg index 6414ce4589..220fd75de5 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg index 1248585ec4..83f9aff873 100644 --- a/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg +++ b/resources/quality/mixware_hyper_s/mixware_hyper_s_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg index e9859c9cb7..408f8b28dc 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg index 0bfc4bf338..417a1c56c5 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg index 23754001ed..bce800fc56 100644 --- a/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg +++ b/resources/quality/mixware_vulcan/mixware_vulcan_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg index 2d30739115..f63103ae44 100644 --- a/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg index 00d6e94cb4..99a00a5b18 100644 --- a/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_extra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg index 7b2ca97af3..ce8416fa61 100644 --- a/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg +++ b/resources/quality/mixware_wand/mixware_wand_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg index fd19842b62..361afc3934 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg index d7df5c5ff2..cbc6a5665f 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg index fc1e193f97..3303df2e8b 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg index 289722633f..3876dfa3ed 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg index 26caf03d8f..5cf3578dd0 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg index 0f305d4835..e15625974b 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg index ed96f8a8d7..f8f647f519 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg index 0272e99c0f..36067295e4 100644 --- a/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/abs/monoprice_select_mini_v2_abs_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg index 018ed5f7d9..018531bf9b 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg index 76118d401e..931d9a63c5 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg index 99cfa4cea8..cad26c8654 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg index d015825894..a48ce30151 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg index 39b0ab1f79..14647a72cb 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_SuperDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg index 5cf1aa4219..0774028583 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_ThickerDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg index 5d5e352eaa..40cab96850 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_Ultra_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg index daa141e464..4521931668 100644 --- a/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/monoprice_select_mini_v2_global_VeryDraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg index 2f8d8195b4..de452037af 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg index 96d771d5a7..37b1c8c2af 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg index 19c4743970..09a3b185a3 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg index 218b8c0769..494a5dd3b6 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg index bc4f11b1e0..1fd1d465d0 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg index ad4b1b467b..0918f4f69e 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg index f9c80b0079..7940e0212e 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg index 14784247dd..79ceff4c1a 100644 --- a/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/nylon/monoprice_select_mini_v2_nylon_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg index 151e21fdd5..dbbaf3ce69 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg index e0735cb0ff..1e51d49d7f 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg index 6184ba86b2..2067749bcf 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg index 2a8eeb3dd4..278687eac0 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg index e7e772f85c..7d845b9633 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg index 300db25f2e..c2c8567b58 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg index a3d8287a53..8244f22137 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg index 376782ed63..f92fbd2497 100644 --- a/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pc/monoprice_select_mini_v2_pc_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg index 6dda9f5f85..0082a60494 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg index e67e012831..314eaa5846 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg index d449cb1f50..6492df6660 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg index fe8bebaea0..08372df849 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg index 00684445f6..d335287853 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg index eaa2f3c8b4..b6f3e85263 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg index b89c9ca342..c3de29bac9 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg index 7da4ee15c2..3e005c9744 100644 --- a/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/petg/monoprice_select_mini_v2_petg_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg index 1efd7a48ad..09585c2e44 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg index 1ac637cad1..3189654c83 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg index c18c95f385..191c0da554 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg index 7ec5bbab4e..678c73c432 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg index 74bd8f8aa4..85a9ec4c57 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_superdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg index a60be7f5f6..bfec3086b1 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_thickerdraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = thickerdraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg index cb94eab696..b4c6340d03 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg index 8c2b8b5f67..e2dfaa87e0 100644 --- a/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg +++ b/resources/quality/monoprice_select_mini_v2/pla/monoprice_select_mini_v2_pla_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/normal.inst.cfg b/resources/quality/normal.inst.cfg index cdfedcd6a9..4ca290b0b5 100644 --- a/resources/quality/normal.inst.cfg +++ b/resources/quality/normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_A.inst.cfg b/resources/quality/nps/nps_ABS_A.inst.cfg index 8788f2d15a..424bef8320 100644 --- a/resources/quality/nps/nps_ABS_A.inst.cfg +++ b/resources/quality/nps/nps_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nps/nps_ABS_B.inst.cfg b/resources/quality/nps/nps_ABS_B.inst.cfg index c73992eb31..c059c85a49 100644 --- a/resources/quality/nps/nps_ABS_B.inst.cfg +++ b/resources/quality/nps/nps_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_ABS_C.inst.cfg b/resources/quality/nps/nps_ABS_C.inst.cfg index e4b974e03b..118fe26f91 100644 --- a/resources/quality/nps/nps_ABS_C.inst.cfg +++ b/resources/quality/nps/nps_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PC_A.inst.cfg b/resources/quality/nps/nps_PC_A.inst.cfg index 811df9ffdc..9069d0c55c 100644 --- a/resources/quality/nps/nps_PC_A.inst.cfg +++ b/resources/quality/nps/nps_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PC_B.inst.cfg b/resources/quality/nps/nps_PC_B.inst.cfg index d972b6d5e6..8531ec9536 100644 --- a/resources/quality/nps/nps_PC_B.inst.cfg +++ b/resources/quality/nps/nps_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PC_C.inst.cfg b/resources/quality/nps/nps_PC_C.inst.cfg index 1c91d7f319..d6640dfaa7 100644 --- a/resources/quality/nps/nps_PC_C.inst.cfg +++ b/resources/quality/nps/nps_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PETG_A.inst.cfg b/resources/quality/nps/nps_PETG_A.inst.cfg index 098fd7b0e7..718f70be76 100644 --- a/resources/quality/nps/nps_PETG_A.inst.cfg +++ b/resources/quality/nps/nps_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PETG_B.inst.cfg b/resources/quality/nps/nps_PETG_B.inst.cfg index 9121ce0cc8..7d98fdff93 100644 --- a/resources/quality/nps/nps_PETG_B.inst.cfg +++ b/resources/quality/nps/nps_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PETG_C.inst.cfg b/resources/quality/nps/nps_PETG_C.inst.cfg index 891103acbb..9ccde0b30a 100644 --- a/resources/quality/nps/nps_PETG_C.inst.cfg +++ b/resources/quality/nps/nps_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nps/nps_PLA_A.inst.cfg b/resources/quality/nps/nps_PLA_A.inst.cfg index 302e03b8d1..84ca248e04 100644 --- a/resources/quality/nps/nps_PLA_A.inst.cfg +++ b/resources/quality/nps/nps_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nps/nps_PLA_B.inst.cfg b/resources/quality/nps/nps_PLA_B.inst.cfg index 2578ee3920..eea04faa95 100644 --- a/resources/quality/nps/nps_PLA_B.inst.cfg +++ b/resources/quality/nps/nps_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_PLA_C.inst.cfg b/resources/quality/nps/nps_PLA_C.inst.cfg index 7db1e3938a..f2201aaa97 100644 --- a/resources/quality/nps/nps_PLA_C.inst.cfg +++ b/resources/quality/nps/nps_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nps/nps_TPU_A.inst.cfg b/resources/quality/nps/nps_TPU_A.inst.cfg index 8bc9697e17..aa991dda31 100644 --- a/resources/quality/nps/nps_TPU_A.inst.cfg +++ b/resources/quality/nps/nps_TPU_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nps/nps_TPU_B.inst.cfg b/resources/quality/nps/nps_TPU_B.inst.cfg index f6131d5c72..7f97d091ca 100644 --- a/resources/quality/nps/nps_TPU_B.inst.cfg +++ b/resources/quality/nps/nps_TPU_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_TPU_C.inst.cfg b/resources/quality/nps/nps_TPU_C.inst.cfg index 9004a7aafb..73d778a077 100644 --- a/resources/quality/nps/nps_TPU_C.inst.cfg +++ b/resources/quality/nps/nps_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nps/nps_global_A.inst.cfg b/resources/quality/nps/nps_global_A.inst.cfg index b406f96b95..f64458799b 100644 --- a/resources/quality/nps/nps_global_A.inst.cfg +++ b/resources/quality/nps/nps_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_B.inst.cfg b/resources/quality/nps/nps_global_B.inst.cfg index 87b79e4185..7fab0da0a9 100644 --- a/resources/quality/nps/nps_global_B.inst.cfg +++ b/resources/quality/nps/nps_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nps/nps_global_C.inst.cfg b/resources/quality/nps/nps_global_C.inst.cfg index 55e03f04bf..b7dba54f92 100644 --- a/resources/quality/nps/nps_global_C.inst.cfg +++ b/resources/quality/nps/nps_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg index c62172e271..2e685b8690 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg index 6eb625350a..226a3ad8d6 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_e.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = Engineering -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg index dd3303ff21..bc178921d2 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg index 79a93c2cbb..7c6dac2ed5 100644 --- a/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg +++ b/resources/quality/nwa3d_a31/nwa3d_a31_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg index 23a5398377..bf5c7c2a76 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_best.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg index 9afbe1c9fa..f5cf4f9a39 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg index 0282588b31..4727a895a0 100644 --- a/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg +++ b/resources/quality/nwa3d_a5/nwa3d_a5_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg index 2f7e5731a7..74ebf6f732 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = 3 diff --git a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg index e5fd23d4f2..75f8da63bb 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg index 11145f3151..c49cdb22d3 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_extra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra_high -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg index b3aa4e2cc8..653b1ddb75 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg index 91eb5d4642..21ef911356 100644 --- a/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg +++ b/resources/quality/peopoly_moai/peopoly_moai_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg index b53926d84e..ddea162ef2 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg index 5ba1720f7c..fbad9869e0 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.2_Nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg index f773bf87c6..ef537cc55a 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg index 7ad5b63828..756e02d74f 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg index 18d481d92e..ea50cd2355 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg index 094f815c57..3f56b1d806 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.3_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg index ef6926b4d3..a205ba8501 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg index 0de97f8576..46d648bd06 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg index f399287ece..5d752bd478 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg index e828bbc5ec..9fec85abd3 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.4_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg index 425efe8bb7..d53174a959 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg index 504e601637..dcc687e8ef 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg index 599dfa2119..26f02d52f0 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg index e337cf021d..9ecf54405b 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.5_Nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg index 5037ea9877..7db7eff41a 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.6_Nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg index b11d0cbbfe..bb7f71a0a1 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_0.8_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg index 1523fe7ace..fb9688fe51 100644 --- a/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg +++ b/resources/quality/ratrig_base/nylon/ratrig_base_1.0_Nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg index 13f3d3c6b8..44a63d3ddb 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg index e1e0e68add..b9172cd9ae 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg index f45f4f0db4..b73665d597 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg index f00cfe1f18..bd414a74b2 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg index 4c49ed47cc..28492c98f5 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg index 6c085cf045..5b53aa132f 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg index 1436293e32..c581ee3975 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg index 77a5b093b0..a785a5c156 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg index fab2b3f6a0..4b8685aa22 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg index a22e557023..718f632560 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg index 7d53f5a735..54c90eba50 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg index bc7763e69a..97ef282678 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg index f50d26c026..955adc3a42 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg index 32a6e79f73..ccd9e4842f 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg index cb789901f7..361339c146 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg index 1ff77f2028..58729be139 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg index 8585739084..af5e002f0a 100644 --- a/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg +++ b/resources/quality/ratrig_base/petg/ratrig_base_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg index 9d8ef6a9a3..053cd8ef61 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg index d0a93f1beb..62733eff4b 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg index 8e7e337fa5..435f868515 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg index c6b8308b87..844ea4669f 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg index 67d98a3bf6..1ee81de9f1 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg index 3bce948dfe..edcbe48e0f 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg index d9647022e4..a87dd07771 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg index 1471709c21..f6d5404870 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg index 6434e24870..9062d5b4ef 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg index f0230d0bb6..e58e73c642 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg index 4f3739f6be..e75f007394 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg index d6338d2323..ba69a7481d 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg index 7ea3bc2e74..e32079b9b6 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg index 3391515bef..9b6b6b9dca 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg index 425098058e..ede3147c54 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg index 82ae46b93c..9a7c58061a 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg index fbbf5178a0..3e0525e2bc 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg index 8f2413e7ea..0bdd507a22 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg index 24232e97e5..f35818bbe4 100644 --- a/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg +++ b/resources/quality/ratrig_base/pla/ratrig_base_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg index f603ac2f49..e8fbbd099a 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg index 0f1ed527c4..b6fb4bd325 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg index 282bffac12..43a63f604f 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg index 34963f44d6..133dda9ae4 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg index 0f4c9857c9..dbf6ed5160 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg index f9c1935ecb..979f3e37bb 100644 --- a/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg +++ b/resources/quality/ratrig_base/ratrig_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg index f661ed4414..fc1c582afc 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg index 11e12d4fb1..1aa0f7aeba 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg index 8a7457fa0a..6c3dc04eb1 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg index 199338b92a..f762ee0228 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg index cd45e2a4a0..71280e4b47 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg index ae00c536ff..0656726055 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg index 20be989072..e3dc1acc26 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg index 85fca68f64..a9b3dfabcc 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg index b85d104141..3a59962d87 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg index e17edf408d..11957a3879 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg index 7b663dd97f..2f821b285a 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg index 424b52f5bc..2535e4149f 100644 --- a/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg +++ b/resources/quality/ratrig_base/tpu/ratrig_base_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg index 825999e09e..9bca1bdc2e 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg index e708aa36d7..6379b83c41 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = good -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg index 7e18816e99..7c03c4a398 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg index caec94d742..1fa42ec2b6 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg index bb58f8a607..b398584585 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg index 3be043ba9d..2957ae693c 100644 --- a/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/abs/rigid3d_base_abs_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg index 6a221187b0..fde093afc7 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg index 7f36e8b488..9e05f0f92d 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = good -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg index 8826bcbc1a..30f7bae22e 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg index ebedcfe46b..3797b9bb7d 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg index 5a65e5a3dd..09f1b8f895 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg index 2031e51928..d1bf92d572 100644 --- a/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/nylon/rigid3d_base_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg index 5e9ef8f653..88a1f857a0 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg index 6314c5cf47..7ee62aa0af 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = good -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg index 2824c346f7..7efbf394a1 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg index 28dbc36370..e4b668f676 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg index d3ed18ec56..68a2bb2fe4 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg index 54ae63ed9c..ef90d33d47 100644 --- a/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/petg/rigid3d_base_petg_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg index e5800f7630..523f5b6fd9 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg index 662344bcfd..5faf074006 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = good -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg index 20ad51f84c..94dae61839 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg index d3ef33dae4..e088953dde 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg index dd1c2c1a40..b4aa515a5f 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg index b57e9643e7..1f99b8783f 100644 --- a/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/pla/rigid3d_base_pla_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg index 7b9edd4240..1bb6277b65 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg index f110e2ac11..2928c7a07b 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = good -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg index def57b4251..fed1bef0ff 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg index 84f85042f7..ae32182096 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg index 692c3f2e81..2dc52671e2 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg index 1487279aee..9775d83e4f 100644 --- a/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/rigid3d_base_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg index 465d18fef6..ae75a80fa0 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg index abf8313328..e1a96a2692 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_good.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = good -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg index 0686d9d66c..80636a2bb7 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg index 26238b9fc9..7b73ec6b59 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg index 2ef1bee0a8..4cdd07560e 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg index debf198a7e..51119df241 100644 --- a/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg +++ b/resources/quality/rigid3d_base/tpu/rigid3d_base_tpu_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/skriware_2/sk2_advanced.inst.cfg b/resources/quality/skriware_2/sk2_advanced.inst.cfg index dd30149d02..22fa506571 100644 --- a/resources/quality/skriware_2/sk2_advanced.inst.cfg +++ b/resources/quality/skriware_2/sk2_advanced.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/skriware_2/sk2_fast.inst.cfg b/resources/quality/skriware_2/sk2_fast.inst.cfg index 6d41a98b92..38c0d734b3 100644 --- a/resources/quality/skriware_2/sk2_fast.inst.cfg +++ b/resources/quality/skriware_2/sk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/skriware_2/sk2_precise.inst.cfg b/resources/quality/skriware_2/sk2_precise.inst.cfg index 1372013ad8..954aad0f9f 100644 --- a/resources/quality/skriware_2/sk2_precise.inst.cfg +++ b/resources/quality/skriware_2/sk2_precise.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = best -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg index 0b62a1385c..26d37d5c03 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg index 12106d3e9b..a9bfe4b227 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg index 12e4ec025e..d5d3ae3345 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg index d51159aa75..0dcae15b33 100644 --- a/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg +++ b/resources/quality/snakeoilxy/snakeoilxy_global_strong_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = strong -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg index 572fc08a85..283cbfa4d2 100644 --- a/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg index 8e734798c1..bc11606eb9 100644 --- a/resources/quality/snapmaker2/snapmaker2_high.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg index c2293f55bc..8a35466cd7 100644 --- a/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg +++ b/resources/quality/snapmaker2/snapmaker2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg index defa686635..c61fba4482 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg index 806e83a3b2..eea161a9c0 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg index f68599df66..386a96ad63 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg index 5df799868e..09d2a118bd 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg index e07f978b90..0825c1fdbb 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg index c0227b5b43..9da199314a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg index 4984310577..593efcec19 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg index 38414cee14..118ae046f2 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg index 98f393cb39..2420252173 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg index ccbb661b74..d9289dcd3a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg index 0588caaa20..aef5f04b7a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg index ecd3e8143b..ade2691b79 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg index e489d845a7..9ba4162979 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg index 6e616c299f..f802ee716d 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg index 1f421bdebd..a3e0e900a3 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg index d13758ac17..67f1815916 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg index ecd3e8143b..ade2691b79 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg index 180ef9793c..33fba70f02 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg index ef400d0393..d1f36dfc1a 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg index 229e456c0a..bf23108e41 100644 --- a/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_bowden_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg index e762e8be23..eda32ee318 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg index 80ecf4cd5a..f349095c4a 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg index 88760eddfa..84207f1ec5 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg index ecc9d878af..d1abc1c5ad 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg index e89120e413..ebff60de0d 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg index b3ed5d750d..16a9846154 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg index df9043526e..b903cf33d8 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg index de741e100c..a5c533e99a 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg index 197974f8de..bc1065ff09 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg index ffd6a18e6c..4f262e77fe 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg index 81f5628de5..1fbabae08c 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg index e518eeeee7..c9d3bdb910 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg index 13cb1da608..b82b9d3391 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg index 0d2344258f..fb820b9c42 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg index be6b0a424d..20520fd8e2 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg index 8fb90b1ebf..6f4d707973 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg index e518eeeee7..c9d3bdb910 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg index c1b28d2eed..d45f380255 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg index 63f0f20b9b..2cf8e42cae 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg index 0b2e06b960..e696372915 100644 --- a/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_planetary_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg index 632f8562a0..5183a68b29 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg index 778faab851..987b758522 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg index e41ac67a4b..436567be41 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg index 125944ab7b..a0dc5c0e70 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg index aadae21f2b..adee71f976 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg index 4cdf9e82a1..a1f46e352e 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg index 87d3cbaba8..999418b748 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg index 71a71c2074..41e99c188b 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg index a7e7c68832..d8ab908d4e 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg index d0e96ddf9e..bfe53c5540 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg index af21641a94..badaffc1a5 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg index a48585cceb..04ac0744cd 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg index 6cd9377e7f..3c4ed0e3e8 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg index 0bf2ad87fa..7958fd3e89 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg index 0b112bb475..00cffbcb24 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg index 924e14928c..138cc19654 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg index a48585cceb..04ac0744cd 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg index b9a346b74c..4dba9e0871 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg index 9575468f22..536de12a18 100644 --- a/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg index 19249525d6..e99915b1f9 100644 --- a/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg +++ b/resources/quality/sovol/ABS/sovol_titan_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg index 9263813e0f..b7b28de03b 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg index 457c4557ed..0ed0ebc96a 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg index a5b0dd141c..37f3131f9d 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg index d15b92b2db..4715ce7f68 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg index 0198bb31d1..a8c27e761d 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg index d7a1c155bd..6f731a5e20 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg index e46a0fc9e7..beb7dd8dc8 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg index b5865b796f..8386b640ea 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg index 909887f734..189703c3cb 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg index 1e77f58d77..9afeae9bab 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg index 53dab10238..a5930aed6e 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg index 2309c3d80a..db6ec9754c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg index f42e9ed165..e6d6b62b84 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg index 68ed0f68bf..6b5488a188 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg index 52445d8e9c..5796c6f47d 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg index 02cab8fbed..c139fd5950 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg index 0e17e9b5ea..840d55bb6c 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg index 41f5bd56ed..62b6ba1421 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg index 3455b63eae..8e476f43b2 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg index b6afb89877..f949e2b0b6 100644 --- a/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_bowden_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg index d73fcd987d..02c3751825 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg index b1d8446a8a..2b34faf385 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg index 300ff8a9ff..a60633020c 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg index f2ccdbd5ca..e9741b3089 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg index 58a1f4d8e2..4c0c30ec6f 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg index 2e330c453e..5a0ed1dccd 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg index eeecf62b03..011ee0af68 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg index 4ec7b7a412..a963fbe864 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg index a1c0e48cba..bf7165e762 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg index 7808a3da9a..c6447be750 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg index 33e1e1dc64..1d4e678300 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg index b7f329a98c..1aa649176a 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg index 0ec707bb86..30556fb496 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg index 8a472a5f71..ba2f122ebe 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg index 093963d94b..50c8f0fefe 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg index 28408b23d8..5041d67ec6 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg index 79ecbb7de7..a2e72a830d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg index 1e04a9ee43..b1601ac7c0 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg index ea145cbc74..cbeee0b64d 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg index 550bdd503b..fcdf4bf8d8 100644 --- a/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_planetary_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg index e38455850f..b2fba4c262 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg index b221a2fb6f..a469c1e781 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg index 9bd2454185..5ec345c59e 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg index fc823efb6e..d0b6cd4c68 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg index 23504f5132..35b033b9e7 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg index f82812e3a2..1ecb0a394a 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg index d0e2ca11be..6a382ac4e8 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg index cde88b0333..9dbf96ee84 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg index 58d1ddf5f0..5a99db03af 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg index ed2f53f573..8ea12fd7fb 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg index 25751681af..02d5f80f8f 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg index e9ff5631f3..3343f682fd 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg index 6b6193ef49..0386efa22d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg index e60d7aad26..5ff8402d05 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg index d85791b9e6..fe4c49ef57 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg index 266459a784..7654dd257d 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg index 4eac8df6af..70fe5757aa 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg index e494138b71..04b7b02fa6 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg index b05ccd072d..ca718ae997 100644 --- a/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg index 155086bbed..d336e97132 100644 --- a/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg +++ b/resources/quality/sovol/PETG/sovol_titan_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg index dfb6644231..fde70b5522 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg index 1bba7ee004..376e22958a 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg index 8ceefff1ce..84bd73b734 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg index d99e7a9187..b18bc27683 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg index c76bd93eb5..8e1bdf336c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg index c008efd6a4..b0e8ce21f0 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg index 2af72b0eb9..155f381aa1 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg index cda9ceed05..52f5be950d 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg index 67303a344c..4913efec63 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg index 480ce19bd2..001481f2c1 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg index 818ba54d18..b33e582c0c 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg index 0d5763d654..6011c6e54a 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg index 462fe35ca8..0161140be4 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg index c69290b75c..4b4bd5bca9 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg index a842730f71..5c52034ff7 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg index 3a30124ba8..be7aa5530e 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg index f6d093bcdb..5eb45843fe 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg index 0caf6fde44..014a03728f 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg index a75db5305a..ad4ad195da 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg index 5156a79dbb..e1fa554675 100644 --- a/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_bowden_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg index e79df78c54..5a48811c61 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg index 648195d2cb..2d43f78ee7 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg index fec5480e93..73791665c4 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg index 7ab1a6eb90..13121fc263 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg index 2945d9d3fb..7a8ad27080 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg index 61e9343536..813dba5e17 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg index 66af6a6e6c..0d8b6ffcd5 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg index 36b56f53cc..a85197aa5c 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg index 6e683d4912..bc1e15388b 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg index 05d13d7f09..43e068348f 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg index 25062507a1..c121be1f97 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg index fc974c0d23..9c2a1b683b 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg index 7642a661fc..868273c8eb 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg index a4d08915b2..d7accae2c2 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg index 56c4f6f535..f0151c9512 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg index 77260e44b4..584c4c84a1 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg index 9d3e897f1f..a921710285 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg index 06468f867f..266dda9607 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg index 49b1a1da83..aac08f8144 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg index f4d2249bea..b94d997313 100644 --- a/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_planetary_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg index afd059515d..caf0bc9639 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg index 935acf8769..36c56ed4d4 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg index 4b1bd7186b..1145265ddd 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg index 3e8c01bf29..137d209697 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg index 9b0a17a246..8b2cdc55a2 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg index 8a4dd64c3d..5c160f4205 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg index e5ffd6c0a1..170343aa13 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg index 6fac81f060..ba2ab881a9 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg index 0d72cd1018..2b45154b98 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg index 937006edf2..55d7ec5bbf 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg index 90ff99d94b..a13248a32c 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg index 3a90afe430..256fafbb48 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg index c50ff9be24..e5fb0d73b1 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg index 9c2f27d150..8b3638f6d0 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg index 7b9550dd25..66fd17ad9c 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg index 656e646d0b..5c6c674ae7 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg index 789646f896..aa27f0dcc4 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg index f52221e9ff..52bbab2ec2 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg index 092849b63a..b8f982aa7e 100644 --- a/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg index c2acac8b77..8659323383 100644 --- a/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg +++ b/resources/quality/sovol/PLA/sovol_titan_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg index ed82bbeba1..6f3a8a971c 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg index e797e28f77..fbede83e06 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg index 0ef5dab250..37165b41dd 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg index 6f8296972a..b727b85947 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg index 05646b59f7..8786cbcc13 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg index f73639bed5..cb49af304d 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg index 0d65a9e716..8fe0bc614d 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg index 0f98f0af00..7ac0f13e45 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg index f3567ed5cd..9086d5dc1e 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg index f485682a3a..cf520f518d 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg index 805f8029de..ebcae9d923 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg index 108d25cc2b..114cebaa12 100644 --- a/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_bowden_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg index 3be81fcb24..35d12b0136 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg index 89bee3e6e9..a48b95ea7b 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg index eff1ec18de..8322d4a721 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg index ae6e439d1e..06efab2ad4 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg index fce3d5d5d3..52f72437a6 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg index 14143a43c3..01bbc9a71b 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg index 3a59c9cc4f..e4406fa612 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg index 25bb9a52ce..f71a655f61 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg index 56cceef368..778a2ca7fc 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg index 06e8e1caf9..fdc103f3a2 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg index db6777c29e..fa6c273008 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg index 1ae1708d17..e8c9bc98b6 100644 --- a/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_planetary_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg index 40c868739e..5957631366 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg index 7c4e765659..17c68644b3 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg index 7c70bcd2e6..6da8e84f44 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg index 8fb5912308..9b953eab88 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg index 37e25483e9..ee3a9fdf64 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg index 0ab905ddea..9e4f771caa 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg index fd0245d797..3c9d2029af 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg index 16b5139867..affe4f3e31 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg index e6944b6abc..a3f5c2a31c 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg index 1eda8ed9c3..03a56a6f45 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg index 796d50d951..dbb4299a5f 100644 --- a/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg index 45df6d13e1..2bac7d4ddf 100644 --- a/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg +++ b/resources/quality/sovol/TPU/sovol_titan_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg index e9cff77480..31f50d568e 100644 --- a/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg index dd082f5d45..9a2d32287e 100644 --- a/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg index 0286357f65..2884595222 100644 --- a/resources/quality/sovol/sovol_bowden_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg index 05c840ab84..365bb00685 100644 --- a/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg index d4cb00ea43..12adb2aa53 100644 --- a/resources/quality/sovol/sovol_bowden_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg index 90c6235d88..a2a99c5806 100644 --- a/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_bowden_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg index a3239e277e..24cbe887e5 100644 --- a/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg index 2dfe9261bd..7d7118e092 100644 --- a/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg index a26036a9f4..64f1757cf8 100644 --- a/resources/quality/sovol/sovol_planetary_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg index c39b3a47d2..92d2233f8e 100644 --- a/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg index 9e14ee36a5..52b84422a2 100644 --- a/resources/quality/sovol/sovol_planetary_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg index f3ad3f63f2..15195fd21b 100644 --- a/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_planetary_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg index d1bdac7e44..225e9bb0e0 100644 --- a/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg index 7d9574e9c2..5094fd0553 100644 --- a/resources/quality/sovol/sovol_titan_global_draft.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/sovol/sovol_titan_global_low.inst.cfg b/resources/quality/sovol/sovol_titan_global_low.inst.cfg index 2bb6d850a6..bce579f17f 100644 --- a/resources/quality/sovol/sovol_titan_global_low.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg index c799172723..a56f623a95 100644 --- a/resources/quality/sovol/sovol_titan_global_standard.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/sovol/sovol_titan_global_super.inst.cfg b/resources/quality/sovol/sovol_titan_global_super.inst.cfg index 70744f18ad..6976611145 100644 --- a/resources/quality/sovol/sovol_titan_global_super.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg index b159e54f61..2c5003955c 100644 --- a/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg +++ b/resources/quality/sovol/sovol_titan_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg index 15c8c49221..79e6bc7985 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg index fda7548825..2a8a0b152d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg index 8e65f491a4..01c1c3aab1 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg index 5e03710bc4..d5c4fd3fb6 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg index 6c93c716d0..c3c824e07c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg index a7e7d2a872..3354f37851 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg index be60ed117e..958b5cd5f8 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg index bb36ad977f..2c5d77d3d0 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg index a04b859e41..200b3351b4 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg index e80011a25f..fff4919cb3 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg index caca18acb1..cdbd7ae742 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg index 07bcbb951c..36a594f4a2 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg index 692cc0bf7e..ad9e2b5e48 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg index f481caf900..5acefaee66 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg index c19d8120bd..558875f372 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg index 6816682a58..45f2dd838c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg index 49aebe6435..712b06f98d 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg index 8809625bd5..7d7618130a 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg index f76fc17f7f..3fdb412705 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg index d88b9f9aaf..9bc4d6e30f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg index 50143d9504..d17cc04c34 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg index 99364c2edc..827d0d1ce7 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PEKK_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pekk quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg index 65c7532c8b..fcdfac8a3c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg index cc5f154c0b..596931208f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg index 4c55dc1666..521303a1e2 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg index 508999aee5..fa2fdc436b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg index e642ad6f4e..814e0933fb 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg index 04e4543c75..a72676d1f3 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg index 39c32ad622..d91546c66c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg index 59b4b730f3..521a15bd1f 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg index 200201554d..cc34fa5ecb 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg index bac0135e9f..05cf916d8c 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 1 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg index 2fda0cb960..e2c24a367b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = 0 diff --git a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg index 164e5bf494..0e0fc1174b 100644 --- a/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/HT0_4/s3d_ht0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = High temp 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg index 6c0b7ede59..e15710d60e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg index feac83c0d3..45d023f339 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg index adec58532a..78d56e6e5a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg index 4f738ecb9b..0a2233f943 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg index 53cde676c1..7cd1b7b8d2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg index cb4c175488..9f61fbadfb 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg index 25894a7242..a8413ca6ef 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg index ddc47eb6ce..c008d73360 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg index 486503b69e..23afcfd46c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg index 2b595fecad..ff31bf0554 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg index 24f35a4181..d691d0ee79 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg index d4e78fd7e3..1b3162db4d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg index e700994fbc..152e2cde59 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg index c7b53df000..c62e94927d 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg index 09ee00f8d0..340520bd7a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg index 963ee03862..1689f93c42 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg index 8ede6f7f2a..b0a272ad69 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg index 85cf082f99..63c73839f6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg index 94e5093fb5..cd7d670611 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg index 4637550542..ef298323ba 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg index 655e7227db..435e32f48f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg index bae5a7326c..e731712de3 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg index 40459d1d72..c09742aff1 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg index d806f76fb3..b2963f0275 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg index 896a30bb3e..abca67e856 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg index cfdce04458..c9e72ee69f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg index e3056b2754..55779e816a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg index 8e1a632832..0bbfe54642 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg index 69af5bce38..259166de4c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg index 0df714452e..aaee6ab22c 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg index da5e04fe60..857a6ca8b4 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg index b16348cc77..23035c1638 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg index 1594c7862c..55d3d7968e 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg index f0eacc13ae..0bfcab4725 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg index cf3426952c..be36ae2786 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg index 3b28137240..cab0511b27 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg index 444d8edb54..46c168e63a 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg index 43f3672bd5..b772e344b0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg index 57328d0b75..9db25ce8a5 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg index 78f773a4d5..13dffaa236 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg index e4fbbaacdd..2bbae74aa6 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg index 88ffcba8f0..41f3b8f659 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg index 2cff0f12eb..26b0b56b4b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg index 93b086eb72..22aa94f798 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg index a5045af80b..f282d690b0 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg index fce8e2a6f5..755a0d0a1b 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg index fd63382cad..b6fcfecad2 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg index 4bb693a89b..aaf6c4725f 100644 --- a/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_4/s3d_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.4 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg index e3c73b2f18..8dfd60fb4c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg index 30d829153f..6b8466046c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg index 3a1e9db729..8162006351 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg index 7d398914b5..7e054493d6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg index 16198bfe8f..4432f66149 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg index 66a6d4f69a..dfbb2417ba 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg index 65c4d78b54..bc75e0d12a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg index 54e7319457..c4d790d92b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg index cdb7308468..41d0da4955 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg index 867b4a8f4d..93e6bb6c9b 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg index 8fa93b3213..5dedb91f2e 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg index a4d6bc2410..92a3f073fc 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg index b95282909d..0280566e94 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg index 737432c653..b3a7f1ad76 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg index 542a7b3305..42c5e7be1c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg index d9209eca42..a209bbd63f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg index fae31ae3bd..e77fda6bc7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg index 940064d2da..89bff96c92 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg index 4afc1c4fa6..c3c9a3bcba 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg index 07028500c3..2ecbd0f17a 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg index a6e3798cfb..750f3b92c0 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg index cc48cc71b7..edecbfa79f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_Nylon-1030_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_nylon_1030 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg index 4171f8070f..1852cc6b85 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg index 1b628fe5e9..51e68b76a6 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg index b6a063f3a0..2de459a763 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg index ed6f453bee..f1d839d75c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg index 396a85ba31..c840dd76a7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg index a3ac4e486b..42b14717f1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg index 3b4b044ac2..aa49477557 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg index 882513bcf1..978f187eb4 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg index 0447cf7a92..4b759d38e9 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg index 413c4fdc72..0aa01902bf 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg index f1c19a14e4..67897254c1 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg index 389fad0008..a9657f9f03 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg index 5c3cdf0f7b..0f3e602f9c 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg index 151d368a51..b3442f630f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg index 40738389b6..ed5df47d65 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg index a44146afe5..5ca4845680 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg index 68b40d7efa..4c5a3554e5 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg index 34ed767222..eefb50e971 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg index cb9446d6c1..7f8e6a462d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg index ef790cc9ca..151fef6890 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg index 4ec7d54c1d..7d0774e840 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg index 262f796006..cd968b9484 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg index fa9670fe18..7d9cd4de6f 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg index 426b7a2c92..697dc3210d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg index c34110f835..65e911ceb7 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg index 1764c18e02..e55fce0f21 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg index b4287caadd..32bbeff23d 100644 --- a/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_6/s3d_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.6 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg index 92968b1bd9..1c00102fb6 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg index 78a1f47297..e1088fe686 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg index 097c944cc7..bb830dc8a7 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg index 0598a06be0..a129e05088 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg index cdab1d39a9..92ea48e167 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg index 98b4d3ee1b..6b6fbcb11d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg index 503f07b889..d181bb633e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg index e3b485240c..1357a1e268 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg index 2a71e9bddb..459f7386a3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg index 39a078103e..74a68dceee 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg index 77fd69de9f..2d45917bcd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg index 80938dbebb..16535fcd0c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg index 546f6e4c5f..472db15d05 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg index 74f6b45b41..e95157259c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg index a5621900e9..474ad5d29c 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg index 774c1be097..9e087f1673 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg index c4a8b05559..bae86fd11d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg index 27fa20a398..1b9f53e2e6 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg index 943b12b2f4..1c341d10d3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg index db502df575..513dd5123a 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg index 03d094cd27..ee66e0cd6e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg index 53f876c547..ba3c02627f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg index 3e19a67a13..900d0f716b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg index 9dc86fee90..1d26e8824f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg index cc6f751c76..f767efaf8d 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg index 589eca1b89..2155f9dd01 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg index 5760889bf8..c90f5ab5a9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg index c6f2301184..a6813b00e3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg index 5d17c760af..6589f1c029 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg index 80c89a7f39..cf601871d9 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg index 98f3963ec7..4527f5f936 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg index a0a004afdb..5dfb208b0e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg index 4967bae5e1..2ad2cb9055 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg index 22cfb59bb8..0819b4bf5b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg index 25ebbb1990..6d2de1dcd6 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg index 9d2e69d0df..3ca91fa93e 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg index 99a0803d8d..8315e5f74b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg index 8921b8b8d7..e645b9ff46 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg index 167fddbf0b..8ee47a51d3 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg index 09c2aac6a1..2052205b7f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg index 82322be546..11c5d82c6f 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg index 252afdeae4..c940f706fd 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg index 191d6ffa8e..1524d56491 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg index b43d80d475..ef36235b03 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg index 3771f389fd..f275406611 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg index 2cc8e0a30a..bbd31dac4b 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 1 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg index f5e18a93c3..991a6b0116 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = 0 diff --git a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg index 4b5fed9eb4..6b3834fe32 100644 --- a/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_0_8/s3d_std0.8_TPU_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 0.8 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg index cd61c020c5..8752bd69ab 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg index 200856ca53..9a27fc2cfc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg index a5a3bf8338..5b1a66acf7 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg index 96f4b453f9..660f72e11f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg index cd323aeba0..0b98509a9e 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg index 11a27b4fe9..c2330aed84 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg index d2b524f3f8..1b374947c1 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg index 0eaf98e1ed..7eb2272044 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg index 9a5f413f85..e8a8ded671 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg index 4dafe54bef..9f460a1052 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg index 31111b8148..81690967e9 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg index 71afad2707..91ae9f93d9 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg index 2b8a49811f..28a6d95b6f 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg index 1a6d68f6c4..95965ab451 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg index b234435928..96d1a0961c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg index 4ec41d2355..308cf2de09 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg index 30ea3d02d9..2a84b9bc97 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg index 7173ee3c7d..b96667fdf6 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg index 6de97c18b8..753fe9a2f8 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg index d7f6693d6f..89ee818a2d 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg index 4b6b9e0829..59a9f91340 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg index a7654a552b..f22694b973 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg index 375aa70df2..2eff01a6ac 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg index 1c09546eb0..b651228181 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg index 7d6239044b..1ae9164f9b 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg index d4c2a21dbe..b73995071c 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg index 052cccc4a8..0bd40522c3 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg index 3f391c093a..ed1ada4a1a 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg index 0cae1d5278..498d8a60bd 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg index e6bd01e706..0aefb25b63 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg index 0dbffd8dce..3140e378bc 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg index 0dbc2576c4..e20f78b147 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg index 11b4408a82..cf7a166464 100644 --- a/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_0_Experimental/s3d_std1.0_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.0 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg index 719d0a9c25..cd052e5f2d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg index 41a4d1a39f..be6b90cf39 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg index a9ffd2a459..0b71b95bca 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ABS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg index fc51245d79..15a3729de7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg index 995ad827b9..a586a0d7e5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg index 415f3239cc..1b3e7f54ca 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_ASA-X_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg index 7328f90a50..7f0e9ba8d5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg index 80b17899dd..dbfde5b75d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg index 5a9511c1a6..07b26cb17b 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_BVOH_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg index 2bf9153b93..b8f7f8fe3a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg index ef96f0aa6a..39813d6f19 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg index da4a810980..11cd0fbc79 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_HIPS_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg index 73ff310e2a..036e4101e7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg index 531a5ddb27..38834e0591 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg index 33fe883560..5eb803e817 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6CF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg index a583a7eb46..cd94f4bcc7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg index 266a3fa223..f39cc6d6af 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg index c833fe412b..98200cc1e6 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PA6GF_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg index 4fe456849b..54920b1468 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg index 01052c90ae..ec1017d95d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg index cd68c8c900..a70e604172 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PETG_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg index fe304f4e54..833a2b278d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg index 67afd44b64..fc82f89ed5 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg index c638766b26..5c88aa4f33 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PLA_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg index 3ff175b6a0..07e4163d6a 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg index a5f351c529..6fa77055cf 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg index 125f19d66f..5a71bfd0f7 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-M_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg index 071677014e..b9c42d3464 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg index ad354adb14..c93449e911 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg index 1a1de5bb23..5eb0a71c8e 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_PVA-S_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg index 911194c25c..0d1cb492f1 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = f -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 1 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg index c8d9145ada..2dfe5814c1 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = g -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = 0 diff --git a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg index 84e86ffd05..68e9121d9d 100644 --- a/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg +++ b/resources/quality/strateo3d/Standard_1_2_Experimental/s3d_std1.2_TPU98A_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = h -setting_version = 23 +setting_version = 25 type = quality variant = Standard 1.2 Experimental weight = -1 diff --git a/resources/quality/strateo3d/s3d_global_A.inst.cfg b/resources/quality/strateo3d/s3d_global_A.inst.cfg index 0e1f915c0a..92154a2e6d 100644 --- a/resources/quality/strateo3d/s3d_global_A.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_B.inst.cfg b/resources/quality/strateo3d/s3d_global_B.inst.cfg index 6396711afa..9d064ede18 100644 --- a/resources/quality/strateo3d/s3d_global_B.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_C.inst.cfg b/resources/quality/strateo3d/s3d_global_C.inst.cfg index 6a15748bc3..be3b81fbd2 100644 --- a/resources/quality/strateo3d/s3d_global_C.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_D.inst.cfg b/resources/quality/strateo3d/s3d_global_D.inst.cfg index 0dd458dcc6..beb7c6cfde 100644 --- a/resources/quality/strateo3d/s3d_global_D.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_E.inst.cfg b/resources/quality/strateo3d/s3d_global_E.inst.cfg index 3e17131bd7..aec5f2aca4 100644 --- a/resources/quality/strateo3d/s3d_global_E.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_F.inst.cfg b/resources/quality/strateo3d/s3d_global_F.inst.cfg index 52a679028f..6f27ef8147 100644 --- a/resources/quality/strateo3d/s3d_global_F.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_F.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = f -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_G.inst.cfg b/resources/quality/strateo3d/s3d_global_G.inst.cfg index 2f8e5e1da4..80e9be4aaa 100644 --- a/resources/quality/strateo3d/s3d_global_G.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_G.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = g -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d/s3d_global_H.inst.cfg b/resources/quality/strateo3d/s3d_global_H.inst.cfg index 8321feb52f..2cdbb7dc5b 100644 --- a/resources/quality/strateo3d/s3d_global_H.inst.cfg +++ b/resources/quality/strateo3d/s3d_global_H.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = h -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg index 36a56da7a3..0d65465857 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg index cb85d768d4..6c6b7e56f9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg index 153b559376..b7de0387fd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg index de62bfb3a0..d70d02a154 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg index 1628085b6b..2f244ef3a6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg index 64ce3c53f9..5882b3311e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg index 4fd837f579..51b88ce82e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg index 82b987e3e4..c489069dd3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg index da992e9d55..2930144985 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg index 5d52be9c54..9ca7aa2f08 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg index 09f961d018..9472ee1157 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg index bc0aa98914..bf0f18c594 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg index 2d8139af88..6b228d8a00 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg index 73f6643cb0..864bae4d58 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg index 8c6ea9c565..510ebf70c5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg index 800247fa00..3e9d85f69a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg index 14d4c1265d..6e480a1bc8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg index 1dd2a3f339..51c7893f7b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg index a48122d0ff..ca80e67d9a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg index 5d3fddf6bf..fb0ebc9572 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg index 3916aec06b..b1bbfd1632 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg index 1cfdb072d9..bd66e19150 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg index 915faa0e57..89968a0c32 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg index c5fddef5f7..3bb2215e74 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg index b6dac97352..40c5a04bbc 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg index af7be4076e..2ce26a8a3a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg index 455bb6516a..f8672537d9 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg index c319613906..28bdc9e6a8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg index 663d3bc141..be5a8f04fa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg index ee7ec5a49b..1e1548f517 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg index 32b094a926..84d5b01920 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg index 7d02f48433..64e0ef7503 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg index e0e3f0950d..dbd90fc41b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg index cec4307927..753bfe7148 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg index cd312783b1..d8f53d73bf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg index fcf85e5354..abd32ec11e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg index d8fa6154d3..8b7155b924 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg index d3c0b763c1..e5b588da80 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg index 9ce83b7567..630c2804d6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg index aacd51cfa4..9dcb26fe82 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg index 8d4b467382..d2d3966648 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg index ba1e050fad..4ae7011521 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg index 78ecc50944..d8bffe5443 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg index af98bbe9e3..f599689cd7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg index a57dbad5b7..6e38f181a8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg index dde6898259..0e80ade926 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = a -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg index 1d9a21f7d5..46663ebe73 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg index f9b8ba9c39..b016f74164 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_4/s3d_IDEX420_std0.4_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.4 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg index 74ec0b720a..72eb5bc3b4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg index 04b04f9c3e..d933d043ae 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg index 43b2d9776f..7f4cadd2c4 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg index a0e25f7207..77762a4e3f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg index ddfc162cf9..fc6cd93d5a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg index 976eb26ce6..666870c8b5 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg index 15662bb5d0..168c26ef4e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg index f50c4e5d10..3268b70279 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg index 2d2e7d5760..dd80abfa1e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ACETATE_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_acetate quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg index 0593e108d5..c2a80c7adf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg index c6197bb477..7d92417b28 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg index b4f7eac10b..96ecbebda2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg index 919eae5482..07898c7d4e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg index b80de309cb..55cf742b48 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg index f59791b3b9..bcfa8f0011 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg index 4f7c5ede44..59c8571e70 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg index 5b6ae2d0a0..89b2fbfc99 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg index 6ccd25b1d1..98c0e1bf0d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg index f5dc7fccdb..da52a51e71 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg index 9c2eea2718..f26aa274ed 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg index c0a166d66a..e7c84ae8bb 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg index e3020b574c..40975763b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg index 369d563c2f..7913899f36 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg index ba40fe5e03..a137a47338 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg index dcfc8410fa..eb5bb682c2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg index 9bf4670d6d..b65ea9e02d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg index b16e9a61a7..cd9cadee6b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg index bff5c6084b..b6cac3e7f0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg index 75c22ed713..1fc7d7d5aa 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg index 8e7fa092df..b7fdbe9bf7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg index a08f7f3c3c..cff538f460 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg index 8aabb6d17e..835696e2b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg index 838c32a83d..a4101a6f52 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg index 3b0b01c147..419fad97cf 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg index 094c7917ca..77de52d7b1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg index 214db30e47..8ccbd638b8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg index 7904903257..6d89ee606a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg index 263716d6bc..f2fb82bf4b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg index 43ba181c20..f6c07468f7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg index 9a995b1529..e7afbe8490 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg index c325e4a74c..acabf37c62 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg index ac4a1c4e19..d490fab9fe 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg index daa23def10..4f16a99819 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg index 08e8a6e78c..3ad44c8c64 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg index 5d06e3d2db..99918e7af3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg index 352904ad15..e070fa2393 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = b -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg index 2e447e9638..6e1da2020b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg index b34912e03e..d62e83e1c0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_6/s3d_IDEX420_std0.6_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.6 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg index 7be3e6e4f1..9e8b601777 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg index b97f23a7ce..4af5a858c6 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg index 4063b36131..8f49a2638f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_absx quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg index 0b68f3e4d2..bf0d23f782 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg index 61c21d9d0d..635874c829 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg index b37201dd29..7d02f03491 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ABS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_abs quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg index 458b47de01..aa4141df11 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg index ad114d167d..51f720e974 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg index 02d29c0f24..e0c8628709 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_ASA-X_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_asax quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg index c8ff855a1f..1d03b7a86e 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg index 0d6f5e4f01..897173a901 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg index ecf49161dc..9367795eed 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_BVOH_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_bvoh quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg index e3eb6c6bc8..6a08b83da3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg index af21c2aa44..ded30f89e7 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg index dbe1833889..6d633fadcd 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_COPA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_copa quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg index 38084b916c..9a0b04e3b2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg index 16ee0c27b4..2468fc1d9f 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg index 60393cf430..d7733f11d8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_HIPS_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_hips quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg index 39970acd1d..7c480bebc1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg index 91b94f6131..edd0f8152a 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg index 2cb4d41794..4e5c2bd2f0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6CF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6cf quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg index 0f29dec308..5b5363a8d3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg index 518c53ee18..69cfbed092 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg index c6b41e53c2..29290d4310 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PA6GF_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pa6gf quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Acier Durci 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg index 3be87a45b3..925a041100 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg index f04c331621..a74eff74f2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg index 1a4766dfa1..d69f043eda 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PC_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pc quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg index e0de41cf94..db04429cea 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg index e71f50e7c5..d453e5d473 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg index aec52859fa..2bb14a5eb0 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PETG_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_petg quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg index a8059b82eb..26a07fed5b 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg index 19b8a9213a..d6ecfbde88 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg index 09d2f59acf..669e69e0a8 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg index cc43097e85..d6445d5295 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg index d949cfb2bc..d3a05bdec1 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg index 0e033e1254..9197a8373d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PLA_HT_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pla_hr_870 quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg index aca1b80e06..49402e66a3 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg index ce791391e8..2bc7d17501 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg index d9d47dfa89..06abec06ab 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-M_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-m quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg index fb69f050ec..d5fb013db2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg index 4ecd5bf3ee..493a9e0b38 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg index cbdb6b63a5..425ea01e39 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_PVA-S_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_pva-s quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg index 9f9ad2c452..cff3e50515 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = c -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 1 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg index dd4b2ee64f..7a27e2745d 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = d -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg index 023b51a264..601db71fa2 100644 --- a/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/Standard_0_8/s3d_IDEX420_std0.8_TPU98A_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = emotiontech_tpu98a quality_type = e -setting_version = 23 +setting_version = 25 type = quality variant = IDEX420 Laiton 0.8 weight = -1 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg index be55a9e69d..8b0c9a5d06 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = a -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg index e29b6fd63e..0241bfc3d4 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_B.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = b -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg index 3edca64237..ac7eb68f05 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = c -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg index c06e0cc24e..8d98dea721 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_D.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = d -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg index a45e360a41..c1de0f936d 100644 --- a/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg +++ b/resources/quality/strateo3d_IDEX420/s3d_IDEX420_global_E.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = e -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tank_m_base_global_draft.inst.cfg b/resources/quality/tank_m_base_global_draft.inst.cfg index cef3e3ced6..bad4f5a217 100644 --- a/resources/quality/tank_m_base_global_draft.inst.cfg +++ b/resources/quality/tank_m_base_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/tank_m_base_global_high.inst.cfg b/resources/quality/tank_m_base_global_high.inst.cfg index bc065a8dea..0ebd5fe0e8 100644 --- a/resources/quality/tank_m_base_global_high.inst.cfg +++ b/resources/quality/tank_m_base_global_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/tank_m_base_global_standard.inst.cfg b/resources/quality/tank_m_base_global_standard.inst.cfg index 4683900a0a..a39f991ef7 100644 --- a/resources/quality/tank_m_base_global_standard.inst.cfg +++ b/resources/quality/tank_m_base_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg index e1f33a089f..4929ccf129 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg index c7ed7e6c0b..c63a1c6a6b 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg index 5a932c9261..e8f541e719 100644 --- a/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg +++ b/resources/quality/tevo_blackwidow/tevo_blackwidow_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg index 47a22b00b7..36fdaee8f3 100644 --- a/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg index dbb15a5989..222ac86da3 100644 --- a/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg index 4f9b30b4cd..a6b47d5c7f 100644 --- a/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e10_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg index cb33075051..5d63611cd1 100644 --- a/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg index b762c33c22..711ae77517 100644 --- a/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg index 2ccf5b7d44..7d7f450657 100644 --- a/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_e16_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg index 6a88be5788..94d6e79c5c 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg index 1b8fb99784..62b940f9ab 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg index 33ee02b57f..8f45f425a1 100644 --- a/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_fabrikator15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg index 61f7512585..4dbe222c6c 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg index 30a7ffc3ad..a896f7999e 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg index 0ed612e090..4e190d8a2d 100644 --- a/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg +++ b/resources/quality/tinyboy/tinyboy_ra20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg index bb031de52f..2263074426 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.2_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg index 7dd86d45d7..94f23cd483 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.3_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg index 1546674bb1..f9ac81b87e 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg index bcf8f4c3d9..789b135dc8 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.4_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg index e4af6949cc..d0e85d426f 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg index 768d5f9579..9603bb7c11 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg index 6637c178ad..25397cd793 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.5_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg index f2c201ff55..da04fd336c 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg index 248f84b5f1..d5c83afc2e 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg index 37989390f4..85fdab86d9 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.6_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg index 9d1e1f59fd..3ca1a66c6c 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg index c65d8c9878..0994f52795 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg index 45c48af06f..5fba9e3b37 100644 --- a/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/abs/tizyx_evy_0.8_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg index 47651b2269..25c601a5dd 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.2_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg index 40fb2db3d5..ac5affb733 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.3_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg index 1d72ea5198..11f5b96f65 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg index 663e4e3184..d545c2f160 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.4_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg index af5f4ec303..08e1e6de51 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg index dc11ed8430..b99fa373f3 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg index 1242c06515..f12aafa700 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.5_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg index f606252f9b..717ddd056c 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg index 2a12a43b1f..8fc1ef2c7d 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg index 585bde78eb..38d661d139 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.6_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg index f5f27a1654..c2856cc468 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg index c747105ca0..8cee8ad754 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg index 465321cb4a..8032b09437 100644 --- a/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/flex/tizyx_evy_0.8_flex_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg index 672fe535c3..aea2b06e9a 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.2_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg index 271518a4f0..9386dc6654 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.3_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg index 4ead3de642..abcf8373ea 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg index 8eeb7f7a52..047c12e119 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.4_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg index 6b8ac3bd49..c08069c39a 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg index d4be949691..35c41799e5 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg index ad46ffef48..54aa6dd093 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.5_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg index 768c13565f..668acf14a1 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg index 5cf3c2d17a..5de2611d44 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg index 1d2acf0f10..5bf38af830 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.6_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg index 556df18b04..efaac56b90 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg index 136f1ad611..67c2b8835f 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg index 8c1d96f8f7..d7ecbea32d 100644 --- a/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/petg/tizyx_evy_0.8_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg index 69b8c484b6..45c58ddede 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.2_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg index e159697c87..8b841456e1 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.3_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg index 6f684c0777..d2a523cf90 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg index b4db252214..58560b32da 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.4_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg index 2ff8f1d568..e9d5fbbac9 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg index 1c197ce362..58685ebd46 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg index 30cc3f891e..0927dd7784 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.5_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg index 572bf4075c..4feffeaa1e 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg index 0ff7992da6..568970551d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg index 022d6b12f8..507ba14430 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.6_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg index 1c13a45be7..07db0ad7ff 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg index 0e40bf105d..9798dc31cb 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg index 1dccc44410..661d6732bd 100644 --- a/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla/tizyx_evy_0.8_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg index bc15310d38..13920c1e6d 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.2_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg index f4b1fcaa68..55e400b7e1 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.3_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg index 8846800d5b..38f4027ddc 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg index c7b91a24f2..86d8a74d1a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.4_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg index fd242ebf1f..1b4460f75b 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg index 65ee5e4060..a5abe0a073 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg index bc7192956e..cf6e00923c 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.5_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg index 5aa2a1f7a6..453dc75875 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg index b0f80e3195..148cfa9ab2 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg index 068b46b819..7c1c54ed5a 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.6_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg index c1cb3a139a..3bc12459be 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg index 71ba140211..d7d8455526 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg index 22df55ae9b..429777d275 100644 --- a/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/pla_bois/tizyx_evy_0.8_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg index 26d51f4048..e283babe30 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg index e3678d6586..1aefc03d8a 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg index 4250674bf7..99ac11f381 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg index 68366636d1..18e3adaf01 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg index 65f4a62d9f..e75b224c57 100644 --- a/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy/tizyx_evy_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg index f6ed38a7da..a862355dce 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg index ce05cbd117..9e44b19538 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_classic_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg index d1ffc8dee0..d17e04cacf 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg index 90f7f5cafa..ebdfff498c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/abs/tizyx_evy_dual_direct_drive_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg index 6ebac449eb..6e6d3e55c1 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg index ecfc90bb0c..cbf094d1e6 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_classic_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg index 597857775a..564bde691c 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg index 0ab7ebeb7e..e08fd02efe 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/flex/tizyx_evy_dual_direct_drive_flex_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_flex quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg index 0a8fa2560b..08fdf674e1 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg index fa840bb04c..14cc836aae 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_classic_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg index af5985fa28..32eb771b44 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg index c210e1067c..451ef0ab72 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/petg/tizyx_evy_dual_direct_drive_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg index 4c72239702..58ff276cf7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg index 6552f1b786..231561ad2d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg index 6f8a31a5cc..7ad2a822f0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg index 6ffc6af755..3ef5de5dbf 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg index b92564848a..f5808cd506 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_classic_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg index 49b7a3b486..7b8ccf3e5a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg index e1fc378b86..16d78855d2 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_flex_only.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg index 4ef60bbf98..3a20ecb392 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg index c65cacdd69..7f1e6a4f15 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg index 978d1b8312..d5081e8d2e 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla/tizyx_evy_dual_direct_drive_pla_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg index 1c212d6e55..7fdace0fbf 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg index fdf6540454..ef2da97242 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg index 8d02a10d4d..410ae267b0 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_classic_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg index 9b067c6d5f..32575874f7 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_flex.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg index 6895181f48..a6fbf9c58a 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg index c616a33dad..35927cfefa 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pla_bois/tizyx_evy_dual_direct_drive_pla_bois_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pla_bois quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg index b9c6f1305d..16872f41cc 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_classic_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Classic Extruder weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg index 6ceadf98aa..f1e7fe03b1 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/pva/tizyx_evy_dual_direct_drive_pva_pva.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = tizyx_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Direct Drive weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg index e54e67f8a8..4a8c1ede19 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Only_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg index 1bd2947b6a..e50f2f040d 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Flex_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg index 2a7f08d04c..e381e53f01 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg index 04565fcfdb..42512f1126 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg index 61b931dcce..805189cfc1 100644 --- a/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg +++ b/resources/quality/tizyx/tizyx_evy_dual/tizyx_evy_dual_global_PVA_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg index 9ba18d70e8..5b6b868475 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg index 7a8b36873c..af37b728c0 100644 --- a/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg +++ b/resources/quality/tizyx/tizyx_k25/tizyx_k25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg index 76eb3991ee..86b4d1bbc6 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg index 48124047b0..0f7bd417bd 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg index 9f3b21318e..297d5662d2 100644 --- a/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg +++ b/resources/quality/trimaker_cosmosII/trimaker_cosmosII_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg index 86ebed427d..0ecb61c0a5 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg index 2f56f89d6c..a4297cb24a 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg index cbaf24020b..2228d225da 100644 --- a/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg +++ b/resources/quality/trimaker_nebula/trimaker_nebula_slow.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slow -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg index 58c5c5a99c..149a6223f3 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg index 07590e6220..9234aca199 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg index 65b78d75e3..863e8ba227 100644 --- a/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg index db26f43e1c..18e72615d4 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg index 2e8907d03d..2e8e0b8222 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg index f443539979..16c2780620 100644 --- a/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg index a9f594e338..eae9821e02 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg index 258d1b24f7..eb8e160612 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg index 3ea6f759b6..f3bff7c115 100644 --- a/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg index 76d849144a..c9b9e7190b 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg index 38d0d5a70e..53757e8223 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg index cf315d0311..f1db4b9199 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg index b2a9e83262..c4c9d3021e 100644 --- a/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg index a00e734a4b..30e1c88562 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg index e31eb16a15..9662e48e2e 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg index b34e256225..b33e15f06b 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg index 9b58479968..8111049f01 100644 --- a/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg index fba7932975..6763eccf4d 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg index 7eeb5abb50..fb51212221 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg index 0aaf3070a2..1e5f0901e2 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg index 0a5e9e57ec..056f7594ea 100644 --- a/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg index 03f0cf6317..e4b54b7208 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg index 0bb51ba7f5..917d5cff2e 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg index b5f0525693..70f80d2e10 100644 --- a/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.3_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg index 0be7bc67df..828bda9ae4 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg index 168f49e05f..70d8ecef6b 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg index e7404f37da..20cc4dfd79 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg index d57ac22096..184d8290dd 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg index 443e8e9163..df4c24b590 100644 --- a/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg index 3c758b080f..9f9a0fc02c 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg index e4e6fd325a..7784a4b468 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg index 3e521fe5cd..9fec13b734 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg index 50a6a06367..bebbb8b892 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg index 7efc2925db..28d1fc0a31 100644 --- a/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg index 33c0dd9ed7..bb0b1e1a0f 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg index a9dec2ac7c..e5b26df4f4 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg index 9d8eb29cbe..1f6c6f9706 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg index 3eda4c5391..c64600026b 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg index cdb4c8589e..f8dafe6de3 100644 --- a/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg index c3b10bc011..97174dacd3 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = extra -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg index 2f80a69cad..64f3b6bc04 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg index 500654b95e..f35f4e273b 100644 --- a/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.4_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg index 868647065c..296cbbdfc4 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg index 1bc9797884..3b354f4f41 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg index 5afbc9a036..1185885083 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg index 793faa0398..8b322349df 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg index 6aa3e37b5c..abc9de52ef 100644 --- a/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg index 8839464be8..8197ca9d62 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg index a03fe406d6..ee1f6f3af6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg index 0ab68afe6e..57bbb31346 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg index 66bb790b7b..c07a035b4d 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg index aee6a22475..8c617964f6 100644 --- a/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg index 48b223905e..ff11a2be0f 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg index 1e2b873e7f..a4bb4bdca3 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg index c3702cdd9e..3175f7d564 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg index 9906072362..dc42cadf46 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg index dab3aaa490..e36bf48fbe 100644 --- a/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg index 34b0df7d1f..2ee88cff77 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg index b6c1244dcb..08311cdf2a 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg index 1cf6176e49..7f715053ab 100644 --- a/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.5_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg index 86519d1305..ee5596e77d 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg index e8737441da..37cec98d78 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg index c2f6ea5527..74a769a8ee 100644 --- a/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg index c60b6b7bc2..c76195bc77 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg index 627de7cadf..340f89d645 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg index 367597cad2..cdcebe486d 100644 --- a/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg index 725fcb20a7..44eff7a260 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg index 651ba5a4c9..56e4e2c3d2 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg index d8620b8ea9..7af037b5b6 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg index bfe7b1127b..22a226ad0b 100644 --- a/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg index 89dada6d6d..ef9ef90fd7 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg index 6901d8f552..4fc912077f 100644 --- a/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.6_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg index 3177aa72da..58ceb4628b 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg index 23392e8790..c91c45846b 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg index 4ccda30473..c9a1b98b07 100644 --- a/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_ABS_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg index 9e7e746430..9e7abdd6d9 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg index d4ff0860ab..f1aa3d6db2 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg index deda6a7f6c..1f999cfd19 100644 --- a/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PETG_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg index ccca511d6e..5295c42eaa 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg index 17f2ce6c12..425114681d 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg index b32fa4b71e..18f697fed7 100644 --- a/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_PLA_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg index f1583a70d2..192f7b5da7 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg index a46ab47036..0cb90528df 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg index b83c8b5efe..37e179dbd7 100644 --- a/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_0.8_TPU_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = rough -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/tronxy/tronxy_global_extra.inst.cfg b/resources/quality/tronxy/tronxy_global_extra.inst.cfg index d11d1e39e8..be1c78580e 100644 --- a/resources/quality/tronxy/tronxy_global_extra.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_extra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/tronxy/tronxy_global_fine.inst.cfg b/resources/quality/tronxy/tronxy_global_fine.inst.cfg index 1ee5b3d856..7b7c70f073 100644 --- a/resources/quality/tronxy/tronxy_global_fine.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/tronxy/tronxy_global_low.inst.cfg b/resources/quality/tronxy/tronxy_global_low.inst.cfg index 446fadfa8d..640dd43c5d 100644 --- a/resources/quality/tronxy/tronxy_global_low.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/tronxy/tronxy_global_normal.inst.cfg b/resources/quality/tronxy/tronxy_global_normal.inst.cfg index 07697c710c..9be2549b6d 100644 --- a/resources/quality/tronxy/tronxy_global_normal.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg index 4b49afa97a..7c098d7a02 100644 --- a/resources/quality/tronxy/tronxy_global_rapid.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rapid.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rapid -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_rough.inst.cfg b/resources/quality/tronxy/tronxy_global_rough.inst.cfg index 6bbf2615bb..80c3921796 100644 --- a/resources/quality/tronxy/tronxy_global_rough.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_rough.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = rough -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/tronxy/tronxy_global_super.inst.cfg b/resources/quality/tronxy/tronxy_global_super.inst.cfg index 2ba5b0aaec..2fd800f3f6 100644 --- a/resources/quality/tronxy/tronxy_global_super.inst.cfg +++ b/resources/quality/tronxy/tronxy_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg index ebc52fdf83..2297cdd3be 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg index a51d2ee826..a2332932b8 100644 --- a/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg index 498e38ab67..828749dca9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg index f3ef6c692d..1d2fd07c4f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg index 27e856a11c..8a307e8ee4 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg index 61f983c1f1..47854600ca 100644 --- a/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg index acf9a2d79b..1c5e6caba0 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg index fa26a3e621..e84be2e1a5 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg index 70ea753138..758bdbd0c9 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg index 57e2cc95eb..c8a343255c 100644 --- a/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg index 0a6247df5e..ea18ccb0dd 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg index e7d5a413d3..b23a580d58 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg index 59d727e0ee..2b616c2a7d 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg index 8093f901b3..c5b60abf2e 100644 --- a/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg index 4da10a58b7..e75a035e45 100644 --- a/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg index a2928c11ae..b3094ffd4f 100644 --- a/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg index d3acc3d676..48483a1928 100644 --- a/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg +++ b/resources/quality/twotrees/abs/two_trees_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg index 00e1753f59..4824cac96d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg index cd456caa85..86cccb75f3 100644 --- a/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg index c3681301cf..42a83393ea 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg index a330602fdd..7f9c00242b 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg index bf9e99eea5..ff916bb304 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg index a5b2744362..1f7cde62f6 100644 --- a/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg index 766b6ef1ff..96b9f2c62c 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg index 529cb82628..4d0ef3c54c 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg index 9a9213c25e..61199978a7 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg index 32174de806..3e1d93a359 100644 --- a/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg index f55cc7c36d..524b317ecd 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg index 4d1989d074..da0be4b07d 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg index 47b93b14f5..f564c62588 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg index ac3ab46420..7133fc41c0 100644 --- a/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg index 7ba8d13fc7..42caa06897 100644 --- a/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg index 8d9b052abe..f9301d4254 100644 --- a/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg index 6654f3a13d..75c41d6e37 100644 --- a/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg +++ b/resources/quality/twotrees/petg/two_trees_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg index 292d3964c9..d1d4e81241 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg index a18faa2496..acfc2e43af 100644 --- a/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg index d73b38625f..abeb755ffe 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg index bc1d930f5c..732274ca3f 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg index 2aed3e25e3..edbf47b794 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg index 672344afe9..11ab77fdfb 100644 --- a/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg index be051364fd..60c53a1f7e 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg index 50ef6ef118..b086fbb688 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg index ffaa82b9f1..2914cc7c56 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg index 0142c3df2d..d34c765096 100644 --- a/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg index fab1c4d968..1050eb26f6 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg index 26f374607e..e8b5a1b1da 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg index 9f334a996a..dc56bd6aa0 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg index 45f87521af..9fefcac523 100644 --- a/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg index a259e5d759..a2e821b2bc 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg index cdc8b281b5..17fb106860 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg index b47b18b9e4..b7a5a45ef8 100644 --- a/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg index 731c9371bb..1663f77585 100644 --- a/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg index 61dedfdfc7..afbea24ebf 100644 --- a/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg +++ b/resources/quality/twotrees/pla/two_trees_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg index d3233fd303..34e38530a9 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg index c9fc819a6c..288aed2ba6 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg index db08081c75..99f62f85fa 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg index bc90a60fa8..5941488130 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg index f424abd5d9..da1537f06d 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg index db575821d8..84d9b5c782 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg index 3fbea6b899..1a9df999d8 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg index c4e806ae5e..0d7ed71418 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg index eedbf5abe2..667d5c1e12 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg index eb2f3f269f..5da95231c9 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg index 9383f9a018..0c965ee7a9 100644 --- a/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg index a6dfedc300..f75dd25078 100644 --- a/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg +++ b/resources/quality/twotrees/tpu/two_trees_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg index 35dcbfdc7c..48192027cb 100644 --- a/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/twotrees/two_trees_global_draft.inst.cfg b/resources/quality/twotrees/two_trees_global_draft.inst.cfg index 57d6acaea1..bf47eee289 100644 --- a/resources/quality/twotrees/two_trees_global_draft.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/twotrees/two_trees_global_low.inst.cfg b/resources/quality/twotrees/two_trees_global_low.inst.cfg index 53991fb83c..eca31df9cd 100644 --- a/resources/quality/twotrees/two_trees_global_low.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/twotrees/two_trees_global_standard.inst.cfg b/resources/quality/twotrees/two_trees_global_standard.inst.cfg index 15c704f00c..fbd1cceea4 100644 --- a/resources/quality/twotrees/two_trees_global_standard.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/twotrees/two_trees_global_super.inst.cfg b/resources/quality/twotrees/two_trees_global_super.inst.cfg index 373a4ac415..82525dd63c 100644 --- a/resources/quality/twotrees/two_trees_global_super.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg index ac28e1163f..255b78e106 100644 --- a/resources/quality/twotrees/two_trees_global_ultra.inst.cfg +++ b/resources/quality/twotrees/two_trees_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker2/um2_draft.inst.cfg b/resources/quality/ultimaker2/um2_draft.inst.cfg index 842364a0e2..f343b8a9f2 100644 --- a/resources/quality/ultimaker2/um2_draft.inst.cfg +++ b/resources/quality/ultimaker2/um2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker2/um2_fast.inst.cfg b/resources/quality/ultimaker2/um2_fast.inst.cfg index a4b3b53d9a..844e6a2139 100644 --- a/resources/quality/ultimaker2/um2_fast.inst.cfg +++ b/resources/quality/ultimaker2/um2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker2/um2_high.inst.cfg b/resources/quality/ultimaker2/um2_high.inst.cfg index d3906d40a4..420f6034a7 100644 --- a/resources/quality/ultimaker2/um2_high.inst.cfg +++ b/resources/quality/ultimaker2/um2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker2/um2_normal.inst.cfg b/resources/quality/ultimaker2/um2_normal.inst.cfg index ce35f5fdf6..5264ab577c 100644 --- a/resources/quality/ultimaker2/um2_normal.inst.cfg +++ b/resources/quality/ultimaker2/um2_normal.inst.cfg @@ -6,9 +6,10 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 [values] +layer_height = 0.1 diff --git a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg index a66b8d893a..1b971d57fa 100644 --- a/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg index b33d5b9601..81c6429050 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg index 1ae2910d5f..711403fbe7 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg index e7668c52ff..385208da1d 100644 --- a/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg index 87b3fc43f1..dde4da6d49 100644 --- a/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg index 8e8abd0af3..08989c8f87 100644 --- a/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg index aa23c2d29e..e0e1f3835e 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg index 35cc2eb58c..b5ac561fe0 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg index 7ec4b73d06..1e1c47c927 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg index 4c0d9734a4..1189592246 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg index 89132582c2..3c255d371c 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg index e602968179..30d92ae85c 100644 --- a/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg index 268629808d..71d881ea8a 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg index 1bc04ea32a..55b145310b 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg index de94c44cb2..d6033ed7e4 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg index 7a07755564..41a7e0e2a8 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg index 9261d6a828..34855d4e9c 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg index ee9c178686..f1eab97583 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg index c29f258765..43d10da60d 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg index 7a1ef4d328..53ce4812eb 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg index 6c1226cb94..a0caf0ddbb 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg index 7733a6542f..3cdf07ebc5 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg index 64b20d7697..5b06d0c874 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg index a3f73e630f..5cb1ea1e0c 100644 --- a/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg index dad85dbf32..d5a857a0b2 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg index c545bc162b..24eca16db7 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg index b90a08e164..4456ea33f7 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg index c3c6ec1ccb..5270a668ef 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg index b2301907f1..405219ac7e 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg index 4e8d0b98dd..46f54e5a20 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg index 9fe60b531c..3895d7e048 100644 --- a/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg index 05ac13318e..56daf0d297 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg index 6af095a034..2648227ec1 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg index 512444d2d0..8547be73c6 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg index c81aa84dd1..e22cd61894 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg index c201d3c190..817ebec3c5 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg index af44fbb77a..f4d7de7bc3 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg index bf548fe1da..c6fc60fc96 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg index fef262b2e9..cb6a7599ec 100644 --- a/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg index 42394c95c5..f8ad5d1db0 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg index c620b6d639..aca83a111a 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg index 2007aed6e8..2a408892a6 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg index 2297ed8f46..e391323edf 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg index aa2cefdeed..350c563443 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg index 8ad024143d..bbda9980b3 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg index 8ce3d3fc8a..4c4e1bff99 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extracoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg index 7b04f77dae..f856ac88f1 100644 --- a/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg index 20cf3f4f39..622cc5b9c0 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg index b47d8dcbbf..f6e8af66f3 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg index 635691d3df..bb301dbe21 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg index 9e631ee4a2..25b1211b22 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg index 69911019ee..d433ff3b23 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg index af5fab1f9c..368cebb804 100644 --- a/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg index e4ba9b64a5..7263818287 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg index d6beb15c1b..e6ed498b0d 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg index 82e9444d96..d155967949 100644 --- a/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus/um2p_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg index dc6e6470a8..069d9471c7 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg index 226d4f417d..a87bf5636d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg index 6ea8c1855a..642e82d56c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg index 45960525a1..9ead0c1539 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg index bccbceb94b..fa90072405 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg index 7a7bbd77b6..8f0aecc13b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_abs_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg index dbdf7ff3ce..d9379a89b3 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg index 425b214086..400b1a2305 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg index a53fa1d41c..dbfd2edb7b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg index ba09e6f598..d329abd47f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg index b39d2167e5..7f7bec3793 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg index 02ef186159..f186637a70 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpe_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg index 4365af9728..a14475a7e6 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg index 839d10fb5b..bfe98d06bb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg index deb4633e6f..9068a92f68 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg index 42542ca2c2..ad82bf6c13 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg index 606286b545..2b2e8e1cec 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg index 7f4ab594d1..410875c73a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_cpep_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg index 3f739736a4..6cd1fa914a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg index 86767b0734..9a52517745 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg index cc0b73b62a..3a147e7b5b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extracoarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg index 432f5c88be..32b4d02949 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg index ff05cd8e3b..21eef5b4ea 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg index 315bed236d..ca086edb7e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg index 9be9845ccf..7af8bc86bb 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_global_Slightly_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg index 22b98a2bef..694645e5ef 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg index f0bf399845..73fe516156 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg index 5e9bfe3f10..6420e0327c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg index 0acedb59a4..0a3938cb3b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg index 83645f994e..9d3de429a2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg index 35cdc1c793..81b065a227 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg index 49518bcc83..c614ae049b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg index 4c9d6de011..fcb16e80b8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_nylon_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg index 9ba27afdba..dfb6b59ab2 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg index 081fd35b40..114eed7e3f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg index 175e85ceee..288a263b9d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg index 4546b75ecd..92aebf2af5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg index 8acbf177bb..01de906966 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg index c591382c17..3547ca4de1 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg index 247cb35fb1..adc8ce0c32 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pc_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg index b61cd02dae..79270c7f14 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg index 24cdf93b52..8c6373967a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg index 7c80517589..e2931b1ded 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg index 89fe4a4e34..6cac9f4b75 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg index 84745a9d01..b28453e51c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg index c8bc507424..b55d506e85 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_petg_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg index 0d06ee23f4..e8e540b01b 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg index 4fcdc54f98..a0d89e1d7f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg index b9b838e14e..8f0166e0a8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg index 462282adc6..49f8ce1907 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg index 2d2a424ebc..19a2ec4674 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg index f274f95f8d..aa315ef47e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg index 0192052440..fc6d80535e 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg index d5aaa0a754..5e49b21bb8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg index f4fdd27861..143ec8917f 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg index 0e2fef1c91..ba69eaf3fe 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg index ba01ab72d7..b4790d5cc8 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg index b61dda88da..388f5b6ca4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg index c5cd0c61b2..740bbcae50 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_pp_0.8_verydraft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = slightlycoarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -3 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg index 972bfda801..fa5c044192 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.25_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg index f81f88276e..d4620daaf4 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -2 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg index d0ef8d2b5c..f66a4dcd5a 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg index 782a08c6ed..1793ac4b5c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg index 42b6f2ea89..7d6c37980c 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.6_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg index e49f37cc77..a2bf309bfa 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpla_0.8_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8 mm weight = -1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg index 45acc00ce9..18af15864d 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.25_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = 0.25 mm weight = 1 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg index 6354670e28..4dae5d28a5 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.4_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4 mm weight = 0 diff --git a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg index e53d36940c..d0f5629092 100644 --- a/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg +++ b/resources/quality/ultimaker2_plus_connect/um2pc_tpu_0.6_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = 0.6 mm weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg index eff671f0e7..68bd198fef 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg index 261dc31a8d..696b68cf03 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg index 13330087fc..addc4ddc98 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg index 56ee69253d..c798e19f9b 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PC_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg index 07a7f1eb95..87ac1b2947 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg index 001364bd92..9954b0f7c5 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg index 10e384276b..d0f6e0b677 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_PP_Normal_Quality.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg index e9fb3a8258..328fe2b696 100644 --- a/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.25_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg index b64e3dfb1e..08cbeb1791 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg index 41b5031de1..48501021d7 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg index 8195470e4f..6de75d3c2c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg index ecb9faad44..b2a8674392 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg index d6731e02b0..d9d42133c8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg index 55af57f67a..88dd0e8c4c 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg index 367fe5dcf6..b37eaf8a2d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_BAM_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg index 9d9203c2ac..ce46a56b25 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg index 0a9b2d9f02..26202c2fdc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg index 577538fac1..78daebccb2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg index b52f60361b..274a21a8d1 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPEP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg index cb6e303af3..0373aa444d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg index 1505a30d22..e60fbabb95 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg index e9e926660c..b4a274558e 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg index 68004b632d..8b45ef2887 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_CPE_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg index 4a79e5728a..6bd288172b 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg index b65fe71a63..f8dbc2d47f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg index 7d6d2eabaf..b9de282aeb 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg index 4739ce4f5c..d0b33d8705 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_Nylon_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg index 7c894abf0b..27f11b96ec 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg index 542c9a51bf..ffd3d733f2 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg index 1f5cba710d..a9a8be9a8d 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg index 4bfa09ae9e..a2325cd88f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PC_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg index 2174893804..a2ccce0f15 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg index 434e7ce54c..cb2157778f 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg index c139608ff1..27cd2bd4e3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PETG_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg index 44e49ed160..eda0457166 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg index 0fa970bc70..249c098f38 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg index 42784f075a..0b80e9bbac 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg index 994d781aef..2838899e41 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg index 4fbcdedfa6..c65bc7a7a0 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg index 0655fa158b..9f9bbc9ac3 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg index 375f79a0aa..999d9a03df 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_PP_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg index f5eb8575b0..f257f994a8 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg index 3cf1ad08e8..d75632ab97 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg index df4cd1cb5e..446a72c09a 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg index 833b2e2ba4..f3abe674ee 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg index 667efc592c..d5d3d1e2fd 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg index 13c119ffae..bf8da51cfc 100644 --- a/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.4_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg index 4614943320..0507dcb0de 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg index c02bf624d8..5c3bec7969 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg index ad0d2c1d5e..964448e00c 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_ABS_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg index d9a7590540..05fef404a9 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg index 4696e86a1e..adf65a60de 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg index 8bea04ec52..542faa413f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPEP_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg index 5a2b0be400..8420d76a11 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg index 61e169f227..b22320ff3f 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg index 889c7d559e..05a91ba373 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_CPE_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg index d551dac42e..8ab5e902c7 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg index 60092ffe17..fbbad62fc6 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg index b144fd3a44..3f363c9fec 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_Nylon_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg index b4a09c306d..61e01062e0 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Fast_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg index 8b90dd7c42..026bfb27fb 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Superdraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg index cb7e0df75e..fce9506670 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PC_Verydraft_Print.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg index 4541fd17ea..6c6474f6dd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg index a23d38188b..49d2b0cae4 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg index 8ca93cd813..9392602596 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PETG_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg index c59367946e..0dea9812ba 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg index 40d91ace75..0f880673af 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg index dc387d1358..4823597720 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg index 1d64336e57..759f1ad3e4 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg index 0ea5def31a..9c5fb388fd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg index 83b73eea9e..1c47db4c38 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_PP_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg index 3404da85e4..27406eaa08 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg index 40926c6d92..f3711f5700 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg index b1ccf767d0..2a136d9c95 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPLA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg index 67a81efc7b..cc3fff8efe 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg index 8596784c18..90b4393ebd 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg index 8e0ce7b6b3..f37ffe8690 100644 --- a/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_aa0.8_TPU_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg index 3a38fd1b35..18aeca197f 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg index f7f7192483..ee4c3e77af 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Fast_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg index 0cab276520..239c228c56 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 1 diff --git a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg index da82ad30eb..7fedb278bc 100644 --- a/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.4_PVA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 0 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg index 4b6a6781f1..7605cf052a 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Draft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -2 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg index 7cb3be4d0a..ef3bf99b9b 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Superdraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -4 diff --git a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg index c85cc5c30f..64f37542ee 100644 --- a/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg +++ b/resources/quality/ultimaker3/um3_bb0.8_PVA_Verydraft_Print.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -3 diff --git a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg index 1195b49051..15a25f9b46 100644 --- a/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg index 23b5bda714..3de045408b 100644 --- a/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg index 277909301e..08a3b7c474 100644 --- a/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg index cd4be3a748..ac40c57775 100644 --- a/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg index 4c59ff74cd..4b0f9bf207 100644 --- a/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg index b09024d070..d209fb6542 100644 --- a/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker3/um3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg index a43607553c..cef7d5e891 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_petg_0.1mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg index 005afd9d7c..8cb2a77965 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_pla_0.1mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg index de686a7325..34cd5b4bea 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg index 19bbdea933..a77a82025e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_abs_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg index 44ae90f27d..9690073e7f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.15mm.inst.cfg @@ -6,19 +6,19 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 support_angle = 45 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg index 4d19af3298..9d09110d21 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.1mm.inst.cfg @@ -6,20 +6,20 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg index bb057c5cda..1a8c6c0709 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.2mm.inst.cfg @@ -6,19 +6,19 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg index 7203764593..dc440b80e6 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_bam_0.3mm.inst.cfg @@ -6,19 +6,19 @@ version = 4 [metadata] material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True machine_nozzle_heat_up_speed = 1.56 +max_flow_acceleration = 1 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 skin_material_flow = =material_flow * 0.965 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg index a35f2d6e10..2317f5f104 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 80 wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg index 8956b5287f..18deab6269 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_cpe_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg index f6ae48bf11..317b3045dc 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_nylon_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg index 3257605cd2..774adb0e1b 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pc_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 80 wall_thickness = =line_width * 3 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg index b0794b514e..e3c40d06b5 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.1mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature - 10 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg index f11d73dbbd..9eac7b4d03 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg index 988c06664e..dffce4fb57 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_petg_0.3mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg index 1ca784384a..dc2a209439 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.1mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg index 5a22723bfd..2be55e2833 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg index 76b9af883d..59282d3106 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pla_0.3mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg index d4cb4e3f0a..4323b77ec4 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_pp_0.2mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 brim_width = 20 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg index 5606af1f31..ece877f854 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg index ffdc37f93f..2d09d9d238 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,16 +6,16 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg index d900773976..0db917b92d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tough-pla_0.3mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 60 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg index f7a360beaa..d9dfd5cd98 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.4_tpu_0.2mm.inst.cfg @@ -6,18 +6,18 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' infill_sparse_density = 10 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.9 skin_material_flow_layer_0 = 90 speed_layer_0 = 20 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg index b5bb6abc8f..b69e32f1e9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_abs_0.2mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg index 9908a3bb85..6673183133 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_cpe_0.2mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg index a6b9e84f6c..003f677c38 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_nylon_0.2mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg index 57355ea4f1..bca943771d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.2mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg index 134a7c2684..80438d98cc 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_petg_0.4mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg index 536aed0d0d..4e1209ffbe 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.2mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg index a6e58a1a62..f40b4dd9b9 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_pla_0.4mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg index ed182ab57d..f246bdf444 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg index 70a6f9925d..4666c8410f 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,17 +6,17 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.965 speed_print = 50 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg index 7db0c220f4..4a725ff92c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.2mm.inst.cfg @@ -6,18 +6,18 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' infill_sparse_density = 10 inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.9 skin_material_flow_layer_0 = 90 speed_layer_0 = 20 diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg new file mode 100644 index 0000000000..e155bf208d --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.3mm.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = ultimaker_factor4 +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = verydraft +setting_version = 25 +type = quality +variant = AA 0.8 +weight = -3 + +[values] +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' +infill_sparse_density = 20 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 +skin_material_flow = =material_flow * 0.9 +skin_material_flow_layer_0 = 90 +speed_layer_0 = 20 +speed_print = 35 + diff --git a/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg new file mode 100644 index 0000000000..0edebd81f9 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_aa0.8_tpu_0.4mm.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = ultimaker_factor4 +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = superdraft +setting_version = 25 +type = quality +variant = AA 0.8 +weight = -4 + +[values] +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +infill_pattern = ='zigzag' if infill_sparse_density > 50 else 'cross_3d' +infill_sparse_density = 20 +inset_direction = outside_in +material_print_temperature = =default_material_print_temperature + 8 +max_flow_acceleration = 1 +skin_material_flow = =material_flow * 0.9 +skin_material_flow_layer_0 = 90 +speed_layer_0 = 20 +speed_print = 35 + diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg index bae4a519f3..9acd127519 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.15mm.inst.cfg @@ -6,26 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg index 95b7c1856d..2a69207d56 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.1mm.inst.cfg @@ -6,27 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 -speed_print = 50 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg index 8de45aa01b..6ddbf24df5 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.2mm.inst.cfg @@ -6,27 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 -speed_print = 50 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg index be24017486..4d279c17ef 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.4_pva_0.3mm.inst.cfg @@ -6,27 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 -speed_print = 40 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg index 1e1ab101f4..50756c0791 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.2mm.inst.cfg @@ -6,26 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg index 2ae11eb441..888b197ebb 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.3mm.inst.cfg @@ -6,26 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg index 448152ca8e..7344c86a0a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_bb0.8_pva_0.4mm.inst.cfg @@ -6,26 +6,38 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +acceleration_print = 1000.0 acceleration_support_bottom = 100 -acceleration_support_interface = 1500 +acceleration_support_interface = 1000 brim_replaces_support = False build_volume_temperature = =40 if extruders_enabled_count > 1 else 35 default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 -initial_layer_line_width_factor = 150 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +gradual_support_infill_steps = 0 +initial_layer_line_width_factor = 125 +jerk_print = 10 +material_flow_layer_0 = 90 +max_flow_acceleration = 1 minimum_support_area = 4 +prime_tower_flow = 90 prime_tower_min_volume = 15 +retraction_min_travel = 5.0 +retraction_prime_speed = 10.0 skin_material_flow = =material_flow * 0.93 +speed_print = 30 +support_angle = 45 +support_infill_rate = 20 support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height support_interface_offset = 1 support_offset = 3 +support_xy_distance = 2 support_z_distance = 0 +switch_extruder_prime_speed = 10.0 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg index 40f9516580..1f224bdc6d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg index a9616d2c56..e5394aa146 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg index d0dacd043c..aea58f1851 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg index ff2b894cb8..9d38d3bb53 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..6a37013164 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +inset_direction = outside_in +max_flow_acceleration = 1 +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg index 3f00103ddd..87191547f6 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.4_petcf_0.2mm.inst.cfg @@ -6,19 +6,19 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 cool_fan_speed_max = =cool_fan_speed +gradual_flow_discretisation_step_size = 0.5 +gradual_flow_enabled = True infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 material_shrinkage_percentage_z = 100.15 +max_flow_acceleration = 0.1 skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg index 74915d58be..5c2b1c670d 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg index 7b6a444531..b84a55cc2e 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg index d6140b680a..6b7d35fe30 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg index 4b82f05342..6470cc86bb 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..c19753d2f3 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +inset_direction = outside_in +max_flow_acceleration = 1 +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg index b33a4c38e3..6135812dc6 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_petcf_0.2mm.inst.cfg @@ -6,19 +6,19 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 cool_fan_speed_max = =cool_fan_speed +gradual_flow_discretisation_step_size = 0.5 +gradual_flow_enabled = True infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 material_shrinkage_percentage_z = 100.15 +max_flow_acceleration = 0.1 skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg index 8e4a105358..5718adf5e5 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.2mm.inst.cfg @@ -7,15 +7,15 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg index a168b8f7d0..cd9ccb0ead 100644 --- a/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_cc0.6_pla_0.3mm.inst.cfg @@ -7,15 +7,15 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True inset_direction = outside_in +max_flow_acceleration = 1 skin_material_flow = =material_flow * 0.93 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg index 7a88390184..d974cbf5fa 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg index 44783fa788..b40518bcef 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg index 6b192914f3..eb1ac51ba2 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg index 09e179a68b..d2a56ff51a 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg index 6aa1be79a3..2e2d91c49c 100644 --- a/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_global_Verydraft_Quality.inst.cfg @@ -1,12 +1,12 @@ [general] definition = ultimaker_factor4 -name = Sprint +name = Extra Fast version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg index 8204135cc0..b4b4514265 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_cffpps_0.2mm.inst.cfg @@ -6,18 +6,19 @@ version = 4 [metadata] material = generic_cffpps quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = HT 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.1 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 adhesion_type = brim +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True infill_wall_line_count = 1 +max_flow_acceleration = 1 retraction_combing_max_distance = 2 +roofing_material_flow = =material_flow skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..3f567dc761 --- /dev/null +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_factor4 +name = Fast +version = 4 + +[metadata] +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = HT 0.6 +weight = -2 + +[values] +gradual_flow_discretisation_step_size = 0.1 +gradual_flow_enabled = True +inset_direction = outside_in +max_flow_acceleration = 1 +skin_material_flow = =material_flow * 0.965 + diff --git a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg index aa4022bc5d..ff09c1a087 100644 --- a/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_factor4/um_f4_ht0.6_petcf_0.2mm.inst.cfg @@ -6,19 +6,19 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = HT 0.6 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.5 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 0.1 cool_fan_speed_max = =cool_fan_speed +gradual_flow_discretisation_step_size = 0.5 +gradual_flow_enabled = True infill_wall_line_count = 1 material_shrinkage_percentage = 100.15 material_shrinkage_percentage_z = 100.15 +max_flow_acceleration = 0.1 skin_material_flow = =material_flow * 0.93 speed_print = 60 xy_offset = =machine_nozzle_size * -0.25 diff --git a/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..bfe9677153 --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_1a_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,68 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1A +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg index 65218afbda..e1c50fdcd9 100644 --- a/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1a_um-pla-175_0.2mm.inst.cfg @@ -6,45 +6,38 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1A weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -infill_sparse_density = 15 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 +raft_interface_infill_overlap = 25 raft_interface_layers = 1 raft_interface_line_spacing = 0.75 raft_interface_speed = 60 raft_interface_thickness = 0.2 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -57,28 +50,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..3912e248de --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_1a_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1A +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_thickness = 0.2 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_method/um_method_1c_um-nylon-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-nylon-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..23c39883a3 --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_1c_um-nylon-cf-175_0.2mm.inst.cfg @@ -0,0 +1,60 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_max = 65 +cool_min_layer_time = 3.5 +cool_min_speed = 7 +cool_min_temperature = =default_material_print_temperature-5 +initial_layer_line_width_factor = 120 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.18 +raft_base_infill_overlap = 5 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_speed = =raft_speed * 7 +raft_interface_z_offset = -0.08 +raft_surface_flow = 105 +raft_surface_infill_overlap = 35 +raft_surface_line_spacing = 0.42 +raft_surface_speed = =raft_speed * 7 +raft_surface_thickness = 0.27 +raft_surface_z_offset = -0.08 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_rate = 12.0 +support_line_width = =line_width * 0.75 +support_material_flow = 90 +support_roof_density = 85 +support_xy_distance = 0.3 +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg index fd1f868b7a..a59ea56a43 100644 --- a/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 @@ -16,39 +16,28 @@ cool_fan_enabled = False material_final_print_temperature = =default_material_print_temperature-5 material_initial_print_temperature = =default_material_print_temperature-5 raft_airgap = 0.3 -raft_base_line_spacing = 3 -raft_base_line_width = 1 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 raft_base_speed = 10 -raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.5 -raft_base_wall_count = =3 if extruder_nr == support_extruder_nr else 1 -retract_at_layer_change = True +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 retraction_amount = 0.5 retraction_min_travel = 3.2 -roofing_material_flow = 100 small_skin_width = 3.6 -speed_prime_tower = 30.0 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 55 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 -support_fan_enable = False support_infill_rate = 12.0 -support_interface_enable = True -support_interface_pattern = lines -support_line_width = 0.3 -support_pattern = lines -support_roof_density = 97 -support_roof_height = 1.015 -support_roof_line_width = 0.25 -support_use_towers = False -support_xy_distance = 0.2 -support_xy_distance_overhang = 0.15 +support_line_width = =line_width * 0.75 +support_roof_density = 85 +support_xy_distance = 0.3 support_z_distance = 0.25 diff --git a/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..8d45fcd6dd --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_1c_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,68 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg index ca62933f25..1b195f701c 100644 --- a/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_1c_um-pla-175_0.2mm.inst.cfg @@ -6,45 +6,38 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -infill_sparse_density = 15 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 +raft_interface_infill_overlap = 25 raft_interface_layers = 1 raft_interface_line_spacing = 0.75 raft_interface_speed = 60 raft_interface_thickness = 0.2 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -57,28 +50,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..e5154f723a --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_1c_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_thickness = 0.2 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg index 40b591975c..3ae6f7e900 100644 --- a/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_2a_um-pva-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pva_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2A weight = -2 @@ -17,60 +17,52 @@ cool_fan_enabled = False cool_min_speed = 5 cool_min_temperature = =material_print_temperature initial_layer_line_width_factor = 300 -material_bed_temperature = 45 -material_bed_temperature_layer_0 = 50 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 220 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature +material_initial_print_temperature = =default_material_print_temperature prime_tower_flow = 125 raft_airgap = 0.0 -raft_base_wall_count = 4 raft_interface_flow = 110 raft_interface_infill_overlap = 50 raft_interface_layers = 1 -raft_interface_line_spacing = 0.9 -raft_interface_line_width = 1 -raft_interface_speed = 15 -raft_interface_z_offset = -0.05 +raft_interface_line_spacing = =1.08 if raft_base_thickness == 0.5 else 0.9 +raft_interface_line_width = =1.2 if raft_base_thickness == 0.5 else 1 +raft_interface_speed = =speed_print * 3/10 +raft_interface_z_offset = =-0.1 if raft_base_thickness == 0.5 else -0.05 raft_surface_flow = 110 raft_surface_infill_overlap = 50 raft_surface_line_spacing = 0.44 -raft_surface_line_width = 0.4 -raft_surface_speed = 20 +raft_surface_speed = =speed_print * 2/5 raft_surface_thickness = 0.27 raft_surface_z_offset = -0.075 +retraction_min_travel = 5 retraction_speed = 1.75 -speed_layer_0 = 10 -speed_prime_tower = 10 +speed_layer_0 = =speed_print * 1/5 +speed_prime_tower = =speed_print * 1/5 speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 10 -speed_support_interface = 50 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/5 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_print support_angle = 50 support_bottom_density = 99 -support_bottom_height = 0.406 support_bottom_line_width = 1.2 -support_bottom_wall_count = 2 +support_bottom_wall_count = =support_wall_count support_conical_angle = 20 +support_conical_enabled = True support_conical_min_width = 20 support_fan_enable = False support_infill_density_multiplier_initial_layer = 2 support_infill_rate = 12 -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_interface_offset = 0.8 -support_pattern = grid +support_interface_offset = 0 +support_interface_wall_count = 2 +support_offset = 1.8 +support_pattern = zigzag support_roof_density = 95 support_roof_height = =layer_height*8 -support_wall_count = 2 -support_xy_distance = 0.2 -support_z_distance = 0 +support_roof_line_width = 0.4 switch_extruder_extra_prime_amount = 1 switch_extruder_retraction_amount = 2.5 switch_extruder_retraction_speeds = 3 diff --git a/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg index 433d839545..8f33228f8e 100644 --- a/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg b/resources/quality/ultimaker_method/um_method_global_Fast_Quality.inst.cfg similarity index 50% rename from resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg rename to resources/quality/ultimaker_method/um_method_global_Fast_Quality.inst.cfg index 8532b1d9cb..e5651b473c 100644 --- a/resources/quality/zyyx/zyyx_agile_global_fast.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_global_Fast_Quality.inst.cfg @@ -1,15 +1,15 @@ [general] -definition = zyyx_agile -name = Fast +definition = ultimaker_method +name = Normal version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality -weight = 1 +weight = -2 [values] -layer_height = 0.3 +layer_height = 0.1524 diff --git a/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg new file mode 100644 index 0000000000..835a78b398 --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg @@ -0,0 +1,39 @@ +[general] +definition = ultimaker_method +name = Normal - Experimental +version = 4 + +[metadata] +is_experimental = True +material = basf_ultrafuse_316l_175 +quality_type = fast +setting_version = 25 +type = quality +variant = LABS +weight = -1 + +[values] +adhesion_type = skirt +bottom_thickness = =top_bottom_thickness +cool_fan_full_at_height = 0 +infill_angles = [45,135] +infill_overlap = 25 +infill_sparse_density = 100 +initial_layer_line_width_factor = 110 +layer_height_0 = =layer_height * 1.5 +material_flow_layer_0 = 110 +material_initial_print_temperature = 245 +retraction_amount = 0.75 +retraction_speed = 5 +roofing_line_width = 0.4 +skin_line_width = 0.45 +skin_material_flow_layer_0 = 110 +skin_overlap = 20.0 +skirt_brim_minimal_length = 100.0 +speed_print = 25 +support_enable = False +top_bottom_thickness = =math.floor(layer_height * 2000)/1000.0 +top_thickness = =top_bottom_thickness +wall_0_material_flow_layer_0 = 110 +wall_x_material_flow_layer_0 = 110 + diff --git a/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..9e43d34d96 --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_method +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = jabil_tpe_sebs_1300_95a_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +infill_sparse_density = 50 +raft_airgap = 0.22 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 +raft_interface_speed = =speed_print * 1/2 +raft_interface_z_offset = -0.1 +raft_surface_flow = 110 +raft_surface_infill_overlap = 50 +raft_surface_speed = =speed_print * 1/2 +raft_surface_z_offset = -0.075 +speed_layer_0 = =speed_print * 1/4 +speed_prime_tower = =speed_print * 3/4 +speed_print = 40 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/4 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_print +support_bottom_enable = False +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.26 +support_z_distance = 0.22 +wall_line_width = 0.5 +wall_thickness = =wall_line_width * 4 + diff --git a/resources/quality/ultimaker_method/um_method_labs_um-nylon-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-nylon-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..7989841099 --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_labs_um-nylon-cf-175_0.2mm.inst.cfg @@ -0,0 +1,60 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_max = 65 +cool_min_layer_time = 3.5 +cool_min_speed = 7 +cool_min_temperature = =default_material_print_temperature-5 +initial_layer_line_width_factor = 120 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.18 +raft_base_infill_overlap = 5 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_speed = =raft_speed * 7 +raft_interface_z_offset = -0.08 +raft_surface_flow = 105 +raft_surface_infill_overlap = 35 +raft_surface_line_spacing = 0.42 +raft_surface_speed = =raft_speed * 7 +raft_surface_thickness = 0.27 +raft_surface_z_offset = -0.08 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_rate = 12.0 +support_line_width = =line_width * 0.75 +support_material_flow = 90 +support_roof_density = 85 +support_xy_distance = 0.3 +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 8fa5f11f67..f7d16c16e6 100644 --- a/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 @@ -16,39 +16,28 @@ cool_fan_enabled = False material_final_print_temperature = =default_material_print_temperature-5 material_initial_print_temperature = =default_material_print_temperature-5 raft_airgap = 0.3 -raft_base_line_spacing = 3 -raft_base_line_width = 1 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 raft_base_speed = 10 -raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.5 -raft_base_wall_count = =3 if extruder_nr == support_extruder_nr else 1 -retract_at_layer_change = True +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 retraction_amount = 0.5 retraction_min_travel = 3.2 -roofing_material_flow = 100 small_skin_width = 3.6 -speed_prime_tower = 30.0 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 55 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 -support_fan_enable = False support_infill_rate = 12.0 -support_interface_enable = True -support_interface_pattern = lines -support_line_width = 0.3 -support_pattern = lines -support_roof_density = 97 -support_roof_height = 1.015 -support_roof_line_width = 0.25 -support_use_towers = False -support_xy_distance = 0.2 -support_xy_distance_overhang = 0.15 +support_line_width = =line_width * 0.75 +support_roof_density = 85 +support_xy_distance = 0.3 support_z_distance = 0.25 diff --git a/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..83117c3e19 --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_labs_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,68 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg index 7f6b2a7be2..42410960cf 100644 --- a/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_method/um_method_labs_um-pla-175_0.2mm.inst.cfg @@ -6,45 +6,38 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -infill_sparse_density = 15 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 +raft_interface_infill_overlap = 25 raft_interface_layers = 1 raft_interface_line_spacing = 0.75 raft_interface_speed = 60 raft_interface_thickness = 0.2 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -57,28 +50,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..a07884431f --- /dev/null +++ b/resources/quality/ultimaker_method/um_method_labs_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = ultimaker_method +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_thickness = 0.2 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..0d634dcc79 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1a_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,68 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1A +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg index 9db56941cb..1a2585304b 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1a_um-pla-175_0.2mm.inst.cfg @@ -6,45 +6,38 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1A weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -infill_sparse_density = 15 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 +raft_interface_infill_overlap = 25 raft_interface_layers = 1 raft_interface_line_spacing = 0.75 raft_interface_speed = 60 raft_interface_thickness = 0.2 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -57,28 +50,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..40ef5cc0d0 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1a_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1A +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_thickness = 0.2 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..ce2b9acbe9 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abs-175_0.2mm.inst.cfg @@ -0,0 +1,63 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed = 85.0 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 15 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +material_final_print_temperature = 235 +material_initial_print_temperature = 235 +material_print_temperature_layer_0 = 250 +raft_airgap = =0.15 if extruder_nr == support_extruder_nr else 0 +raft_base_speed = 10 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = 90 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_line_width = 0.3 +support_material_flow = =0.85*material_flow +support_roof_density = 85 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.15 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg index a7746bf442..ebd4a4847b 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -28,36 +27,30 @@ raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 raft_surface_z_offset = =-0.075 if extruder_nr == support_extruder_nr else 0 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 55 +speed_roofing = =speed_print * 11/24 speed_support = =speed_print -speed_topbottom = 85 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_topbottom = =speed_print * 17/24 +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 52 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_fan_enable = False support_infill_angles = [ 45,45,45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_offset = 1.2 -support_interface_pattern = lines support_line_width = 0.35 support_material_flow = 90 -support_pattern = lines support_roof_density = 82 -support_roof_height = 1.015 -support_roof_line_width = 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.25 if extruder_nr == support_extruder_nr else 0.15 +support_roof_line_width = 0.4 +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.25 support_z_distance = 0.15 wall_overhang_angle = 30 -wall_overhang_speed_factor = 50 +wall_overhang_speed_factors = [50] diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg index d52a19cb97..218681fc8a 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-absr-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 75 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -21,45 +20,43 @@ cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 8 cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) cool_min_temperature = 250 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_print_temperature = =255 if extruder_nr == support_extruder_nr else 260 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature-5 if extruder_nr == support_extruder_nr else default_material_print_temperature raft_airgap = =0.16 if extruder_nr == support_extruder_nr else 0 raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 support_interface_density = 85 support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = 85 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False -support_xy_distance = =0.35 if extruder_nr == support_extruder_nr else 0.2 +support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg index e0ad6f46aa..8278d40f9d 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-asa-175_0.2mm.inst.cfg @@ -1,20 +1,18 @@ [general] definition = ultimaker_methodx -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 85.0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -30,38 +28,34 @@ retraction_amount = 0.5 retraction_min_travel = 3.2 skin_overlap = 10 small_skin_width = 3.6 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 -speed_wall_x = 25 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = =0.85*material_flow support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..e99c8d1f8c --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon-cf-175_0.2mm.inst.cfg @@ -0,0 +1,60 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_max = 65 +cool_min_layer_time = 3.5 +cool_min_speed = 7 +cool_min_temperature = =default_material_print_temperature-5 +initial_layer_line_width_factor = 120 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.18 +raft_base_infill_overlap = 5 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_speed = =raft_speed * 7 +raft_interface_z_offset = -0.08 +raft_surface_flow = 105 +raft_surface_infill_overlap = 35 +raft_surface_line_spacing = 0.42 +raft_surface_speed = =raft_speed * 7 +raft_surface_thickness = 0.27 +raft_surface_z_offset = -0.08 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_rate = 12.0 +support_line_width = =line_width * 0.75 +support_material_flow = 90 +support_roof_density = 85 +support_xy_distance = 0.3 +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg index b994ab7e43..4c68b72524 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,54 +6,38 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] cool_fan_enabled = False -cool_min_temperature = =material_print_temperature-5 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -min_wall_line_width = 0.35 -raft_airgap = =0.2 if extruder_nr == support_extruder_nr else 0 -raft_base_line_spacing = 3 -raft_base_line_width = =1 if extruder_nr == support_extruder_nr else 1.2 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 raft_base_speed = 10 -raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_base_wall_count = =2 if extruder_nr == support_extruder_nr else 1 -raft_interface_layers = =1 if extruder_nr == support_extruder_nr else 2 -raft_interface_line_spacing = =1 if extruder_nr == support_extruder_nr else 0.9 -raft_surface_layers = =3 if extruder_nr == support_extruder_nr else 2 -raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 retraction_amount = 0.5 retraction_min_travel = 3.2 small_skin_width = 3.6 -speed_prime_tower = 30.0 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 55 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_rate = 12.0 -support_interface_enable = True -support_interface_pattern = lines -support_line_width = 0.3 -support_material_flow = 90 -support_pattern = lines +support_line_width = =line_width * 0.75 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.3 if extruder_nr == support_extruder_nr else 0.15 -support_z_distance = 0.35 -wall_overhang_angle = 30 -wall_overhang_speed_factor = 60 +support_xy_distance = 0.3 +support_z_distance = 0.25 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-pc-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pc-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..b06c0a118c --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pc-abs-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_bottom = 25 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-pc-abs-fr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pc-abs-fr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..e9799d01a4 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pc-abs-fr-175_0.2mm.inst.cfg @@ -0,0 +1,67 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 1/2 +speed_support_bottom = =speed_support * 1/4 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_distance = =support_line_distance +support_bottom_line_width = 0.8 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..966f8909d9 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,68 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg index a75826d1ae..f5c49dc6fe 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-pla-175_0.2mm.inst.cfg @@ -6,45 +6,38 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -infill_sparse_density = 15 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 +raft_interface_infill_overlap = 25 raft_interface_layers = 1 raft_interface_line_spacing = 0.75 raft_interface_speed = 60 raft_interface_thickness = 0.2 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -57,28 +50,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..cd26956c1e --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1c_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_thickness = 0.2 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..b4517c46ad --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-abs-175_0.2mm.inst.cfg @@ -0,0 +1,63 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed = 85.0 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 15 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +material_final_print_temperature = 235 +material_initial_print_temperature = 235 +material_print_temperature_layer_0 = 250 +raft_airgap = =0.15 if extruder_nr == support_extruder_nr else 0 +raft_base_speed = 10 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = 90 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_line_width = 0.3 +support_material_flow = =0.85*material_flow +support_roof_density = 85 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.15 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg index a18f008ac7..9cbf6b90cc 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1XA weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 75 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -21,45 +20,43 @@ cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 8 cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) cool_min_temperature = 250 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_print_temperature = =255 if extruder_nr == support_extruder_nr else 260 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature-5 if extruder_nr == support_extruder_nr else default_material_print_temperature raft_airgap = =0.16 if extruder_nr == support_extruder_nr else 0 raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 support_interface_density = 85 support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = 85 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False -support_xy_distance = =0.35 if extruder_nr == support_extruder_nr else 0.2 +support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg index 675c411f85..a94b76102b 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-asa-175_0.2mm.inst.cfg @@ -1,20 +1,18 @@ [general] definition = ultimaker_methodx -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1XA weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 85.0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -30,38 +28,34 @@ retraction_amount = 0.5 retraction_min_travel = 3.2 skin_overlap = 10 small_skin_width = 3.6 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 -speed_wall_x = 25 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = =0.85*material_flow support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-pc-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-pc-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..c982100438 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-pc-abs-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_bottom = 25 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..94b47e284c --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg @@ -0,0 +1,67 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 1/2 +speed_support_bottom = =speed_support * 1/4 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_distance = =support_line_distance +support_bottom_line_width = 0.8 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg index fe1a6de6b7..0d263f0a25 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2a_um-pva-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pva_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2A weight = -2 @@ -17,60 +17,52 @@ cool_fan_enabled = False cool_min_speed = 5 cool_min_temperature = =material_print_temperature initial_layer_line_width_factor = 300 -material_bed_temperature = 45 -material_bed_temperature_layer_0 = 50 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 220 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature +material_initial_print_temperature = =default_material_print_temperature prime_tower_flow = 125 raft_airgap = 0.0 -raft_base_wall_count = 4 raft_interface_flow = 110 raft_interface_infill_overlap = 50 raft_interface_layers = 1 -raft_interface_line_spacing = 0.9 -raft_interface_line_width = 1 -raft_interface_speed = 15 -raft_interface_z_offset = -0.05 +raft_interface_line_spacing = =1.08 if raft_base_thickness == 0.5 else 0.9 +raft_interface_line_width = =1.2 if raft_base_thickness == 0.5 else 1 +raft_interface_speed = =speed_print * 3/10 +raft_interface_z_offset = =-0.1 if raft_base_thickness == 0.5 else -0.05 raft_surface_flow = 110 raft_surface_infill_overlap = 50 raft_surface_line_spacing = 0.44 -raft_surface_line_width = 0.4 -raft_surface_speed = 20 +raft_surface_speed = =speed_print * 2/5 raft_surface_thickness = 0.27 raft_surface_z_offset = -0.075 +retraction_min_travel = 5 retraction_speed = 1.75 -speed_layer_0 = 10 -speed_prime_tower = 10 +speed_layer_0 = =speed_print * 1/5 +speed_prime_tower = =speed_print * 1/5 speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 10 -speed_support_interface = 50 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/5 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_print support_angle = 50 support_bottom_density = 99 -support_bottom_height = 0.406 support_bottom_line_width = 1.2 -support_bottom_wall_count = 2 +support_bottom_wall_count = =support_wall_count support_conical_angle = 20 +support_conical_enabled = True support_conical_min_width = 20 support_fan_enable = False support_infill_density_multiplier_initial_layer = 2 support_infill_rate = 12 -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_interface_offset = 0.8 -support_pattern = grid +support_interface_offset = 0 +support_interface_wall_count = 2 +support_offset = 1.8 +support_pattern = zigzag support_roof_density = 95 support_roof_height = =layer_height*8 -support_wall_count = 2 -support_xy_distance = 0.2 -support_z_distance = 0 +support_roof_line_width = 0.4 switch_extruder_extra_prime_amount = 1 switch_extruder_retraction_amount = 2.5 switch_extruder_retraction_speeds = 3 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg index 14b81d4b2b..4897ef28bc 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2XA weight = -2 @@ -16,20 +16,29 @@ brim_replaces_support = False cool_fan_enabled = False cool_min_temperature = =material_print_temperature raft_airgap = 0.0 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 +raft_interface_speed = 90 +raft_interface_z_offset = -0.1 retract_at_layer_change = True +retraction_min_travel = 5 speed_prime_tower = 25.0 speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 30 -speed_support_interface = 80 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 3/5 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_wall_0 support_bottom_wall_count = 5 +support_conical_angle = 20 +support_conical_enabled = True +support_conical_min_width = 20 support_fan_enable = False -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_wall_count = 1 -support_xy_distance = 0.2 +support_interface_offset = 0 +support_interface_wall_count = 2 +support_roof_height = =5*layer_height +support_roof_line_width = 0.25 +support_xy_distance_overhang = 0.15 diff --git a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg index 0c8ec95802..b0e46146a4 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_2xa_um-sr30-175_0.2mm.inst.cfg @@ -1,13 +1,12 @@ [general] definition = ultimaker_methodx -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2XA weight = -2 @@ -17,24 +16,31 @@ brim_replaces_support = False cool_fan_enabled = False cool_min_temperature = =material_print_temperature raft_airgap = 0.0 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 raft_interface_line_width = 0.7 -raft_interface_speed = 70 -raft_surface_speed = 90 +raft_interface_speed = =speed_print * 5/9 +raft_interface_z_offset = -0.1 +raft_surface_speed = =speed_print retract_at_layer_change = True retraction_amount = 0.5 -speed_prime_tower = 25.0 -speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 30 -speed_support_interface = 80 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +retraction_min_travel = 5 +speed_prime_tower = =speed_print * 1/3 +speed_print = 90 +speed_roofing = =speed_print * 5/9 +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/3 +speed_support_interface = =speed_print * 5/9 +speed_topbottom = =speed_print * 5/9 +speed_wall = =speed_print * 5/9 +speed_wall_0 = =speed_wall * 4/5 +speed_wall_x = =speed_wall support_bottom_wall_count = 5 +support_conical_angle = 20 +support_conical_enabled = True +support_conical_min_width = 20 support_fan_enable = False -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_wall_count = 1 -support_xy_distance = 0.2 +support_interface_offset = 0 +support_interface_wall_count = 2 +support_roof_height = =5*layer_height diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg index f3d1eea204..ff8c4b2f61 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodx/um_methodx_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_global_Fast_Quality.inst.cfg new file mode 100644 index 0000000000..1079e2356c --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_global_Fast_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodx +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.1524 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg new file mode 100644 index 0000000000..7b4b3bd02b --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_basf-ultrafuse-316l-175_0.15mm.inst.cfg @@ -0,0 +1,39 @@ +[general] +definition = ultimaker_methodx +name = Normal - Experimental +version = 4 + +[metadata] +is_experimental = True +material = basf_ultrafuse_316l_175 +quality_type = fast +setting_version = 25 +type = quality +variant = LABS +weight = -1 + +[values] +adhesion_type = skirt +bottom_thickness = =top_bottom_thickness +cool_fan_full_at_height = 0 +infill_angles = [45,135] +infill_overlap = 25 +infill_sparse_density = 100 +initial_layer_line_width_factor = 110 +layer_height_0 = =layer_height * 1.5 +material_flow_layer_0 = 110 +material_initial_print_temperature = 245 +retraction_amount = 0.75 +retraction_speed = 5 +roofing_line_width = 0.4 +skin_line_width = 0.45 +skin_material_flow_layer_0 = 110 +skin_overlap = 20.0 +skirt_brim_minimal_length = 100.0 +speed_print = 25 +support_enable = False +top_bottom_thickness = =math.floor(layer_height * 2000)/1000.0 +top_thickness = =top_bottom_thickness +wall_0_material_flow_layer_0 = 110 +wall_x_material_flow_layer_0 = 110 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..05f98ae042 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = jabil_tpe_sebs_1300_95a_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +infill_sparse_density = 50 +raft_airgap = 0.22 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 +raft_interface_speed = =speed_print * 1/2 +raft_interface_z_offset = -0.1 +raft_surface_flow = 110 +raft_surface_infill_overlap = 50 +raft_surface_speed = =speed_print * 1/2 +raft_surface_z_offset = -0.075 +speed_layer_0 = =speed_print * 1/4 +speed_prime_tower = =speed_print * 3/4 +speed_print = 40 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/4 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_print +support_bottom_enable = False +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.26 +support_z_distance = 0.22 +wall_line_width = 0.5 +wall_thickness = =wall_line_width * 4 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..d662c652d9 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg @@ -0,0 +1,58 @@ +[general] +definition = ultimaker_methodx +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = polymaker_polymax_pc_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 6 +cool_fan_speed_max = 100 +cool_min_layer_time = 8 +cool_min_layer_time_fan_speed_max = 5 +cool_min_speed = 10 +raft_airgap = 0.22 +raft_interface_fan_speed = 0 +raft_interface_line_spacing = 0.7 +raft_interface_line_width = 0.55 +raft_interface_speed = 25 +raft_interface_thickness = 0.25 +raft_surface_fan_speed = 0 +raft_surface_speed = 50 +raft_surface_thickness = 0.25 +speed_print = 50 +speed_wall_0 = 30 +speed_wall_x = =speed_wall +support_angle = 52 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_fan_enable = True +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 10 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_offset = 1.2 +support_interface_wall_count = 0 +support_line_width = 0.35 +support_material_flow = 90 +support_offset = 1.5 +support_roof_density = =extruderValue(support_roof_extruder_nr, 'support_interface_density') +support_roof_height = =support_interface_height +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 100 +support_xy_distance = 0.35 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..598c5f75c7 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abs-175_0.2mm.inst.cfg @@ -0,0 +1,63 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed = 85.0 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 15 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +material_final_print_temperature = 235 +material_initial_print_temperature = 235 +material_print_temperature_layer_0 = 250 +raft_airgap = =0.15 if extruder_nr == support_extruder_nr else 0 +raft_base_speed = 10 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = 90 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_line_width = 0.3 +support_material_flow = =0.85*material_flow +support_roof_density = 85 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.15 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg index a2b0e3b146..8bbec45a17 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -28,36 +27,30 @@ raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 raft_surface_z_offset = =-0.075 if extruder_nr == support_extruder_nr else 0 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 55 +speed_roofing = =speed_print * 11/24 speed_support = =speed_print -speed_topbottom = 85 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_topbottom = =speed_print * 17/24 +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 52 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_fan_enable = False support_infill_angles = [ 45,45,45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_offset = 1.2 -support_interface_pattern = lines support_line_width = 0.35 support_material_flow = 90 -support_pattern = lines support_roof_density = 82 -support_roof_height = 1.015 -support_roof_line_width = 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.25 if extruder_nr == support_extruder_nr else 0.15 +support_roof_line_width = 0.4 +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.25 support_z_distance = 0.15 wall_overhang_angle = 30 -wall_overhang_speed_factor = 50 +wall_overhang_speed_factors = [50] diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg index e0a3f5e715..b2b33d0946 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-absr-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 75 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -21,45 +20,43 @@ cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 8 cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) cool_min_temperature = 250 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_print_temperature = =255 if extruder_nr == support_extruder_nr else 260 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature-5 if extruder_nr == support_extruder_nr else default_material_print_temperature raft_airgap = =0.16 if extruder_nr == support_extruder_nr else 0 raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 support_interface_density = 85 support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = 85 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False -support_xy_distance = =0.35 if extruder_nr == support_extruder_nr else 0.2 +support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg index 5316aece19..e307965ddc 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-asa-175_0.2mm.inst.cfg @@ -1,20 +1,18 @@ [general] definition = ultimaker_methodx -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 85.0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -30,38 +28,34 @@ retraction_amount = 0.5 retraction_min_travel = 3.2 skin_overlap = 10 small_skin_width = 3.6 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 -speed_wall_x = 25 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = =0.85*material_flow support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..37a0d4931a --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon-cf-175_0.2mm.inst.cfg @@ -0,0 +1,60 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_max = 65 +cool_min_layer_time = 3.5 +cool_min_speed = 7 +cool_min_temperature = =default_material_print_temperature-5 +initial_layer_line_width_factor = 120 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.18 +raft_base_infill_overlap = 5 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_speed = =raft_speed * 7 +raft_interface_z_offset = -0.08 +raft_surface_flow = 105 +raft_surface_infill_overlap = 35 +raft_surface_line_spacing = 0.42 +raft_surface_speed = =raft_speed * 7 +raft_surface_thickness = 0.27 +raft_surface_z_offset = -0.08 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_rate = 12.0 +support_line_width = =line_width * 0.75 +support_material_flow = 90 +support_roof_density = 85 +support_xy_distance = 0.3 +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 39c745e989..f71ad6fa7a 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,54 +6,38 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] cool_fan_enabled = False -cool_min_temperature = =material_print_temperature-5 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -min_wall_line_width = 0.35 -raft_airgap = =0.2 if extruder_nr == support_extruder_nr else 0 -raft_base_line_spacing = 3 -raft_base_line_width = =1 if extruder_nr == support_extruder_nr else 1.2 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 raft_base_speed = 10 -raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_base_wall_count = =2 if extruder_nr == support_extruder_nr else 1 -raft_interface_layers = =1 if extruder_nr == support_extruder_nr else 2 -raft_interface_line_spacing = =1 if extruder_nr == support_extruder_nr else 0.9 -raft_surface_layers = =3 if extruder_nr == support_extruder_nr else 2 -raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 retraction_amount = 0.5 retraction_min_travel = 3.2 small_skin_width = 3.6 -speed_prime_tower = 30.0 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 55 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_rate = 12.0 -support_interface_enable = True -support_interface_pattern = lines -support_line_width = 0.3 -support_material_flow = 90 -support_pattern = lines +support_line_width = =line_width * 0.75 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.3 if extruder_nr == support_extruder_nr else 0.15 -support_z_distance = 0.35 -wall_overhang_angle = 30 -wall_overhang_speed_factor = 60 +support_xy_distance = 0.3 +support_z_distance = 0.25 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-pc-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pc-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..530692aae6 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pc-abs-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_bottom = 25 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-pc-abs-fr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pc-abs-fr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..9c67189c03 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pc-abs-fr-175_0.2mm.inst.cfg @@ -0,0 +1,67 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 1/2 +speed_support_bottom = =speed_support * 1/4 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_distance = =support_line_distance +support_bottom_line_width = 0.8 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..80dca95b03 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,68 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_interface_thickness = 0.2 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg index 44b777ea77..6c4d28c820 100644 --- a/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-pla-175_0.2mm.inst.cfg @@ -6,45 +6,38 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -infill_sparse_density = 15 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 +raft_interface_infill_overlap = 25 raft_interface_layers = 1 raft_interface_line_spacing = 0.75 raft_interface_speed = 60 raft_interface_thickness = 0.2 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -57,28 +50,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..12584c2181 --- /dev/null +++ b/resources/quality/ultimaker_methodx/um_methodx_labs_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,74 @@ +[general] +definition = ultimaker_methodx +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_layers = 1 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_thickness = 0.2 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..4ab7b5de33 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1A +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg index c1f049384a..cbb6af07bd 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-pla-175_0.2mm.inst.cfg @@ -6,48 +6,36 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1A weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -default_material_bed_temperature = 45 -infill_sparse_density = 15 -material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 -raft_interface_layers = 2 -raft_interface_line_spacing = 0.7 +raft_interface_infill_overlap = 25 +raft_interface_line_spacing = 0.75 raft_interface_speed = 60 -raft_interface_thickness = 0.3 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -60,28 +48,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..852aded271 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1a_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,72 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1A +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..830d3b3d38 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abs-175_0.2mm.inst.cfg @@ -0,0 +1,63 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed = 85.0 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 15 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +material_final_print_temperature = 235 +material_initial_print_temperature = 235 +material_print_temperature_layer_0 = 250 +raft_airgap = =0.15 if extruder_nr == support_extruder_nr else 0 +raft_base_speed = 10 +raft_surface_speed = 90 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_travel_layer_0 = 250 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_line_width = 0.3 +support_material_flow = =0.85*material_flow +support_roof_density = 85 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.15 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg index fd323798d9..e003f86bbb 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-abscf-175_0.2mm.inst.cfg @@ -6,15 +6,14 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] build_volume_temperature = 85 -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -30,36 +29,30 @@ raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 raft_surface_z_offset = =-0.075 if extruder_nr == support_extruder_nr else 0 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 55 +speed_roofing = =speed_print * 11/24 speed_support = =speed_print -speed_topbottom = 85 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_topbottom = =speed_print * 17/24 +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 52 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_fan_enable = False support_infill_angles = [ 45,45,45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_offset = 1.2 -support_interface_pattern = lines support_line_width = 0.35 support_material_flow = 90 -support_pattern = lines support_roof_density = 82 -support_roof_height = 1.015 -support_roof_line_width = 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.25 if extruder_nr == support_extruder_nr else 0.15 +support_roof_line_width = 0.4 +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.25 support_z_distance = 0.15 wall_overhang_angle = 30 -wall_overhang_speed_factor = 50 +wall_overhang_speed_factors = [50] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg index 8148f54948..0dd5b25d1e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-absr-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 75 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -21,44 +20,42 @@ cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 8 cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) cool_min_temperature = 250 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_print_temperature = =255 if extruder_nr == support_extruder_nr else 260 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature-5 if extruder_nr == support_extruder_nr else default_material_print_temperature raft_airgap = =0.18 if extruder_nr == support_extruder_nr else 0 -raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 support_interface_density = 85 support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = 85 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False -support_xy_distance = =0.35 if extruder_nr == support_extruder_nr else 0.2 +support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg index e581e2dbd1..b751652a5b 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-asa-175_0.2mm.inst.cfg @@ -1,20 +1,18 @@ [general] definition = ultimaker_methodxl -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 85.0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -29,39 +27,35 @@ retraction_amount = 0.5 retraction_min_travel = 3.2 skin_overlap = 10 small_skin_width = 3.6 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 500 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 speed_travel_layer_0 = 250 -speed_wall = 25 -speed_wall_0 = 20 -speed_wall_x = 25 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = =0.85*material_flow support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..2eee4395d6 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon-cf-175_0.2mm.inst.cfg @@ -0,0 +1,60 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_max = 65 +cool_min_layer_time = 3.5 +cool_min_speed = 7 +cool_min_temperature = =default_material_print_temperature-5 +initial_layer_line_width_factor = 120 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.18 +raft_base_infill_overlap = 5 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_speed = =raft_speed * 7 +raft_interface_z_offset = -0.08 +raft_surface_flow = 105 +raft_surface_infill_overlap = 35 +raft_surface_line_spacing = 0.42 +raft_surface_speed = =raft_speed * 7 +raft_surface_thickness = 0.27 +raft_surface_z_offset = -0.08 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_rate = 12.0 +support_line_width = =line_width * 0.75 +support_material_flow = 90 +support_roof_density = 85 +support_xy_distance = 0.3 +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg index 8560794dae..d45e4eca83 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,54 +6,38 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] cool_fan_enabled = False -cool_min_temperature = =material_print_temperature-5 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -min_wall_line_width = 0.35 -raft_airgap = =0.2 if extruder_nr == support_extruder_nr else 0 -raft_base_line_spacing = 3 -raft_base_line_width = =1 if extruder_nr == support_extruder_nr else 1.2 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 raft_base_speed = 10 -raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_base_wall_count = =2 if extruder_nr == support_extruder_nr else 1 -raft_interface_layers = =1 if extruder_nr == support_extruder_nr else 2 -raft_interface_line_spacing = =1 if extruder_nr == support_extruder_nr else 0.9 -raft_surface_layers = =3 if extruder_nr == support_extruder_nr else 2 -raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 retraction_amount = 0.5 retraction_min_travel = 3.2 small_skin_width = 3.6 -speed_prime_tower = 30.0 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 55 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_rate = 12.0 -support_interface_enable = True -support_interface_pattern = lines -support_line_width = 0.3 -support_material_flow = 90 -support_pattern = lines +support_line_width = =line_width * 0.75 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.3 if extruder_nr == support_extruder_nr else 0.15 -support_z_distance = 0.35 -wall_overhang_angle = 30 -wall_overhang_speed_factor = 60 +support_xy_distance = 0.3 +support_z_distance = 0.25 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..1a9a33666d --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-175_0.2mm.inst.cfg @@ -0,0 +1,65 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_bottom = 25 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-fr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-fr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..4fddffa28f --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pc-abs-fr-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 1/2 +speed_support_bottom = =speed_support * 1/4 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_distance = =support_line_distance +support_bottom_line_width = 0.8 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..18b6ca2564 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg index 9ddfc18600..3dac00ce90 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-pla-175_0.2mm.inst.cfg @@ -6,48 +6,36 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1C weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -default_material_bed_temperature = 45 -infill_sparse_density = 15 -material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 -raft_interface_layers = 2 -raft_interface_line_spacing = 0.7 +raft_interface_infill_overlap = 25 +raft_interface_line_spacing = 0.75 raft_interface_speed = 60 -raft_interface_thickness = 0.3 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -60,28 +48,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..1034cc5c92 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1c_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,72 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1C +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..92df6ce0d8 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-abs-175_0.2mm.inst.cfg @@ -0,0 +1,63 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed = 85.0 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 15 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +material_final_print_temperature = 235 +material_initial_print_temperature = 235 +material_print_temperature_layer_0 = 250 +raft_airgap = =0.15 if extruder_nr == support_extruder_nr else 0 +raft_base_speed = 10 +raft_surface_speed = 90 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_travel_layer_0 = 250 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_line_width = 0.3 +support_material_flow = =0.85*material_flow +support_roof_density = 85 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.15 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg index f6b0fce699..7bbd23c910 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-absr-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1XA weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 75 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -21,44 +20,42 @@ cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 8 cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) cool_min_temperature = 250 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_print_temperature = =255 if extruder_nr == support_extruder_nr else 260 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature-5 if extruder_nr == support_extruder_nr else default_material_print_temperature raft_airgap = =0.18 if extruder_nr == support_extruder_nr else 0 -raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 support_interface_density = 85 support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = 85 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False -support_xy_distance = =0.35 if extruder_nr == support_extruder_nr else 0.2 +support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg index f84dfcf5f9..bf905dcc48 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-asa-175_0.2mm.inst.cfg @@ -1,20 +1,18 @@ [general] definition = ultimaker_methodxl -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1XA weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 85.0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -29,39 +27,35 @@ retraction_amount = 0.5 retraction_min_travel = 3.2 skin_overlap = 10 small_skin_width = 3.6 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 500 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 speed_travel_layer_0 = 250 -speed_wall = 25 -speed_wall_0 = 20 -speed_wall_x = 25 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = =0.85*material_flow support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..0154adb1d9 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-175_0.2mm.inst.cfg @@ -0,0 +1,65 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_bottom = 25 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..13ba2edb8d --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_1xa_um-pc-abs-fr-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 1XA +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 1/2 +speed_support_bottom = =speed_support * 1/4 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_distance = =support_line_distance +support_bottom_line_width = 0.8 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg index 611921c3f1..49ac63092e 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2a_um-pva-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_pva_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2A weight = -2 @@ -17,60 +17,52 @@ cool_fan_enabled = False cool_min_speed = 5 cool_min_temperature = =material_print_temperature initial_layer_line_width_factor = 300 -material_bed_temperature = 45 -material_bed_temperature_layer_0 = 50 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 220 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature +material_initial_print_temperature = =default_material_print_temperature prime_tower_flow = 125 raft_airgap = 0.0 -raft_base_wall_count = 4 raft_interface_flow = 110 raft_interface_infill_overlap = 50 raft_interface_layers = 1 -raft_interface_line_spacing = 0.9 -raft_interface_line_width = 1 -raft_interface_speed = 15 -raft_interface_z_offset = -0.05 +raft_interface_line_spacing = =1.08 if raft_base_thickness == 0.5 else 0.9 +raft_interface_line_width = =1.2 if raft_base_thickness == 0.5 else 1 +raft_interface_speed = =speed_print * 3/10 +raft_interface_z_offset = =-0.1 if raft_base_thickness == 0.5 else -0.05 raft_surface_flow = 110 raft_surface_infill_overlap = 50 raft_surface_line_spacing = 0.44 -raft_surface_line_width = 0.4 -raft_surface_speed = 20 +raft_surface_speed = =speed_print * 2/5 raft_surface_thickness = 0.27 raft_surface_z_offset = -0.075 +retraction_min_travel = 5 retraction_speed = 1.75 -speed_layer_0 = 10 -speed_prime_tower = 10 +speed_layer_0 = =speed_print * 1/5 +speed_prime_tower = =speed_print * 1/5 speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 10 -speed_support_interface = 50 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/5 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_print support_angle = 50 support_bottom_density = 99 -support_bottom_height = 0.406 support_bottom_line_width = 1.2 -support_bottom_wall_count = 2 +support_bottom_wall_count = =support_wall_count support_conical_angle = 20 +support_conical_enabled = True support_conical_min_width = 20 support_fan_enable = False support_infill_density_multiplier_initial_layer = 2 support_infill_rate = 12 -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_interface_offset = 0.8 -support_pattern = grid +support_interface_offset = 0 +support_interface_wall_count = 2 +support_offset = 1.8 +support_pattern = zigzag support_roof_density = 95 support_roof_height = =layer_height*8 -support_wall_count = 2 -support_xy_distance = 0.2 -support_z_distance = 0 +support_roof_line_width = 0.4 switch_extruder_extra_prime_amount = 1 switch_extruder_retraction_amount = 2.5 switch_extruder_retraction_speeds = 3 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg index f55b24eaa8..3c5935b341 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-rapidrinse-175_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = ultimaker_rapidrinse_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2XA weight = -2 @@ -16,20 +16,29 @@ brim_replaces_support = False cool_fan_enabled = False cool_min_temperature = =material_print_temperature raft_airgap = 0.0 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 +raft_interface_speed = 90 +raft_interface_z_offset = -0.1 retract_at_layer_change = True +retraction_min_travel = 5 speed_prime_tower = 25.0 speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 30 -speed_support_interface = 80 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 3/5 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_wall_0 support_bottom_wall_count = 5 +support_conical_angle = 20 +support_conical_enabled = True +support_conical_min_width = 20 support_fan_enable = False -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_wall_count = 1 -support_xy_distance = 0.2 +support_interface_offset = 0 +support_interface_wall_count = 2 +support_roof_height = =5*layer_height +support_roof_line_width = 0.25 +support_xy_distance_overhang = 0.15 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg index 9b2b33cacc..c60c3df0cd 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_2xa_um-sr30-175_0.2mm.inst.cfg @@ -1,13 +1,12 @@ [general] definition = ultimaker_methodxl -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_sr30_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 2XA weight = -2 @@ -17,24 +16,31 @@ brim_replaces_support = False cool_fan_enabled = False cool_min_temperature = =material_print_temperature raft_airgap = 0.0 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 raft_interface_line_width = 0.7 -raft_interface_speed = 70 -raft_surface_speed = 90 +raft_interface_speed = =speed_print * 5/9 +raft_interface_z_offset = -0.1 +raft_surface_speed = =speed_print retract_at_layer_change = True retraction_amount = 0.5 -speed_prime_tower = 25.0 -speed_print = 50 -speed_roofing = 50 -speed_support = 50 -speed_support_bottom = 30 -speed_support_interface = 80 -speed_topbottom = 50 -speed_wall_0 = 50 -speed_wall_x = 50 +retraction_min_travel = 5 +speed_prime_tower = =speed_print * 1/3 +speed_print = 90 +speed_roofing = =speed_print * 5/9 +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/3 +speed_support_interface = =speed_print * 5/9 +speed_topbottom = =speed_print * 5/9 +speed_wall = =speed_print * 5/9 +speed_wall_0 = =speed_wall * 4/5 +speed_wall_x = =speed_wall support_bottom_wall_count = 5 +support_conical_angle = 20 +support_conical_enabled = True +support_conical_min_width = 20 support_fan_enable = False -support_infill_sparse_thickness = =min(layer_height * 2, machine_nozzle_size * 3 / 4) if layer_height <= 0.15 / 0.4 * machine_nozzle_size else layer_height -support_interface_enable = True -support_wall_count = 1 -support_xy_distance = 0.2 +support_interface_offset = 0 +support_interface_wall_count = 2 +support_roof_height = =5*layer_height diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg index 115568be2c..3ce59314b3 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_global_Fast_Quality.inst.cfg new file mode 100644 index 0000000000..fedcf7f919 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_global_Fast_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_methodxl +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.15 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..83314e06fe --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_jabil-tpe-sebs-1300-95a-175_0.2mm.inst.cfg @@ -0,0 +1,42 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = jabil_tpe_sebs_1300_95a_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +infill_sparse_density = 50 +raft_airgap = 0.22 +raft_interface_flow = 110 +raft_interface_infill_overlap = 25 +raft_interface_speed = =speed_print * 1/2 +raft_interface_z_offset = -0.1 +raft_surface_flow = 110 +raft_surface_infill_overlap = 50 +raft_surface_speed = =speed_print * 1/2 +raft_surface_z_offset = -0.075 +speed_layer_0 = =speed_print * 1/4 +speed_prime_tower = =speed_print * 3/4 +speed_print = 40 +speed_roofing = =speed_print +speed_support = =speed_print +speed_support_bottom = =speed_print * 1/4 +speed_support_interface = =speed_print +speed_topbottom = =speed_print +speed_wall_0 = =speed_print +speed_wall_x = =speed_print +support_bottom_enable = False +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.26 +support_z_distance = 0.22 +wall_line_width = 0.5 +wall_thickness = =wall_line_width * 4 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..ec41fba40b --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_polymaker-polymax-pc-175_0.2mm.inst.cfg @@ -0,0 +1,58 @@ +[general] +definition = ultimaker_methodxl +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = polymaker_polymax_pc_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_full_layer = 6 +cool_fan_speed_max = 100 +cool_min_layer_time = 8 +cool_min_layer_time_fan_speed_max = 5 +cool_min_speed = 10 +raft_airgap = 0.22 +raft_interface_fan_speed = 0 +raft_interface_line_spacing = 0.7 +raft_interface_line_width = 0.55 +raft_interface_speed = 25 +raft_interface_thickness = 0.25 +raft_surface_fan_speed = 0 +raft_surface_speed = 50 +raft_surface_thickness = 0.25 +speed_print = 50 +speed_wall_0 = 30 +speed_wall_x = =speed_wall +support_angle = 52 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_stair_step_height = 0.3 +support_fan_enable = True +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 10 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_offset = 1.2 +support_interface_wall_count = 0 +support_line_width = 0.35 +support_material_flow = 90 +support_offset = 1.5 +support_roof_density = =extruderValue(support_roof_extruder_nr, 'support_interface_density') +support_roof_height = =support_interface_height +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 100 +support_xy_distance = 0.35 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..ded10801f5 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abs-175_0.2mm.inst.cfg @@ -0,0 +1,63 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed = 85.0 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 15 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +material_final_print_temperature = 235 +material_initial_print_temperature = 235 +material_print_temperature_layer_0 = 250 +raft_airgap = =0.15 if extruder_nr == support_extruder_nr else 0 +raft_base_speed = 10 +raft_surface_speed = 90 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_travel_layer_0 = 250 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_line_width = 0.3 +support_material_flow = =0.85*material_flow +support_roof_density = 85 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.15 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg index 524922c316..cb3920bbeb 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-abscf-175_0.2mm.inst.cfg @@ -6,15 +6,14 @@ version = 4 [metadata] material = ultimaker_abscf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] build_volume_temperature = 85 -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -30,36 +29,30 @@ raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 raft_surface_z_offset = =-0.075 if extruder_nr == support_extruder_nr else 0 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 55 +speed_roofing = =speed_print * 11/24 speed_support = =speed_print -speed_topbottom = 85 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_topbottom = =speed_print * 17/24 +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 52 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_fan_enable = False support_infill_angles = [ 45,45,45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_offset = 1.2 -support_interface_pattern = lines support_line_width = 0.35 support_material_flow = 90 -support_pattern = lines support_roof_density = 82 -support_roof_height = 1.015 -support_roof_line_width = 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.25 if extruder_nr == support_extruder_nr else 0.15 +support_roof_line_width = 0.4 +support_xy_distance = 0.3 +support_xy_distance_overhang = 0.25 support_z_distance = 0.15 wall_overhang_angle = 30 -wall_overhang_speed_factor = 50 +wall_overhang_speed_factors = [50] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg index 06e3e6a1df..47328faf7d 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-absr-175_0.2mm.inst.cfg @@ -6,14 +6,13 @@ version = 4 [metadata] material = ultimaker_absr_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 75 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -21,44 +20,42 @@ cool_min_layer_time = 10 cool_min_layer_time_fan_speed_max = 8 cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) cool_min_temperature = 250 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 10) -material_print_temperature = =255 if extruder_nr == support_extruder_nr else 260 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature-5 if extruder_nr == support_extruder_nr else default_material_print_temperature raft_airgap = =0.18 if extruder_nr == support_extruder_nr else 0 -raft_surface_speed = =90 if extruder_nr == support_extruder_nr else 50 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 skin_overlap = 10 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall = 25 -speed_wall_0 = 20 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 support_interface_density = 85 support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = 85 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False -support_xy_distance = =0.35 if extruder_nr == support_extruder_nr else 0.2 +support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg index bb9d380e13..03b1b65fd3 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-asa-175_0.2mm.inst.cfg @@ -1,20 +1,18 @@ [general] definition = ultimaker_methodxl -name = Fast - Experimental +name = Fast version = 4 [metadata] -is_experimental = True material = ultimaker_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -cool_fan_enabled = =True if extruder_nr == support_extruder_nr else False -cool_fan_full_layer = 3 +cool_fan_enabled = =extruder_nr == support_extruder_nr cool_fan_speed = 85.0 cool_fan_speed_0 = 0 cool_fan_speed_max = 100 @@ -29,39 +27,35 @@ retraction_amount = 0.5 retraction_min_travel = 3.2 skin_overlap = 10 small_skin_width = 3.6 -speed_layer_0 = 35 -speed_prime_tower = 30.0 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 65 -speed_support = 100 -speed_support_interface = 75 -speed_topbottom = 55 -speed_travel = 500 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 speed_travel_layer_0 = 250 -speed_wall = 25 -speed_wall_0 = 20 -speed_wall_x = 25 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +speed_wall_x = =speed_wall support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] support_infill_rate = 15.0 -support_interface_enable = True -support_interface_pattern = lines support_line_width = 0.3 support_material_flow = =0.85*material_flow support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_roof_wall_count = 1 support_supported_skin_fan_speed = 60.0 support_top_distance = =support_z_distance -support_use_towers = False support_xy_distance = 0.35 support_xy_distance_overhang = 0.25 support_xy_overrides_z = xy_overrides_z support_z_distance = 0.15 top_skin_expand_distance = 2.4 wall_overhang_angle = 30 -wall_overhang_speed_factor = 40 +wall_overhang_speed_factors = [40] diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon-cf-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..604702331a --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon-cf-175_0.2mm.inst.cfg @@ -0,0 +1,60 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_nylon-cf_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_max = 65 +cool_min_layer_time = 3.5 +cool_min_speed = 7 +cool_min_temperature = =default_material_print_temperature-5 +initial_layer_line_width_factor = 120 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.18 +raft_base_infill_overlap = 5 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_speed = =raft_speed * 7 +raft_interface_z_offset = -0.08 +raft_surface_flow = 105 +raft_surface_infill_overlap = 35 +raft_surface_line_spacing = 0.42 +raft_surface_speed = =raft_speed * 7 +raft_surface_thickness = 0.27 +raft_surface_z_offset = -0.08 +retraction_amount = 0.5 +retraction_min_travel = 3.2 +skin_overlap = 10 +small_skin_width = 3.6 +speed_prime_tower = =speed_print * 0.25 +speed_print = 120.0 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 +support_angle = 50 +support_bottom_density = 24 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_rate = 12.0 +support_line_width = =line_width * 0.75 +support_material_flow = 90 +support_roof_density = 85 +support_xy_distance = 0.3 +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg index 44e06b2f89..4c63890745 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-nylon12-cf-175_0.2mm.inst.cfg @@ -6,54 +6,38 @@ version = 4 [metadata] material = ultimaker_nylon12-cf_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] cool_fan_enabled = False -cool_min_temperature = =material_print_temperature-5 -material_final_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -material_initial_print_temperature = =material_print_temperature if extruder_nr == support_extruder_nr else (material_print_temperature - 5) -min_wall_line_width = 0.35 -raft_airgap = =0.2 if extruder_nr == support_extruder_nr else 0 -raft_base_line_spacing = 3 -raft_base_line_width = =1 if extruder_nr == support_extruder_nr else 1.2 +material_final_print_temperature = =default_material_print_temperature-5 +material_initial_print_temperature = =default_material_print_temperature-5 +raft_airgap = 0.3 +raft_base_line_spacing = =3 if extruder_nr == raft_interface_extruder_nr else 2 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1 raft_base_speed = 10 -raft_base_thickness = =0.6 if extruder_nr == support_extruder_nr else 0.8 -raft_base_wall_count = =2 if extruder_nr == support_extruder_nr else 1 -raft_interface_layers = =1 if extruder_nr == support_extruder_nr else 2 -raft_interface_line_spacing = =1 if extruder_nr == support_extruder_nr else 0.9 -raft_surface_layers = =3 if extruder_nr == support_extruder_nr else 2 -raft_surface_thickness = =0.25 if extruder_nr == support_extruder_nr else 0.2 +raft_base_thickness = =0.6 if extruder_nr == raft_interface_extruder_nr else 0.5 retraction_amount = 0.5 retraction_min_travel = 3.2 small_skin_width = 3.6 -speed_prime_tower = 30.0 +speed_prime_tower = =speed_print * 0.25 speed_print = 120.0 -speed_roofing = 55 -speed_topbottom = 55 -speed_travel = 250.0 -speed_wall_0 = 45 -speed_wall_x = 65 +speed_roofing = =speed_print * 11/24 +speed_topbottom = =speed_roofing +speed_wall_0 = =speed_print * 9/24 +speed_wall_x = =speed_print * 13/24 support_angle = 50 support_bottom_density = 24 +support_bottom_distance = =layer_height support_bottom_enable = False support_bottom_line_width = 0.6 support_bottom_stair_step_height = 0 support_infill_rate = 12.0 -support_interface_enable = True -support_interface_pattern = lines -support_line_width = 0.3 -support_material_flow = 90 -support_pattern = lines +support_line_width = =line_width * 0.75 support_roof_density = 85 -support_roof_line_width = =0.4 if extruder_nr == support_extruder_nr else 0.25 -support_use_towers = True -support_xy_distance = =0.3 if extruder_nr == support_extruder_nr else 0.2 -support_xy_distance_overhang = =0.3 if extruder_nr == support_extruder_nr else 0.15 -support_z_distance = 0.35 -wall_overhang_angle = 30 -wall_overhang_speed_factor = 60 +support_xy_distance = 0.3 +support_z_distance = 0.25 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..b447095a27 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-175_0.2mm.inst.cfg @@ -0,0 +1,65 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 5/6 +speed_support_bottom = 25 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_width = 0.6 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-fr-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-fr-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..87a7264d55 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pc-abs-fr-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_pc-abs-fr_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = =extruder_nr == support_extruder_nr +cool_fan_speed_0 = 0 +cool_fan_speed_max = 80 +cool_min_layer_time = 10 +cool_min_layer_time_fan_speed_max = 8 +cool_min_speed = =round(speed_wall_0 * 3 / 4) if cool_lift_head else round(speed_wall_0 / 5) +cool_min_temperature = 250 +infill_sparse_density = 15 +material_final_print_temperature = =material_print_temperature - 5 +material_initial_print_temperature = =material_print_temperature - 5 +raft_airgap = =0.1 if extruder_nr == support_extruder_nr else 0 +raft_base_infill_overlap = 20 +raft_surface_speed = =speed_print * 3/4 if extruder_nr == support_extruder_nr else 50 +skin_overlap = 10 +speed_layer_0 = =speed_print * 7/24 +speed_prime_tower = =speed_print * 1/4 +speed_print = 120.0 +speed_roofing = =speed_print * 13/24 +speed_support = =speed_print * 1/2 +speed_support_bottom = =speed_support * 1/4 +speed_support_interface = =speed_print * 15/24 +speed_topbottom = =speed_print * 11/24 +speed_wall = =speed_print * 5/24 +speed_wall_0 = =speed_print * 1/6 +support_angle = 50 +support_bottom_angles = [135] +support_bottom_density = 15 +support_bottom_distance = 0.1 +support_bottom_enable = True +support_bottom_line_distance = =support_line_distance +support_bottom_line_width = 0.8 +support_bottom_stair_step_height = 0 +support_infill_angles = [45,45,45,45,45,45,45,45,45,45,135,135,135,135,135,135,135,135,135,135] +support_infill_rate = 15.0 +support_interface_density = 85 +support_interface_enable = True +support_interface_pattern = zigzag +support_line_width = 0.3 +support_material_flow = 100 +support_pattern = zigzag +support_roof_density = 85 +support_roof_wall_count = 1 +support_supported_skin_fan_speed = 60.0 +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.25 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.203 +top_skin_expand_distance = 2.4 +wall_overhang_angle = 30 +wall_overhang_speed_factors = [40] + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..bdf39f18fe --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-petg-175_0.2mm.inst.cfg @@ -0,0 +1,66 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_petg_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed = 50 +cool_fan_speed_0 = 0 +cool_fan_speed_max = 100 +cool_min_layer_time = 10 +cool_min_speed = 5 +initial_layer_line_width_factor = 150 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.2 +raft_base_infill_overlap = 10 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_infill_overlap = 35 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 40 +raft_speed = 15 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 40 +skin_overlap = 10 +speed_layer_0 = 15 +speed_print = 60 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 40 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =layer_height +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 83 +support_interface_height = =layer_height * 4 +support_interface_material_flow = =material_flow +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow +support_offset = 3 +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_supported_skin_fan_speed = =cool_fan_speed if support_wall_count > 0 else cool_fan_speed_max +support_top_distance = =support_z_distance +support_xy_distance = 0.3 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.2 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg index 40a85a3a0e..8d08174c9f 100644 --- a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-pla-175_0.2mm.inst.cfg @@ -6,48 +6,36 @@ version = 4 [metadata] material = ultimaker_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = LABS weight = -2 [values] -bottom_layers = 4 cool_fan_enabled = True -cool_fan_full_layer = 4 cool_fan_speed = 100 cool_fan_speed_0 = 0 cool_min_layer_time = 10 cool_min_speed = 5 cool_min_temperature = 205 -default_material_bed_temperature = 45 -infill_sparse_density = 15 -material_bed_temperature = =default_material_bed_temperature -material_bed_temperature_layer_0 = =default_material_bed_temperature + 5 -material_final_print_temperature = 210 -material_initial_print_temperature = 210 -material_print_temperature = 210 -material_print_temperature_layer_0 = 225 -material_standby_temperature = 160 +material_final_print_temperature = =default_material_print_temperature - 5 +material_initial_print_temperature = =default_material_print_temperature - 5 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 min_bead_width = =line_width * 0.75 min_wall_line_width = =line_width * 0.75 raft_airgap = 0.18 -raft_base_line_spacing = 4 -raft_base_line_width = 1.2 -raft_base_speed = =raft_speed +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 raft_base_thickness = 0.6 -raft_interface_fan_speed = 0 -raft_interface_layers = 2 -raft_interface_line_spacing = 0.7 +raft_interface_infill_overlap = 25 +raft_interface_line_spacing = 0.75 raft_interface_speed = 60 -raft_interface_thickness = 0.3 -raft_speed = 30 -raft_surface_fan_speed = 0 +raft_speed = 15 +raft_surface_infill_overlap = 25 raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 raft_surface_speed = 90 raft_surface_wall_count = 2 -retract_at_layer_change = True -skin_material_flow_layer_0 = =material_flow speed_layer_0 = 15 speed_print = 150 speed_roofing = =speed_print / 3 @@ -60,28 +48,19 @@ speed_wall_x = =speed_wall support_angle = 50.0 support_bottom_distance = =layer_height support_bottom_enable = False -support_fan_enable = True support_infill_angles = [45 ] support_infill_rate = 12 -support_infill_sparse_thickness = =layer_height support_interface_density = 83 support_interface_height = =layer_height * 4 support_interface_material_flow = =material_flow * 0.9 -support_interface_offset = 1 -support_interface_wall_count = 0 -support_line_width = line_width * 0.75 +support_line_width = =line_width * 0.75 support_material_flow = =material_flow * 0.8 support_offset = 3 support_roof_density = =support_interface_density -support_roof_height = =layer_height * 4 support_roof_line_width = =line_width -support_roof_material_flow = =support_interface_material_flow -support_roof_wall_count = 1 +support_top_distance = =support_z_distance support_xy_distance = 0.3 -support_xy_distance_overhang = 0.1 support_xy_overrides_z = xy_overrides_z -support_z_distance = 0.15 -switch_extruder_retraction_amount = 0.5 -wall_0_material_flow_layer_0 = =material_flow -wall_x_material_flow_layer_0 = =material_flow +support_z_distance = 0.18 +switch_extruder_retraction_amount = 1 diff --git a/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..ba4a2053e9 --- /dev/null +++ b/resources/quality/ultimaker_methodxl/um_methodxl_labs_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,72 @@ +[general] +definition = ultimaker_methodxl +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = LABS +weight = -2 + +[values] +cool_fan_enabled = True +cool_fan_speed_0 = 0 +cool_min_layer_time = 10 +cool_min_speed = 5 +cool_min_temperature = 205 +infill_sparse_density = 15 +material_print_temperature_layer_0 = =default_material_print_temperature + 15 +min_bead_width = =line_width * 0.75 +min_wall_line_width = =line_width * 0.75 +raft_airgap = 0.22 +raft_base_line_spacing = =4 if extruder_nr == raft_interface_extruder_nr else 2.8 +raft_base_line_width = =1.2 if extruder_nr == raft_interface_extruder_nr else 1.4 +raft_base_thickness = 0.6 +raft_interface_flow = 105 +raft_interface_infill_overlap = 25 +raft_interface_line_spacing = 0.75 +raft_interface_speed = 60 +raft_interface_z_offset = -0.1 +raft_margin = 3 +raft_speed = 15 +raft_surface_flow = 103 +raft_surface_infill_overlap = 25 +raft_surface_line_spacing = 0.425 +raft_surface_line_width = 0.4 +raft_surface_speed = 90 +raft_surface_z_offset = -0.1 +seam_overhang_angle = 35 +speed_layer_0 = 15 +speed_print = 150 +speed_roofing = =speed_print / 3 +speed_support = =speed_print +speed_support_interface = 65 +speed_topbottom = =speed_print * 0.6 +speed_wall = =speed_print / 6 +speed_wall_0 = =speed_wall +speed_wall_x = =speed_wall +support_angle = 50.0 +support_bottom_distance = =support_z_distance +support_bottom_enable = False +support_infill_angles = [45 ] +support_infill_rate = 12 +support_interface_density = 75 +support_interface_material_flow = =support_material_flow +support_interface_offset = 0.8 +support_interface_pattern = zigzag +support_line_width = =line_width * 0.75 +support_material_flow = =material_flow * 0.9 +support_offset = 1 +support_pattern = zigzag +support_roof_density = =support_interface_density +support_roof_line_width = =line_width +support_top_distance = =support_z_distance +support_xy_distance = 0.35 +support_xy_distance_overhang = 0.32 +support_xy_overrides_z = xy_overrides_z +support_z_distance = 0.22 +switch_extruder_retraction_amount = 1 + diff --git a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg index 8eba38b4cc..76c163e6f1 100644 --- a/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg index 7fb577145e..3682285e92 100644 --- a/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg index c7d9e9707e..ece4aa7157 100644 --- a/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Extra_Coarse_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg index 0014913d10..066256c564 100644 --- a/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg index d865eb9860..038ce91f7b 100644 --- a/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg index cc7eda9652..1ef0a3f8e3 100644 --- a/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_original/umo_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_experimental_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_experimental_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..cf2050eae8 --- /dev/null +++ b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_experimental_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_replicator_plus +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = Smart Extruder+ Experimental +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_experimental_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_experimental_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..30a75a205f --- /dev/null +++ b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_experimental_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_replicator_plus +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = Smart Extruder+ Experimental +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_tough_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_tough_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..4d3f535571 --- /dev/null +++ b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_tough_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_replicator_plus +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = Smart Extruder+ Tough +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..d5a07a2da0 --- /dev/null +++ b/resources/quality/ultimaker_replicator_plus/um_replicator_b_smartextruder_plus_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_replicator_plus +name = Fast +version = 4 + +[metadata] +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = Smart Extruder+ +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_replicator_plus/um_replicator_plus_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_replicator_plus/um_replicator_plus_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..67935a2a8e --- /dev/null +++ b/resources/quality/ultimaker_replicator_plus/um_replicator_plus_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_replicator_plus +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg index bfb1174912..0927e0f6fb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg index 8f8cd8f46e..be2528ead1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg index e0fcdf5530..47cfb57f02 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg index 2135e5deaf..568f954469 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg index 7f7b9da311..c774dd68aa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg index ed70f807c8..09572b2689 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg index 75740231e3..3fe88a0a61 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg index fb8f230a5f..b09436be69 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg index eeb51a1428..9e685efcac 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -29,6 +26,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_fan_speed_0 = 0 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg index fb5bcc256b..2e056a94c7 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 @@ -66,7 +66,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg index d7bd9816ed..da467748fa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 @@ -66,7 +66,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg index 7d124c4578..f2df058542 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg index b86675ae95..cf60180b99 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg index 7ec6ff5bba..49a1709489 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg index a51bbfd3e5..7b4f94d71b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg index ff2b386de6..6d423cd527 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg index d7cc2fd346..584d3d2bb3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg index 205434e462..11da78333d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.15mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg index 0e7c3a6500..b39528af32 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.1mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg index 51e698affa..e011721e65 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.2mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg index 348f6de988..d44ee92990 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_bam_0.3mm.inst.cfg @@ -7,15 +7,15 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg index 6d9947b294..7bde8a00e5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg index 3566b82f90..cc8c3318f6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg index f720fa71c1..4093891769 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg index 5e94d1f585..57ddd812bc 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg index c0767352a9..5c519898ad 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg index 7c5f9caab4..3a84f2d78f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg index 191290bdec..4c8a04a882 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg index b33a421c02..d5d7eada6d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg index bf59d60973..8d70790495 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg index 31ce3c3928..b60fa05778 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg index 7a30166c37..143f8a4464 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg index 04f83b8aef..f3c5e656d8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg index 87eb067985..662cf827c3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg index a78b80f786..837916bc93 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg index 1f5f8ba874..58ca13137b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg index 43480fb647..5f9aa1cf28 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg index 70f9815aae..4055663739 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg index cab7619421..7019964685 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg index ae89f04511..1d82107e2e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg index 3bdd528ea2..842d3013c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg index 09b62fda68..af04b1a70c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg index ae9436c02e..f33392ef93 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg index f51a43350a..18cf7b5ee3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg index ea29968088..2edc09aecb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg index ab6b521213..9638563a09 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg index 8f535a445c..ba9f211d94 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg index d1de0713db..b0aeb5f1ba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg index 5ee4b4ea78..18cbe58743 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg index 45489cdfe1..9e443be01d 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg index c9e2ca784e..fdd6cf35a6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg index 98120114f5..c4fb37e2cb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg index 90a53df66a..931a0cbac3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg index fe574fc80b..ac2ad7e5ad 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg index 6b66454bc7..aa1e59e4a3 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg index 8e3ab5173e..e3ebcedfc0 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg index 7469d30453..674d612a83 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg index 4c702e3b27..b5571cca08 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg index e8cb2907b7..dd1292a705 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg index a08e98868f..d61c4db0fa 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -69,7 +69,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg index 54ca472acf..eb45251419 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg index 54acafc477..a3edbd268e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -74,7 +74,5 @@ top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.05 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg index 78d2da225f..a74488d0d6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -71,7 +71,5 @@ support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg index 2ae056128c..ee9d106782 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg index 7b57ca8f7a..fccebe55bd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg index b19beadf42..54051784e4 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg index 77c839688b..5b4a92cd42 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -73,7 +73,5 @@ top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.1 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg index 647261b0c0..e6f688763b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -70,7 +70,5 @@ support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg index 40b74593fa..6a953c6b45 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg index a52bc4173d..f12cf87fa8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg index 0fe2f9f4a1..40d476889b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg index c6206182fb..0c8313ef5e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -73,7 +73,5 @@ top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.1 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg index 8044b7141f..7436d2210a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -70,7 +70,5 @@ support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg index e902727c41..b7fbf064ee 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg index 15566dd63d..1e71cd171b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -69,7 +69,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg index c1f93a6ac6..077682666a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg index fd0e3e5344..4693054bff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -42,6 +41,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -73,7 +73,5 @@ top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.1 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg index 3f62d21120..85550d48d6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -71,7 +71,5 @@ support_z_distance = 0.4 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg index 13aa3ea916..484d15e2f1 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg index 3b51b39fdd..8da0dca999 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg index b15ed15d51..cb6d49770e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg index 6125cdd468..ee32112137 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg index b57bbfcfd4..ec2afac73c 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg index 63cb5c6b62..1da054cb93 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg index 572d6a14c1..68debe4558 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg index bf36800e96..0d634f98ed 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg index 54c1872876..44e6d885a2 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg index b93480ecac..ea52ee0f80 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg index 90156ac8a3..4162d6d49a 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg index f2d50ef529..33c07bb911 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg index f3e73ac51f..efc2d92e76 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg index 61227b58c0..e5e2ad4c03 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg index 0fb4f697ff..2e029731e9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg index 1b559783ef..7b9ed1aa70 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg index 588ff80120..6a14a581b5 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg index 246aa7f2e0..8ff40517d6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg index f1d084d5b9..37ff801c6b 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg index 7d3603b7b2..b07e0707ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg index 8345c85825..278ea903f6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg index 65a7d476c3..a9ba8ea0cb 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg index f3e3c1f062..685711fd35 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg index f091059d19..345771d444 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg index 788182ad91..d3248c233e 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg index d18423fb20..ed2aa74905 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg index 52006ce801..cf29ec8a08 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg index cc082aa98b..71a42a572f 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg index 60b74e9e8b..9d30b23e44 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg index d2112a066d..6dde6f82c8 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg index 3bcab3006c..3258cf09c6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True @@ -71,7 +71,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg index d5f5439634..32d6e4c4f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg index 58369c9252..d9f90265ba 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg index 5a804ae0e8..26b1c127a9 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True @@ -70,7 +70,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg index b66dba1dee..836d08e8dd 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 @@ -70,7 +70,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg index 30d0e49ede..f1b78fb637 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 @@ -70,7 +70,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg index 23ebb75153..a7b87a2162 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -70,7 +70,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg index ee0f35b386..10c566af84 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 @@ -68,7 +68,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg index 6e481a3a94..91fd2e9334 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 @@ -68,7 +68,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg index b546398893..1610fa8591 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True @@ -71,7 +71,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg index 403e44d04c..eaa701a994 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg index 867154ac70..58366d2fd6 100644 --- a/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg index de72bf59ff..d124892ddb 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 1 @@ -14,9 +14,9 @@ weight = 1 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature - 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg index 93217e726e..d49d8125ff 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -1 @@ -14,9 +14,9 @@ weight = -1 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 minimum_support_area = 4 retraction_count_max = 5 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg index d4ad0a9904..3c23d4f483 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 0 @@ -14,9 +14,9 @@ weight = 0 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature - 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg index 90f45b02e8..e3a0407710 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -2 @@ -14,9 +14,9 @@ weight = -2 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature + 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg index ae7a28fbc6..a9511bc281 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -3 @@ -15,9 +15,9 @@ weight = -3 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature - 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg index 2b3b2bb338..da3be0a896 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -2 @@ -14,9 +14,9 @@ weight = -2 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 minimum_support_area = 4 retraction_count_max = 5 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg index cbbe1b5e01..8f9ac5af3d 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -3 @@ -14,9 +14,9 @@ weight = -3 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature + 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg index 1ba661d82a..a1f10336fb 100644 --- a/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -4 @@ -14,9 +14,9 @@ weight = -4 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature + 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg index 9ab5d05612..f599800689 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg index a6dbc29c7d..221d10829d 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg index 827c8d2ef9..9304fc1d5a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg index 7359087b44..4eba64f8f9 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg index 956b60d524..ffa921e79f 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg index 6703851171..fe9ec0f063 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg index 3a3d53aa32..c9ca508459 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg index ae5a395ffb..9d0ca4d60c 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..128d0bef77 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s3 +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg index d13d630f5e..55edf55584 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg index e89e9de845..baa8178247 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg index f6f2b8bacd..edfbd9e256 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg index b71b3f481d..03160a9da9 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg index f1d114fe46..d2773eaf0c 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg index ea1a1021a7..9b34e69a1e 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg index aa60eec702..816802c407 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg index eeaf1e492c..f944456150 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg index cee7f7c04f..f07ff64d5a 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg index 43dd326538..a665f0fb61 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..ea0f2e25d1 --- /dev/null +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s3 +name = Fast +version = 4 + +[metadata] +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg index 300d5b02b3..3aa012ccbd 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg index d7b2c39468..bbb783b17c 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg index 502f5fa11b..6c1b1ab723 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg index f5398069b1..06e9afaaf6 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg index a0822a4be1..0c5931d1e0 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg index d83764aefa..7b6d7a599c 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg index e289c8c014..bec6a59fcf 100644 --- a/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg index 0758e70506..e801f0fb1f 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg index 292e8f458f..dc8b5d2350 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg index af119d34d3..b7be9b58df 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg index fe51a0fc67..9c3a893716 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg index 32dfff4185..a85d24cac2 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg index a90aaceab8..ad8129c3f0 100644 --- a/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s3/um_s3_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg index 049396232a..afbcc321e9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg index 6977685699..cce9788f68 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg index 54be78e034..0f42949152 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg index 0d9a1ed982..7cfda8ce4c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pc_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg index 0907b2f03e..9aa97ad347 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg index e2d1105294..5ac6f63489 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg index ec510c886d..af43075f15 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_pp_0.1mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg index 3b414db092..1f0b4ce177 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg index a31045f9ed..5b284cf190 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-abs_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -29,6 +26,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_fan_speed_0 = 0 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg index b171fdef80..c2a6357c29 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-petg_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 @@ -66,7 +66,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg index 5948b72f7d..7bdd091f1b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 @@ -66,7 +66,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg index 74f71b970f..a0a1b6cc36 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.25_um-tough-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.25 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -40,6 +39,7 @@ jerk_wall_0 = =max(30, speed_wall_0/2) machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg index 6aa6f23365..ce73b6d767 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg index 72e3d668db..50b216016b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg index f1c40d435f..4f8ec1c291 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg index ac070dcf59..67999ee481 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg index e1d20b4786..4db07603ce 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_abs_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg index 808bdd3de3..4e1c0edf3b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.15mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_bam quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg index 4d30a7c10d..3e5eb8c171 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.1mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_bam quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg index 65f11b5736..46023838e6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.2mm.inst.cfg @@ -6,15 +6,15 @@ version = 4 [metadata] material = generic_bam quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg index c4bf1775bb..f5f6d83320 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_bam_0.3mm.inst.cfg @@ -7,15 +7,15 @@ version = 4 is_experimental = True material = generic_bam quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] brim_replaces_support = False -build_volume_temperature = =50 if extruders_enabled_count > 1 else 24 -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 machine_nozzle_cool_down_speed = 0.75 machine_nozzle_heat_up_speed = 1.6 material_print_temperature = =default_material_print_temperature + 5 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg index c262d3ae31..0cdd8b9e24 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg index fec5e0a4c0..c0fbefcfda 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg index 25ed3adb96..09b1522f45 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg index d16b3578f8..c1b432ab63 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe-plus_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg index c9448b8e9a..676d354fd1 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg index 6672a867bf..a3f01bc978 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg index 4aa5049046..cc74ea4948 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg index 2f6b9483d3..f9a2027c85 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg index 656822b80b..2065dbf31d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg index 950170017f..51cf52c2fc 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg index 911fb56357..cdb4405813 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg index 7b30fd474e..f3f1737f32 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg index 1442f1b180..ace4967763 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg index fb1502f4f1..806f9651ba 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg index 920e807c30..6f6e2b6dce 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg index f9e78aeea6..613d4fd2d7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pc_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg index 32daf56a05..c2d41601e0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg index e311a70015..fc144ffc93 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg index 3d3f08ee59..e8a7cbebe5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg index c78b64128e..57ce215d7d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg index c7c5c6582c..17d8474bcb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_petg_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg index 786701bf52..38543ebeaf 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg index 7889fa288c..bef4a4a360 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg index d5d07d2118..8a2ed360ac 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg index 9d616ae31a..fdff7f045c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg index 67b52cb861..8cffddffb2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg index 238da07637..df633bf0b2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg index 8a36acf81c..4992fffe58 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg index cec826b2b2..17e2289857 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg index 928699193b..7cf2b97c32 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg index 1cd2ca0af6..2c079b6bfd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg index a127f1bafc..443aa077c2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg index f8b8b835ca..ed96289da7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg index f475ac6484..452ae49a60 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tough-pla_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg index bf5504f7e5..0f6f35b32a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg index 095b9a5524..20785352a3 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg index 618f0c1043..e144c1de8a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg index d0950efea0..e8760e6367 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg index 74c3a78082..07781ac0ec 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -69,7 +69,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg index f71fe4a164..b79ceea728 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.15 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg index b319290e66..6e81fc48f7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.05 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -74,7 +74,5 @@ top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.05 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg index 8ff6abf061..6d4c4ad826 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-abs_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.8 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -71,7 +71,5 @@ support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg index eb66565732..c491648046 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg index c40db10dd5..b461526aab 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg index db70a58d81..fb6ed4d61a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.4 machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = False retraction_amount = 8 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg index 53e9e671a1..9b72ba7b2b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -73,7 +73,5 @@ top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.1 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg index 6b3a4ade86..cf63607190 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-petg_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.7 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 20 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -70,7 +70,5 @@ support_z_distance = 0.4 top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg index 2ee13388b9..530fb87e0d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg index faeca1fc2d..a92dbe0e65 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg index a5b4aa9aac..24efaf99c7 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 6.5 @@ -67,7 +67,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg index b7f21f2449..5ebc92aa54 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -43,6 +42,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -73,7 +73,5 @@ top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.1 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg index b4f500cd29..b6f5bde308 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 12 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -70,7 +70,5 @@ support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg index 1c06b3206a..9fb06df0fe 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.06mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg index 1107e0ae89..5ab398b44f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.15mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -1 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -69,7 +69,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.35 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg index f504aed78d..1d40b1eac2 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.1mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = 0 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -41,6 +40,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = False raft_airgap = 0.25 @@ -68,7 +68,5 @@ support_top_distance = =support_z_distance support_z_distance = 0.3 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg index 9453aa41cd..343ce7d6b6 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_material_flow = =1.1 * material_flow infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 @@ -42,6 +41,7 @@ machine_nozzle_cool_down_speed = 1.3 machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -73,7 +73,5 @@ top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_x_material_flow = =1.1 * wall_material_flow wall_x_material_flow_roofing = =wall_material_flow -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg index b4d3705503..a096058fa9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.4_um-tough-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.4 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -42,6 +41,7 @@ machine_nozzle_heat_up_speed = 1.9 material_extrusion_cool_down_speed = 0.7 material_max_flowrate = 14 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = False @@ -71,7 +71,5 @@ support_z_distance = 0.4 top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg index a57f3d1db1..5d15c91260 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg index 3617a0f320..1b5b5e46a5 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg index c0960ecbb8..994a4445a0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_abs_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg index 36793d479c..eea84b2646 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg index 35959b5b46..7b2e50a78c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg index 42e8ebafa7..a8f5209b12 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe-plus_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_cpe_plus quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg index e4f905a7bd..36aa4e5a44 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg index 36fde0b907..3e3ff5cc90 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg index 9aed2a8c55..2801916bbd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_cpe_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg index 4498143d4b..73cde4c216 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg index 02c9ecd708..d5d5a02d5e 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg index 7a84fe749c..c087d53a88 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_nylon_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg index 492b4683f1..eb90c96f83 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg index 09092de98c..e827308f73 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg index c943037a96..8ccaac6855 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pc_0.4mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pc quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg index 0700bad762..fe08171f00 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg index f0fee5fb38..57cd709915 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg index b39cbb1f44..1be28116dd 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_petg_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg index 16856d2826..411ca25086 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg index 44d9b20567..3e22104575 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg index b490c59430..9c6d54df83 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg index 6c7ccf90f3..5dbbaf788f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg index 09c4b04702..c895ddab5a 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg index 7905d94304..988763522b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_pp_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pp quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg index 50c25a914b..bcdac27092 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg index 864c0dde9b..7a217fa9c0 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg index 0df55e9799..90fe83cf93 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tough-pla_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg index 9aa0eed853..eca6f771d8 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg index 759cf36e2f..4949428685 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg index 118c2524ce..f1dc38fa9d 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_tpu_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg index a7d3b780e5..fe3727a4bb 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True @@ -71,7 +71,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg index 46c4e0e0e5..ddfd091649 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 7 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg index 81c80a3c87..509725981b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-abs_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_abs quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.8 material_flow = 93 material_max_flowrate = 22 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.15 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg index a049c75173..71a0532a18 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True @@ -70,7 +70,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg index 9efdfc7d57..b0dc963be9 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 @@ -70,7 +70,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg index ffdb177247..ff6671f43f 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-petg_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_petg quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 1 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 100 bridge_wall_speed = 20 cool_min_layer_time = 4 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 23 material_print_temperature = =default_material_print_temperature - 5 +max_flow_acceleration = 1 optimize_wall_printing_order = False prime_tower_enable = True retraction_amount = 3.5 @@ -70,7 +70,5 @@ support_structure = tree top_bottom_thickness = =max(1.2 , layer_height * 6) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg index bbc57e29d9..6d05ca371b 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False raft_airgap = 0.25 @@ -70,7 +70,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg index f3e8ca0332..7c4aecfc38 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 @@ -68,7 +68,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg index c5c7bc2732..5bccab0f99 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-pla_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 15 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False raft_airgap = 0.25 retraction_amount = 4 @@ -68,7 +68,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg index 468ebdb9d6..80ac0c7410 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.2mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -2 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -30,6 +27,8 @@ bridge_sparse_infill_max_density = 50 bridge_wall_material_flow = 200 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -45,6 +44,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 10 +max_flow_acceleration = 2 meshfix_maximum_resolution = 0.7 optimize_wall_printing_order = False prime_tower_enable = True @@ -71,7 +71,5 @@ support_interface_enable = False support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg index 24221a0648..5b0b9aec19 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.3mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -3 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg index 133469116d..a75c4f863c 100644 --- a/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_aa0.8_um-tough-pla_0.4mm.inst.cfg @@ -6,15 +6,12 @@ version = 4 [metadata] material = ultimaker_tough_pla quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = AA 0.8 weight = -4 [values] -_plugin__curaenginegradualflow__0_1_0__gradual_flow_discretisation_step_size = 0.2 -_plugin__curaenginegradualflow__0_1_0__gradual_flow_enabled = True -_plugin__curaenginegradualflow__0_1_0__max_flow_acceleration = 2 acceleration_infill = =acceleration_print acceleration_ironing = 1000 acceleration_layer_0 = =acceleration_wall_0 @@ -28,6 +25,8 @@ bridge_skin_speed = =bridge_wall_speed bridge_sparse_infill_max_density = 50 bridge_wall_speed = 30 cool_min_layer_time = 6 +gradual_flow_discretisation_step_size = 0.2 +gradual_flow_enabled = True infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'grid' infill_sparse_density = 15 jerk_infill = =jerk_print @@ -43,6 +42,7 @@ material_extrusion_cool_down_speed = 0.7 material_flow = 93 material_max_flowrate = 17 material_print_temperature = =default_material_print_temperature + 15 +max_flow_acceleration = 2 optimize_wall_printing_order = False prime_tower_enable = True raft_airgap = 0.25 @@ -69,7 +69,5 @@ support_structure = tree top_bottom_thickness = =max(1 , layer_height * 5) wall_0_wipe_dist = 0.8 wall_line_width_0 = =line_width * (1 + magic_spiralize * 0.25) -z_seam_relative = True -z_seam_type = back zig_zaggify_infill = True diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg index 4a74cd6227..749db6fea5 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.06mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = high -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 1 @@ -14,9 +14,9 @@ weight = 1 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature - 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg index e4a35cd961..7117785247 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -1 @@ -14,9 +14,9 @@ weight = -1 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 minimum_support_area = 4 retraction_count_max = 5 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg index 41f5d71c4d..f20a4fa7b8 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.1mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = 0 @@ -14,9 +14,9 @@ weight = 0 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature - 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg index 248e54863f..b511db924b 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -2 @@ -14,9 +14,9 @@ weight = -2 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature + 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg index 056b3bb327..fec144b9ff 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.4_pva_0.3mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.4 weight = -3 @@ -15,9 +15,9 @@ weight = -3 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature - 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg index 8bc8491beb..5cdd646ced 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -2 @@ -14,9 +14,9 @@ weight = -2 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 minimum_support_area = 4 retraction_count_max = 5 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg index 7f42564da8..febd5b4990 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -3 @@ -14,9 +14,9 @@ weight = -3 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature + 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg index 8115c6148c..30f54e53e9 100644 --- a/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_bb0.8_pva_0.4mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality variant = BB 0.8 weight = -4 @@ -14,9 +14,9 @@ weight = -4 [values] acceleration_prime_tower = 1500 brim_replaces_support = False -build_volume_temperature = =70 if extruders_enabled_count > 1 else 35 +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) -default_material_bed_temperature = =0 if extruders_enabled_count > 1 else 60 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 initial_layer_line_width_factor = 150 material_print_temperature = =default_material_print_temperature + 5 minimum_support_area = 4 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg index 2446ef813d..0f5b369b77 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg index 9f206ee50c..aefa27fb4d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg index e20af2439a..4db4ae5408 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg index 09ee04d1a0..878399d070 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg index ba21c26c55..a4b7c1d54b 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg index 5be5e1e49e..fec71e8d01 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg index 0f3360608b..a348f1c1f6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg index 68824a8916..1fdbd85a0e 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..87651a1870 --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s5 +name = Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC 0.4 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg index 7c3e86ee84..c9eb7d2bf6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg index 56346c81df..f261af9df9 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg index ee7e43e2b6..25c2897b8d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg index 52bf2b2bb5..f7829d2017 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg index 3c9ad8f923..bb59bdc048 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg index aa57f9bc05..f14af22251 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.4_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.4 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg index 863d292ddd..8f08a41f2d 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg index 958256683b..535e9bde8c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_cffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg index 57f79f7742..e0c80fd73c 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffcpe_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffcpe quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg index 69639343f5..ee5cf6b5d4 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_gffpa_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_gffpa quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..afa100d30d --- /dev/null +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s5 +name = Fast +version = 4 + +[metadata] +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC 0.6 +weight = -2 + +[values] +support_bottom_distance = =support_z_distance / 2 +support_top_distance = =support_z_distance +support_z_distance = =layer_height * 2 + diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg index e82826f87a..9929e73ab0 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.15mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg index f2cbe9b3e5..54d8a094d8 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.2mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg index d241e2c86e..0fcbabce47 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_petcf_0.3mm.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petcf quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -3 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg index ba11a298b7..3a35921a70 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg index 945ee51843..058d136363 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg index 479bc2693f..836c0433d6 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.15mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg index 281689ebbb..d3d3673710 100644 --- a/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_cc0.6_um-pla_0.2mm.inst.cfg @@ -7,7 +7,7 @@ version = 4 is_experimental = True material = ultimaker_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = CC 0.6 weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg index 2342971e46..6cf3631293 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Draft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg index 7ee5274878..b615dd7201 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Fast_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg index 7a1f7698d5..977939aca4 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg index 0cbe93963c..81981ea5cf 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg index 601c994b95..18b561e46c 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Superdraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = superdraft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg index cb1c88548a..0ed61157be 100644 --- a/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg +++ b/resources/quality/ultimaker_s5/um_s5_global_Verydraft_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = verydraft -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_abs_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_abs_0.2mm.inst.cfg new file mode 100644 index 0000000000..37767673aa --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_abs_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_abs +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +cool_min_layer_time = 4 +cool_min_layer_time_fan_speed_max = 9 +cool_min_temperature = =material_print_temperature - 10 +retraction_prime_speed = 15 +support_structure = tree + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_cpe_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_cpe_0.2mm.inst.cfg new file mode 100644 index 0000000000..bff86d6fa4 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_cpe_0.2mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_cpe +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +infill_overlap = 20 +infill_pattern = lines +speed_print = 40 +speed_wall = =speed_print +speed_wall_0 = =speed_wall +support_interface_enable = True +wall_thickness = =wall_line_width_0 + 2*wall_line_width_x + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_nylon_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_nylon_0.2mm.inst.cfg new file mode 100644 index 0000000000..c12df50d89 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_nylon_0.2mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_nylon +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +cool_min_layer_time = 6 +cool_min_layer_time_fan_speed_max = 11 +material_print_temperature = =default_material_print_temperature + 5 +raft_airgap = 0.4 +retraction_prime_speed = 15 + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_petg_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_petg_0.2mm.inst.cfg new file mode 100644 index 0000000000..baabd79e94 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_petg_0.2mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_petg +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +cool_min_layer_time = 4 +material_print_temperature = =default_material_print_temperature + 5 +retraction_prime_speed = 15 + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.15mm.inst.cfg new file mode 100644 index 0000000000..6c445180f8 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.15mm.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s8 +name = Normal +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -1 + +[values] +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 15 +retraction_prime_speed = =retraction_speed +support_structure = tree + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.1mm.inst.cfg new file mode 100644 index 0000000000..d3d99eec9e --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.1mm.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_s8 +name = Fine +version = 4 + +[metadata] +material = generic_pla +quality_type = normal +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = 0 + +[values] +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 15 +retraction_prime_speed = =retraction_speed +support_structure = tree +top_bottom_thickness = =round(6*layer_height,3) + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..2e015f8a88 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pla_0.2mm.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_pla +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 15 +retraction_prime_speed = =retraction_speed +support_structure = tree + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pp_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pp_0.2mm.inst.cfg new file mode 100644 index 0000000000..11c24cfedf --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_pp_0.2mm.inst.cfg @@ -0,0 +1,45 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_pp +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +brim_width = 20 +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'tetrahedral' +infill_wipe_dist = 0.1 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.85 +machine_nozzle_heat_up_speed = 1.5 +material_final_print_temperature = =material_print_temperature - 10 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature + 8 +multiple_mesh_overlap = 0 +prime_tower_enable = False +prime_tower_size = 16 +prime_tower_wipe_enabled = True +retraction_count_max = 15 +retraction_extra_prime_amount = 0.8 +retraction_hop = 2 +retraction_hop_only_when_collides = True +speed_print = 25 +speed_topbottom = =math.ceil(speed_print * 25 / 25) +speed_wall = =math.ceil(speed_print * 25 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 25) +support_angle = 50 +support_bottom_distance = =support_z_distance +support_interface_enable = True +support_top_distance = =support_z_distance +support_z_distance = 0.3 +switch_extruder_prime_speed = 15 +switch_extruder_retraction_amount = 20 +switch_extruder_retraction_speeds = 35 +wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.15mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.15mm.inst.cfg new file mode 100644 index 0000000000..e3477c1e7d --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.15mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Normal +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = fast +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -1 + +[values] +retraction_prime_speed = =retraction_speed +retraction_speed = 25 +support_structure = tree + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.1mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.1mm.inst.cfg new file mode 100644 index 0000000000..6ccc0da6dd --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.1mm.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = ultimaker_s8 +name = Fine +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = normal +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = 0 + +[values] +retraction_prime_speed = =retraction_speed +support_structure = tree +top_bottom_thickness = =round(6*layer_height,3) + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.2mm.inst.cfg new file mode 100644 index 0000000000..bb629e0758 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tough-pla_0.2mm.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_tough_pla +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +retraction_prime_speed = =retraction_speed +support_structure = tree + diff --git a/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tpu_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tpu_0.2mm.inst.cfg new file mode 100644 index 0000000000..f914ed4f32 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_aa_plus_0.4_tpu_0.2mm.inst.cfg @@ -0,0 +1,52 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = draft +setting_version = 25 +type = quality +variant = AA+ 0.4 +weight = -2 + +[values] +bridge_skin_material_flow = 200 +bridge_skin_speed = =bridge_wall_speed +bridge_sparse_infill_max_density = 50 +bridge_wall_material_flow = =bridge_skin_material_flow +bridge_wall_speed = 10 +brim_width = 8.75 +gradual_infill_step_height = =5 * layer_height +infill_pattern = ='zigzag' if infill_sparse_density > 80 else 'cross_3d' +infill_sparse_density = 10 +infill_wipe_dist = 0.1 +machine_min_cool_heat_time_window = 15 +machine_nozzle_cool_down_speed = 0.5 +machine_nozzle_heat_up_speed = 2.5 +material_final_print_temperature = =material_print_temperature - 10 +material_flow = 106 +material_initial_print_temperature = =material_print_temperature - 10 +multiple_mesh_overlap = 0 +prime_tower_wipe_enabled = True +retraction_count_max = 15 +retraction_hop_only_when_collides = True +retraction_prime_speed = 15 +skin_line_width = =round(line_width / 0.8, 2) +speed_print = 30 +speed_topbottom = =math.ceil(speed_print * 0.8) +speed_wall = =math.ceil(speed_print * 25 / 25) +speed_wall_0 = =math.ceil(speed_wall * 25 / 25) +support_angle = 50 +support_bottom_distance = =support_z_distance +support_interface_enable = True +support_top_distance = =support_z_distance +support_z_distance = =math.ceil(0.3/layer_height)*layer_height +switch_extruder_prime_speed = 15 +switch_extruder_retraction_amount = 20 +switch_extruder_retraction_speeds = 35 +top_bottom_thickness = =layer_height * 6 +travel_avoid_distance = 1.5 +wall_0_inset = 0 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.15mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.15mm.inst.cfg new file mode 100644 index 0000000000..1a6ad7ff5b --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.15mm.inst.cfg @@ -0,0 +1,32 @@ +[general] +definition = ultimaker_s8 +name = Normal +version = 4 + +[metadata] +material = generic_bam +quality_type = fast +setting_version = 25 +type = quality +variant = BB 0.4 +weight = -1 + +[values] +brim_replaces_support = False +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +speed_print = 80 +speed_topbottom = =math.ceil(speed_print * 30 / 80) +speed_wall = =math.ceil(speed_print * 40 / 80) +speed_wall_0 = =math.ceil(speed_wall * 30 / 40) +support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_infill_sparse_thickness = =2 * layer_height +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height +top_bottom_thickness = 1 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.1mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.1mm.inst.cfg new file mode 100644 index 0000000000..ffea655096 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.1mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_s8 +name = Fine +version = 4 + +[metadata] +material = generic_bam +quality_type = normal +setting_version = 25 +type = quality +variant = BB 0.4 +weight = 0 + +[values] +brim_replaces_support = False +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_infill_sparse_thickness = =2 * layer_height +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 1) * layer_height +top_bottom_thickness = 1 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.2mm.inst.cfg new file mode 100644 index 0000000000..e0b7b2649e --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.2mm.inst.cfg @@ -0,0 +1,31 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_bam +quality_type = draft +setting_version = 25 +type = quality +variant = BB 0.4 +weight = -2 + +[values] +brim_replaces_support = False +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 50 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 50) +support_angle = 45 +support_bottom_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_top_distance = =math.ceil(min(extruderValues('material_adhesion_tendency')) / 2) * layer_height +top_bottom_thickness = 1 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.3mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.3mm.inst.cfg new file mode 100644 index 0000000000..e4d8c1af04 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_bam_0.3mm.inst.cfg @@ -0,0 +1,31 @@ +[general] +definition = ultimaker_s8 +name = Extra Fast +version = 4 + +[metadata] +material = generic_bam +quality_type = verydraft +setting_version = 25 +type = quality +variant = BB 0.4 +weight = -3 + +[values] +brim_replaces_support = False +build_volume_temperature = =50 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 24 +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +machine_nozzle_cool_down_speed = 0.75 +machine_nozzle_heat_up_speed = 1.6 +material_print_temperature = =default_material_print_temperature + 5 +prime_tower_enable = =min(extruderValues('material_surface_energy')) < 100 +speed_topbottom = =math.ceil(speed_print * 35 / 70) +speed_wall = =math.ceil(speed_print * 50 / 70) +speed_wall_0 = =math.ceil(speed_wall * 35 / 50) +support_angle = 45 +support_bottom_distance = 0.3 +support_interface_density = =min(extruderValues('material_surface_energy')) +support_interface_enable = True +support_top_distance = 0.3 +top_bottom_thickness = 1 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.15mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.15mm.inst.cfg new file mode 100644 index 0000000000..0c09aeb098 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.15mm.inst.cfg @@ -0,0 +1,39 @@ +[general] +definition = ultimaker_s8 +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = BB 0.4 +weight = -1 + +[values] +acceleration_prime_tower = 1500 +acceleration_support = 1500 +brim_replaces_support = False +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +initial_layer_line_width_factor = 150 +jerk_prime_tower = 4000 +jerk_support = 4000 +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 10 +minimum_support_area = 4 +prime_tower_min_volume = 20 +retraction_amount = 6.5 +retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) +speed_prime_tower = 50 +speed_support = 50 +speed_support_bottom = =2*speed_support_interface/5 +speed_support_interface = 50 +support_bottom_density = 70 +support_infill_sparse_thickness = =2 * layer_height +support_interface_enable = True +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.1mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.1mm.inst.cfg new file mode 100644 index 0000000000..598167bd87 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.1mm.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = ultimaker_s8 +name = Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = BB 0.4 +weight = 0 + +[values] +acceleration_prime_tower = 1500 +acceleration_support = 1500 +brim_replaces_support = False +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +initial_layer_line_width_factor = 150 +jerk_prime_tower = 4000 +jerk_support = 4000 +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature - 5 +minimum_support_area = 4 +prime_tower_min_volume = 20 +retraction_amount = 6.5 +retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) +speed_prime_tower = 50 +speed_support = 50 +speed_support_bottom = =2*speed_support_interface/5 +speed_support_interface = 50 +support_bottom_density = 70 +support_infill_sparse_thickness = =2 * layer_height +support_interface_enable = True +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.2mm.inst.cfg new file mode 100644 index 0000000000..033d3cc1df --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.2mm.inst.cfg @@ -0,0 +1,39 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = draft +setting_version = 25 +type = quality +variant = BB 0.4 +weight = -2 + +[values] +acceleration_prime_tower = 1500 +acceleration_support = 1500 +brim_replaces_support = False +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +initial_layer_line_width_factor = 150 +jerk_prime_tower = 4000 +jerk_support = 4000 +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature + 5 +minimum_support_area = 4 +prime_tower_min_volume = 20 +retraction_amount = 6.5 +retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) +speed_prime_tower = 50 +speed_support = 50 +speed_support_bottom = =2*speed_support_interface/5 +speed_support_interface = 50 +support_bottom_density = 70 +support_interface_enable = True +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.3mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.3mm.inst.cfg new file mode 100644 index 0000000000..7fd3c80f6e --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_bb0.4_pva_0.3mm.inst.cfg @@ -0,0 +1,40 @@ +[general] +definition = ultimaker_s8 +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = verydraft +setting_version = 25 +type = quality +variant = BB 0.4 +weight = -3 + +[values] +acceleration_prime_tower = 1500 +acceleration_support = 1500 +brim_replaces_support = False +build_volume_temperature = =70 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 35 +cool_fan_enabled = =not (support_enable and (extruder_nr == support_infill_extruder_nr)) +default_material_bed_temperature = =0 if extruders_enabled_count > 1 and (not support_enable or extruder_nr != support_extruder_nr) else 60 +initial_layer_line_width_factor = 150 +jerk_prime_tower = 4000 +jerk_support = 4000 +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 10 +material_print_temperature = =default_material_print_temperature - 5 +minimum_support_area = 4 +prime_tower_min_volume = 20 +retraction_amount = 6.5 +retraction_count_max = 5 +skirt_brim_minimal_length = =min(2000, 175 / (layer_height * line_width)) +speed_prime_tower = 50 +speed_support = 50 +speed_support_bottom = =2*speed_support_interface/5 +speed_support_interface = 50 +support_bottom_density = 70 +support_infill_sparse_thickness = 0.3 +support_interface_enable = True +support_z_distance = 0 + diff --git a/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_cpe-plus_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_cpe-plus_0.2mm.inst.cfg new file mode 100644 index 0000000000..3475b01999 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_cpe-plus_0.2mm.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_cpe_plus +quality_type = draft +setting_version = 25 +type = quality +variant = CC+ 0.4 +weight = -2 + +[values] +adhesion_type = brim +material_alternate_walls = True +material_final_print_temperature = =material_print_temperature - 15 +material_initial_print_temperature = =material_print_temperature - 15 + diff --git a/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg new file mode 100644 index 0000000000..1085302fc7 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_nylon-cf-slide_0.2mm.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_nylon-cf-slide +quality_type = draft +setting_version = 25 +type = quality +variant = CC+ 0.4 +weight = -2 + +[values] +cool_min_layer_time_fan_speed_max = 11 +retraction_prime_speed = 15 + diff --git a/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_pc_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_pc_0.2mm.inst.cfg new file mode 100644 index 0000000000..bb73d83750 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_pc_0.2mm.inst.cfg @@ -0,0 +1,25 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_pc +quality_type = draft +setting_version = 25 +type = quality +variant = CC+ 0.4 +weight = -2 + +[values] +adhesion_type = brim +cool_min_layer_time = 6 +cool_min_layer_time_fan_speed_max = 12 +inset_direction = inside_out +material_alternate_walls = True +material_final_print_temperature = =material_print_temperature - 15 +material_flow = 95 +material_initial_print_temperature = =material_print_temperature - 15 +retraction_prime_speed = 15 +speed_wall_x = =speed_wall_0 + diff --git a/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_petcf_0.2mm.inst.cfg b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_petcf_0.2mm.inst.cfg new file mode 100644 index 0000000000..0038bb0a4d --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_cc_plus_0.4_petcf_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +material = generic_petcf +quality_type = draft +setting_version = 25 +type = quality +variant = CC+ 0.4 +weight = -2 + +[values] +switch_extruder_retraction_amount = 16 + diff --git a/resources/quality/ultimaker_s8/um_s8_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_s8/um_s8_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..141e47e56f --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_s8 +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = =round(0.2 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_s8/um_s8_global_Fast_Quality.inst.cfg b/resources/quality/ultimaker_s8/um_s8_global_Fast_Quality.inst.cfg new file mode 100644 index 0000000000..2459f89722 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_global_Fast_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_s8 +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 25 +type = quality +weight = -1 + +[values] +layer_height = =round(0.15 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_s8/um_s8_global_Normal_Quality.inst.cfg b/resources/quality/ultimaker_s8/um_s8_global_Normal_Quality.inst.cfg new file mode 100644 index 0000000000..52f9fc0cbb --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_global_Normal_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_s8 +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 25 +type = quality +weight = 0 + +[values] +layer_height = =round(0.1 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_s8/um_s8_global_Verydraft_Quality.inst.cfg b/resources/quality/ultimaker_s8/um_s8_global_Verydraft_Quality.inst.cfg new file mode 100644 index 0000000000..496fd504f9 --- /dev/null +++ b/resources/quality/ultimaker_s8/um_s8_global_Verydraft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_s8 +name = Extra Fast +version = 4 + +[metadata] +global_quality = True +quality_type = verydraft +setting_version = 25 +type = quality +weight = -3 + +[values] +layer_height = =round(0.3 * material_shrinkage_percentage_z / 100, 5) + diff --git a/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..44766df370 --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = ultimaker_metallic_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..003bda5f10 --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..bbd96b5335 --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_0.4mm_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height + diff --git a/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..b84b40a33b --- /dev/null +++ b/resources/quality/ultimaker_sketch/um_sketch_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..fb5c40278f --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +material = ultimaker_metallic_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..a42ef4e565 --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height * 0.75 + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..5b83ae532e --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_0.4mm_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] +support_z_distance = =layer_height * 0.75 + diff --git a/resources/quality/ultimaker_sketch_large/um_sketch_large_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_sketch_large/um_sketch_large_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..139361a555 --- /dev/null +++ b/resources/quality/ultimaker_sketch_large/um_sketch_large_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_large +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..e8f2116bdb --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-metallic-pla-175_0.2mm.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = ultimaker_sketch_sprint +name = Fast +version = 4 + +[metadata] +material = ultimaker_metallic_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] +cool_min_temperature = 230 +infill_angles = [45,45,45,45,45,135,135,135,135,135] +material_final_print_temperature = 230 +material_initial_print_temperature = 230 +speed_print = 125 +speed_roofing = 100 +speed_support_bottom = 100 +speed_support_interface = 125 +speed_topbottom = 100 +speed_wall = 75 +speed_wall_x = 100 +support_material_flow = 92 +wall_overhang_speed_factors = [23] + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg new file mode 100644 index 0000000000..e88b8d8308 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.27mm.inst.cfg @@ -0,0 +1,16 @@ +[general] +definition = ultimaker_sketch_sprint +name = Extra Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_pla_175 +quality_type = imperial +setting_version = 25 +type = quality +variant = 0.4mm +weight = -3 + +[values] + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..7fe5437a80 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-pla-175_0.2mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_sprint +name = Fast +version = 4 + +[metadata] +material = ultimaker_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg new file mode 100644 index 0000000000..f74eadeac3 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.27mm.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = ultimaker_sketch_sprint +name = Extra Fast - Experimental +version = 4 + +[metadata] +is_experimental = True +material = ultimaker_tough_pla_175 +quality_type = imperial +setting_version = 25 +type = quality +variant = 0.4mm +weight = -3 + +[values] +acceleration_layer_0 = 200 +acceleration_travel_layer_0 = =acceleration_layer_0 +speed_layer_0 = 30 +speed_slowdown_layers = 4 +speed_travel_layer_0 = 150 +wall_0_material_flow_layer_0 = =material_flow * 1.03 +wall_x_material_flow_layer_0 = =material_flow * 0.95 + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm.inst.cfg new file mode 100644 index 0000000000..351fbac169 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_0.4mm_um-tough-pla-175_0.2mm.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = ultimaker_sketch_sprint +name = Fast +version = 4 + +[metadata] +material = ultimaker_tough_pla_175 +quality_type = draft +setting_version = 25 +type = quality +variant = 0.4mm +weight = -2 + +[values] +acceleration_layer_0 = 200 +acceleration_travel_layer_0 = =acceleration_layer_0 +speed_layer_0 = 30 +speed_slowdown_layers = 4 +speed_travel_layer_0 = 150 +wall_0_material_flow_layer_0 = =material_flow * 1.03 +wall_x_material_flow_layer_0 = =material_flow * 0.95 + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Draft_Quality.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Draft_Quality.inst.cfg new file mode 100644 index 0000000000..4650f8e581 --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Draft_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_sprint +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = draft +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.2 + diff --git a/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Imperial_Quality.inst.cfg b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Imperial_Quality.inst.cfg new file mode 100644 index 0000000000..133df1041e --- /dev/null +++ b/resources/quality/ultimaker_sketch_sprint/um_sketch_sprint_global_Imperial_Quality.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_sprint +name = Extra Fast +version = 4 + +[metadata] +global_quality = True +quality_type = imperial +setting_version = 25 +type = quality +weight = -2 + +[values] +layer_height = 0.27 + diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg index d076e5e9bc..64d9a36704 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg index 58796f169c..41db9808c9 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg index ea995b18df..91853635f0 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg index 037722df8f..3ea31f6dfb 100644 --- a/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_30/abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg index 8647807691..9fd1c45df5 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg index ead1a20886..7b103d9f73 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg index a5d5f5e1bb..4f52fbdde7 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg index ef28599bf2..f28a3580a9 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg index d14443bfb8..a03e10cb1c 100644 --- a/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_40/abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg index 7945311f47..83321d6715 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg index 897d3b0ba2..0c93e822ad 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg index d15a3bdf71..9631dfd516 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg index 34f5d3cf26..fa6f109275 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg index eadeb1bf75..a31285e847 100644 --- a/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/abs/nozzle_0_50/abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg index dcbe57dd5e..3659b80d41 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg index ce50864b51..e4abbbdbcc 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg index 0a0e16f7eb..8ea5edc32b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg index afbbe01541..2b8bdb79ff 100644 --- a/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_30/hips_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg index 276ab9c4ce..d4aea21adb 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg index ee3de82b74..98d95539a3 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg index f6333c6e59..46e5152715 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg index ecc3aec007..5e7aa1c1e8 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg index c653bed0e7..4238973718 100644 --- a/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_40/hips_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg index bdc1bc20e4..9c2451bb8a 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg index 54f27659ed..fc30783f97 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg index 4620fa5712..2fd13406b1 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg index 6bd9406ccc..e042b3c59b 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg index bb4d584e6d..fa5745a835 100644 --- a/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/hips/nozzle_0_50/hips_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips quality_type = q035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/layer_0.05.inst.cfg b/resources/quality/uni_base/layer_0.05.inst.cfg index e641d64fc7..c20b1c7300 100644 --- a/resources/quality/uni_base/layer_0.05.inst.cfg +++ b/resources/quality/uni_base/layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q005 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/uni_base/layer_0.10.inst.cfg b/resources/quality/uni_base/layer_0.10.inst.cfg index 2527e5b3d4..0ba29319f9 100644 --- a/resources/quality/uni_base/layer_0.10.inst.cfg +++ b/resources/quality/uni_base/layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/uni_base/layer_0.15.inst.cfg b/resources/quality/uni_base/layer_0.15.inst.cfg index 3bc9d1ff87..74e3882d17 100644 --- a/resources/quality/uni_base/layer_0.15.inst.cfg +++ b/resources/quality/uni_base/layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/uni_base/layer_0.20.inst.cfg b/resources/quality/uni_base/layer_0.20.inst.cfg index 05f9ad6151..6c61f58c09 100644 --- a/resources/quality/uni_base/layer_0.20.inst.cfg +++ b/resources/quality/uni_base/layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/uni_base/layer_0.25.inst.cfg b/resources/quality/uni_base/layer_0.25.inst.cfg index 200a80d416..c219c61666 100644 --- a/resources/quality/uni_base/layer_0.25.inst.cfg +++ b/resources/quality/uni_base/layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/uni_base/layer_0.30.inst.cfg b/resources/quality/uni_base/layer_0.30.inst.cfg index 217cc39d13..af9eb7ab44 100644 --- a/resources/quality/uni_base/layer_0.30.inst.cfg +++ b/resources/quality/uni_base/layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/uni_base/layer_0.35.inst.cfg b/resources/quality/uni_base/layer_0.35.inst.cfg index 8eff4a4b8b..806c4e29c9 100644 --- a/resources/quality/uni_base/layer_0.35.inst.cfg +++ b/resources/quality/uni_base/layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q035 -setting_version = 23 +setting_version = 25 type = quality weight = -7 diff --git a/resources/quality/uni_base/layer_0.40.inst.cfg b/resources/quality/uni_base/layer_0.40.inst.cfg index cd353afa3b..7231945384 100644 --- a/resources/quality/uni_base/layer_0.40.inst.cfg +++ b/resources/quality/uni_base/layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = q040 -setting_version = 23 +setting_version = 25 type = quality weight = -8 diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg index de0913379d..75d0b84148 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg index 1c2e9d9953..3adfbde5af 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg index 35de218dcb..07c6ce1211 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg index 5b68da394b..124ac8875a 100644 --- a/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_30/petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg index 2769e9c11b..45f2858a0f 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg index b370177f2a..634f20904f 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg index 9b09314896..6bcaa272cb 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg index 4175b3b882..4c9a9334f1 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg index 513cc23f41..7dc1f4da5d 100644 --- a/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_40/petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg index 12556d6daa..eaafeff3c6 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg index efb0f497aa..2fa2a475df 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg index 60149a698a..06c1cb954d 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg index 14c0ae80bb..b2cb815957 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg index 0caae6620c..84a995dcdf 100644 --- a/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/petg/nozzle_0_50/petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = q035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg index 4d34852923..3437f34e90 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg index 508e79e005..7645ccd386 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg index 2d427ac506..397b9b032c 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg index 96e5a7e923..dce774cf49 100644 --- a/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_30/pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg index 0807042bb0..a2f2706422 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg index 7a680d07dd..29f9bb3696 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg index 90dae71153..280ebc9493 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg index 4dd470095b..a28b3c85a0 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg index cf55c91bd7..d8515f8b93 100644 --- a/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_40/pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg index 880a254708..87c6a75c4b 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg index 4ef63d7b08..cf617b68ef 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg index f06d526431..8ecb8ab84b 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg index 2ff7650db7..e96ed71778 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg index 6f4fb83eab..68d38cecf3 100644 --- a/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/uni_base/pla/nozzle_0_50/pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = q035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm Nozzle diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg index 1c6e89f0fc..d6d5518d04 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = extreme -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg index 6d0017cbe4..b86da4dc83 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg index 0f99d857c6..87f9743b69 100644 --- a/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_ABS_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_ABS quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg index 93eee7b63e..d40453dd3e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extreme -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg index 1c65c533e8..6f55b90bd0 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg index d169d4d59a..8f741ba35c 100644 --- a/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_Global_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg index 17ddd32edb..9d138e97ed 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = extreme -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg index bd1c5850c6..d05f061d98 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg index e9dc246067..baaaec9e56 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PET_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PET quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg index 95b43d256e..8f301d956e 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = extreme -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg index ed5f38c330..befb0cb12c 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg index 22072f12b4..3f03992feb 100644 --- a/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_PLA_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_PLA quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg index ff7abe36f5..5ce62dbb28 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Extreme_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = extreme -setting_version = 23 +setting_version = 25 type = quality weight = 2 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg index 02a59ad0f5..8c907a78ea 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_High_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = 1 diff --git a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg index 468668bc59..2564d05872 100644 --- a/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg +++ b/resources/quality/vertex_delta_k8800/k8800_TPU_Normal_Quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Vertex_Delta_TPU quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg index d568325cce..9009e5afa5 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg index 6b5c2865d8..6b1407bc91 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg index 17a4f24cb2..e396af4c7c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg index cf540a9932..e740352f4e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg index d9b7be615c..9b33c24549 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg index 0d2405589c..4c1951d903 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg index 3f2515bbf5..1b45b6054f 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg index d6064b9a59..7df72d864b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg index a0083995a5..a42a24680d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg index f6545fa60c..c46ed10b3d 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg index 28d9186b29..738397d26b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg index 7f65012c93..2caf075ce4 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg index 4949b12a62..c6a786aea2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg index 745f3df40e..eac298c2b9 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg index cfc4942cbb..177cb01c14 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg index e00e416f06..09597fbb69 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg index 3a25826127..289fff1c04 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg index 29081be573..5fe9c3dee6 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg index a200039cdc..a78ece30b1 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg index eef989fadb..fb74285b36 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg index 02690c101d..c51d7374c9 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg index 53bc180c21..138f4e637b 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg index 290a06a2c4..b574f8fdd0 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg index 8f0e13f144..de1f2d29eb 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg index c90b701134..b70966fe07 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg index 857497278e..e3c91f92c2 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg index 79e9a7d18c..fac6c304b0 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg index 17664cded0..d9bbb84c29 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg index c672c86d72..855b4434b8 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg index 8d7a5a486e..13f109632e 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg index 2d6cbc5e52..da7bb2a412 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg index d12c7e66e3..e8d346861c 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg index 564190eb44..193db79725 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg index 086845dc3c..eb79e01605 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg index 83ca684136..69283dc18f 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg index df1455f308..61dd981d80 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg index 301acfa939..e1460774bc 100644 --- a/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex2plus/trex2plus_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg index 7241dd65f3..3ba75c9548 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg index 95b8201f1d..244853ca5e 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg index 40c59a6dac..05cd497e58 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg index 77739985e9..cfbbfe13da 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg index 25abb907f4..7b1cf7227d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg index 58732f9d7e..418bb80f61 100644 --- a/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg index 6b57e6b6c9..ab1d4b5e0e 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg index 8e02902a41..c1d90ff338 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg index 494a384e4a..105ae634a7 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg index 5b4c240f01..51c8fe2132 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg index f0ddd4e581..73b738745b 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg index e0351ea270..4b30eb52ef 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg index d9362f1fde..91a73ba445 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg index e4d0f933e1..28cf72409d 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg index 1ccfed86f9..c650668130 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg index 15252d1ccf..8b54a6e2b6 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg index ba247803be..74cb597eb7 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg index c1449e986a..8120eeeecb 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg index 8e83bb561c..c27cf08916 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg index f196808f60..7b18aec28c 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg index 68b4d68f35..10672fe8b7 100644 --- a/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg index 64fa8215bd..444ed2cb64 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg index 5dc644e22b..3647f54412 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg index 807605532b..7a547c1fe0 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg index 69b811b413..3ad6871989 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg index bbacab15ac..a63ead7dd4 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg index 464b184e9a..a12ab5d8ae 100644 --- a/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg index fd88d032b4..ddfd4a9d44 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg index e08d8b6842..102c1d4fa9 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg index 8039e2d102..e7274fd931 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg index 91b42d6988..fca41783f0 100644 --- a/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg index 7017c58fb3..99576de918 100644 --- a/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg index dfb030a717..503dacf7f0 100644 --- a/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg index 46e4c52640..5ac89ada34 100644 --- a/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg index 067d541bbd..e941c67f7e 100644 --- a/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg index 20be9356b5..7bda343321 100644 --- a/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg index 84663c26f8..595cb8155d 100644 --- a/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg +++ b/resources/quality/vivedino/trex3/trex3_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_coarse.inst.cfg b/resources/quality/volumic/sh65_coarse.inst.cfg index 4ee607642d..22cc6e88af 100644 --- a/resources/quality/volumic/sh65_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/sh65_draft.inst.cfg b/resources/quality/volumic/sh65_draft.inst.cfg index d20069ba37..7a01ab9ca5 100644 --- a/resources/quality/volumic/sh65_draft.inst.cfg +++ b/resources/quality/volumic/sh65_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/sh65_extra_coarse.inst.cfg b/resources/quality/volumic/sh65_extra_coarse.inst.cfg index aaf4f6d4b9..595bd0d487 100644 --- a/resources/quality/volumic/sh65_extra_coarse.inst.cfg +++ b/resources/quality/volumic/sh65_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/sh65_fast.inst.cfg b/resources/quality/volumic/sh65_fast.inst.cfg index 0e91710410..90beff380a 100644 --- a/resources/quality/volumic/sh65_fast.inst.cfg +++ b/resources/quality/volumic/sh65_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/sh65_high.inst.cfg b/resources/quality/volumic/sh65_high.inst.cfg index f077f59a21..db515c670d 100644 --- a/resources/quality/volumic/sh65_high.inst.cfg +++ b/resources/quality/volumic/sh65_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/sh65_normal.inst.cfg b/resources/quality/volumic/sh65_normal.inst.cfg index 4dfe95931e..f8c2ab60f2 100644 --- a/resources/quality/volumic/sh65_normal.inst.cfg +++ b/resources/quality/volumic/sh65_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg index f17c733d65..6081b5d381 100644 --- a/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg index 811f769693..2f5d448664 100644 --- a/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg index b95a225cbf..f16203271b 100644 --- a/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg index fcc2659b55..f703cf720a 100644 --- a/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg index 79b8722ad7..61b6607937 100644 --- a/resources/quality/volumic/stream20dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg index dc39fc3c8c..4f22efb2bb 100644 --- a/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg index 3226c97f8e..26d2b83b31 100644 --- a/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg index 2e326bcff8..32c5aaa837 100644 --- a/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg index 19cc0ddcef..d86cff56ac 100644 --- a/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg index 58edf8244a..47a716e633 100644 --- a/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg index 3a2f4ebc8e..34b138ae37 100644 --- a/resources/quality/volumic/stream20pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg index de4a217293..e2dbc91e4f 100644 --- a/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream20pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg index f9d939edde..62029995fb 100644 --- a/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg index c89e1d95f9..ad136f0c16 100644 --- a/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg index 808ff582c6..5a8f1181f0 100644 --- a/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg index 8e8c03caa9..e90814491a 100644 --- a/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg index 6d22eff318..c7d888403c 100644 --- a/resources/quality/volumic/stream30dual_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg index 03689321a1..37139bb94b 100644 --- a/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30dual_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30mk3_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_coarse.inst.cfg index 7da72446a1..97a36a28b8 100644 --- a/resources/quality/volumic/stream30mk3_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30mk3_draft.inst.cfg b/resources/quality/volumic/stream30mk3_draft.inst.cfg index 21122e0148..e601152f22 100644 --- a/resources/quality/volumic/stream30mk3_draft.inst.cfg +++ b/resources/quality/volumic/stream30mk3_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg index 9c046df8d0..267058caec 100644 --- a/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30mk3_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30mk3_fast.inst.cfg b/resources/quality/volumic/stream30mk3_fast.inst.cfg index a9a0abfe44..5ce485e189 100644 --- a/resources/quality/volumic/stream30mk3_fast.inst.cfg +++ b/resources/quality/volumic/stream30mk3_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30mk3_high.inst.cfg b/resources/quality/volumic/stream30mk3_high.inst.cfg index 59b18958ea..373a8b3f90 100644 --- a/resources/quality/volumic/stream30mk3_high.inst.cfg +++ b/resources/quality/volumic/stream30mk3_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30mk3_normal.inst.cfg b/resources/quality/volumic/stream30mk3_normal.inst.cfg index 13236aa24e..687190217c 100644 --- a/resources/quality/volumic/stream30mk3_normal.inst.cfg +++ b/resources/quality/volumic/stream30mk3_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg index 093717c0cf..2d685ee8bf 100644 --- a/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg index fc6ad396c7..f875af6d66 100644 --- a/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg index af4cbf94cf..1537f6e8ae 100644 --- a/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg index 2e85dd0709..cd4316908e 100644 --- a/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg index a88bbec9ea..bd58d33a2c 100644 --- a/resources/quality/volumic/stream30pro_mk2_high.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg index a4d5156c75..b058ee05a6 100644 --- a/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg +++ b/resources/quality/volumic/stream30pro_mk2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_coarse.inst.cfg index c88987710a..f1117e6f2f 100644 --- a/resources/quality/volumic/stream30ultra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultra_draft.inst.cfg b/resources/quality/volumic/stream30ultra_draft.inst.cfg index da798b475f..653f7b399f 100644 --- a/resources/quality/volumic/stream30ultra_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultra_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg index 6c0c43ef21..7cd2b5a201 100644 --- a/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultra_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultra_fast.inst.cfg b/resources/quality/volumic/stream30ultra_fast.inst.cfg index 874cdaab8f..2c021c9d34 100644 --- a/resources/quality/volumic/stream30ultra_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultra_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultra_high.inst.cfg b/resources/quality/volumic/stream30ultra_high.inst.cfg index 7480719656..dc55a42cc1 100644 --- a/resources/quality/volumic/stream30ultra_high.inst.cfg +++ b/resources/quality/volumic/stream30ultra_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultra_normal.inst.cfg b/resources/quality/volumic/stream30ultra_normal.inst.cfg index 0d46173ef4..9434141c14 100644 --- a/resources/quality/volumic/stream30ultra_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultra_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg index 32dbfe249b..2ac883df76 100644 --- a/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg index 3e0e6513e9..80da0b95b1 100644 --- a/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg index 89bb2c6fb3..f82e0baafa 100644 --- a/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg index 260247659b..d8aaaf09ef 100644 --- a/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg index a747b2cb40..dcd2653247 100644 --- a/resources/quality/volumic/stream30ultrasc2_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg index 843d7b584f..83fa61c0b0 100644 --- a/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc2_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg index f8a7d60eb2..535ca9ed88 100644 --- a/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg index 25342c4205..b46d2b092c 100644 --- a/resources/quality/volumic/stream30ultrasc_draft.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg index 5fe5874ef5..d1aed0afb2 100644 --- a/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_extra_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg index ca187fd969..8857e80978 100644 --- a/resources/quality/volumic/stream30ultrasc_fast.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/volumic/stream30ultrasc_high.inst.cfg b/resources/quality/volumic/stream30ultrasc_high.inst.cfg index 41170d0261..295de394ef 100644 --- a/resources/quality/volumic/stream30ultrasc_high.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_high.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = high -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg index 1ef8a67370..fc287aa32d 100644 --- a/resources/quality/volumic/stream30ultrasc_normal.inst.cfg +++ b/resources/quality/volumic/stream30ultrasc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg index ca793bd4cd..5fec7ce843 100644 --- a/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg index ce40e62445..4a5f7d7615 100644 --- a/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_extrafine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg index 0449c493fa..0a2d9084d6 100644 --- a/resources/quality/voron2/voron2_global_fast_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fast_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fast -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg index 6f29ec5055..4c1c7c369f 100644 --- a/resources/quality/voron2/voron2_global_fine_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_fine_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg index e3d8fbbd5a..84726cdf95 100644 --- a/resources/quality/voron2/voron2_global_normal_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_normal_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg index 1ace1241f1..42f589376f 100644 --- a/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_sprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg index f294ceb8bb..02be376383 100644 --- a/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_supersprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg index 999e2cf9db..184b57c24e 100644 --- a/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg +++ b/resources/quality/voron2/voron2_global_ultrasprint_quality.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality [values] diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg index d875200d07..1a78aff02e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg index 41fa3934fd..5b7b32b9cc 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg index 7cacd10f62..69a732338b 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg index 27c9b2baa4..f86d5dd456 100644 --- a/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_ASA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ASA_extrafine.inst.cfg new file mode 100644 index 0000000000..8415cf620f --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_ASA_extrafine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafine +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.25_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ASA_fast.inst.cfg new file mode 100644 index 0000000000..f196792e41 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 180 + diff --git a/resources/quality/voron2/voron2_v6_0.25_ASA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ASA_fine.inst.cfg new file mode 100644 index 0000000000..bd26606f8e --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_ASA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.25_ASA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_ASA_normal.inst.cfg new file mode 100644 index 0000000000..9770e6c2d2 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_ASA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 240 + diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg index 6aaa0a5cec..01da20fc32 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg index 20c0c54627..217a0ee958 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg index 98433b300a..1db8fd3cac 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg index c52e1edc69..a7386463ae 100644 --- a/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg index 7701363d27..7d01a19fcc 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg index db3304c8bd..3d1ee7703e 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg index 2340ac5eb5..9ea04f256f 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg index 8cb43102a9..ee26f7aeab 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg index 1da2730641..365d9b1669 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg index e880dfde90..86378c6349 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg index 64eb944a8e..96dd2af207 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg index 16b89df09d..36009fd8fb 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg index 5ab36fdc1d..6f794d3f3c 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg index 128f4f3519..7474701118 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg index bef1c297b9..7f2e65bc23 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg index 0fbe2717ff..d5cfe39117 100644 --- a/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.25_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.25mm diff --git a/resources/quality/voron2/voron2_v6_0.25_PVA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PVA_extrafine.inst.cfg new file mode 100644 index 0000000000..cfb94c2aa7 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_PVA_extrafine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafine +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.25_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PVA_fast.inst.cfg new file mode 100644 index 0000000000..de909f571b --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 180 + diff --git a/resources/quality/voron2/voron2_v6_0.25_PVA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PVA_fine.inst.cfg new file mode 100644 index 0000000000..30cea3f2ab --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_PVA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.25_PVA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_PVA_normal.inst.cfg new file mode 100644 index 0000000000..3cc351cee6 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_PVA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_print = 240 + diff --git a/resources/quality/voron2/voron2_v6_0.25_TPU_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_TPU_extrafine.inst.cfg new file mode 100644 index 0000000000..1dc4fa73dd --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_TPU_extrafine.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fine +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafine +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 300 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.25_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_TPU_fast.inst.cfg new file mode 100644 index 0000000000..dac83665b9 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 180 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.25_TPU_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_TPU_fine.inst.cfg new file mode 100644 index 0000000000..8615d9c271 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_TPU_fine.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_tpu +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 300 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.25_TPU_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.25_TPU_normal.inst.cfg new file mode 100644 index 0000000000..146103ce1b --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.25_TPU_normal.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.25mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 240 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg index 8c340b4972..fa9ee4781c 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg index b618f27185..9d0b6aa70b 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg index 5fc1baf868..d451bbec6e 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg index 0e79604c85..2354f131f9 100644 --- a/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_ASA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ASA_extrafine.inst.cfg new file mode 100644 index 0000000000..29e51d7bce --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_ASA_extrafine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafine +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.30_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ASA_fast.inst.cfg new file mode 100644 index 0000000000..8649570282 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 160 + diff --git a/resources/quality/voron2/voron2_v6_0.30_ASA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ASA_fine.inst.cfg new file mode 100644 index 0000000000..650fa85b8e --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_ASA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.30_ASA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_ASA_normal.inst.cfg new file mode 100644 index 0000000000..6636897c7d --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_ASA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 200 + diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg index aab9828c89..5c10b31844 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg index 5e68a88b28..ba515ca00b 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg index 47cc7bd3aa..4786a04864 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg index c265542a59..f7d959657b 100644 --- a/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg index 2eda5bfb6d..1a8a810d67 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg index a1891a441d..5b12d1251a 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg index cb5a8185c6..6ebea5cc38 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg index 3871631972..3371b37777 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg index b3540539e9..80bd1a1b62 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg index 8d0a0683e4..d1394668b1 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg index 1e1f83bcd8..5e73449340 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg index 25eeb9671a..fde4bc54cf 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg index a2fdab44e1..49c175afcf 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_extrafine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg index 0d90f4563f..accb59e77e 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg index 38be216020..30b038271e 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg index a85824d26e..ae1c2b6f25 100644 --- a/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.30_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.30mm diff --git a/resources/quality/voron2/voron2_v6_0.30_PVA_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PVA_extrafine.inst.cfg new file mode 100644 index 0000000000..4cbb072d75 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_PVA_extrafine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafine +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.30_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PVA_fast.inst.cfg new file mode 100644 index 0000000000..63d616a158 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 160 + diff --git a/resources/quality/voron2/voron2_v6_0.30_PVA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PVA_fine.inst.cfg new file mode 100644 index 0000000000..2a2458b497 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_PVA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_v6_0.30_PVA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_PVA_normal.inst.cfg new file mode 100644 index 0000000000..61078c81d7 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_PVA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_print = 200 + diff --git a/resources/quality/voron2/voron2_v6_0.30_TPU_extrafine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_TPU_extrafine.inst.cfg new file mode 100644 index 0000000000..d9d5794a7c --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_TPU_extrafine.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fine +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafine +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 300 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.30_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_TPU_fast.inst.cfg new file mode 100644 index 0000000000..b8c5491d0c --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 160 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.30_TPU_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_TPU_fine.inst.cfg new file mode 100644 index 0000000000..3d519ee822 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_TPU_fine.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_tpu +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 300 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.30_TPU_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.30_TPU_normal.inst.cfg new file mode 100644 index 0000000000..9092aec6ae --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.30_TPU_normal.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.30mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 200 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg index f4b4c53530..4f6531196d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg index 765f525e3a..aa06f4bcfd 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg index 79147ed396..91a1fea797 100644 --- a/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ASA_fast.inst.cfg new file mode 100644 index 0000000000..3745a14da6 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_print = 135 + diff --git a/resources/quality/voron2/voron2_v6_0.35_ASA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ASA_fine.inst.cfg new file mode 100644 index 0000000000..950316f71c --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_ASA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_print = 270 + diff --git a/resources/quality/voron2/voron2_v6_0.35_ASA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_ASA_normal.inst.cfg new file mode 100644 index 0000000000..928eb529bc --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_ASA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_print = 180 + diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg index bccc0df919..d5375bb579 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg index e66e09de2e..cffb953aa1 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg index ffa5c7474d..b69a01bbab 100644 --- a/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg index 8c4ff0e135..a103e3db71 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg index aa522f9bf1..660cad4a91 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg index 46218916ca..b15f24867d 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg index 96efd1e41e..e80adc02d8 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg index dbcc850ccd..c4e2d4a288 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg index 0653734b26..e1fa2fbbeb 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg index 2c68fe3d54..1f0d0e6de0 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg index 2d6094cb4c..48bfbb970e 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg index 7a665711e0..392a9e147c 100644 --- a/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.35_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.35mm diff --git a/resources/quality/voron2/voron2_v6_0.35_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PVA_fast.inst.cfg new file mode 100644 index 0000000000..8f136d03a5 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_print = 135 + diff --git a/resources/quality/voron2/voron2_v6_0.35_PVA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PVA_fine.inst.cfg new file mode 100644 index 0000000000..ef9ab6dd85 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_PVA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_print = 270 + diff --git a/resources/quality/voron2/voron2_v6_0.35_PVA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_PVA_normal.inst.cfg new file mode 100644 index 0000000000..f4b9071a50 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_PVA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_print = 180 + diff --git a/resources/quality/voron2/voron2_v6_0.35_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_TPU_fast.inst.cfg new file mode 100644 index 0000000000..5faf7a02c6 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 135 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.35_TPU_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_TPU_fine.inst.cfg new file mode 100644 index 0000000000..1960c196c3 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_TPU_fine.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_tpu +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 270 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.35_TPU_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.35_TPU_normal.inst.cfg new file mode 100644 index 0000000000..b6bfa2627b --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.35_TPU_normal.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.35mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 180 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg index 0d53194339..597b487ffc 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg index beb9e63487..b51dfa571d 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg index f0ae26fdec..e3fe57a286 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg index afab315860..f42d06273c 100644 --- a/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..bbf785154c --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 80 + diff --git a/resources/quality/voron2/voron2_v6_0.40_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ASA_fast.inst.cfg new file mode 100644 index 0000000000..6fb864d16b --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 120 + diff --git a/resources/quality/voron2/voron2_v6_0.40_ASA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ASA_fine.inst.cfg new file mode 100644 index 0000000000..1165f9c3ac --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_ASA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_asa +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 240 + diff --git a/resources/quality/voron2/voron2_v6_0.40_ASA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_ASA_normal.inst.cfg new file mode 100644 index 0000000000..8c9af97019 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_ASA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 160 + diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg index c28857b565..e77797a36b 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg index cc3433b18e..7ace98e353 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg index 3f0760ac52..a21fdfc2ac 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg index ae4eb6a72a..37c677a2bd 100644 --- a/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg index d44de8b675..1b77ab8bf0 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg index 5d95725925..bf6a2d9dd3 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg index 393ebdc42f..0c52ee159b 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg index a702679bd3..fb2430ce6c 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg index 9c187e99e6..c87f140ec8 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg index c92c574d3c..60c056d908 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg index a1694ce160..954758f95f 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg index 3c45b57b03..c2b70fa70e 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg index 087ba0b07a..5034bac12d 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg index 15223eb5e7..ee0a7d54d9 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg index cfe44ff106..ff91b47002 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg index d2a81b81c0..807e9f7041 100644 --- a/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.40mm diff --git a/resources/quality/voron2/voron2_v6_0.40_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..495fb6548d --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 80 + diff --git a/resources/quality/voron2/voron2_v6_0.40_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PVA_fast.inst.cfg new file mode 100644 index 0000000000..7bd1ba1de4 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 120 + diff --git a/resources/quality/voron2/voron2_v6_0.40_PVA_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PVA_fine.inst.cfg new file mode 100644 index 0000000000..0190d72da3 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_PVA_fine.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_pva +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 240 + diff --git a/resources/quality/voron2/voron2_v6_0.40_PVA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_PVA_normal.inst.cfg new file mode 100644 index 0000000000..51f1c55be2 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_PVA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_print = 160 + diff --git a/resources/quality/voron2/voron2_v6_0.40_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..04cfb43677 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 80 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.40_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_TPU_fast.inst.cfg new file mode 100644 index 0000000000..4317de6cfc --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 120 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.40_TPU_fine.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_TPU_fine.inst.cfg new file mode 100644 index 0000000000..c7eb79d79e --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_TPU_fine.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fine +version = 4 + +[metadata] +material = generic_tpu +quality_type = fine +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 240 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.40_TPU_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.40_TPU_normal.inst.cfg new file mode 100644 index 0000000000..a6f0a26399 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.40_TPU_normal.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 160 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg index 595c1a9966..c4ec51c8eb 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg index 203f6be569..47cb2a9afe 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg index 9ac625d685..a25d0d13e8 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg index 1792fcafd2..56f2155df8 100644 --- a/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..0f0f84c860 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 60 + diff --git a/resources/quality/voron2/voron2_v6_0.50_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ASA_fast.inst.cfg new file mode 100644 index 0000000000..6ce4e5d0b3 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 90 + diff --git a/resources/quality/voron2/voron2_v6_0.50_ASA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ASA_normal.inst.cfg new file mode 100644 index 0000000000..ebc1a318f6 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_ASA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 120 + diff --git a/resources/quality/voron2/voron2_v6_0.50_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..e9b23f66a3 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 45 + diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg index cfbbb3e9c4..df929b48db 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg index 5f5347c9c2..f4e303736a 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg index 67461a9d8c..431a1ece23 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg index 5772fc5a71..536f6f8631 100644 --- a/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg index e6977e5443..5536bb9bd3 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg index cbf5f70b5a..a874db28c8 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg index 0e5a6959e8..5333e2dcfa 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg index 0ccd36651d..f6bece73b0 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg index c0aae829e5..6d586fa75e 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg index 322d1bcf21..5372651955 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg index 1b1bb7fe60..6545d9ee0a 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg index ff9950d542..f009c2db4f 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg index 84da32fd55..2bb9b57826 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg index 1dc52397a4..dd59f26db1 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg index a0c6f2b9a1..3063af1d32 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg index 5a959cf640..ebc966df27 100644 --- a/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.50_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.50mm diff --git a/resources/quality/voron2/voron2_v6_0.50_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..47fac16700 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 60 + diff --git a/resources/quality/voron2/voron2_v6_0.50_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PVA_fast.inst.cfg new file mode 100644 index 0000000000..f6d0ce97fe --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 90 + diff --git a/resources/quality/voron2/voron2_v6_0.50_PVA_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PVA_normal.inst.cfg new file mode 100644 index 0000000000..bedcab6681 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_PVA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 120 + diff --git a/resources/quality/voron2/voron2_v6_0.50_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..a141a2d95b --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_print = 45 + diff --git a/resources/quality/voron2/voron2_v6_0.50_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..45f006a547 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 60 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.50_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_TPU_fast.inst.cfg new file mode 100644 index 0000000000..49892d8a83 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 90 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.50_TPU_normal.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_TPU_normal.inst.cfg new file mode 100644 index 0000000000..a6a6992248 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_TPU_normal.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 120 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.50_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.50_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..e95e90dd93 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.50_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.50mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 45 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg index 9b52a77ee3..91c22b872a 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg index a8aaecefdc..fb77901f39 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg index 9dcf32c5f2..3eda0c7106 100644 --- a/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..bcae35f5f3 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_print = 50 + diff --git a/resources/quality/voron2/voron2_v6_0.60_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ASA_fast.inst.cfg new file mode 100644 index 0000000000..3dda1aa344 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_print = 80 + diff --git a/resources/quality/voron2/voron2_v6_0.60_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..f71dd3d097 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_print = 40 + diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg index cd8c3d5e9a..36f6b7056d 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg index 0efae053b7..3889a68b03 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg index b22db49755..9dea5768c9 100644 --- a/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg index d7b5010821..bb57cb6497 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg index 1f6a1c8c55..cdd6bbe53b 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg index 1d206a3b7d..c74de15a43 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg index bc76b30b69..8312763bd0 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg index c39253d040..6538937390 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg index b77ca6d386..f4ca021830 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg index 8cf6106b62..3563d1b72c 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg index 309c742ef0..ba045726e1 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg index 519cb6d205..e420d7e4eb 100644 --- a/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.60mm diff --git a/resources/quality/voron2/voron2_v6_0.60_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..a518244907 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_print = 50 + diff --git a/resources/quality/voron2/voron2_v6_0.60_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PVA_fast.inst.cfg new file mode 100644 index 0000000000..32cc4a42ff --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_print = 80 + diff --git a/resources/quality/voron2/voron2_v6_0.60_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..624e8fd9b7 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_print = 40 + diff --git a/resources/quality/voron2/voron2_v6_0.60_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..472825f867 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 50 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.60_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_TPU_fast.inst.cfg new file mode 100644 index 0000000000..e51fed49e8 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 80 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.60_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.60_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..aca6743723 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.60_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.60mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 40 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg index 6643111182..0c9df4d5bb 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg index ef77e1bd65..5533336319 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg index ab46c7db25..4df7680b91 100644 --- a/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..1fa6380203 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_print = 40 + diff --git a/resources/quality/voron2/voron2_v6_0.80_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..2b9e6eb31d --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_print = 30 + diff --git a/resources/quality/voron2/voron2_v6_0.80_ASA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_ASA_supersprint.inst.cfg new file mode 100644 index 0000000000..dfb0cbcff6 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_ASA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = supersprint +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_print = 24 + diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg index e6dd968958..4c1fd04ddc 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg index 4ff5f02702..a8c36f77de 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg index e55e5e9495..ef9fc94ba0 100644 --- a/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg index 845df53022..6e319a2e48 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg index 1ed64c7b52..db8ea1aacc 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg index c8f280ef00..e935a8602f 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg index 920a63bd22..237ab6e10d 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg index 3bfc1889cf..097f6dffd5 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg index 465756d926..9305ef5fef 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg index 10726885f6..b580b24080 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg index 2b9ff22a15..e33497009c 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg index 6729522329..f80b5e4abd 100644 --- a/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_v6_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = V6 0.80mm diff --git a/resources/quality/voron2/voron2_v6_0.80_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..665b0eae9e --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_print = 40 + diff --git a/resources/quality/voron2/voron2_v6_0.80_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..2727b90a8f --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_print = 30 + diff --git a/resources/quality/voron2/voron2_v6_0.80_PVA_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_PVA_supersprint.inst.cfg new file mode 100644 index 0000000000..eb67a6bc1a --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_PVA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = supersprint +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_print = 24 + diff --git a/resources/quality/voron2/voron2_v6_0.80_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..df51f12bff --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 40 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.80_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..01bb7610c1 --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 30 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_v6_0.80_TPU_supersprint.inst.cfg b/resources/quality/voron2/voron2_v6_0.80_TPU_supersprint.inst.cfg new file mode 100644 index 0000000000..b8f568e5bc --- /dev/null +++ b/resources/quality/voron2/voron2_v6_0.80_TPU_supersprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = supersprint +setting_version = 25 +type = quality +variant = V6 0.80mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 24 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg index ac05f4a859..eeaa221c40 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg index ea91d0e747..32a01a4ccf 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg index 59c5ec6556..4de13d3438 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_ABS_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..d3811fca75 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_print = 250 + diff --git a/resources/quality/voron2/voron2_volcano_0.40_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ASA_fast.inst.cfg new file mode 100644 index 0000000000..43fef60c62 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_volcano_0.40_ASA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_ASA_normal.inst.cfg new file mode 100644 index 0000000000..2d0d7363bc --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_ASA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_asa +quality_type = normal +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg index a20ea38fc1..1b946b6972 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg index fb9a3747e6..0fdf2b09b8 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg index 7f52ed666a..2869f0c4cc 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_Nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg index 461496d938..75de4ecfd0 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg index d399a9ddc0..5b49ce8b5b 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg index 2d8cdd34b2..8c2ca97f73 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PC_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg index 5ee59d8f8d..cbe03a0530 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg index 6469d5fba1..f6662e36b9 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg index a49742d3fc..19e12d5fa1 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PETG_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg index 400d3d25ad..458073d1f5 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg index 81b6163b52..cf38d37b78 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg index 94c1c4419d..cf8e697895 100644 --- a/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.40_PLA_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.40mm diff --git a/resources/quality/voron2/voron2_volcano_0.40_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..50e5ee0349 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_print = 250 + diff --git a/resources/quality/voron2/voron2_volcano_0.40_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PVA_fast.inst.cfg new file mode 100644 index 0000000000..8e43a38f81 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_volcano_0.40_PVA_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_PVA_normal.inst.cfg new file mode 100644 index 0000000000..88183f9230 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_PVA_normal.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_pva +quality_type = normal +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_print = 300 + diff --git a/resources/quality/voron2/voron2_volcano_0.40_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..15f4e04440 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 250 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.40_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_TPU_fast.inst.cfg new file mode 100644 index 0000000000..61f8de807f --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 300 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.40_TPU_normal.inst.cfg b/resources/quality/voron2/voron2_volcano_0.40_TPU_normal.inst.cfg new file mode 100644 index 0000000000..03879a4821 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.40_TPU_normal.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Normal +version = 4 + +[metadata] +material = generic_tpu +quality_type = normal +setting_version = 25 +type = quality +variant = Volcano 0.40mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 300 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg index c7f8225bf8..a00da22abe 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg index 31c38aa2eb..c6e0d79028 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg index 9b3c4a3187..6eda55da42 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..9d33f945ee --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_print = 165 + diff --git a/resources/quality/voron2/voron2_volcano_0.60_ASA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ASA_fast.inst.cfg new file mode 100644 index 0000000000..ca0177aad4 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_ASA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = fast +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_print = 250 + diff --git a/resources/quality/voron2/voron2_volcano_0.60_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..862c42568c --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_print = 125 + diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg index e21c2d9cec..9686666d6f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg index e54b55903e..2b67e13741 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg index a324716f29..8facc35e32 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg index a6af14319a..a5ed6ea722 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg index 0f0cacd9bf..2cc05dcbf5 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg index e9d99c608d..0d4f0b2202 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg index 0ea66c9ef3..5908772fc8 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg index b5459490ce..c414b3092f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg index 5cc95ff206..4231717b7f 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg index a656bf8e13..332b077bd2 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg index 8fad6d93ee..a675b15934 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_fast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = fast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg index 9b49097136..7b309d0736 100644 --- a/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.60_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.60mm diff --git a/resources/quality/voron2/voron2_volcano_0.60_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..16b85b62ba --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_print = 165 + diff --git a/resources/quality/voron2/voron2_volcano_0.60_PVA_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PVA_fast.inst.cfg new file mode 100644 index 0000000000..9588f8bc25 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_PVA_fast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = fast +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_print = 250 + diff --git a/resources/quality/voron2/voron2_volcano_0.60_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..ee6ac27c36 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_print = 125 + diff --git a/resources/quality/voron2/voron2_volcano_0.60_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..3b6bcc101b --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 165 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.60_TPU_fast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_TPU_fast.inst.cfg new file mode 100644 index 0000000000..328ec33396 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_TPU_fast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = fast +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 250 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.60_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.60_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..0499cc9473 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.60_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 0.60mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 125 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg index 4aa795e5f3..f184df488b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg index 0e666729f9..18c52a26f4 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg index be5e2a7e27..a770cfac3c 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_ASA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ASA_extrafast.inst.cfg new file mode 100644 index 0000000000..d5b86ed687 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_ASA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_asa +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_print = 125 + diff --git a/resources/quality/voron2/voron2_volcano_0.80_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..cafa25c712 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_print = 90 + diff --git a/resources/quality/voron2/voron2_volcano_0.80_ASA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_ASA_supersprint.inst.cfg new file mode 100644 index 0000000000..3ac44fb6b6 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_ASA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_print = 70 + diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg index 333fe0c706..f9f8a3028d 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg index d6f3f60056..9132b3f55b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg index d90b2b2a04..c28e06b7f7 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg index a228f481df..9438e01e8b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg index a1be60d0d0..63ad8bf38d 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg index a78bd40fea..5865856c0b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg index 498a142787..9456ee116b 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg index e67efe5ac4..f9566c0112 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg index ca4c177dbe..5cc65db7e0 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg index 062a9e73e8..4b555f0bdf 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_extrafast.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = extrafast -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg index 3927460cf0..b844a9c006 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg index b217a395ad..bc853a4c69 100644 --- a/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_0.80_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 0.80mm diff --git a/resources/quality/voron2/voron2_volcano_0.80_PVA_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PVA_extrafast.inst.cfg new file mode 100644 index 0000000000..82fa1ac323 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_PVA_extrafast.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_pva +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_print = 125 + diff --git a/resources/quality/voron2/voron2_volcano_0.80_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..0810c48234 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_print = 90 + diff --git a/resources/quality/voron2/voron2_volcano_0.80_PVA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_PVA_supersprint.inst.cfg new file mode 100644 index 0000000000..97bdca38ca --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_PVA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_print = 70 + diff --git a/resources/quality/voron2/voron2_volcano_0.80_TPU_extrafast.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_TPU_extrafast.inst.cfg new file mode 100644 index 0000000000..bb2dcae8aa --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_TPU_extrafast.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Extra Fast +version = 4 + +[metadata] +material = generic_tpu +quality_type = extrafast +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 125 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.80_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..2d1e7467ea --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 90 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_0.80_TPU_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_0.80_TPU_supersprint.inst.cfg new file mode 100644 index 0000000000..04ecb0d4a9 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_0.80_TPU_supersprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 0.80mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 70 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg index 380dd8b8c5..414790104b 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg index 49e4ebc455..1e51fb3cd8 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg index 86db81b3e7..0d93be5f48 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..6dad626b1e --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_print = 75 + diff --git a/resources/quality/voron2/voron2_volcano_1.00_ASA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ASA_supersprint.inst.cfg new file mode 100644 index 0000000000..48d8470864 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_ASA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_print = 60 + diff --git a/resources/quality/voron2/voron2_volcano_1.00_ASA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_ASA_ultrasprint.inst.cfg new file mode 100644 index 0000000000..ccec351621 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_ASA_ultrasprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Ultra Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = ultrasprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_print = 50 + diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg index 479eebde1c..476ade7fcb 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg index 84da896303..fd83b03791 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg index 28a398c085..0af94f0d5b 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg index a06c882cfa..1cb8edb442 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg index 5c48659507..a6f355d2b6 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg index 37d3341676..27ba96084c 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg index 8bf4e535e7..b13e0f7aaf 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg index 06fe686ef5..1089a94d18 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg index c227238979..e20ed4e6ec 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg index 9d34cef806..6d6640a50c 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg index 62fefa64b5..16708d883f 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg index 00d88a23a3..ff6eaaa0ea 100644 --- a/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.00_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.00mm diff --git a/resources/quality/voron2/voron2_volcano_1.00_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..b653a9ac36 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_print = 75 + diff --git a/resources/quality/voron2/voron2_volcano_1.00_PVA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PVA_supersprint.inst.cfg new file mode 100644 index 0000000000..c044f537fe --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_PVA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_print = 60 + diff --git a/resources/quality/voron2/voron2_volcano_1.00_PVA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_PVA_ultrasprint.inst.cfg new file mode 100644 index 0000000000..4a439653df --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_PVA_ultrasprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Ultra Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = ultrasprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_print = 50 + diff --git a/resources/quality/voron2/voron2_volcano_1.00_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..700a2c7219 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 75 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_1.00_TPU_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_TPU_supersprint.inst.cfg new file mode 100644 index 0000000000..32d442147d --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_TPU_supersprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 60 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_1.00_TPU_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.00_TPU_ultrasprint.inst.cfg new file mode 100644 index 0000000000..bfdb5eff2b --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.00_TPU_ultrasprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Ultra Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = ultrasprint +setting_version = 25 +type = quality +variant = Volcano 1.00mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 50 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg index 4dc2b48b24..50dcef6c2c 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg index b469ab4c26..68c1b6e1d7 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg index 130b7b2948..edaa98bc5a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_ABS_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_ASA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ASA_sprint.inst.cfg new file mode 100644 index 0000000000..b1aa9438b3 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_ASA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_print = 60 + diff --git a/resources/quality/voron2/voron2_volcano_1.20_ASA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ASA_supersprint.inst.cfg new file mode 100644 index 0000000000..6b5295da3a --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_ASA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_print = 50 + diff --git a/resources/quality/voron2/voron2_volcano_1.20_ASA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_ASA_ultrasprint.inst.cfg new file mode 100644 index 0000000000..e0b46c7ed1 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_ASA_ultrasprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Ultra Sprint +version = 4 + +[metadata] +material = generic_asa +quality_type = ultrasprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_print = 40 + diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg index 8b837d1658..52311dfdca 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg index 58f6a27190..7a2f43b24c 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg index 1706d2be72..70fc0c0283 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_Nylon_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg index e948d3bbc8..f51ccc7c67 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg index 6257674f48..8ab7f98cfd 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg index 5f386d2122..85fdcea94a 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PC_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg index 2c907beb2d..dec810f101 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg index 71b308a408..d0689f436e 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg index 37afa42967..2afd76cfa1 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PETG_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg index c829d0d079..db099e829d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_sprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = sprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg index c7c996050c..2eb19ec7d8 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_supersprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = supersprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg index 6960fad501..6a91755e9d 100644 --- a/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg +++ b/resources/quality/voron2/voron2_volcano_1.20_PLA_ultrasprint.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultrasprint -setting_version = 23 +setting_version = 25 type = quality variant = Volcano 1.20mm diff --git a/resources/quality/voron2/voron2_volcano_1.20_PVA_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PVA_sprint.inst.cfg new file mode 100644 index 0000000000..471c56ea95 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_PVA_sprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_print = 60 + diff --git a/resources/quality/voron2/voron2_volcano_1.20_PVA_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PVA_supersprint.inst.cfg new file mode 100644 index 0000000000..7c6a0c7406 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_PVA_supersprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_print = 50 + diff --git a/resources/quality/voron2/voron2_volcano_1.20_PVA_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_PVA_ultrasprint.inst.cfg new file mode 100644 index 0000000000..957372db73 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_PVA_ultrasprint.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = voron2_base +name = Ultra Sprint +version = 4 + +[metadata] +material = generic_pva +quality_type = ultrasprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_print = 40 + diff --git a/resources/quality/voron2/voron2_volcano_1.20_TPU_sprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_TPU_sprint.inst.cfg new file mode 100644 index 0000000000..febbd31079 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_TPU_sprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = sprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 60 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_1.20_TPU_supersprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_TPU_supersprint.inst.cfg new file mode 100644 index 0000000000..fb3645c1a2 --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_TPU_supersprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Super Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = supersprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 50 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/voron2/voron2_volcano_1.20_TPU_ultrasprint.inst.cfg b/resources/quality/voron2/voron2_volcano_1.20_TPU_ultrasprint.inst.cfg new file mode 100644 index 0000000000..3da5a0223e --- /dev/null +++ b/resources/quality/voron2/voron2_volcano_1.20_TPU_ultrasprint.inst.cfg @@ -0,0 +1,22 @@ +[general] +definition = voron2_base +name = Ultra Sprint +version = 4 + +[metadata] +material = generic_tpu +quality_type = ultrasprint +setting_version = 25 +type = quality +variant = Volcano 1.20mm + +[values] +speed_infill = =speed_print +speed_layer_0 = =math.ceil(speed_print * 0.375) +speed_print = 40 +speed_roofing = =speed_topbottom +speed_topbottom = =math.ceil(speed_print * 0.50) +speed_wall = =math.ceil(speed_print * 0.50) +speed_wall_0 = =speed_wall +speed_wall_x = =speed_print + diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg index c38a8e3c4d..f55c294bff 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg index d159ef3b05..61a1d23367 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.2_ABS_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg index 58e66cebb6..51cde9a82f 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg index 3e140ef0f9..58a85c7040 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg index bc05a7a3fb..ca9bf8d185 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg index 25ab4e1a3d..8d8f95b9fb 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.3_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg index ab3e231391..f60423649d 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg index 5dcdb4806d..79c9fd775a 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg index a3fe0bad61..190ba6c82b 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg index 8ab320354a..b7e1515f31 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.4_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg index 0e7a2a0c55..2b7af9d1a8 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg index be687eaae3..b718ce7dba 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg index 335be4aaf8..525b8dffaa 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg index 03f442d950..2aefa50ae6 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.5_ABS_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg index bae54fd0a4..b3811c7fae 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.6_ABS_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg index 45d2fbb4a4..a97bf8adb8 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_0.8_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg index 99ede3bb4a..29d571f95c 100644 --- a/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg +++ b/resources/quality/vzbot/base/ABS/vzbot_1.0_ABS_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg index 2bb7d54289..93b6284a00 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg index 0f858c688f..991ef0cb35 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.2_PC_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg index ad91d8fa08..e571ca3bd4 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg index 7129c6ed93..f12b25736d 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg index f31af997b7..6e9dfb3fd3 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg index f96705db92..8c2113044a 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.3_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg index fd16a17ea0..57ab57000e 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg index a1520959d7..cdc0e1a1e8 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg index 3b1b532f46..689305f6c9 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg index 897eeaa440..fb5818cba3 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.4_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg index bb24ea5426..0f7965ae5d 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg index e5c3a2f82f..245e763727 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg index 1c0cf0ea19..2ea56bff2e 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg index d592874219..12a6b60c0f 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.5_PC_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg index dc3d6c66f6..c74108ec8d 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.6_PC_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg index 8703ce746e..3191c19c58 100644 --- a/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_0.8_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg index 3ed5fbad9e..ce7dfa1262 100644 --- a/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg +++ b/resources/quality/vzbot/base/PC/vzbot_1.0_PC_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg index 885c0e1f1f..2c6efc9cc9 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg index 0b775f9a7a..3e81d9ce49 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.2_PETG_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg index 8a95360b48..9d1d9a4584 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg index 00fe2eea35..38311a9064 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg index 8afa3b3c11..43f59fc2cd 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg index 63af2d3ecc..ce35cb219a 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.3_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg index 5d5803b7ef..883a3dbcca 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg index d807851a31..197c1c4f88 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg index ffc89f4389..d50dc67475 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg index 959cd5f697..772c09d126 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.4_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg index 2ec0991fdf..0351167a0b 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg index 223dac0ef8..556cd8d02c 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg index aa02d0471c..73b65391d2 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg index 72b9fd211c..b55c9001d3 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.5_PETG_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg index 68b0ac18da..f8d7ddf134 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.6_PETG_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg index d846803c71..7f9044d839 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_0.8_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg index b5941d2cdf..064234b998 100644 --- a/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg +++ b/resources/quality/vzbot/base/PETG/vzbot_1.0_PETG_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg index 95ad976385..d169358b82 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg index f7e01b9d1f..a604b4ea9b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.2_PLA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg index 2435b9c9f4..2033c46f62 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg index 6e695dd07d..dd2ba3be8b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg index c9f1bedd3c..1c8860c5ef 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg index b8e8471993..676ec2c9d1 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.3_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg index 698ae5c327..33ceab257b 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg index 5d7c1e64e0..921a07f9cf 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg index 72f1b0afb3..388394d513 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg index 2b1a6836db..6969a6ab6e 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.4_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg index 286bd3af69..a8343a3cb1 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg index 3f89d1d8cd..5829834938 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg index 663740a782..3197a01ccb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg index 949ce8e1bf..803b23d3f6 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.5_PLA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg index 3fc5b428a3..ae09ec172c 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg index 8b7ddcb334..41d48d97d0 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg index c663ba030f..21b820dd3e 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.6_PLA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg index f20d1f0faf..61eb0330c0 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_0.8_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg index 0257e3cc51..a1c472fccb 100644 --- a/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PLA/vzbot_1.0_PLA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg index 26b174bfd8..f3788bc958 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg index 773b7624cb..1891f553a8 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.2_PVA_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg index 6e1e26c272..b2977af08c 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg index e0c652f62d..758895643e 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg index adff9d37bc..c538875210 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg index afdd46b8c2..fdea364eae 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.3_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg index 2d034d9796..041948cd41 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg index f4c791a5e4..07365ed908 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg index f4653302e1..0256b1e7c5 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg index 300a60fd84..39632c5648 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.4_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg index a3ddc5b6a1..2b1a747be5 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg index ffefba7323..cc0b78f088 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg index f26406f11c..d6f1d49911 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg index 530ca4e81f..1d12e71707 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.5_PVA_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg index 2fa4ad5ed4..9ccf2899fd 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.6_PVA_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg index c8f07d26d6..98c93707d4 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_0.8_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg index db31efadb2..884a068f6b 100644 --- a/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg +++ b/resources/quality/vzbot/base/PVA/vzbot_1.0_PVA_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg index f2d7cf6f50..c91bce1ad8 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg index 8cc077a9d9..fc656bf571 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg index 44d307e8b8..963214744c 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.3_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg index 7957687ef1..82f029cafc 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg index 414112a49b..e1ac884b4d 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg index 8240cf57a6..7020764f00 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.4_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg index c686638790..22144c7ee4 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg index c77a6912f8..40077aa927 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg index 9cd86ac164..8673836ed7 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.5_TPU_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg index 95962ed7d4..f4641733a3 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.6_TPU_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg index 8c86c131c5..0025e17b9c 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_0.8_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg index f82a374f6d..6ce504c64e 100644 --- a/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg +++ b/resources/quality/vzbot/base/TPU/vzbot_1.0_TPU_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg index 097d431c16..f7d077fa1a 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg index 5d9ac91bcc..2165a068b4 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.2_nylon_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality variant = 0.2mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg index 2b9e75ae8b..525e9d4dad 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg index 7d4b01c724..fea61cb433 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg index 2665e85c0b..7a13dee7ea 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg index e7d80cd0d9..a26e207f60 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.3_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.3mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg index 06fd7b2fb1..a3928c518c 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg index 554c311566..0b0abc4354 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg index f959799678..aca5dc2615 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg index 8842f5b91a..aa46c592a3 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.4_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg index 4438ee4a35..8762671699 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg index 2f17f7a12d..4767ec26a9 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = low -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg index 9c23e0e7b0..5a527e1974 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg index 9519418da0..ccc40f8035 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.5_nylon_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = super -setting_version = 23 +setting_version = 25 type = quality variant = 0.5mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg index 6a5bd488c2..08942cdf81 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.6_nylon_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = standard -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg index 8d76e83f6a..0904c8c64c 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_0.8_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle diff --git a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg index f20f206402..a195b3edf2 100644 --- a/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg +++ b/resources/quality/vzbot/base/nylon/vzbot_1.0_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 1.0mm Nozzle diff --git a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg index 97148aba4b..701ad0b4b0 100644 --- a/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_adaptive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = adaptive -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg index d974febf49..62f536a425 100644 --- a/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg index 81835248ff..aefcca207f 100644 --- a/resources/quality/vzbot/base/vzbot_global_low.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_low.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = low -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg index 7d807d7d08..5126067928 100644 --- a/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_standard.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = standard -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg index 4c8bc6cfa3..5e9e54ae3f 100644 --- a/resources/quality/vzbot/base/vzbot_global_super.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_super.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = super -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg index 90f100d429..ac2c998788 100644 --- a/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg +++ b/resources/quality/vzbot/base/vzbot_global_ultra.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ultra -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg index 42f779cf2c..a11d882cb1 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg index 0a161802d1..b8fc0823f4 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg index c370f585a9..b31469cbf2 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg index dec810299c..eb52409970 100644 --- a/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Extrudr/weedo_x40_0.4_extrudr_GreenTECPro_Black_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = Extrudr_GreenTECPro_Black_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg index f5d825fb07..5bb4a34ad1 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg index e7d32af044..43008bec0a 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg index 92d3321776..eeb94ae2ee 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg index cd66505617..ac5f386f61 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.4_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg index 80a3505ce0..d821723a15 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg index 47f485baab..645e84188e 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg index b9b4633a4e..cc01364368 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg index 00f715e849..dbe32f74f8 100644 --- a/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/Verbatim/weedo_x40_0.6_Verbatim_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = verbatim_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg index 5433fee3f0..6aa8943a03 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg index 935bb04771..cab92fdd2e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg index 499ca8a49d..a12e5a4955 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg index cc4726085a..d720710f91 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg index 4b4a59f4c3..145cbdf9c3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg index 3fca0ffe2c..dbc560e987 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg index 8af0c87fa7..7a2adae814 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg index d13ecc6139..d52099845e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg index a52b581ae6..8dd042e058 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg index 2f3762e422..fe1b265280 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg index 15198eb8bc..d8b63f3f96 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg index f8fb28dd1f..cc5caad353 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg index eee4be2ad9..75c7310c78 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg index 8fb7cd4f13..8f49242f0d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg index 3cbc4d6550..17d2d5174f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg index d47b0d621b..d24f22c572 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg index d4f84c3497..39af8223ad 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg index 9da7c5afa2..36171af34f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg index 498eda6c6f..16a208d008 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg index 88d4dae71d..3fac4638b9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg index d98c37c97d..b2bb2876db 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg index 3f4371cdc0..9c1e166fdb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg index 56dd8c7c10..394e9f32d3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg index a22c9344b2..57b328cb3d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg index 3504f38cc6..6815f3410e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg index a7f8b8d5a2..25244760f7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg index 96c636c4a8..f6868967d0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg index b3868b1060..1bde5eeade 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg index e5510ab98d..e4fec79f17 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg index c8c695a118..509ef2b135 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg index 513ed1bbaa..83e086385a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg index a25f5ae6ab..f24a7174aa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg index b230eeb8ec..18e61c0f67 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg index 8ca8ed63d7..8de1e9194d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg index 7521a10a83..db2f306e67 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg index 75103814be..b1a4532df8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.4_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.4mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg index 0be067404a..6d375348df 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg index e9a5d045c5..a5607f5287 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg index 785d08ee2c..6f83c4192a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg index e8d3699d32..f46380d885 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg index 7b42c6fbc7..e25ed7eaa2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg index 90596e627b..e8f5d70dc3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg index 34af6eca5b..ee6506c520 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg index 316dc4eae9..74b7c817f7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg index ac02d341b3..b6995b6080 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg index 11fabf6a1e..eb2bd30211 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg index a0aba43e09..e3fc293576 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg index 72778821cf..83995dc60a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg index bae5ea6857..1ef7cdc5f2 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg index be23f5feb5..f36294f8bc 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg index b84c435327..97e1c9c299 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg index a9b6f0b08c..5e65b0cdfa 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg index e12e5f79af..3de3ca77bb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg index 3d2aa46120..e17989555d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg index 6cb80412b6..84535bf899 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg index 37b75b7be1..70c0e5e0fb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg index 9fc8c83ffa..12ad1ae398 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg index 75469d5848..9071fe7ea9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg index bbf29ad1d2..b2d931253a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg index afbcfa28fe..f1acd46bf7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg index 3a5f26f739..9e0f96fad4 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg index 574f50beb9..d085e7bfb8 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg index abbaa923f4..95a17ff25c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg index 1e99dce591..e3c78b4a87 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg index bb53a5837c..5cc0ffb449 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg index 49646d89f7..d9c67bcb0a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg index 5cc87733b6..f9f3a1a206 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg index 59a94add3f..b69b7f1edb 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg index 6d7c083a55..2957a5c466 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg index 3fc2eaab34..ebfb3804a9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg index cbdf1352c4..9da56d985f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg index dfb740c32e..c13b11f502 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.6_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.6mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg index f127f9d48a..f1a0d14146 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg index c095cdb9c8..77c3167acf 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg index 1049791434..fc29d30e19 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg index 3789c153c3..256e61793a 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ABS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg index 9bc86cf2cd..c84a44950f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg index 372d21826e..831d5cced0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg index fd5b25d0e6..90533797be 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg index b3ebc040d6..ea646079d6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_ASA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_asa_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg index 8a856b77e9..ab144f8760 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg index cb06e79556..e9e0b3ab89 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg index b29f952e49..96bc888430 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg index 40b97d7bd4..df0f3098a6 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_BVOH_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_bvoh_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg index 7b2c4a584d..165652ef7f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg index 5f9976a518..5093ebb8ee 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg index 51b90f2496..104e703de0 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg index 71c535b8a7..51f3fcb9c3 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_CPE_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_cpe_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg index ffbd55c80b..9de8753881 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg index 22cba0bd81..a7cec1399b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg index 74d3c6af5b..05076ff3d1 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg index cf6cc5fd79..fe125af56d 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_HIPS_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_hips_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg index 6c863df0d1..2df7960397 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg index 5b16bb04fa..a5719ed799 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg index 6b82c29636..82d9d3e4d7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg index 0905caa1aa..31f26be9c7 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PETG_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg index 0ef7cb5899..0f75d94e03 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg index 69b8330c07..85bbab4fd9 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg index 7dc376d99c..391bcd042f 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg index 4982856b12..f8cbd6c683 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PLA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg index f79b1f49fa..a622038812 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg index af316f211c..0956f36096 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg index 4c217b8003..cf30846e0b 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg index 8db5563256..0fbec3da00 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_PVA_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pva_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg index 94c943bc12..5a8c61e14c 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg index 34e40cde51..ad05272a4e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg index ab8b2fba65..12399982c5 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg index 8c30df2bfd..18f96ecd8e 100644 --- a/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_0.8_generic_TPU_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_tpu_175 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = 0.8mm Nozzle weight = 0 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg index ef72c98cc8..7589f59170 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg index 4d0ea19afd..36ce241fe7 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg index d9d0eeb7bd..0b7c197caf 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra coarse -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg index 27af18c4aa..e885bfb329 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Extra_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = extra fine -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg index 2d751b4be9..ee4b02098d 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg index 9d166c4ca1..83ff9ae603 100644 --- a/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg +++ b/resources/quality/weedo_x40/weedo_x40_global_Normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg index 8b055da1b1..2d7de13c70 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg index 87ea2bd2df..fcddc9cac4 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg index f4b70421fd..3136d223ed 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg index 962ae53a1a..a7f389c5e2 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_1p0_pro_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg index 69a13819c3..fe49c25792 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg index b49e2f34d9..43eab2f874 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg index a35585cfb1..62ad5af7b3 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg index eeff179d11..2bde197a0b 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg index 7b12352a7c..0d76205693 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg index 89cbbb4fbe..6aa38394c9 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg index 14025817de..11ee6dde56 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg index 5ff20c78ef..87f577428e 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_pro_evo_hs_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg index 7faa4375ae..cfe07ebc2a 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg index 8f18363093..00957dc932 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg index ee66705aa2..85430f9a9b 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg index 6f83a22200..c5e44bff63 100644 --- a/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg +++ b/resources/quality/xyzprinting/abs/xyzprinting_da_vinci_super_copper_0.40_abs_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_abs quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg index be14abacb1..69204641ac 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg index f6bb53dabb..33e30b8319 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg index ae119642c3..fe3d790a64 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg index cbc5acead1..ebcbb2ecf4 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_1p0_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg index a5c2bf5f8b..ebc798e151 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg index 0e584bb8bc..bfcacfd976 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg index c2006b0252..42c5ded258 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg index 867ae36869..9833bc55b3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg index 17dfa7acab..532cb0f1a7 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg index 26bce43c53..7ecabe091f 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg index ce0b7f2448..4e3ce06912 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg index 8a4b330496..c6a21cf71b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg index 9eee8d2cd5..9dc59b5adf 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg index d82776c5e9..38e8bae195 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg index 58de7bf052..6e37544fa0 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg index c51bafa804..d5f7c5e554 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg index 8835eacb70..28fccc4d62 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg index c3d5d45deb..d68085cc38 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg index 679f33704b..192beab78b 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg index 270eb086c3..b2af841025 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_jr_w_pro_ss_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg index d57f1a22ab..46d113e3dc 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg index 45c021ec8e..6602a1e316 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg index 9b60b89354..f0a9c311a8 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg index 0384c51471..58cc232b46 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_pro_evo_hs_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg index 74641c118f..2874538624 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg index 29a162272e..1f02a028dc 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg index 942fcf77b2..f310af422e 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg index 51b5d8fd6e..f983c4d7f3 100644 --- a/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg +++ b/resources/quality/xyzprinting/anti_bact/xyzprinting_da_vinci_super_copper_0.40_antibact_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_antibact_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 0a8cef554f..bb2d4772ea 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 706578940a..2858836d78 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg index 74c1601253..d63e292e57 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 76400c36d6..b603ee60db 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 78c2a6b784..629c930320 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg index 77b40d3b1d..83fc81c9ce 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg index a3e88b9228..a8ee2afdfc 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg index 7f6e4ef3aa..e58ce91db2 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg index 0196554b9e..7a79017520 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg index 0aa156be81..79d9af559c 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg index deb85910bf..1f838974ac 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg index 83faffbff3..7c90224dc5 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg index 6113f03bbf..6f578a7b47 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg index 0f78dffbd3..c54191331b 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg index e8a71e84e4..aa2fd9b155 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg index 960c9b0482..780adfc7d8 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_jr_w_pro_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg index 1a156620c5..c1577aac4a 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg index 5d94712c7b..bf3dc7555d 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg index 2c0fad134f..80aeb52a51 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg index fbb4f8b733..efbfbb2c88 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_pro_evo_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg index 167899a216..e9e79d43f7 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg index 7b0fc58417..836b516dfa 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg index 3f1871d124..7dfa35d5c8 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg index d2369fb6df..5dcce14eaa 100644 --- a/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg +++ b/resources/quality/xyzprinting/carbon_fiber/xyzprinting_da_vinci_super_hs_0.40_carbon_fiber_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_carbon_fiber quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg index e99a362f11..2f59443d04 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg index 48190a39c8..2b958950be 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg index 158a0afe4d..6322c75d0e 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg index 809dad450a..3a1681fe6b 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg index 40be1a66f3..724aff288f 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg index 078db5939d..17b58de364 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg index fc620a8ad8..6669989775 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg index 0420440d2d..98ee179675 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg index d0510dbbb2..4a2ac241ad 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg index 3c1dacf0bf..a92abe0b31 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg index 6f38cef91d..6100a30fc1 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg index 754e0c043f..c2b704cb9f 100644 --- a/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/color_pla/xyzprinting_da_vinci_super_copper_0.40_colorinkjet_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_colorinkjet_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg index baf535b6aa..785a199bbc 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg index d1ca554b51..82c3cc5c1e 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg index 14cc24c2ac..4ea795f4a2 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg index 5862641cf9..4e708d8fae 100644 --- a/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg +++ b/resources/quality/xyzprinting/flexible/xyzprinting_da_vinci_super_copper_0.40_flexible_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_flexible quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg index 27089f1134..343b78ed0c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg index 6a7add5173..750ff1aaae 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg index 3dfd802dba..ebcf29193c 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg index af7890163b..7c4383695b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg index fa3e586ac2..37fec5c899 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg index ae0696ee27..20d706b24a 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg index dc6520596b..b6839b9499 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg index eb2a9cbc5b..b46a7c129b 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg index 945026a4cf..772938be0d 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg index 667a5c90d3..7bade11601 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg index b074312e87..fb11c42b1f 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg index d6d37c2fc2..b8a655b01e 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg index 3bb8528ffb..c76a341d02 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg index e771ca6ff2..8f18279450 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg index 3407585e4c..da4645df27 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg index 0c77e17bb0..fec12f31c0 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_jr_w_pro_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg index 5192822dce..bc8502a3e7 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg index c98a39242a..3405f6982d 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg index ae56ea638c..d5ea1242e7 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg index aef3cf163b..517276c1c2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg index 0cd062ec0a..a6e2cf0838 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg index 343efe3d12..a4e4f577b2 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg index 74131501ea..015dec77e0 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg index 8e193ffcd2..9034ec51b4 100644 --- a/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg +++ b/resources/quality/xyzprinting/metallic_pla/xyzprinting_da_vinci_super_hs_0.40_metallic_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_metallic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg index 6eb370cdcf..e412d33c2b 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg index 5b4cede195..199d33498a 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg index a79fc05fcd..2664ffbaf3 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg index ea6ce880d6..409248c674 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_pro_evo_hs_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg index 1ae2f24a97..232992d5e5 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg index 9743f42e5d..4be0792474 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg index 31f6987cb4..55030789d4 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg index d4ce99974d..25872c7e09 100644 --- a/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg +++ b/resources/quality/xyzprinting/nylon/xyzprinting_da_vinci_super_copper_0.40_nylon_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_nylon quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg index 85d0e69024..276391c8a8 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg index 57fff56e16..d2e3423f87 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg index 79f268fb7d..4534527d58 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg index 5c091c8703..5c0107562b 100644 --- a/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/pahtcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_pahtcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pahtcf15 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg index 02eefc3a33..20567b24fb 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg index 834c345fb3..a6cc43bebd 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg index e2678f5e21..7f449483fd 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg index 0843e0b105..498b9fd972 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hs_0.40_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg index 0d7abc9a99..f116fef467 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg index 300bc57cb5..c88b4528a7 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg index 5ecafd0fac..1f0436907b 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg index e8a3635933..671d8fd128 100644 --- a/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg +++ b/resources/quality/xyzprinting/pc/xyzprinting_da_vinci_pro_evo_hsht_0.60_pc_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pc quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg index 4dd6934bca..dccc77674b 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg index 5bd32e2d49..8211319b5b 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg index 540a7bc605..296be0c2f1 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg index 29721774e9..2c1d01e774 100644 --- a/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg +++ b/resources/quality/xyzprinting/petcf15/xyzprinting_da_vinci_pro_evo_hsht_0.60_petcf15_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petcf15 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel High Temp. 0.6mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg index 8c8107eaa0..e408e492d6 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg index 2e1c873b2a..45f4f7a8f9 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg index e173522f32..6dc5db81bb 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg index 5a588a8a45..1f120d7c4a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_1p0_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg index 5423fe1023..80a76a1d83 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg index 0512ed8cb6..1ec9efa802 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg index 8c494c4f7a..151e74b563 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg index f9611a31a4..48161e38c7 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg index 5c28312b17..f61bbd517c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg index f640948b9d..b8e06066eb 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg index 4d981c4d72..11364e51a5 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg index f4843e7b45..13589f493f 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg index e954e29f54..981a1d122c 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg index 27897985dd..9ecab816e3 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg index 9d0762f876..11e8942262 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg index 2679df5548..543ad4e5a4 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg index 35d69b02d5..3772aecbc4 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg index 79add5b99c..55570b1380 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg index ee06416687..4c9c4aadca 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg index bde5f0bedd..5f022e3da8 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_jr_w_pro_ss_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg index d63aa38742..79ee9c4177 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg index 3d3aed671c..1572f81b3a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg index 36a96d351a..5ee1e55c99 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg index 7f7cf37556..9eb4ce809a 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_pro_evo_hs_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg index 4bb90e8a88..2d05cf92a4 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg index 4018aec054..d58811b19e 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg index 31399b5bf9..50d052a0c9 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg index ff52f3200b..9179e59ceb 100644 --- a/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg +++ b/resources/quality/xyzprinting/petg/xyzprinting_da_vinci_super_copper_0.40_petg_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_petg quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg index 0421fe3308..36492cbfe6 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg index 3ce44a0a64..a4c8490f76 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg index 1a36437faa..0fc3967ca2 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg index 144940c8a7..0de9812c28 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg index 6292722fa6..53b0a3b60e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg index 4718b09f2c..977a680326 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg index 4aea2ba978..89031062cd 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg index cc4d4001e0..624e869f40 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg index c173ee2e9e..f2601f2096 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg index b7acd4e087..c86d769f36 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg index 7c949cfd45..29a9d33e09 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg index 18c4be3745..cc19e57b54 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg index 996379feb9..4d684d2cd3 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg index ba9991dcfb..32118c808a 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg index e90ffd5dfc..fb27d13c11 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg index be9b7a6636..e1182f238e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg index 3fa9a52cf2..83ea0f41be 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg index 3fb1b5e82b..1c330d00eb 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg index b4124b7ee3..c4c44fb5d6 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg index 6564a1bfc4..d0b60373cc 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg index 6615eb0ef1..6e9993db6e 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg index 8484320f12..0e788ae5cd 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg index b1bb184f24..2687f00f15 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg index ac966a5f21..9a214f5263 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_pro_evo_hs_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg index 0c8078074d..1ca4735fb9 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg index ddf88b56c7..ea00d037f5 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg index a420b19839..c236a7ce96 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg index 88a42a943e..b07d044823 100644 --- a/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/pla/xyzprinting_da_vinci_super_copper_0.40_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg index 0c72737a09..2bc6f36930 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg index 8509d110d2..99a27b1925 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg index 84f2d5f220..86c9209d24 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg index e2604f6cd1..508abb3364 100644 --- a/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg +++ b/resources/quality/xyzprinting/ppgf30/xyzprinting_da_vinci_pro_evo_hs_0.40_ppgf30_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_ppgf30 quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg index 8163b0f4f0..0f4051364d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg index 2b3a677da0..6c898fd62e 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg index 2de8dcd257..f96107b56a 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg index b92efb4bb4..97ffb4bc40 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_1p0_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg index 84f2b863ea..31dca8ed40 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg index 7d396bdb4b..f49c69e86f 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg index 239ce61a85..1a51e1d3a0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg index bf1e456e9d..ead88423cb 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg index c05ce1ef16..0af6576266 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg index c2412a4b10..6229a38c4d 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg index 62c827e31f..42db279be8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg index 920960b1f1..0be49990da 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg index 86255b299c..c717f4cb5f 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg index f699ade12e..652b633313 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg index c8b2419858..afcb6a2dbc 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg index 986f61603c..2b5eecef05 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg index 1a55a0d7dc..d4fbec50d6 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg index 72c1d0c0a2..501515e26e 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg index 2e404b0f08..c8b52a35c0 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg index bb7c76089c..041eb5587c 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_jr_w_pro_ss_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Stainless Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg index 9f50854c98..255d2f310e 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg index 5075d97c65..2821a32ce8 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg index 176a28b188..94b4bf531b 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg index c2dd1c4990..5d9007e375 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_pro_evo_hs_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg index b5144668cb..7ce9aae795 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg index bb678333dc..472e365332 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg index ad54549155..3a1c4126a1 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg index fb8cba3041..0849698547 100644 --- a/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg +++ b/resources/quality/xyzprinting/tough_pla/xyzprinting_da_vinci_super_copper_0.40_tough_pla_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tough_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg index 1943eef0f4..1346473701 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg index 55a39c03a7..326e88088a 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg index 9826104ccb..585a3a826a 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg index 053d09767e..524888484d 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_pro_evo_hs_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Hardened Steel 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg index c5ada4d590..b30568b327 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -3 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg index 8bb07d0664..1ae9637099 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = draft -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -2 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg index 2a06b48905..667b03a5a3 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = fine -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = 0 diff --git a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg index ff0cb4a7e0..dc4b0936a9 100644 --- a/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg +++ b/resources/quality/xyzprinting/tpu/xyzprinting_da_vinci_super_copper_0.40_tpu_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = xyzprinting_tpu quality_type = normal -setting_version = 23 +setting_version = 25 type = quality variant = Copper 0.4mm Nozzle weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg index 1a90f61f46..d8de3114b4 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg index 9970928d62..a27a838fc6 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg index a6822bb56a..12ccf7d574 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg index 343d413403..b63531a240 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_1p0_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg index 0232e0222f..bbf6a29387 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg index 05d60959ad..0eec49f575 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg index 6cddf912ce..1c01ce480f 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg index 9036f08350..5a183ba94e 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_1p0a_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg index 72b2ac34b5..7e039c89db 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg index 9c6e1ca45b..61f9ef9c2c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg index b2fd3b1fb6..ae199bc669 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg index 1d6b2ff0d1..98b1cafd08 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xep_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg index a372b5d37a..3f10965d41 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg index a2cf5f780b..42d5805092 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg index 77a9bcf447..66e813606d 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg index b760682e22..f49352b519 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_pro_xp_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg index 958918c010..518f4145a4 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg index 40c39e7460..eb3e3faee4 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg index 5f01b400ce..9f29f1830c 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg index 7918d01247..3e9361e340 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_jr_w_pro_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg index a28c2a05e2..1a1a675583 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg index 6438abd22c..4d9e15c0fe 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg index 481574e409..90212b4cf9 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg index e0b0d18bb5..5055bbfbe5 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_pro_evo_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg index 30a5507237..7b9248c854 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.10_fine.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = fine -setting_version = 23 +setting_version = 25 type = quality weight = 0 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg index e4ba451bc1..a5b9ae151b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.20_normal.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg index 65139b3993..dffd4ab547 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.30_draft.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = draft -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg index b0997befe9..7e22f4860b 100644 --- a/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg +++ b/resources/quality/xyzprinting/xyzprinting_da_vinci_super_global_0.40_coarse.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = coarse -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg index 25e85a7c50..d62ceac286 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg index d8bb913ee6..962f0d0d8f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg index 9616f723f6..1b76fc79c7 100644 --- a/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_20/zav_abs_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg index 8fb86d315a..64609bee98 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg index 05bd6ed4e7..509e2fac7d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg index 4bd1827021..660bb61696 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg index 7e7466769e..ad5d480c9d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_25/zav_abs_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg index 9e1db971ff..abfb47260a 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg index 282894c439..5acbd7c2c8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg index a7e3033804..3e65ffb575 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg index 5fbe8655d3..9598e6b115 100644 --- a/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_30/zav_abs_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg index e7ce094065..b91230c0da 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg index 3fa7f90376..8d0f009218 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg index df6be87726..93cfd2d999 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg index 6c2f48d4aa..06b56bd8b8 100644 --- a/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_35/zav_abs_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg index 409463370d..6c6d49bf02 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg index 775fb209f3..53ba62367f 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg index 1eb05bd482..51d7bba819 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg index 186e4ae790..cab5317ac6 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg index baf5abbb09..5b89d31e7c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_40/zav_abs_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg index ad5f65c5d1..cb77e3b44c 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg index 6b1e439029..00ddaf88e4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg index fae81972e9..08cc574b4b 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg index 3d842adac0..9458a50738 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg index bba35f5e6c..1aa4834a9d 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg index e9aafef0b3..c1f8f09b76 100644 --- a/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_45/zav_abs_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg index 9e8ac0fe07..182ea0aaaf 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg index e7aa39026e..e37dc6e541 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg index 4a119a3b78..64f52af368 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg index 8c7652f358..66e4ec67d4 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg index 9a2b2bbb45..d99570ea28 100644 --- a/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_50/zav_abs_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg index 3cea25782b..92ca8246a9 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg index fb28d98eb8..4c7577c6ab 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg index 23178b5adf..d705b9da79 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg index 59622fc319..a05663b260 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg index d59245ae3b..f9627f455e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg index a97a6833bc..398ac39662 100644 --- a/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_60/zav_abs_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg index b9e10a6bf0..43ccc43a29 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg index 9e29238068..121a740c6e 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg index e8ef2edd8f..0619950414 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg index 1b10439afc..bbd7a63822 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg index 67b6a26a72..93cc7300d6 100644 --- a/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_0_80/zav_abs_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg index f6405d5cec..6623b5719d 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg index 228ddddc13..7dfd6e45f3 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg index 725e885a1e..cb4241ee17 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg index 42a8cf6770..8e976db837 100644 --- a/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/abs/nozzle_1_00/zav_abs_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_abs quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg index 3a8189a242..c675134900 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg index 96f8ac2ba8..e4a8e21712 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg index 1c52225879..c6e7adf285 100644 --- a/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_20/zav_petg_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg index 42d6059b2b..76ac1f9e94 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg index 0f300418d4..fadec8c979 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg index 0841a4e683..c0087da539 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg index d6293b8dd6..fab6680f9e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_25/zav_petg_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg index 3cae06a912..ce4d5713d0 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg index 85515279fa..1ed5801670 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg index dc76ed4260..fffbed6913 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg index 2f93ba6669..97f2f8f1ca 100644 --- a/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_30/zav_petg_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg index d566aa424a..7814011f4a 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg index 5799506d1e..563ff874dd 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg index 0c29bd477b..4803afb461 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg index bb4cb5e531..af01dc45e4 100644 --- a/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_35/zav_petg_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg index 4f7b41945e..32e7393b79 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg index abaa1eedb6..d9d3ac3efb 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg index 992234ba25..0811adc617 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg index 73e2a07a8f..d2f452814a 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg index c00e9ecb00..322dc095ec 100644 --- a/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_40/zav_petg_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg index 101fe44c82..4208d9f297 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg index 6b084130db..2e51d57a40 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg index 948eefca17..1dab36b29a 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg index 40dde2cf31..eff423e492 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg index 4090f8f855..77c2bfd301 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg index 5d6045a8e8..865e1ba7cd 100644 --- a/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_45/zav_petg_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg index 7ecdefdfe1..4832efa6c8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg index 149e4d4109..b1e442de02 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg index da20e0651c..c9b97a90c8 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg index 79a5566f67..16a4a354e5 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg index 2726c46ff6..d35a3a0b5e 100644 --- a/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_50/zav_petg_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg index ab747e927c..f5ca77e6ee 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg index c85a32723d..9ca87392a9 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg index dd474c0aac..27f9a6a1ba 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg index 83cd051b09..74b7f82040 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg index ab9d4ebe1c..054541ae37 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg index 9ad7853cdc..e6e4abcbf5 100644 --- a/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_60/zav_petg_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg index 724a51b8d8..dc534daeec 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg index 3c4d788df8..5d01482e44 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg index 5644483fde..2517f7d655 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg index 57d99f35de..65595e9e58 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg index e75f3c35b0..a1d2e4c822 100644 --- a/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_0_80/zav_petg_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg index 368647795b..50a23b5ac5 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg index dd82a4775b..ab882ff2d5 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg index d7d4fbe412..e3640ab732 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg index 91033d2bf5..1946021243 100644 --- a/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/petg/nozzle_1_00/zav_petg_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_petg quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg index f01da6ca32..a770f30813 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg index 4eb395fb9a..4e923754e6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg index 6f88469db6..c1cc2cd52d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_20/zav_pla_nozzle_0.20_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.20mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg index ba7ecfa53c..2a3aa308ad 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg index f6aa3822ca..8655d50d96 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg index 195a34ba43..ec879f5b05 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg index 2c438ce53c..254445bf47 100644 --- a/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_25/zav_pla_nozzle_0.25_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.25mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg index d343990b9d..759fad45f3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg index 5b49c34064..a617d266c3 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg index e4f58831b6..8a49c4e084 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg index 3122c05e65..84d67a3af7 100644 --- a/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_30/zav_pla_nozzle_0.30_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.30mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg index fc174af370..da7c3fd32e 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg index 33df915b4c..668c5f36f6 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg index 048565919e..9d4e723fef 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg index d08823a809..9cbcece276 100644 --- a/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_35/zav_pla_nozzle_0.35_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.35mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg index afaf24bd2a..cb4091a3df 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg index cb71636a84..44ed4c5f0f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg index 14c9525787..4e8a940cc0 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg index 38c899216f..47a97df7c9 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg index caddf1980a..14c0b1eb3f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_40/zav_pla_nozzle_0.40_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.40mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg index 610a8011d8..75c4b4b404 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg index ea4244d490..ef53d5fc9c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg index b2adf228fb..82474fff90 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg index ee133982c2..c560e1d398 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg index 0ac2b0afd1..3201609485 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg index 7513244497..3bda0a9b1b 100644 --- a/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_45/zav_pla_nozzle_0.45_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.45mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg index ac57d8b074..57674f5aff 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg index 5f718f55f1..493691697c 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg index 8ac9a8b343..95abdd3a48 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg index 5f5b9fd44e..0b33eff4ad 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg index 6036838282..b5bd60b725 100644 --- a/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_50/zav_pla_nozzle_0.50_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.50mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg index 9e7ca6b7fe..490ad36417 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg index 7f1d758472..2ab9dbfb7a 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg index 78b351455e..4325b3e63f 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg index 2dcc08eaaf..182c342fec 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg index c5c89b9df0..f0dc16a1f1 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg index 556df5c158..243629f065 100644 --- a/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_60/zav_pla_nozzle_0.60_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.60mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg index 98284b527a..97e3f03e5d 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg index d3304afba1..6e98ee16de 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg index aec24595d4..2cef6e0159 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg index e8ab9c5148..9d85225339 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg index 4e99df0786..425d7ae5b7 100644 --- a/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_0_80/zav_pla_nozzle_0.80_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 0.80mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg index 88000bd7fb..4b2e9e8936 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg index b30b616a7c..4c9ab1285c 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg index 1d2bb10612..cee9d902a4 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg index e3c4c6ed7b..f036b275c5 100644 --- a/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/pla/nozzle_1_00/zav_pla_nozzle_1.00_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] material = generic_pla quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality variant = 1.00mm_ZAV_Nozzle diff --git a/resources/quality/zav_base/zav_layer_0.05.inst.cfg b/resources/quality/zav_base/zav_layer_0.05.inst.cfg index 20bdc01950..b048dfbc3a 100644 --- a/resources/quality/zav_base/zav_layer_0.05.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.05.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_005 -setting_version = 23 +setting_version = 25 type = quality weight = -1 diff --git a/resources/quality/zav_base/zav_layer_0.10.inst.cfg b/resources/quality/zav_base/zav_layer_0.10.inst.cfg index b3a6325f86..c8e5275de7 100644 --- a/resources/quality/zav_base/zav_layer_0.10.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.10.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_010 -setting_version = 23 +setting_version = 25 type = quality weight = -2 diff --git a/resources/quality/zav_base/zav_layer_0.15.inst.cfg b/resources/quality/zav_base/zav_layer_0.15.inst.cfg index d5c16701a2..fd1ecea832 100644 --- a/resources/quality/zav_base/zav_layer_0.15.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.15.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_015 -setting_version = 23 +setting_version = 25 type = quality weight = -3 diff --git a/resources/quality/zav_base/zav_layer_0.20.inst.cfg b/resources/quality/zav_base/zav_layer_0.20.inst.cfg index bf855f6fe7..ae57c03957 100644 --- a/resources/quality/zav_base/zav_layer_0.20.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.20.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_020 -setting_version = 23 +setting_version = 25 type = quality weight = -4 diff --git a/resources/quality/zav_base/zav_layer_0.25.inst.cfg b/resources/quality/zav_base/zav_layer_0.25.inst.cfg index 8cd4816530..556158b4bb 100644 --- a/resources/quality/zav_base/zav_layer_0.25.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_025 -setting_version = 23 +setting_version = 25 type = quality weight = -5 diff --git a/resources/quality/zav_base/zav_layer_0.30.inst.cfg b/resources/quality/zav_base/zav_layer_0.30.inst.cfg index 9121f83414..90f9b2408e 100644 --- a/resources/quality/zav_base/zav_layer_0.30.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.30.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_030 -setting_version = 23 +setting_version = 25 type = quality weight = -6 diff --git a/resources/quality/zav_base/zav_layer_0.35.inst.cfg b/resources/quality/zav_base/zav_layer_0.35.inst.cfg index c3e37d97d9..583d973460 100644 --- a/resources/quality/zav_base/zav_layer_0.35.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_035 -setting_version = 23 +setting_version = 25 type = quality weight = -7 diff --git a/resources/quality/zav_base/zav_layer_0.40.inst.cfg b/resources/quality/zav_base/zav_layer_0.40.inst.cfg index bbb88a8e86..a21318ea31 100644 --- a/resources/quality/zav_base/zav_layer_0.40.inst.cfg +++ b/resources/quality/zav_base/zav_layer_0.40.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] global_quality = True quality_type = ZAV_layer_040 -setting_version = 23 +setting_version = 25 type = quality weight = -8 diff --git a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg deleted file mode 100644 index 5358ee99ac..0000000000 --- a/resources/quality/zyyx/zyyx_agile_global_fine.inst.cfg +++ /dev/null @@ -1,15 +0,0 @@ -[general] -definition = zyyx_agile -name = Fine -version = 4 - -[metadata] -global_quality = True -quality_type = fine -setting_version = 23 -type = quality -weight = 1 - -[values] -layer_height = 0.1 - diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg deleted file mode 100644 index b18d8a6729..0000000000 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fast.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -definition = zyyx_agile -name = Fast -version = 4 - -[metadata] -material = generic_tpu -quality_type = fast -setting_version = 23 -type = quality -weight = 1 - -[values] -adhesion_type = brim -default_material_print_temperature = 220 -infill_sparse_density = 10 -layer_height = 0.3 -material_flow = 105 -material_print_temperature_layer_0 = 235 -raft_airgap = 0.2 -retraction_amount = 1.0 -retraction_speed = 15 -speed_print = 20 -speed_wall = =speed_print -speed_wall_x = =speed_print -top_bottom_thickness = 1.0 -wall_thickness = 0.8 - diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg deleted file mode 100644 index 920c92633d..0000000000 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_fine.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -definition = zyyx_agile -name = Fine -version = 4 - -[metadata] -material = generic_tpu -quality_type = fine -setting_version = 23 -type = quality -weight = 1 - -[values] -adhesion_type = brim -default_material_print_temperature = 205 -infill_sparse_density = 15 -layer_height = 0.12 -material_flow = 105 -material_print_temperature_layer_0 = 235 -raft_airgap = 0.1 -retraction_amount = 0.2 -retraction_speed = 15 -speed_print = 15 -speed_wall = =speed_print -speed_wall_x = =speed_print -top_bottom_thickness = 1.0 -wall_thickness = 1.2 - diff --git a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg deleted file mode 100644 index e893ca4af1..0000000000 --- a/resources/quality/zyyx/zyyx_agile_pro_flex_normal.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -definition = zyyx_agile -name = Normal -version = 4 - -[metadata] -material = generic_tpu -quality_type = normal -setting_version = 23 -type = quality -weight = 0 - -[values] -adhesion_type = brim -default_material_print_temperature = 210 -infill_sparse_density = 15 -layer_height = 0.2 -material_flow = 105 -material_print_temperature_layer_0 = 235 -raft_airgap = 0.2 -retraction_amount = 1.0 -retraction_speed = 15 -speed_print = 20 -speed_wall = =math.ceil(speed_print * 15 / 20) -speed_wall_x = =speed_print -top_bottom_thickness = 1.0 -wall_thickness = 1.2 - diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg deleted file mode 100644 index 3b3ed24376..0000000000 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fast.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -definition = zyyx_agile -name = Fast -version = 4 - -[metadata] -material = generic_pla -quality_type = fast -setting_version = 23 -type = quality -weight = 1 - -[values] -adhesion_type = brim -default_material_print_temperature = 220 -infill_sparse_density = 10 -layer_height = 0.3 -material_flow = 95 -material_print_temperature_layer_0 = 225 -raft_airgap = 0.15 -retraction_amount = 1.5 -retraction_speed = 20 -speed_print = 40 -speed_wall = =speed_print -speed_wall_x = =speed_print -top_bottom_thickness = 1.0 -wall_thickness = 0.8 - diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg b/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg deleted file mode 100644 index 347e3ccd74..0000000000 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_fine.inst.cfg +++ /dev/null @@ -1,28 +0,0 @@ -[general] -definition = zyyx_agile -name = Fine -version = 4 - -[metadata] -material = generic_pla -quality_type = fine -setting_version = 23 -type = quality -weight = 1 - -[values] -adhesion_type = brim -default_material_print_temperature = 205 -infill_sparse_density = 15 -layer_height = 0.1 -material_flow = 95 -material_print_temperature_layer_0 = 225 -raft_airgap = 0.08 -retraction_amount = 0.4 -retraction_speed = 20 -speed_print = 35 -speed_wall = =math.ceil(speed_print * 18 / 35) -speed_wall_x = =math.ceil(speed_print * 25 / 35) -top_bottom_thickness = 1.0 -wall_thickness = 1.2 - diff --git a/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_fast.inst.cfg b/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_fast.inst.cfg new file mode 100644 index 0000000000..6e0e49d121 --- /dev/null +++ b/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_fast.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_plus +name = Fast ABS +version = 4 + +[metadata] +material = generic_abs +quality_type = fast +setting_version = 25 +type = quality +weight = 0 + +[values] +adhesion_type = brim +infill_sparse_density = 10 +material_print_temperature = 240 +material_print_temperature_layer_0 = 250 +raft_airgap = 0.15 +retraction_amount = 1.2 +retraction_speed = 20 +speed_print = 55 +top_bottom_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_fine.inst.cfg b/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_fine.inst.cfg new file mode 100644 index 0000000000..3ba1931ec9 --- /dev/null +++ b/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_fine.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_plus +name = Fine ABS +version = 4 + +[metadata] +material = generic_abs +quality_type = fine +setting_version = 25 +type = quality +weight = 0 + +[values] +adhesion_type = brim +infill_sparse_density = 15 +material_print_temperature = 240 +material_print_temperature_layer_0 = 250 +raft_airgap = 0.15 +retraction_amount = 1.2 +retraction_speed = 20 +speed_print = 40 +top_bottom_thickness = 1.0 +wall_thickness = 1.2 + diff --git a/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_normal.inst.cfg b/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_normal.inst.cfg new file mode 100644 index 0000000000..76962d3938 --- /dev/null +++ b/resources/quality/zyyx_plus/ABS/zyyx_plus_abs_normal.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_plus +name = Normal ABS +version = 4 + +[metadata] +material = generic_abs +quality_type = normal +setting_version = 25 +type = quality +weight = 0 + +[values] +adhesion_type = brim +infill_sparse_density = 15 +material_print_temperature = 240 +material_print_temperature_layer_0 = 250 +raft_airgap = 0.15 +retraction_amount = 1.2 +retraction_speed = 20 +speed_print = 50 +top_bottom_thickness = 1.0 +wall_thickness = 1.2 + diff --git a/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_fast.inst.cfg b/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_fast.inst.cfg new file mode 100644 index 0000000000..fcb5de8367 --- /dev/null +++ b/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_fast.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_plus +name = Fast ZYYX Flex95A +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fast +setting_version = 25 +type = quality +weight = 0 + +[values] +infill_sparse_density = 15 +material_flow = 100 +material_print_temperature = 220 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_amount = 0.8 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 +speed_wall = =math.ceil(speed_print * 15 / 20) +speed_wall_x = =speed_print + diff --git a/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_fine.inst.cfg b/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_fine.inst.cfg new file mode 100644 index 0000000000..f3161f7a09 --- /dev/null +++ b/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_fine.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_plus +name = Fine ZYYX Flex95A +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine +setting_version = 25 +type = quality +weight = 0 + +[values] +infill_sparse_density = 20 +material_flow = 100 +material_print_temperature = 220 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_amount = 0.8 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 +speed_wall = =math.ceil(speed_print * 15 / 20) +speed_wall_x = =speed_print + diff --git a/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_normal.inst.cfg b/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_normal.inst.cfg new file mode 100644 index 0000000000..5579c58e2b --- /dev/null +++ b/resources/quality/zyyx_plus/FLEX/zyyx_plus_flex_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_plus +name = Normal ZYYX Flex95A +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal +setting_version = 25 +type = quality +weight = 0 + +[values] +infill_sparse_density = 20 +material_flow = 100 +material_print_temperature = 220 +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_amount = 0.8 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 15 +speed_travel = 80 +speed_wall = =math.ceil(speed_print * 15 / 20) +speed_wall_x = =speed_print + diff --git a/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_fast.inst.cfg b/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_fast.inst.cfg new file mode 100644 index 0000000000..c3f16781f2 --- /dev/null +++ b/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_fast.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_plus +name = Fast PLA +version = 4 + +[metadata] +material = generic_pla +quality_type = fast +setting_version = 25 +type = quality +weight = 0 + +[values] +adhesion_type = brim +infill_sparse_density = 10 +material_print_temperature = 210 +material_print_temperature_layer_0 = 210 +raft_airgap = 0.15 +retraction_amount = 1.2 +retraction_speed = 20 +speed_print = 55 +top_bottom_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_fine.inst.cfg b/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_fine.inst.cfg new file mode 100644 index 0000000000..a9c3da53cd --- /dev/null +++ b/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_fine.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_plus +name = Fine PLA +version = 4 + +[metadata] +material = generic_pla +quality_type = fine +setting_version = 25 +type = quality +weight = 0 + +[values] +adhesion_type = brim +infill_sparse_density = 15 +material_print_temperature = 205 +material_print_temperature_layer_0 = 210 +raft_airgap = 0.15 +retraction_amount = 1.2 +retraction_speed = 20 +speed_print = 40 +top_bottom_thickness = 1.0 +wall_thickness = 1.2 + diff --git a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg b/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_normal.inst.cfg similarity index 51% rename from resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg rename to resources/quality/zyyx_plus/PLA/zyyx_plus_pla_normal.inst.cfg index 9af81dc520..b96ece8c8a 100644 --- a/resources/quality/zyyx/zyyx_agile_pro_pla_normal.inst.cfg +++ b/resources/quality/zyyx_plus/PLA/zyyx_plus_pla_normal.inst.cfg @@ -1,28 +1,24 @@ [general] -definition = zyyx_agile -name = Normal +definition = zyyx_plus +name = Normal PLA version = 4 [metadata] material = generic_pla quality_type = normal -setting_version = 23 +setting_version = 25 type = quality weight = 0 [values] adhesion_type = brim -default_material_print_temperature = 210 infill_sparse_density = 15 -layer_height = 0.2 -material_flow = 95 -material_print_temperature_layer_0 = 225 +material_print_temperature = 205 +material_print_temperature_layer_0 = 210 raft_airgap = 0.15 retraction_amount = 1.2 retraction_speed = 20 speed_print = 50 -speed_wall = =math.ceil(speed_print * 22 / 50) -speed_wall_x = =math.ceil(speed_print * 33 / 50) top_bottom_thickness = 1.0 wall_thickness = 1.2 diff --git a/resources/quality/zyyx_plus/zyyx_plus_global_fast.inst.cfg b/resources/quality/zyyx_plus/zyyx_plus_global_fast.inst.cfg new file mode 100644 index 0000000000..b1bf22d510 --- /dev/null +++ b/resources/quality/zyyx_plus/zyyx_plus_global_fast.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = zyyx_plus +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast +setting_version = 25 +type = quality +weight = 0 + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +adhesion_type = brim +infill_pattern = cubic +infill_sparse_density = 10 +layer_height = 0.2 +raft_airgap = 0.25 +retraction_amount = 1.2 +retraction_count_max = 20 +retraction_speed = 20 +speed_print = 55 +speed_travel = 100 +top_bottom_thickness = 0.8 +wall_thickness = 0.8 + diff --git a/resources/quality/zyyx_plus/zyyx_plus_global_fine.inst.cfg b/resources/quality/zyyx_plus/zyyx_plus_global_fine.inst.cfg new file mode 100644 index 0000000000..52e78413a8 --- /dev/null +++ b/resources/quality/zyyx_plus/zyyx_plus_global_fine.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = zyyx_plus +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine +setting_version = 25 +type = quality +weight = 0 + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +adhesion_type = brim +infill_pattern = gyroid +infill_sparse_density = 15 +layer_height = 0.1 +raft_airgap = 0.2 +retraction_amount = 1.2 +retraction_count_max = 20 +retraction_speed = 20 +speed_print = 40 +speed_travel = 100 +top_bottom_thickness = 1.0 +wall_thickness = 1.2 + diff --git a/resources/quality/zyyx_plus/zyyx_plus_global_normal.inst.cfg b/resources/quality/zyyx_plus/zyyx_plus_global_normal.inst.cfg new file mode 100644 index 0000000000..8b55cf5970 --- /dev/null +++ b/resources/quality/zyyx_plus/zyyx_plus_global_normal.inst.cfg @@ -0,0 +1,28 @@ +[general] +definition = zyyx_plus +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal +setting_version = 25 +type = quality +weight = 0 + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +adhesion_type = brim +infill_pattern = gyroid +infill_sparse_density = 15 +layer_height = 0.15 +raft_airgap = 0.2 +retraction_amount = 1.2 +retraction_count_max = 20 +retraction_speed = 20 +speed_print = 50 +speed_travel = 100 +top_bottom_thickness = 1.0 +wall_thickness = 1.2 + diff --git a/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_fast.inst.cfg b/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_fast.inst.cfg new file mode 100644 index 0000000000..f328f5b787 --- /dev/null +++ b/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_fast.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fast06 +setting_version = 25 +type = quality +variant = Carbon0.6 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_fine.inst.cfg b/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_fine.inst.cfg new file mode 100644 index 0000000000..1a37fb9fde --- /dev/null +++ b/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_fine.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine06 +setting_version = 25 +type = quality +variant = Carbon0.6 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_normal.inst.cfg b/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_normal.inst.cfg new file mode 100644 index 0000000000..e66855bdfe --- /dev/null +++ b/resources/quality/zyyx_pro/carbon06/flex/zyyx_pro_06_flex_normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal06 +setting_version = 25 +type = quality +variant = Carbon0.6 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_fast.inst.cfg b/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_fast.inst.cfg new file mode 100644 index 0000000000..f44c3a8fb9 --- /dev/null +++ b/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_fast.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast06 +setting_version = 25 +type = quality +variant = Carbon0.6 +weight = -2 + +[values] +infill_pattern = cubic +layer_height = 0.3 +material_print_temperature = =default_material_print_temperature + 5 +raft_airgap = 0.3 +retraction_amount = 1.2 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.05 +retraction_speed = 30 +speed_print = 60 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_fine.inst.cfg b/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_fine.inst.cfg new file mode 100644 index 0000000000..7c0b66b072 --- /dev/null +++ b/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_fine.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine06 +setting_version = 25 +type = quality +variant = Carbon0.6 +weight = -2 + +[values] +infill_pattern = gyroid +layer_height = 0.15 +material_print_temperature = =default_material_print_temperature + 5 +raft_airgap = 0.3 +retraction_amount = 1.2 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.05 +retraction_speed = 30 +speed_print = 40 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_normal.inst.cfg b/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_normal.inst.cfg new file mode 100644 index 0000000000..33c921280a --- /dev/null +++ b/resources/quality/zyyx_pro/carbon06/zyyx_pro_06_global_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal06 +setting_version = 25 +type = quality +variant = Carbon0.6 +weight = -2 + +[values] +infill_pattern = gyroid +layer_height = 0.2 +material_print_temperature = =default_material_print_temperature + 5 +raft_airgap = 0.3 +retraction_amount = 1.2 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.05 +retraction_speed = 30 +speed_print = 50 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/carbon12/flex/zyyx_pro_12_flex_normal.inst.cfg b/resources/quality/zyyx_pro/carbon12/flex/zyyx_pro_12_flex_normal.inst.cfg new file mode 100644 index 0000000000..bc53cbaa3d --- /dev/null +++ b/resources/quality/zyyx_pro/carbon12/flex/zyyx_pro_12_flex_normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal12 +setting_version = 25 +type = quality +variant = Carbon1.2 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/carbon12/zyyx_pro_12_global_normal.inst.cfg b/resources/quality/zyyx_pro/carbon12/zyyx_pro_12_global_normal.inst.cfg new file mode 100644 index 0000000000..cf7d989f6c --- /dev/null +++ b/resources/quality/zyyx_pro/carbon12/zyyx_pro_12_global_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal12 +setting_version = 25 +type = quality +variant = Carbon1.2 +weight = -2 + +[values] +infill_pattern = cubic +layer_height = 0.45 +material_print_temperature = =default_material_print_temperature + 5 +raft_airgap = 0.6 +retraction_amount = 1.5 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.1 +retraction_speed = 30 +speed_print = 50 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_fast.inst.cfg b/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_fast.inst.cfg new file mode 100644 index 0000000000..d9796356b6 --- /dev/null +++ b/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_fast.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fast02 +setting_version = 25 +type = quality +variant = Multi0.2 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_fine.inst.cfg b/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_fine.inst.cfg new file mode 100644 index 0000000000..d3e68c70a7 --- /dev/null +++ b/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_fine.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine02 +setting_version = 25 +type = quality +variant = Multi0.2 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_normal.inst.cfg b/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_normal.inst.cfg new file mode 100644 index 0000000000..720c46578e --- /dev/null +++ b/resources/quality/zyyx_pro/multi02/flex/zyyx_pro_02_flex_normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal02 +setting_version = 25 +type = quality +variant = Multi0.2 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_fast.inst.cfg b/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_fast.inst.cfg new file mode 100644 index 0000000000..4d4f0a9fee --- /dev/null +++ b/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_fast.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast02 +setting_version = 25 +type = quality +variant = Multi0.2 +weight = -2 + +[values] +infill_pattern = cubic +infill_sparse_density = 5 +layer_height = 0.1 +raft_airgap = 0.1 +retraction_amount = 0.5 +retraction_speed = 20 +speed_print = 50 +top_bottom_thickness = =line_width*2.5 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_fine.inst.cfg b/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_fine.inst.cfg new file mode 100644 index 0000000000..d63bdcaf66 --- /dev/null +++ b/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_fine.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine02 +setting_version = 25 +type = quality +variant = Multi0.2 +weight = -2 + +[values] +infill_pattern = gyroid +infill_sparse_density = 10 +layer_height = 0.05 +raft_airgap = 0.1 +retraction_amount = 0.5 +retraction_speed = 20 +speed_print = 30 +top_bottom_thickness = =line_width*2.5 +wall_thickness = =line_width*3 + diff --git a/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_normal.inst.cfg b/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_normal.inst.cfg new file mode 100644 index 0000000000..bb8b412876 --- /dev/null +++ b/resources/quality/zyyx_pro/multi02/zyyx_pro_02_global_normal.inst.cfg @@ -0,0 +1,24 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal02 +setting_version = 25 +type = quality +variant = Multi0.2 +weight = -2 + +[values] +infill_pattern = gyroid +infill_sparse_density = 10 +layer_height = 0.075 +raft_airgap = 0.1 +retraction_amount = 0.5 +retraction_speed = 20 +speed_print = 40 +top_bottom_thickness = =line_width*2.5 +wall_thickness = =line_width*3 + diff --git a/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_fast.inst.cfg b/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_fast.inst.cfg new file mode 100644 index 0000000000..254890c3db --- /dev/null +++ b/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_fast.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fast04 +setting_version = 25 +type = quality +variant = Multi0.4 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_fine.inst.cfg b/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_fine.inst.cfg new file mode 100644 index 0000000000..136adbd395 --- /dev/null +++ b/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_fine.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine04 +setting_version = 25 +type = quality +variant = Multi0.4 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_normal.inst.cfg b/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_normal.inst.cfg new file mode 100644 index 0000000000..2adb14b4c6 --- /dev/null +++ b/resources/quality/zyyx_pro/multi04/flex/zyyx_pro_04_flex_normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal04 +setting_version = 25 +type = quality +variant = Multi0.4 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_fast.inst.cfg b/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_fast.inst.cfg new file mode 100644 index 0000000000..2ac9fe038a --- /dev/null +++ b/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_fast.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast04 +setting_version = 25 +type = quality +variant = Multi0.4 +weight = -2 + +[values] +infill_pattern = cubic +layer_height = 0.2 +raft_airgap = 0.2 +retraction_amount = 1 +retraction_speed = 20 +speed_print = 60 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_fine.inst.cfg b/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_fine.inst.cfg new file mode 100644 index 0000000000..0007a0be1d --- /dev/null +++ b/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_fine.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine04 +setting_version = 25 +type = quality +variant = Multi0.4 +weight = -2 + +[values] +infill_pattern = gyroid +layer_height = 0.1 +raft_airgap = 0.2 +retraction_amount = 1 +retraction_speed = 20 +speed_print = 40 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_normal.inst.cfg b/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_normal.inst.cfg new file mode 100644 index 0000000000..b6d9e6ec7b --- /dev/null +++ b/resources/quality/zyyx_pro/multi04/zyyx_pro_04_global_normal.inst.cfg @@ -0,0 +1,23 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal04 +setting_version = 25 +type = quality +variant = Multi0.4 +weight = -2 + +[values] +infill_pattern = gyroid +layer_height = 0.15 +raft_airgap = 0.2 +retraction_amount = 1 +retraction_speed = 20 +speed_print = 50 +top_bottom_thickness = =line_width*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_fast.inst.cfg b/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_fast.inst.cfg new file mode 100644 index 0000000000..e9e3cb06fc --- /dev/null +++ b/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_fast.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fast08 +setting_version = 25 +type = quality +variant = Multi0.8 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_fine.inst.cfg b/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_fine.inst.cfg new file mode 100644 index 0000000000..739e7c3027 --- /dev/null +++ b/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_fine.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = fine08 +setting_version = 25 +type = quality +variant = Multi0.8 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_normal.inst.cfg b/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_normal.inst.cfg new file mode 100644 index 0000000000..68033239b2 --- /dev/null +++ b/resources/quality/zyyx_pro/multi08/flex/zyyx_pro_08_flex_normal.inst.cfg @@ -0,0 +1,21 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +material = generic_tpu_175 +quality_type = normal08 +setting_version = 25 +type = quality +variant = Multi0.8 +weight = 0 + +[values] +material_print_temperature_layer_0 = =material_print_temperature + 5 +retraction_hop = 0.2 +retraction_hop_enabled = True +retraction_speed = 15 +speed_print = 20 +speed_travel = 80 + diff --git a/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_fast.inst.cfg b/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_fast.inst.cfg new file mode 100644 index 0000000000..355d8e5274 --- /dev/null +++ b/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_fast.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Fast +version = 4 + +[metadata] +global_quality = True +quality_type = fast08 +setting_version = 25 +type = quality +variant = Multi0.8 +weight = -2 + +[values] +infill_overlap = 50 +infill_pattern = cubic +layer_height = 0.5 +raft_airgap = 0.4 +retraction_amount = 1.5 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.05 +retraction_speed = 30 +speed_print = 45 +top_bottom_thickness = =layer_height*2 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_fine.inst.cfg b/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_fine.inst.cfg new file mode 100644 index 0000000000..812e644439 --- /dev/null +++ b/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_fine.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Fine +version = 4 + +[metadata] +global_quality = True +quality_type = fine08 +setting_version = 25 +type = quality +variant = Multi0.8 +weight = -2 + +[values] +infill_overlap = 30 +infill_pattern = cubic +layer_height = 0.3 +raft_airgap = 0.4 +retraction_amount = 1.5 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.05 +retraction_speed = 30 +speed_print = 50 +top_bottom_thickness = =layer_height*4 +wall_thickness = =line_width*2 + diff --git a/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_normal.inst.cfg b/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_normal.inst.cfg new file mode 100644 index 0000000000..4e8aafe715 --- /dev/null +++ b/resources/quality/zyyx_pro/multi08/zyyx_pro_08_global_normal.inst.cfg @@ -0,0 +1,26 @@ +[general] +definition = zyyx_pro +name = Normal +version = 4 + +[metadata] +global_quality = True +quality_type = normal08 +setting_version = 25 +type = quality +variant = Multi0.8 +weight = -2 + +[values] +infill_overlap = 30 +infill_pattern = cubic +layer_height = 0.4 +raft_airgap = 0.4 +retraction_amount = 1.5 +retraction_count_max = 20 +retraction_extra_prime_amount = 0.05 +retraction_speed = 30 +speed_print = 50 +top_bottom_thickness = =layer_height*3 +wall_thickness = =line_width*2 + diff --git a/resources/setting_visibility/advanced.cfg b/resources/setting_visibility/advanced.cfg index 261743c708..8585a05eec 100644 --- a/resources/setting_visibility/advanced.cfg +++ b/resources/setting_visibility/advanced.cfg @@ -133,6 +133,7 @@ prime_tower_mode prime_tower_position_x prime_tower_position_y prime_tower_brim_enable +interlocking_enable [meshfix] @@ -144,7 +145,9 @@ magic_spiralize smooth_spiralized_contours [experimental] -interlocking_enable conical_overhang_enabled support_conical_enabled adaptive_layer_height_enabled +scarf_joint_seam_length +scarf_joint_seam_start_height_ratio +scarf_split_distance diff --git a/resources/setting_visibility/basic.cfg b/resources/setting_visibility/basic.cfg index 0193eb26ba..6c6124ab67 100644 --- a/resources/setting_visibility/basic.cfg +++ b/resources/setting_visibility/basic.cfg @@ -56,6 +56,7 @@ adhesion_extruder_nr prime_tower_enable prime_tower_position_x prime_tower_position_y +interlocking_enable [meshfix] diff --git a/resources/setting_visibility/expert.cfg b/resources/setting_visibility/expert.cfg index f0ba478a53..b52c7bd526 100644 --- a/resources/setting_visibility/expert.cfg +++ b/resources/setting_visibility/expert.cfg @@ -50,6 +50,7 @@ z_seam_relative [top_bottom] roofing_layer_count +flooring_layer_count top_bottom_extruder_nr top_bottom_thickness top_thickness @@ -110,6 +111,7 @@ min_skin_width_for_expansion infill_randomize_start_location skin_edge_support_thickness skin_edge_support_layers +extra_infill_lines_to_support_skins [material] default_material_print_temperature @@ -134,6 +136,7 @@ wall_0_material_flow_roofing wall_x_material_flow_roofing skin_material_flow roofing_material_flow +flooring_material_flow infill_material_flow skirt_brim_material_flow support_material_flow @@ -215,6 +218,7 @@ travel_retract_before_outer_wall travel_avoid_other_parts travel_avoid_supports travel_avoid_distance +retraction_combing_avoid_distance layer_start_x layer_start_y retraction_min_travel @@ -377,6 +381,12 @@ prime_tower_min_shell_thickness ooze_shield_enabled ooze_shield_angle ooze_shield_dist +interlocking_enable +interlocking_beam_width +interlocking_orientation +interlocking_beam_layer_count +interlocking_dept +interlocking_boundary_avoidance [meshfix] meshfix_union_all @@ -425,14 +435,12 @@ roofing_line_width roofing_pattern roofing_monotonic roofing_angles +flooring_line_width +flooring_pattern +flooring_monotonic +flooring_angles infill_enable_travel_optimization material_flow_temp_graph -interlocking_enable -interlocking_beam_width -interlocking_orientation -interlocking_beam_layer_count -interlocking_dept -interlocking_boundary_avoidance support_skip_some_zags support_skip_zag_per_mm support_zag_skip_count @@ -480,3 +488,6 @@ small_hole_max_size small_feature_max_length small_feature_speed_factor small_feature_speed_factor_0 +scarf_joint_seam_length +scarf_joint_seam_start_height_ratio +scarf_split_distance diff --git a/resources/shaders/grid.shader b/resources/shaders/grid.shader index 0ec6cc0f98..7386263c84 100644 --- a/resources/shaders/grid.shader +++ b/resources/shaders/grid.shader @@ -45,6 +45,7 @@ fragment = float majorLine = min(majorGrid.x, majorGrid.y); gl_FragColor = mix(minorGridColor, u_gridColor0, 1.0 - min(majorLine, 1.0)); + gl_FragColor.a = u_plateColor.a; } vertex41core = @@ -88,6 +89,7 @@ fragment41core = float majorLine = min(majorGrid.x, majorGrid.y); frag_color = mix(minorGridColor, u_gridColor0, 1.0 - min(majorLine, 1.0)); + frag_color.a = u_plateColor.a; } [defaults] diff --git a/resources/texts/change_log.txt b/resources/texts/change_log.txt index 4d3fce3a66..c432a9e309 100644 --- a/resources/texts/change_log.txt +++ b/resources/texts/change_log.txt @@ -1,3 +1,209 @@ +[5.10.1] + +* New features and improvements: +- Introduced the UltiMaker S6, the newest addition to the S series of UltiMaker printers that carry forward the award-winning legacy of the S5. +- Introduced Visual Intent profiles for PLA and Tough PLA for the UltiMaker S8 +- Introduced High-Speed Intents for ABSR for Method X and Method XL + +* Bug fixes: +- Updated UltiMaker S8 profiles to significantly improve the quality of PC, CPE, CPE+, PETG, support structures, and dual extrusion prints +- Support brims no longer listen to the Brim Distance setting, so the brims will always be attached to the support +- Fixed a bug affecting multi-extruder printers where the initial temperature was not set correctly at the start of a print if all features used an extruder other than T0 + +[5.10] + +* New features and improvements: +- UltiMaker S8 Support: Added compatibility for the UltiMaker S8 printer. +- Cheetah Gcode Flavor: Introduced a new Marlin-like Gcode flavor called Cheetah. +- SpaceMouse support: Navigate the view seamlessly with a 3D mouse, thanks to a collaboration with 3Dconnexion. +- Cloud Printing for Sketch Sprint: Enabled printing over cloud with Digital Factory for Sketch Sprint users. +- Interlocking Settings: Moved Interlocking settings from "Experimental" to "Dual Extrusion" category and placed under "Expert" setting visibility preset. +- Build System Upgrade: Upgraded the build system from Conan 1 to Conan 2. Updated documentation is available. +- Preview Looping: When the last layer is played in the preview, the first layer will now play again instead of stopping. +- Updated About Page: The About Page now shows the used sources, their licenses, and their versions in a clearer way +- Flip Y-axis Translate Tool Handle: Added an option to flip the Y-axis translate tool handle in preferences contributed by @GregValiant. +- Rotation by Input & Snap Angle Input: Introduced rotation by input & snap angle input contributed by @HellAholic and @GregValiant. +- Improved the speed when interacting with the Settings Visiblity window contributed by @HellAholic +- Purge Lines And Unload Filament Post Processing Script: Added a Purge Lines and Unload Filament Post Processing Script contributed by @GregValiant and @HellAholic +- Thingiverse "Open in Cura" Button Linux Support: Enabled the "Open in Cura" button from Thingiverse to open files in Linux contributed by @hadess. +- Multitool Printer Configuration Options: Introduced 3 new configuration options in machine settings for multitool printers contributed by @TheSin-. +- Search and Replace Post-Processing Plug-In: Significantly improved the Search and Replace post-processing plug-in with features like replacing only the first instance, limiting search to a layer range, and ignoring start-up or ending G-code contributed by @GregValiant +- Enabled Relative extrusion (M82 and M83 commands) for Marlin-flavored GCode, contributed by @EmJay276 + + +* New settings: +- Overhanging Wall Speeds, now gives you the ability to tune multiple values. Don’t forget to adjust the Overhanging Wall Angle to start using the setting. +- Minimum Layer Time with Overhang and Minimum Overhang Segment Length: Fine-tune the minimum layer time for overhangs. +Try it for yourself with this Overhanging Wall Angle Test. +- Inside Travel Avoid Distance: Finetune combing movements. +- Pressure Advance Factor Setting: New setting for machine definitions. +- You can now tune the Bottom Surface Skin, like you can tune the Top Surface Skin! You can now tune Extruder, Layers, Line Width, Pattern, Line Directions, Outer Wall Flow, Inner Wall(s) Flow, Flow, Outer Wall Speed, Inner Wall Speed, Skin Speed, Inner Wall Acceleration, Skin Acceleration, Outer Wall Jerk, Inner Wall Jerk, Skin Jerk, and Monotonic Bottom Surface Order +- Enable/Disable USB Printing: A hidden preference setting to indicate that you are using the printer over USB functionality. This setting lays the groundwork for automatically disabling USB printing in the next release when it’s not being used. + + +* Bug fixes: +- Resolved a crash that occurred when switching materials on Sovol printers. +- Random Seam no longer favors one side and not is truly random again +- Reduced the slicing time when no support needs to be generated +- Fixed a bug where Seam on Vertex with a User Defined seam position was not working correctly. +- Gcode replacement with a single line of code no longer produces values in separate lines +- Setting names that become too long after translation are now truncated. +- Updated UltiMaker printer logos to align with the current style. +- The number of decimal places displayed for layer height in the top bar has been reduced. +- Fixed a bug that caused incorrect retracting and hopping on printers with more than 2 extruders. +- Improved how fast the settings are loaded in the Settings Visibility window when scrolling +- Improved how disallowed areas and other models are taken into account when arranging models on the buildplate, including other models +- Preview playback now only shows visible parts. Infill lines, shell, and helpers are always hidden if disabled in preview's color scheme + + +* Bugs resolved since the Beta release +- Fixed a bug where the inner wall was bridging incorrectly +- Fixed a bug where support meshes were not printing if they had nothing to support +- Fixed a bug where project names would get mixed up when switching between projects +- Improved the UltiMaker S8 profiles to boost reliability and quality +- Updated Nylon CF Slide settings to reduce under extrusion +- Reduced the chance of a filament jam on Method series printers with dual extrusion prints with small layertimes +- The Bottom Surface Skin settings introduced in this release are now only enabled if 'Bottom Surface Skin layers' is more than zero +- Fixed the translations for the drop-downs in the Print Setting recommended view +- Columns in the Profile Description Screen can now be resized so long setting names can be read +- Two non-critical security fixes were implemented to align with security best practices in OAuth2 and the printer-linter +- Resolved top reported crashes coming in via the analyzing tool Sentry + +* Printer definitions, profiles, and materials: +- Introduced Visual Intents for the Sketch Sprint +- Introduced new Extra Fast and Draft profiles for the Sketch Sprint +- Introduced profiles for Sketch printers for Metallic PLA with improved surface quality (matte vs shiny) +- Introduced PC ABS and PC ABS FR materials for Method X and Method XL +- Introduced Nylon Slide for UltiMaker S Series Printers +- Updated the Breakaway Build Volume Temperature for UltiMaker Factor 4 +- Introduced Makerbot Replicator + +- Updated Voron2 printers to include TPU ASA and PVA, contributed by @WCEngineer +- Enabled Relative extrusion (M82 and M83 commands) for Marlin-flavored GCode, contributed by @EmJay276 + +Cura 5.10 supports macOS 12 Monterey or higher. This is because the tools that we use to create Cura builds no longer support previous versions of macOS. + +[5.9.1] + +* New features and improvements: +The About Page now shows some of the used sources, their licenses, and their versions in a clearer way. This will be even more complete in Cura 5.10. + +[5.9] + +* New features and improvements: +- Introduced scarf seam settings in experimental, Scarf Seam Length, Scarf Seam Start Height, and Scarf Seam Split Distance +- Updated the Start and End G-code edit options (for both Machine and Extruder) to include If/Else statements and formulas +- Introduced Build Fan Speed at Height, Build Fan Speed at Layer, and Build Volume Fan Number to control extra fans, like those controlling the build volume separately +- Added the "Extra Infill Lines to Support Skins" setting and other improvements to help make printing over sparse infill more reliable, contributed by @Hello1024 +- Significant UI speed improvements interacting with custom settings especially if your printer has multiple extruders +- Introduced an Anycolor option for the UltiMaker S and F series enabling you to print with any UltiMaker color loaded in the material station that is compatible with the printjobs. Note that it’s only compatible with the latest version of the firmware (for Factor 4 >=10.1 and for S-series >=9.0, and it does not include the UltiMaker S3) +- Added an option to Export Package for Technical Support to the help menu, it includes a project file with the settings but also the logs +- Improved the way materials are selected when using multiple extruders to print the build plate adhesion so it doesn't default to the first extruder but the best option instead. +- Improved processes so not only installers but also executables inside installers are signed for Windows +- Introduced improvements to how models and projects with large file size (500MB) slice. A message was also added to inform the user when a file size is too big to slice. +- Made it possible for multiple Engine plugins that are registered to the same slot to be used together. (Only for Modify plugins, and Plugins will be addressed alphabetically) +- Moved the Gradual Flow Engine Plug-in to CuraEngine, this also resolved slicing crashes when the plugin was used in combination with large number of smaller models that were printed at once. +- Improved and expanded the Insert at Layer Change post-processing script, contributed by @GregValiant +- Improved and expanded the Time Lapse Post Processing script, contributed by @GregValiant +- Added a registry entry to provide the option to silent uninstall on Windows, contributed by @Rotzbua + +* Bug fixes: +- Fixed a crash that would occur when renaming profile names that would result in changing the order of the profiles +- Fixed a bug so objects in a 3MF reload in the same position as they were saved again, contributed by @nilsiism +- Fixed an issue where overhanging walls and walls that were adjacent to overhanging walls were not printed at the correct speed +- Fixed a bug that prevented the "Sync materials with printers" page from displaying when accessed immediately after starting Cura or signing in +- Fixed a bug where reloading an updated model would not update the duplicates of the model on the build plate +- Fixed a bug that showed incompatible materials when switching between printers with a different filament diameter. +- Fixed a bug where tree support in enclosed holes has missing layers +- Made improvements in the G-codePathModify slot for Engine Plugins, contributed by @ThomasRahm +- Fixed a bug that prevented changes to the initial layer diameter from being applied properly in tree support, contributed by @ThomasRahm +- Fixed a rounding issue in the engine math, @0x5844 + +* Bugs resolved since the Beta release +- Spiralize outer contour no longer adds unnecessary seams to the model +- When coasting is enabled the printhead no longer drops down +- Fixed coasting strategy so it's only applied to outer/inner walls, and not to skin, top-bottom, or infill +- Fixed wiping direction when printing a single wall +- Improved wiping in combination with the scarf seam +- Significantly improved the strategy for sharpest corner - smart hiding seam location combination +- Fixed a bug where long scarf seam length and short scarf seam steps would result in the seam being moved outward +- Fixed a bug where seam acceleration and deceleration around seam were not working +- Fixed a bug where infill was wrongly removed from narrow spaces +- Triple-clicking values and searches that you entered now has you select everything so you can edit it in the field similar to other desktop applications +- Updated dependencies and improved how unwanted and unused binaries are excluded from the building process. +- Added Eazao material for the new Eazao printers +- Updated the urls schemes to make them more robust when attempting to open files in Cura +- Retract before outer wall now works correctly on all layers +- Resolved top reported crashes coming in via the analyzing tool Sentry +- Removed an unwanted Z-hop when starting a new layer +- Layer starts are more visible in the print preview with the scarf seam +- Made the X to close floating and pop up windows a little bigger +- Improved the visuals of printers with a build plate texture, they now render more consistently regardless of zoom or angle of view +- The UI now displays correctly on Wayland, with this fix we noticed some performance drop compared to X11 + +* Printer definitions, profiles, and materials: +- Introduced Makerbot Sketch Sprint +- Introduced Makerbot Sketch and Sketch Large +- Introduced new materials to the UltiMaker Method series, ABS, PETG, Nylon-CF, and Tough PLA +- Introduced new materials for Labs Extruder of the UltiMaker Method series, BASF Ultrafuse 316L, TPE SEBS 1300 95A, and Polymax PC. Except BASF Ultrafuse 316L is not available on the Method XL. +- Various setting improvements for ABS and Nylon for UltiMaker Method series +- Various setting improvements for dual extrusion support for the UltiMaker Method series +- Implemented a hard limit so the bed temperature cannot be more than 120°C on all UltiMaker printers. +- Fixed an error in the profile Ultimaker 2 profile naming +- Introduced the Creality CR-M4, contributed by @kixell +- Introduced Eazao M500, M600, M700, and Potter, and updated the Eazao Zero, contributed by @Eazo +- Introduced ZYYX+ and ZYYX Pro, contributed by @theodorhansson +- Updated acceleration settings for the Creality Ender-2 V3 SE, contributed by @T9Air + +* Community Translations +- Updated Japanese translations by @h1data +- Brazilian Portuguese by @Patola + +[5.8.1] + +* Bug fixes: +- Fixed an issue where materials could not be synced to UltiMaker Printers + +* Profile Improvements +- Significant improvements for PVA and TPU 95A profiles for UltiMaker Factor 4 + +[5.8] + +* New Z Seam Settings: +New settings have been added that let you tweak how and where the Z seam is placed +- "Z Seam On Vertex" allows you to choose if the Z seam is placed on the vertices closest to a selected Z seam position or if it instead follows the selected position exactly +- "Seam overhang angle" enables you to select the angle at which Z seams will not be printed on overhangs +- "Support Z Seam Away from Model" and "Min Z Seam Distance from Model" define where the Z seam is placed on supports +Try it for yourself with this toast post-it holder. + +* New features and improvements: +- A search bar has been added to the “Add an offline printer” list +- Introduced “Support Infill Density Multiplier Initial Layer”, “Raft Infill Overlap Percentage”, Raft Surface Z Offset, and Raft Flow settings to improve dual extrusion rafts +- Introduced “Cooling during extruder switch" to define the cooling fan behavior during an extruder switch by defining Unchanged, Only last extruder, All fans +- Updated the retract behavior for a nozzle switch to reduce the chance of oozing +- Updated Insert at Layer Change Post Processing Script so layers can be skipped, contributed by @tastyratz +- Updated the "Interleaved Prime Tower" with "Prime Tower Minimum Shell Thickness" so it uses less filament, contributed by @wawanbreton + +* Bug fixes: +- Fixed a bug that caused spiked objects to have missing layers, thanks to @thomasrahm +- Updated the text in the Open Universal Cura Project (UCP) file to be more correct +- Fixed the interpolated values for fan speeds and improved the check for minimum layer time +- Fix a bug where material_print_temp_prepend not being disabled +- Reduced the chance that oozing in the first travel move will cause a scar on the bottom of the model by updating the Layer Start X and Y +- Fixed a bug where a slice would fail if the overhang angle was set to 90 degrees +- Fixed a bug where infill lines are going through the model with a certain setting combination, contributed by @thomasrahm +- Updated the temperature values in the monitor page to reflect the initial instead of the final bed and print temperatures, contributed by @GregValiant + +* Printer definitions, profiles, and materials: +- Introduced the Ultimaker Method with PLA, PVA, and N12CF profiles and intents +- Improved dual-support settings for UltiMaker Sline and Method printers +- Expanded and updated intents for Factor 4 +- Updated CPE and PC settings to improve surface quality for Factor 4 +- Introduced Creality Ender 3 V3 KE, contributed by @vadim-danilchik, @daitj, @VladislavVidenov, @fjventura20 +- Introduced Voron2 StealthChanger 250, StealthChanger 300, and StealthChanger 350, contributed by @TheSin- +- Introduced K1 Max, contributed by @itay-grudev +- Introduced Ankermake M5C, contributed by @augustchi +- Introduced WEEDO F150S, F152S, F370, ME40, ME40 Lite, and X40 V3+, contributed by @WinstonMao + [5.7.2] * Bugfixes diff --git a/plugins/XmlMaterialProfile/product_to_id.json b/resources/texts/product_to_id.json similarity index 94% rename from plugins/XmlMaterialProfile/product_to_id.json rename to resources/texts/product_to_id.json index e99ead0985..34d7e53ba9 100644 --- a/plugins/XmlMaterialProfile/product_to_id.json +++ b/resources/texts/product_to_id.json @@ -18,6 +18,7 @@ "UltiMaker Method": "ultimaker_method", "UltiMaker Method X": "ultimaker_methodx", "UltiMaker Method XL": "ultimaker_methodxl", + "UltiMaker Replicator+": "ultimaker_replicator_plus", "UltiMaker Sketch": "ultimaker_sketch", "UltiMaker Sketch Large": "ultimaker_sketch_large" } \ No newline at end of file diff --git a/resources/themes/cura-light/theme.json b/resources/themes/cura-light/theme.json index 2d537d8ee8..1ae316f96c 100644 --- a/resources/themes/cura-light/theme.json +++ b/resources/themes/cura-light/theme.json @@ -567,7 +567,7 @@ "section_icon_column": [2.5, 2.5], "setting": [25.0, 1.8], - "setting_control": [11.0, 2.0], + "setting_control": [9.0, 2.0], "setting_control_radius": [0.15, 0.15], "setting_control_depth_margin": [1.4, 0.0], "setting_unit_margin": [0.5, 0.5], @@ -642,11 +642,11 @@ "monitor_preheat_temperature_control": [4.5, 2.0], "welcome_wizard_window": [46, 50], - "modal_window_minimum": [60.0, 45], + "modal_window_minimum": [60.0, 50.0], "wizard_progress": [10.0, 0.0], "message": [30.0, 5.0], - "message_close": [1, 1], + "message_close": [2, 2], "message_radius": [0.25, 0.25], "message_action_button": [0, 2.5], "message_image": [15.0, 10.0], diff --git a/resources/themes/daily_test_colors.json b/resources/themes/daily_test_colors.json new file mode 100644 index 0000000000..1cfa2baa74 --- /dev/null +++ b/resources/themes/daily_test_colors.json @@ -0,0 +1,16 @@ +[ + [ 62, 33, 55, 255], + [126, 196, 193, 255], + [126, 196, 193, 255], + [215, 155, 125, 255], + [228, 148, 58, 255], + [192, 199, 65, 255], + [157, 48, 59, 255], + [140, 143, 174, 255], + [ 23, 67, 75, 255], + [ 23, 67, 75, 255], + [154, 99, 72, 255], + [112, 55, 127, 255], + [100, 125, 52, 255], + [210, 100, 113, 255] +] diff --git a/resources/variants/arjun/arjun300_0.2.inst.cfg b/resources/variants/arjun/arjun300_0.2.inst.cfg index 93a9cda252..4a9eef45c4 100644 --- a/resources/variants/arjun/arjun300_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.3.inst.cfg b/resources/variants/arjun/arjun300_0.3.inst.cfg index 6680413525..c780b4a33f 100644 --- a/resources/variants/arjun/arjun300_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.4.inst.cfg b/resources/variants/arjun/arjun300_0.4.inst.cfg index f0e78bd67b..f6c32fbdde 100644 --- a/resources/variants/arjun/arjun300_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.5.inst.cfg b/resources/variants/arjun/arjun300_0.5.inst.cfg index f5287a2848..8d2a744dfa 100644 --- a/resources/variants/arjun/arjun300_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.6.inst.cfg b/resources/variants/arjun/arjun300_0.6.inst.cfg index acfb70d426..a7577adfa7 100644 --- a/resources/variants/arjun/arjun300_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_0.8.inst.cfg b/resources/variants/arjun/arjun300_0.8.inst.cfg index 081b1fe613..6ed12dc118 100644 --- a/resources/variants/arjun/arjun300_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg index c09ec180e8..1b4d31adf7 100644 --- a/resources/variants/arjun/arjun300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg index bf777b0e82..815a5b3aaa 100644 --- a/resources/variants/arjun/arjun300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg index 0c83b6b21c..3ba00326c7 100644 --- a/resources/variants/arjun/arjun300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg index a5fa970308..bc4a8273f7 100644 --- a/resources/variants/arjun/arjun300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg index 23019db4c2..2f1cb36cf0 100644 --- a/resources/variants/arjun/arjun300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg index 0a44cd4a89..86962cd9df 100644 --- a/resources/variants/arjun/arjun300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg index ab3c18911b..960f0020d6 100644 --- a/resources/variants/arjun/arjun300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg index 29999d094a..d54d07c13b 100644 --- a/resources/variants/arjun/arjun300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg index bc6a26bbae..0cf4e6dc98 100644 --- a/resources/variants/arjun/arjun300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg index 2cb3776d91..f6d81f2c4e 100644 --- a/resources/variants/arjun/arjun300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg index 64193bc333..0214b2b5ca 100644 --- a/resources/variants/arjun/arjun300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg index a00eb4737d..9f58de45b1 100644 --- a/resources/variants/arjun/arjun300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg index af032b8d32..ff6729bc9b 100644 --- a/resources/variants/arjun/arjun300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg index 94679d0310..dadb815c33 100644 --- a/resources/variants/arjun/arjun300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg index c4e63bff05..8a30dcb2f0 100644 --- a/resources/variants/arjun/arjun300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg index 9647cc0ddf..e1badc121b 100644 --- a/resources/variants/arjun/arjun300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg index 6b8ff4aee4..cc844b83b2 100644 --- a/resources/variants/arjun/arjun300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg index 75df806b08..d571dd3cce 100644 --- a/resources/variants/arjun/arjun300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjun300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_0.2.inst.cfg index 810c6887b1..ae8f1fec0d 100644 --- a/resources/variants/arjun/arjunpro300_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_0.3.inst.cfg index 36a3c1bab6..e893b54e3d 100644 --- a/resources/variants/arjun/arjunpro300_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_0.4.inst.cfg index 75a58cd978..cd3c20c043 100644 --- a/resources/variants/arjun/arjunpro300_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_0.5.inst.cfg index 19c08457c5..d293e88f6d 100644 --- a/resources/variants/arjun/arjunpro300_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_0.6.inst.cfg index 8d4d1d914a..130d9670fd 100644 --- a/resources/variants/arjun/arjunpro300_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_0.8.inst.cfg index 52f028cba0..ca39878343 100644 --- a/resources/variants/arjun/arjunpro300_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg index 4373356eea..add3d75b4d 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg index 8f78856b63..a83d2d19e9 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg index 00467ec737..ca61105578 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg index c4860fbcc9..37f23cd909 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg index 45c2c5392c..58dbf116c0 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg index c396dd139c..aab83894f5 100644 --- a/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg index cc3d0e8c52..487ce8c7d1 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg index 9ece24fc84..2167594f08 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg index 2489d0d4fc..d3d1a5d457 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg index c8864fbb17..b53c0aa240 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg index bf2019c7a2..8084d3dd7c 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg index 13ed3b65e7..5a02e83cb0 100644 --- a/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg index cc0c010ce2..540d1bf972 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg index 9204d755cc..1fc159896b 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg index 2b36ddec9c..5541312fc4 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg index 167eaaf99d..9d43cd731c 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg index 4cf68ad45a..19a71646c5 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg index cb05da3c8a..4f247dfc3a 100644 --- a/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg +++ b/resources/variants/arjun/arjunpro300_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.2.inst.cfg b/resources/variants/artillery/artillery_base_0.2.inst.cfg index 4e78b919d9..e944860d82 100644 --- a/resources/variants/artillery/artillery_base_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.3.inst.cfg b/resources/variants/artillery/artillery_base_0.3.inst.cfg index 3b1fdb4c30..190d315e4f 100644 --- a/resources/variants/artillery/artillery_base_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.4.inst.cfg b/resources/variants/artillery/artillery_base_0.4.inst.cfg index d64f66e110..bc4f2e1bcc 100644 --- a/resources/variants/artillery/artillery_base_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.6.inst.cfg b/resources/variants/artillery/artillery_base_0.6.inst.cfg index 89753a6342..88a45aeee9 100644 --- a/resources/variants/artillery/artillery_base_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_0.8.inst.cfg b/resources/variants/artillery/artillery_base_0.8.inst.cfg index 0c217a6d95..4e1593924d 100644 --- a/resources/variants/artillery/artillery_base_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_base_1.0.inst.cfg b/resources/variants/artillery/artillery_base_1.0.inst.cfg index d484d54347..636848de4c 100644 --- a/resources/variants/artillery/artillery_base_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.2.inst.cfg b/resources/variants/artillery/artillery_genius_0.2.inst.cfg index 97e014d9df..9e081b8862 100644 --- a/resources/variants/artillery/artillery_genius_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.3.inst.cfg b/resources/variants/artillery/artillery_genius_0.3.inst.cfg index d2debe768f..1249004b68 100644 --- a/resources/variants/artillery/artillery_genius_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.4.inst.cfg b/resources/variants/artillery/artillery_genius_0.4.inst.cfg index ad3ec300ad..8c9d1cf763 100644 --- a/resources/variants/artillery/artillery_genius_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.5.inst.cfg b/resources/variants/artillery/artillery_genius_0.5.inst.cfg index 048d51b35b..1593c94a6c 100644 --- a/resources/variants/artillery/artillery_genius_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.6.inst.cfg b/resources/variants/artillery/artillery_genius_0.6.inst.cfg index 8206e862e9..884da19632 100644 --- a/resources/variants/artillery/artillery_genius_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_0.8.inst.cfg b/resources/variants/artillery/artillery_genius_0.8.inst.cfg index d5b9ba26fe..634469d69a 100644 --- a/resources/variants/artillery/artillery_genius_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_genius_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_genius_1.0.inst.cfg b/resources/variants/artillery/artillery_genius_1.0.inst.cfg index 5bd5ee157c..192cd78d3b 100644 --- a/resources/variants/artillery/artillery_genius_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_genius_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg index b489bb232f..8abb91d657 100644 --- a/resources/variants/artillery/artillery_hornet_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg index 1b2d03d446..abf29ace50 100644 --- a/resources/variants/artillery/artillery_hornet_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg index 15601bce9f..a54bc16608 100644 --- a/resources/variants/artillery/artillery_hornet_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg index 625732f8be..f0fd99ff1d 100644 --- a/resources/variants/artillery/artillery_hornet_0.5.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg index ee5b4d5b73..36527249f2 100644 --- a/resources/variants/artillery/artillery_hornet_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg index ad3c82bc2b..639ae5d236 100644 --- a/resources/variants/artillery/artillery_hornet_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg index c3b43f462a..45385f611a 100644 --- a/resources/variants/artillery/artillery_hornet_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_hornet_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg index b7cedae983..fcffa6e6e4 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg index 0b0b9c52d4..a0b59fe6b8 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg index ca7d41cc6a..1667856cf1 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg index 344852dbe6..93ca62198c 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg index 2796719d49..d2f5555909 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg index f18dc59570..8ef6ffef11 100644 --- a/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg +++ b/resources/variants/artillery/artillery_sidewinder_x1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg index f5ded16281..17ff48f378 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg index efc2f44195..29a852fcee 100644 --- a/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_ht_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg index 2d98543eb4..ff54a1de5c 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg index 8804919288..7c06705911 100644 --- a/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_asterion_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg index 4c4e32aea8..b0599dfc98 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg index 0c40d52a3f..b718f5e38a 100644 --- a/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_500_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg index a5f670c7d9..d86a8710d4 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg index 3f8339500a..4d966040e6 100644 --- a/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_galaxy_600_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg index 667962e5de..f5bda72fd0 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg index 69bb3f9c70..1de4abfcbf 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg index f8cb3c1f84..6f334a5e03 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg index 1d319e7f03..ff479cd3c4 100644 --- a/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_300_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg index c70d0c1ecb..e0458dd87f 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg index 38174decad..a7f14a7d7e 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg index 6725cedd8a..9185a3271c 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg index 4ea72f75db..1aa8a2a0b0 100644 --- a/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_400_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg index b28e7ddfc0..2bfba51484 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg index 27678a3b2e..2140edf55b 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v1_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg index 901d036966..02c62b83fe 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg index 386d623a52..046ce75632 100644 --- a/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_pro_500_v2_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg index 06c58bb883..068a7309d4 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg index dfeba978de..2e6e79ff86 100644 --- a/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg index dfac869cec..af2069ab30 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg index 8aae3a6eb6..98e11ca54f 100644 --- a/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg index 6558650b25..9f1c8889d8 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg index 4a1f710176..f16ad2e960 100644 --- a/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg +++ b/resources/variants/atmat/atmat_signal_xxxl_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg index 2c6c67e10f..0ec04305bb 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg index 37107ab53b..e163204268 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg index 25865d3408..9a5e027e43 100644 --- a/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg index c6fcc777e2..7ca20c75ae 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg index 2b9a166b81..05617d0961 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg index a889384895..89d68ccffd 100644 --- a/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_all_metal_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg index 9ffd271caa..555094995a 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg index 8b1fcf08d1..996feb006d 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg index e2dee19e6c..0862f9f78d 100644 --- a/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_lite_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg index 1c80d91604..8a558bab57 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg index b8a92d06f3..da1393dbe7 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg index ae11da958a..017feca34f 100644 --- a/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg +++ b/resources/variants/atmat/atom3_ptfe_brass_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/bambu/bambulab_a1_0.4.inst.cfg b/resources/variants/bambu/bambulab_a1_0.4.inst.cfg new file mode 100644 index 0000000000..0823eb58b3 --- /dev/null +++ b/resources/variants/bambu/bambulab_a1_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = bambulab_a1 +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/bambu/bambulab_a1mini_0.4.inst.cfg b/resources/variants/bambu/bambulab_a1mini_0.4.inst.cfg new file mode 100644 index 0000000000..fceec9b0e8 --- /dev/null +++ b/resources/variants/bambu/bambulab_a1mini_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = bambulab_a1mini +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/bambu/bambulab_x1_0.4.inst.cfg b/resources/variants/bambu/bambulab_x1_0.4.inst.cfg new file mode 100644 index 0000000000..d3f5248b2d --- /dev/null +++ b/resources/variants/bambu/bambulab_x1_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = bambulab_x1 +name = X1 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu/biqu_b1_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_0.2.inst.cfg index 33cc8cddf0..32d7c1cc02 100755 --- a/resources/variants/biqu/biqu_b1_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_0.3.inst.cfg index 5eda2edd83..f23f253558 100755 --- a/resources/variants/biqu/biqu_b1_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_0.4.inst.cfg index 20e5e4e90a..a88ac1f954 100755 --- a/resources/variants/biqu/biqu_b1_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_0.5.inst.cfg index 6fa7a4543b..8ba924724f 100755 --- a/resources/variants/biqu/biqu_b1_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_0.6.inst.cfg index fbeeb8ba59..9773dd3a4d 100755 --- a/resources/variants/biqu/biqu_b1_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_0.8.inst.cfg index 39b4ffdc2b..2ae01de92f 100755 --- a/resources/variants/biqu/biqu_b1_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg index f5fd67b87d..2fe256eae4 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg index d6cfb2a776..44df320766 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg index 6cde06bf35..e8221e0c12 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg index 8fcb3f9788..afdeead8d9 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg index 40bf791ec5..aacbd22dd3 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg index 514a379232..4162757f06 100755 --- a/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_b1_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_b2_0.2.inst.cfg b/resources/variants/biqu/biqu_b2_0.2.inst.cfg new file mode 100644 index 0000000000..e86b85d50b --- /dev/null +++ b/resources/variants/biqu/biqu_b2_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_b2 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/biqu/biqu_b2_0.3.inst.cfg b/resources/variants/biqu/biqu_b2_0.3.inst.cfg new file mode 100644 index 0000000000..8469c7e211 --- /dev/null +++ b/resources/variants/biqu/biqu_b2_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_b2 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/biqu/biqu_b2_0.4.inst.cfg b/resources/variants/biqu/biqu_b2_0.4.inst.cfg new file mode 100644 index 0000000000..472e03489b --- /dev/null +++ b/resources/variants/biqu/biqu_b2_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_b2 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/biqu/biqu_b2_0.5.inst.cfg b/resources/variants/biqu/biqu_b2_0.5.inst.cfg new file mode 100644 index 0000000000..1ab4eb72d4 --- /dev/null +++ b/resources/variants/biqu/biqu_b2_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_b2 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/biqu/biqu_b2_0.6.inst.cfg b/resources/variants/biqu/biqu_b2_0.6.inst.cfg new file mode 100644 index 0000000000..0ac946844a --- /dev/null +++ b/resources/variants/biqu/biqu_b2_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_b2 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/biqu/biqu_b2_0.8.inst.cfg b/resources/variants/biqu/biqu_b2_0.8.inst.cfg new file mode 100644 index 0000000000..53b6910342 --- /dev/null +++ b/resources/variants/biqu/biqu_b2_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = biqu_b2 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/biqu/biqu_base_0.2.inst.cfg b/resources/variants/biqu/biqu_base_0.2.inst.cfg index b42d0c87f3..415cf8d1ed 100755 --- a/resources/variants/biqu/biqu_base_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.3.inst.cfg b/resources/variants/biqu/biqu_base_0.3.inst.cfg index f486854eeb..f4cfad463e 100755 --- a/resources/variants/biqu/biqu_base_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.4.inst.cfg b/resources/variants/biqu/biqu_base_0.4.inst.cfg index 4236b86178..071443fcd9 100755 --- a/resources/variants/biqu/biqu_base_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.5.inst.cfg b/resources/variants/biqu/biqu_base_0.5.inst.cfg index 37f5505bde..e6226a8cc2 100755 --- a/resources/variants/biqu/biqu_base_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.6.inst.cfg b/resources/variants/biqu/biqu_base_0.6.inst.cfg index 9793718e5d..142799d413 100755 --- a/resources/variants/biqu/biqu_base_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_base_0.8.inst.cfg b/resources/variants/biqu/biqu_base_0.8.inst.cfg index f720f7fd9c..628af17ce5 100755 --- a/resources/variants/biqu/biqu_base_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg index 5498de417a..79f9329021 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg index 86be976e20..c5c51ca344 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg index 8c04da610d..4d6563c5a7 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg index f886e6b106..bca41f20ff 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg index 74e59e38c8..09878e01b4 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg index 70d8d131b4..1848d489e1 100755 --- a/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_bx_abl_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg index cb199db026..bdd508e08d 100755 --- a/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg index d3ceab8f55..3bc85dffa7 100755 --- a/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg index a4ef00cc0e..a4e35aa391 100755 --- a/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg index 045a3f99cc..bdd3bf19c0 100755 --- a/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg index a69f4fa816..b9ffea9e75 100755 --- a/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg index 8bad103e9d..a68d5a6285 100755 --- a/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg +++ b/resources/variants/biqu/biqu_hurakan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg index c4fe2e68f2..94eab0f6ad 100644 --- a/resources/variants/blocks/blocks_mkii_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg index 5351019fc3..1359b5fc65 100644 --- a/resources/variants/blocks/blocks_mkii_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg index 2b7a2edf75..d04bab69ec 100644 --- a/resources/variants/blocks/blocks_mkii_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg index 8a186ad31a..b1bec5447b 100644 --- a/resources/variants/blocks/blocks_mkii_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg index 9ee17968fc..ff8fbcd1d3 100644 --- a/resources/variants/blocks/blocks_mkii_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg index d2847e5410..f91280d699 100644 --- a/resources/variants/blocks/blocks_mkii_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_mkii_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.20.inst.cfg b/resources/variants/blocks/blocks_one_0.20.inst.cfg index f85d14be4f..57a41ada38 100644 --- a/resources/variants/blocks/blocks_one_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.30.inst.cfg b/resources/variants/blocks/blocks_one_0.30.inst.cfg index da4aecc1ff..6c24a1d46b 100644 --- a/resources/variants/blocks/blocks_one_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.40.inst.cfg b/resources/variants/blocks/blocks_one_0.40.inst.cfg index fc00de5356..ffdb71229f 100644 --- a/resources/variants/blocks/blocks_one_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.50.inst.cfg b/resources/variants/blocks/blocks_one_0.50.inst.cfg index af4d3206f1..78c574b1e8 100644 --- a/resources/variants/blocks/blocks_one_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.60.inst.cfg b/resources/variants/blocks/blocks_one_0.60.inst.cfg index ef2c7d5e8d..62a3852b1b 100644 --- a/resources/variants/blocks/blocks_one_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_one_0.80.inst.cfg b/resources/variants/blocks/blocks_one_0.80.inst.cfg index 933a875b53..1cbcc63281 100644 --- a/resources/variants/blocks/blocks_one_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_one_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg index b927508991..35ac8cc29b 100644 --- a/resources/variants/blocks/blocks_pros100_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg index 8c68a6ced7..942d495fe0 100644 --- a/resources/variants/blocks/blocks_pros100_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg index e3994bfe5e..2a49c73252 100644 --- a/resources/variants/blocks/blocks_pros100_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg index df4c5e7047..f898076da0 100644 --- a/resources/variants/blocks/blocks_pros100_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg index ea3718470a..0e25b3e913 100644 --- a/resources/variants/blocks/blocks_pros100_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg index 88cb2d46b2..45ca2b9b79 100644 --- a/resources/variants/blocks/blocks_pros100_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros100_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg index f5b36fcb86..8818ae1d29 100644 --- a/resources/variants/blocks/blocks_pros30_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg index 72a17f4c66..c9f946f317 100644 --- a/resources/variants/blocks/blocks_pros30_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg index e8b9735ebb..5107995c8e 100644 --- a/resources/variants/blocks/blocks_pros30_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg index c7eda94955..5dffa270e1 100644 --- a/resources/variants/blocks/blocks_pros30_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg index 6a8101f419..7cb340f1e1 100644 --- a/resources/variants/blocks/blocks_pros30_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg index b63d6d4930..389f8f1742 100644 --- a/resources/variants/blocks/blocks_pros30_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_pros30_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg index f01cdae873..edeffec12d 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg index 953c109864..a44aceb53d 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg index f37090cc34..de7938b310 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg index 884d6985e8..7ae191845e 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg index 503e7dbc37..f9b6194bed 100644 --- a/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_r21_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg index 92520d7412..e1e956d70f 100644 --- a/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg index c3ef274234..da9f873d9c 100644 --- a/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg index 0a70809ed4..ce756f5d35 100644 --- a/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg index 72280956ca..cf14193b99 100644 --- a/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg index b0a2437841..3628d526dd 100644 --- a/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg index 0f4f86afc6..1c6c38136d 100644 --- a/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg index 65c00081e6..1267a7835e 100644 --- a/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg index f7550f5709..36229dc7e5 100644 --- a/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_r21_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg index ac3cfb8a77..96c8b17728 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg index 930ef1c956..3989e33ba5 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg index ee7c7af568..4bea453803 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg index cd4a03a63f..668103ec91 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg index ed2b2c05e8..69997f2c0f 100644 --- a/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg index 3c6659b877..56ecf2d6f4 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg index b6479ccf55..285047e6c6 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg index fedb0eb3cb..e7022365c6 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg index 4706b13264..573e4698f5 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg index f3438683c3..9d5361dc38 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg index e3392fef46..07e0f86eab 100644 --- a/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg index f0267d0801..d0d398a581 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg index f59324621b..91482fca5d 100644 --- a/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg index 91c2314f6c..5ec878d278 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg index 4615f9296d..0a83f2ce14 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg index 0b9a42a44f..77c49c921e 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg index ec94cf4700..bd9142e884 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg index f2ea9ceac0..fa36a82033 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg index 6cd7003c11..b04de1cd98 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg index b47b774176..c4ca86a6b0 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg index 23bfc0aedd..0323ab175b 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg index 9734deca27..e1c37b3d2c 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg index 556ca65c96..0879b805eb 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg index 7a4ce91202..a28474ad67 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg index d0f4b458fe..c26a7c7660 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg index 1b7173778e..cae409d385 100644 --- a/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50duplicate_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg index bc964011f8..a3ff2b1862 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg index 07e845e9d6..a52d9ff558 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg index 725cb8c639..485499c054 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg index 0d0f9628f7..e0f0635228 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg index 00e1b1c48c..f292f83bdf 100644 --- a/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_ht_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg index a61baae115..c65ec90ac2 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg index 2e13045b90..fe90c3ecb1 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg index 85e6363e90..9d9f52b032 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg index cf56050d82..d266749797 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg index d3e8d29a65..469a450c03 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg index 5a13d8d69f..a115aeaab7 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg index eb1272e9f3..4c3746a46c 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg index f59324621b..91482fca5d 100644 --- a/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg +++ b/resources/variants/blocks/blocks_rd50mirror_st_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.20.inst.cfg b/resources/variants/blocks/blocks_zero_0.20.inst.cfg index 426cb0ef77..48bc1c007f 100644 --- a/resources/variants/blocks/blocks_zero_0.20.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.30.inst.cfg b/resources/variants/blocks/blocks_zero_0.30.inst.cfg index 150e957f36..d2818e6ca2 100644 --- a/resources/variants/blocks/blocks_zero_0.30.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.40.inst.cfg b/resources/variants/blocks/blocks_zero_0.40.inst.cfg index f58f3c4b46..ae1258fe1a 100644 --- a/resources/variants/blocks/blocks_zero_0.40.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.50.inst.cfg b/resources/variants/blocks/blocks_zero_0.50.inst.cfg index 5114247fe1..6e411b2bf3 100644 --- a/resources/variants/blocks/blocks_zero_0.50.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.60.inst.cfg b/resources/variants/blocks/blocks_zero_0.60.inst.cfg index 26bedb1448..9e24770ad7 100644 --- a/resources/variants/blocks/blocks_zero_0.60.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/blocks/blocks_zero_0.80.inst.cfg b/resources/variants/blocks/blocks_zero_0.80.inst.cfg index 525ab6dca8..cffb09024f 100644 --- a/resources/variants/blocks/blocks_zero_0.80.inst.cfg +++ b/resources/variants/blocks/blocks_zero_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.25.inst.cfg b/resources/variants/cartesio/cartesio_0.25.inst.cfg index acff9bda4d..6f043dec42 100644 --- a/resources/variants/cartesio/cartesio_0.25.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.4.inst.cfg b/resources/variants/cartesio/cartesio_0.4.inst.cfg index 10b56a610e..777107b406 100644 --- a/resources/variants/cartesio/cartesio_0.4.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/cartesio/cartesio_0.8.inst.cfg b/resources/variants/cartesio/cartesio_0.8.inst.cfg index 3e4662c89c..9100edc009 100644 --- a/resources/variants/cartesio/cartesio_0.8.inst.cfg +++ b/resources/variants/cartesio/cartesio_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Cartesio hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg index eb4548b7b5..360cc6b69f 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg index 3b2312d0b4..df652c8b29 100644 --- a/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg +++ b/resources/variants/crazy3dprint/crazy3dprint_cz_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.2.inst.cfg b/resources/variants/creality/creality_base_0.2.inst.cfg index 8e7c299409..fb01d2abde 100644 --- a/resources/variants/creality/creality_base_0.2.inst.cfg +++ b/resources/variants/creality/creality_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.3.inst.cfg b/resources/variants/creality/creality_base_0.3.inst.cfg index d2422e5d80..60f0aafd36 100644 --- a/resources/variants/creality/creality_base_0.3.inst.cfg +++ b/resources/variants/creality/creality_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.4.inst.cfg b/resources/variants/creality/creality_base_0.4.inst.cfg index 652c9b3f65..021cb96a43 100644 --- a/resources/variants/creality/creality_base_0.4.inst.cfg +++ b/resources/variants/creality/creality_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.5.inst.cfg b/resources/variants/creality/creality_base_0.5.inst.cfg index 59c011bf86..0a79297873 100644 --- a/resources/variants/creality/creality_base_0.5.inst.cfg +++ b/resources/variants/creality/creality_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.6.inst.cfg b/resources/variants/creality/creality_base_0.6.inst.cfg index 2c2c36bf6a..38276d6e23 100644 --- a/resources/variants/creality/creality_base_0.6.inst.cfg +++ b/resources/variants/creality/creality_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_0.8.inst.cfg b/resources/variants/creality/creality_base_0.8.inst.cfg index 88c2f2427c..b93886abb8 100644 --- a/resources/variants/creality/creality_base_0.8.inst.cfg +++ b/resources/variants/creality/creality_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_base_1.0.inst.cfg b/resources/variants/creality/creality_base_1.0.inst.cfg index 5954b7fcd0..0438b10843 100644 --- a/resources/variants/creality/creality_base_1.0.inst.cfg +++ b/resources/variants/creality/creality_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr100_0.4.inst.cfg b/resources/variants/creality/creality_cr100_0.4.inst.cfg index 5d28b0baa9..63bd88844f 100644 --- a/resources/variants/creality/creality_cr100_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr100_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.2.inst.cfg b/resources/variants/creality/creality_cr10_0.2.inst.cfg index 3b2924a758..73b65a8602 100644 --- a/resources/variants/creality/creality_cr10_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.3.inst.cfg b/resources/variants/creality/creality_cr10_0.3.inst.cfg index 0cc70a0ec7..b108fc33db 100644 --- a/resources/variants/creality/creality_cr10_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.4.inst.cfg b/resources/variants/creality/creality_cr10_0.4.inst.cfg index 19b8b2abb7..29c23d9b19 100644 --- a/resources/variants/creality/creality_cr10_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.5.inst.cfg b/resources/variants/creality/creality_cr10_0.5.inst.cfg index 78805b4af7..7660eb932d 100644 --- a/resources/variants/creality/creality_cr10_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.6.inst.cfg b/resources/variants/creality/creality_cr10_0.6.inst.cfg index 3059d671e5..33f4838c06 100644 --- a/resources/variants/creality/creality_cr10_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_0.8.inst.cfg b/resources/variants/creality/creality_cr10_0.8.inst.cfg index 48c85895be..c15f618b18 100644 --- a/resources/variants/creality/creality_cr10_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10_1.0.inst.cfg b/resources/variants/creality/creality_cr10_1.0.inst.cfg index d58fca26f2..bf8e7250d8 100644 --- a/resources/variants/creality/creality_cr10_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.2.inst.cfg b/resources/variants/creality/creality_cr10max_0.2.inst.cfg index 1fcb49f147..f1a455ddbd 100644 --- a/resources/variants/creality/creality_cr10max_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.3.inst.cfg b/resources/variants/creality/creality_cr10max_0.3.inst.cfg index ec92685f22..b96794cb48 100644 --- a/resources/variants/creality/creality_cr10max_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.4.inst.cfg b/resources/variants/creality/creality_cr10max_0.4.inst.cfg index 4aab97419c..d638d8a273 100644 --- a/resources/variants/creality/creality_cr10max_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.5.inst.cfg b/resources/variants/creality/creality_cr10max_0.5.inst.cfg index b7b503a1d5..9d53040fc7 100644 --- a/resources/variants/creality/creality_cr10max_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.6.inst.cfg b/resources/variants/creality/creality_cr10max_0.6.inst.cfg index 0caad2868d..6d138f4436 100644 --- a/resources/variants/creality/creality_cr10max_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_0.8.inst.cfg b/resources/variants/creality/creality_cr10max_0.8.inst.cfg index 8b379f0c6e..55eea82e14 100644 --- a/resources/variants/creality/creality_cr10max_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10max_1.0.inst.cfg b/resources/variants/creality/creality_cr10max_1.0.inst.cfg index dc9507c40d..2b884faa7b 100644 --- a/resources/variants/creality/creality_cr10max_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg index 8d17b56802..c535e6fe59 100644 --- a/resources/variants/creality/creality_cr10mini_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg index 5a97059d3f..c234fb6db2 100644 --- a/resources/variants/creality/creality_cr10mini_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg index eca0fb5f31..17e2b3affe 100644 --- a/resources/variants/creality/creality_cr10mini_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg index bb8052aa0f..909b254c3e 100644 --- a/resources/variants/creality/creality_cr10mini_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg index d0bd98cf24..0e5240b56e 100644 --- a/resources/variants/creality/creality_cr10mini_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg index 6024084037..3e7fee2d10 100644 --- a/resources/variants/creality/creality_cr10mini_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg index 3d2285791e..2b0e41b5c7 100644 --- a/resources/variants/creality/creality_cr10mini_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10mini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg index cbd53e4a05..fcbe1af809 100644 --- a/resources/variants/creality/creality_cr10s4_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg index 7189e5d3e0..1616fba492 100644 --- a/resources/variants/creality/creality_cr10s4_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg index 2429c773e7..8185ee6f3f 100644 --- a/resources/variants/creality/creality_cr10s4_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg index 5382fb830a..e54f2ea502 100644 --- a/resources/variants/creality/creality_cr10s4_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg index 4b65a1c311..5fd343c6b7 100644 --- a/resources/variants/creality/creality_cr10s4_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg index 50460847e4..288923ead2 100644 --- a/resources/variants/creality/creality_cr10s4_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg index 590003b0a7..596356f76a 100644 --- a/resources/variants/creality/creality_cr10s4_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg index 1e2afc21ed..a7fa3cb089 100644 --- a/resources/variants/creality/creality_cr10s5_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg index 481adf21a5..e096c202c3 100644 --- a/resources/variants/creality/creality_cr10s5_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg index 8edccc6fbc..14b25e550c 100644 --- a/resources/variants/creality/creality_cr10s5_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg index be31c1a175..30d21044af 100644 --- a/resources/variants/creality/creality_cr10s5_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg index 55f55cc02c..84cfe2dd29 100644 --- a/resources/variants/creality/creality_cr10s5_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg index 79117e9970..a553ba6693 100644 --- a/resources/variants/creality/creality_cr10s5_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg index dab7748925..d654aa69be 100644 --- a/resources/variants/creality/creality_cr10s5_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.2.inst.cfg b/resources/variants/creality/creality_cr10s_0.2.inst.cfg index eb7dbfb848..384ba94a80 100644 --- a/resources/variants/creality/creality_cr10s_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.3.inst.cfg b/resources/variants/creality/creality_cr10s_0.3.inst.cfg index 164abd5f84..6944aa0fd1 100644 --- a/resources/variants/creality/creality_cr10s_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.4.inst.cfg b/resources/variants/creality/creality_cr10s_0.4.inst.cfg index 9a17bb77ff..44cc860719 100644 --- a/resources/variants/creality/creality_cr10s_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.5.inst.cfg b/resources/variants/creality/creality_cr10s_0.5.inst.cfg index f4e6e0a728..3ba41cc5d2 100644 --- a/resources/variants/creality/creality_cr10s_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.6.inst.cfg b/resources/variants/creality/creality_cr10s_0.6.inst.cfg index ed90ef591a..1d33ee537f 100644 --- a/resources/variants/creality/creality_cr10s_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_0.8.inst.cfg b/resources/variants/creality/creality_cr10s_0.8.inst.cfg index 359440b6da..ea840bb81e 100644 --- a/resources/variants/creality/creality_cr10s_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10s_1.0.inst.cfg b/resources/variants/creality/creality_cr10s_1.0.inst.cfg index 06c6ed0c84..aa5b0e05de 100644 --- a/resources/variants/creality/creality_cr10s_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg index 6684f0c83d..59c60b2a01 100644 --- a/resources/variants/creality/creality_cr10smart_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg index 32e8f48e30..d6b1c1eff9 100644 --- a/resources/variants/creality/creality_cr10smart_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg index 0e6e105f38..9ed1c571a0 100644 --- a/resources/variants/creality/creality_cr10smart_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg index 9e32aed915..259b3c2fd0 100644 --- a/resources/variants/creality/creality_cr10smart_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg index 7ebd75a340..1dddd3aa9b 100644 --- a/resources/variants/creality/creality_cr10smart_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg index 8877a93996..64df77a24d 100644 --- a/resources/variants/creality/creality_cr10smart_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg index ee740ac8ba..cbd3868c1c 100644 --- a/resources/variants/creality/creality_cr10smart_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10smart_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg index 13be034c1b..69e9c03458 100644 --- a/resources/variants/creality/creality_cr10spro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg index 2f11107b6b..a3576c2800 100644 --- a/resources/variants/creality/creality_cr10spro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg index cc38161b0f..1a950eebd6 100644 --- a/resources/variants/creality/creality_cr10spro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg index 60cefb9afb..e731c3bc9d 100644 --- a/resources/variants/creality/creality_cr10spro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg index 33f16b154d..6bd878f270 100644 --- a/resources/variants/creality/creality_cr10spro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg index 8c90a1cb5d..2fb5375fc1 100644 --- a/resources/variants/creality/creality_cr10spro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg index 8f57bfa8e6..52ee8d8e9d 100644 --- a/resources/variants/creality/creality_cr10spro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr10spro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.2.inst.cfg b/resources/variants/creality/creality_cr20_0.2.inst.cfg index e8335c4e20..6a551c0307 100644 --- a/resources/variants/creality/creality_cr20_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.3.inst.cfg b/resources/variants/creality/creality_cr20_0.3.inst.cfg index 81f8627095..69ea9a6d12 100644 --- a/resources/variants/creality/creality_cr20_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.4.inst.cfg b/resources/variants/creality/creality_cr20_0.4.inst.cfg index 6d75fb33e2..6b6d281516 100644 --- a/resources/variants/creality/creality_cr20_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.5.inst.cfg b/resources/variants/creality/creality_cr20_0.5.inst.cfg index 6e3d6331da..50fe0ee09f 100644 --- a/resources/variants/creality/creality_cr20_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.6.inst.cfg b/resources/variants/creality/creality_cr20_0.6.inst.cfg index 0b8d92acba..477a289adb 100644 --- a/resources/variants/creality/creality_cr20_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_0.8.inst.cfg b/resources/variants/creality/creality_cr20_0.8.inst.cfg index 734c9090f5..56d2373aa1 100644 --- a/resources/variants/creality/creality_cr20_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20_1.0.inst.cfg b/resources/variants/creality/creality_cr20_1.0.inst.cfg index 8ac15853b3..b9951e1375 100644 --- a/resources/variants/creality/creality_cr20_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg index 96506c3289..7eafd93779 100644 --- a/resources/variants/creality/creality_cr20pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg index d9aa9b276b..9be66bc497 100644 --- a/resources/variants/creality/creality_cr20pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg index 0aa80d1fae..a0bdf721d5 100644 --- a/resources/variants/creality/creality_cr20pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg index 2bb70c7b7a..5818cfa7b9 100644 --- a/resources/variants/creality/creality_cr20pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg index b43b8e29ff..e0acb06f67 100644 --- a/resources/variants/creality/creality_cr20pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg index d006d966de..47a69f7ccc 100644 --- a/resources/variants/creality/creality_cr20pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg index 6c8be83737..740843b288 100644 --- a/resources/variants/creality/creality_cr20pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr20pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.2.inst.cfg b/resources/variants/creality/creality_cr6se_0.2.inst.cfg index 9932ff2a43..aec9e4d83b 100644 --- a/resources/variants/creality/creality_cr6se_0.2.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.3.inst.cfg b/resources/variants/creality/creality_cr6se_0.3.inst.cfg index 2c0a808113..5ac11911f6 100644 --- a/resources/variants/creality/creality_cr6se_0.3.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.4.inst.cfg b/resources/variants/creality/creality_cr6se_0.4.inst.cfg index 0e8580d9d3..6f525c8170 100644 --- a/resources/variants/creality/creality_cr6se_0.4.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.5.inst.cfg b/resources/variants/creality/creality_cr6se_0.5.inst.cfg index dbfff554e6..414e389220 100644 --- a/resources/variants/creality/creality_cr6se_0.5.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.6.inst.cfg b/resources/variants/creality/creality_cr6se_0.6.inst.cfg index 11b763d74c..1d82fca803 100644 --- a/resources/variants/creality/creality_cr6se_0.6.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_0.8.inst.cfg b/resources/variants/creality/creality_cr6se_0.8.inst.cfg index 431baae79c..bb93dfa4d0 100644 --- a/resources/variants/creality/creality_cr6se_0.8.inst.cfg +++ b/resources/variants/creality/creality_cr6se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_cr6se_1.0.inst.cfg b/resources/variants/creality/creality_cr6se_1.0.inst.cfg index ac7d9dbcb6..a9e7172ddf 100644 --- a/resources/variants/creality/creality_cr6se_1.0.inst.cfg +++ b/resources/variants/creality/creality_cr6se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_crm4_0.2.inst.cfg b/resources/variants/creality/creality_crm4_0.2.inst.cfg new file mode 100644 index 0000000000..0ed5dc331e --- /dev/null +++ b/resources/variants/creality/creality_crm4_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/creality/creality_crm4_0.3.inst.cfg b/resources/variants/creality/creality_crm4_0.3.inst.cfg new file mode 100644 index 0000000000..0a125968ca --- /dev/null +++ b/resources/variants/creality/creality_crm4_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/creality/creality_crm4_0.4.inst.cfg b/resources/variants/creality/creality_crm4_0.4.inst.cfg new file mode 100644 index 0000000000..f6c23a2d92 --- /dev/null +++ b/resources/variants/creality/creality_crm4_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/creality/creality_crm4_0.5.inst.cfg b/resources/variants/creality/creality_crm4_0.5.inst.cfg new file mode 100644 index 0000000000..d756aca84f --- /dev/null +++ b/resources/variants/creality/creality_crm4_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/creality/creality_crm4_0.6.inst.cfg b/resources/variants/creality/creality_crm4_0.6.inst.cfg new file mode 100644 index 0000000000..cc2fc75e11 --- /dev/null +++ b/resources/variants/creality/creality_crm4_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/creality/creality_crm4_0.8.inst.cfg b/resources/variants/creality/creality_crm4_0.8.inst.cfg new file mode 100644 index 0000000000..9d6fbbcd2b --- /dev/null +++ b/resources/variants/creality/creality_crm4_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/creality/creality_crm4_1.0.inst.cfg b/resources/variants/creality/creality_crm4_1.0.inst.cfg new file mode 100644 index 0000000000..7f86d63e88 --- /dev/null +++ b/resources/variants/creality/creality_crm4_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = creality_crm4 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/creality/creality_ender2_0.2.inst.cfg b/resources/variants/creality/creality_ender2_0.2.inst.cfg index 8f30d0f6fe..9231f7fb80 100644 --- a/resources/variants/creality/creality_ender2_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.3.inst.cfg b/resources/variants/creality/creality_ender2_0.3.inst.cfg index 0784478a1b..fd2f9c43b4 100644 --- a/resources/variants/creality/creality_ender2_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.4.inst.cfg b/resources/variants/creality/creality_ender2_0.4.inst.cfg index 2ac7aba90f..637dca85b9 100644 --- a/resources/variants/creality/creality_ender2_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.5.inst.cfg b/resources/variants/creality/creality_ender2_0.5.inst.cfg index b580a5cde6..6d8d9df2f1 100644 --- a/resources/variants/creality/creality_ender2_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.6.inst.cfg b/resources/variants/creality/creality_ender2_0.6.inst.cfg index c0907e9ad7..ec9d0af567 100644 --- a/resources/variants/creality/creality_ender2_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_0.8.inst.cfg b/resources/variants/creality/creality_ender2_0.8.inst.cfg index e3c6805cce..e39abc97d6 100644 --- a/resources/variants/creality/creality_ender2_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender2_1.0.inst.cfg b/resources/variants/creality/creality_ender2_1.0.inst.cfg index 8b0eb7362c..cc702d8027 100644 --- a/resources/variants/creality/creality_ender2_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.2.inst.cfg b/resources/variants/creality/creality_ender3_0.2.inst.cfg index 454ec0377b..17be22bea8 100644 --- a/resources/variants/creality/creality_ender3_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.3.inst.cfg b/resources/variants/creality/creality_ender3_0.3.inst.cfg index e534020341..cea3dd4136 100644 --- a/resources/variants/creality/creality_ender3_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.4.inst.cfg b/resources/variants/creality/creality_ender3_0.4.inst.cfg index 1ac41b3714..07d9136b83 100644 --- a/resources/variants/creality/creality_ender3_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.5.inst.cfg b/resources/variants/creality/creality_ender3_0.5.inst.cfg index c5eb7768b0..566ea1046e 100644 --- a/resources/variants/creality/creality_ender3_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.6.inst.cfg b/resources/variants/creality/creality_ender3_0.6.inst.cfg index e5c98ee7a7..c74e9fe227 100644 --- a/resources/variants/creality/creality_ender3_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_0.8.inst.cfg b/resources/variants/creality/creality_ender3_0.8.inst.cfg index 06c3fbf5b9..ecf941e711 100644 --- a/resources/variants/creality/creality_ender3_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3_1.0.inst.cfg b/resources/variants/creality/creality_ender3_1.0.inst.cfg index 9107793f15..c455fa1403 100644 --- a/resources/variants/creality/creality_ender3_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.2.inst.cfg b/resources/variants/creality/creality_ender3max_0.2.inst.cfg index 17e74e4b97..5928de7876 100644 --- a/resources/variants/creality/creality_ender3max_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.3.inst.cfg b/resources/variants/creality/creality_ender3max_0.3.inst.cfg index 1f55310dc8..98babe258e 100644 --- a/resources/variants/creality/creality_ender3max_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.4.inst.cfg b/resources/variants/creality/creality_ender3max_0.4.inst.cfg index 55baed7323..14e88496b7 100644 --- a/resources/variants/creality/creality_ender3max_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.5.inst.cfg b/resources/variants/creality/creality_ender3max_0.5.inst.cfg index 844a1eca5c..5233f9b527 100644 --- a/resources/variants/creality/creality_ender3max_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.6.inst.cfg b/resources/variants/creality/creality_ender3max_0.6.inst.cfg index 3c6c0fb6b4..57c8cff5a3 100644 --- a/resources/variants/creality/creality_ender3max_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_0.8.inst.cfg b/resources/variants/creality/creality_ender3max_0.8.inst.cfg index ae0afbc280..91f8f84d77 100644 --- a/resources/variants/creality/creality_ender3max_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3max_1.0.inst.cfg b/resources/variants/creality/creality_ender3max_1.0.inst.cfg index 7da936ffa8..9a2ab646c3 100644 --- a/resources/variants/creality/creality_ender3max_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg index 8ecf20846a..0560fcaa82 100644 --- a/resources/variants/creality/creality_ender3pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg index 6b3576a42d..89b7777fb2 100644 --- a/resources/variants/creality/creality_ender3pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg index 299550c19b..dffe27696c 100644 --- a/resources/variants/creality/creality_ender3pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg index 99a817f8b9..7e2d123328 100644 --- a/resources/variants/creality/creality_ender3pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg index 89022bcea6..597aae957a 100644 --- a/resources/variants/creality/creality_ender3pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg index 874c63ba24..7f846dc7f8 100644 --- a/resources/variants/creality/creality_ender3pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg index 93c2ec2187..c889357449 100644 --- a/resources/variants/creality/creality_ender3pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg index 8d9e1a1e8c..bd2ae8c869 100644 --- a/resources/variants/creality/creality_ender3s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg index 5ed26fdbad..47c99c775c 100644 --- a/resources/variants/creality/creality_ender3s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg index 1658bf59e3..869f39181e 100644 --- a/resources/variants/creality/creality_ender3s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg index 2ac65e3abc..cc36045647 100644 --- a/resources/variants/creality/creality_ender3s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg index 62112135a7..01a29dce3d 100644 --- a/resources/variants/creality/creality_ender3s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg index a9b60bbefc..9071720671 100644 --- a/resources/variants/creality/creality_ender3s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg index 30820921fd..e0c728734f 100644 --- a/resources/variants/creality/creality_ender3s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg index 95c7c83ab8..e486fc7046 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg index 75095886a1..de68b3172a 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg index 041139f89c..7c76785d69 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg index ceb15fe521..3cd5cf1488 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg index dc316c8e45..ef081e6feb 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg index 800e70cb81..cbd60bf840 100644 --- a/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg index 12652aa70d..2247a6b383 100644 --- a/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg index 1c0454ec61..f3d7b75e55 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg index 91e2ebfc3d..6ff3a28434 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg index 74ef00ec76..ec77b1b557 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg index 31c82d1cf0..3ad194211f 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg index ee34266719..1d78cb5b08 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg index f65002a11a..acf9ffae60 100644 --- a/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg index 945953dfc0..c3d88feee2 100644 --- a/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3s1pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg index d198308616..d7ceae3142 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg index 061112ebad..e797363438 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg index cfd6f021d7..f3b2850e98 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg index 3d0682c270..6849e18ee9 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg index 0f8264dabe..7574783134 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg index 639f4fd4f2..4a4e0a7fdb 100644 --- a/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg index 638e75887d..3fd926af1e 100644 --- a/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v2neo_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg index 7d92d94a8c..95a39df941 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg index dc779a977f..48d1934aba 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg index 745880b4c5..6e4f9c1599 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg index e58eaeef03..a1d29b3def 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg index 6b90f99126..afc70feed0 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg index e4dfb23e5f..a0d4e89947 100644 --- a/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg index 30758942af..093e3266d1 100644 --- a/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3ke_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg index b523a38f41..dc48715ddc 100644 --- a/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg index 6cf40ce999..c796f5c213 100644 --- a/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg index fd870564ec..7fa9cd8508 100644 --- a/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg index 45ca3a0184..0675c1ed7d 100644 --- a/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg index 4b7379635e..c478192a7a 100644 --- a/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg index 0978a0e801..ee04847067 100644 --- a/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg index e2c6b803b9..3dc2d06588 100644 --- a/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender3v3se_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.2.inst.cfg b/resources/variants/creality/creality_ender4_0.2.inst.cfg index 0034158d3f..be75b6a39e 100644 --- a/resources/variants/creality/creality_ender4_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.3.inst.cfg b/resources/variants/creality/creality_ender4_0.3.inst.cfg index c54a86e293..a19117ee8a 100644 --- a/resources/variants/creality/creality_ender4_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.4.inst.cfg b/resources/variants/creality/creality_ender4_0.4.inst.cfg index 0152f1c957..154cad20b5 100644 --- a/resources/variants/creality/creality_ender4_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.5.inst.cfg b/resources/variants/creality/creality_ender4_0.5.inst.cfg index 37c216cbfa..8929de25f6 100644 --- a/resources/variants/creality/creality_ender4_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.6.inst.cfg b/resources/variants/creality/creality_ender4_0.6.inst.cfg index aa48e63e09..30089b4947 100644 --- a/resources/variants/creality/creality_ender4_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_0.8.inst.cfg b/resources/variants/creality/creality_ender4_0.8.inst.cfg index 1a980e4ada..b41637c551 100644 --- a/resources/variants/creality/creality_ender4_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender4_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender4_1.0.inst.cfg b/resources/variants/creality/creality_ender4_1.0.inst.cfg index 35ed12644d..27da37961b 100644 --- a/resources/variants/creality/creality_ender4_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender4_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.2.inst.cfg b/resources/variants/creality/creality_ender5_0.2.inst.cfg index a371ccb35b..f399d9ccb8 100644 --- a/resources/variants/creality/creality_ender5_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.3.inst.cfg b/resources/variants/creality/creality_ender5_0.3.inst.cfg index 2075784b2c..d895fb7113 100644 --- a/resources/variants/creality/creality_ender5_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.4.inst.cfg b/resources/variants/creality/creality_ender5_0.4.inst.cfg index 96733fd527..0e172e6372 100644 --- a/resources/variants/creality/creality_ender5_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.5.inst.cfg b/resources/variants/creality/creality_ender5_0.5.inst.cfg index ee184b97a4..8995ef143d 100644 --- a/resources/variants/creality/creality_ender5_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.6.inst.cfg b/resources/variants/creality/creality_ender5_0.6.inst.cfg index e3cf08f93e..3456b902a6 100644 --- a/resources/variants/creality/creality_ender5_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_0.8.inst.cfg b/resources/variants/creality/creality_ender5_0.8.inst.cfg index 990162becc..6f52c86ad5 100644 --- a/resources/variants/creality/creality_ender5_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5_1.0.inst.cfg b/resources/variants/creality/creality_ender5_1.0.inst.cfg index 8bb5a67d24..5f2110b5b3 100644 --- a/resources/variants/creality/creality_ender5_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg index a0c1b19d19..66318178ce 100644 --- a/resources/variants/creality/creality_ender5plus_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg index 30c7d397ce..3c7c4d0159 100644 --- a/resources/variants/creality/creality_ender5plus_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg index 40ac79b50e..ee8cf6160d 100644 --- a/resources/variants/creality/creality_ender5plus_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg index a0cb2b6572..203dd6de8a 100644 --- a/resources/variants/creality/creality_ender5plus_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg index 89cfdab22e..eb600f49ea 100644 --- a/resources/variants/creality/creality_ender5plus_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg index 3a343352f1..33bce4dd60 100644 --- a/resources/variants/creality/creality_ender5plus_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg index 8af92e62cd..7bd8f0d608 100644 --- a/resources/variants/creality/creality_ender5plus_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg index abddcdccfb..a9aefbc9fb 100644 --- a/resources/variants/creality/creality_ender5s1_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg index b7e32ab75b..da2fc5b256 100644 --- a/resources/variants/creality/creality_ender5s1_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg index 488dbcd893..2ef30f498f 100644 --- a/resources/variants/creality/creality_ender5s1_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg index 61a51c7cd1..30a52a13b0 100644 --- a/resources/variants/creality/creality_ender5s1_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg index 60a69f9b4c..190807ad90 100644 --- a/resources/variants/creality/creality_ender5s1_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg index 04d29eedc6..b577f65fea 100644 --- a/resources/variants/creality/creality_ender5s1_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg index f5d8bb3adb..997c5a9c88 100644 --- a/resources/variants/creality/creality_ender5s1_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender5s1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.2.inst.cfg b/resources/variants/creality/creality_ender6_0.2.inst.cfg index 5057234c7f..fb4c45eaaa 100644 --- a/resources/variants/creality/creality_ender6_0.2.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.3.inst.cfg b/resources/variants/creality/creality_ender6_0.3.inst.cfg index ffd82833b0..31c510e6ef 100644 --- a/resources/variants/creality/creality_ender6_0.3.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.4.inst.cfg b/resources/variants/creality/creality_ender6_0.4.inst.cfg index bf288d354d..72dd9bed4a 100644 --- a/resources/variants/creality/creality_ender6_0.4.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.5.inst.cfg b/resources/variants/creality/creality_ender6_0.5.inst.cfg index 01cb313eb8..0194ad8e33 100644 --- a/resources/variants/creality/creality_ender6_0.5.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.6.inst.cfg b/resources/variants/creality/creality_ender6_0.6.inst.cfg index 12044c5a15..17d29de397 100644 --- a/resources/variants/creality/creality_ender6_0.6.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_0.8.inst.cfg b/resources/variants/creality/creality_ender6_0.8.inst.cfg index 3f3bf9f0d4..98ba2eb4e5 100644 --- a/resources/variants/creality/creality_ender6_0.8.inst.cfg +++ b/resources/variants/creality/creality_ender6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_ender6_1.0.inst.cfg b/resources/variants/creality/creality_ender6_1.0.inst.cfg index 5221d2db3c..2004cea142 100644 --- a/resources/variants/creality/creality_ender6_1.0.inst.cfg +++ b/resources/variants/creality/creality_ender6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.4.inst.cfg b/resources/variants/creality/creality_k1_max_0.4.inst.cfg index 40b05dae6d..ee2db8554e 100755 --- a/resources/variants/creality/creality_k1_max_0.4.inst.cfg +++ b/resources/variants/creality/creality_k1_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.6.inst.cfg b/resources/variants/creality/creality_k1_max_0.6.inst.cfg index b91dde92c0..df71c58950 100755 --- a/resources/variants/creality/creality_k1_max_0.6.inst.cfg +++ b/resources/variants/creality/creality_k1_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_k1_max_0.8.inst.cfg b/resources/variants/creality/creality_k1_max_0.8.inst.cfg index de60d921f9..1977dba926 100755 --- a/resources/variants/creality/creality_k1_max_0.8.inst.cfg +++ b/resources/variants/creality/creality_k1_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg index b123de554e..720eac3644 100644 --- a/resources/variants/creality/creality_sermoond1_0.2.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg index 89358a5324..63b4ea5099 100644 --- a/resources/variants/creality/creality_sermoond1_0.3.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg index c42bd666b8..c2b7774836 100644 --- a/resources/variants/creality/creality_sermoond1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg index abbf292092..008086c912 100644 --- a/resources/variants/creality/creality_sermoond1_0.5.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg index 9e11dbbd85..de0350577c 100644 --- a/resources/variants/creality/creality_sermoond1_0.6.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg index 3d8ab3bde2..fbb0246191 100644 --- a/resources/variants/creality/creality_sermoond1_0.8.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg index d2fc1cc66a..0c8f9721d0 100644 --- a/resources/variants/creality/creality_sermoond1_1.0.inst.cfg +++ b/resources/variants/creality/creality_sermoond1_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg index d83b26b9b5..62e163cda8 100644 --- a/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg +++ b/resources/variants/creality/creality_sermoonv1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg index fb2873bfca..4fa3ae81d8 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg index 33b2f0c757..1d47c6e44d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg index b672317c15..45163424be 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg index 9c5397b535..203b84c870 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg index 4d3bb38df9..bed25097fd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg index 71cd43dc29..78761a6fda 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg index 3862119ecd..f2ed0e4608 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg index a3010896eb..c6df624b17 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg index 572e3a0a05..ef4808900f 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg index b91da5cce5..9895e98936 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg index 1790d9ef27..5deb089592 100644 --- a/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_bowden_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg index 566688fedc..303caee7fd 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg index 17f5f768c5..b724fbee70 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg index c78ce86030..9ba4ef47b5 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg index fe5aab9f9c..4d171bf838 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg index 2684177443..19ad53c48a 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg index 91c59f0e6d..7f393a9293 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg index 431d7eb7e1..c149e6be3e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg index eae1a408f4..9737fca8c0 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg index 754bb93c02..cb87b80374 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg index 8ea81a3972..7eadceda28 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg index 84eca0f253..51dd0753ad 100644 --- a/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_directdrive_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg index 3ac5e34205..7dc841df37 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg index f9ae98aa0f..518c6bd21e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg index e1749cb429..9b15e4e422 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_brass_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg index cb0d9a6d61..04b194c164 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg index f5995c20dc..2c587812d6 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg index f907b89e87..6ab56fe336 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg index badcdc87f7..e16233822e 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg index 65c35eea1e..627d6df36d 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg index 021c0f141c..5721b477d1 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_generic_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg index 25f25029a0..76f253f6b7 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg index b9cbe805d4..523a326e11 100644 --- a/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_pro_430_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg index 431f06f81f..3ea8b3e0f7 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg index 46cad40b28..0b8fc95b50 100644 --- a/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg index 567cf160cc..0310485b98 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg index a509a37310..bebf279561 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg index 42c01ad004..183014aa1c 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg index 6498a7a26b..5ed4b71777 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_brass_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg index 82e80ddd92..61a1a2952a 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg index 8df2ac5bf5..b22221fd36 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_dual_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg index 33d9585241..8c56fdf5b0 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg index 7ad9767f09..3c5ad815d9 100644 --- a/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg +++ b/resources/variants/dagoma/dagoma_sigma_pro_steel_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg index dd991034be..ea6bec2019 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe025.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg index 9eeb0d5798..ef737800fe 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe040.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg index aceb33a763..de6e1da5c0 100644 --- a/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_fbe060.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = Deltacomb 3D hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg index 2eba3d6b5f..703069be6b 100755 --- a/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg index a617f78b93..7d946933b6 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg index a5c92a83dd..05f4b6fbc0 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg index 2dedb7fa94..17516ac98e 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg index 0972964ca5..42c8f520bd 100755 --- a/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg index 20cb7fb960..fdbbbca364 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg index e24cd0ea6d..54787d807c 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg index 3ae6090e66..d4b11fcb68 100755 --- a/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc20flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg index c40597cb87..16f8c7c71e 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg index 6742aedfc9..e43d25f8bf 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg index 0e03d17023..cb5ec018a6 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg index 60a4286938..2bd04d1699 100755 --- a/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg index dc2925f77c..ea3cb1637f 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg index 15e4915e2a..286f0f99f0 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg index 6d49118119..5590eca263 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg index 1cdcb390e9..9b20312d0d 100755 --- a/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg index da67df45fd..8d0f37245d 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg index cf4e85908d..8b1a6f9104 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg index 150e4a17b5..fa8167dd88 100755 --- a/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc21flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg index 4854a810f8..048035d563 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg index d8195ef346..83afe6b8cd 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg index a033fefc15..52e85e18d2 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg index c37b96738a..0ab42f325a 100755 --- a/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30_vfbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg index 3e95332396..476a8d6ec9 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg index 0daf1de438..d1f461dfe4 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg index 070d8421e8..f558af37b4 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_dbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg index 7131e12280..84f5aa4177 100755 --- a/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30dual_vdbe080.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg index a441f1a043..3182a9b748 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe025.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg index dd9fd9d17d..c14928afe5 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe040.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg index 988ec95557..84d094506c 100755 --- a/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg +++ b/resources/variants/deltacomb/deltacomb_dc30flux_fbe060.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/diy/diy220_0.2.inst.cfg b/resources/variants/diy/diy220_0.2.inst.cfg index b7233a9d25..7eb889efdf 100644 --- a/resources/variants/diy/diy220_0.2.inst.cfg +++ b/resources/variants/diy/diy220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/diy/diy220_0.3.inst.cfg b/resources/variants/diy/diy220_0.3.inst.cfg index 22dd3a3032..601cf487be 100644 --- a/resources/variants/diy/diy220_0.3.inst.cfg +++ b/resources/variants/diy/diy220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/diy/diy220_0.4.inst.cfg b/resources/variants/diy/diy220_0.4.inst.cfg index bc4ac126c1..7ef81c3e21 100644 --- a/resources/variants/diy/diy220_0.4.inst.cfg +++ b/resources/variants/diy/diy220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/diy/diy220_0.5.inst.cfg b/resources/variants/diy/diy220_0.5.inst.cfg index 13f0d6c617..a5227ef4f1 100644 --- a/resources/variants/diy/diy220_0.5.inst.cfg +++ b/resources/variants/diy/diy220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/diy/diy220_0.6.inst.cfg b/resources/variants/diy/diy220_0.6.inst.cfg index f3b1d65bde..cf183e0ff1 100644 --- a/resources/variants/diy/diy220_0.6.inst.cfg +++ b/resources/variants/diy/diy220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/diy/diy220_0.8.inst.cfg b/resources/variants/diy/diy220_0.8.inst.cfg index ca159b00b9..91b38adf1a 100644 --- a/resources/variants/diy/diy220_0.8.inst.cfg +++ b/resources/variants/diy/diy220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg index d9dc67d195..b6c0dc2977 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg index 348f1c0f8b..daf5f2297d 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg index d56e3c80e3..8bb29d6331 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg index 817bccacfe..b368a9a73d 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg index 30774fcf86..ed16b88c06 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg index 06841a8187..5cee558614 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg index 037414e04c..8031a09ecc 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg index 8b2e14dde6..0edaaeccdf 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg index 0bd7fca9eb..a821693493 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg index 7b6a99d012..bb5abda5b8 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg index 79a110a357..39aebd30d7 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg index b30a6d2b22..b49d64f793 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg index 91cfe55050..5a3f4f6654 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg index a01d46ea83..89a7102c6e 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg index f7b96d3913..e80a72cff0 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg index 4d533d6923..71edb1d3be 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg index 7732cae34c..882526e58d 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg index 65343c2314..e45f4ad34b 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg index eef2b9b5cc..d9f053a93f 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg index e2924355a5..c4d2042509 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg index e95b345f1c..0fc9a26b2a 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg index 3a088ec895..1397c097a3 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg index 423c53a7af..d3cf13bcd5 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg index 682d0f32b4..3c7e1be2ad 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg index 00ee1e22de..591e76422a 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg index 50b48831f8..2721d75259 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg index d6a356a046..587bfc0729 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg index b6cea8053e..7636b6c37a 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg index 3b382dee7d..39c2be08a3 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg index 327b8f2233..450f053a88 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg index b1db27ccd8..b53a3180b8 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg index f9ebd89d4a..9beb14fb11 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg index 1dc02511a7..44f6646af9 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg index 3857baf3a3..41f94368a9 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg index 79a110a357..39aebd30d7 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg index 33c94db3e8..bb9597e841 100644 --- a/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg +++ b/resources/variants/draftshift/voron2_stealthchanger_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.25.inst.cfg b/resources/variants/dxu/dxu_0.25.inst.cfg index a488e4d179..1fb7474427 100644 --- a/resources/variants/dxu/dxu_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.4.inst.cfg b/resources/variants/dxu/dxu_0.4.inst.cfg index 7302b73604..9149eb6130 100644 --- a/resources/variants/dxu/dxu_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.6.inst.cfg b/resources/variants/dxu/dxu_0.6.inst.cfg index b3850a0600..1e1c3b6e14 100644 --- a/resources/variants/dxu/dxu_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_0.8.inst.cfg b/resources/variants/dxu/dxu_0.8.inst.cfg index bbdc10ab07..de11328086 100644 --- a/resources/variants/dxu/dxu_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_dual_0.25.inst.cfg index 6983e959b7..ca6f905b0f 100644 --- a/resources/variants/dxu/dxu_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_dual_0.4.inst.cfg index 0dd99cc77d..2cebc9e9d5 100644 --- a/resources/variants/dxu/dxu_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_dual_0.6.inst.cfg index 5dcac9741e..77bb5436e8 100644 --- a/resources/variants/dxu/dxu_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_dual_0.8.inst.cfg index cedb16e925..9c2652d7aa 100644 --- a/resources/variants/dxu/dxu_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_0.25.inst.cfg index 8f8d06cb5f..ae1f249e3d 100644 --- a/resources/variants/dxu/dxu_umo_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_0.4.inst.cfg index e840ab33f8..6f59711fa1 100644 --- a/resources/variants/dxu/dxu_umo_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_0.6.inst.cfg index 87cedca49c..a0e441b6c3 100644 --- a/resources/variants/dxu/dxu_umo_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_0.8.inst.cfg index 07945af623..3cd620f8bd 100644 --- a/resources/variants/dxu/dxu_umo_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg index 86430accc9..3687aa30a1 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg index 255ffc9dd1..1e88321998 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg index 5a16beb3c6..4141041440 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg index 57e7bd70e0..18aa066ad5 100644 --- a/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg +++ b/resources/variants/dxu/dxu_umo_dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg index 54af683b9c..61d3bc8fc4 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg index 3217a1a6ce..872d708a86 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg index bc82566e9c..1d7e7e85e9 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg index 2a33d85bdd..6b34d54337 100644 --- a/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_1/elegoo_neptune_1_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg index 17298221b2..c8b37bacea 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg index fc59701f7a..f37592043d 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg index 0da41f7840..bba594fa3f 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg index 7beae5d3e5..f1a2713122 100644 --- a/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2/elegoo_neptune_2_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg index 9a5939570f..45c3444ba1 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg index 12ff110d2f..65e99518e2 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg index b4767809f0..3d001ff2be 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg index 1982bc0cf5..7e3aaa7fe0 100644 --- a/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2D/elegoo_neptune_2D_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg index 037e20a244..e668b8020c 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg index c10c29be43..fd3d097198 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg index cdec82e36c..d3f39a0f01 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg index 71b05584c7..4d905ec725 100644 --- a/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_2s/elegoo_neptune_2s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg index 79905f009e..1f72dcf3aa 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg index 23fd5dbe3b..f874b661e4 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg index 192b22cd3d..25c0db03d0 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg index 385b107881..2155f90e91 100644 --- a/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3/elegoo_neptune_3_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg index e3dece6399..df60e95c33 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg index c47b9bd410..629709f25c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg index a1eddd732a..e2a3ffbc60 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg index 7ee345c400..b3fb8f6de3 100644 --- a/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3max/elegoo_neptune_3max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg index 7f1bd2395c..3dc9a7571d 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg index 6825ef8695..ab9aedb2c0 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg index 15bb5938ed..ee0991c74b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg index 4c75c5ab10..d5babaeb48 100644 --- a/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3plus/elegoo_neptune_3plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg index 83c207f638..2b7fe8db6b 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg index c7177f03c4..0a9971aa4c 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg index a953118890..eb0ba5ae83 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg index 508fba410c..79891239ae 100644 --- a/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_3pro/elegoo_neptune_3pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg index 7f982712ef..53e3125476 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg index dac5cd8317..d2fd4da1e0 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg index 4c69919d3d..0e02593275 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg index bcb9cc218d..ee68b52fcc 100644 --- a/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4/elegoo_neptune_4_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg index 8b8fdb67c1..f052b79703 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg index 7bb3f29a7c..2e76758935 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg index 012d6b6ce7..0c66965c4b 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg index 9baa55881e..4aa72f62fa 100644 --- a/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4max/elegoo_neptune_4max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg index 474b80a73f..6d1c9ecc9f 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg index c67b0aeae6..8ea6a8464c 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg index bb9711b198..a522cd200f 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg index 2ffbd30b17..b9c18368f0 100644 --- a/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4plus/elegoo_neptune_4plus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg index ff0e79e8f9..a65aeb9997 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg index c74a427847..60bb4fc484 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg index 7737888958..481cb3cb2c 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg index 37f1b63552..1bcf8e65c2 100644 --- a/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_4pro/elegoo_neptune_4pro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg index 41bfaa08a0..c8b9d32e2e 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg index 91f42e476e..e25bf6ad43 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg index aa13f03c45..6d6737ef83 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg index 5808e0a677..e66f9d0c76 100644 --- a/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg +++ b/resources/variants/elegoo/elegoo_neptune_x/elegoo_neptune_x_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg index 60ef115b5f..ec3f7f14a9 100644 --- a/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_hyb35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg index 56f5164679..4de4b541e2 100644 --- a/resources/variants/fabtotum/fabtotum_lite04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg index cc9f291bde..e3bffa55a9 100644 --- a/resources/variants/fabtotum/fabtotum_lite06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_lite06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg index 63e13314a6..0e389b980c 100644 --- a/resources/variants/fabtotum/fabtotum_pro02.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro02.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg index ce5beb4e34..4530580651 100644 --- a/resources/variants/fabtotum/fabtotum_pro04.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg index faad25df65..11696760cf 100644 --- a/resources/variants/fabtotum/fabtotum_pro06.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg index 01661cf9a9..75bb0dc907 100644 --- a/resources/variants/fabtotum/fabtotum_pro08.inst.cfg +++ b/resources/variants/fabtotum/fabtotum_pro08.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = FABtotum hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg index 2806a0e56c..8651b54522 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg index c0ed4d0b82..9bde748a8b 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg index c49f4b8f7f..a98255bb82 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg index 7eda0784d3..3ff0e16897 100644 --- a/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_ce_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg index c32dd5b7ee..94ea617fd4 100644 --- a/resources/variants/farm2/farm2_printhead_0.2.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg index c85557732e..56171f82c3 100644 --- a/resources/variants/farm2/farm2_printhead_0.3.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg index d1d5139ef1..3b1803b5cf 100644 --- a/resources/variants/farm2/farm2_printhead_0.4.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg index f3800018ec..e06d8947cc 100644 --- a/resources/variants/farm2/farm2_printhead_0.5.inst.cfg +++ b/resources/variants/farm2/farm2_printhead_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.25.inst.cfg b/resources/variants/felix/felixpro2_0.25.inst.cfg index 0517d24161..88744cc17b 100644 --- a/resources/variants/felix/felixpro2_0.25.inst.cfg +++ b/resources/variants/felix/felixpro2_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.35.inst.cfg b/resources/variants/felix/felixpro2_0.35.inst.cfg index e9265c414e..3463b75780 100644 --- a/resources/variants/felix/felixpro2_0.35.inst.cfg +++ b/resources/variants/felix/felixpro2_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.50.inst.cfg b/resources/variants/felix/felixpro2_0.50.inst.cfg index 8a69b37e2d..70e5898d1e 100644 --- a/resources/variants/felix/felixpro2_0.50.inst.cfg +++ b/resources/variants/felix/felixpro2_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixpro2_0.70.inst.cfg b/resources/variants/felix/felixpro2_0.70.inst.cfg index e0b6765315..a1905bd34c 100644 --- a/resources/variants/felix/felixpro2_0.70.inst.cfg +++ b/resources/variants/felix/felixpro2_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = pnks hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.25.inst.cfg b/resources/variants/felix/felixtec4_0.25.inst.cfg index 9e3586ebe9..41115c1ad5 100644 --- a/resources/variants/felix/felixtec4_0.25.inst.cfg +++ b/resources/variants/felix/felixtec4_0.25.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.35.inst.cfg b/resources/variants/felix/felixtec4_0.35.inst.cfg index 84090ef30c..0e1741af8b 100644 --- a/resources/variants/felix/felixtec4_0.35.inst.cfg +++ b/resources/variants/felix/felixtec4_0.35.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.50.inst.cfg b/resources/variants/felix/felixtec4_0.50.inst.cfg index 09086168e0..caf1a01355 100644 --- a/resources/variants/felix/felixtec4_0.50.inst.cfg +++ b/resources/variants/felix/felixtec4_0.50.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/felix/felixtec4_0.70.inst.cfg b/resources/variants/felix/felixtec4_0.70.inst.cfg index c9f492ecfe..bfe51b3d6a 100644 --- a/resources/variants/felix/felixtec4_0.70.inst.cfg +++ b/resources/variants/felix/felixtec4_0.70.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = kerog777 hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg index 6eb9b886f0..9904bf667d 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg index 5c7a08ba03..720c8d169b 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg index c05e475880..6e273c9bfe 100644 --- a/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg index c8d7535ede..903af16198 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg index f3b9aa3bf2..e290578109 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg index 974b554bf4..a54d804294 100644 --- a/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer3c_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg index 4c41f5e767..a06a40e9a6 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg index afb2a463a9..b0544714b4 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg index efdc18da4c..06851976e9 100644 --- a/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg index 208cb50e2c..fb4b6783eb 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg index 7a74b5a839..4f3f79fe9f 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg index 674858edad..504a4b8c34 100644 --- a/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg +++ b/resources/variants/flashforge/flashforge_adventurer4lite_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg index 142c5293dc..c3ad130209 100644 --- a/resources/variants/flashforge/flashforge_base_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg index d533d14756..c5c424c3ec 100644 --- a/resources/variants/flashforge/flashforge_base_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg index f6c0995f8d..ce0c89c9da 100644 --- a/resources/variants/flashforge/flashforge_base_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg index 4562c77885..e392837b23 100644 --- a/resources/variants/flashforge/flashforge_base_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg index 80fc272e50..9be8696588 100644 --- a/resources/variants/flashforge/flashforge_base_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg index a165b04fb7..cb2b49be23 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg index 44d4f6da07..793ede2604 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg index 5da3632749..d4f0effeda 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg index 0c49c7a554..24eca3d50c 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg index 8812d00845..5711499823 100644 --- a/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg +++ b/resources/variants/flashforge/flashforge_dreamer_nx_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg index ec850a3512..1fa9f17d73 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg index e360bc54ac..192fb97545 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg index 559efcc3e3..99930676bf 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg index b24ba7b7f7..821dcf09eb 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg index dcf4ee1cbb..e582c6360b 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg index a0eec97673..18b9b46323 100644 --- a/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg index a2bfce3a5e..359d1844be 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg index eeaaa3c7ec..e50f9bd4c6 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg index 350768d489..f627106c54 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg index f999358203..18a1118aab 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg index 68da0ebe58..540713e616 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg index f436165553..87a7ec6ace 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_4s_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg index 18e877f049..54006180a9 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg index a06bf2b2e7..856e877af5 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg index dcbc1c5947..e9580ec3fc 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg index 7b8d3a0950..bdc78b6382 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg index ed4178c2e6..681014d73a 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg index 9b6752cddf..950e065c51 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_5_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg index 558ba90c08..0b61d5ecd8 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg index 533e491092..18ff8f1af5 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg index ee4bfe444e..16218f2788 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg index 0be6244d22..d76e550f59 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg index 2b6fdc91b5..9568a6c95f 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg index 2ce93740e6..9d4f975d92 100644 --- a/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg +++ b/resources/variants/flyingbear/flyingbear_ghost_6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.4.inst.cfg b/resources/variants/fusion3/fusion3_0.4.inst.cfg index 032d1df8d6..1c9b707d2e 100644 --- a/resources/variants/fusion3/fusion3_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.6.inst.cfg b/resources/variants/fusion3/fusion3_0.6.inst.cfg index d71f9bf60a..7e0cd0d77a 100644 --- a/resources/variants/fusion3/fusion3_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_0.8.inst.cfg b/resources/variants/fusion3/fusion3_0.8.inst.cfg index 82d13ac509..a42beefec1 100644 --- a/resources/variants/fusion3/fusion3_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg index 032d1df8d6..1c9b707d2e 100644 --- a/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg index d71f9bf60a..7e0cd0d77a 100644 --- a/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg index 82d13ac509..a42beefec1 100644 --- a/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg +++ b/resources/variants/fusion3/fusion3_f410_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg index 073bfde093..3e1aabd77c 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg index 35738c38b4..4ad1348b0a 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg index 771d388981..f85eda6218 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg index 3def0e3b77..f0ddbf34e9 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg index c3339144f0..843fe069a5 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg index d9d55c53ba..2a319ba5ef 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg index 67928921d4..618328483f 100644 --- a/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A10Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg index b1214cc24b..9c70fcc6c4 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg index 55648cf4be..f2174d2f2d 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg index 8a7aeae477..1653b58a86 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg index 7edabf6327..f665497ebf 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg index ead8c5b891..bf73069ebf 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg index cdfa9fe671..5df5415bee 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg index faee4e113b..cc96e2097b 100644 --- a/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A20_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg index 88156da5e3..be12fda04c 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg index 57da0f5263..d7630947ce 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg index 93b6d43e9d..6233d26052 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg index 51e95b839c..7e68e43eed 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg index e46f80f685..f53ff0a3e0 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg index bf1850752f..f06c241479 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg index ae25d00c77..6082664dfc 100644 --- a/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_A30Pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg index 7ce2a570e2..e9e6c56443 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg index 5029b53c1d..3a631d9218 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg index 6940fc607c..a9f51e4d21 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg index 0086d1c603..87f529922e 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg index 5b27a712db..10879bd560 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg index e4dc87a493..eb4789d60b 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg index 76cb672eda..b237b20295 100644 --- a/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_E180_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg index 0be00235ea..a4417fdafc 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg index 9cec948b0a..ca7223c530 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg index f35d51b4a1..7b64c392cf 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg index 563f8b902b..4edbeb6510 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg index d1902b60c7..24c99fb2c5 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg index 50c7f20457..560e28db21 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg index 207f845af0..a75a0784ff 100644 --- a/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_GiantArmD200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg index 205ef057b4..0b00cfe25a 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg index 640fd67b3f..8b6349f7c2 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg index 7737cb527b..d45fb08ea9 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg index 8c9d8ec96f..f145a85454 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg index c38d74d549..33b0b6b425 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg index 0b94255036..d380d72c95 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg index 70e3f7a1e0..453f6cc70c 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProB_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg index 91a561d459..b120dd8906 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg index a69f11ecf4..315f8c34cb 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg index 4b3f2f9a2d..b1af158ce3 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg index b9ea6e9f9f..5bcfc94747 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg index 87ea7a7951..074df35235 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg index 78d066ae44..fc27e4f5e4 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg index 82d05d6f69..bab6a42b2e 100644 --- a/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_I3ProW_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_M1S_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_0.2.inst.cfg new file mode 100644 index 0000000000..2ed913b2a4 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_M1S_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_0.3.inst.cfg new file mode 100644 index 0000000000..032e25592d --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_M1S_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_0.4.inst.cfg new file mode 100644 index 0000000000..12306b7acc --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_M1S_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_0.5.inst.cfg new file mode 100644 index 0000000000..59db9afec4 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_M1S_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_0.6.inst.cfg new file mode 100644 index 0000000000..ee92dc8c93 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_M1S_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_0.8.inst.cfg new file mode 100644 index 0000000000..0029d6101c --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_M1S_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1S_1.0.inst.cfg new file mode 100644 index 0000000000..225b0b3c06 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1S_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1S +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_0.2.inst.cfg new file mode 100644 index 0000000000..77bf14e06e --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_0.2.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 0.2mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.2 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_0.3.inst.cfg new file mode 100644 index 0000000000..f9ecf2eec2 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_0.3.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 0.3mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.3 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_0.4.inst.cfg new file mode 100644 index 0000000000..e3c124c614 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_0.4.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 0.4mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.4 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_0.5.inst.cfg new file mode 100644 index 0000000000..5adccce2df --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_0.5.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 0.5mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.5 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_0.6.inst.cfg new file mode 100644 index 0000000000..f61f2febc0 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_0.6.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 0.6mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.6 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_0.8.inst.cfg new file mode 100644 index 0000000000..0677557124 --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_0.8.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 0.8mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 0.8 + diff --git a/resources/variants/geeetech_variants/geeetech_M1_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_M1_1.0.inst.cfg new file mode 100644 index 0000000000..5df54b48df --- /dev/null +++ b/resources/variants/geeetech_variants/geeetech_M1_1.0.inst.cfg @@ -0,0 +1,13 @@ +[general] +definition = geeetech_M1 +name = 1.0mm Nozzle +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_size = 1.0 + diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg index 2d08c3a349..4a2896769d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg index 9c6dfcc9a9..8f9f37a9a8 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg index 923ec6db03..877aafa4f2 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg index 440c72ca1e..74917c109d 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg index b853c0ec3a..4438b30bc6 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg index 66d1be9510..854499d10b 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg index 70dd52e71f..9a35437ea4 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg index 3d086a7129..e9fe3b4662 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg index e7d5a500c8..0ed33a5d41 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg index 7c3e19e18e..9c7a1b7625 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg index a41b890f1c..e3a9df6aca 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg index 9d0968940f..f224d0f557 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg index 2918812f14..e5b931fad3 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg index a7a5cbc516..c520aad0b9 100644 --- a/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeCreator_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg index 464246ea60..99cd7a0853 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg index 738fc3458d..93da36237f 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg index 9c0507ee7f..5bcfe4f41c 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg index c46105ee96..059dd31ee6 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg index 47197c50c4..9d6052c7bf 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg index 79994015e0..a53752868e 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg index 64473d57c6..94db3a2525 100644 --- a/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MeDucer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg index 94353d4645..600c3a2a20 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg index 7276bfe5c8..91e1fe3998 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg index 6ef937964f..b39231942d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg index bbd1a135bf..093e02ac21 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg index 13f0c386f6..3a63760d68 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg index 7a9f1cd96e..2e3cbb7902 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg index 16b62b79ec..4195aa1b71 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarMax_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg index ac5014f44e..d38fd0ad90 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg index 06db268644..fb7bab765d 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg index 66d27fbaeb..87c39b0a09 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg index 05665e2f1c..5d45ee593f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg index e19a3b7ac7..b35e0fdef7 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg index 7edbb4db5f..ebd6f30dc8 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg index d366f986c0..19de78131c 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarPro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg index 7cbba5a681..711b8b7eba 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg index 834c7b9772..16995f2de7 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg index 608d17b7a2..5d9d7cca91 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg index 192ccda494..9cbbd0007b 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg index ff70e1b2c5..a1674af246 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg index 9be2fda82d..b23454671f 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg index dd6c2e0344..744baf8012 100644 --- a/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_MizarS_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg index 48dac05f84..020f847561 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg index 59fac38bda..106e9c671f 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg index e8477d9dbd..e61d89b47c 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg index fc26078784..fa550e9302 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg index 974667f462..e9e249479e 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg index 2d9e169eb5..a226063384 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg index 3be895b6d7..d13c467b1e 100644 --- a/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Mizar_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg index 0ba2b440cd..40014cf195 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg index 8e3980c13b..57a9c53412 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg index d64df8faf4..172e72ef4d 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg index 6b41030cdf..4afffac3b3 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg index 220550d38b..fb78157648 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg index 46df1945e3..0be232840a 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg index 84f86b7825..9329597e25 100644 --- a/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg +++ b/resources/variants/geeetech_variants/geeetech_Thunder_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg index feee98341f..1e98f8cbb0 100644 --- a/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg index ea6031a55f..47492cd1a5 100644 --- a/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg index dc2013400a..42b4e82c42 100644 --- a/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg index 7bb73d376b..e13ce762b3 100644 --- a/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg index 20a68280f5..a126df2c9f 100644 --- a/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg index 5554348466..d97dcbee43 100644 --- a/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg index e14b37d410..ea26f583a4 100644 --- a/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg index da6f85cd78..b241788f9b 100644 --- a/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_12_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg index b83cc5e0cb..3b101baaf7 100644 --- a/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_025_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg index 2c5b950fa7..501b9f91ff 100644 --- a/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_04_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg index f8e5949f32..a73db1801a 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg index ae2c4c2e2c..770d869b93 100644 --- a/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_05_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg index 6dae917b2f..1bd80f4fed 100644 --- a/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_06_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg index 108db8a2c1..bdef61f441 100644 --- a/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_08_e3d.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg index 23e1ba2047..0729a0c5c0 100644 --- a/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg +++ b/resources/variants/gmax/gmax15plus_dual_10_jhead.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = gcreate hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg index edd56cb8b0..5e51ca4d3a 100644 --- a/resources/variants/goofoo/goofoo_base_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg index 7313a769ea..21bbdd61d6 100644 --- a/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg +++ b/resources/variants/goofoo/goofoo_cube_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg index 7ada6238e5..ac770230c1 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg index 5e317ddbaa..0b3c4ffdf3 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg index 2ea4951361..69db17c78d 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg index 9d4fae1ab8..ce774ac06a 100644 --- a/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg index b4b70b2804..7dd5860e29 100644 --- a/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_e-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg index d78fbb8089..f6bdf46017 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg index 45e088df35..13d76a30a2 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg index 070fcb7359..7bfeb55ebb 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg index 93681c06e0..8c53182595 100644 --- a/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg index 0fcb2d256f..5b774e267e 100644 --- a/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_gemini_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg index 623eb82821..61ba0f97cd 100644 --- a/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg index 4fdd588922..036515583a 100644 --- a/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg index 53a36b3d1d..a3dc660323 100644 --- a/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg index 979eb3ee47..045e9d0f2c 100644 --- a/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg index 8cd6591c7d..c52037be94 100644 --- a/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_giant_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg index 85cb28cf95..c65a5f1643 100644 --- a/resources/variants/goofoo/goofoo_max_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg index 82388a823b..e565ac1019 100644 --- a/resources/variants/goofoo/goofoo_max_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg index 6f40759e13..c301b47068 100644 --- a/resources/variants/goofoo/goofoo_max_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg index c521a9e8ba..5e41526b4e 100644 --- a/resources/variants/goofoo/goofoo_max_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg index 92ef73f8fd..2603d0c367 100644 --- a/resources/variants/goofoo/goofoo_max_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg index 4d75934903..f7b3ec456c 100644 --- a/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg index 432f4e4eb1..bce0fd65e8 100644 --- a/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg index 842c973865..51a67e5760 100644 --- a/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg index 5956dbc848..832de2172e 100644 --- a/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg index 22210336fa..182462d933 100644 --- a/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_mido_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg index db56fd8a68..7ce0d5a550 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg index eab49f6ff2..c2274e6b36 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg index c443ac435f..93856c270c 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg index 0918d2b0ea..fe251b6b5b 100644 --- a/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg index 8657cd34a4..738e9e61ba 100644 --- a/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_miniplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg index b062904009..8e9fe459dd 100644 --- a/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg index e2a711bc23..8ade9cc574 100644 --- a/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg index ca8d77c73e..739f970e7f 100644 --- a/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg index ef0b26c2e1..9611313ad0 100644 --- a/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg index 9039055f48..f04080aae1 100644 --- a/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_nova_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg index 5df2ea8550..a6be4306ac 100644 --- a/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg index bcb84bc11f..8f97f3b685 100644 --- a/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg index 2926251798..13f40508d6 100644 --- a/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg index eab2762d8f..70bca1b5c7 100644 --- a/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg index 7412435143..637f12410a 100644 --- a/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg index ce14d3252a..6c5c6b944d 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg index 647f52efff..e161675372 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg index 5037e706f3..7c64e967c8 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg index f43062c605..ce5c9331b2 100644 --- a/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg index 042d5cbbf0..0916e41f24 100644 --- a/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_t-one_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg index 660658ba58..3c41e300d4 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg index 1177030f93..90ec67054c 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg index 497c117e6e..a1e50ca0b7 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg index 05ca9eca78..f3c2e3d9e4 100644 --- a/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg index 2ba839b340..6eae624861 100644 --- a/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tiny_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg index b38b300dcb..ff56ca6f03 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg index ca2dbe6790..923762f757 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg index 5973febc70..c3f2d91b44 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg index 28a472e72f..5bb5307f8b 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg index f5fdec7756..c68ac434d1 100644 --- a/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg +++ b/resources/variants/goofoo/goofoo_tinyplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg index 0a28dd00e1..fe70c6b56e 100644 --- a/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.4tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg index 92c05577b8..83d1d34f6c 100644 --- a/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg +++ b/resources/variants/hms434/hms434_0.8tpnozzle.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg index 71e1c6cb29..d4b69209bd 100644 --- a/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg index 94ad9c2e17..48d04b1c79 100644 --- a/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg +++ b/resources/variants/imade3d/imade3d_jellybox_2_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = IMADE3D hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg index a34a0f4587..82e8acce62 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg index d7dd0b3746..55b22ea5e3 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg index 1944ad5751..fbcffcdab6 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg index f2e80a208c..6e1b1ab065 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg index 5ffb9996d2..0b53b73b56 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg index 516e0c99c9..a03c5371bb 100644 --- a/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg index 66c473929f..44276d0fb0 100644 --- a/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg index 935e62e059..16d515f070 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg index b8918d2b42..5743dc1e9d 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg index 4ffeaeee2c..722cab00cf 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg index a4f6abd2a4..922e0e5827 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg index cc14b87ebb..99d4bec219 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg index 7ba0f27162..51c9317986 100644 --- a/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg index 0c5fa11144..17347a2fbe 100644 --- a/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg index 90409a027e..cd918729e6 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg index d90512fc69..947c10d5d9 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg index ae48963d8a..76436655c1 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg index 36b1dcbbc4..52b2370895 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg index 57914a8ab3..65dd22cce3 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg index fb1a6b5e8f..bd8e844cf4 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg index b05acc5676..6ae0aa52e0 100644 --- a/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg +++ b/resources/variants/kingroon/kingroon_kp3s_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.2.inst.cfg b/resources/variants/kosher/kosher220_0.2.inst.cfg index 5954773084..201d18d8e2 100644 --- a/resources/variants/kosher/kosher220_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.3.inst.cfg b/resources/variants/kosher/kosher220_0.3.inst.cfg index cc5cd3e508..c21b854c83 100644 --- a/resources/variants/kosher/kosher220_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.4.inst.cfg b/resources/variants/kosher/kosher220_0.4.inst.cfg index 07992ddbb5..40d67a9bc0 100644 --- a/resources/variants/kosher/kosher220_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.5.inst.cfg b/resources/variants/kosher/kosher220_0.5.inst.cfg index dd80c290dd..49873e9382 100644 --- a/resources/variants/kosher/kosher220_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.6.inst.cfg b/resources/variants/kosher/kosher220_0.6.inst.cfg index d42d48ceeb..126e4d7beb 100644 --- a/resources/variants/kosher/kosher220_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_0.8.inst.cfg b/resources/variants/kosher/kosher220_0.8.inst.cfg index dcd90b0864..e1e19ee72c 100644 --- a/resources/variants/kosher/kosher220_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg index 009eb8114d..313b88c4e6 100644 --- a/resources/variants/kosher/kosher220_dm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg index 26ff2fcad9..4aa6407285 100644 --- a/resources/variants/kosher/kosher220_dm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg index 50fe460de2..bc24787cf6 100644 --- a/resources/variants/kosher/kosher220_dm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg index c3bf8c8dba..bc4d598a9e 100644 --- a/resources/variants/kosher/kosher220_dm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg index 617dfb541f..caacb64a3c 100644 --- a/resources/variants/kosher/kosher220_dm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg index 5c44545199..ab4b9d263b 100644 --- a/resources/variants/kosher/kosher220_dm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_dm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg index c8e377c8e7..d8a6ce56ab 100644 --- a/resources/variants/kosher/kosher220_mm_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg index 6c457bf607..29d6258175 100644 --- a/resources/variants/kosher/kosher220_mm_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg index b2f718d277..b40ea6d9fb 100644 --- a/resources/variants/kosher/kosher220_mm_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg index 14a534767a..8c3d1a15cf 100644 --- a/resources/variants/kosher/kosher220_mm_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg index f0fae06951..bf67238742 100644 --- a/resources/variants/kosher/kosher220_mm_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg index 369569c1f2..e0e5825b99 100644 --- a/resources/variants/kosher/kosher220_mm_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_mm_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg index 200d961bf6..485d88d5f1 100644 --- a/resources/variants/kosher/kosher220_pva_0.2.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg index d5fee60813..92f8a0a20e 100644 --- a/resources/variants/kosher/kosher220_pva_0.3.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg index 15470c782a..adae3edf7e 100644 --- a/resources/variants/kosher/kosher220_pva_0.4.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg index 56f719ce12..c3ef47a6b9 100644 --- a/resources/variants/kosher/kosher220_pva_0.5.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg index 4c2d7bcae3..bd3e02b19a 100644 --- a/resources/variants/kosher/kosher220_pva_0.6.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg index 83ea1b5781..07c7b760d7 100644 --- a/resources/variants/kosher/kosher220_pva_0.8.inst.cfg +++ b/resources/variants/kosher/kosher220_pva_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg index df90214208..b2019a7255 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_Brass_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg index 0b8d012a9e..9e66ad4dea 100644 --- a/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg +++ b/resources/variants/leapfrog/Leapfrog_Bolt_Pro_NozzleX_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo04.inst.cfg b/resources/variants/liquid/liquid_vo04.inst.cfg index 684f763c77..0dd0cb6b0b 100644 --- a/resources/variants/liquid/liquid_vo04.inst.cfg +++ b/resources/variants/liquid/liquid_vo04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo06.inst.cfg b/resources/variants/liquid/liquid_vo06.inst.cfg index 318ded1861..8562e6d70b 100644 --- a/resources/variants/liquid/liquid_vo06.inst.cfg +++ b/resources/variants/liquid/liquid_vo06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/liquid/liquid_vo08.inst.cfg b/resources/variants/liquid/liquid_vo08.inst.cfg index f6c3e346e9..1f3f5b5dd0 100644 --- a/resources/variants/liquid/liquid_vo08.inst.cfg +++ b/resources/variants/liquid/liquid_vo08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg index e30e219078..75056b54d4 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg index a405b36c2f..a656a633b2 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg index 80bf9215ec..a134438bec 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg index b14753a615..84039b85df 100644 --- a/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg index bffc914485..1332ac37dd 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg index 7bcab41a1c..898c99bbd4 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg index 6fc8d120c2..6f092fb4a1 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg index ef8bd0cda8..a8d6beb32c 100644 --- a/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d3_vulcan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg index 35dedaae3c..eea556b16b 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg index 9dce1e88c8..fa031d7ce2 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg index e4a79bb457..6054babf23 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg index 9a2eaa51d2..1bdd211a89 100644 --- a/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d5_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg index d6f8a1aa37..e395fe9abe 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg index 0c78cf88fa..d8d9a3f8cc 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg index 023e077f16..40633d064b 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg index 187a2891b9..4cfb1d44aa 100644 --- a/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg +++ b/resources/variants/lnl3d/lnl3d_d6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_base_0.4.inst.cfg b/resources/variants/longer/longer_base_0.4.inst.cfg index 33d9f1dd4b..4df35109a1 100644 --- a/resources/variants/longer/longer_base_0.4.inst.cfg +++ b/resources/variants/longer/longer_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_cube2_0.4.inst.cfg b/resources/variants/longer/longer_cube2_0.4.inst.cfg index 38ad1f1ddc..9e664df3c3 100644 --- a/resources/variants/longer/longer_cube2_0.4.inst.cfg +++ b/resources/variants/longer/longer_cube2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk1_0.4.inst.cfg b/resources/variants/longer/longer_lk1_0.4.inst.cfg index 4ed47af870..5f7ae849ee 100644 --- a/resources/variants/longer/longer_lk1_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg index a84646565d..11e4da9091 100644 --- a/resources/variants/longer/longer_lk1plus_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg index 5f00991b40..f94d8f8e7d 100644 --- a/resources/variants/longer/longer_lk1pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk1pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk4_0.4.inst.cfg b/resources/variants/longer/longer_lk4_0.4.inst.cfg index e7ac3ea123..faf6d8597e 100644 --- a/resources/variants/longer/longer_lk4_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg index 89bd3df55e..ca37ea6db1 100644 --- a/resources/variants/longer/longer_lk4pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk4x_0.4.inst.cfg b/resources/variants/longer/longer_lk4x_0.4.inst.cfg index c8f5cd4dbf..6febd6e978 100644 --- a/resources/variants/longer/longer_lk4x_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk4x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk5_0.4.inst.cfg b/resources/variants/longer/longer_lk5_0.4.inst.cfg index 22b3e76ab0..c6669afd2b 100644 --- a/resources/variants/longer/longer_lk5_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg index f6dfd5e62c..764d944c47 100644 --- a/resources/variants/longer/longer_lk5pro_0.4.inst.cfg +++ b/resources/variants/longer/longer_lk5pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg index 8dec02c101..b40320fa47 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg index 1553f9338d..fbcbcf9057 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg index 7f9792a752..7b274f7341 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg index 76df010856..a7e9e1db08 100644 --- a/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg +++ b/resources/variants/mark2/Mark2_for_Ultimaker2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg index 1e76c76b36..131e8eb83b 100644 --- a/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg index e8c15d58d6..80eff626bf 100644 --- a/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg index c94caecd4a..7382c3e2b9 100644 --- a/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg index d2e0591d39..492b951f20 100644 --- a/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg index 5259e59ca4..888ebcc3c7 100644 --- a/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg index e821bcf124..b3e5d8475a 100644 --- a/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg index 1e35828ec9..423c3aa417 100644 --- a/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_1000pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.2.inst.cfg b/resources/variants/mingda/mingda_4h_0.2.inst.cfg index b39905c685..8c2c3833dc 100644 --- a/resources/variants/mingda/mingda_4h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.3.inst.cfg b/resources/variants/mingda/mingda_4h_0.3.inst.cfg index ad6d817f5b..f06a3d788a 100644 --- a/resources/variants/mingda/mingda_4h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.4.inst.cfg b/resources/variants/mingda/mingda_4h_0.4.inst.cfg index c7207e9e72..931f85b707 100644 --- a/resources/variants/mingda/mingda_4h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.5.inst.cfg b/resources/variants/mingda/mingda_4h_0.5.inst.cfg index 994d0c587c..51abc5d6e5 100644 --- a/resources/variants/mingda/mingda_4h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.6.inst.cfg b/resources/variants/mingda/mingda_4h_0.6.inst.cfg index a455e254dc..453af21dca 100644 --- a/resources/variants/mingda/mingda_4h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_0.8.inst.cfg b/resources/variants/mingda/mingda_4h_0.8.inst.cfg index 9fcc105149..9a1b059f4c 100644 --- a/resources/variants/mingda/mingda_4h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_4h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_4h_1.0.inst.cfg b/resources/variants/mingda/mingda_4h_1.0.inst.cfg index ecff382b36..35592f7f4b 100644 --- a/resources/variants/mingda/mingda_4h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_4h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg index 0990e20414..7c2925b67a 100644 --- a/resources/variants/mingda/mingda_600pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg index fc41b19424..01106c28eb 100644 --- a/resources/variants/mingda/mingda_600pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg index 485604b550..5b97dbbd12 100644 --- a/resources/variants/mingda/mingda_600pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg index f0d1a8b4a7..21eff18208 100644 --- a/resources/variants/mingda/mingda_600pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg index a024f70e88..af001348cd 100644 --- a/resources/variants/mingda/mingda_600pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg index e8aa246222..2a4ca50a75 100644 --- a/resources/variants/mingda/mingda_600pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg index 70fa4471bd..a7a30adbcf 100644 --- a/resources/variants/mingda/mingda_600pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_600pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.2.inst.cfg b/resources/variants/mingda/mingda_6h_0.2.inst.cfg index b7d394f037..8cff9477af 100644 --- a/resources/variants/mingda/mingda_6h_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.3.inst.cfg b/resources/variants/mingda/mingda_6h_0.3.inst.cfg index 2a162da44b..66ee373489 100644 --- a/resources/variants/mingda/mingda_6h_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.4.inst.cfg b/resources/variants/mingda/mingda_6h_0.4.inst.cfg index 6bed347374..ec8363e0f5 100644 --- a/resources/variants/mingda/mingda_6h_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.5.inst.cfg b/resources/variants/mingda/mingda_6h_0.5.inst.cfg index 80d7243cd3..691c9bf9ff 100644 --- a/resources/variants/mingda/mingda_6h_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.6.inst.cfg b/resources/variants/mingda/mingda_6h_0.6.inst.cfg index d6333520c5..bf16c2c8ee 100644 --- a/resources/variants/mingda/mingda_6h_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_0.8.inst.cfg b/resources/variants/mingda/mingda_6h_0.8.inst.cfg index 0c776ca48f..42c7d4ea10 100644 --- a/resources/variants/mingda/mingda_6h_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_6h_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_6h_1.0.inst.cfg b/resources/variants/mingda/mingda_6h_1.0.inst.cfg index c19a0113df..4cf5c6f9a9 100644 --- a/resources/variants/mingda/mingda_6h_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_6h_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.2.inst.cfg b/resources/variants/mingda/mingda_base_0.2.inst.cfg index ecf6c85f7a..d335939763 100644 --- a/resources/variants/mingda/mingda_base_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.3.inst.cfg b/resources/variants/mingda/mingda_base_0.3.inst.cfg index 4ad14e631b..ee946c581f 100644 --- a/resources/variants/mingda/mingda_base_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.4.inst.cfg b/resources/variants/mingda/mingda_base_0.4.inst.cfg index 7819e22a0c..ba49ab8ca0 100644 --- a/resources/variants/mingda/mingda_base_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.6.inst.cfg b/resources/variants/mingda/mingda_base_0.6.inst.cfg index 458f415aa6..9fbf8672a3 100644 --- a/resources/variants/mingda/mingda_base_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_0.8.inst.cfg b/resources/variants/mingda/mingda_base_0.8.inst.cfg index d477a9f169..b754094b12 100644 --- a/resources/variants/mingda/mingda_base_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_base_1.0.inst.cfg b/resources/variants/mingda/mingda_base_1.0.inst.cfg index 4f4415b48f..87f011add5 100644 --- a/resources/variants/mingda/mingda_base_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.2.inst.cfg b/resources/variants/mingda/mingda_d2_0.2.inst.cfg index d5affb8e53..64b1e14069 100644 --- a/resources/variants/mingda/mingda_d2_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.3.inst.cfg b/resources/variants/mingda/mingda_d2_0.3.inst.cfg index d1c5787a32..b331bbc150 100644 --- a/resources/variants/mingda/mingda_d2_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.4.inst.cfg b/resources/variants/mingda/mingda_d2_0.4.inst.cfg index a93871b21c..2a18f78954 100644 --- a/resources/variants/mingda/mingda_d2_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.5.inst.cfg b/resources/variants/mingda/mingda_d2_0.5.inst.cfg index b1cac2e520..c62b73d8c9 100644 --- a/resources/variants/mingda/mingda_d2_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.6.inst.cfg b/resources/variants/mingda/mingda_d2_0.6.inst.cfg index fb12d1eea9..32f54b715d 100644 --- a/resources/variants/mingda/mingda_d2_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_0.8.inst.cfg b/resources/variants/mingda/mingda_d2_0.8.inst.cfg index d5615fd39a..89e61c7bde 100644 --- a/resources/variants/mingda/mingda_d2_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d2_1.0.inst.cfg b/resources/variants/mingda/mingda_d2_1.0.inst.cfg index 0fc96e5c06..f38e5a92e7 100644 --- a/resources/variants/mingda/mingda_d2_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d2_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg index 7f7853c047..fdb6eee0f1 100644 --- a/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg index f51c153ac6..ff983b51e8 100644 --- a/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg index 3b78e26d93..2092625829 100644 --- a/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg index 819d3651df..081bab5ed6 100644 --- a/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg index b6ceb3d219..35f13e00ed 100644 --- a/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg index 5a1796de7e..bef35b7778 100644 --- a/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg index 331e3c320b..c18cebd418 100644 --- a/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d3pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg index 44f8f26bb7..eb4810a140 100644 --- a/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg index 43f510e304..5cc18147b5 100644 --- a/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg index 50593d35e8..94ccd1bb67 100644 --- a/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg index 3727fb8c90..52c2fae309 100644 --- a/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg index e4dbd96907..eb694f3362 100644 --- a/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg index 8010b5cd71..34b62b2c7b 100644 --- a/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg index 8ab02e4b73..8ec1eafab8 100644 --- a/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_d4pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg index dc6281101d..6b1270bc17 100644 --- a/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg index 27a268c2ce..be0689be3c 100644 --- a/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg index 3d37b97f89..c116de4f94 100644 --- a/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg index 1b72c3ebe5..86091949b0 100644 --- a/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg index 7808993454..35083d6a05 100644 --- a/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg index 0d7f764ad7..a342ab1a6f 100644 --- a/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg index 11ef656d49..a633c2c522 100644 --- a/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_max_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg index d7ed29cccc..191c1fb65d 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg index 07d83ef87f..c7354498e1 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg index c4fc96a6ee..c578da230a 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg index 62eb622e30..1b730be3f5 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg index d2efcf7a54..6b19abcf71 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg index 1f790ea81b..6decae13dd 100644 --- a/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg index 96784fcc42..cbe3f82a26 100644 --- a/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg index 9b225512fd..8c818e73de 100644 --- a/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg index e82d82deed..5e9fd8bce8 100644 --- a/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg index 3efa1acda7..355fe2f986 100644 --- a/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg index 141ec15e98..1c37468387 100644 --- a/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg index 6fbac0e0ec..8fa27366d0 100644 --- a/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg index 7592d1b7e0..431fb37a53 100644 --- a/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg index a6aac74b09..d2bd9f72bf 100644 --- a/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_magician_x_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg index 77dbeccb88..d97726336d 100644 --- a/resources/variants/mingda/mingda_rock3_0.2.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg index 6ff94a3e13..5779406131 100644 --- a/resources/variants/mingda/mingda_rock3_0.3.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg index 6f4ad9490a..557d9a572d 100644 --- a/resources/variants/mingda/mingda_rock3_0.4.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg index 41803b2884..42a86efbbe 100644 --- a/resources/variants/mingda/mingda_rock3_0.5.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg index cbd52b2814..7ff473363a 100644 --- a/resources/variants/mingda/mingda_rock3_0.6.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg index 9fb0b2b199..1099494806 100644 --- a/resources/variants/mingda/mingda_rock3_0.8.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg index e8f7d62672..214a6b0ac7 100644 --- a/resources/variants/mingda/mingda_rock3_1.0.inst.cfg +++ b/resources/variants/mingda/mingda_rock3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.4.inst.cfg b/resources/variants/modix/modix_v3_base_0.4.inst.cfg index a5f23659c7..35da05757a 100644 --- a/resources/variants/modix/modix_v3_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.6.inst.cfg b/resources/variants/modix/modix_v3_base_0.6.inst.cfg index ec1144d4b1..108d62e9a0 100644 --- a/resources/variants/modix/modix_v3_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_0.8.inst.cfg b/resources/variants/modix/modix_v3_base_0.8.inst.cfg index b1074fc87b..313960b5de 100644 --- a/resources/variants/modix/modix_v3_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.0.inst.cfg b/resources/variants/modix/modix_v3_base_1.0.inst.cfg index bd4ffc1d0e..c4e86bed66 100644 --- a/resources/variants/modix/modix_v3_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.2.inst.cfg b/resources/variants/modix/modix_v3_base_1.2.inst.cfg index 08371bbe60..667d09ef28 100644 --- a/resources/variants/modix/modix_v3_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_base_1.4.inst.cfg b/resources/variants/modix/modix_v3_base_1.4.inst.cfg index e9fa4ae5fc..23f27050d3 100644 --- a/resources/variants/modix/modix_v3_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg index 93c61e90af..53212fd738 100644 --- a/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg index 3b77f92263..135432cca8 100644 --- a/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg index ed33a50293..81982947ac 100644 --- a/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg index 31a29baaaa..584b70cb97 100644 --- a/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg index 67239ec5e8..a005720a67 100644 --- a/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg index 093d6b2367..e0ed2e0632 100644 --- a/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg index e4094352be..9ee4dd0bd5 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg index 19fdc4d8a2..5aa9877438 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg index 54a1d3f6d7..e9a1c4e247 100644 --- a/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg index 1c11bb230c..fd6e1241fe 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg index e841cc9841..2e27529a88 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg index 522c6bddd5..3bfa711fd1 100644 --- a/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg index 9cc8cc9115..760e1a0a49 100644 --- a/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg index 64538b559a..0f6a6c1ac1 100644 --- a/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg index 4961c0e72d..237986cbeb 100644 --- a/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg index dfec34fff2..982b31b058 100644 --- a/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg index 8b97f86daf..9e29f20ae8 100644 --- a/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg index b4c7ac8998..3df00426a8 100644 --- a/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg index 7f610622eb..74a487e07d 100644 --- a/resources/variants/modix/modix_v3_big40_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg index 86778410ab..fc6fac39b8 100644 --- a/resources/variants/modix/modix_v3_big40_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg index 08b13addba..fddd94fda5 100644 --- a/resources/variants/modix/modix_v3_big40_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg index 3b71773371..604f243145 100644 --- a/resources/variants/modix/modix_v3_big40_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg index dd844eaad8..e67c71d4f6 100644 --- a/resources/variants/modix/modix_v3_big40_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg index 9ebc22a272..4415e8c40d 100644 --- a/resources/variants/modix/modix_v3_big40_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big40_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg index 2dc9247c3c..0bbea9702a 100644 --- a/resources/variants/modix/modix_v3_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg index 9b10cbf5ea..cd56753a27 100644 --- a/resources/variants/modix/modix_v3_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg index bbdc550ae9..0ff7d89a4f 100644 --- a/resources/variants/modix/modix_v3_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg index a40f3641e6..8c91566885 100644 --- a/resources/variants/modix/modix_v3_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg index 5d625d132e..3ecb329a7b 100644 --- a/resources/variants/modix/modix_v3_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg index 24e54939a5..67ae3b14c1 100644 --- a/resources/variants/modix/modix_v3_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg index 5f6eade748..d767ca7787 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg index f91a2591ec..5b5ff0671e 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg index af13575ebb..c21ec21ffd 100644 --- a/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg index e623a4ad3a..1cb054bc48 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg index 4d0db84138..3882545352 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg index dc5374c87c..d35ba68755 100644 --- a/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v3_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.4.inst.cfg b/resources/variants/modix/modix_v4_base_0.4.inst.cfg index 968712e72e..60d574fc4b 100644 --- a/resources/variants/modix/modix_v4_base_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.6.inst.cfg b/resources/variants/modix/modix_v4_base_0.6.inst.cfg index f83f4e23a4..8d83f942b2 100644 --- a/resources/variants/modix/modix_v4_base_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_0.8.inst.cfg b/resources/variants/modix/modix_v4_base_0.8.inst.cfg index ad87dfa4cc..38b8bdbac1 100644 --- a/resources/variants/modix/modix_v4_base_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.0.inst.cfg b/resources/variants/modix/modix_v4_base_1.0.inst.cfg index fdc01c05e6..329004dff0 100644 --- a/resources/variants/modix/modix_v4_base_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.2.inst.cfg b/resources/variants/modix/modix_v4_base_1.2.inst.cfg index a72ca94779..c0c8a92a7b 100644 --- a/resources/variants/modix/modix_v4_base_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_base_1.4.inst.cfg b/resources/variants/modix/modix_v4_base_1.4.inst.cfg index 62967ea303..71a56dfd83 100644 --- a/resources/variants/modix/modix_v4_base_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_base_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg index 9b3b9b5024..65cbf59c32 100644 --- a/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg index 6046383104..2770963a32 100644 --- a/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg index d7cc3a4cdf..65036bd4c0 100644 --- a/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg index 963e9f8ac7..8f5e2decd9 100644 --- a/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg index 7e84bd034d..fb9589635e 100644 --- a/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg index 73d57eedfa..c49a3e8d3f 100644 --- a/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg index 1c6672972c..700e1be520 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg index 6f0d1c42ae..6665a0db45 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg index 36d79c6509..2261128d47 100644 --- a/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg index 6a6a9de9bf..6508fc0b98 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg index 64955ea44f..6a25bf4321 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg index 8b9f425894..267986e285 100644 --- a/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big120Z_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg index 64086a3a2b..7890bf284c 100644 --- a/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg index 5240e89085..fa303c9378 100644 --- a/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg index 71d1f66537..3cc8426516 100644 --- a/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg index 5b69f2036c..1a2aaa9180 100644 --- a/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg index f5d5004a37..b8e1e03264 100644 --- a/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg index 5fee5b3ee9..a1409128be 100644 --- a/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big180X_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg index a04deb4f41..44333928e7 100644 --- a/resources/variants/modix/modix_v4_big60_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg index 07ab30b98d..9f5d4e43f7 100644 --- a/resources/variants/modix/modix_v4_big60_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg index 1d0c073349..e93ba71ccf 100644 --- a/resources/variants/modix/modix_v4_big60_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg index 540a57a2ca..2409a026f1 100644 --- a/resources/variants/modix/modix_v4_big60_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg index 051131ac0a..845707dc02 100644 --- a/resources/variants/modix/modix_v4_big60_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg index c109c6e8ee..9ef3b2d7cc 100644 --- a/resources/variants/modix/modix_v4_big60_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_big60_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg index 1c132afabd..69b4ee5aa4 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg index 8258617bf8..34454ca604 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg index 1db24a8191..73568117da 100644 --- a/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg index 9cb4c333f1..5b1274a3c5 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg index 54ffc66c2b..47db099bf0 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg index 5cb242da14..ae39499444 100644 --- a/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg +++ b/resources/variants/modix/modix_v4_bigmeter_1.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg index 9164f9ea78..3d8e7a935f 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg index e07fbeee22..81eb82d305 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg index 1c3771a1ce..ce398863af 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg index 74f748a20e..d1f53c4efb 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg index 31e027a18e..9af99e9534 100644 --- a/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg +++ b/resources/variants/multicomp/multicomp_mcpi200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg index c46b934fb1..2b7e12d4d3 100644 --- a/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_04.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg index 3c31742b45..67df183ea1 100644 --- a/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg +++ b/resources/variants/nwa3d/nwa3d_a31_06.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = DragonJe hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg index 553f869f01..664349a6a6 100644 --- a/resources/variants/ratrig/ratrig_base_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg index 7aaabc3477..0ae7705143 100644 --- a/resources/variants/ratrig/ratrig_base_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg index 1e79ffca33..c81011b69a 100644 --- a/resources/variants/ratrig/ratrig_base_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg index 901033a2ef..7fefeae447 100644 --- a/resources/variants/ratrig/ratrig_base_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg index 59e891f8c1..2118588cc1 100644 --- a/resources/variants/ratrig/ratrig_base_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg index 19c37d1768..bb12011008 100644 --- a/resources/variants/ratrig/ratrig_base_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg index 6352cdb6bc..96f7932cfe 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg index 4a351bd9f4..6f4507eeff 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg index 3a0200217f..241174477c 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg index 44df899221..000dc36846 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg index a0d8c92598..b7dc9c0cee 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg index 0753222b53..5c8eb82bb8 100644 --- a/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_200_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg index f4c80c3389..7b330f36f1 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg index f062f4c7c8..d70b459684 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg index 1a67b8c307..00a33e0ef0 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg index 2eca8c927a..862da0cfa1 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg index 1a7ca3c932..2a93ae65f3 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg index 1af12f82cd..c70d62c623 100644 --- a/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_300_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg index 4b6f94ffba..1b0c4d4a48 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg index c8f002caaa..9d612d5ab8 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg index baa8fe1efe..fa5430d7fc 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg index 645e14a199..ce9d0eb5cb 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg index 48815a8897..1ed3532497 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg index dc88ce1850..3ad33f530e 100644 --- a/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_400_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg index cf77712b11..7147a8fc8a 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg index 80d7a6bbf0..2ed6cdd85e 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg index 0d3801a983..ef5f8d7fe9 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg index fba4902ba2..d3e0c97657 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg index f4e761ea36..ae7ac6def8 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg index 11de67bfdb..1af4f337f8 100644 --- a/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vcore3_500_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg index 191326cae9..21fb4b7a37 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg index 6e3619f095..1f6e926d7d 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg index 5ea05dfa9b..a046526f84 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg index c2ee92e944..13578795b3 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg index a24e0c6723..6c70b9173f 100644 --- a/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg index fbabf642fe..9ef19263d6 100644 --- a/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg +++ b/resources/variants/ratrig/ratrig_vminion_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg index 8681f4a8a1..00879535b4 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg index c3b364aa41..2fd51346b9 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg index e1c5ce38c8..72f41c61c7 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg index 4d5ee05f26..e13588f79a 100644 --- a/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg index 2c9a63fd2f..23621455f9 100644 --- a/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_basic3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg index 28a7abf81a..8527f1dd7b 100644 --- a/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg +++ b/resources/variants/renkforce/renkforce_cubeone_0.7.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg index 7af87e50c4..e983d9af43 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg index 70ca42b414..d000057758 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg index 7b253ecf4b..7d08983b85 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg index c4e1a6771e..a2054640fe 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg index e0ec053bda..bb3c0e7e4f 100644 --- a/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro10plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg index 93ba24d86e..5826ee6dab 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg index 707b302ed6..f33e331a5b 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg index 26d51c1bf0..170e9ac8dc 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg index 7d5eada60a..9035963716 100644 --- a/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg index ecb5cb827f..f976c5e667 100644 --- a/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro3_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg index 871a337348..a3c4c402e0 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg index 2c265e3b05..33eeba94b3 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg index f1479e8199..d5d99e0f9c 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg index 287933123f..11c8cc0fa8 100644 --- a/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg index bade0df4be..ed4f251aa5 100644 --- a/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg index d8cd4cf305..e4f3726de0 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg index 6162c38a7e..cad09297ca 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg index e3cde95994..820599dba6 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg index 427f6b3c07..376de494f6 100644 --- a/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro6plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg index 0972aeccb6..47927c1e63 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg index 235a3a4558..a3d09c7151 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg index c2af0c2532..5a0b69b652 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg index 37c7b58f08..73bd9bcb63 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg index b9c1fb3d95..6fcb6e6ce6 100755 --- a/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg +++ b/resources/variants/renkforce/renkforce_pro7dual_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg index 95676e994a..cdfd82376c 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg index 7cfc3efc57..17e68850ea 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg index 4c49dec402..0fa33a4fd1 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg index 91bb80628e..91d0c34d1a 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg index 9c0e6ecddc..0fe2d4c365 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg index b078d6089e..8d9fdd440d 100644 --- a/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg index 40fcf0f556..50e84b50d2 100644 --- a/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_bowden_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg index 95676e994a..cdfd82376c 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg index 7cfc3efc57..17e68850ea 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg index 4c49dec402..0fa33a4fd1 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg index 91bb80628e..91d0c34d1a 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg index 9c0e6ecddc..0fe2d4c365 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg index b078d6089e..8d9fdd440d 100644 --- a/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg index 40fcf0f556..50e84b50d2 100644 --- a/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_planetary_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg index 95676e994a..cdfd82376c 100644 --- a/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg index 7cfc3efc57..17e68850ea 100644 --- a/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg index 4c49dec402..0fa33a4fd1 100644 --- a/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg index 91bb80628e..91d0c34d1a 100644 --- a/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg index 9c0e6ecddc..0fe2d4c365 100644 --- a/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg index b078d6089e..8d9fdd440d 100644 --- a/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg index 40fcf0f556..50e84b50d2 100644 --- a/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_base_titan_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg index 4675382ac7..f5c240bd99 100644 --- a/resources/variants/sovol/sovol_sv01_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg index 1f4dc19dbc..253abeebba 100644 --- a/resources/variants/sovol/sovol_sv01_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg index 8a9ff336d6..89118e53c6 100644 --- a/resources/variants/sovol/sovol_sv01_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg index 18cf8af243..e95011e9b7 100644 --- a/resources/variants/sovol/sovol_sv01_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg index 076b31f4ea..ca736877a8 100644 --- a/resources/variants/sovol/sovol_sv01_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg index 02088701c9..48a974fdb6 100644 --- a/resources/variants/sovol/sovol_sv01_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg index 67c4921b41..1fb8dba72e 100644 --- a/resources/variants/sovol/sovol_sv01_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg index f7ef67df9a..c155e72d0f 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg index 66418fccdd..de61692201 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg index b665199027..49aca2bf5b 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg index 3ac09cd534..646e268015 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg index 2b4ba7a8e6..4df068e020 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg index d19443e26a..0f4868bb9f 100644 --- a/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg index 79db65ef8c..14bdd2b0ab 100644 --- a/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv01pro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg index b27c368ba7..ea298f264e 100644 --- a/resources/variants/sovol/sovol_sv03_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg index c0e0ea8e03..dd2515493b 100644 --- a/resources/variants/sovol/sovol_sv03_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg index 88fe704558..59c11e34ae 100644 --- a/resources/variants/sovol/sovol_sv03_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg index aa3b6dcbd6..16317903f3 100644 --- a/resources/variants/sovol/sovol_sv03_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg index d42f878ed6..76890a7b02 100644 --- a/resources/variants/sovol/sovol_sv03_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg index 6eb0061d4c..f850fab4db 100644 --- a/resources/variants/sovol/sovol_sv03_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg index 72800bf3a1..f0b1fdeb3c 100644 --- a/resources/variants/sovol/sovol_sv03_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv03_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg index bbb14c2961..e2e02aa911 100644 --- a/resources/variants/sovol/sovol_sv05_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg index 429aa18024..867041c806 100644 --- a/resources/variants/sovol/sovol_sv05_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg index d3b7102606..19fb22f82a 100644 --- a/resources/variants/sovol/sovol_sv05_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg index 398012ed4f..7860b3bdb4 100644 --- a/resources/variants/sovol/sovol_sv05_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg index df3b34602a..ef2df5b371 100644 --- a/resources/variants/sovol/sovol_sv05_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg index 80b859c9ff..c58c861c96 100644 --- a/resources/variants/sovol/sovol_sv05_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg index 08a03569a5..9c0661f59b 100644 --- a/resources/variants/sovol/sovol_sv05_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv05_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg index e8bb5f9823..291bca703d 100644 --- a/resources/variants/sovol/sovol_sv06_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg index e56a618f9e..57a1a3410f 100644 --- a/resources/variants/sovol/sovol_sv06_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg index 729f0a8099..14befc1589 100644 --- a/resources/variants/sovol/sovol_sv06_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg index 697c0a8cbd..5cd45e68d2 100644 --- a/resources/variants/sovol/sovol_sv06_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg index 76afaa4115..36b14f627f 100644 --- a/resources/variants/sovol/sovol_sv06_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg index 57aaba95d0..1b292b00a8 100644 --- a/resources/variants/sovol/sovol_sv06_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg index 1def6c310d..e10503568c 100644 --- a/resources/variants/sovol/sovol_sv06_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg index 801913f2a8..35c65f8e5e 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg index 24746b4b00..6efe6539df 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg index 36c4c01724..530c74856b 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg index a4ab21f715..abcaf54dcb 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg index d502887d21..c2a7ad1389 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg index 4d27ed19d4..392fcb2fbf 100644 --- a/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg index f45e0f73d0..7c7c2852a0 100644 --- a/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg +++ b/resources/variants/sovol/sovol_sv06_plus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg index 5e1ead766f..a361194d10 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg index 87265e5a16..e725037cab 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg index 9f04f01e67..3d5033d5e2 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg index 4ef793240b..448f02cc83 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg index fc5ace3f86..6b6643f517 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg index 0c4514dfd5..77f5b0ec81 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg index 4ed76619dd..699d7dc863 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_duplicate_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg index 0ffce60431..d1ec0502a4 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg index 3f71d27404..d6a62b1182 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg index 5910177288..5cd8c0d03f 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg index 49688ae6f4..edbe448b0d 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_brass_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg index 92748d4d3d..fc6dc8447b 100644 --- a/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_IDEX420_mirror_hardened_steel_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg index dd9958c48b..01698e393b 100644 --- a/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_high_temp_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg index 37cf713a15..7d336c172b 100644 --- a/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg index 269c25aaa5..a43711b905 100644 --- a/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg index 58441eba1e..43e2f6c061 100644 --- a/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_08.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg index 4ab3b3926d..a8ce679e12 100644 --- a/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_10.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg index 94a250cae2..fbca87586c 100644 --- a/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg +++ b/resources/variants/strateo3d/strateo3d_standard_12.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg index a062e40eaa..eab3385116 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg index 4f7c872f83..4f7e70eab5 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg index bac385cd61..34fc3728b2 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.41.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg index 2200d028c1..d23426008d 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.58.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg index c82ea7b8ce..59e2f4e2b2 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_0.84.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg index a3b6e8ab7a..e5e36aa870 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.19.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg index 6e59413f39..25e8023e19 100644 --- a/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg +++ b/resources/variants/structur3d/structur3d_discov3ry1_complete_um2plus_1.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg index c6f6a59cc9..aa47dd7fdd 100644 --- a/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.2.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg index 1bcc6f9f80..68811cb4aa 100644 --- a/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.3.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg index 0184650eac..de7e8299d9 100644 --- a/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.4.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg index 85f310a75c..4dfec1dcea 100644 --- a/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.5.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg index c11278805f..99ef57c6fa 100644 --- a/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.6.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg index db57e2489d..b6a3a9d210 100644 --- a/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_0.8.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg index 25919c41cb..ba290a9354 100644 --- a/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_1.0.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg index b74479ed9b..13f5cd967f 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_classic.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg index e423042aba..48bfd8ffc8 100644 --- a/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg +++ b/resources/variants/tizyx/tizyx_evy_dual_direct_drive.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] author = TiZYX hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg index 849ff5b549..95dccfa99e 100644 --- a/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg index f21aaeb9c4..33ee94ee4b 100644 --- a/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg index 1b96c65430..f74d637064 100644 --- a/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg index 5dd314fc6e..5c6dcf81f9 100644 --- a/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg index 4d63f1e315..83abd5655a 100644 --- a/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg index 6eb8ad3808..2ad11fe1e5 100644 --- a/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg index e28afbbd31..f12704bb19 100644 --- a/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg +++ b/resources/variants/tizyx/tizyx_k25_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg index 4ebd9d8b25..eb4699f6f8 100644 --- a/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg index 3350cbd461..72e67c7e2f 100644 --- a/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg index bfc8757ad3..e18b5b8ad6 100644 --- a/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg index 34763768cb..72393248ad 100644 --- a/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg index b8a463eb60..473d5de93f 100644 --- a/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg index 825d760120..bf8646b54e 100644 --- a/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_d01_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg index c42982fa97..71fe560e25 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg index 518bd27d4f..74809b0a9e 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg index b503848059..f2953780aa 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg index c64ca108d2..3b46c2087d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg index c02e91690d..0d9c0f5066 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg index 6b486043aa..f3ab16de87 100644 --- a/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg index 5c037481a1..117bef9cd9 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg index 3c571bdb8d..a8f8788cb6 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg index d84021788f..daef333cdb 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg index f8b83d537f..6b8665cd27 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg index 1e9d8b7813..7a0c7cd37c 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg index 918b620ec5..032bfd6cd1 100644 --- a/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_400_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg index 151b1b0472..37d06393ce 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg index b479c96437..2e814eb377 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg index bf8a8c4193..cd3c6720cd 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg index 0d1fc72a92..696bc28d68 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg index b90788f72b..8f1468f0cc 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg index 8671621b0d..1dcf8f892d 100644 --- a/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x5sa_500_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg index a5a48065b7..56d771cd3e 100644 --- a/resources/variants/tronxy/tronxy_x_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg index 55be830f9a..41ccd377ec 100644 --- a/resources/variants/tronxy/tronxy_x_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg index bca306577f..6c929b5350 100644 --- a/resources/variants/tronxy/tronxy_x_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg index da9038083f..70d4559e47 100644 --- a/resources/variants/tronxy/tronxy_x_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg index d235caf8ba..dceef9c9b3 100644 --- a/resources/variants/tronxy/tronxy_x_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg index 6e6a213099..e2e9838d7b 100644 --- a/resources/variants/tronxy/tronxy_x_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_x_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg index 28a372882a..2bbc1901e6 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg index bb0bc6c05d..5f8f7f2784 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg index 6e1a243fcd..01f80a25c4 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg index 6f23af4bef..7505432d9d 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg index c4ac917258..5511fce75c 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg index dd253d02b3..86e0d16c8b 100644 --- a/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg index 997eeec980..28a79bf1f6 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg index b039c68bf9..f3d221aa79 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg index 16a41c96f5..af8ca8c04f 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg index 0d6fc5596a..9a76d971dd 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg index 234f4967b5..ae45abeddc 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg index 4f47a1d6bb..c4930686b7 100644 --- a/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy2pro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg index fa88c7cb80..1822032143 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg index 0fb159eb58..919adad6f9 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg index 8788191875..ae5462264f 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg index 8949585430..8ca493edfe 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg index 881c9cc12d..75b02070a6 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg index 39730a6794..48a1b549e6 100644 --- a/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg index b6d369887d..fb8e76d082 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg index 3938926d4e..3a58ea3295 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg index 1460fae852..2cb642ca4e 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg index 465351877a..316a773162 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg index a61dfa6a41..0293746483 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg index acf463f1a2..ec33253578 100644 --- a/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg +++ b/resources/variants/tronxy/tronxy_xy3proV2_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg index 5d00116eb2..0bac7f4081 100644 --- a/resources/variants/two_trees/two_trees_base_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg index 432c55a4b2..3987001125 100644 --- a/resources/variants/two_trees/two_trees_base_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg index 70d2416030..20b6709864 100644 --- a/resources/variants/two_trees/two_trees_base_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg index 125370a247..c185fb9223 100644 --- a/resources/variants/two_trees/two_trees_base_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg index 2f580b6ed9..8aba5e3b5b 100644 --- a/resources/variants/two_trees/two_trees_base_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg index 9bb89c1a05..787b59cd5f 100644 --- a/resources/variants/two_trees/two_trees_base_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg index 732abfd791..adfcd2e6cf 100644 --- a/resources/variants/two_trees/two_trees_base_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg index c0cf712a9e..1fbbeecf3d 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg index 3630aecfe7..9264e406d0 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg index faa479d6fa..bad71499ac 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg index 691bee192b..ac540c9b19 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg index c97ce33271..dcf1e732dc 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg index e391ad8e20..917afa1644 100644 --- a/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg index 7553db150a..9c3524a366 100644 --- a/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluer_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg index b455cba30a..f2498414af 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg index abdd6c0a70..e1cb23a296 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg index ee171d1ca9..f00ddde10b 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg index e9e702b4de..ffa625d700 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg index 2c123df75c..9fe66b2a0e 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg index c0e271e76f..325b97a1b6 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg index 42e4794f6d..7add100d55 100644 --- a/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_bluerplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg index e8efa941e0..da1c7e10dc 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg index bc8495b121..f8c0297376 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg index 49a3b37883..1f9a903525 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg index 750c72175f..5f57b03c34 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg index 7d65ea1195..e163135f44 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg index d2d2e961a2..43418565d4 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg index 59ecdce721..3a3e72df15 100644 --- a/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphireplus_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg index 3016320978..bd90f876c6 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg index 73a9f12332..1c8e75ad67 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg index 6f72dc5c88..f49586bd05 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg index 56140477f0..9b084aa19d 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg index 6e0aa7a76a..082527e37e 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg index dbe99001e1..b093174ab4 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg index 9c9f41a21a..bd7d4612c3 100644 --- a/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg +++ b/resources/variants/two_trees/two_trees_sapphirepro_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg index 2b41a131bf..758d54287b 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg index b9da9cb427..0a385f4944 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg index d1435a038f..3962bb4ecd 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg index 7939329760..c863694ad2 100644 --- a/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg index f390522673..b0aa365ff0 100644 --- a/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg index fe1f3f7cf8..d57e587a7d 100644 --- a/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg index 7cf05dc5ce..5d9f9518ac 100644 --- a/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg index 96bdd72b37..f74e356d6b 100644 --- a/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_extended_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.25.inst.cfg b/resources/variants/ultimaker2_olsson_0.25.inst.cfg index 7ac69be938..e0fe3d465f 100644 --- a/resources/variants/ultimaker2_olsson_0.25.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.4.inst.cfg b/resources/variants/ultimaker2_olsson_0.4.inst.cfg index b3bd76d2bb..6f66461532 100644 --- a/resources/variants/ultimaker2_olsson_0.4.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.6.inst.cfg b/resources/variants/ultimaker2_olsson_0.6.inst.cfg index 1ef825ce73..12611f1315 100644 --- a/resources/variants/ultimaker2_olsson_0.6.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_olsson_0.8.inst.cfg b/resources/variants/ultimaker2_olsson_0.8.inst.cfg index 78f9a448d9..0a908f1357 100644 --- a/resources/variants/ultimaker2_olsson_0.8.inst.cfg +++ b/resources/variants/ultimaker2_olsson_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.25.inst.cfg b/resources/variants/ultimaker2_plus_0.25.inst.cfg index 8191646d70..1c5b3f6592 100644 --- a/resources/variants/ultimaker2_plus_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.4.inst.cfg b/resources/variants/ultimaker2_plus_0.4.inst.cfg index b93a69a37b..a7ff265e45 100644 --- a/resources/variants/ultimaker2_plus_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.6.inst.cfg b/resources/variants/ultimaker2_plus_0.6.inst.cfg index 7d26c7235c..9f91836a98 100644 --- a/resources/variants/ultimaker2_plus_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_0.8.inst.cfg b/resources/variants/ultimaker2_plus_0.8.inst.cfg index dae23df088..1ddac7b799 100644 --- a/resources/variants/ultimaker2_plus_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg index 25a6d69377..7d688e7041 100644 --- a/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg index 4b03127018..71f5247bd7 100644 --- a/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg index 12ed089c82..ace1ed23c4 100644 --- a/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg index b049720372..70549f2e15 100644 --- a/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg +++ b/resources/variants/ultimaker2_plus_connect_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.25.inst.cfg b/resources/variants/ultimaker3_aa0.25.inst.cfg index 134d7d4806..21c050b894 100644 --- a/resources/variants/ultimaker3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_aa0.8.inst.cfg b/resources/variants/ultimaker3_aa0.8.inst.cfg index eb1ec461e7..2e23912260 100644 --- a/resources/variants/ultimaker3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_aa04.inst.cfg b/resources/variants/ultimaker3_aa04.inst.cfg index 85c2fcba1c..fb98c212be 100644 --- a/resources/variants/ultimaker3_aa04.inst.cfg +++ b/resources/variants/ultimaker3_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_bb0.8.inst.cfg b/resources/variants/ultimaker3_bb0.8.inst.cfg index 55a93ee5cc..279a04a3a5 100644 --- a/resources/variants/ultimaker3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_bb04.inst.cfg b/resources/variants/ultimaker3_bb04.inst.cfg index 1c095aa262..2e67a3a877 100644 --- a/resources/variants/ultimaker3_bb04.inst.cfg +++ b/resources/variants/ultimaker3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg index 26a65b4a11..8f314283c3 100644 --- a/resources/variants/ultimaker3_extended_aa0.25.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg index bff1fd5469..8f0f7738bc 100644 --- a/resources/variants/ultimaker3_extended_aa0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_aa04.inst.cfg b/resources/variants/ultimaker3_extended_aa04.inst.cfg index f57f1f8bbd..0aecf8b7e4 100644 --- a/resources/variants/ultimaker3_extended_aa04.inst.cfg +++ b/resources/variants/ultimaker3_extended_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg index 1db324d395..8edd0b5fda 100644 --- a/resources/variants/ultimaker3_extended_bb0.8.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker3_extended_bb04.inst.cfg b/resources/variants/ultimaker3_extended_bb04.inst.cfg index 92416cbe6f..ca2da9e39e 100644 --- a/resources/variants/ultimaker3_extended_bb04.inst.cfg +++ b/resources/variants/ultimaker3_extended_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa0.25.inst.cfg b/resources/variants/ultimaker_factor4_aa0.25.inst.cfg index 38c39ade0b..7f2465b0f0 100644 --- a/resources/variants/ultimaker_factor4_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_factor4_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa0.8.inst.cfg b/resources/variants/ultimaker_factor4_aa0.8.inst.cfg index 236b3ec0c6..50b82f7175 100644 --- a/resources/variants/ultimaker_factor4_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_factor4_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_aa04.inst.cfg b/resources/variants/ultimaker_factor4_aa04.inst.cfg index 60e0f78f99..32d0bb9066 100644 --- a/resources/variants/ultimaker_factor4_aa04.inst.cfg +++ b/resources/variants/ultimaker_factor4_aa04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_bb0.8.inst.cfg b/resources/variants/ultimaker_factor4_bb0.8.inst.cfg index 76edb1bfe6..28e32764fc 100644 --- a/resources/variants/ultimaker_factor4_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_factor4_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_bb04.inst.cfg b/resources/variants/ultimaker_factor4_bb04.inst.cfg index 6f9d4da1f0..e9515ad46b 100644 --- a/resources/variants/ultimaker_factor4_bb04.inst.cfg +++ b/resources/variants/ultimaker_factor4_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_cc04.inst.cfg b/resources/variants/ultimaker_factor4_cc04.inst.cfg index 9810c7f401..22922ecabc 100644 --- a/resources/variants/ultimaker_factor4_cc04.inst.cfg +++ b/resources/variants/ultimaker_factor4_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_cc06.inst.cfg b/resources/variants/ultimaker_factor4_cc06.inst.cfg index f1ad3342a6..6b296b36ca 100644 --- a/resources/variants/ultimaker_factor4_cc06.inst.cfg +++ b/resources/variants/ultimaker_factor4_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_dd04.inst.cfg b/resources/variants/ultimaker_factor4_dd04.inst.cfg index 7cd1fd97e1..0754a29a52 100644 --- a/resources/variants/ultimaker_factor4_dd04.inst.cfg +++ b/resources/variants/ultimaker_factor4_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_factor4_ht06.inst.cfg b/resources/variants/ultimaker_factor4_ht06.inst.cfg index 932b139817..982ab51ea5 100644 --- a/resources/variants/ultimaker_factor4_ht06.inst.cfg +++ b/resources/variants/ultimaker_factor4_ht06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_method_1A.inst.cfg b/resources/variants/ultimaker_method_1A.inst.cfg index d8ac36154a..1bebbea0bc 100644 --- a/resources/variants/ultimaker_method_1A.inst.cfg +++ b/resources/variants/ultimaker_method_1A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14 -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_method_1C.inst.cfg b/resources/variants/ultimaker_method_1C.inst.cfg index b881a01fdc..31dda1e516 100644 --- a/resources/variants/ultimaker_method_1C.inst.cfg +++ b/resources/variants/ultimaker_method_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_method_2A.inst.cfg b/resources/variants/ultimaker_method_2A.inst.cfg index b2f16e4472..95435ae7b1 100644 --- a/resources/variants/ultimaker_method_2A.inst.cfg +++ b/resources/variants/ultimaker_method_2A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_s -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_method_LABS.inst.cfg b/resources/variants/ultimaker_method_LABS.inst.cfg index 97e78c30e0..7a24a28d01 100644 --- a/resources/variants/ultimaker_method_LABS.inst.cfg +++ b/resources/variants/ultimaker_method_LABS.inst.cfg @@ -5,7 +5,8 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +reference_extruder_id = mk14_e +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1A.inst.cfg b/resources/variants/ultimaker_methodx_1A.inst.cfg index 886c14c184..6b9d81f8e9 100644 --- a/resources/variants/ultimaker_methodx_1A.inst.cfg +++ b/resources/variants/ultimaker_methodx_1A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14 -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1C.inst.cfg b/resources/variants/ultimaker_methodx_1C.inst.cfg index 83dd3e9ed8..bfecba6ad3 100644 --- a/resources/variants/ultimaker_methodx_1C.inst.cfg +++ b/resources/variants/ultimaker_methodx_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_1XA.inst.cfg b/resources/variants/ultimaker_methodx_1XA.inst.cfg index 8e940228e8..397ee0ab84 100644 --- a/resources/variants/ultimaker_methodx_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2A.inst.cfg b/resources/variants/ultimaker_methodx_2A.inst.cfg index 49edb9cf3c..055db1b8d1 100644 --- a/resources/variants/ultimaker_methodx_2A.inst.cfg +++ b/resources/variants/ultimaker_methodx_2A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_s -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_2XA.inst.cfg b/resources/variants/ultimaker_methodx_2XA.inst.cfg index d395d17d53..2fa079adbf 100644 --- a/resources/variants/ultimaker_methodx_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodx_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodx_LABS.inst.cfg b/resources/variants/ultimaker_methodx_LABS.inst.cfg index a150a0df5d..4278711c05 100644 --- a/resources/variants/ultimaker_methodx_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodx_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1A.inst.cfg b/resources/variants/ultimaker_methodxl_1A.inst.cfg index b7a54d8242..f953b52339 100644 --- a/resources/variants/ultimaker_methodxl_1A.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14 -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1C.inst.cfg b/resources/variants/ultimaker_methodxl_1C.inst.cfg index 299d05d029..3cb856be8b 100644 --- a/resources/variants/ultimaker_methodxl_1C.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1C.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_c -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_1XA.inst.cfg b/resources/variants/ultimaker_methodxl_1XA.inst.cfg index 77965ea525..a9aa1a6727 100644 --- a/resources/variants/ultimaker_methodxl_1XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_1XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2A.inst.cfg b/resources/variants/ultimaker_methodxl_2A.inst.cfg index 3a93dfdd9f..0e7bf868af 100644 --- a/resources/variants/ultimaker_methodxl_2A.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2A.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_s -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_2XA.inst.cfg b/resources/variants/ultimaker_methodxl_2XA.inst.cfg index 4e929f2853..b242bb5358 100644 --- a/resources/variants/ultimaker_methodxl_2XA.inst.cfg +++ b/resources/variants/ultimaker_methodxl_2XA.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_hot_s -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_methodxl_LABS.inst.cfg b/resources/variants/ultimaker_methodxl_LABS.inst.cfg index c579f7f8e6..9f2f344974 100644 --- a/resources/variants/ultimaker_methodxl_LABS.inst.cfg +++ b/resources/variants/ultimaker_methodxl_LABS.inst.cfg @@ -6,7 +6,7 @@ version = 4 [metadata] hardware_type = nozzle reference_extruder_id = mk14_e -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_replicator_smart_extruder_plus.inst.cfg b/resources/variants/ultimaker_replicator_smart_extruder_plus.inst.cfg new file mode 100644 index 0000000000..61c4c52d74 --- /dev/null +++ b/resources/variants/ultimaker_replicator_smart_extruder_plus.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_replicator_plus +name = Smart Extruder+ +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk13 +setting_version = 25 +type = variant + +[values] +machine_nozzle_id = Smart Extruder+ +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_replicator_smart_extruder_plus_im-pla.inst.cfg b/resources/variants/ultimaker_replicator_smart_extruder_plus_im-pla.inst.cfg new file mode 100644 index 0000000000..bd12c60628 --- /dev/null +++ b/resources/variants/ultimaker_replicator_smart_extruder_plus_im-pla.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_replicator_plus +name = Smart Extruder+ Tough +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk13_im-pla +setting_version = 25 +type = variant + +[values] +machine_nozzle_id = Smart Extruder+ Tough +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_replicator_smart_extruder_plus_labs.inst.cfg b/resources/variants/ultimaker_replicator_smart_extruder_plus_labs.inst.cfg new file mode 100644 index 0000000000..ba3d237a1a --- /dev/null +++ b/resources/variants/ultimaker_replicator_smart_extruder_plus_labs.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_replicator_plus +name = Smart Extruder+ Experimental +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = mk13_experimental +setting_version = 25 +type = variant + +[values] +machine_nozzle_id = Smart Extruder+ Experimental +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_s3_aa0.25.inst.cfg b/resources/variants/ultimaker_s3_aa0.25.inst.cfg index 67d10fdd5f..8fba759df2 100644 --- a/resources/variants/ultimaker_s3_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa0.8.inst.cfg b/resources/variants/ultimaker_s3_aa0.8.inst.cfg index 68a3eb620d..44c90c0bd5 100644 --- a/resources/variants/ultimaker_s3_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s3_aa04.inst.cfg b/resources/variants/ultimaker_s3_aa04.inst.cfg index 340c5d0f86..e3f4aaff2b 100644 --- a/resources/variants/ultimaker_s3_aa04.inst.cfg +++ b/resources/variants/ultimaker_s3_aa04.inst.cfg @@ -5,13 +5,14 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 +machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 speed_print = 70 diff --git a/resources/variants/ultimaker_s3_bb0.8.inst.cfg b/resources/variants/ultimaker_s3_bb0.8.inst.cfg index a4677452b4..5ee7c27917 100644 --- a/resources/variants/ultimaker_s3_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s3_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s3_bb04.inst.cfg b/resources/variants/ultimaker_s3_bb04.inst.cfg index 79f3f7e8c9..7923a5a28e 100644 --- a/resources/variants/ultimaker_s3_bb04.inst.cfg +++ b/resources/variants/ultimaker_s3_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] @@ -15,6 +15,7 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 +machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s3_cc04.inst.cfg b/resources/variants/ultimaker_s3_cc04.inst.cfg index 3c010ed581..a80e6094fb 100644 --- a/resources/variants/ultimaker_s3_cc04.inst.cfg +++ b/resources/variants/ultimaker_s3_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s3_cc06.inst.cfg b/resources/variants/ultimaker_s3_cc06.inst.cfg index 02d19fd112..51992323f8 100644 --- a/resources/variants/ultimaker_s3_cc06.inst.cfg +++ b/resources/variants/ultimaker_s3_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s3_dd04.inst.cfg b/resources/variants/ultimaker_s3_dd04.inst.cfg index 803ae14982..a4377da366 100644 --- a/resources/variants/ultimaker_s3_dd04.inst.cfg +++ b/resources/variants/ultimaker_s3_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.25.inst.cfg b/resources/variants/ultimaker_s5_aa0.25.inst.cfg index 904c657549..5a9c526221 100644 --- a/resources/variants/ultimaker_s5_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa0.8.inst.cfg b/resources/variants/ultimaker_s5_aa0.8.inst.cfg index 570f335718..49cdf20284 100644 --- a/resources/variants/ultimaker_s5_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_aa04.inst.cfg b/resources/variants/ultimaker_s5_aa04.inst.cfg index fe44ba9d03..69aae0757e 100644 --- a/resources/variants/ultimaker_s5_aa04.inst.cfg +++ b/resources/variants/ultimaker_s5_aa04.inst.cfg @@ -5,13 +5,14 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 +machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 speed_print = 70 diff --git a/resources/variants/ultimaker_s5_aluminum.inst.cfg b/resources/variants/ultimaker_s5_aluminum.inst.cfg index 3d926cbfc5..588b4c06f0 100644 --- a/resources/variants/ultimaker_s5_aluminum.inst.cfg +++ b/resources/variants/ultimaker_s5_aluminum.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb0.8.inst.cfg b/resources/variants/ultimaker_s5_bb0.8.inst.cfg index 92953793fa..b4cd74a008 100644 --- a/resources/variants/ultimaker_s5_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s5_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_bb04.inst.cfg b/resources/variants/ultimaker_s5_bb04.inst.cfg index 77dfccf3bf..294b39b8c7 100644 --- a/resources/variants/ultimaker_s5_bb04.inst.cfg +++ b/resources/variants/ultimaker_s5_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] @@ -15,6 +15,7 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 +machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 speed_prime_tower = =math.ceil(speed_print * 10 / 35) speed_support = =math.ceil(speed_print * 25 / 35) diff --git a/resources/variants/ultimaker_s5_cc04.inst.cfg b/resources/variants/ultimaker_s5_cc04.inst.cfg index de9d490ad8..2e3162a3ee 100644 --- a/resources/variants/ultimaker_s5_cc04.inst.cfg +++ b/resources/variants/ultimaker_s5_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_cc06.inst.cfg b/resources/variants/ultimaker_s5_cc06.inst.cfg index d4cd9c6616..19f6c69e3d 100644 --- a/resources/variants/ultimaker_s5_cc06.inst.cfg +++ b/resources/variants/ultimaker_s5_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_dd04.inst.cfg b/resources/variants/ultimaker_s5_dd04.inst.cfg index 6c0be44f46..a0eb32411c 100644 --- a/resources/variants/ultimaker_s5_dd04.inst.cfg +++ b/resources/variants/ultimaker_s5_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s5_glass.inst.cfg b/resources/variants/ultimaker_s5_glass.inst.cfg index 9cddb47195..7fe056c3d2 100644 --- a/resources/variants/ultimaker_s5_glass.inst.cfg +++ b/resources/variants/ultimaker_s5_glass.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = buildplate -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s6_aa_plus04.inst.cfg b/resources/variants/ultimaker_s6_aa_plus04.inst.cfg new file mode 100644 index 0000000000..5aba46a964 --- /dev/null +++ b/resources/variants/ultimaker_s6_aa_plus04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s6 +name = AA+ 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = AA+ 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed + diff --git a/resources/variants/ultimaker_s6_bb04.inst.cfg b/resources/variants/ultimaker_s6_bb04.inst.cfg new file mode 100644 index 0000000000..756d6fd1d4 --- /dev/null +++ b/resources/variants/ultimaker_s6_bb04.inst.cfg @@ -0,0 +1,19 @@ +[general] +definition = ultimaker_s6 +name = BB 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_heat_up_speed = 1.5 +machine_nozzle_id = BB 0.4 +machine_nozzle_tip_outer_diameter = 1.0 +retraction_amount = 4.5 +support_bottom_height = =layer_height * 2 +support_interface_enable = True +switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker_s6_cc_plus04.inst.cfg b/resources/variants/ultimaker_s6_cc_plus04.inst.cfg new file mode 100644 index 0000000000..61206eb39c --- /dev/null +++ b/resources/variants/ultimaker_s6_cc_plus04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s6 +name = CC+ 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = CC+ 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed + diff --git a/resources/variants/ultimaker_s6_dd04.inst.cfg b/resources/variants/ultimaker_s6_dd04.inst.cfg new file mode 100644 index 0000000000..3125db405e --- /dev/null +++ b/resources/variants/ultimaker_s6_dd04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s6 +name = DD 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = DD 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed + diff --git a/resources/variants/ultimaker_s7_aa0.25.inst.cfg b/resources/variants/ultimaker_s7_aa0.25.inst.cfg index 2654143fb8..6efdcda478 100644 --- a/resources/variants/ultimaker_s7_aa0.25.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa0.8.inst.cfg b/resources/variants/ultimaker_s7_aa0.8.inst.cfg index ffe01b344a..9477b53fe7 100644 --- a/resources/variants/ultimaker_s7_aa0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_aa0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s7_aa04.inst.cfg b/resources/variants/ultimaker_s7_aa04.inst.cfg index 7616226964..ee4ebdceaf 100644 --- a/resources/variants/ultimaker_s7_aa04.inst.cfg +++ b/resources/variants/ultimaker_s7_aa04.inst.cfg @@ -5,13 +5,14 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] brim_width = 7 machine_nozzle_cool_down_speed = 0.9 machine_nozzle_id = AA 0.4 +machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 6.5 speed_print = 70 diff --git a/resources/variants/ultimaker_s7_bb0.8.inst.cfg b/resources/variants/ultimaker_s7_bb0.8.inst.cfg index 2f4fb50a8b..13738e13c8 100644 --- a/resources/variants/ultimaker_s7_bb0.8.inst.cfg +++ b/resources/variants/ultimaker_s7_bb0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s7_bb04.inst.cfg b/resources/variants/ultimaker_s7_bb04.inst.cfg index e44142b3ed..18aa61ff4b 100644 --- a/resources/variants/ultimaker_s7_bb04.inst.cfg +++ b/resources/variants/ultimaker_s7_bb04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] @@ -15,6 +15,7 @@ acceleration_support_bottom = =math.ceil(acceleration_support_interface * 100 / acceleration_support_interface = =math.ceil(acceleration_support * 1500 / 2000) machine_nozzle_heat_up_speed = 1.5 machine_nozzle_id = BB 0.4 +machine_nozzle_size = 0.4 machine_nozzle_tip_outer_diameter = 1.0 retraction_amount = 4.5 speed_prime_tower = =math.ceil(speed_print * 10 / 35) diff --git a/resources/variants/ultimaker_s7_cc04.inst.cfg b/resources/variants/ultimaker_s7_cc04.inst.cfg index 30ffef58b6..2e580983b1 100644 --- a/resources/variants/ultimaker_s7_cc04.inst.cfg +++ b/resources/variants/ultimaker_s7_cc04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s7_cc06.inst.cfg b/resources/variants/ultimaker_s7_cc06.inst.cfg index f752b63cf3..b6047ec2f5 100644 --- a/resources/variants/ultimaker_s7_cc06.inst.cfg +++ b/resources/variants/ultimaker_s7_cc06.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s7_dd04.inst.cfg b/resources/variants/ultimaker_s7_dd04.inst.cfg index 7ea915f610..46bb61afdd 100644 --- a/resources/variants/ultimaker_s7_dd04.inst.cfg +++ b/resources/variants/ultimaker_s7_dd04.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/ultimaker_s8_aa_plus04.inst.cfg b/resources/variants/ultimaker_s8_aa_plus04.inst.cfg new file mode 100644 index 0000000000..d68289d7c3 --- /dev/null +++ b/resources/variants/ultimaker_s8_aa_plus04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s8 +name = AA+ 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = AA+ 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed + diff --git a/resources/variants/ultimaker_s8_bb04.inst.cfg b/resources/variants/ultimaker_s8_bb04.inst.cfg new file mode 100644 index 0000000000..d92874e448 --- /dev/null +++ b/resources/variants/ultimaker_s8_bb04.inst.cfg @@ -0,0 +1,20 @@ +[general] +definition = ultimaker_s8 +name = BB 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_heat_up_speed = 1.5 +machine_nozzle_id = BB 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.0 +retraction_amount = 4.5 +support_bottom_height = =layer_height * 2 +support_interface_enable = True +switch_extruder_retraction_amount = 12 + diff --git a/resources/variants/ultimaker_s8_cc_plus04.inst.cfg b/resources/variants/ultimaker_s8_cc_plus04.inst.cfg new file mode 100644 index 0000000000..ea6ad85600 --- /dev/null +++ b/resources/variants/ultimaker_s8_cc_plus04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s8 +name = CC+ 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = CC+ 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed + diff --git a/resources/variants/ultimaker_s8_dd04.inst.cfg b/resources/variants/ultimaker_s8_dd04.inst.cfg new file mode 100644 index 0000000000..01a24856c4 --- /dev/null +++ b/resources/variants/ultimaker_s8_dd04.inst.cfg @@ -0,0 +1,17 @@ +[general] +definition = ultimaker_s8 +name = DD 0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +machine_nozzle_cool_down_speed = 0.9 +machine_nozzle_id = DD 0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.2 +retraction_prime_speed = =retraction_speed + diff --git a/resources/variants/ultimaker_sketch_0.4mm.inst.cfg b/resources/variants/ultimaker_sketch_0.4mm.inst.cfg new file mode 100644 index 0000000000..99f95a0b7d --- /dev/null +++ b/resources/variants/ultimaker_sketch_0.4mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = sketch_extruder +setting_version = 25 +type = variant + +[values] +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_sketch_large_0.4mm.inst.cfg b/resources/variants/ultimaker_sketch_large_0.4mm.inst.cfg new file mode 100644 index 0000000000..8417892dc7 --- /dev/null +++ b/resources/variants/ultimaker_sketch_large_0.4mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_large +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = sketch_l_extruder +setting_version = 25 +type = variant + +[values] +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/ultimaker_sketch_sprint_0.4mm.inst.cfg b/resources/variants/ultimaker_sketch_sprint_0.4mm.inst.cfg new file mode 100644 index 0000000000..bdee50763f --- /dev/null +++ b/resources/variants/ultimaker_sketch_sprint_0.4mm.inst.cfg @@ -0,0 +1,15 @@ +[general] +definition = ultimaker_sketch_sprint +name = 0.4mm +version = 4 + +[metadata] +hardware_type = nozzle +reference_extruder_id = sketch_sprint_extruder +setting_version = 25 +type = variant + +[values] +machine_nozzle_id = 0.4mm +machine_nozzle_size = 0.4 + diff --git a/resources/variants/uni/uni_200_0.30.inst.cfg b/resources/variants/uni/uni_200_0.30.inst.cfg index 69ea894c63..f41d5f112e 100644 --- a/resources/variants/uni/uni_200_0.30.inst.cfg +++ b/resources/variants/uni/uni_200_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.40.inst.cfg b/resources/variants/uni/uni_200_0.40.inst.cfg index 499866af30..44b35c02a4 100644 --- a/resources/variants/uni/uni_200_0.40.inst.cfg +++ b/resources/variants/uni/uni_200_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_200_0.50.inst.cfg b/resources/variants/uni/uni_200_0.50.inst.cfg index e1948488d3..8344c44f56 100644 --- a/resources/variants/uni/uni_200_0.50.inst.cfg +++ b/resources/variants/uni/uni_200_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.30.inst.cfg b/resources/variants/uni/uni_250_0.30.inst.cfg index 1e2d3e3690..920611264e 100644 --- a/resources/variants/uni/uni_250_0.30.inst.cfg +++ b/resources/variants/uni/uni_250_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.40.inst.cfg b/resources/variants/uni/uni_250_0.40.inst.cfg index 4ae51548ab..f015f13178 100644 --- a/resources/variants/uni/uni_250_0.40.inst.cfg +++ b/resources/variants/uni/uni_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_250_0.50.inst.cfg b/resources/variants/uni/uni_250_0.50.inst.cfg index bd91f0063f..c0864698b3 100644 --- a/resources/variants/uni/uni_250_0.50.inst.cfg +++ b/resources/variants/uni/uni_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.30.inst.cfg b/resources/variants/uni/uni_300_0.30.inst.cfg index 920200412f..031890ee9d 100644 --- a/resources/variants/uni/uni_300_0.30.inst.cfg +++ b/resources/variants/uni/uni_300_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.40.inst.cfg b/resources/variants/uni/uni_300_0.40.inst.cfg index 3d808fc4c0..7a2411b167 100644 --- a/resources/variants/uni/uni_300_0.40.inst.cfg +++ b/resources/variants/uni/uni_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_300_0.50.inst.cfg b/resources/variants/uni/uni_300_0.50.inst.cfg index d391121563..125ec8d405 100644 --- a/resources/variants/uni/uni_300_0.50.inst.cfg +++ b/resources/variants/uni/uni_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.30.inst.cfg b/resources/variants/uni/uni_base_0.30.inst.cfg index e0fec2e1eb..d2cad69645 100644 --- a/resources/variants/uni/uni_base_0.30.inst.cfg +++ b/resources/variants/uni/uni_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.40.inst.cfg b/resources/variants/uni/uni_base_0.40.inst.cfg index 090dd0de50..2e0650536d 100644 --- a/resources/variants/uni/uni_base_0.40.inst.cfg +++ b/resources/variants/uni/uni_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_base_0.50.inst.cfg b/resources/variants/uni/uni_base_0.50.inst.cfg index 094826b97e..94114b9bb9 100644 --- a/resources/variants/uni/uni_base_0.50.inst.cfg +++ b/resources/variants/uni/uni_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.30.inst.cfg b/resources/variants/uni/uni_mini_0.30.inst.cfg index 66adcf1808..332788e501 100644 --- a/resources/variants/uni/uni_mini_0.30.inst.cfg +++ b/resources/variants/uni/uni_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.40.inst.cfg b/resources/variants/uni/uni_mini_0.40.inst.cfg index 0aa9d3e787..fac115f341 100644 --- a/resources/variants/uni/uni_mini_0.40.inst.cfg +++ b/resources/variants/uni/uni_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/uni/uni_mini_0.50.inst.cfg b/resources/variants/uni/uni_mini_0.50.inst.cfg index 68fd46d45f..d9cddda36a 100644 --- a/resources/variants/uni/uni_mini_0.50.inst.cfg +++ b/resources/variants/uni/uni_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg index d3aead1fe3..bae8947624 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg index ea89fd1110..bdde1c7d40 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg index c30afb6068..a32e4e6e6a 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg index a4c832975e..bf5b512c48 100644 --- a/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex2plus_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg index e341327f84..af028d625e 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg index db442efed8..6f9adeb99c 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg index 85e144fc67..7dd6caf541 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg index 63bf4722b0..3aabc818cb 100644 --- a/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg +++ b/resources/variants/vivedino/vivedino_trex3_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg index 1c050856b2..7836856182 100644 --- a/resources/variants/voron/voron0_120_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg index be6ea9cbab..c863d8479c 100644 --- a/resources/variants/voron/voron0_120_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg index e1a6ac0585..26110456cf 100644 --- a/resources/variants/voron/voron0_120_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg index 527524441e..f257c19960 100644 --- a/resources/variants/voron/voron0_120_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg index 30e7438572..ed73999775 100644 --- a/resources/variants/voron/voron0_120_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg index dfd412c82b..50a61ee2f3 100644 --- a/resources/variants/voron/voron0_120_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron0_120_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg index 115fb34cb5..32735de190 100644 --- a/resources/variants/voron/voron2_250_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg index 6d4ac7b9d5..4479a1afe6 100644 --- a/resources/variants/voron/voron2_250_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg index 344b485789..f767802739 100644 --- a/resources/variants/voron/voron2_250_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg index d0f1014583..4c01a2f2f5 100644 --- a/resources/variants/voron/voron2_250_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg index 16723a1fe5..3d16dd26d4 100644 --- a/resources/variants/voron/voron2_250_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg index 9e4c7061eb..5d344041c3 100644 --- a/resources/variants/voron/voron2_250_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg index 9841269b46..edec7f315c 100644 --- a/resources/variants/voron/voron2_250_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg index 700a55fecb..936d652905 100644 --- a/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg index c87b19d995..526bfc3c71 100644 --- a/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg index 327bbb42a8..81c4c2a06f 100644 --- a/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg index 8329f46a89..5e802e42cd 100644 --- a/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg index dd51720e8e..f30da06bd5 100644 --- a/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_250_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg index bcac7fb2cb..6b6be5840b 100644 --- a/resources/variants/voron/voron2_300_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg index cb37b9bb50..25216bb037 100644 --- a/resources/variants/voron/voron2_300_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg index 334d665eb2..008c13b83b 100644 --- a/resources/variants/voron/voron2_300_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg index 584f52bd6c..d2b6aa120e 100644 --- a/resources/variants/voron/voron2_300_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg index ee394e8e02..95fce8127d 100644 --- a/resources/variants/voron/voron2_300_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg index 9b83eb69b4..2cd703c0bb 100644 --- a/resources/variants/voron/voron2_300_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg index e027745876..fba19dbdc5 100644 --- a/resources/variants/voron/voron2_300_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg index 0b905e7f38..3e69d1afb6 100644 --- a/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg index e9788c559c..41eff018a6 100644 --- a/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg index ea1154d368..85fca88458 100644 --- a/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg index b1fe306794..6ec27356e7 100644 --- a/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg index 5d0d2bc2ba..1f0240135b 100644 --- a/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_300_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg index 747fc478ec..f97f9ff56b 100644 --- a/resources/variants/voron/voron2_350_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg index 4ed5b5f478..acf81a1d15 100644 --- a/resources/variants/voron/voron2_350_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg index e4cefb2673..bbb312d887 100644 --- a/resources/variants/voron/voron2_350_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg index cf3189d2d8..dad9aaed71 100644 --- a/resources/variants/voron/voron2_350_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg index 1d5840d134..b892a8fa40 100644 --- a/resources/variants/voron/voron2_350_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg index 0f2f798723..2bbab5c241 100644 --- a/resources/variants/voron/voron2_350_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg index 092ebaf869..737e998f0f 100644 --- a/resources/variants/voron/voron2_350_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg index c4e67a6e4b..4f33208b4e 100644 --- a/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg index e214e4a39a..521f9c4752 100644 --- a/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg index 16fb67b22f..db78bbf87d 100644 --- a/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg index 603ca7f7f5..15343bec2a 100644 --- a/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg index e8289b7588..5e4741246c 100644 --- a/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_350_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg index a640cb732d..4a2927ac52 100644 --- a/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg index 2574e3e45c..74b6f47cef 100644 --- a/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg index 26e7ac3149..5eec3fd9c6 100644 --- a/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg index d6eb771afa..ecb2ee5cfa 100644 --- a/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg index 310833dbc0..f86077efb2 100644 --- a/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg index 05aaa43d32..7d19ffb7a6 100644 --- a/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg index e662fd7edf..c6b7341a8d 100644 --- a/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_v6_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg index 61b74ca313..d5f25225ba 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg index 4b533d4b6a..bddf9be306 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg index 2b66bd9a3c..199dad250b 100644 --- a/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg index ccb7fd0776..fe0a1c6b25 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg index 0c83605ce1..7bd2341034 100644 --- a/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg +++ b/resources/variants/voron/voron2_custom_volcano_1.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.25.inst.cfg b/resources/variants/voron/voron_trident_250_0.25.inst.cfg index 20c74f4145..886600ac11 100644 --- a/resources/variants/voron/voron_trident_250_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.40.inst.cfg b/resources/variants/voron/voron_trident_250_0.40.inst.cfg index 2c8a35bc3a..a393a32e86 100644 --- a/resources/variants/voron/voron_trident_250_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.50.inst.cfg b/resources/variants/voron/voron_trident_250_0.50.inst.cfg index ca6224ff72..90cd1b87c6 100644 --- a/resources/variants/voron/voron_trident_250_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.60.inst.cfg b/resources/variants/voron/voron_trident_250_0.60.inst.cfg index 2487a87fa1..f9075c98be 100644 --- a/resources/variants/voron/voron_trident_250_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_250_0.80.inst.cfg b/resources/variants/voron/voron_trident_250_0.80.inst.cfg index c513b2ccb3..78bdc2c163 100644 --- a/resources/variants/voron/voron_trident_250_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_250_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.25.inst.cfg b/resources/variants/voron/voron_trident_300_0.25.inst.cfg index 120e03f615..16a1493436 100644 --- a/resources/variants/voron/voron_trident_300_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.40.inst.cfg b/resources/variants/voron/voron_trident_300_0.40.inst.cfg index 2c522afeb6..56784c4020 100644 --- a/resources/variants/voron/voron_trident_300_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.50.inst.cfg b/resources/variants/voron/voron_trident_300_0.50.inst.cfg index 3ab11833a5..ae05693aee 100644 --- a/resources/variants/voron/voron_trident_300_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.60.inst.cfg b/resources/variants/voron/voron_trident_300_0.60.inst.cfg index 1623f6c293..9892f8080a 100644 --- a/resources/variants/voron/voron_trident_300_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_300_0.80.inst.cfg b/resources/variants/voron/voron_trident_300_0.80.inst.cfg index 45aafd8265..55600a1129 100644 --- a/resources/variants/voron/voron_trident_300_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_300_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.25.inst.cfg b/resources/variants/voron/voron_trident_350_0.25.inst.cfg index 3ae6061c8b..f7e1456a01 100644 --- a/resources/variants/voron/voron_trident_350_0.25.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.40.inst.cfg b/resources/variants/voron/voron_trident_350_0.40.inst.cfg index dee2a7ba3d..929e547115 100644 --- a/resources/variants/voron/voron_trident_350_0.40.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.50.inst.cfg b/resources/variants/voron/voron_trident_350_0.50.inst.cfg index 7a058f6d24..267cc2fc01 100644 --- a/resources/variants/voron/voron_trident_350_0.50.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.60.inst.cfg b/resources/variants/voron/voron_trident_350_0.60.inst.cfg index 910119a1ab..4c63b22514 100644 --- a/resources/variants/voron/voron_trident_350_0.60.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/voron/voron_trident_350_0.80.inst.cfg b/resources/variants/voron/voron_trident_350_0.80.inst.cfg index 28780c7817..046d84a84c 100644 --- a/resources/variants/voron/voron_trident_350_0.80.inst.cfg +++ b/resources/variants/voron/voron_trident_350_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg index a9257c1330..d33daf72d1 100644 --- a/resources/variants/vzbot/vzbot_235_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg index f7465c1b0f..ccf36b5fed 100644 --- a/resources/variants/vzbot/vzbot_235_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg index 5e6946a90e..6c81521422 100644 --- a/resources/variants/vzbot/vzbot_235_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg index 431859e537..49582942f5 100644 --- a/resources/variants/vzbot/vzbot_235_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg index a1b50cd27d..1414bba5ca 100644 --- a/resources/variants/vzbot/vzbot_235_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg index fe74be22a5..c64f50c332 100644 --- a/resources/variants/vzbot/vzbot_235_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg index 05c8252433..5dce2ec759 100644 --- a/resources/variants/vzbot/vzbot_235_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_235_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg index c24abe0c1e..5f0eceeb34 100644 --- a/resources/variants/vzbot/vzbot_330_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg index c660618cb6..e9baf16427 100644 --- a/resources/variants/vzbot/vzbot_330_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg index 628179d054..a2dc449cdb 100644 --- a/resources/variants/vzbot/vzbot_330_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg index 2cd1016035..d8e5a9b0b4 100644 --- a/resources/variants/vzbot/vzbot_330_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg index b4dd2d553b..a5bd56a784 100644 --- a/resources/variants/vzbot/vzbot_330_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg index 763c2896ef..4f518590e5 100644 --- a/resources/variants/vzbot/vzbot_330_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg index 81e8965c38..6a463f31d5 100644 --- a/resources/variants/vzbot/vzbot_330_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_330_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg index 8f222cf3b6..f779a21f15 100644 --- a/resources/variants/vzbot/vzbot_base_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg index 6d0ca279d4..bd39609d26 100644 --- a/resources/variants/vzbot/vzbot_base_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg index c96251e4de..088e1326c5 100644 --- a/resources/variants/vzbot/vzbot_base_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg index 5f423faf6d..1f1186961a 100644 --- a/resources/variants/vzbot/vzbot_base_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg index b6a7ba7cd2..4540249e90 100644 --- a/resources/variants/vzbot/vzbot_base_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg index f1f8ce8dde..16ba1403c9 100644 --- a/resources/variants/vzbot/vzbot_base_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg index d6e97c5dc6..852bb6f363 100644 --- a/resources/variants/vzbot/vzbot_base_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_base_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg index 842899a87d..1707a0af53 100644 --- a/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.2.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg index e4d1d430be..e88d02c737 100644 --- a/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.3.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg index 0deed9bddc..fc535322a2 100644 --- a/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg index 2c1b78428d..316c89361e 100644 --- a/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.5.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg index 4497514788..8aedbcd947 100644 --- a/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg index 8c9fc89fde..8c10c3ff96 100644 --- a/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg index 6c068f79b1..502621d82f 100644 --- a/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg +++ b/resources/variants/vzbot/vzbot_custom_1.0.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg index 9d05b2fb23..81acee0860 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.4.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg index 815369bc27..7b1132eea7 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.6.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg index da97849b69..b513b9d3e7 100644 --- a/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg +++ b/resources/variants/weedo/weedo_x40_weedo_0.8.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg index 17e90ab90e..8081712dcb 100644 --- a/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg index 020b6c5a43..cd8e2bd5db 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_1p0_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg index cf7cbea347..8d6531b9c1 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg index 9f40514694..e3ad92863d 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_1p0a_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg index a6e75293f3..4439efd79d 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg index 70b3254b58..7b0d3a7e5e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xeplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg index 9a064a3773..a0bf601a5e 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg index bc19df88e0..fc592ea3a8 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_pro_xplus_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg index b9d1015754..758fd7d8ab 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg index eb89d9c434..8b76cf81a3 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_jr_w_pro_ss_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg index b2e4e94d33..f16b13d1fb 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg index 13c4eadee7..14869f952b 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_pro_evo_hsht_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg index fab6b115f0..783ed0043f 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_copper_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg index 0614a7c60a..cc067730ea 100644 --- a/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg +++ b/resources/variants/xyz_printing/xyzprinting_da_vinci_super_hs_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.20.inst.cfg b/resources/variants/zav/zav_base_0.20.inst.cfg index ad0e738e39..ad65be1cdc 100644 --- a/resources/variants/zav/zav_base_0.20.inst.cfg +++ b/resources/variants/zav/zav_base_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.25.inst.cfg b/resources/variants/zav/zav_base_0.25.inst.cfg index f383c876ef..3660b0782d 100644 --- a/resources/variants/zav/zav_base_0.25.inst.cfg +++ b/resources/variants/zav/zav_base_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.30.inst.cfg b/resources/variants/zav/zav_base_0.30.inst.cfg index 65da7fa142..0e547b9a45 100644 --- a/resources/variants/zav/zav_base_0.30.inst.cfg +++ b/resources/variants/zav/zav_base_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.35.inst.cfg b/resources/variants/zav/zav_base_0.35.inst.cfg index a2dfed7389..a6cdaa62d4 100644 --- a/resources/variants/zav/zav_base_0.35.inst.cfg +++ b/resources/variants/zav/zav_base_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.40.inst.cfg b/resources/variants/zav/zav_base_0.40.inst.cfg index 8a9ae2ab91..23365ac094 100644 --- a/resources/variants/zav/zav_base_0.40.inst.cfg +++ b/resources/variants/zav/zav_base_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.45.inst.cfg b/resources/variants/zav/zav_base_0.45.inst.cfg index 9df3434ecf..300cd62dfb 100644 --- a/resources/variants/zav/zav_base_0.45.inst.cfg +++ b/resources/variants/zav/zav_base_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.50.inst.cfg b/resources/variants/zav/zav_base_0.50.inst.cfg index 4e94f54a22..0c07ce36ad 100644 --- a/resources/variants/zav/zav_base_0.50.inst.cfg +++ b/resources/variants/zav/zav_base_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.60.inst.cfg b/resources/variants/zav/zav_base_0.60.inst.cfg index 5198dc479a..08d02ff1e2 100644 --- a/resources/variants/zav/zav_base_0.60.inst.cfg +++ b/resources/variants/zav/zav_base_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_0.80.inst.cfg b/resources/variants/zav/zav_base_0.80.inst.cfg index 4fc53197d4..3e2d34e226 100644 --- a/resources/variants/zav/zav_base_0.80.inst.cfg +++ b/resources/variants/zav/zav_base_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_base_1.00.inst.cfg b/resources/variants/zav/zav_base_1.00.inst.cfg index a4995d2ad0..a1d1fcfd3f 100644 --- a/resources/variants/zav/zav_base_1.00.inst.cfg +++ b/resources/variants/zav/zav_base_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.20.inst.cfg b/resources/variants/zav/zav_big_0.20.inst.cfg index 10fd2eaf80..b35924cdf5 100644 --- a/resources/variants/zav/zav_big_0.20.inst.cfg +++ b/resources/variants/zav/zav_big_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.25.inst.cfg b/resources/variants/zav/zav_big_0.25.inst.cfg index d52f66eb51..17e12560f4 100644 --- a/resources/variants/zav/zav_big_0.25.inst.cfg +++ b/resources/variants/zav/zav_big_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.30.inst.cfg b/resources/variants/zav/zav_big_0.30.inst.cfg index 70a15fb6a1..01bc1811d2 100644 --- a/resources/variants/zav/zav_big_0.30.inst.cfg +++ b/resources/variants/zav/zav_big_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.35.inst.cfg b/resources/variants/zav/zav_big_0.35.inst.cfg index d57c6c0fef..a50db87351 100644 --- a/resources/variants/zav/zav_big_0.35.inst.cfg +++ b/resources/variants/zav/zav_big_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.40.inst.cfg b/resources/variants/zav/zav_big_0.40.inst.cfg index bb82e0db54..188cae2bdc 100644 --- a/resources/variants/zav/zav_big_0.40.inst.cfg +++ b/resources/variants/zav/zav_big_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.45.inst.cfg b/resources/variants/zav/zav_big_0.45.inst.cfg index 904d4911e2..0ab9b17ed8 100644 --- a/resources/variants/zav/zav_big_0.45.inst.cfg +++ b/resources/variants/zav/zav_big_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.50.inst.cfg b/resources/variants/zav/zav_big_0.50.inst.cfg index 00de9e8790..0d72679267 100644 --- a/resources/variants/zav/zav_big_0.50.inst.cfg +++ b/resources/variants/zav/zav_big_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.60.inst.cfg b/resources/variants/zav/zav_big_0.60.inst.cfg index 67c856f703..75ed595707 100644 --- a/resources/variants/zav/zav_big_0.60.inst.cfg +++ b/resources/variants/zav/zav_big_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_0.80.inst.cfg b/resources/variants/zav/zav_big_0.80.inst.cfg index 0b18636938..81ab6eec68 100644 --- a/resources/variants/zav/zav_big_0.80.inst.cfg +++ b/resources/variants/zav/zav_big_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_big_1.00.inst.cfg b/resources/variants/zav/zav_big_1.00.inst.cfg index a726d9d05b..1b33f7b938 100644 --- a/resources/variants/zav/zav_big_1.00.inst.cfg +++ b/resources/variants/zav/zav_big_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.20.inst.cfg b/resources/variants/zav/zav_bigplus_0.20.inst.cfg index 331dd6f067..1bf5be8d3d 100644 --- a/resources/variants/zav/zav_bigplus_0.20.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.25.inst.cfg b/resources/variants/zav/zav_bigplus_0.25.inst.cfg index 8097438232..34afd1febe 100644 --- a/resources/variants/zav/zav_bigplus_0.25.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.30.inst.cfg b/resources/variants/zav/zav_bigplus_0.30.inst.cfg index 838d6f4394..01b569cec9 100644 --- a/resources/variants/zav/zav_bigplus_0.30.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.35.inst.cfg b/resources/variants/zav/zav_bigplus_0.35.inst.cfg index 1525949e3b..61d27ca3f3 100644 --- a/resources/variants/zav/zav_bigplus_0.35.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.40.inst.cfg b/resources/variants/zav/zav_bigplus_0.40.inst.cfg index b463d344ad..97f179afa4 100644 --- a/resources/variants/zav/zav_bigplus_0.40.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.45.inst.cfg b/resources/variants/zav/zav_bigplus_0.45.inst.cfg index 15b91bf090..bd53a2dcf4 100644 --- a/resources/variants/zav/zav_bigplus_0.45.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.50.inst.cfg b/resources/variants/zav/zav_bigplus_0.50.inst.cfg index 7fbdcae3dc..cf1111c2f0 100644 --- a/resources/variants/zav/zav_bigplus_0.50.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.60.inst.cfg b/resources/variants/zav/zav_bigplus_0.60.inst.cfg index a017964412..2a52e3a0f2 100644 --- a/resources/variants/zav/zav_bigplus_0.60.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_0.80.inst.cfg b/resources/variants/zav/zav_bigplus_0.80.inst.cfg index 7d05464c35..c818e561e7 100644 --- a/resources/variants/zav/zav_bigplus_0.80.inst.cfg +++ b/resources/variants/zav/zav_bigplus_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_bigplus_1.00.inst.cfg b/resources/variants/zav/zav_bigplus_1.00.inst.cfg index 9df217c9d2..11b20a8de9 100644 --- a/resources/variants/zav/zav_bigplus_1.00.inst.cfg +++ b/resources/variants/zav/zav_bigplus_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.20.inst.cfg b/resources/variants/zav/zav_l_0.20.inst.cfg index 36c221e17e..2c39b3ccfc 100644 --- a/resources/variants/zav/zav_l_0.20.inst.cfg +++ b/resources/variants/zav/zav_l_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.25.inst.cfg b/resources/variants/zav/zav_l_0.25.inst.cfg index 5c70cc59e2..bcf563448c 100644 --- a/resources/variants/zav/zav_l_0.25.inst.cfg +++ b/resources/variants/zav/zav_l_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.30.inst.cfg b/resources/variants/zav/zav_l_0.30.inst.cfg index b3b27911ac..7cf1c6ca04 100644 --- a/resources/variants/zav/zav_l_0.30.inst.cfg +++ b/resources/variants/zav/zav_l_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.35.inst.cfg b/resources/variants/zav/zav_l_0.35.inst.cfg index 363456995d..62bafd7005 100644 --- a/resources/variants/zav/zav_l_0.35.inst.cfg +++ b/resources/variants/zav/zav_l_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.40.inst.cfg b/resources/variants/zav/zav_l_0.40.inst.cfg index c6669ad9a4..e8ae856487 100644 --- a/resources/variants/zav/zav_l_0.40.inst.cfg +++ b/resources/variants/zav/zav_l_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.45.inst.cfg b/resources/variants/zav/zav_l_0.45.inst.cfg index 65db0556ea..bf4a47ae1d 100644 --- a/resources/variants/zav/zav_l_0.45.inst.cfg +++ b/resources/variants/zav/zav_l_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.50.inst.cfg b/resources/variants/zav/zav_l_0.50.inst.cfg index e3f2ef936d..46e1753736 100644 --- a/resources/variants/zav/zav_l_0.50.inst.cfg +++ b/resources/variants/zav/zav_l_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.60.inst.cfg b/resources/variants/zav/zav_l_0.60.inst.cfg index 4931819d79..01be11a2c9 100644 --- a/resources/variants/zav/zav_l_0.60.inst.cfg +++ b/resources/variants/zav/zav_l_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_0.80.inst.cfg b/resources/variants/zav/zav_l_0.80.inst.cfg index e142040df6..3e851daf47 100644 --- a/resources/variants/zav/zav_l_0.80.inst.cfg +++ b/resources/variants/zav/zav_l_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_l_1.00.inst.cfg b/resources/variants/zav/zav_l_1.00.inst.cfg index 32bd8bc3ab..ce0f6792aa 100644 --- a/resources/variants/zav/zav_l_1.00.inst.cfg +++ b/resources/variants/zav/zav_l_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.20.inst.cfg b/resources/variants/zav/zav_max_0.20.inst.cfg index b7d24f2b1b..e936728597 100644 --- a/resources/variants/zav/zav_max_0.20.inst.cfg +++ b/resources/variants/zav/zav_max_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.25.inst.cfg b/resources/variants/zav/zav_max_0.25.inst.cfg index d3b54f4cbd..0994363cad 100644 --- a/resources/variants/zav/zav_max_0.25.inst.cfg +++ b/resources/variants/zav/zav_max_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.30.inst.cfg b/resources/variants/zav/zav_max_0.30.inst.cfg index cc335e2d23..57285bbb3c 100644 --- a/resources/variants/zav/zav_max_0.30.inst.cfg +++ b/resources/variants/zav/zav_max_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.35.inst.cfg b/resources/variants/zav/zav_max_0.35.inst.cfg index a5daa9a266..540845f89a 100644 --- a/resources/variants/zav/zav_max_0.35.inst.cfg +++ b/resources/variants/zav/zav_max_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.40.inst.cfg b/resources/variants/zav/zav_max_0.40.inst.cfg index f0d48219f4..529c512edc 100644 --- a/resources/variants/zav/zav_max_0.40.inst.cfg +++ b/resources/variants/zav/zav_max_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.45.inst.cfg b/resources/variants/zav/zav_max_0.45.inst.cfg index 1ec70c2d33..eb71b536cb 100644 --- a/resources/variants/zav/zav_max_0.45.inst.cfg +++ b/resources/variants/zav/zav_max_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.50.inst.cfg b/resources/variants/zav/zav_max_0.50.inst.cfg index 6e3c61c142..f7323dc1d8 100644 --- a/resources/variants/zav/zav_max_0.50.inst.cfg +++ b/resources/variants/zav/zav_max_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.60.inst.cfg b/resources/variants/zav/zav_max_0.60.inst.cfg index 56dcfa5b4e..db0d4a6f8a 100644 --- a/resources/variants/zav/zav_max_0.60.inst.cfg +++ b/resources/variants/zav/zav_max_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_0.80.inst.cfg b/resources/variants/zav/zav_max_0.80.inst.cfg index 7899a7d321..5d7ba059b1 100644 --- a/resources/variants/zav/zav_max_0.80.inst.cfg +++ b/resources/variants/zav/zav_max_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_max_1.00.inst.cfg b/resources/variants/zav/zav_max_1.00.inst.cfg index c14b0b25a0..9fc0a7e461 100644 --- a/resources/variants/zav/zav_max_1.00.inst.cfg +++ b/resources/variants/zav/zav_max_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.20.inst.cfg b/resources/variants/zav/zav_maxpro_0.20.inst.cfg index 2f693153e2..145268ba89 100644 --- a/resources/variants/zav/zav_maxpro_0.20.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.25.inst.cfg b/resources/variants/zav/zav_maxpro_0.25.inst.cfg index 07b3cbb299..5f3482e57f 100644 --- a/resources/variants/zav/zav_maxpro_0.25.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.30.inst.cfg b/resources/variants/zav/zav_maxpro_0.30.inst.cfg index becb97fbaf..2266b04ad3 100644 --- a/resources/variants/zav/zav_maxpro_0.30.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.35.inst.cfg b/resources/variants/zav/zav_maxpro_0.35.inst.cfg index bf9ad26e28..69efd4e6f8 100644 --- a/resources/variants/zav/zav_maxpro_0.35.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.40.inst.cfg b/resources/variants/zav/zav_maxpro_0.40.inst.cfg index bd99c76885..c86db6074a 100644 --- a/resources/variants/zav/zav_maxpro_0.40.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.45.inst.cfg b/resources/variants/zav/zav_maxpro_0.45.inst.cfg index 8848639582..6b3d899822 100644 --- a/resources/variants/zav/zav_maxpro_0.45.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.50.inst.cfg b/resources/variants/zav/zav_maxpro_0.50.inst.cfg index 9aba2b9fbb..b1ba70cc6e 100644 --- a/resources/variants/zav/zav_maxpro_0.50.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.60.inst.cfg b/resources/variants/zav/zav_maxpro_0.60.inst.cfg index 027a4fc96a..272f27fee5 100644 --- a/resources/variants/zav/zav_maxpro_0.60.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_0.80.inst.cfg b/resources/variants/zav/zav_maxpro_0.80.inst.cfg index 1ef39b3663..a663594c8e 100644 --- a/resources/variants/zav/zav_maxpro_0.80.inst.cfg +++ b/resources/variants/zav/zav_maxpro_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_maxpro_1.00.inst.cfg b/resources/variants/zav/zav_maxpro_1.00.inst.cfg index 15872422f6..b5ffd99138 100644 --- a/resources/variants/zav/zav_maxpro_1.00.inst.cfg +++ b/resources/variants/zav/zav_maxpro_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.20.inst.cfg b/resources/variants/zav/zav_mini_0.20.inst.cfg index f66717ae19..d2034e90dd 100644 --- a/resources/variants/zav/zav_mini_0.20.inst.cfg +++ b/resources/variants/zav/zav_mini_0.20.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.25.inst.cfg b/resources/variants/zav/zav_mini_0.25.inst.cfg index fe43c80041..8d8e767913 100644 --- a/resources/variants/zav/zav_mini_0.25.inst.cfg +++ b/resources/variants/zav/zav_mini_0.25.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.30.inst.cfg b/resources/variants/zav/zav_mini_0.30.inst.cfg index d393760b57..3508029910 100644 --- a/resources/variants/zav/zav_mini_0.30.inst.cfg +++ b/resources/variants/zav/zav_mini_0.30.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.35.inst.cfg b/resources/variants/zav/zav_mini_0.35.inst.cfg index f33ef12e6f..c1949bce4a 100644 --- a/resources/variants/zav/zav_mini_0.35.inst.cfg +++ b/resources/variants/zav/zav_mini_0.35.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.40.inst.cfg b/resources/variants/zav/zav_mini_0.40.inst.cfg index 3d16bc3a11..4466eef61a 100644 --- a/resources/variants/zav/zav_mini_0.40.inst.cfg +++ b/resources/variants/zav/zav_mini_0.40.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.45.inst.cfg b/resources/variants/zav/zav_mini_0.45.inst.cfg index 827aa1fe3b..5f2bfe20ad 100644 --- a/resources/variants/zav/zav_mini_0.45.inst.cfg +++ b/resources/variants/zav/zav_mini_0.45.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.50.inst.cfg b/resources/variants/zav/zav_mini_0.50.inst.cfg index 70e5fe2fd7..94aecb9fbd 100644 --- a/resources/variants/zav/zav_mini_0.50.inst.cfg +++ b/resources/variants/zav/zav_mini_0.50.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.60.inst.cfg b/resources/variants/zav/zav_mini_0.60.inst.cfg index d7f4915d17..b434cde978 100644 --- a/resources/variants/zav/zav_mini_0.60.inst.cfg +++ b/resources/variants/zav/zav_mini_0.60.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_0.80.inst.cfg b/resources/variants/zav/zav_mini_0.80.inst.cfg index f1518d7e77..99197aa779 100644 --- a/resources/variants/zav/zav_mini_0.80.inst.cfg +++ b/resources/variants/zav/zav_mini_0.80.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zav/zav_mini_1.00.inst.cfg b/resources/variants/zav/zav_mini_1.00.inst.cfg index 3e85f4c25f..17f07de28d 100644 --- a/resources/variants/zav/zav_mini_1.00.inst.cfg +++ b/resources/variants/zav/zav_mini_1.00.inst.cfg @@ -5,7 +5,7 @@ version = 4 [metadata] hardware_type = nozzle -setting_version = 23 +setting_version = 25 type = variant [values] diff --git a/resources/variants/zyyx/zyyx_pro_carbon0.6.inst.cfg b/resources/variants/zyyx/zyyx_pro_carbon0.6.inst.cfg new file mode 100644 index 0000000000..461dc8d9ed --- /dev/null +++ b/resources/variants/zyyx/zyyx_pro_carbon0.6.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = zyyx_pro +name = Carbon0.6 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +machine_nozzle_id = Carbon0.6 +machine_nozzle_size = 0.6 +machine_nozzle_tip_outer_diameter = 1.8 +speed_travel = 100 + diff --git a/resources/variants/zyyx/zyyx_pro_carbon1.2.inst.cfg b/resources/variants/zyyx/zyyx_pro_carbon1.2.inst.cfg new file mode 100644 index 0000000000..eff22101c2 --- /dev/null +++ b/resources/variants/zyyx/zyyx_pro_carbon1.2.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = zyyx_pro +name = Carbon1.2 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +machine_nozzle_id = Carbon1.2 +machine_nozzle_size = 1.2 +machine_nozzle_tip_outer_diameter = 1.8 +speed_travel = 100 + diff --git a/resources/variants/zyyx/zyyx_pro_multi0.2.inst.cfg b/resources/variants/zyyx/zyyx_pro_multi0.2.inst.cfg new file mode 100644 index 0000000000..8d2055fcff --- /dev/null +++ b/resources/variants/zyyx/zyyx_pro_multi0.2.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = zyyx_pro +name = Multi0.2 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +machine_nozzle_id = Multi0.2 +machine_nozzle_size = 0.2 +machine_nozzle_tip_outer_diameter = 1.6 +speed_travel = 80 + diff --git a/resources/variants/zyyx/zyyx_pro_multi0.4.inst.cfg b/resources/variants/zyyx/zyyx_pro_multi0.4.inst.cfg new file mode 100644 index 0000000000..d5cc24b271 --- /dev/null +++ b/resources/variants/zyyx/zyyx_pro_multi0.4.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = zyyx_pro +name = Multi0.4 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +machine_nozzle_id = Multi0.4 +machine_nozzle_size = 0.4 +machine_nozzle_tip_outer_diameter = 1.8 +speed_travel = 100 + diff --git a/resources/variants/zyyx/zyyx_pro_multi0.8.inst.cfg b/resources/variants/zyyx/zyyx_pro_multi0.8.inst.cfg new file mode 100644 index 0000000000..36629604d9 --- /dev/null +++ b/resources/variants/zyyx/zyyx_pro_multi0.8.inst.cfg @@ -0,0 +1,18 @@ +[general] +definition = zyyx_pro +name = Multi0.8 +version = 4 + +[metadata] +hardware_type = nozzle +setting_version = 25 +type = variant + +[values] +acceleration_enabled = True # No effect on print, only for better print time prediction +acceleration_print = 1000 +machine_nozzle_id = Multi0.8 +machine_nozzle_size = 0.6 +machine_nozzle_tip_outer_diameter = 1.8 +speed_travel = 100 + diff --git a/scripts/extract_changelog.py b/scripts/extract_changelog.py index a1a0b251f0..934b963e0a 100644 --- a/scripts/extract_changelog.py +++ b/scripts/extract_changelog.py @@ -13,7 +13,7 @@ if __name__ == "__main__": args.version = args.version[:-2] start_token = f"[{args.version}]" - pattern_stop_log = "\[\d+(\.\d+){1,2}\]" + pattern_stop_log = r"\[\d+(\.\d+){1,2}\]" log_line = False first_chapter = True diff --git a/scripts/fix_lokalize_translations.sh b/scripts/fix_lokalize_translations.sh new file mode 100755 index 0000000000..b97b74bd28 --- /dev/null +++ b/scripts/fix_lokalize_translations.sh @@ -0,0 +1,12 @@ +#! /bin/bash + +default_i18n_dir="../resources/i18n" +i18n_dir=${1:-$default_i18n_dir} + +for language_dir in "$i18n_dir"/*; do + if [[ -d "$language_dir" ]]; then + for language_file in "$language_dir"/*.po; do + sed -i "/#, fuzzy/d" "$language_file" + done + fi +done diff --git a/scripts/get_pypi_hashes.py b/scripts/get_pypi_hashes.py new file mode 100755 index 0000000000..cd11312932 --- /dev/null +++ b/scripts/get_pypi_hashes.py @@ -0,0 +1,26 @@ +import requests +import argparse +from pathlib import Path + + +def get_package_wheel_hashes(package, version, os): + url = f"https://pypi.org/pypi/{package}/{version}/json" + data = requests.get(url).json() + + print(f" {package}:") + print(f" version: \"{version}\"") + print(f" hashes:") + + for url in data["urls"]: + if os is None or os in url["filename"]: + print(f" - sha256:{url['digests']['sha256']}") + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Display the hashes of the wheel files to be inserted in pip_requirements") + parser.add_argument("package", type=Path, help="Name of the target package") + parser.add_argument("version", type=Path, help="Version of the target package") + parser.add_argument('--os', type=str, help='Specific package OS', choices=['win', 'macosx', 'manylinux', 'musllinux']) + args = parser.parse_args() + get_package_wheel_hashes(args.package, args.version, args.os) diff --git a/tests/API/TestAccount.py b/tests/API/TestAccount.py index 9d62646eff..26da8d04cd 100644 --- a/tests/API/TestAccount.py +++ b/tests/API/TestAccount.py @@ -80,12 +80,12 @@ def test_errorLoginState(application): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): # Don't want triggers for account information to actually make HTTP requests. account._onLoginStateChanged(True, "BLARG!") # Even though we said that the login worked, it had an error message, so the login failed. - account.loginStateChanged.emit.called_with(False) + account.loginStateChanged.emit.assert_called_with(False) with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance"): account._onLoginStateChanged(True) account._onLoginStateChanged(False, "OMGZOMG!") - account.loginStateChanged.emit.called_with(False) + account.loginStateChanged.emit.assert_called_with(False) def test_sync_success(): account = Account(MagicMock()) diff --git a/tests/Machines/TestStartEndGCode.py b/tests/Machines/TestStartEndGCode.py new file mode 100644 index 0000000000..611567bacd --- /dev/null +++ b/tests/Machines/TestStartEndGCode.py @@ -0,0 +1,318 @@ +# Copyright (c) 2024 Ultimaker B.V. +# Cura is released under the terms of the LGPLv3 or higher. + +import pytest +from unittest.mock import MagicMock + +from plugins.CuraEngineBackend.StartSliceJob import GcodeStartEndFormatter + + +class MockValueProvider: + ## Creates a mock value provider. + # + # This initialises a dictionary with key-value pairs. + def __init__(self, values): + self._values = values + + ## Provides a value. + # + # \param name The key of the value to provide. + def getProperty(self, key, property_name, context = None): + if not (key in self._values): + return None + return self._values[key] + +extruder_0_values = { + "material_temperature": 190.0 +} + +extruder_1_values = { + "material_temperature": 210.0 +} + +global_values = { + "bed_temperature": 50.0, + "initial_extruder": 0 +} + +extruder_0_provider = MockValueProvider(extruder_0_values) +extruder_1_provider = MockValueProvider(extruder_1_values) + +all_extruder_settings = {"-1": global_values, "0": extruder_0_values, "1": extruder_1_values} + +test_cases = [ + ('Static code', None, 'G0', 'G0'), + + ('Basic replacement', None, 'M128 {bed_temperature}', 'M128 50.0'), + + ( + 'Conditional expression with global setting', + None, +'''{if bed_temperature > 30} +G123 +{else} +G456 +{endif}''', +'''G123 +''' + ), + + ( + 'Conditional expression with extruder setting directly specified by index 0', + None, +'''{if material_temperature > 200, 0} +G10 +{else} +G20 +{endif}''', +'''G20 +''' + ), + ( + 'Conditional expression with extruder setting directly specified by index 1', + None, +'''{if material_temperature > 200, 1} +G100 +{else} +G200 +{endif}''', +'''G100 +''' + ), + + ( + 'Conditional expression with extruder index specified by setting', + None, +'''{if material_temperature > 200, initial_extruder} +G1000 +{else} +G2000 +{endif}''', +'''G2000 +''' + ), + + ( + 'Conditional expression with extruder index specified by formula', + None, +'''{if material_temperature > 200, (initial_extruder + 1) % 2} +X1000 +{else} +X2000 +{endif}''', +'''X1000 +''' + ), + + ( + 'Conditional expression with elsif', + None, +'''{if bed_temperature < 30} +T30 +{elif bed_temperature >= 30 and bed_temperature < 40} +T40 +{elif bed_temperature >= 40 and bed_temperature < 50} +T50 +{elif bed_temperature >= 50 and bed_temperature < 60} +T60 +{elif bed_temperature >= 60 and bed_temperature < 70} +T70 +{else} +T-800 +{endif}''', +'''T60 +''' + ), + + ( + 'Formula inside a conditional expression', + None, +'''{if bed_temperature < 30} +Z000 +{else} +Z{bed_temperature + 10} +{endif}''', +'''Z60.0 +''' + ), + + ( + 'Other commands around conditional expression', + None, +''' +R000 +# My super initial command +R111 X123 Y456 Z789 +{if bed_temperature > 30} +R987 +R654 X321 +{else} +R963 X852 Y741 +R321 X654 Y987 +{endif} +# And finally, the end of the start at the beginning of the header +R369 +R357 X951 Y843''', +''' +R000 +# My super initial command +R111 X123 Y456 Z789 +R987 +R654 X321 +# And finally, the end of the start at the beginning of the header +R369 +R357 X951 Y843''' + ), + + ( + 'Multiple conditional expressions', + None, +''' +A999 +{if bed_temperature > 30} +A000 +{else} +A100 +{endif} +A888 +{if material_temperature > 200, 0} +A200 +{else} +A300 +{endif} +A777 +''', +''' +A999 +A000 +A888 +A300 +A777 +''' + ), + + ( + 'Nested condition expression', + SyntaxError, +'''{if bed_temperature < 30} +{if material_temperature < 30, 0} +M000 +{else} +M888 +{endif} +{else} +M{bed_temperature + 10} +{endif}''', + '' + ), + + ( + 'Wrong condition expression', + SyntaxError, +'''{of material_temperature > 200, 1} +G100 +{else} +G200 +{endif}''', + '' + ), + + ( + 'Condition expression without start', + SyntaxError, +''' +W100 +{else} +W200 +{endif}''', + '' + ), + + ( + 'Formula with non-existing variable', + None, + '{material_storage_temperature}', + '0' + ), + + ( + 'Missing formula end character', + None, + '{material_temperature, 0', + '{material_temperature, 0' + ), + + ( + 'Conditional expression with missing end character', + SyntaxError, +'''{if material_temperature > 200, 0 +Q1000 +{else} +Q2000 +{endif}''', + '' + ), + + ( + 'Unexpected end character', + None, +'''{if material_temperature > 200, 0}} +S1000 +{else} +S2000 +{endif}''', +'''S2000 +''' + ), + + ( + 'Multiple replaces on single line', + None, +'''BT={bed_temperature} IE={initial_extruder}''', +'''BT=50.0 IE=0''' + ), + + ( + 'Multiple extruder replaces on single line', + None, +'''MT0={material_temperature, 0} MT1={material_temperature, 1}''', +'''MT0=190.0 MT1=210.0''' + ), +] + +def pytest_generate_tests(metafunc): + if "original_gcode" in metafunc.fixturenames: + tests_ids = [test[0] for test in test_cases] + tests_data = [test[1:] for test in test_cases] + metafunc.parametrize("exception_type, original_gcode, expected_gcode", tests_data, ids = tests_ids) + +@pytest.fixture +def cura_application(): + result = MagicMock() + result.getGlobalContainerStack = MagicMock(return_value = MockValueProvider(global_values)) + return result + +@pytest.fixture +def extruder_manager(): + def get_extruder(extruder_nr: str): + if extruder_nr == "0": + return extruder_0_provider + elif extruder_nr == "1": + return extruder_1_provider + else: + return None + + result = MagicMock() + result.getExtruderStack = MagicMock(side_effect = get_extruder) + return result + +def test_startEndGCode_replace(cura_application, extruder_manager, exception_type, original_gcode, expected_gcode): + formatter = GcodeStartEndFormatter(all_extruder_settings, -1) + formatter._cura_application = cura_application + formatter._extruder_manager = extruder_manager + + if exception_type is not None: + with pytest.raises(exception_type): + formatter.format(original_gcode) + else: + assert formatter.format(original_gcode) == expected_gcode diff --git a/tests/Machines/TestVariantNode.py b/tests/Machines/TestVariantNode.py index e15d64a444..c84aaae36d 100644 --- a/tests/Machines/TestVariantNode.py +++ b/tests/Machines/TestVariantNode.py @@ -46,7 +46,7 @@ def getInstanceContainerSideEffect(*args, **kwargs): def machine_node(): mocked_machine_node = MagicMock() mocked_machine_node.container_id = "machine_1" - mocked_machine_node.isExcludedMaterial = MagicMock(return_value=False) + mocked_machine_node.isExcludedMaterialBaseFile = MagicMock(return_value=False) mocked_machine_node.preferred_material = "preferred_material" return mocked_machine_node @@ -96,7 +96,7 @@ def test_variantNodeInit(container_registry, machine_node): def test_variantNodeInit_excludedMaterial(container_registry, machine_node): machine_node.exclude_materials = ["material_1"] - machine_node.isExcludedMaterial = MagicMock(side_effect=lambda material: material["id"] == "material_1") + machine_node.isExcludedMaterialBaseFile = MagicMock(side_effect=lambda material: material == "material_1") node = createVariantNode("variant_1", machine_node, container_registry) assert "material_1" not in node.materials diff --git a/tests/Settings/TestCuraStackBuilder.py b/tests/Settings/TestCuraStackBuilder.py index 6bd19a0d30..4776d20422 100644 --- a/tests/Settings/TestCuraStackBuilder.py +++ b/tests/Settings/TestCuraStackBuilder.py @@ -50,9 +50,11 @@ def quality_changes_container(): def test_createMachineWithUnknownDefinition(application, container_registry): application.getContainerRegistry = MagicMock(return_value=container_registry) with patch("cura.CuraApplication.CuraApplication.getInstance", MagicMock(return_value=application)): - with patch("UM.ConfigurationErrorMessage.ConfigurationErrorMessage.getInstance") as mocked_config_error: + mocked_config_error = MagicMock() + with patch("UM.ConfigurationErrorMessage.ConfigurationErrorMessage.getInstance", + MagicMock(return_value=mocked_config_error)): assert CuraStackBuilder.createMachine("Whatever", "NOPE") is None - assert mocked_config_error.addFaultyContainers.called_with("NOPE") + mocked_config_error.addFaultyContainers.assert_called_once_with("NOPE") def test_createMachine(application, container_registry, definition_container, global_variant, material_instance_container, diff --git a/tests/TestBuildVolume.py b/tests/TestBuildVolume.py index 5012784bdf..ece4b22d6f 100644 --- a/tests/TestBuildVolume.py +++ b/tests/TestBuildVolume.py @@ -424,4 +424,3 @@ class TestGetEdgeDisallowedSize: with patch("cura.Settings.ExtruderManager.ExtruderManager.getInstance"): with patch.dict(self.setting_property_dict, {"print_sequence": {"value": "one_at_a_time"}}): assert build_volume.getEdgeDisallowedSize() == 0.1 - diff --git a/tests/TestConvexHullDecorator.py b/tests/TestConvexHullDecorator.py index eed5a3a6c3..94bcd58f37 100644 --- a/tests/TestConvexHullDecorator.py +++ b/tests/TestConvexHullDecorator.py @@ -188,4 +188,4 @@ def test_compute2DConvexHullMeshDataGrouped(convex_hull_decorator): copied_decorator._global_stack = mocked_stack copied_decorator._getSettingProperty = MagicMock(return_value=0) node.addDecorator(copied_decorator) - assert convex_hull_decorator._compute2DConvexHull() == Polygon([[-5.0, 5.0], [5.0, 5.0], [5.0, -5.0], [-5.0, -5.0]]) \ No newline at end of file + assert convex_hull_decorator._compute2DConvexHull() == Polygon([[-5.0, 5.0], [5.0, 5.0], [5.0, -5.0], [-5.0, -5.0]]) diff --git a/tests/TestCuraSceneController.py b/tests/TestCuraSceneController.py index 634ce89d86..fe6f964593 100644 --- a/tests/TestCuraSceneController.py +++ b/tests/TestCuraSceneController.py @@ -75,5 +75,4 @@ def test_updateMaxBuildPlate(objects_model, multi_build_plate_model): # And check what happens if we move down again! controller._calcMaxBuildPlate = MagicMock(return_value=2) controller.updateMaxBuildPlate(SceneNode()) - assert controller._active_build_plate == 0 # We don't have any items anywhere, so default to 0 - + assert controller._active_build_plate == 0 # We don't have any items anywhere, so default to 0 diff --git a/tests/TestCuraSceneNode.py b/tests/TestCuraSceneNode.py index 9e2fcb1188..77f4051a99 100644 --- a/tests/TestCuraSceneNode.py +++ b/tests/TestCuraSceneNode.py @@ -53,5 +53,3 @@ class TestCollidesWithAreas: def test_outsideBuildArea(cura_scene_node): cura_scene_node.setOutsideBuildArea(True) assert cura_scene_node.isOutsideBuildArea - - diff --git a/tests/TestLayer.py b/tests/TestLayer.py index f8183437d6..602a0a5061 100644 --- a/tests/TestLayer.py +++ b/tests/TestLayer.py @@ -36,4 +36,4 @@ def test_elementCount(): layer_polygon.elementCount = 12 layer.polygons.append(layer_polygon) assert layer.build(0, 0, [], [], [], [], [] ,[] , []) == (9001, 9002) - assert layer.elementCount == 12 \ No newline at end of file + assert layer.elementCount == 12 diff --git a/tests/TestOAuth2.py b/tests/TestOAuth2.py index 41edaebbf7..d49d42f065 100644 --- a/tests/TestOAuth2.py +++ b/tests/TestOAuth2.py @@ -3,6 +3,7 @@ from datetime import datetime from unittest.mock import MagicMock, Mock, patch +from pytest import fixture from PyQt6.QtGui import QDesktopServices from PyQt6.QtNetwork import QNetworkReply @@ -59,6 +60,17 @@ NO_REFRESH_AUTH_RESPONSE = AuthenticationResponse( MALFORMED_AUTH_RESPONSE = AuthenticationResponse(success=False) +@fixture +def http_request_manager(): + mock_reply = Mock() # The user profile that the service should respond with. + mock_reply.error = Mock(return_value=QNetworkReply.NetworkError.NoError) + + http_mock = Mock() + http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) + http_mock.readJSON = Mock(return_value={"data": {"user_id": "id_ego_or_superego", "username": "Ghostkeeper"}}) + http_mock.setDelayRequests = Mock() + return http_mock + def test_cleanAuthService() -> None: """ Ensure that when setting up an AuthorizationService, no data is set. @@ -72,18 +84,20 @@ def test_cleanAuthService() -> None: assert authorization_service.getAccessToken() is None -def test_refreshAccessTokenSuccess(): +def test_refreshAccessTokenSuccess(http_request_manager): authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.initialize() with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) authorization_service.onAuthStateChanged.emit = MagicMock() - with patch.object(AuthorizationHelpers, "getAccessTokenUsingRefreshToken", return_value=SUCCESSFUL_AUTH_RESPONSE): - authorization_service.refreshAccessToken() - assert authorization_service.onAuthStateChanged.emit.called_with(True) + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value=http_request_manager)): + with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): + with patch.object(AuthorizationHelpers, "getAccessTokenUsingRefreshToken", side_effect=lambda refresh_token, callback: callback(SUCCESSFUL_AUTH_RESPONSE)): + authorization_service.refreshAccessToken() + authorization_service.onAuthStateChanged.emit.assert_called_once_with(logged_in = True) -def test__parseJWTNoRefreshToken(): +def test__parseJWTNoRefreshToken(http_request_manager): """ Tests parsing the user profile if there is no refresh token stored, but there is a normal authentication token. @@ -94,13 +108,8 @@ def test__parseJWTNoRefreshToken(): authorization_service._storeAuthData(NO_REFRESH_AUTH_RESPONSE) mock_callback = Mock() # To log the final profile response. - mock_reply = Mock() # The user profile that the service should respond with. - mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.NoError) - http_mock = Mock() - http_mock.get = lambda url, headers_dict, callback, error_callback, timeout: callback(mock_reply) - http_mock.readJSON = Mock(return_value = {"data": {"user_id": "id_ego_or_superego", "username": "Ghostkeeper"}}) - with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): + with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_request_manager)): authorization_service._parseJWT(mock_callback) mock_callback.assert_called_once() profile_reply = mock_callback.call_args_list[0][0][0] @@ -175,9 +184,10 @@ def test_refreshAccessTokenFailed(): """ authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) authorization_service.initialize() + with patch.object(AuthorizationService, "getUserProfile", return_value=UserProfile()): + authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) + authorization_service.onAuthStateChanged.emit = MagicMock() - def mock_refresh(self, refresh_token, callback): # Refreshing gives a valid token. - callback(FAILED_AUTH_RESPONSE) mock_reply = Mock() # The response that the request should give, containing an error about it failing to authenticate. mock_reply.error = Mock(return_value = QNetworkReply.NetworkError.AuthenticationRequiredError) # The reply is 403: Authentication required, meaning the server responded with a "Can't do that, Dave". http_mock = Mock() @@ -187,10 +197,9 @@ def test_refreshAccessTokenFailed(): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.readJSON", Mock(return_value = {"error_description": "Mock a failed request!"})): with patch("UM.TaskManagement.HttpRequestManager.HttpRequestManager.getInstance", MagicMock(return_value = http_mock)): authorization_service._storeAuthData(SUCCESSFUL_AUTH_RESPONSE) - authorization_service.onAuthStateChanged.emit = MagicMock() - with patch("cura.OAuth2.AuthorizationHelpers.AuthorizationHelpers.getAccessTokenUsingRefreshToken", mock_refresh): + with patch("cura.OAuth2.AuthorizationHelpers.AuthorizationHelpers.getAccessTokenUsingRefreshToken", side_effect=lambda refresh_token, callback: callback(FAILED_AUTH_RESPONSE)): authorization_service.refreshAccessToken() - assert authorization_service.onAuthStateChanged.emit.called_with(False) + authorization_service.onAuthStateChanged.emit.assert_called_with(logged_in = False) def test_refreshAccesTokenWithoutData(): authorization_service = AuthorizationService(OAUTH_SETTINGS, Preferences()) diff --git a/tests/TestObjectsModel.py b/tests/TestObjectsModel.py index b34c32a95e..1bc0bf6ace 100644 --- a/tests/TestObjectsModel.py +++ b/tests/TestObjectsModel.py @@ -226,4 +226,3 @@ class Test_Update: "per_object_settings_count": 0, "mesh_type": "" }] - diff --git a/tests/TestPrintInformation.py b/tests/TestPrintInformation.py index bfebe4a528..4135782f0c 100644 --- a/tests/TestPrintInformation.py +++ b/tests/TestPrintInformation.py @@ -148,4 +148,4 @@ def test_defineAbbreviatedMachineName(): # Test not ultimaker printer, name suffix should have first letter from the printer name project_name = ["HelloWorld", ".3mf"] print_information.setProjectName(project_name[0] + project_name[1]) - assert printer_name[0] + "_" + project_name[0] == print_information._job_name \ No newline at end of file + assert printer_name[0] + "_" + project_name[0] == print_information._job_name diff --git a/tests/TestProfileRequirements.py b/tests/TestProfileRequirements.py index a88513ce24..c2114cba79 100644 --- a/tests/TestProfileRequirements.py +++ b/tests/TestProfileRequirements.py @@ -1,8 +1,8 @@ # Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. -import configparser #To read the profiles. -import os #To join paths. +import configparser # To read the profiles. +import os # To join paths. import pytest ## Makes sure that the variants for the Ultimaker 3 Extended are exactly the @@ -13,7 +13,7 @@ import pytest # needed, but until then we should keep them the same. It's happened all too # often that we updated the variants for the UM3 but forgot about the UM3E. @pytest.mark.parametrize("um3_file, um3e_file", [ - #List the corresponding files below. + # List the corresponding files below. ("ultimaker3_aa0.25.inst.cfg", "ultimaker3_extended_aa0.25.inst.cfg"), ("ultimaker3_aa0.8.inst.cfg", "ultimaker3_extended_aa0.8.inst.cfg"), ("ultimaker3_aa04.inst.cfg", "ultimaker3_extended_aa04.inst.cfg"),